diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa3636021..b0b56d56b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,8 @@ jobs: matrix: build-type: [Release] compiler: [GCC, Clang] - cmake-var: [ENABLE_CONAN=ON, ENABLE_CONAN=OFF] - + cmake-var: [ENABLE_CONAN=OFF] # ENABLE_CONAN=ON, ENABLE_CONAN=OFF + runs-on: ubuntu-latest env: BUILD_TYPE: ${{matrix.build-type}} @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v3 - + - name: Install dependencies (ENABLE_CONAN=ON) if: matrix.cmake-var == 'ENABLE_CONAN=ON' run: | @@ -33,7 +33,7 @@ jobs: run: | sudo apt-get install cmake sudo apt-get install libglew-dev libsdl2-dev libsdl2-image-dev - + - name: Install GCC if: matrix.compiler == 'GCC' run: | @@ -45,12 +45,12 @@ jobs: sudo apt-get install -y gcc-12 g++-12 sudo update-alternatives --install /usr/bin/cc gcc /usr/bin/gcc-12 1000 \ --slave /usr/bin/c++ g++ /usr/bin/g++-12 - + - name: Install Clang if: matrix.compiler == 'Clang' run: | echo "CC=/usr/bin/clang-16" >> $GITHUB_ENV - echo "CXX=/usr/bin/clang++-16" >> $GITHUB_ENV + echo "CXX=/usr/bin/clang++-16" >> $GITHUB_ENV sudo update-alternatives --remove-all cc sudo update-alternatives --remove-all c++ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - @@ -71,41 +71,41 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build run: ctest -C ${{env.BUILD_TYPE}} - windows-build: - strategy: - fail-fast: false - matrix: - build-type: [Release] - - runs-on: windows-latest - env: - BUILD_TYPE: ${{matrix.build-type}} + # windows-build: + # strategy: + # fail-fast: false + # matrix: + # build-type: [Release] - steps: - - name: Checkout repo - uses: actions/checkout@v3 + # runs-on: windows-latest + # env: + # BUILD_TYPE: ${{matrix.build-type}} - - name: Set up Python - uses: actions/setup-python@v3 - with: - python-version: '3.10' - - run: | - python -m pip install --upgrade pip - pip install wheel - - - name: Install Conan - run: pip install "conan<2.0" - - - name: Configure CMake - run: | - cmake -B ${{github.workspace}}/build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_CONAN=ON + # steps: + # - name: Checkout repo + # uses: actions/checkout@v3 - - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + # - name: Set up Python + # uses: actions/setup-python@v3 + # with: + # python-version: '3.10' + # - run: | + # python -m pip install --upgrade pip + # pip install wheel - - name: Test - working-directory: ${{github.workspace}}/build - run: ctest -C ${{env.BUILD_TYPE}} + # - name: Install Conan + # run: pip install "conan<2.0" + + # - name: Configure CMake + # run: | + # cmake -B ${{github.workspace}}/build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_CONAN=ON + + # - name: Build + # run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + # - name: Test + # working-directory: ${{github.workspace}}/build + # run: ctest -C ${{env.BUILD_TYPE}} wasm-build: runs-on: ubuntu-latest env: @@ -114,7 +114,7 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v3 - + - name: Install Emscripten run: | sudo apt-get install git cmake @@ -125,8 +125,8 @@ jobs: ./emsdk install latest ./emsdk activate latest source ./emsdk_env.sh - - - name: Configure CMake + + - name: Configure CMake run: | source ./emsdk/emsdk_env.sh emcmake cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c358914..a68942e68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Release notes +## v3.1.2 + +* [@abacchi00 (André Bacchi)](https://github.com/abacchi00): fix: ensure web build runs correctly. +* Fix `cmake_minimum_required()` deprecation warnings. +* Disable warnings for vendored-in libraries in WASM builds. + + ## v3.1.1 * Added a shader compile check to make GLSL ES shaders compatible with macOS. diff --git a/abcg/doc/Doxyfile b/abcg/doc/Doxyfile index ef9fd46b4..3272227e4 100644 --- a/abcg/doc/Doxyfile +++ b/abcg/doc/Doxyfile @@ -1,4 +1,4 @@ -# Doxyfile 1.9.1 +# Doxyfile 1.9.8 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. @@ -12,6 +12,16 @@ # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] #--------------------------------------------------------------------------- # Project related configuration options @@ -32,13 +42,13 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "ABCg" +PROJECT_NAME = ABCg # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "v3.1.1" +PROJECT_NUMBER = v3.1.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -60,16 +70,28 @@ PROJECT_LOGO = OUTPUT_DIRECTORY = . -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes -# performance problems for the file system. +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. # The default value is: NO. CREATE_SUBDIRS = NO +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode @@ -81,26 +103,18 @@ ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English -# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all generated output in the proper direction. -# Possible values are: None, LTR, RTL and Context. -# The default value is: None. - -OUTPUT_TEXT_DIRECTION = None - # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. @@ -258,16 +272,16 @@ TAB_SIZE = 2 # the documentation. An alias has the form: # name=value # For example adding -# "sideeffect=@par Side Effects:\n" +# "sideeffect=@par Side Effects:^^" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines (in the resulting output). You can put ^^ in the value part of an -# alias to insert a newline as if a physical newline was in the original file. -# When you need a literal { or } or , in the value part of an alias you have to -# escape them by means of a backslash (\), this can lead to conflicts with the -# commands \{ and \} for these it is advised to use the version @{ and @} or use -# a double escape (\\{ and \\}) +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) ALIASES = @@ -312,18 +326,21 @@ OPTIMIZE_OUTPUT_SLICE = NO # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, JavaScript, -# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, -# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser # tries to guess whether the code is fixed or free formatted code, this is the -# default for Fortran type files), VHDL, tcl. For instance to make doxygen treat -# .inc files as Fortran files (default is PHP), and .f files as C (default is -# Fortran), use: inc=Fortran f=C. +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. EXTENSION_MAPPING = @@ -346,6 +363,17 @@ MARKDOWN_SUPPORT = YES TOC_INCLUDE_HEADINGS = 5 +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0 and GITHUB use the lower case version of title +# with any whitespace replaced by '-' and punctuation characters removed. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or @@ -457,19 +485,27 @@ TYPEDEF_HIDES_STRUCT = NO LOOKUP_CACHE_SIZE = 0 -# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use +# The NUM_PROC_THREADS specifies the number of threads doxygen is allowed to use # during processing. When set to 0 doxygen will based this on the number of # cores available in the system. You can set it explicitly to a value larger # than 0 to get more control over the balance between CPU load and processing # speed. At this moment only the input processing can be done using multiple # threads. Since this is still an experimental feature the default is set to 1, -# which efficively disables parallel processing. Please report any issues you +# which effectively disables parallel processing. Please report any issues you # encounter. Generating dot graphs in parallel is controlled by the # DOT_NUM_THREADS setting. # Minimum value: 0, maximum value: 32, default value: 1. NUM_PROC_THREADS = 1 +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- @@ -533,6 +569,13 @@ EXTRACT_LOCAL_METHODS = NO EXTRACT_ANON_NSPACES = NO +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation @@ -544,7 +587,8 @@ HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = NO @@ -570,12 +614,20 @@ HIDE_IN_BODY_DOCS = NO INTERNAL_DOCS = NO -# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file -# names in lower-case letters. If set to YES, upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# (including Cygwin) ands Mac users are advised to set this option to NO. -# The default value is: system dependent. +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. CASE_SENSE_NAMES = YES @@ -593,6 +645,12 @@ HIDE_SCOPE_NAMES = NO HIDE_COMPOUND_REFERENCE= NO +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. @@ -750,7 +808,8 @@ FILE_VERSION_FILTER = # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE @@ -796,24 +855,50 @@ WARNINGS = YES WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES +# If WARN_IF_INCOMPLETE_DOC is set to YES, doxygen will warn about incomplete +# function parameter documentation. If set to NO, doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. If -# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# value. If set to NO, doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC # The default value is: NO. WARN_NO_PARAMDOC = NO +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, doxygen will warn about +# undocumented enumeration values. If set to NO, doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when -# a warning is encountered. +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. # The default value is: NO. WARN_AS_ERROR = NO @@ -824,13 +909,27 @@ WARN_AS_ERROR = NO # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard -# error (stderr). +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). WARN_LOGFILE = @@ -851,12 +950,23 @@ INPUT = ../../README.md \ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: https://www.gnu.org/software/libiconv/) for the list of -# possible encodings. +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING # The default value is: UTF-8. INPUT_ENCODING = UTF-8 +# This tag can be used to specify the character encoding of the source files +# that doxygen parses The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING) if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). See cfg_input_encoding +# "INPUT_ENCODING" for further information on supported encodings. + +INPUT_FILE_ENCODING = + # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. @@ -865,13 +975,15 @@ INPUT_ENCODING = UTF-8 # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), -# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen -# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f, *.for, *.tcl, *.vhd, -# *.vhdl, *.ucf, *.qsf and *.ice. +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm, +# *.cpp, *.cppm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, +# *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.ixx, *.l, *.cs, *.d, *.php, +# *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be +# provided as doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. FILE_PATTERNS = *.c \ *.cpp \ @@ -914,10 +1026,7 @@ EXCLUDE_PATTERNS = # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* +# ANamespace::AClass, ANamespace::*Test EXCLUDE_SYMBOLS = @@ -962,6 +1071,11 @@ IMAGE_PATH = . # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # +# Note that doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. @@ -1003,6 +1117,15 @@ FILTER_SOURCE_PATTERNS = USE_MDFILE_AS_MAINPAGE = ../../README.md +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. + +FORTRAN_COMMENT_AFTER = 72 + #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- @@ -1090,19 +1213,21 @@ USE_HTAGS = NO VERBATIM_HEADERS = YES # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the -# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the -# cost of reduced performance. This can be particularly helpful with template -# rich C++ code for which doxygen's built-in parser lacks the necessary type -# information. +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. # Note: The availability of this option depends on whether or not doxygen was # generated with the -Duse_libclang=ON option for CMake. # The default value is: NO. CLANG_ASSISTED_PARSING = NO -# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to -# YES then doxygen will add the directory of each input to the include path. +# If the CLANG_ASSISTED_PARSING tag is set to YES and the CLANG_ADD_INC_PATHS +# tag is set to YES then doxygen will add the directory of each input to the +# include path. # The default value is: YES. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. CLANG_ADD_INC_PATHS = YES @@ -1115,10 +1240,13 @@ CLANG_ADD_INC_PATHS = YES CLANG_OPTIONS = # If clang assisted parsing is enabled you can provide the clang parser with the -# path to the compilation database (see: -# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files -# were built. This is equivalent to specifying the "-p" option to a clang tool, -# such as clang-check. These options will then be passed to the parser. +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. # Note: The availability of this option depends on whether or not doxygen was # generated with the -Duse_libclang=ON option for CMake. @@ -1135,10 +1263,11 @@ CLANG_DATABASE_PATH = ALPHABETICAL_INDEX = YES -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = @@ -1217,7 +1346,12 @@ HTML_STYLESHEET = # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = doxygen-awesome-css/doxygen-awesome.css \ @@ -1234,9 +1368,22 @@ HTML_EXTRA_STYLESHEET = doxygen-awesome-css/doxygen-awesome.css \ HTML_EXTRA_FILES = doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generate light mode output, DARK always +# generate dark mode output, AUTO_LIGHT automatically set the mode according to +# the user preference, use light mode if no preference is set (the default), +# AUTO_DARK automatically set the mode according to the user preference, use +# dark mode if no preference is set and TOGGLE allow to user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = AUTO_LIGHT + # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see +# this color. Hue is specified as an angle on a color-wheel, see # https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. @@ -1246,7 +1393,7 @@ HTML_EXTRA_FILES = doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js HTML_COLORSTYLE_HUE = 209 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A +# in the HTML output. For a value of 0 the output will use gray-scales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. @@ -1264,15 +1411,6 @@ HTML_COLORSTYLE_SAT = 255 HTML_COLORSTYLE_GAMMA = 113 -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML # documentation will contain a main index with vertical navigation menus that # are dynamically created via JavaScript. If disabled, the navigation index will @@ -1292,6 +1430,13 @@ HTML_DYNAMIC_MENUS = YES HTML_DYNAMIC_SECTIONS = NO +# If the HTML_CODE_FOLDING tag is set to YES then classes and functions can be +# dynamically folded and expanded in the generated HTML source code. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_CODE_FOLDING = YES + # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to @@ -1307,10 +1452,11 @@ HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: https://developer.apple.com/xcode/), introduced with OSX -# 10.5 (Leopard). To create a documentation set, doxygen will generate a -# Makefile in the HTML output directory. Running make will produce the docset in -# that directory and running make install will install the docset in +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy # genXcode/_index.html for more information. @@ -1327,6 +1473,13 @@ GENERATE_DOCSET = NO DOCSET_FEEDNAME = "Doxygen generated docs" +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. @@ -1352,8 +1505,12 @@ DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on -# Windows. +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline the HTML help workshop was already many years +# in maintenance mode). You can download the HTML help workshop from the web +# archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML @@ -1383,7 +1540,7 @@ CHM_FILE = HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the master .chm file (NO). +# (YES) or that it should be included in the main .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. @@ -1410,6 +1567,16 @@ BINARY_TOC = NO TOC_EXPAND = NO +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help @@ -1428,7 +1595,8 @@ QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace -# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1436,8 +1604,8 @@ QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- -# folders). +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. @@ -1445,16 +1613,16 @@ QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom -# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- -# filters). +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- -# filters). +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = @@ -1466,9 +1634,9 @@ QHP_CUST_FILTER_ATTRS = QHP_SECT_FILTER_ATTRS = -# The QHG_LOCATION tag can be used to specify the location of Qt's -# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the -# generated .qhp file. +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = @@ -1511,16 +1679,28 @@ DISABLE_INDEX = NO # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has the same information as the tab index, you could +# consider setting DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = YES +# When both GENERATE_TREEVIEW and DISABLE_INDEX are set to YES, then the +# FULL_SIDEBAR option determines if the side bar is limited to only the treeview +# area (value NO) or if it should extend to the full height of the window (value +# YES). Setting this to YES gives a layout similar to +# https://docs.readthedocs.io with more room for contents, but less room for the +# project logo, title, and description. If either GENERATE_TREEVIEW or +# DISABLE_INDEX is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # @@ -1545,6 +1725,13 @@ TREEVIEW_WIDTH = 335 EXT_LINKS_IN_WINDOW = NO +# If the OBFUSCATE_EMAILS tag is set to YES, doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see # https://inkscape.org) to generate formulas as SVG images instead of PNGs for @@ -1565,17 +1752,6 @@ HTML_FORMULA_FORMAT = png FORMULA_FONTSIZE = 10 -# Use the FORMULA_TRANSPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands # to create new LaTeX commands to be used in formulas as building blocks. See # the section "Including formulas" for details. @@ -1593,11 +1769,29 @@ FORMULA_MACROFILE = USE_MATHJAX = YES +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2 and MathJax_3. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + # When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/latest/output.html) for more details. +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3 +# (see: +# http://docs.mathjax.org/en/latest/web/components/output.html). # Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for NathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. @@ -1610,22 +1804,29 @@ MATHJAX_FORMAT = HTML-CSS # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of -# MathJax from https://www.mathjax.org before deployment. -# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# MathJax from https://www.mathjax.org before deployment. The default value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see +# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions): # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html): +# MATHJAX_EXTENSIONS = ams # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site -# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. @@ -1672,7 +1873,8 @@ SERVER_BASED_SEARCH = NO # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library -# Xapian (see: https://xapian.org/). +# Xapian (see: +# https://xapian.org/). # # See the section "External Indexing and Searching" for details. # The default value is: NO. @@ -1685,8 +1887,9 @@ EXTERNAL_SEARCH = NO # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library -# Xapian (see: https://xapian.org/). See the section "External Indexing and -# Searching" for details. +# Xapian (see: +# https://xapian.org/). See the section "External Indexing and Searching" for +# details. # This tag requires that the tag SEARCHENGINE is set to YES. SEARCHENGINE_URL = @@ -1795,29 +1998,31 @@ PAPER_TYPE = a4 EXTRA_PACKAGES = -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the -# generated LaTeX document. The header should contain everything until the first -# chapter. If it is left blank doxygen will generate a standard header. See -# section "Doxygen usage" for information on how to let doxygen write the -# default header to a separate file. +# The LATEX_HEADER tag can be used to specify a user-defined LaTeX header for +# the generated LaTeX document. The header should contain everything until the +# first chapter. If it is left blank doxygen will generate a standard header. It +# is highly recommended to start with a default header using +# doxygen -w latex new_header.tex new_footer.tex new_stylesheet.sty +# and then modify the file new_header.tex. See also section "Doxygen usage" for +# information on how to generate the default header that doxygen normally uses. # -# Note: Only use a user-defined header if you know what you are doing! The -# following commands have a special meaning inside the header: $title, -# $datetime, $date, $doxygenversion, $projectname, $projectnumber, -# $projectbrief, $projectlogo. Doxygen will replace $title with the empty -# string, for the replacement values of the other commands the user is referred -# to HTML_HEADER. +# Note: Only use a user-defined header if you know what you are doing! +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. The following +# commands have a special meaning inside the header (and footer): For a +# description of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_HEADER = -# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the -# generated LaTeX document. The footer should contain everything after the last -# chapter. If it is left blank doxygen will generate a standard footer. See +# The LATEX_FOOTER tag can be used to specify a user-defined LaTeX footer for +# the generated LaTeX document. The footer should contain everything after the +# last chapter. If it is left blank doxygen will generate a standard footer. See # LATEX_HEADER for more information on how to generate a default footer and what -# special commands can be used inside the footer. -# -# Note: Only use a user-defined footer if you know what you are doing! +# special commands can be used inside the footer. See also section "Doxygen +# usage" for information on how to generate the default footer that doxygen +# normally uses. Note: Only use a user-defined footer if you know what you are +# doing! # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_FOOTER = @@ -1850,18 +2055,26 @@ LATEX_EXTRA_FILES = PDF_HYPERLINKS = YES -# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate -# the PDF file directly from the LaTeX files. Set this option to YES, to get a -# higher quality PDF documentation. +# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as +# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX +# files. Set this option to YES, to get a higher quality PDF documentation. +# +# See also section LATEX_CMD_NAME for selecting the engine. # The default value is: YES. # This tag requires that the tag GENERATE_LATEX is set to YES. USE_PDFLATEX = YES -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode -# command to the generated LaTeX files. This will instruct LaTeX to keep running -# if errors occur, instead of asking the user for help. This option is also used -# when generating formulas in HTML. +# The LATEX_BATCHMODE tag signals the behavior of LaTeX in case of an error. +# Possible values are: NO same as ERROR_STOP, YES same as BATCH, BATCH In batch +# mode nothing is printed on the terminal, errors are scrolled as if is +# hit at every error; missing files that TeX tries to input or request from +# keyboard input (\read on a not open input stream) cause the job to abort, +# NON_STOP In nonstop mode the diagnostic message will appear on the terminal, +# but there is no possibility of user interaction just like in batch mode, +# SCROLL In scroll mode, TeX will stop only for missing files to input or if +# keyboard input is necessary and ERROR_STOP In errorstop mode, TeX will stop at +# each error, asking for user intervention. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. @@ -1874,16 +2087,6 @@ LATEX_BATCHMODE = NO LATEX_HIDE_INDICES = NO -# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source -# code with syntax highlighting in the LaTeX output. -# -# Note that which sources are shown also depends on other settings such as -# SOURCE_BROWSER. -# The default value is: NO. -# This tag requires that the tag GENERATE_LATEX is set to YES. - -LATEX_SOURCE_CODE = NO - # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. See # https://en.wikipedia.org/wiki/BibTeX and \cite for more info. @@ -1892,14 +2095,6 @@ LATEX_SOURCE_CODE = NO LATEX_BIB_STYLE = plain -# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated -# page will contain the date and time when the page was generated. Setting this -# to NO can help when comparing the output of multiple runs. -# The default value is: NO. -# This tag requires that the tag GENERATE_LATEX is set to YES. - -LATEX_TIMESTAMP = NO - # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) # path from which the emoji images will be read. If a relative path is entered, # it will be relative to the LATEX_OUTPUT directory. If left blank the @@ -1964,16 +2159,6 @@ RTF_STYLESHEET_FILE = RTF_EXTENSIONS_FILE = -# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code -# with syntax highlighting in the RTF output. -# -# Note that which sources are shown also depends on other settings such as -# SOURCE_BROWSER. -# The default value is: NO. -# This tag requires that the tag GENERATE_RTF is set to YES. - -RTF_SOURCE_CODE = NO - #--------------------------------------------------------------------------- # Configuration options related to the man page output #--------------------------------------------------------------------------- @@ -2070,27 +2255,44 @@ GENERATE_DOCBOOK = NO DOCBOOK_OUTPUT = docbook -# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the -# program listings (including syntax highlighting and cross-referencing -# information) to the DOCBOOK output. Note that enabling this will significantly -# increase the size of the DOCBOOK output. -# The default value is: NO. -# This tag requires that the tag GENERATE_DOCBOOK is set to YES. - -DOCBOOK_PROGRAMLISTING = NO - #--------------------------------------------------------------------------- # Configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an -# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures +# AutoGen Definitions (see https://autogen.sourceforge.net/) file that captures # the structure of the code including all documentation. Note that this feature # is still experimental and incomplete at the moment. # The default value is: NO. GENERATE_AUTOGEN_DEF = NO +#--------------------------------------------------------------------------- +# Configuration options related to Sqlite3 output +#--------------------------------------------------------------------------- + +# If the GENERATE_SQLITE3 tag is set to YES doxygen will generate a Sqlite3 +# database with symbols found by doxygen stored in tables. +# The default value is: NO. + +GENERATE_SQLITE3 = NO + +# The SQLITE3_OUTPUT tag is used to specify where the Sqlite3 database will be +# put. If a relative path is entered the value of OUTPUT_DIRECTORY will be put +# in front of it. +# The default directory is: sqlite3. +# This tag requires that the tag GENERATE_SQLITE3 is set to YES. + +SQLITE3_OUTPUT = sqlite3 + +# The SQLITE3_OVERWRITE_DB tag is set to YES, the existing doxygen_sqlite3.db +# database file will be recreated with each doxygen run. If set to NO, doxygen +# will warn if an a database file is already found and not modify it. +# The default value is: YES. +# This tag requires that the tag GENERATE_SQLITE3 is set to YES. + +SQLITE3_RECREATE_DB = YES + #--------------------------------------------------------------------------- # Configuration options related to the Perl module output #--------------------------------------------------------------------------- @@ -2165,7 +2367,8 @@ SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by the -# preprocessor. +# preprocessor. Note that the INCLUDE_PATH is not recursive, so the setting of +# RECURSIVE has no effect here. # This tag requires that the tag SEARCH_INCLUDES is set to YES. INCLUDE_PATH = @@ -2232,15 +2435,15 @@ TAGFILES = GENERATE_TAGFILE = -# If the ALLEXTERNALS tag is set to YES, all external class will be listed in -# the class index. If set to NO, only the inherited external classes will be -# listed. +# If the ALLEXTERNALS tag is set to YES, all external classes and namespaces +# will be listed in the class and namespace index. If set to NO, only the +# inherited external classes will be listed. # The default value is: NO. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will be +# in the topic index. If set to NO, only the current project's groups will be # listed. # The default value is: YES. @@ -2254,25 +2457,9 @@ EXTERNAL_GROUPS = YES EXTERNAL_PAGES = YES #--------------------------------------------------------------------------- -# Configuration options related to the dot tool +# Configuration options related to diagram generator tools #--------------------------------------------------------------------------- -# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram -# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to -# NO turns the diagrams off. Note that this option also works with HAVE_DOT -# disabled, but it is recommended to install and use dot, since it yields more -# powerful graphs. -# The default value is: YES. - -CLASS_DIAGRAMS = YES - -# You can include diagrams made with dia in doxygen documentation. Doxygen will -# then run dia to produce the diagram and insert it in the documentation. The -# DIA_PATH tag allows you to specify the directory where the dia binary resides. -# If left empty dia is assumed to be found in the default search path. - -DIA_PATH = - # If set to YES the inheritance and collaboration graphs will hide inheritance # and usage relations if the target is undocumented or is not a class. # The default value is: YES. @@ -2281,7 +2468,7 @@ HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz (see: -# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent +# https://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent # Bell Labs. The other options in this section have no effect if this option is # set to NO # The default value is: YES. @@ -2298,49 +2485,73 @@ HAVE_DOT = YES DOT_NUM_THREADS = 0 -# When you want a differently looking font in the dot files that doxygen -# generates you can specify the font name using DOT_FONTNAME. You need to make -# sure dot is able to find the font, which can be done by putting it in a -# standard location or by setting the DOTFONTPATH environment variable or by -# setting DOT_FONTPATH to the directory containing the font. -# The default value is: Helvetica. +# DOT_COMMON_ATTR is common attributes for nodes, edges and labels of +# subgraphs. When you want a differently looking font in the dot files that +# doxygen generates you can specify fontname, fontcolor and fontsize attributes. +# For details please see Node, +# Edge and Graph Attributes specification You need to make sure dot is able +# to find the font, which can be done by putting it in a standard location or by +# setting the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the +# directory containing the font. Default graphviz fontsize is 14. +# The default value is: fontname=Helvetica,fontsize=10. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_FONTNAME = Helvetica +DOT_COMMON_ATTR = "fontname=Helvetica,fontsize=10" -# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of -# dot graphs. -# Minimum value: 4, maximum value: 24, default value: 10. +# DOT_EDGE_ATTR is concatenated with DOT_COMMON_ATTR. For elegant style you can +# add 'arrowhead=open, arrowtail=open, arrowsize=0.5'. Complete documentation about +# arrows shapes. +# The default value is: labelfontname=Helvetica,labelfontsize=10. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_FONTSIZE = 10 +DOT_EDGE_ATTR = "labelfontname=Helvetica,labelfontsize=10" -# By default doxygen will tell dot to use the default font as specified with -# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set -# the path where dot can find it using this tag. +# DOT_NODE_ATTR is concatenated with DOT_COMMON_ATTR. For view without boxes +# around nodes set 'shape=plain' or 'shape=plaintext' Shapes specification +# The default value is: shape=box,height=0.2,width=0.4. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NODE_ATTR = "shape=box,height=0.2,width=0.4" + +# You can set the path where dot can find font specified with fontname in +# DOT_COMMON_ATTR and others dot attributes. # This tag requires that the tag HAVE_DOT is set to YES. DOT_FONTPATH = -# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for -# each documented class showing the direct and indirect inheritance relations. -# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# If the CLASS_GRAPH tag is set to YES or GRAPH or BUILTIN then doxygen will +# generate a graph for each documented class showing the direct and indirect +# inheritance relations. In case the CLASS_GRAPH tag is set to YES or GRAPH and +# HAVE_DOT is enabled as well, then dot will be used to draw the graph. In case +# the CLASS_GRAPH tag is set to YES and HAVE_DOT is disabled or if the +# CLASS_GRAPH tag is set to BUILTIN, then the built-in generator will be used. +# If the CLASS_GRAPH tag is set to TEXT the direct and indirect inheritance +# relations will be shown as texts / links. +# Possible values are: NO, YES, TEXT, GRAPH and BUILTIN. # The default value is: YES. -# This tag requires that the tag HAVE_DOT is set to YES. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a # graph for each documented class showing the direct and indirect implementation # dependencies (inheritance, containment, and class references variables) of the -# class with other documented classes. +# class with other documented classes. Explicit enabling a collaboration graph, +# when COLLABORATION_GRAPH is set to NO, can be accomplished by means of the +# command \collaborationgraph. Disabling a collaboration graph can be +# accomplished by means of the command \hidecollaborationgraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for -# groups, showing the direct groups dependencies. +# groups, showing the direct groups dependencies. Explicit enabling a group +# dependency graph, when GROUP_GRAPHS is set to NO, can be accomplished by means +# of the command \groupgraph. Disabling a directory graph can be accomplished by +# means of the command \hidegroupgraph. See also the chapter Grouping in the +# manual. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2363,10 +2574,32 @@ UML_LOOK = NO # but if the number exceeds 15, the total amount of fields shown is limited to # 10. # Minimum value: 0, maximum value: 100, default value: 10. -# This tag requires that the tag HAVE_DOT is set to YES. +# This tag requires that the tag UML_LOOK is set to YES. UML_LIMIT_NUM_FIELDS = 10 +# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and +# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS +# tag is set to YES, doxygen will add type and arguments for attributes and +# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen +# will not generate fields with class member information in the UML graphs. The +# class diagrams will look similar to the default class diagrams but using UML +# notation for the relationships. +# Possible values are: NO, YES and NONE. +# The default value is: NO. +# This tag requires that the tag UML_LOOK is set to YES. + +DOT_UML_DETAILS = NO + +# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters +# to display on a single line. If the actual line length exceeds this threshold +# significantly it will wrapped across multiple lines. Some heuristics are apply +# to avoid ugly line breaks. +# Minimum value: 0, maximum value: 1000, default value: 17. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_WRAP_THRESHOLD = 17 + # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and # collaboration graphs will show the relations between templates and their # instances. @@ -2378,7 +2611,9 @@ TEMPLATE_RELATIONS = NO # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to # YES then doxygen will generate a graph for each documented file showing the # direct and indirect include dependencies of the file with other documented -# files. +# files. Explicit enabling an include graph, when INCLUDE_GRAPH is is set to NO, +# can be accomplished by means of the command \includegraph. Disabling an +# include graph can be accomplished by means of the command \hideincludegraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2387,7 +2622,10 @@ INCLUDE_GRAPH = YES # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are # set to YES then doxygen will generate a graph for each documented file showing # the direct and indirect include dependencies of the file with other documented -# files. +# files. Explicit enabling an included by graph, when INCLUDED_BY_GRAPH is set +# to NO, can be accomplished by means of the command \includedbygraph. Disabling +# an included by graph can be accomplished by means of the command +# \hideincludedbygraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2427,23 +2665,32 @@ GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the # dependencies a directory has on other directories in a graphical way. The # dependency relations are determined by the #include relations between the -# files in the directories. +# files in the directories. Explicit enabling a directory graph, when +# DIRECTORY_GRAPH is set to NO, can be accomplished by means of the command +# \directorygraph. Disabling a directory graph can be accomplished by means of +# the command \hidedirectorygraph. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. DIRECTORY_GRAPH = YES +# The DIR_GRAPH_MAX_DEPTH tag can be used to limit the maximum number of levels +# of child directories generated in directory dependency graphs by dot. +# Minimum value: 1, maximum value: 25, default value: 1. +# This tag requires that the tag DIRECTORY_GRAPH is set to YES. + +DIR_GRAPH_MAX_DEPTH = 1 + # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. For an explanation of the image formats see the section # output formats in the documentation of the dot tool (Graphviz (see: -# http://www.graphviz.org/)). +# https://www.graphviz.org/)). # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order # to make the SVG files visible in IE 9+ (other browsers do not have this # requirement). -# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, -# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, -# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, -# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# Possible values are: png, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, +# gif, gif:cairo, gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, +# png:cairo, png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and # png:gdiplus:gdiplus. # The default value is: png. # This tag requires that the tag HAVE_DOT is set to YES. @@ -2475,11 +2722,12 @@ DOT_PATH = DOTFILE_DIRS = -# The MSCFILE_DIRS tag can be used to specify one or more directories that -# contain msc files that are included in the documentation (see the \mscfile -# command). +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. -MSCFILE_DIRS = +DIA_PATH = # The DIAFILE_DIRS tag can be used to specify one or more directories that # contain dia files that are included in the documentation (see the \diafile @@ -2488,10 +2736,10 @@ MSCFILE_DIRS = DIAFILE_DIRS = # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the -# path where java can find the plantuml.jar file. If left blank, it is assumed -# PlantUML is not used or called during a preprocessing step. Doxygen will -# generate a warning when it encounters a \startuml command in this case and -# will not generate output for the diagram. +# path where java can find the plantuml.jar file or to the filename of jar file +# to be used. If left blank, it is assumed PlantUML is not used or called during +# a preprocessing step. Doxygen will generate a warning when it encounters a +# \startuml command in this case and will not generate output for the diagram. PLANTUML_JAR_PATH = @@ -2529,18 +2777,6 @@ DOT_GRAPH_MAX_NODES = 50 MAX_DOT_GRAPH_DEPTH = 0 -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, because dot on Windows does not seem -# to support this out of the box. -# -# Warning: Depending on the platform used, enabling this option may lead to -# badly anti-aliased labels on the edges of a graph (i.e. they become hard to -# read). -# The default value is: NO. -# This tag requires that the tag HAVE_DOT is set to YES. - -DOT_TRANSPARENT = YES - # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) support @@ -2553,14 +2789,34 @@ DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page # explaining the meaning of the various boxes and arrows in the dot generated # graphs. +# Note: This tag requires that UML_LOOK isn't set, i.e. the doxygen internal +# graphical representation for inheritance and collaboration diagrams is used. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. GENERATE_LEGEND = YES -# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate # files that are used to generate the various graphs. +# +# Note: This setting is not only used for dot files but also for msc temporary +# files. # The default value is: YES. -# This tag requires that the tag HAVE_DOT is set to YES. -DOT_CLEANUP = YES \ No newline at end of file +DOT_CLEANUP = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. If the MSCGEN_TOOL tag is left empty (the default), then doxygen will +# use a built-in version of mscgen tool to produce the charts. Alternatively, +# the MSCGEN_TOOL tag can also specify the name an external tool. For instance, +# specifying prog as the value, doxygen will call the tool as prog -T +# -o . The external tool should support +# output file formats "png", "eps", "svg", and "ismap". + +MSCGEN_TOOL = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = diff --git a/abcg/doc/html/CHANGELOG_8md.html b/abcg/doc/html/CHANGELOG_8md.html index b27121521..40d2ee63e 100644 --- a/abcg/doc/html/CHANGELOG_8md.html +++ b/abcg/doc/html/CHANGELOG_8md.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/CHANGELOG.md File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/CHANGELOG.md File Reference
+
/home/harlen/dev/abcg/CHANGELOG.md File Reference
@@ -109,7 +116,7 @@ diff --git a/abcg/doc/html/README_8md.html b/abcg/doc/html/README_8md.html index c94af08ae..2ff9072d8 100644 --- a/abcg/doc/html/README_8md.html +++ b/abcg/doc/html/README_8md.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/README.md File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/README.md File Reference
+
/home/harlen/dev/abcg/README.md File Reference
@@ -109,7 +116,7 @@ diff --git a/abcg/doc/html/abcgApplication_8cpp.html b/abcg/doc/html/abcgApplication_8cpp.html index 462d8e0fa..6a3cc6c87 100644 --- a/abcg/doc/html/abcgApplication_8cpp.html +++ b/abcg/doc/html/abcgApplication_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgApplication.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgApplication.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgApplication.cpp File Reference
@@ -115,7 +122,7 @@
Include dependency graph for abcgApplication.cpp:
-
+

Detailed Description

Definition of abcg::Application members.

@@ -127,7 +134,7 @@ diff --git a/abcg/doc/html/abcgApplication_8cpp__incl.map b/abcg/doc/html/abcgApplication_8cpp__incl.map index 6b71fcb2d..bcb0d240e 100644 --- a/abcg/doc/html/abcgApplication_8cpp__incl.map +++ b/abcg/doc/html/abcgApplication_8cpp__incl.map @@ -1,15 +1,29 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgApplication_8cpp__incl.md5 b/abcg/doc/html/abcgApplication_8cpp__incl.md5 index 747867c61..18c3d69af 100644 --- a/abcg/doc/html/abcgApplication_8cpp__incl.md5 +++ b/abcg/doc/html/abcgApplication_8cpp__incl.md5 @@ -1 +1 @@ -dece3eb5e5d861dd43e03b01d7a7a488 \ No newline at end of file +a1b4adf24edd833f3ff6b5489c16aa80 \ No newline at end of file diff --git a/abcg/doc/html/abcgApplication_8cpp__incl.svg b/abcg/doc/html/abcgApplication_8cpp__incl.svg index 51ebbb81f..e76763495 100644 --- a/abcg/doc/html/abcgApplication_8cpp__incl.svg +++ b/abcg/doc/html/abcgApplication_8cpp__incl.svg @@ -4,211 +4,253 @@ - - + + /home/harlen/dev/abcg/abcg/abcgApplication.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node2 - - -abcgApplication.hpp + + +abcgApplication.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -SDL_image.h + + +SDL_image.h - + Node1->Node4 - - + + + + + - + Node5 - - -span + + +span - + Node1->Node5 - - + + + + + - + Node6 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node6 - - + + + + + - + Node9 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node9 - - + + + + + - + Node13 - - -tiny_obj_loader.h + + +tiny_obj_loader.h - + Node1->Node13 - - + + + + + - + Node3 - - -string + + +string - + Node2->Node3 - - + + + + + - + Node6->Node3 - - + + + + + - + Node7 - - -source_location + + +source_location - + Node6->Node7 - - + + + + + - + Node8 - - -stdexcept + + +stdexcept - + Node6->Node8 - - + + + + + - + Node9->Node3 - - + + + + + - + Node10 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node9->Node10 - - + + + + + - + Node11 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node9->Node11 - - + + + + + - + Node12 - - -chrono + + +chrono - + Node11->Node12 - - + + + + + diff --git a/abcg/doc/html/abcgApplication_8hpp.html b/abcg/doc/html/abcgApplication_8hpp.html index 39e7e81be..8c11a7d14 100644 --- a/abcg/doc/html/abcgApplication_8hpp.html +++ b/abcg/doc/html/abcgApplication_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgApplication.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Macros
-
-
/home/harlen/dev/abcg/abcg/abcgApplication.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgApplication.hpp File Reference
@@ -114,35 +121,35 @@
Include dependency graph for abcgApplication.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::Application
 Manages the application's control flow. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - + - + - +

+

Macros

#define ABCG_VERSION_MAJOR   3
#define ABCG_VERSION_MAJOR   3
 
#define ABCG_VERSION_MINOR   1
#define ABCG_VERSION_MINOR   1
 
#define ABCG_VERSION_PATCH   1
#define ABCG_VERSION_PATCH   1
 

Detailed Description

@@ -150,8 +157,8 @@

This file is part of ABCg (https://github.com/hbatagelo/abcg).

Macro Definition Documentation

- -

◆ ABCG_VERSION_MAJOR

+ +

◆ ABCG_VERSION_MAJOR

@@ -164,8 +171,8 @@

-

◆ ABCG_VERSION_MINOR

+ +

◆ ABCG_VERSION_MINOR

@@ -178,8 +185,8 @@

-

◆ ABCG_VERSION_PATCH

+ +

◆ ABCG_VERSION_PATCH

@@ -198,7 +205,7 @@

diff --git a/abcg/doc/html/abcgApplication_8hpp.js b/abcg/doc/html/abcgApplication_8hpp.js index 30cd9e2ac..e64c247a2 100644 --- a/abcg/doc/html/abcgApplication_8hpp.js +++ b/abcg/doc/html/abcgApplication_8hpp.js @@ -1,6 +1,6 @@ var abcgApplication_8hpp = [ - [ "Application", "classabcg_1_1Application.html", "classabcg_1_1Application" ], + [ "abcg::Application", "classabcg_1_1Application.html", "classabcg_1_1Application" ], [ "ABCG_VERSION_MAJOR", "abcgApplication_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f", null ], [ "ABCG_VERSION_MINOR", "abcgApplication_8hpp.html#a7396b0333e58c89fbafa65e76af72183", null ], [ "ABCG_VERSION_PATCH", "abcgApplication_8hpp.html#af521d4146de1ade55008a4d5f0ddd768", null ] diff --git a/abcg/doc/html/abcgApplication_8hpp__dep__incl.map b/abcg/doc/html/abcgApplication_8hpp__dep__incl.map index 7d011df97..3e8de4029 100644 --- a/abcg/doc/html/abcgApplication_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgApplication_8hpp__dep__incl.map @@ -1,8 +1,14 @@ - - - - - - + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgApplication_8hpp__dep__incl.md5 b/abcg/doc/html/abcgApplication_8hpp__dep__incl.md5 index 749ec811d..321f70a98 100644 --- a/abcg/doc/html/abcgApplication_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgApplication_8hpp__dep__incl.md5 @@ -1 +1 @@ -e7bd1900b260028ed05486899b9f9346 \ No newline at end of file +3ea728d647f1266171996cf61325f407 \ No newline at end of file diff --git a/abcg/doc/html/abcgApplication_8hpp__dep__incl.svg b/abcg/doc/html/abcgApplication_8hpp__dep__incl.svg index 8742008b4..c36052f3f 100644 --- a/abcg/doc/html/abcgApplication_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgApplication_8hpp__dep__incl.svg @@ -4,105 +4,123 @@ - - + + /home/harlen/dev/abcg/abcg/abcgApplication.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.hpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node1->Node5 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node1->Node6 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgApplication_8hpp__incl.map b/abcg/doc/html/abcgApplication_8hpp__incl.map index 638be05e3..4ff4af63c 100644 --- a/abcg/doc/html/abcgApplication_8hpp__incl.map +++ b/abcg/doc/html/abcgApplication_8hpp__incl.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/abcgApplication_8hpp__incl.md5 b/abcg/doc/html/abcgApplication_8hpp__incl.md5 index 52be405f6..ce8408a53 100644 --- a/abcg/doc/html/abcgApplication_8hpp__incl.md5 +++ b/abcg/doc/html/abcgApplication_8hpp__incl.md5 @@ -1 +1 @@ -6bc7324c1f3f8f089bbd10e269d62825 \ No newline at end of file +f197a39a4cfd716a44ef34d9952fb691 \ No newline at end of file diff --git a/abcg/doc/html/abcgApplication_8hpp__incl.svg b/abcg/doc/html/abcgApplication_8hpp__incl.svg index 3a47efc3f..7c814e445 100644 --- a/abcg/doc/html/abcgApplication_8hpp__incl.svg +++ b/abcg/doc/html/abcgApplication_8hpp__incl.svg @@ -4,34 +4,37 @@ - - + + /home/harlen/dev/abcg/abcg/abcgApplication.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.hpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.hpp - + Node2 - - -string + + +string - + Node1->Node2 - - + + + + + diff --git a/abcg/doc/html/abcgApplication_8hpp_source.html b/abcg/doc/html/abcgApplication_8hpp_source.html index 88bf6fbe2..a1c9c8ed7 100644 --- a/abcg/doc/html/abcgApplication_8hpp_source.html +++ b/abcg/doc/html/abcgApplication_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgApplication.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +

@@ -93,74 +99,83 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgApplication.hpp
+
/home/harlen/dev/abcg/abcg/abcgApplication.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_APPLICATION_HPP_
-
12 #define ABCG_APPLICATION_HPP_
-
13 
-
14 #include <string>
-
15 
-
16 #define ABCG_VERSION_MAJOR 3
-
17 #define ABCG_VERSION_MINOR 1
-
18 #define ABCG_VERSION_PATCH 1
-
19 
-
23 namespace abcg {
-
24 class Application;
-
25 class Window;
-
26 #if defined(__EMSCRIPTEN__)
-
27 void mainLoopCallback(void *userData);
-
28 #endif
-
29 } // namespace abcg
-
30 
- -
38 public:
-
39  Application(int argc, char **argv);
-
40 
-
41  void run(Window &window);
-
42 
-
43  static std::string const &getAssetsPath() noexcept;
-
44  static std::string const &getBasePath() noexcept;
-
45 
-
46 private:
-
47  void mainLoopIterator(bool &done) const;
-
48 
-
49  Window *m_window{};
-
50 
-
51 #if defined(__EMSCRIPTEN__)
-
52  friend void mainLoopCallback(void *userData);
-
53 #endif
-
54 
-
55  // NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables)
-
56  // See https://bugs.llvm.org/show_bug.cgi?id=48040
-
57  static inline std::string m_assetsPath;
-
58  static inline std::string m_basePath;
-
59  // NOLINTEND(cppcoreguidelines-avoid-non-const-global-variables)
-
60 };
-
61 
-
62 #endif
-
Manages the application's control flow.
Definition: abcgApplication.hpp:37
-
static std::string const & getAssetsPath() noexcept
Returns the path to the application's assets directory, relative to the directory the executable is l...
Definition: abcgApplication.cpp:128
-
static std::string const & getBasePath() noexcept
Returns the path to the application's directory, relative to the directory the executable is launched...
Definition: abcgApplication.cpp:144
-
void run(Window &window)
Runs the application for the given window.
Definition: abcgApplication.cpp:77
-
Application(int argc, char **argv)
Constructs an abcg::Application object.
Definition: abcgApplication.cpp:48
-
Base abstract class that represents a SDL window.
Definition: abcgWindow.hpp:86
-
Root namespace.
Definition: abcgApplication.hpp:23
+Go to the documentation of this file.
1
+
11#ifndef ABCG_APPLICATION_HPP_
+
12#define ABCG_APPLICATION_HPP_
+
13
+
14#include <string>
+
15
+
16#define ABCG_VERSION_MAJOR 3
+
17#define ABCG_VERSION_MINOR 1
+
18#define ABCG_VERSION_PATCH 1
+
19
+
+
23namespace abcg {
+
24class Application;
+
25class Window;
+
26#if defined(__EMSCRIPTEN__)
+
27void mainLoopCallback(void *userData);
+
28#endif
+
29} // namespace abcg
+
+
30
+
+ +
38public:
+
39 Application(int argc, char **argv);
+
40
+
41 void run(Window &window);
+
42
+
43 static std::string const &getAssetsPath() noexcept;
+
44 static std::string const &getBasePath() noexcept;
+
45
+
46private:
+
47 void mainLoopIterator(bool &done) const;
+
48
+
49 Window *m_window{};
+
50
+
51#if defined(__EMSCRIPTEN__)
+
52 friend void mainLoopCallback(void *userData);
+
53#endif
+
54
+
55 // NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables)
+
56 // See https://bugs.llvm.org/show_bug.cgi?id=48040
+
57 static inline std::string m_assetsPath;
+
58 static inline std::string m_basePath;
+
59 // NOLINTEND(cppcoreguidelines-avoid-non-const-global-variables)
+
60};
+
+
61
+
62#endif
+
Manages the application's control flow.
Definition abcgApplication.hpp:37
+
static std::string const & getAssetsPath() noexcept
Returns the path to the application's assets directory, relative to the directory the executable is l...
Definition abcgApplication.cpp:128
+
static std::string const & getBasePath() noexcept
Returns the path to the application's directory, relative to the directory the executable is launched...
Definition abcgApplication.cpp:144
+
void run(Window &window)
Runs the application for the given window.
Definition abcgApplication.cpp:77
+
Base abstract class that represents a SDL window.
Definition abcgWindow.hpp:86
+
Root namespace.
Definition abcgApplication.hpp:23
diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp.html b/abcg/doc/html/abcgEmbeddedFonts_8hpp.html index 4ee048530..8bc911981 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp.html +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,26 +94,32 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp File Reference
#include <array>
Include dependency graph for abcgEmbeddedFonts.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

@@ -122,7 +129,7 @@ diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.map b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.map index 2648fa706..7809587f5 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.md5 b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.md5 index 2208df08e..bf6f5e8df 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.md5 @@ -1 +1 @@ -aa4bf467cadc07e4744a9aa08e81ab6b \ No newline at end of file +869b7ea57d116b93bc3499c9a23f828c \ No newline at end of file diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.svg b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.svg index 86119ff83..18af7be27 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgEmbeddedFonts.hpp + + +/home/harlen/dev/abcg +/abcg/abcgEmbeddedFonts.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.map b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.map index 52a88c1ae..3b0785114 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.map +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.md5 b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.md5 index 7979dda79..3511d759a 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.md5 +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.md5 @@ -1 +1 @@ -c0176d958bd683ca6848258ced132614 \ No newline at end of file +d29b245a1adf3d822783cac0ad857c07 \ No newline at end of file diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.svg b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.svg index c241709fe..5a048e2a9 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.svg +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp__incl.svg @@ -4,34 +4,37 @@ - - + + /home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgEmbeddedFonts.hpp + + +/home/harlen/dev/abcg +/abcg/abcgEmbeddedFonts.hpp - + Node2 - - -array + + +array - + Node1->Node2 - - + + + + + diff --git a/abcg/doc/html/abcgEmbeddedFonts_8hpp_source.html b/abcg/doc/html/abcgEmbeddedFonts_8hpp_source.html index dc7454480..ee6335abc 100644 --- a/abcg/doc/html/abcgEmbeddedFonts_8hpp_source.html +++ b/abcg/doc/html/abcgEmbeddedFonts_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +
@@ -93,8218 +99,8224 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp
+
/home/harlen/dev/abcg/abcg/abcgEmbeddedFonts.hpp
-Go to the documentation of this file.
1 #include <array>
-
2 
-
3 static std::array<unsigned char, 98304> const INCONSOLATA_MEDIUM_TTF{
-
4  0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x01, 0x00, 0x00, 0x04, 0x00, 0x20,
-
5  0x47, 0x44, 0x45, 0x46, 0x56, 0xb3, 0x54, 0x99, 0x00, 0x01, 0x57, 0x10,
-
6  0x00, 0x00, 0x01, 0x34, 0x47, 0x50, 0x4f, 0x53, 0x88, 0x2b, 0x49, 0x3f,
-
7  0x00, 0x01, 0x58, 0x44, 0x00, 0x00, 0x1d, 0xb8, 0x47, 0x53, 0x55, 0x42,
-
8  0x16, 0xda, 0x4e, 0xfc, 0x00, 0x01, 0x75, 0xfc, 0x00, 0x00, 0x09, 0xc4,
-
9  0x4f, 0x53, 0x2f, 0x32, 0x5f, 0xf9, 0x23, 0x31, 0x00, 0x01, 0x0d, 0x0c,
-
10  0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, 0xf3, 0x5b, 0xdf, 0xaf,
-
11  0x00, 0x01, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x40, 0x63, 0x6d, 0x61, 0x70,
-
12  0x2d, 0x65, 0xdc, 0x7a, 0x00, 0x01, 0x0d, 0x6c, 0x00, 0x00, 0x0a, 0x40,
-
13  0x63, 0x76, 0x74, 0x20, 0x16, 0xeb, 0x0d, 0xba, 0x00, 0x01, 0x29, 0xfc,
-
14  0x00, 0x00, 0x00, 0xf0, 0x66, 0x70, 0x67, 0x6d, 0xe2, 0x19, 0x9e, 0x5a,
-
15  0x00, 0x01, 0x17, 0xac, 0x00, 0x00, 0x0f, 0x94, 0x67, 0x61, 0x73, 0x70,
-
16  0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x57, 0x08, 0x00, 0x00, 0x00, 0x08,
-
17  0x67, 0x6c, 0x79, 0x66, 0x8e, 0x69, 0x44, 0x44, 0x00, 0x00, 0x01, 0x2c,
-
18  0x00, 0x00, 0xf4, 0xd4, 0x68, 0x65, 0x61, 0x64, 0x19, 0x41, 0x8d, 0x10,
-
19  0x00, 0x00, 0xfd, 0xa8, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61,
-
20  0x08, 0xbd, 0x06, 0xc6, 0x00, 0x01, 0x0c, 0xe8, 0x00, 0x00, 0x00, 0x24,
-
21  0x68, 0x6d, 0x74, 0x78, 0x09, 0x15, 0xc7, 0x45, 0x00, 0x00, 0xfd, 0xe0,
-
22  0x00, 0x00, 0x0f, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x40, 0xfb, 0x04, 0x93,
-
23  0x00, 0x00, 0xf6, 0x20, 0x00, 0x00, 0x07, 0x86, 0x6d, 0x61, 0x78, 0x70,
-
24  0x07, 0x7a, 0x10, 0xd4, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x20,
-
25  0x6e, 0x61, 0x6d, 0x65, 0x9f, 0x6b, 0xb9, 0xbe, 0x00, 0x01, 0x2a, 0xec,
-
26  0x00, 0x00, 0x05, 0x7e, 0x70, 0x6f, 0x73, 0x74, 0xa2, 0x18, 0xb3, 0xb6,
-
27  0x00, 0x01, 0x30, 0x6c, 0x00, 0x00, 0x26, 0x9a, 0x70, 0x72, 0x65, 0x70,
-
28  0x2b, 0xfa, 0x72, 0x3a, 0x00, 0x01, 0x27, 0x40, 0x00, 0x00, 0x02, 0xbb,
-
29  0x00, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x02, 0x78, 0x00, 0x03,
-
30  0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0d, 0x04, 0x06, 0x02, 0x01, 0x01, 0x06,
-
31  0x07, 0x03, 0x72, 0x0a, 0x06, 0x08, 0x72, 0x00, 0x2b, 0xc4, 0x2b, 0x11,
-
32  0x39, 0x2f, 0x33, 0x11, 0x39, 0x30, 0x31, 0x65, 0x23, 0x37, 0x33, 0x27,
-
33  0x03, 0x23, 0x13, 0x33, 0x13, 0x23, 0x01, 0x68, 0xe8, 0x0f, 0xc8, 0x5e,
-
34  0x97, 0x53, 0xdf, 0x18, 0xdf, 0x56, 0xaa, 0x3f, 0xde, 0xfe, 0x39, 0x02,
-
35  0x78, 0xfd, 0x88, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
36  0x03, 0x1b, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
37  0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56,
-
38  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
39  0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
-
40  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56,
-
41  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
42  0x03, 0x93, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7,
-
43  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x0b, 0x78, 0x00, 0x15, 0x40, 0x0e,
-
44  0x03, 0x1a, 0x16, 0x01, 0x01, 0x34, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
45  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
46  0xff, 0x65, 0x01, 0xe5, 0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
47  0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x00, 0x00,
-
48  0x00, 0x18, 0x40, 0x0c, 0x03, 0x1b, 0x07, 0x01, 0x01, 0x25, 0x56, 0x02,
-
49  0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
50  0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xbd,
-
51  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
-
52  0x01, 0x07, 0x03, 0xa2, 0xff, 0xe6, 0x00, 0xa2, 0x00, 0x15, 0x40, 0x0e,
-
53  0x03, 0x1a, 0x16, 0x01, 0x01, 0x69, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
54  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
55  0x00, 0x00, 0x01, 0xe5, 0x03, 0xc2, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
56  0x00, 0x26, 0x03, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x03,
-
57  0x00, 0xf9, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x21, 0x16, 0x01, 0x01, 0x33,
-
58  0x56, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
59  0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac,
-
60  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
-
61  0x01, 0x07, 0x03, 0xb4, 0xff, 0xec, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
62  0x03, 0x1e, 0x16, 0x01, 0x01, 0x66, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
63  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
64  0x00, 0x00, 0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
65  0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
-
66  0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
67  0x00, 0x00, 0x02, 0x1f, 0x03, 0x88, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
68  0x01, 0x06, 0x03, 0xbd, 0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x13,
-
69  0x0b, 0x01, 0x01, 0x99, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
-
70  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0xff, 0x65,
-
71  0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26,
-
72  0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x18,
-
73  0x40, 0x0c, 0x03, 0x17, 0x07, 0x01, 0x01, 0x15, 0x56, 0x02, 0x11, 0x0a,
-
74  0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
-
75  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xaa, 0x06, 0x26,
-
76  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x00, 0x00, 0x00, 0x15,
-
77  0x40, 0x0e, 0x03, 0x12, 0x0b, 0x01, 0x01, 0x8f, 0x56, 0x02, 0x0b, 0x07,
-
78  0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
79  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac, 0x06, 0x26, 0x00, 0x01,
-
80  0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0xfc, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
81  0x03, 0x19, 0x0b, 0x01, 0x01, 0x5e, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01,
-
82  0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
83  0x00, 0x00, 0x01, 0xe5, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
84  0x01, 0x06, 0x03, 0xc0, 0xff, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x16,
-
85  0x0b, 0x01, 0x01, 0xa9, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
-
86  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
-
87  0x01, 0xe5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
-
88  0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x0b,
-
89  0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
90  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x01,
-
91  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x03,
-
92  0x02, 0x0b, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
93  0xff, 0xff, 0x00, 0x0f, 0xff, 0x65, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26,
-
94  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
95  0xb4, 0x02, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
96  0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1b,
-
97  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
-
98  0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b,
-
99  0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x6c,
-
100  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
-
101  0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02, 0x12, 0x07, 0x01, 0x01, 0x37, 0x56,
-
102  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
103  0x03, 0x2d, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
-
104  0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01,
-
105  0x3c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
-
106  0x01, 0xe5, 0x03, 0x17, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
-
107  0x03, 0x84, 0x00, 0x01, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
-
108  0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
109  0xff, 0x19, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
110  0x01, 0x07, 0x03, 0x8e, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
111  0x15, 0x0a, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
112  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x22, 0x06, 0x26, 0x00, 0x01,
-
113  0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00, 0x00, 0x10, 0xb5, 0x03,
-
114  0x02, 0x0b, 0x07, 0x00, 0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b,
-
115  0x34, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xcb,
-
116  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa8, 0xff, 0x00,
-
117  0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0xb0, 0x00, 0x1a, 0x40, 0x0d,
-
118  0x04, 0x27, 0x07, 0x01, 0x01, 0xc6, 0x56, 0x03, 0x02, 0x0b, 0x07, 0x00,
-
119  0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
-
120  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x20, 0x06, 0x26,
-
121  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xff, 0x00, 0x00, 0x0b,
-
122  0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
123  0x00, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x02, 0x70, 0x00, 0x0f,
-
124  0x00, 0x13, 0x00, 0x2b, 0x40, 0x15, 0x10, 0x0e, 0x05, 0x08, 0x0e, 0x08,
-
125  0x0e, 0x08, 0x00, 0x13, 0x04, 0x04, 0x01, 0x02, 0x72, 0x09, 0x0c, 0x0c,
-
126  0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x11, 0x33,
-
127  0x11, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
128  0x13, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23,
-
129  0x35, 0x23, 0x07, 0x37, 0x33, 0x13, 0x23, 0x0a, 0xc3, 0x01, 0x23, 0xa6,
-
130  0x8c, 0x8c, 0xa4, 0xf0, 0x73, 0x32, 0x43, 0x63, 0x02, 0x08, 0x02, 0x70,
-
131  0x48, 0xbf, 0x49, 0xd8, 0x48, 0xa6, 0xa6, 0xeb, 0x01, 0x33, 0xff, 0xff,
-
132  0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x1a,
-
133  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
134  0x14, 0x01, 0x01, 0x01, 0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03,
-
135  0x00, 0x2c, 0x00, 0x00, 0x01, 0xce, 0x02, 0x6f, 0x00, 0x15, 0x00, 0x20,
-
136  0x00, 0x2c, 0x00, 0x1d, 0x40, 0x0e, 0x0b, 0x21, 0x21, 0x20, 0x20, 0x00,
-
137  0x2c, 0x01, 0x02, 0x72, 0x16, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
138  0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33,
-
139  0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14,
-
140  0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
141  0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23,
-
142  0x23, 0x2c, 0xb6, 0x36, 0x50, 0x34, 0x19, 0x15, 0x28, 0x1e, 0x1a, 0x2b,
-
143  0x1e, 0x11, 0x1d, 0x3a, 0x5a, 0x3c, 0x61, 0x6d, 0x29, 0x3d, 0x22, 0x1e,
-
144  0x42, 0x39, 0x5c, 0x58, 0x33, 0x3c, 0x19, 0x0e, 0x1d, 0x30, 0x22, 0x63,
-
145  0x02, 0x6f, 0x16, 0x29, 0x38, 0x22, 0x1c, 0x37, 0x2b, 0x0b, 0x0a, 0x20,
-
146  0x29, 0x30, 0x19, 0x28, 0x41, 0x2f, 0x19, 0x48, 0x16, 0x30, 0x26, 0x23,
-
147  0x35, 0x1f, 0x45, 0x18, 0x2b, 0x1a, 0x14, 0x21, 0x19, 0x0e, 0x00, 0x01,
-
148  0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x02, 0x75, 0x00, 0x29, 0x00, 0x21,
-
149  0x40, 0x10, 0x26, 0x25, 0x25, 0x21, 0x21, 0x29, 0x09, 0x72, 0x11, 0x0e,
-
150  0x10, 0x10, 0x17, 0x0b, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
-
151  0x33, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e,
-
152  0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
153  0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
-
154  0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b,
-
155  0x33, 0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19,
-
156  0x40, 0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c,
-
157  0x17, 0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58,
-
158  0x3e, 0x0a, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42,
-
159  0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d,
-
160  0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17, 0x2a, 0x34, 0x32, 0x00,
-
161  0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
-
162  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x01, 0x00, 0x00, 0x0b,
-
163  0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
164  0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1f, 0x06, 0x26,
-
165  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0x14, 0x00, 0x00, 0x0b,
-
166  0xb6, 0x01, 0x2d, 0x0b, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
167  0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x02, 0x75, 0x06, 0x26,
-
168  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x07, 0x00, 0x00, 0x0b,
-
169  0xb6, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
170  0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
-
171  0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d, 0x07, 0x00, 0x01, 0x06,
-
172  0x03, 0xa3, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x42, 0x0b, 0x01,
-
173  0x01, 0x20, 0x56, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b,
-
174  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
-
175  0x03, 0x1a, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
176  0x14, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x1b, 0x56,
-
177  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
-
178  0x03, 0x23, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
-
179  0x13, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x41, 0x56,
-
180  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0,
-
181  0x02, 0x6f, 0x00, 0x0f, 0x00, 0x1a, 0x00, 0x10, 0xb7, 0x1a, 0x01, 0x02,
-
182  0x72, 0x10, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31,
-
183  0x57, 0x11, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x0e, 0x03,
-
184  0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x27, 0x34, 0x26, 0x26, 0x23, 0x23,
-
185  0x32, 0x96, 0x37, 0x4a, 0x34, 0x15, 0x15, 0x1b, 0x0e, 0x02, 0x21, 0x41,
-
186  0x66, 0x4a, 0x39, 0x36, 0x46, 0x56, 0x29, 0x01, 0x25, 0x50, 0x44, 0x41,
-
187  0x01, 0x02, 0x70, 0x14, 0x25, 0x1c, 0x1c, 0x47, 0x52, 0x31, 0x48, 0x72,
-
188  0x50, 0x2b, 0x42, 0x39, 0x6c, 0x4b, 0x4d, 0x70, 0x3c, 0x00, 0x00, 0x02,
-
189  0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x23,
-
190  0x00, 0x21, 0x40, 0x10, 0x15, 0x00, 0x03, 0x20, 0x02, 0x20, 0x23, 0x23,
-
191  0x00, 0x1f, 0x05, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
192  0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
193  0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x1e, 0x02,
-
194  0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34,
-
195  0x26, 0x26, 0x23, 0x23, 0x15, 0x33, 0x15, 0x23, 0x47, 0x2e, 0x2e, 0x91,
-
196  0x2f, 0x45, 0x32, 0x24, 0x0c, 0x0b, 0x13, 0x0b, 0x22, 0x43, 0x64, 0x42,
-
197  0x37, 0x35, 0x3e, 0x54, 0x2a, 0x25, 0x4f, 0x3e, 0x3f, 0x65, 0x65, 0x01,
-
198  0x01, 0x28, 0x45, 0x01, 0x03, 0x13, 0x21, 0x28, 0x15, 0x12, 0x39, 0x4e,
-
199  0x31, 0x48, 0x73, 0x4f, 0x2b, 0x45, 0x38, 0x6a, 0x4b, 0x4d, 0x6f, 0x3b,
-
200  0xbc, 0x45, 0xff, 0xff, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0, 0x03, 0x1f,
-
201  0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0xe2, 0x00,
-
202  0x00, 0x0b, 0xb6, 0x02, 0x1e, 0x01, 0x01, 0x01, 0x22, 0x56, 0x00, 0x2b,
-
203  0x34, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f,
-
204  0x06, 0x06, 0x00, 0x25, 0x00, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x65,
-
205  0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06,
-
206  0x03, 0x8a, 0x07, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x21, 0x00, 0x01, 0x01,
-
207  0xb8, 0xff, 0xd5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x32,
-
208  0xff, 0x65, 0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00,
-
209  0x01, 0x06, 0x03, 0x90, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1c, 0x00,
-
210  0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
-
211  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x02, 0x70, 0x00, 0x0b, 0x00, 0x19,
-
212  0x40, 0x0c, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01, 0x02, 0x72, 0x09, 0x00,
-
213  0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30,
-
214  0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21,
-
215  0x15, 0x38, 0x01, 0x86, 0xfe, 0xcb, 0xff, 0xff, 0x01, 0x32, 0x02, 0x70,
-
216  0x48, 0xbe, 0x4a, 0xd8, 0x48, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
217  0x01, 0xbe, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
218  0x03, 0xa3, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
219  0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
220  0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
221  0x03, 0xa7, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01,
-
222  0x2f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
223  0x01, 0xbe, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
224  0x03, 0xa6, 0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x01, 0x01, 0x01,
-
225  0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x38,
-
226  0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x26,
-
227  0x03, 0x8d, 0xeb, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x0b, 0x00, 0x00, 0x15,
-
228  0x40, 0x0e, 0x02, 0x28, 0x01, 0x01, 0x01, 0x2f, 0x56, 0x01, 0x1b, 0x00,
-
229  0x01, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
230  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a,
-
231  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
232  0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
233  0x00, 0x38, 0x00, 0x00, 0x02, 0x2a, 0x03, 0x88, 0x06, 0x26, 0x00, 0x2a,
-
234  0x00, 0x00, 0x01, 0x06, 0x03, 0xbd, 0x09, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
235  0x02, 0x13, 0x0c, 0x01, 0x01, 0x6f, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
236  0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
237  0xff, 0x65, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
238  0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00,
-
239  0x00, 0x18, 0x40, 0x0c, 0x02, 0x18, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x01,
-
240  0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
241  0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xaa,
-
242  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x0b, 0x00,
-
243  0x00, 0x15, 0x40, 0x0e, 0x02, 0x13, 0x01, 0x01, 0x01, 0xae, 0x56, 0x01,
-
244  0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
245  0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xdc, 0x03, 0xac, 0x06, 0x26,
-
246  0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0x07, 0x00, 0x00, 0x15,
-
247  0x40, 0x0e, 0x02, 0x1a, 0x0c, 0x01, 0x01, 0x5e, 0x56, 0x01, 0x0c, 0x01,
-
248  0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
249  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x2a,
-
250  0x00, 0x00, 0x01, 0x06, 0x03, 0xc0, 0x0a, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
251  0x02, 0x17, 0x01, 0x01, 0x01, 0xc8, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
252  0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
253  0x00, 0x00, 0x01, 0xbe, 0x03, 0x55, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
254  0x01, 0x07, 0x03, 0x86, 0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02,
-
255  0x01, 0x0c, 0x01, 0x01, 0x01, 0x31, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
256  0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1d, 0x06, 0x26,
-
257  0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x0a, 0x00, 0x00, 0x0d,
-
258  0xb7, 0x02, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b, 0x34,
-
259  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x23,
-
260  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x0a, 0x00,
-
261  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x45, 0x56, 0x00, 0x2b,
-
262  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x65, 0x01, 0xbe, 0x02, 0x70,
-
263  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
264  0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
265  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
-
266  0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
-
267  0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x24, 0x56,
-
268  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
-
269  0x03, 0x6c, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
-
270  0x00, 0x18, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x01, 0x01, 0x01,
-
271  0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
272  0x01, 0xbe, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07,
-
273  0x03, 0x87, 0x00, 0x05, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01,
-
274  0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
275  0x00, 0x00, 0x01, 0xbe, 0x03, 0x17, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
276  0x01, 0x07, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
-
277  0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
278  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a,
-
279  0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07,
-
280  0x03, 0xa3, 0xff, 0xf8, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10,
-
281  0x0c, 0x01, 0x01, 0x53, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56,
-
282  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
283  0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x27,
-
284  0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa2, 0xff, 0xfb,
-
285  0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10, 0x0c, 0x01, 0x01, 0x53,
-
286  0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
287  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x19, 0x01, 0xbe, 0x02, 0x70,
-
288  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f, 0x00, 0x00,
-
289  0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b,
-
290  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x20,
-
291  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0x0a, 0x00,
-
292  0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b,
-
293  0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0xff, 0xf2, 0x01, 0xb5, 0x02, 0x6f,
-
294  0x00, 0x20, 0x00, 0x27, 0x00, 0x21, 0x40, 0x11, 0x0a, 0x27, 0x26, 0x03,
-
295  0x0b, 0x0b, 0x14, 0x20, 0x21, 0x25, 0x25, 0x22, 0x02, 0x72, 0x20, 0x09,
-
296  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x39, 0x2f, 0x17,
-
297  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33,
-
298  0x33, 0x15, 0x26, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36,
-
299  0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x06, 0x06, 0x23, 0x03, 0x35,
-
300  0x21, 0x15, 0x23, 0x17, 0x07, 0x01, 0x0c, 0x42, 0x5b, 0x30, 0x20, 0x3a,
-
301  0x51, 0x30, 0x37, 0x2e, 0x47, 0x2f, 0x18, 0x1f, 0x38, 0x27, 0x1e, 0x2a,
-
302  0x12, 0x0a, 0x07, 0x01, 0x05, 0x07, 0x2c, 0x21, 0x55, 0x33, 0xbb, 0x01,
-
303  0x3f, 0xde, 0x9f, 0x4c, 0x0e, 0x34, 0x54, 0x32, 0x2c, 0x4a, 0x38, 0x1f,
-
304  0x41, 0x02, 0x0f, 0x21, 0x35, 0x23, 0x25, 0x36, 0x1c, 0x10, 0x10, 0x0e,
-
305  0x0d, 0x08, 0x06, 0x06, 0x41, 0x25, 0x26, 0x02, 0x37, 0x46, 0x4a, 0xac,
-
306  0x0d, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
-
307  0x00, 0x09, 0x00, 0x17, 0x40, 0x0b, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01,
-
308  0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f,
-
309  0x33, 0x30, 0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23,
-
310  0x11, 0x4a, 0x01, 0x71, 0xfe, 0xdf, 0xe9, 0xe9, 0x02, 0x70, 0x47, 0xb5,
-
311  0x47, 0xfe, 0xd3, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0,
-
312  0x02, 0x77, 0x00, 0x30, 0x00, 0x21, 0x40, 0x10, 0x2b, 0x2a, 0x2a, 0x0a,
-
313  0x23, 0x30, 0x09, 0x72, 0x11, 0x0e, 0x10, 0x10, 0x18, 0x0a, 0x03, 0x72,
-
314  0x00, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
315  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x03, 0x33,
-
316  0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26, 0x27, 0x2e, 0x02,
-
317  0x23, 0x22, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
318  0x37, 0x35, 0x23, 0x35, 0x33, 0x15, 0x06, 0x06, 0x23, 0x01, 0x15, 0x4c,
-
319  0x6e, 0x3b, 0x1f, 0x36, 0x41, 0x41, 0x1b, 0x27, 0x48, 0x3c, 0x11, 0x36,
-
320  0x08, 0x05, 0x01, 0x06, 0x0b, 0x0e, 0x1e, 0x25, 0x17, 0x1a, 0x2f, 0x28,
-
321  0x1e, 0x10, 0x16, 0x2b, 0x3b, 0x25, 0x0d, 0x1d, 0x1d, 0x1b, 0x0c, 0x6e,
-
322  0xbb, 0x2c, 0x5f, 0x30, 0x0a, 0x4e, 0x8f, 0x5f, 0x50, 0x71, 0x4a, 0x2a,
-
323  0x10, 0x1b, 0x2e, 0x21, 0x30, 0x07, 0x06, 0x08, 0x0e, 0x0d, 0x10, 0x15,
-
324  0x0a, 0x0e, 0x23, 0x37, 0x51, 0x36, 0x3f, 0x60, 0x41, 0x21, 0x03, 0x09,
-
325  0x0e, 0x09, 0x89, 0x48, 0xfb, 0x21, 0x20, 0x00, 0xff, 0xff, 0x00, 0x20,
-
326  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x18, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
327  0x01, 0x06, 0x03, 0xa7, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x35, 0x0a,
-
328  0x01, 0x01, 0x29, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
329  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
330  0x01, 0x06, 0x03, 0xa6, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x34, 0x0a,
-
331  0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
332  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
333  0x01, 0x06, 0x03, 0xa5, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x31, 0x0a,
-
334  0x01, 0x01, 0x19, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
335  0xfe, 0xe6, 0x01, 0xd0, 0x02, 0x77, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
336  0x01, 0x06, 0x03, 0x8c, 0x1d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3d, 0x30,
-
337  0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
338  0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x23, 0x06, 0x26, 0x00, 0x43,
-
339  0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
340  0x31, 0x0a, 0x01, 0x01, 0x3f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
341  0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x17, 0x06, 0x26, 0x00, 0x43,
-
342  0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x17, 0x00, 0xa4, 0x00, 0x0b,
-
343  0xb6, 0x01, 0x31, 0x0a, 0x01, 0x01, 0x65, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
344  0x00, 0x01, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xc7, 0x02, 0x6f, 0x00, 0x15,
-
345  0x00, 0x19, 0x40, 0x0c, 0x07, 0x13, 0x13, 0x00, 0x11, 0x15, 0x08, 0x72,
-
346  0x09, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
347  0x33, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33,
-
348  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11,
-
349  0x23, 0x2e, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a, 0x06, 0x03, 0x57,
-
350  0xe2, 0x57, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08,
-
351  0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0x23, 0xfe, 0xdd, 0x00, 0x00, 0x02,
-
352  0x00, 0x07, 0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x19,
-
353  0x00, 0x20, 0x40, 0x0f, 0x17, 0x0b, 0x00, 0x00, 0x0b, 0x0b, 0x04, 0x15,
-
354  0x19, 0x08, 0x72, 0x0d, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
355  0x12, 0x39, 0x2f, 0x33, 0x7d, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x53, 0x35,
-
356  0x21, 0x15, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33, 0x11,
-
357  0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23,
-
358  0x07, 0x01, 0xe3, 0xfe, 0x44, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a,
-
359  0x06, 0x03, 0x57, 0xe2, 0x57, 0x01, 0xed, 0x42, 0x42, 0x82, 0x08, 0x06,
-
360  0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01,
-
361  0x23, 0xfe, 0xdd, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x4c, 0x01, 0xc7,
-
362  0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
-
363  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x16, 0x11, 0x01, 0x01, 0xb8, 0xff,
-
364  0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
365  0x01, 0xc7, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
366  0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x01, 0x01,
-
367  0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
368  0x01, 0xc7, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
369  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1c, 0x11, 0x01, 0x01,
-
370  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4d,
-
371  0x00, 0x00, 0x01, 0x9b, 0x02, 0x6f, 0x00, 0x0b, 0x00, 0x19, 0x40, 0x0c,
-
372  0x08, 0x04, 0x04, 0x05, 0x02, 0x72, 0x01, 0x09, 0x09, 0x00, 0x08, 0x72,
-
373  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
-
374  0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x4d,
-
375  0x7b, 0x74, 0x01, 0x41, 0x7b, 0x81, 0x46, 0x01, 0xe3, 0x46, 0x46, 0xfe,
-
376  0x1c, 0x45, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1b,
-
377  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xe4, 0x00,
-
378  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
-
379  0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x18,
-
380  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7, 0xf7, 0x00,
-
381  0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x30, 0x56, 0x00, 0x2b,
-
382  0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1a,
-
383  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0xf7, 0x00,
-
384  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b,
-
385  0x34, 0x00, 0xff, 0xff, 0x00, 0x41, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x55,
-
386  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xe6,
-
387  0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x32,
-
388  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
389  0x01, 0x9b, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
390  0x03, 0xa0, 0xf6, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01,
-
391  0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
-
392  0x00, 0x00, 0x01, 0x9b, 0x03, 0xae, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
-
393  0x00, 0x26, 0x03, 0xa0, 0xf6, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xe2,
-
394  0x00, 0x93, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x24, 0x12, 0x01, 0x00, 0x0d,
-
395  0x56, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
-
396  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b,
-
397  0x03, 0x23, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
-
398  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x46, 0x56,
-
399  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0xff, 0x65, 0x01, 0x9b,
-
400  0x02, 0x6f, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
401  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
402  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
403  0x01, 0x9b, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
404  0x03, 0xa2, 0xe7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01,
-
405  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
406  0x01, 0x9b, 0x03, 0x6c, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07,
-
407  0x03, 0x85, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x05,
-
408  0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
-
409  0x00, 0x00, 0x01, 0x9b, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
-
410  0x01, 0x07, 0x03, 0x87, 0xff, 0xf1, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
-
411  0x0c, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
412  0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x17, 0x06, 0x26, 0x00, 0x4f,
-
413  0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0xff, 0xf8, 0x00, 0xa4, 0x00, 0x0b,
-
414  0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
415  0xff, 0xff, 0x00, 0x4d, 0xff, 0x19, 0x01, 0x9d, 0x02, 0x6f, 0x06, 0x26,
-
416  0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x74, 0x00, 0x00, 0x0b,
-
417  0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
418  0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9c, 0x03, 0x50, 0x06, 0x26,
-
419  0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb3, 0xed, 0x22, 0x00, 0x0b,
-
420  0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
421  0x00, 0x01, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c,
-
422  0x00, 0x15, 0x40, 0x0a, 0x0c, 0x1c, 0x09, 0x72, 0x16, 0x12, 0x12, 0x13,
-
423  0x02, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x57,
-
424  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
-
425  0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x16,
-
426  0x0e, 0x02, 0x23, 0xc3, 0x2d, 0x4e, 0x1d, 0x2d, 0x07, 0x06, 0x01, 0x07,
-
427  0x0c, 0x10, 0x22, 0x15, 0x1f, 0x28, 0x13, 0x76, 0x01, 0x28, 0x5e, 0x01,
-
428  0x1b, 0x31, 0x3e, 0x22, 0x0c, 0x22, 0x23, 0x3f, 0x08, 0x05, 0x08, 0x0f,
-
429  0x0b, 0x0c, 0x0d, 0x1d, 0x42, 0x35, 0x01, 0x55, 0x46, 0x46, 0xfe, 0xa9,
-
430  0x3b, 0x55, 0x36, 0x18, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xe9,
-
431  0x03, 0x1a, 0x06, 0x26, 0x00, 0x5e, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
432  0x4c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x13, 0x01, 0x01, 0x20, 0x56,
-
433  0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x28, 0xff, 0xfc, 0x01, 0xde,
-
434  0x02, 0x74, 0x00, 0x15, 0x00, 0x1a, 0x40, 0x0e, 0x01, 0x00, 0x0b, 0x13,
-
435  0x04, 0x03, 0x12, 0x04, 0x02, 0x72, 0x14, 0x03, 0x08, 0x72, 0x00, 0x2b,
-
436  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x07, 0x15, 0x23,
-
437  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
-
438  0x33, 0x03, 0x13, 0x07, 0xae, 0x2f, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xf3,
-
439  0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3, 0xf2, 0x67, 0x01, 0x2e, 0x36,
-
440  0xf8, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02,
-
441  0x01, 0x01, 0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x28,
-
442  0xfe, 0xe6, 0x01, 0xde, 0x02, 0x74, 0x06, 0x26, 0x00, 0x60, 0x00, 0x00,
-
443  0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03,
-
444  0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02,
-
445  0x00, 0x29, 0xff, 0xfc, 0x01, 0xda, 0x02, 0x74, 0x00, 0x20, 0x00, 0x24,
-
446  0x00, 0x1e, 0x40, 0x11, 0x24, 0x12, 0x1e, 0x07, 0x21, 0x22, 0x04, 0x00,
-
447  0x20, 0x12, 0x18, 0x0c, 0x03, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b,
-
448  0x32, 0x3f, 0x12, 0x17, 0x39, 0x3f, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15,
-
449  0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x15, 0x15,
-
450  0x23, 0x26, 0x26, 0x27, 0x22, 0x22, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x15,
-
451  0x23, 0x13, 0x37, 0x01, 0x07, 0x29, 0x57, 0x0a, 0x06, 0x03, 0x2f, 0x52,
-
452  0x48, 0x42, 0x20, 0x0c, 0x15, 0x08, 0x08, 0x06, 0x0d, 0x11, 0x02, 0x02,
-
453  0x02, 0x0d, 0x22, 0x2d, 0x3e, 0x52, 0x36, 0x58, 0x69, 0x3d, 0x01, 0x0b,
-
454  0x66, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe8, 0x4d, 0x6d, 0x42, 0x1e,
-
455  0x04, 0x04, 0x53, 0x0a, 0x06, 0x0a, 0x02, 0x0d, 0x23, 0x44, 0x6f, 0x51,
-
456  0xed, 0x01, 0x53, 0x37, 0xfe, 0x76, 0x04, 0x00, 0x00, 0x01, 0x00, 0x3f,
-
457  0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f, 0x00, 0x0a, 0x00, 0x0e, 0xb6, 0x07,
-
458  0x0a, 0x08, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x30, 0x31,
-
459  0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21, 0x3f,
-
460  0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x02, 0x6f, 0x08, 0x06,
-
461  0x0e, 0x11, 0xfe, 0x05, 0x47, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x60,
-
462  0x01, 0xc8, 0x02, 0x6f, 0x00, 0x1b, 0x00, 0x25, 0x00, 0x1d, 0x40, 0x0e,
-
463  0x0c, 0x00, 0x23, 0x12, 0x13, 0x13, 0x1d, 0x1c, 0x08, 0x72, 0x1d, 0x02,
-
464  0x72, 0x00, 0x00, 0x2f, 0x2b, 0x2b, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
465  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x17, 0x1e,
-
466  0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x15, 0x31,
-
467  0x11, 0x16, 0x0e, 0x02, 0x25, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11,
-
468  0x33, 0x15, 0x01, 0x1d, 0x2b, 0x48, 0x1c, 0x36, 0x06, 0x04, 0x02, 0x06,
-
469  0x04, 0x15, 0x1c, 0x12, 0x1d, 0x26, 0x13, 0x78, 0xcc, 0x01, 0x1b, 0x30,
-
470  0x3e, 0xfe, 0xfd, 0x5f, 0x04, 0x04, 0x9a, 0xa0, 0x22, 0x22, 0x40, 0x04,
-
471  0x0a, 0x0a, 0x07, 0x05, 0x0f, 0x0a, 0x1e, 0x43, 0x37, 0x01, 0xeb, 0x45,
-
472  0x46, 0xfe, 0x12, 0x3b, 0x54, 0x34, 0x18, 0xa0, 0x02, 0x6f, 0x07, 0x03,
-
473  0x08, 0x10, 0xfd, 0xfa, 0x47, 0x00, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00,
-
474  0x01, 0xbd, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06,
-
475  0x03, 0xa3, 0xc5, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x00, 0x01, 0x01,
-
476  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0x00,
-
477  0x01, 0xbd, 0x02, 0x79, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x15, 0x40, 0x0b,
-
478  0x19, 0x1c, 0x08, 0x72, 0x12, 0x02, 0x72, 0x00, 0x0b, 0x03, 0x72, 0x00,
-
479  0x2b, 0xcc, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x41, 0x27, 0x36, 0x36, 0x35,
-
480  0x34, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
481  0x06, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21,
-
482  0x01, 0x55, 0x24, 0x17, 0x1b, 0x13, 0x14, 0x1e, 0x16, 0x19, 0x22, 0x13,
-
483  0x26, 0xfe, 0xcd, 0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x01,
-
484  0x96, 0x1e, 0x15, 0x2e, 0x0e, 0x0b, 0x13, 0x16, 0x0e, 0x17, 0x1b, 0x27,
-
485  0x20, 0x17, 0x32, 0x35, 0xbb, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x05, 0x47,
-
486  0xff, 0xff, 0x00, 0x3f, 0xfe, 0xe6, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
-
487  0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e,
-
488  0xb4, 0x01, 0x17, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00,
-
489  0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f,
-
490  0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x02, 0x22, 0x44, 0x00,
-
491  0x00, 0x0e, 0xb4, 0x01, 0x11, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x15, 0xb0,
-
492  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd,
-
493  0x02, 0x6f, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
494  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff,
-
495  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x40, 0xff, 0x51,
-
496  0x01, 0xbc, 0x02, 0x97, 0x00, 0x08, 0x00, 0x25, 0x00, 0x31, 0x00, 0x1f,
-
497  0x40, 0x10, 0x2c, 0x26, 0x26, 0x1e, 0x1f, 0x06, 0x72, 0x17, 0x09, 0x01,
-
498  0x02, 0x72, 0x06, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2f, 0x33,
-
499  0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x14, 0x06,
-
500  0x15, 0x11, 0x33, 0x15, 0x07, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1e, 0x03,
-
501  0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x23, 0x35, 0x33,
-
502  0x11, 0x14, 0x0e, 0x02, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
503  0x16, 0x15, 0x14, 0x06, 0x40, 0x60, 0x09, 0x8d, 0x27, 0x1b, 0x31, 0x29,
-
504  0x11, 0x36, 0x05, 0x03, 0x05, 0x0e, 0x10, 0x07, 0x0c, 0x0f, 0x07, 0x15,
-
505  0x21, 0x1a, 0x0d, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0x5f, 0x18, 0x22, 0x21,
-
506  0x19, 0x17, 0x23, 0x23, 0x02, 0x6f, 0x0a, 0x0e, 0x0a, 0xfd, 0xfb, 0x48,
-
507  0xaf, 0x0d, 0x1b, 0x13, 0x48, 0x05, 0x0b, 0x0b, 0x0d, 0x08, 0x03, 0x04,
-
508  0x03, 0x0e, 0x1d, 0x2e, 0x1f, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a,
-
509  0x2f, 0x17, 0x02, 0xd3, 0x21, 0x17, 0x19, 0x21, 0x23, 0x17, 0x17, 0x21,
-
510  0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
-
511  0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e,
-
512  0xb4, 0x01, 0x0c, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00,
-
513  0x2b, 0x34, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x01, 0xc4, 0x02, 0x6f,
-
514  0x00, 0x16, 0x00, 0x18, 0x40, 0x0d, 0x01, 0x13, 0x04, 0x0d, 0x04, 0x00,
-
515  0x05, 0x02, 0x72, 0x14, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x12,
-
516  0x17, 0x39, 0x30, 0x31, 0x73, 0x35, 0x07, 0x35, 0x37, 0x11, 0x33, 0x32,
-
517  0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x37, 0x36, 0x36, 0x37, 0x15, 0x07,
-
518  0x15, 0x21, 0x15, 0x47, 0x36, 0x36, 0x5f, 0x01, 0x01, 0x08, 0x02, 0x9d,
-
519  0x08, 0x0f, 0x05, 0xb9, 0x01, 0x26, 0xec, 0x12, 0x49, 0x12, 0x01, 0x3a,
-
520  0x02, 0x01, 0x04, 0x09, 0x12, 0xfc, 0x33, 0x03, 0x06, 0x03, 0x4d, 0x3c,
-
521  0xc0, 0x47, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x70,
-
522  0x00, 0x0c, 0x00, 0x1a, 0x40, 0x0e, 0x0a, 0x03, 0x0b, 0x08, 0x04, 0x07,
-
523  0x05, 0x02, 0x02, 0x72, 0x07, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
524  0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33, 0x13, 0x13, 0x33,
-
525  0x11, 0x23, 0x11, 0x07, 0x23, 0x27, 0x11, 0x26, 0x46, 0x8f, 0x91, 0x44,
-
526  0x4d, 0x7a, 0x25, 0x72, 0x02, 0x6f, 0xfe, 0xd5, 0x01, 0x2c, 0xfd, 0x90,
-
527  0x01, 0xca, 0xf3, 0xf1, 0xfe, 0x38, 0xff, 0xff, 0x00, 0x26, 0xff, 0x65,
-
528  0x01, 0xd0, 0x02, 0x70, 0x06, 0x26, 0x00, 0x6d, 0x00, 0x00, 0x01, 0x06,
-
529  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x13, 0x07, 0x01, 0x01,
-
530  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
-
531  0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x17, 0x40, 0x0b,
-
532  0x0c, 0x02, 0x01, 0x0b, 0x0e, 0x08, 0x72, 0x03, 0x01, 0x02, 0x72, 0x00,
-
533  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x53, 0x33, 0x13,
-
534  0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x01, 0x11, 0x23,
-
535  0x2e, 0x54, 0xf5, 0x02, 0x4e, 0x0a, 0x06, 0x03, 0x48, 0xff, 0x00, 0x4e,
-
536  0x02, 0x6f, 0xfe, 0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe,
-
537  0x01, 0xd8, 0xfe, 0x28, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
-
538  0x03, 0x1b, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
539  0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x00, 0x01, 0x01, 0x25, 0x56,
-
540  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
-
541  0x03, 0x1f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
542  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01, 0x22, 0x56,
-
543  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xcd,
-
544  0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
545  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1b, 0x0b, 0x01, 0x01, 0xb8, 0xff,
-
546  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
547  0x01, 0xcd, 0x03, 0x23, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
-
548  0x03, 0xa1, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
549  0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
550  0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
-
551  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0b, 0x01, 0x01,
-
552  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2d,
-
553  0xff, 0x42, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c, 0x00, 0x1b, 0x40, 0x0e,
-
554  0x16, 0x1c, 0x17, 0x03, 0x19, 0x01, 0x1b, 0x02, 0x72, 0x19, 0x08, 0x72,
-
555  0x12, 0x09, 0x00, 0x2f, 0x33, 0x2b, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30,
-
556  0x31, 0x41, 0x33, 0x14, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06, 0x23, 0x22,
-
557  0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x03, 0x11,
-
558  0x23, 0x11, 0x33, 0x13, 0x01, 0x78, 0x54, 0x07, 0x26, 0x46, 0x2e, 0x18,
-
559  0x32, 0x17, 0x29, 0x08, 0x07, 0x08, 0x11, 0x10, 0x1b, 0x21, 0x0f, 0x01,
-
560  0xfc, 0x4e, 0x54, 0xf7, 0x02, 0x6f, 0x09, 0x0b, 0x0c, 0xfd, 0xb1, 0x3e,
-
561  0x54, 0x2c, 0x0f, 0x10, 0x48, 0x02, 0x08, 0x09, 0x08, 0x1c, 0x3a, 0x2b,
-
562  0x01, 0xc9, 0xfe, 0x28, 0x02, 0x6f, 0xfe, 0x43, 0xff, 0xff, 0x00, 0x2e,
-
563  0xff, 0x65, 0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00,
-
564  0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x0e,
-
565  0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
566  0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd, 0x03, 0x20, 0x06, 0x26, 0x00, 0x6f,
-
567  0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
568  0x13, 0x03, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02,
-
569  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
-
570  0x00, 0x10, 0xb7, 0x18, 0x08, 0x03, 0x72, 0x10, 0x00, 0x09, 0x72, 0x00,
-
571  0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34,
-
572  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
573  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
574  0x16, 0x16, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35,
-
575  0x35, 0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21,
-
576  0x21, 0x40, 0x0b, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64,
-
577  0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f,
-
578  0x4d, 0x51, 0x6f, 0x39, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
579  0x03, 0x1c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
580  0xed, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56,
-
581  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
582  0x03, 0x19, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
-
583  0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x2c, 0x56,
-
584  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
585  0x03, 0x1b, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
586  0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
-
587  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x02, 0x1f,
-
588  0x03, 0x89, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbd,
-
589  0xff, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x08, 0x01, 0x01, 0x8b,
-
590  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
591  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x03, 0x1b,
-
592  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x0a, 0x00,
-
593  0x01, 0x06, 0x03, 0xa5, 0x00, 0x01, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c,
-
594  0x08, 0x01, 0x01, 0x1c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
595  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18,
-
596  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xab, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
597  0x01, 0x06, 0x03, 0xbe, 0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27,
-
598  0x08, 0x01, 0x01, 0xab, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
-
599  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
600  0x01, 0xdd, 0x03, 0xad, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
601  0x03, 0xbf, 0xfc, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x08, 0x01,
-
602  0x01, 0x7a, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b,
-
603  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
604  0x03, 0xaa, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xc0,
-
605  0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x08, 0x01, 0x01, 0xc5,
-
606  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
607  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x56,
-
608  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef,
-
609  0x00, 0xa5, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2e,
-
610  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
611  0x01, 0xdd, 0x03, 0x1e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
612  0x03, 0xa0, 0x00, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01,
-
613  0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
614  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
615  0x00, 0x26, 0x03, 0xa0, 0x00, 0x01, 0x01, 0x07, 0x03, 0x84, 0xff, 0xff,
-
616  0x01, 0x38, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x54,
-
617  0x56, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34,
-
618  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
619  0x03, 0x8e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa1,
-
620  0xff, 0x01, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x15,
-
621  0x40, 0x0e, 0x03, 0x2c, 0x26, 0x01, 0x01, 0x2f, 0x56, 0x02, 0x20, 0x08,
-
622  0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
623  0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78,
-
624  0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02,
-
625  0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
626  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26,
-
627  0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b,
-
628  0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
629  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26,
-
630  0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4,
-
631  0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b,
-
632  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0xa4,
-
633  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa, 0xea, 0xd7,
-
634  0x00, 0x0e, 0xb4, 0x02, 0x20, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa4, 0xb0,
-
635  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
636  0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
637  0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01, 0x21, 0x56,
-
638  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd,
-
639  0x02, 0xa4, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
640  0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x03, 0x30, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
641  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
642  0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06,
-
643  0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01,
-
644  0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
645  0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x07,
-
646  0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x03, 0x31, 0x08,
-
647  0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
648  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00,
-
649  0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2e, 0x08,
-
650  0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
651  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
652  0x01, 0x06, 0x03, 0xa4, 0xda, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20,
-
653  0x08, 0x01, 0x01, 0x12, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
654  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2e, 0x06, 0x26, 0x00, 0x78,
-
655  0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa5, 0x00, 0x0b,
-
656  0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x43, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
657  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x18, 0x06, 0x26,
-
658  0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5,
-
659  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56, 0x00, 0x2b,
-
660  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4,
-
661  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01,
-
662  0x00, 0xa5, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x99, 0x00, 0x15,
-
663  0x40, 0x0e, 0x03, 0x24, 0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08,
-
664  0x01, 0x01, 0x68, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
665  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4, 0x06, 0x26, 0x00, 0x78,
-
666  0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5, 0x01, 0x07,
-
667  0x03, 0xa2, 0xff, 0xf1, 0x00, 0x99, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24,
-
668  0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56,
-
669  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x25,
-
670  0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
671  0x03, 0x8e, 0x2f, 0x0b, 0x00, 0x0b, 0xb6, 0x02, 0x29, 0x00, 0x00, 0x00,
-
672  0x26, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x18, 0xff, 0xd1,
-
673  0x01, 0xdd, 0x02, 0xaa, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x1e,
-
674  0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c, 0x0c, 0x03, 0x72, 0x01, 0x00, 0x00,
-
675  0x14, 0x04, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b,
-
676  0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x03, 0x22,
-
677  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
678  0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
-
679  0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x56, 0x30, 0x01, 0x77, 0x2f, 0xd1,
-
680  0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35, 0x64, 0x49,
-
681  0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21, 0x40, 0x2f,
-
682  0x17, 0x02, 0xc2, 0x18, 0xfd, 0x63, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d,
-
683  0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f,
-
684  0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0x00, 0xff, 0xff, 0x00, 0x18,
-
685  0xff, 0xd1, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x94, 0x00, 0x00,
-
686  0x01, 0x06, 0x03, 0xa3, 0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c,
-
687  0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
688  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
689  0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08,
-
690  0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
691  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xba, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
692  0x00, 0x26, 0x03, 0xa9, 0xff, 0x01, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed,
-
693  0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38, 0x08, 0x01, 0x01, 0xbc,
-
694  0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
695  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xbc,
-
696  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa9, 0xff, 0x01,
-
697  0x01, 0x07, 0x03, 0xa0, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x17, 0x40, 0x0f,
-
698  0x04, 0x03, 0x38, 0x08, 0x01, 0x01, 0xd8, 0x56, 0x02, 0x24, 0x08, 0x01,
-
699  0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
700  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78,
-
701  0x00, 0x00, 0x00, 0x27, 0x03, 0xb4, 0xff, 0xf6, 0x00, 0xa4, 0x01, 0x07,
-
702  0x03, 0x84, 0xff, 0xfb, 0x01, 0x39, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38,
-
703  0x08, 0x01, 0x01, 0xfb, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x71, 0x56,
-
704  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x07, 0xff, 0xf9,
-
705  0x01, 0xe7, 0x02, 0x78, 0x00, 0x1b, 0x00, 0x2b, 0x00, 0x2d, 0x40, 0x18,
-
706  0x15, 0x18, 0x08, 0x72, 0x10, 0x0d, 0x02, 0x72, 0x0c, 0x23, 0x23, 0x11,
-
707  0x14, 0x14, 0x00, 0x09, 0x03, 0x72, 0x19, 0x1c, 0x1c, 0x00, 0x09, 0x72,
-
708  0x00, 0x2b, 0x32, 0x11, 0x39, 0x2b, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
709  0x39, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x2e, 0x02, 0x35,
-
710  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x35, 0x33, 0x15, 0x23, 0x15,
-
711  0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x06, 0x06, 0x27, 0x32,
-
712  0x36, 0x37, 0x11, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16,
-
713  0x16, 0xae, 0x26, 0x3e, 0x2b, 0x18, 0x28, 0x4b, 0x35, 0x13, 0x26, 0x10,
-
714  0xef, 0xa4, 0x8b, 0x8b, 0xa2, 0xee, 0x0f, 0x26, 0x0c, 0x18, 0x22, 0x06,
-
715  0x0a, 0x22, 0x1c, 0x12, 0x20, 0x18, 0x0f, 0x17, 0x2a, 0x07, 0x26, 0x4f,
-
716  0x78, 0x52, 0x6a, 0x8e, 0x48, 0x0f, 0x11, 0x18, 0x48, 0xbf, 0x49, 0xd8,
-
717  0x48, 0x1a, 0x11, 0x10, 0x49, 0x26, 0x1e, 0x01, 0x5c, 0x20, 0x30, 0x18,
-
718  0x38, 0x61, 0x48, 0x4e, 0x6f, 0x3a, 0x00, 0x02, 0x00, 0x37, 0x00, 0x00,
-
719  0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x17, 0x40, 0x0b,
-
720  0x0e, 0x0c, 0x0c, 0x00, 0x18, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00,
-
721  0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
-
722  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33,
-
723  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x37, 0xcc, 0x47,
-
724  0x59, 0x2a, 0x17, 0x30, 0x4a, 0x34, 0x7a, 0x72, 0x2a, 0x34, 0x18, 0x18,
-
725  0x34, 0x29, 0x73, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
-
726  0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x02,
-
727  0x00, 0x38, 0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x1f,
-
728  0x00, 0x1f, 0x40, 0x0f, 0x15, 0x13, 0x1f, 0x09, 0x13, 0x09, 0x13, 0x09,
-
729  0x00, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39,
-
730  0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
-
731  0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15,
-
732  0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35,
-
733  0x34, 0x26, 0x26, 0x23, 0x23, 0x38, 0x5d, 0x01, 0x01, 0x08, 0x02, 0x77,
-
734  0x47, 0x58, 0x2a, 0x29, 0x56, 0x45, 0x7c, 0x79, 0x28, 0x32, 0x17, 0x18,
-
735  0x34, 0x29, 0x75, 0x02, 0x6f, 0x01, 0x01, 0x02, 0x03, 0x0b, 0x0c, 0x55,
-
736  0x30, 0x51, 0x31, 0x31, 0x50, 0x2f, 0x9a, 0xe1, 0x1b, 0x2f, 0x1c, 0x1d,
-
737  0x2f, 0x1e, 0x00, 0x02, 0x00, 0x1a, 0xff, 0x6d, 0x01, 0xdc, 0x02, 0x77,
-
738  0x00, 0x1e, 0x00, 0x31, 0x00, 0x19, 0x40, 0x0c, 0x29, 0x0e, 0x03, 0x72,
-
739  0x1f, 0x18, 0x05, 0x09, 0x72, 0x1c, 0x00, 0x09, 0x00, 0x7c, 0x3f, 0x32,
-
740  0x2b, 0x32, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x06, 0x2e, 0x02, 0x35,
-
741  0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x07, 0x14,
-
742  0x0e, 0x02, 0x07, 0x1e, 0x02, 0x33, 0x37, 0x07, 0x27, 0x32, 0x3e, 0x02,
-
743  0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
-
744  0x01, 0x89, 0x30, 0x43, 0x29, 0x13, 0x34, 0x57, 0x35, 0x28, 0x43, 0x4f,
-
745  0x27, 0x2d, 0x52, 0x3f, 0x23, 0x01, 0x18, 0x2e, 0x44, 0x2b, 0x02, 0x0c,
-
746  0x1c, 0x19, 0x52, 0x02, 0xba, 0x19, 0x31, 0x28, 0x19, 0x1a, 0x2b, 0x32,
-
747  0x18, 0x23, 0x36, 0x24, 0x12, 0x24, 0x42, 0x91, 0x02, 0x0d, 0x22, 0x36,
-
748  0x28, 0x08, 0x4b, 0x87, 0x61, 0x5b, 0x7c, 0x4a, 0x21, 0x25, 0x4e, 0x79,
-
749  0x54, 0x46, 0x6e, 0x4f, 0x30, 0x0a, 0x14, 0x1f, 0x10, 0x04, 0x4c, 0xd1,
-
750  0x19, 0x38, 0x59, 0x40, 0x4e, 0x65, 0x3b, 0x18, 0x26, 0x41, 0x56, 0x31,
-
751  0x4e, 0x74, 0x40, 0x00, 0x00, 0x02, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
-
752  0x02, 0x6f, 0x00, 0x0f, 0x00, 0x19, 0x00, 0x1d, 0x40, 0x0e, 0x0a, 0x10,
-
753  0x10, 0x0e, 0x0e, 0x00, 0x19, 0x01, 0x02, 0x72, 0x0c, 0x00, 0x08, 0x72,
-
754  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
-
755  0x31, 0x73, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07,
-
756  0x13, 0x23, 0x03, 0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26,
-
757  0x26, 0x23, 0x23, 0x34, 0xbd, 0x4b, 0x5d, 0x2b, 0x1e, 0x38, 0x26, 0x8d,
-
758  0x5c, 0x86, 0x69, 0x6f, 0x3c, 0x38, 0x18, 0x34, 0x28, 0x6f, 0x02, 0x6f,
-
759  0x2c, 0x51, 0x37, 0x22, 0x46, 0x34, 0x0c, 0xfe, 0xed, 0x01, 0x0e, 0xfe,
-
760  0xf2, 0x01, 0x56, 0x37, 0x2d, 0x1d, 0x2f, 0x1c, 0xff, 0xff, 0x00, 0x34,
-
761  0x00, 0x00, 0x01, 0xd5, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
762  0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01,
-
763  0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
-
764  0x00, 0x00, 0x01, 0xd5, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
765  0x01, 0x06, 0x03, 0xa6, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1d, 0x01,
-
766  0x01, 0x01, 0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
-
767  0xfe, 0xe6, 0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
768  0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x0c,
-
769  0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
770  0x00, 0x34, 0x00, 0x00, 0x01, 0xd5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x9e,
-
771  0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d,
-
772  0xb7, 0x03, 0x02, 0x1a, 0x01, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
773  0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65, 0x01, 0xd5, 0x02, 0x6f,
-
774  0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
775  0x00, 0x0e, 0xb4, 0x02, 0x20, 0x0c, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
776  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
-
777  0x03, 0x2d, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
-
778  0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01, 0x01, 0x01,
-
779  0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65,
-
780  0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06,
-
781  0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1b, 0x00, 0x01, 0x01,
-
782  0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
-
783  0xff, 0xf6, 0x01, 0xca, 0x02, 0x78, 0x00, 0x40, 0x00, 0x17, 0x40, 0x0b,
-
784  0x1b, 0x11, 0x1f, 0x0c, 0x40, 0x09, 0x72, 0x2c, 0x1f, 0x03, 0x72, 0x00,
-
785  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26,
-
786  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x3e,
-
787  0x02, 0x35, 0x34, 0x2e, 0x03, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
-
788  0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
789  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x03, 0x17, 0x1e, 0x03,
-
790  0x15, 0x14, 0x06, 0x06, 0x23, 0xf5, 0x3d, 0x65, 0x25, 0x2b, 0x04, 0x07,
-
791  0x02, 0x07, 0x0b, 0x1a, 0x42, 0x29, 0x1b, 0x2c, 0x21, 0x12, 0x07, 0x12,
-
792  0x1e, 0x30, 0x22, 0x40, 0x4b, 0x20, 0x30, 0x57, 0x3a, 0x24, 0x41, 0x38,
-
793  0x16, 0x30, 0x06, 0x07, 0x01, 0x06, 0x0b, 0x16, 0x32, 0x23, 0x17, 0x25,
-
794  0x1a, 0x0f, 0x08, 0x12, 0x21, 0x33, 0x24, 0x2f, 0x3e, 0x23, 0x10, 0x2c,
-
795  0x5e, 0x4b, 0x0a, 0x27, 0x26, 0x49, 0x09, 0x04, 0x07, 0x11, 0x0c, 0x15,
-
796  0x19, 0x0f, 0x1a, 0x24, 0x15, 0x10, 0x1a, 0x16, 0x16, 0x1a, 0x0f, 0x1a,
-
797  0x3a, 0x42, 0x26, 0x2e, 0x46, 0x28, 0x13, 0x22, 0x1a, 0x3c, 0x08, 0x05,
-
798  0x08, 0x10, 0x0c, 0x15, 0x0f, 0x0c, 0x18, 0x1d, 0x10, 0x10, 0x19, 0x18,
-
799  0x19, 0x19, 0x0f, 0x14, 0x26, 0x2b, 0x31, 0x1f, 0x2b, 0x54, 0x35, 0x00,
-
800  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1b, 0x06, 0x26,
-
801  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b,
-
802  0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
803  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x9c, 0x06, 0x26,
-
804  0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa3, 0xf6, 0x00, 0x01, 0x06,
-
805  0x03, 0xa1, 0x08, 0x79, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x45, 0x1f, 0x01,
-
806  0x01, 0xb4, 0x56, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b,
-
807  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
-
808  0x03, 0x1f, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
809  0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x44, 0x1f, 0x01, 0x01, 0x1a, 0x56,
-
810  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
-
811  0x03, 0xbd, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa6,
-
812  0x09, 0x00, 0x01, 0x07, 0x03, 0xa1, 0x00, 0x08, 0x00, 0x9a, 0x00, 0x15,
-
813  0x40, 0x0e, 0x02, 0x48, 0x1f, 0x01, 0x01, 0xdc, 0x56, 0x01, 0x44, 0x1f,
-
814  0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
815  0x00, 0x2e, 0xff, 0x38, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
-
816  0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
817  0x50, 0x40, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
818  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xa6,
-
819  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
820  0x41, 0x1f, 0x01, 0x01, 0x18, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
821  0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
-
822  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0c, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
823  0x4d, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
824  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x23, 0x06, 0x26,
-
825  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x0b,
-
826  0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
827  0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26,
-
828  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x08, 0x00, 0x00, 0x0e,
-
829  0xb4, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
-
830  0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x03, 0x23,
-
831  0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x08, 0x00,
-
832  0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x4d,
-
833  0x1f, 0x01, 0x01, 0x3e, 0x56, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff,
-
834  0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x32,
-
835  0xff, 0xf5, 0x01, 0xd1, 0x02, 0x9e, 0x00, 0x33, 0x00, 0x21, 0x40, 0x0f,
-
836  0x2a, 0x2b, 0x2b, 0x13, 0x11, 0x12, 0x12, 0x00, 0x18, 0x25, 0x01, 0x72,
-
837  0x1f, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x2b, 0x32, 0x11, 0x39, 0x2f,
-
838  0x33, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37,
-
839  0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23,
-
840  0x35, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23,
-
841  0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x07, 0x27, 0x32,
-
842  0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x1e, 0x20, 0x34, 0x16, 0x1b,
-
843  0x0b, 0x17, 0x18, 0x0c, 0x16, 0x27, 0x1e, 0x11, 0x18, 0x3d, 0x3a, 0x1e,
-
844  0x81, 0x13, 0x29, 0x23, 0x15, 0x28, 0x21, 0x13, 0x53, 0x21, 0x37, 0x45,
-
845  0x25, 0x3c, 0x4e, 0x28, 0xaa, 0x0c, 0x48, 0x64, 0x35, 0x1c, 0x30, 0x42,
-
846  0x0b, 0x10, 0x0f, 0x41, 0x07, 0x0b, 0x05, 0x11, 0x21, 0x2f, 0x1e, 0x1e,
-
847  0x3a, 0x27, 0x43, 0x74, 0x1c, 0x2f, 0x1c, 0x0f, 0x1f, 0x32, 0x23, 0xfe,
-
848  0x29, 0x01, 0xc9, 0x3a, 0x52, 0x32, 0x17, 0x32, 0x52, 0x30, 0x95, 0x2a,
-
849  0x2f, 0x5a, 0x41, 0x31, 0x47, 0x30, 0x18, 0x00, 0xff, 0xff, 0x00, 0x18,
-
850  0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x06, 0x00, 0x78, 0x00, 0x00,
-
851  0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3, 0x02, 0x70, 0x00, 0x07,
-
852  0x00, 0x13, 0x40, 0x09, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08,
-
853  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x23,
-
854  0x35, 0x21, 0x15, 0x23, 0x11, 0xca, 0xae, 0x01, 0xb7, 0xb5, 0x02, 0x26,
-
855  0x4a, 0x4a, 0xfd, 0xda, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
-
856  0x02, 0x70, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x1a, 0x40, 0x0c, 0x09, 0x08,
-
857  0x08, 0x00, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08, 0x00, 0x3f,
-
858  0x2b, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11,
-
859  0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x03, 0x35, 0x21, 0x15, 0xca, 0xae,
-
860  0x01, 0xb7, 0xb5, 0xcc, 0x01, 0x4c, 0x02, 0x26, 0x4a, 0x4a, 0xfd, 0xda,
-
861  0x01, 0x19, 0x3e, 0x3e, 0xff, 0xff, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
-
862  0x03, 0x1f, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
863  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x03, 0x01, 0x01, 0x21, 0x56,
-
864  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x38, 0x01, 0xd3,
-
865  0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
-
866  0xeb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x17, 0x00, 0x01, 0x00, 0x00, 0x56,
-
867  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xfe, 0xe6, 0x01, 0xd3,
-
868  0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
869  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x14, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
870  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x65,
-
871  0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06,
-
872  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0e, 0x00, 0x01, 0x01,
-
873  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c,
-
874  0xff, 0x65, 0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00,
-
875  0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x09, 0x00,
-
876  0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
-
877  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10,
-
878  0xb7, 0x0e, 0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32,
-
879  0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15,
-
880  0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33,
-
881  0x11, 0x14, 0x06, 0x06, 0x23, 0xfb, 0x65, 0x69, 0x53, 0x0a, 0x06, 0x03,
-
882  0x36, 0x45, 0x45, 0x37, 0x52, 0x34, 0x5d, 0x3e, 0x0c, 0x79, 0x6b, 0x01,
-
883  0x97, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01,
-
884  0x95, 0xfe, 0x6c, 0x4f, 0x66, 0x32, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
885  0x01, 0xca, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
886  0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
-
887  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
888  0x01, 0xca, 0x03, 0x18, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
889  0x03, 0xa7, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
-
890  0x30, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
891  0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
892  0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
-
893  0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
894  0x01, 0xca, 0x03, 0x55, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07,
-
895  0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x19,
-
896  0x04, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
897  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xba,
-
898  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
899  0x01, 0x19, 0x04, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
900  0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xca, 0x02, 0x6f, 0x06, 0x26,
-
901  0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
902  0xb4, 0x01, 0x1f, 0x18, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
-
903  0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1b,
-
904  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
-
905  0x00, 0x0b, 0xb6, 0x01, 0x19, 0x12, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
-
906  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x6c,
-
907  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
-
908  0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x20, 0x12, 0x01, 0x01, 0x42, 0x56,
-
909  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1,
-
910  0x02, 0xcd, 0x06, 0x26, 0x00, 0xe7, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa,
-
911  0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x19, 0x04, 0x01, 0x01, 0xb8, 0xff,
-
912  0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4,
-
913  0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
-
914  0x03, 0xa3, 0xd3, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x04, 0x01, 0x01,
-
915  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
-
916  0x01, 0xf1, 0x02, 0xcd, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
-
917  0x03, 0x8a, 0xef, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x29, 0x18, 0x01, 0x01,
-
918  0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29,
-
919  0xff, 0xf4, 0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
-
920  0x01, 0x06, 0x03, 0xa2, 0xd7, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x12,
-
921  0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29,
-
922  0xff, 0xf4, 0x01, 0xf1, 0x03, 0x6c, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
-
923  0x01, 0x07, 0x03, 0x85, 0xff, 0xf3, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02,
-
924  0x2a, 0x12, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
925  0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1, 0x03, 0x20, 0x06, 0x26, 0x00, 0xc3,
-
926  0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
927  0x27, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
928  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2b, 0x06, 0x26, 0x00, 0xba,
-
929  0x00, 0x00, 0x01, 0x06, 0x03, 0xa4, 0xda, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
930  0x01, 0x19, 0x12, 0x01, 0x01, 0x16, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
931  0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2d, 0x06, 0x26,
-
932  0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa4,
-
933  0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
934  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x17,
-
935  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00,
-
936  0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56,
-
937  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca,
-
938  0x03, 0xb5, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84,
-
939  0x00, 0x00, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa0, 0xff, 0xff, 0x00, 0x98,
-
940  0x00, 0x17, 0x40, 0x0f, 0x03, 0x02, 0x1d, 0x1a, 0x01, 0x01, 0x37, 0x56,
-
941  0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
-
942  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x23, 0x01, 0xca, 0x02, 0x6f,
-
943  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x39, 0x0a,
-
944  0x00, 0x0b, 0xb6, 0x01, 0x22, 0x18, 0x00, 0x00, 0x26, 0x56, 0x00, 0x2b,
-
945  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x22,
-
946  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00,
-
947  0x00, 0x10, 0xb5, 0x02, 0x01, 0x19, 0x12, 0x01, 0x00, 0xb8, 0xff, 0xfc,
-
948  0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
949  0x01, 0xca, 0x03, 0x20, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
950  0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
-
951  0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
952  0x01, 0xca, 0x03, 0xb9, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x26,
-
953  0x03, 0xa9, 0xfe, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x9e,
-
954  0x00, 0x15, 0x40, 0x0e, 0x02, 0x31, 0x12, 0x01, 0x01, 0xc0, 0x56, 0x01,
-
955  0x1d, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
956  0x00, 0x01, 0x00, 0x16, 0xff, 0xfd, 0x01, 0xe2, 0x02, 0x70, 0x00, 0x06,
-
957  0x00, 0x13, 0x40, 0x09, 0x03, 0x00, 0x02, 0x05, 0x02, 0x72, 0x00, 0x08,
-
958  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33,
-
959  0x13, 0x13, 0x33, 0x03, 0xe6, 0xd0, 0x56, 0x96, 0x8e, 0x52, 0xcd, 0x03,
-
960  0x02, 0x73, 0xfe, 0x2e, 0x01, 0xd1, 0xfd, 0x8e, 0x00, 0x01, 0x00, 0x0f,
-
961  0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x1d, 0x40, 0x0f,
-
962  0x06, 0x03, 0x0b, 0x03, 0x04, 0x04, 0x00, 0x08, 0x01, 0x02, 0x72, 0x0a,
-
963  0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x17,
-
964  0x39, 0x30, 0x31, 0x73, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33,
-
965  0x03, 0x23, 0x03, 0x03, 0x6d, 0x5e, 0x4c, 0x3a, 0x5e, 0x22, 0x5e, 0x31,
-
966  0x46, 0x5d, 0x29, 0x65, 0x67, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe,
-
967  0x93, 0x01, 0x9c, 0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0xff, 0xff,
-
968  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xd2,
-
969  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
970  0x0d, 0x01, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
971  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xd2,
-
972  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
973  0x0d, 0x01, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
974  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xd2,
-
975  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x08, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
976  0x01, 0x0d, 0x01, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
977  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26,
-
978  0x00, 0xd2, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf9, 0x00, 0x00, 0x0b,
-
979  0xb6, 0x01, 0x0d, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
980  0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70, 0x00, 0x0b,
-
981  0x00, 0x1c, 0x40, 0x0f, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x06,
-
982  0x02, 0x02, 0x72, 0x09, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
983  0x2f, 0x11, 0x17, 0x39, 0x30, 0x31, 0x73, 0x13, 0x03, 0x33, 0x17, 0x37,
-
984  0x33, 0x03, 0x13, 0x23, 0x27, 0x07, 0x25, 0xa8, 0xa5, 0x58, 0x7b, 0x78,
-
985  0x53, 0x9b, 0xae, 0x5c, 0x81, 0x7e, 0x01, 0x3e, 0x01, 0x32, 0xe3, 0xe3,
-
986  0xfe, 0xcf, 0xfe, 0xc1, 0xec, 0xec, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00,
-
987  0x01, 0xde, 0x02, 0x6f, 0x00, 0x08, 0x00, 0x1a, 0x40, 0x0e, 0x08, 0x08,
-
988  0x72, 0x07, 0x01, 0x04, 0x03, 0x00, 0x06, 0x02, 0x02, 0x72, 0x00, 0x08,
-
989  0x00, 0x3f, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x2b, 0x30, 0x31, 0x73, 0x35,
-
990  0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x15, 0xd6, 0xbe, 0x5c, 0x91, 0x82,
-
991  0x57, 0xaf, 0xf6, 0x01, 0x79, 0xfe, 0xe0, 0x01, 0x20, 0xfe, 0x87, 0xf6,
-
992  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1b, 0x06, 0x26,
-
993  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b,
-
994  0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
995  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1a, 0x06, 0x26,
-
996  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b,
-
997  0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
998  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1d, 0x06, 0x26,
-
999  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d,
-
1000  0xb7, 0x02, 0x01, 0x09, 0x02, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
-
1001  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x23,
-
1002  0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0xff, 0x00,
-
1003  0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x46, 0x56, 0x00, 0x2b,
-
1004  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xde, 0x02, 0x6f,
-
1005  0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x12, 0x00,
-
1006  0x00, 0x0e, 0xb4, 0x01, 0x0f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
1007  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
-
1008  0x03, 0x1b, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
-
1009  0xf0, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x25, 0x56,
-
1010  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
-
1011  0x03, 0x6c, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
-
1012  0x00, 0x0d, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01,
-
1013  0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00,
-
1014  0x01, 0xde, 0x03, 0x17, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07,
-
1015  0x03, 0x84, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x02,
-
1016  0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
1017  0x00, 0x00, 0x01, 0xde, 0x03, 0x20, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00,
-
1018  0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0d, 0x05,
-
1019  0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2e,
-
1020  0x00, 0x00, 0x01, 0xd4, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x19, 0x40, 0x0c,
-
1021  0x00, 0x06, 0x06, 0x0e, 0x08, 0x72, 0x05, 0x02, 0x02, 0x03, 0x02, 0x72,
-
1022  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77,
-
1023  0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15,
-
1024  0x15, 0x21, 0x2e, 0x01, 0x32, 0xfe, 0xda, 0x01, 0x8a, 0xfe, 0xd3, 0x01,
-
1025  0x10, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x5a, 0x39, 0x01, 0xec, 0x4a, 0x39,
-
1026  0xfe, 0x13, 0x04, 0x06, 0x0a, 0x49, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1027  0x01, 0xd4, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1028  0x03, 0xa3, 0xf7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
1029  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1030  0x01, 0xd4, 0x03, 0x1f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1031  0x03, 0xa6, 0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01,
-
1032  0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1033  0x01, 0xd4, 0x03, 0x23, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1034  0x03, 0xa1, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
1035  0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
1036  0x01, 0xd4, 0x02, 0x6f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1037  0x03, 0x8a, 0x1c, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
-
1038  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x29,
-
1039  0xff, 0xf4, 0x01, 0x9c, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10, 0xb7, 0x0e,
-
1040  0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
1041  0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15, 0x06, 0x06,
-
1042  0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14,
-
1043  0x06, 0x06, 0x23, 0xe2, 0x5b, 0x5e, 0x4a, 0x09, 0x05, 0x03, 0x31, 0x3e,
-
1044  0x3f, 0x30, 0x4a, 0x2e, 0x54, 0x38, 0x0c, 0x79, 0x6b, 0x01, 0x97, 0x08,
-
1045  0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01, 0x95, 0xfe,
-
1046  0x6c, 0x4f, 0x66, 0x32, 0x00, 0x01, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1047  0x01, 0xd6, 0x00, 0x37, 0x00, 0x27, 0x40, 0x14, 0x31, 0x0a, 0x72, 0x0c,
-
1048  0x08, 0x08, 0x0d, 0x11, 0x11, 0x00, 0x24, 0x2b, 0x07, 0x72, 0x33, 0x1b,
-
1049  0x1b, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11,
-
1050  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x57, 0x22, 0x26,
-
1051  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x32, 0x16, 0x17, 0x17, 0x2e, 0x02,
-
1052  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
1053  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
-
1054  0x32, 0x1e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x0e, 0x03, 0xcf, 0x4e, 0x54,
-
1055  0x23, 0x40, 0x58, 0x35, 0x0e, 0x1f, 0x23, 0x12, 0x03, 0x10, 0x22, 0x21,
-
1056  0x0f, 0x25, 0x3b, 0x28, 0x16, 0x0e, 0x18, 0x20, 0x13, 0x24, 0x37, 0x27,
-
1057  0x14, 0x1d, 0x3a, 0x2c, 0x21, 0x3d, 0x1b, 0x2c, 0x23, 0x58, 0x2f, 0x2d,
-
1058  0x4a, 0x37, 0x1e, 0x5b, 0x0d, 0x23, 0x27, 0x2a, 0x0b, 0x47, 0x38, 0x25,
-
1059  0x3d, 0x2a, 0x17, 0x03, 0x02, 0x3f, 0x02, 0x03, 0x01, 0x0c, 0x17, 0x23,
-
1060  0x17, 0x14, 0x1a, 0x10, 0x07, 0x17, 0x2e, 0x43, 0x2d, 0x40, 0x48, 0x1d,
-
1061  0x17, 0x1b, 0x35, 0x22, 0x20, 0x15, 0x32, 0x54, 0x40, 0xfb, 0x3f, 0x16,
-
1062  0x1d, 0x10, 0x07, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1063  0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1064  0xef, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56,
-
1065  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1066  0x02, 0x93, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
-
1067  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
-
1068  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1069  0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb5,
-
1070  0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47, 0x3c, 0x01, 0x01, 0x64,
-
1071  0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1072  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0x93,
-
1073  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00,
-
1074  0x01, 0x06, 0x03, 0x81, 0xf6, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x48,
-
1075  0x2b, 0x01, 0x01, 0x47, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1076  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d,
-
1077  0xff, 0xf5, 0x01, 0xbf, 0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
-
1078  0x01, 0x06, 0x03, 0xb6, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47,
-
1079  0x3c, 0x01, 0x01, 0x64, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
-
1080  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1081  0x01, 0xbf, 0x03, 0x50, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1082  0x03, 0xb7, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4e, 0x3c, 0x01,
-
1083  0x01, 0x70, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1084  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1085  0x03, 0x29, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb8,
-
1086  0xf2, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4b, 0x3c, 0x01, 0x01, 0x9b,
-
1087  0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1088  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xad,
-
1089  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0xff, 0xff,
-
1090  0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1091  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xea, 0x03, 0x2d,
-
1092  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xf8, 0x00,
-
1093  0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01, 0x01, 0x78, 0x56, 0x01,
-
1094  0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1095  0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0xad, 0x06, 0x26,
-
1096  0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
-
1097  0x03, 0x7f, 0xff, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x44, 0x2b, 0x01,
-
1098  0x01, 0x2c, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0,
-
1099  0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1100  0x01, 0xbf, 0x03, 0x43, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1101  0x03, 0xba, 0xf8, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01,
-
1102  0x01, 0x8d, 0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1103  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xd2,
-
1104  0x03, 0x2f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
-
1105  0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x46, 0x38, 0x01, 0x01, 0x70,
-
1106  0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1107  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x03, 0x3d,
-
1108  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf7, 0x00,
-
1109  0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x38, 0x01, 0x01, 0xcc, 0x56, 0x01,
-
1110  0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1111  0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26,
-
1112  0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xed, 0x00, 0x00, 0x0d,
-
1113  0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
-
1114  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0x9d,
-
1115  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xfd, 0x00,
-
1116  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x61, 0x56, 0x00,
-
1117  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf,
-
1118  0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
1119  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1120  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1121  0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1122  0x03, 0x7c, 0xf3, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1123  0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1124  0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1125  0x03, 0x85, 0x0b, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x3f, 0x2b, 0x01, 0x01,
-
1126  0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1127  0x01, 0xbf, 0x02, 0x89, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1128  0x03, 0x87, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1129  0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1130  0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1131  0x03, 0x84, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1132  0x62, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x19,
-
1133  0x01, 0xbf, 0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1134  0x03, 0x9f, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x42, 0x32, 0x00, 0x00,
-
1135  0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1136  0x01, 0xbf, 0x02, 0xbb, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1137  0x03, 0x82, 0xf8, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01,
-
1138  0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d,
-
1139  0xff, 0xf5, 0x01, 0xbf, 0x03, 0x9f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
-
1140  0x00, 0x26, 0x03, 0x82, 0xf8, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xef,
-
1141  0x00, 0xee, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x54, 0x40, 0x01, 0x01, 0x32,
-
1142  0x56, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
1143  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1144  0x02, 0xac, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
1145  0xf4, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x6b, 0x56,
-
1146  0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
-
1147  0x01, 0xd6, 0x00, 0x37, 0x00, 0x43, 0x00, 0x4c, 0x00, 0x39, 0x40, 0x1c,
-
1148  0x45, 0x44, 0x44, 0x22, 0x09, 0x3c, 0x3c, 0x21, 0x22, 0x22, 0x00, 0x49,
-
1149  0x1c, 0x1c, 0x18, 0x0d, 0x14, 0x07, 0x72, 0x34, 0x38, 0x38, 0x28, 0x30,
-
1150  0x30, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x32, 0x11, 0x33,
-
1151  0x2b, 0x32, 0x32, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11,
-
1152  0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35,
-
1153  0x34, 0x3e, 0x02, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27,
-
1154  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02, 0x33, 0x32, 0x16,
-
1155  0x16, 0x15, 0x15, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
-
1156  0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x27,
-
1157  0x32, 0x36, 0x36, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x37,
-
1158  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x8f, 0x2c, 0x3c, 0x20, 0x1c,
-
1159  0x34, 0x4e, 0x32, 0x10, 0x21, 0x19, 0x14, 0x26, 0x10, 0x29, 0x18, 0x3c,
-
1160  0x26, 0x18, 0x2b, 0x22, 0x09, 0x0c, 0x20, 0x26, 0x13, 0x2f, 0x3a, 0x1b,
-
1161  0xcc, 0x0d, 0x19, 0x23, 0x16, 0x10, 0x1a, 0x16, 0x0a, 0x28, 0x17, 0x3d,
-
1162  0x23, 0x19, 0x2d, 0x26, 0x0e, 0x0b, 0x23, 0x2a, 0x15, 0x1f, 0x1e, 0x09,
-
1163  0x30, 0x3b, 0x1b, 0x0f, 0x1d, 0xa1, 0x8b, 0x0e, 0x1d, 0x17, 0x16, 0x21,
-
1164  0x12, 0x0b, 0x22, 0x3e, 0x28, 0x24, 0x39, 0x29, 0x16, 0x02, 0x28, 0x36,
-
1165  0x1c, 0x16, 0x16, 0x33, 0x1d, 0x1d, 0x0f, 0x1b, 0x12, 0x12, 0x1b, 0x0f,
-
1166  0x31, 0x5a, 0x3e, 0x29, 0x07, 0x2d, 0x1b, 0x2d, 0x20, 0x11, 0x08, 0x12,
-
1167  0x0d, 0x30, 0x1c, 0x1d, 0x10, 0x1e, 0x14, 0x14, 0x1e, 0x10, 0x45, 0x27,
-
1168  0x48, 0x30, 0x02, 0x15, 0x27, 0x1f, 0x19, 0x1d, 0x0c, 0xe2, 0x05, 0x26,
-
1169  0x34, 0x1a, 0x1d, 0x35, 0xff, 0xff, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
-
1170  0x02, 0xb1, 0x06, 0x26, 0x01, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1171  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x03, 0x4d, 0x14, 0x01, 0x01, 0x28, 0x56,
-
1172  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x38, 0xff, 0xf5, 0x01, 0xce,
-
1173  0x02, 0x9b, 0x00, 0x1d, 0x00, 0x31, 0x00, 0x21, 0x40, 0x12, 0x04, 0x31,
-
1174  0x31, 0x1d, 0x0b, 0x72, 0x0e, 0x28, 0x28, 0x13, 0x07, 0x72, 0x07, 0x00,
-
1175  0x72, 0x06, 0x0a, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b,
-
1176  0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x07, 0x23,
-
1177  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32,
-
1178  0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x32, 0x3e, 0x02, 0x35,
-
1179  0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33,
-
1180  0x01, 0x0e, 0x1b, 0x30, 0x29, 0x10, 0x17, 0x3b, 0x56, 0x0a, 0x06, 0x03,
-
1181  0x0b, 0x1c, 0x23, 0x26, 0x13, 0x2a, 0x45, 0x32, 0x1b, 0x20, 0x36, 0x45,
-
1182  0x25, 0x0d, 0x17, 0x2a, 0x22, 0x13, 0x11, 0x1e, 0x2b, 0x1a, 0x23, 0x34,
-
1183  0x1d, 0x0d, 0x1b, 0x2b, 0x1f, 0x0b, 0x10, 0x1f, 0x15, 0x39, 0x02, 0x9b,
-
1184  0x08, 0x06, 0x0e, 0x11, 0xe2, 0x10, 0x1c, 0x15, 0x0a, 0x1e, 0x3b, 0x58,
-
1185  0x3b, 0x3e, 0x5d, 0x3d, 0x1e, 0x48, 0x11, 0x28, 0x41, 0x2e, 0x2b, 0x41,
-
1186  0x2b, 0x15, 0x2a, 0x4e, 0x33, 0x27, 0x3e, 0x2d, 0x17, 0x00, 0x00, 0x03,
-
1187  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
-
1188  0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x26, 0x20, 0x20, 0x00, 0x18, 0x08,
-
1189  0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
1190  0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
-
1191  0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
-
1192  0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
1193  0x16, 0x37, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
1194  0x06, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35,
-
1195  0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21,
-
1196  0x40, 0x2d, 0x14, 0x1c, 0x1c, 0x14, 0x14, 0x1c, 0x1c, 0x0b, 0x4a, 0x90,
-
1197  0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39,
-
1198  0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0xce,
-
1199  0x1c, 0x13, 0x14, 0x1c, 0x1d, 0x13, 0x13, 0x1c, 0x00, 0x01, 0x00, 0x32,
-
1200  0xff, 0xf5, 0x01, 0xcc, 0x01, 0xd5, 0x00, 0x28, 0x00, 0x13, 0x40, 0x09,
-
1201  0x20, 0x28, 0x16, 0x0a, 0x07, 0x72, 0x28, 0x0b, 0x72, 0x00, 0x2b, 0x2b,
-
1202  0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
-
1203  0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26,
-
1204  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
1205  0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b, 0x33, 0x55, 0x3e, 0x23,
-
1206  0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
-
1207  0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
-
1208  0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x0b, 0x24, 0x40, 0x57, 0x34,
-
1209  0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07, 0x06, 0x08, 0x0f, 0x0c,
-
1210  0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d, 0x2d, 0x19, 0x0c, 0x19,
-
1211  0x13, 0x38, 0x26, 0x24, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
-
1212  0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1213  0x12, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a, 0x01, 0x01, 0x29, 0x56,
-
1214  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
-
1215  0x02, 0xb5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x80,
-
1216  0x1b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2e, 0x0a, 0x01, 0x01, 0x30, 0x56,
-
1217  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
-
1218  0x01, 0xd5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
-
1219  0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x28, 0x00, 0x00, 0x0b, 0x56,
-
1220  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
-
1221  0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d,
-
1222  0x0c, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x12, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
1223  0x02, 0x41, 0x0a, 0x01, 0x01, 0x29, 0x56, 0x01, 0x38, 0x28, 0x00, 0x00,
-
1224  0x0b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
-
1225  0xff, 0xf5, 0x01, 0xcc, 0x02, 0xad, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
-
1226  0x01, 0x06, 0x03, 0x7f, 0x21, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
-
1227  0x01, 0x01, 0x2d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
-
1228  0xff, 0xf5, 0x01, 0xcc, 0x02, 0x97, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
-
1229  0x01, 0x06, 0x03, 0x7b, 0x1c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
-
1230  0x01, 0x01, 0x57, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x29,
-
1231  0xff, 0xf6, 0x01, 0xc5, 0x02, 0x9b, 0x00, 0x22, 0x00, 0x35, 0x00, 0x21,
-
1232  0x40, 0x12, 0x1e, 0x35, 0x35, 0x22, 0x0b, 0x72, 0x1a, 0x0a, 0x72, 0x0f,
-
1233  0x00, 0x72, 0x0e, 0x2c, 0x2c, 0x0a, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x11,
-
1234  0x33, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x2e,
-
1235  0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x11, 0x33,
-
1236  0x33, 0x15, 0x06, 0x06, 0x15, 0x13, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
-
1237  0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26,
-
1238  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0xe7, 0x24, 0x44,
-
1239  0x36, 0x20, 0x21, 0x37, 0x44, 0x25, 0x1d, 0x31, 0x25, 0x0b, 0x51, 0x0a,
-
1240  0x06, 0x03, 0x01, 0x03, 0x07, 0x54, 0x05, 0x04, 0x01, 0x0e, 0x26, 0x30,
-
1241  0x1c, 0x0e, 0x1e, 0x2a, 0x1a, 0x0d, 0x18, 0x34, 0x28, 0x1c, 0x2c, 0x1c,
-
1242  0x0f, 0x1d, 0x36, 0x25, 0x0a, 0x1e, 0x3c, 0x5c, 0x3e, 0x3e, 0x59, 0x3b,
-
1243  0x1c, 0x12, 0x1f, 0x16, 0x01, 0x0a, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xd6,
-
1244  0x11, 0x22, 0x11, 0x0c, 0x14, 0x15, 0x0b, 0x17, 0x22, 0x11, 0x48, 0x18,
-
1245  0x2e, 0x3f, 0x25, 0x33, 0x4d, 0x2b, 0x16, 0x2b, 0x3b, 0x25, 0x37, 0x50,
-
1246  0x2d, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xf3, 0x01, 0xcf, 0x02, 0xa2,
-
1247  0x00, 0x28, 0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0f, 0x11, 0x1f, 0x14, 0x1c,
-
1248  0x04, 0x19, 0x19, 0x34, 0x0a, 0x07, 0x72, 0x29, 0x00, 0x0b, 0x72, 0x00,
-
1249  0x2b, 0x32, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x45,
-
1250  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
-
1251  0x26, 0x26, 0x27, 0x07, 0x27, 0x37, 0x2e, 0x02, 0x27, 0x37, 0x16, 0x16,
-
1252  0x17, 0x37, 0x17, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32,
-
1253  0x3e, 0x02, 0x35, 0x34, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14,
-
1254  0x1e, 0x02, 0x01, 0x00, 0x2d, 0x4f, 0x3c, 0x22, 0x21, 0x39, 0x47, 0x27,
-
1255  0x19, 0x2a, 0x25, 0x0e, 0x0e, 0x28, 0x1a, 0x7a, 0x15, 0x5f, 0x0f, 0x1f,
-
1256  0x21, 0x13, 0x5c, 0x17, 0x29, 0x14, 0x6e, 0x14, 0x51, 0x1a, 0x28, 0x1c,
-
1257  0x0e, 0x1b, 0x34, 0x4d, 0x33, 0x18, 0x2b, 0x22, 0x14, 0x0f, 0x18, 0x20,
-
1258  0x23, 0x11, 0x17, 0x2d, 0x24, 0x16, 0x15, 0x23, 0x2e, 0x0d, 0x23, 0x3e,
-
1259  0x56, 0x34, 0x33, 0x59, 0x44, 0x26, 0x0a, 0x15, 0x10, 0x22, 0x40, 0x1b,
-
1260  0x23, 0x39, 0x19, 0x0c, 0x16, 0x14, 0x07, 0x14, 0x0d, 0x1b, 0x13, 0x1e,
-
1261  0x35, 0x18, 0x1f, 0x47, 0x4f, 0x58, 0x2e, 0x3c, 0x62, 0x46, 0x26, 0x48,
-
1262  0x14, 0x2b, 0x40, 0x2d, 0x24, 0x37, 0x26, 0x19, 0x0b, 0x15, 0x29, 0x3e,
-
1263  0x29, 0x27, 0x3f, 0x2d, 0x19, 0x00, 0x00, 0x03, 0x00, 0x20, 0xff, 0xf6,
-
1264  0x01, 0xe2, 0x02, 0x9c, 0x00, 0x21, 0x00, 0x34, 0x00, 0x47, 0x00, 0x23,
-
1265  0x40, 0x11, 0x1d, 0x34, 0x34, 0x21, 0x0b, 0x19, 0x0a, 0x3c, 0x35, 0x35,
-
1266  0x0e, 0x00, 0x0d, 0x2a, 0x2a, 0x0a, 0x07, 0x00, 0x3f, 0x33, 0x11, 0x33,
-
1267  0x3f, 0x33, 0x2f, 0xcc, 0x3f, 0x3f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
1268  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x11,
-
1269  0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e,
-
1270  0x02, 0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
1271  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x13, 0x32,
-
1272  0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26,
-
1273  0x26, 0x35, 0x34, 0x36, 0xb4, 0x1c, 0x36, 0x2a, 0x18, 0x18, 0x2b, 0x36,
-
1274  0x1f, 0x23, 0x33, 0x0c, 0x49, 0x0a, 0x06, 0x03, 0x02, 0x06, 0x4a, 0x04,
-
1275  0x04, 0x02, 0x0a, 0x1e, 0x25, 0x17, 0x0f, 0x1d, 0x25, 0x12, 0x13, 0x26,
-
1276  0x1d, 0x15, 0x21, 0x16, 0x0c, 0x0e, 0x17, 0x21, 0x14, 0xee, 0x15, 0x1c,
-
1277  0x12, 0x1f, 0x12, 0x24, 0x0a, 0x12, 0x0b, 0x10, 0x11, 0x1a, 0x0a, 0x1a,
-
1278  0x38, 0x5e, 0x43, 0x43, 0x5c, 0x37, 0x19, 0x23, 0x23, 0x01, 0x08, 0x07,
-
1279  0x06, 0x0e, 0x11, 0xfd, 0xd7, 0x12, 0x21, 0x12, 0x0b, 0x12, 0x14, 0x0c,
-
1280  0x15, 0x21, 0x11, 0x46, 0x28, 0x4c, 0x38, 0x39, 0x4c, 0x26, 0x13, 0x27,
-
1281  0x3d, 0x2a, 0x30, 0x45, 0x2c, 0x15, 0x02, 0x60, 0x1f, 0x19, 0x15, 0x34,
-
1282  0x35, 0x18, 0x1a, 0x0c, 0x19, 0x19, 0x0d, 0x0a, 0x0f, 0x14, 0x12, 0x10,
-
1283  0x1a, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf6, 0x01, 0xf4, 0x02, 0x9b,
-
1284  0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0x00, 0x6d,
-
1285  0x00, 0xec, 0x00, 0x0b, 0xb6, 0x02, 0x36, 0x0a, 0x01, 0x01, 0x33, 0x56,
-
1286  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65, 0x01, 0xc5,
-
1287  0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
1288  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x3c, 0x1a, 0x01, 0x01, 0xb8, 0xff,
-
1289  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
-
1290  0x01, 0xc5, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06,
-
1291  0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x37, 0x1a, 0x01, 0x01,
-
1292  0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x2e,
-
1293  0xff, 0xf6, 0x01, 0xc1, 0x01, 0xd7, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x1b,
-
1294  0x40, 0x0d, 0x18, 0x00, 0x13, 0x21, 0x21, 0x00, 0x27, 0x0a, 0x07, 0x72,
-
1295  0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x11,
-
1296  0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33,
-
1297  0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x07, 0x21, 0x1e, 0x03, 0x33, 0x32,
-
1298  0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x03, 0x33, 0x34, 0x2e, 0x02, 0x23,
-
1299  0x22, 0x0e, 0x02, 0x01, 0x10, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a, 0x4e,
-
1300  0x2c, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0xfe, 0xc1, 0x02, 0x19, 0x28,
-
1301  0x33, 0x1d, 0x17, 0x29, 0x24, 0x0f, 0x2e, 0x14, 0x33, 0x3b, 0xaf, 0xe9,
-
1302  0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x0a, 0x1f, 0x3c, 0x5a,
-
1303  0x39, 0x3a, 0x5a, 0x3e, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09, 0x15, 0x08,
-
1304  0x29, 0x3b, 0x25, 0x12, 0x0a, 0x16, 0x10, 0x2c, 0x18, 0x21, 0x0f, 0x01,
-
1305  0x20, 0x1e, 0x2e, 0x22, 0x11, 0x0f, 0x20, 0x2f, 0xff, 0xff, 0x00, 0x2e,
-
1306  0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1307  0x01, 0x06, 0x03, 0x7d, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a,
-
1308  0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1309  0xff, 0xf6, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1310  0x01, 0x06, 0x03, 0x81, 0x02, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x30, 0x0a,
-
1311  0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1312  0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1313  0x01, 0x06, 0x03, 0x80, 0x04, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x31, 0x0a,
-
1314  0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1315  0xff, 0x38, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1316  0x00, 0x26, 0x03, 0x8d, 0x05, 0x00, 0x01, 0x06, 0x03, 0x81, 0x02, 0x00,
-
1317  0x00, 0x15, 0x40, 0x0e, 0x03, 0x48, 0x0a, 0x01, 0x01, 0x46, 0x56, 0x02,
-
1318  0x3b, 0x00, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1319  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26,
-
1320  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x0a, 0xff, 0x00, 0x0b,
-
1321  0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1322  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xf5, 0x03, 0x2d, 0x06, 0x26,
-
1323  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0x04, 0x00, 0x00, 0x15,
-
1324  0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x78, 0x56, 0x02, 0x2c, 0x0a,
-
1325  0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1326  0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26, 0x01, 0x12,
-
1327  0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x23, 0x00, 0x01, 0x06, 0x03, 0x7f,
-
1328  0x0a, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x38, 0x0a, 0x01, 0x01, 0x2b,
-
1329  0x56, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
-
1330  0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1331  0x03, 0x43, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xba,
-
1332  0x04, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x8d,
-
1333  0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1334  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xde, 0x03, 0x2f,
-
1335  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb, 0x0a, 0x00,
-
1336  0x00, 0x15, 0x40, 0x0e, 0x03, 0x3a, 0x2c, 0x01, 0x01, 0x70, 0x56, 0x02,
-
1337  0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1338  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x3d, 0x06, 0x26,
-
1339  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0x02, 0x00, 0x00, 0x15,
-
1340  0x40, 0x0e, 0x03, 0x37, 0x2c, 0x01, 0x01, 0xcc, 0x56, 0x02, 0x2c, 0x0a,
-
1341  0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1342  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12,
-
1343  0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xf9, 0x00, 0x00, 0x0d, 0xb7, 0x03,
-
1344  0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
1345  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x9d, 0x06, 0x26,
-
1346  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0x09, 0x00, 0x00, 0x0d,
-
1347  0xb7, 0x03, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34,
-
1348  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x97,
-
1349  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x05, 0x00,
-
1350  0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
-
1351  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x01, 0xd7,
-
1352  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
-
1353  0x00, 0x0e, 0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
-
1354  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1355  0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c,
-
1356  0xff, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56,
-
1357  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1358  0x02, 0xc8, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85,
-
1359  0x16, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x33, 0x0a, 0x01, 0x01, 0x37, 0x56,
-
1360  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1361  0x02, 0x89, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
-
1362  0x03, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x3c, 0x56,
-
1363  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1364  0x02, 0x73, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
-
1365  0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56,
-
1366  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1367  0x03, 0x49, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
-
1368  0x0a, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xfb, 0x00, 0x98, 0x00, 0x15,
-
1369  0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01, 0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a,
-
1370  0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1371  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x12,
-
1372  0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x0a, 0x00, 0x01, 0x07, 0x03, 0x7c,
-
1373  0xff, 0xff, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01,
-
1374  0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b,
-
1375  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x29, 0x01, 0xc1,
-
1376  0x01, 0xd7, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f,
-
1377  0xef, 0x0f, 0x00, 0x0b, 0xb6, 0x02, 0x35, 0x00, 0x00, 0x00, 0x2a, 0x56,
-
1378  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x28, 0xff, 0xf5, 0x01, 0xca,
-
1379  0x01, 0xd7, 0x00, 0x16, 0x00, 0x37, 0x00, 0x1d, 0x40, 0x0e, 0x08, 0x27,
-
1380  0x27, 0x2f, 0x2f, 0x00, 0x1f, 0x0f, 0x06, 0x72, 0x17, 0x00, 0x0b, 0x72,
-
1381  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
-
1382  0x31, 0x57, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x26, 0x26, 0x35,
-
1383  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
1384  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
1385  0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x2e, 0x02, 0x23, 0x22,
-
1386  0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0xea, 0x3c, 0x58, 0x2e, 0x16, 0x26,
-
1387  0x1b, 0x1f, 0x1f, 0x2c, 0x4f, 0x33, 0x44, 0x62, 0x35, 0x36, 0x66, 0x43,
-
1388  0x2b, 0x3d, 0x20, 0x1d, 0x3b, 0x2a, 0x1e, 0x27, 0x13, 0x10, 0x25, 0x20,
-
1389  0x08, 0x0e, 0x08, 0x08, 0x0c, 0x0b, 0x08, 0x18, 0x25, 0x1a, 0x0e, 0x1b,
-
1390  0x30, 0x0b, 0x01, 0x27, 0x44, 0x29, 0x1d, 0x2c, 0x20, 0x07, 0x12, 0x32,
-
1391  0x1e, 0x22, 0x38, 0x21, 0x3d, 0x6c, 0x48, 0x47, 0x6e, 0x3c, 0x46, 0x28,
-
1392  0x4c, 0x38, 0x33, 0x4c, 0x2a, 0x11, 0x1c, 0x13, 0x10, 0x1b, 0x10, 0x01,
-
1393  0x01, 0x49, 0x01, 0x01, 0x01, 0x09, 0x13, 0x19, 0x12, 0x16, 0x24, 0x15,
-
1394  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xac, 0x06, 0x26,
-
1395  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x0b,
-
1396  0xb6, 0x02, 0x30, 0x0a, 0x01, 0x01, 0x6a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1397  0x00, 0x02, 0x00, 0x33, 0xff, 0xf5, 0x01, 0xc6, 0x01, 0xd6, 0x00, 0x20,
-
1398  0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x12, 0x22, 0x22, 0x00, 0x27, 0x0a,
-
1399  0x0b, 0x72, 0x18, 0x00, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
1400  0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e,
-
1401  0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x21, 0x2e, 0x03,
-
1402  0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x13, 0x23, 0x14, 0x1e,
-
1403  0x02, 0x33, 0x32, 0x3e, 0x02, 0xe4, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a,
-
1404  0x4d, 0x2d, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0x01, 0x3f, 0x02, 0x19,
-
1405  0x28, 0x33, 0x1d, 0x16, 0x2a, 0x23, 0x10, 0x2e, 0x15, 0x32, 0x3b, 0xaf,
-
1406  0xe9, 0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x01, 0xd6, 0x1f,
-
1407  0x3d, 0x59, 0x39, 0x3a, 0x5b, 0x3d, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09,
-
1408  0x15, 0x08, 0x28, 0x3b, 0x26, 0x12, 0x0a, 0x16, 0x11, 0x2d, 0x19, 0x20,
-
1409  0x0f, 0xfe, 0xe0, 0x1e, 0x2f, 0x21, 0x11, 0x0f, 0x1f, 0x30, 0xff, 0xff,
-
1410  0x00, 0x4e, 0xff, 0x4e, 0x01, 0xc4, 0x01, 0xcb, 0x04, 0x07, 0x00, 0x41,
-
1411  0x00, 0x0f, 0xff, 0x5c, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x01, 0xde,
-
1412  0x02, 0xa1, 0x00, 0x1e, 0x00, 0x1b, 0x40, 0x0e, 0x1e, 0x0a, 0x72, 0x01,
-
1413  0x1c, 0x1c, 0x02, 0x19, 0x06, 0x72, 0x14, 0x08, 0x01, 0x72, 0x00, 0x2b,
-
1414  0x32, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x23, 0x35,
-
1415  0x33, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
1416  0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x33,
-
1417  0x15, 0x23, 0x11, 0x23, 0x9a, 0x63, 0x63, 0x2f, 0x50, 0x31, 0x2d, 0x4d,
-
1418  0x1a, 0x28, 0x05, 0x07, 0x02, 0x06, 0x0b, 0x11, 0x20, 0x18, 0x1c, 0x2c,
-
1419  0x18, 0x92, 0x92, 0x54, 0x01, 0x88, 0x44, 0x22, 0x3e, 0x4f, 0x26, 0x1f,
-
1420  0x20, 0x3d, 0x08, 0x04, 0x08, 0x10, 0x0b, 0x0e, 0x0b, 0x16, 0x30, 0x28,
-
1421  0x23, 0x44, 0xfe, 0x78, 0x00, 0x04, 0x00, 0x23, 0xff, 0x52, 0x01, 0xde,
-
1422  0x01, 0xdc, 0x00, 0x36, 0x00, 0x46, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x3d,
-
1423  0x40, 0x22, 0x57, 0x5c, 0x5c, 0x5b, 0x25, 0x24, 0x47, 0x47, 0x37, 0x4f,
-
1424  0x3f, 0x29, 0x21, 0x2d, 0x09, 0x0a, 0x1b, 0x17, 0x07, 0x37, 0x37, 0x00,
-
1425  0x58, 0x5b, 0x3f, 0x07, 0x72, 0x5b, 0x07, 0x72, 0x13, 0x00, 0x0f, 0x72,
-
1426  0x00, 0x2b, 0x32, 0x2b, 0x2b, 0x11, 0x33, 0x12, 0x39, 0x2f, 0x17, 0x39,
-
1427  0x11, 0x33, 0x11, 0x33, 0x12, 0x39, 0x39, 0x11, 0x33, 0x11, 0x33, 0x30,
-
1428  0x31, 0x57, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e,
-
1429  0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
1430  0x26, 0x23, 0x22, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02,
-
1431  0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
1432  0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
1433  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
1434  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, 0x36, 0x36,
-
1435  0x17, 0x17, 0x26, 0x06, 0xf4, 0x30, 0x4e, 0x36, 0x1d, 0x18, 0x27, 0x18,
-
1436  0x25, 0x11, 0x17, 0x0b, 0x14, 0x24, 0x34, 0x20, 0x2b, 0x38, 0x1c, 0x10,
-
1437  0x30, 0x2e, 0x22, 0x3c, 0x31, 0x22, 0x13, 0x21, 0x1a, 0x28, 0x0a, 0x0d,
-
1438  0x06, 0x1b, 0x41, 0x36, 0x32, 0x40, 0x24, 0x0f, 0x17, 0x31, 0x4e, 0x49,
-
1439  0x31, 0x4a, 0x29, 0x29, 0x4a, 0x31, 0x32, 0x49, 0x29, 0x29, 0x49, 0x32,
-
1440  0x1b, 0x29, 0x19, 0x19, 0x29, 0x1b, 0x1a, 0x2a, 0x18, 0x18, 0x2a, 0xa3,
-
1441  0x21, 0x1d, 0x42, 0x2a, 0x0a, 0x20, 0x3a, 0xae, 0x10, 0x1e, 0x2c, 0x1d,
-
1442  0x1b, 0x2b, 0x1e, 0x08, 0x13, 0x0b, 0x15, 0x1b, 0x13, 0x0f, 0x19, 0x10,
-
1443  0x09, 0x11, 0x1f, 0x13, 0x14, 0x19, 0x0c, 0x06, 0x0e, 0x15, 0x20, 0x15,
-
1444  0x1c, 0x30, 0x16, 0x1c, 0x0b, 0x0f, 0x0e, 0x09, 0x0f, 0x12, 0x09, 0x12,
-
1445  0x21, 0x2b, 0x19, 0x1c, 0x33, 0x28, 0x18, 0x01, 0x4a, 0x2a, 0x49, 0x2d,
-
1446  0x2c, 0x48, 0x2c, 0x2c, 0x48, 0x2c, 0x2d, 0x49, 0x2a, 0x43, 0x19, 0x2a,
-
1447  0x1a, 0x1a, 0x29, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2b, 0x19, 0x9f, 0x28,
-
1448  0x1b, 0x1a, 0x03, 0x42, 0x04, 0x0a, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1449  0x01, 0xde, 0x02, 0x90, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1450  0x03, 0x9a, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1451  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1452  0x01, 0xde, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1453  0x03, 0x80, 0xe4, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x64, 0x3f, 0x01, 0x01,
-
1454  0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1455  0x01, 0xde, 0x02, 0xad, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1456  0x03, 0x7f, 0xea, 0xff, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1457  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1458  0x01, 0xde, 0x03, 0x2e, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1459  0x03, 0x88, 0xf8, 0xf8, 0x00, 0x0b, 0xb6, 0x04, 0x6b, 0x3f, 0x01, 0x01,
-
1460  0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1461  0x01, 0xde, 0x02, 0x97, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1462  0x03, 0x7b, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1463  0x4f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1464  0x01, 0xde, 0x02, 0x73, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1465  0x03, 0x84, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1466  0x5b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x43, 0x00, 0x00,
-
1467  0x01, 0xb7, 0x02, 0x9b, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x11, 0x1e,
-
1468  0x0a, 0x72, 0x07, 0x16, 0x16, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00,
-
1469  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x53, 0x33, 0x33,
-
1470  0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
1471  0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11,
-
1472  0x23, 0x43, 0x54, 0x09, 0x05, 0x03, 0x11, 0x30, 0x35, 0x1b, 0x2a, 0x41,
-
1473  0x23, 0x54, 0x14, 0x23, 0x17, 0x12, 0x24, 0x20, 0x19, 0x0e, 0x55, 0x02,
-
1474  0x9b, 0x08, 0x06, 0x0e, 0x11, 0xed, 0x1b, 0x26, 0x15, 0x27, 0x55, 0x45,
-
1475  0xfe, 0xea, 0x01, 0x14, 0x2e, 0x36, 0x18, 0x0c, 0x17, 0x21, 0x2a, 0x1a,
-
1476  0xfe, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0xb7, 0x02, 0x9b,
-
1477  0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x88,
-
1478  0x00, 0xea, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x0b, 0x01, 0x01, 0x34, 0x56,
-
1479  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43, 0xff, 0x4c, 0x01, 0xb7,
-
1480  0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
-
1481  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1f, 0x11, 0x01, 0x01, 0xb8, 0xff,
-
1482  0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00,
-
1483  0x01, 0xb7, 0x03, 0x46, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07,
-
1484  0x03, 0xa5, 0xff, 0x7c, 0x00, 0x2c, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x00,
-
1485  0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43,
-
1486  0xff, 0x65, 0x01, 0xb7, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00,
-
1487  0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x25, 0x11,
-
1488  0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
1489  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26, 0x01, 0x3a,
-
1490  0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1491  0x0a, 0x05, 0x00, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
1492  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x01, 0xcc, 0x00, 0x09, 0x00, 0x17,
-
1493  0x40, 0x0b, 0x07, 0x01, 0x01, 0x00, 0x04, 0x05, 0x06, 0x72, 0x00, 0x0a,
-
1494  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
1495  0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x5f, 0x74, 0x6e,
-
1496  0xc4, 0x6a, 0x44, 0x01, 0x43, 0x45, 0xfe, 0x78, 0x44, 0x00, 0xff, 0xff,
-
1497  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xbd, 0x06, 0x26, 0x01, 0x3a,
-
1498  0x00, 0x00, 0x01, 0x06, 0x03, 0x96, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1499  0x0a, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1500  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x93, 0x06, 0x26, 0x01, 0x3a,
-
1501  0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1502  0x0e, 0x05, 0x01, 0x01, 0x51, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1503  0x00, 0x5e, 0x00, 0x00, 0x01, 0x95, 0x02, 0xad, 0x06, 0x26, 0x01, 0x3a,
-
1504  0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01,
-
1505  0x0a, 0x05, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1506  0x00, 0x4a, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x3a,
-
1507  0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
1508  0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
1509  0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x9d, 0x06, 0x26,
-
1510  0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x93, 0xf8, 0x00, 0x00, 0x0d,
-
1511  0xb7, 0x02, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
-
1512  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x03, 0x46,
-
1513  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a, 0xff, 0x00,
-
1514  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0x95, 0x00, 0x1a, 0xb4, 0x03,
-
1515  0x22, 0x10, 0x01, 0x00, 0xb8, 0xff, 0xf6, 0x40, 0x09, 0x56, 0x02, 0x01,
-
1516  0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
-
1517  0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
-
1518  0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b,
-
1519  0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1520  0xff, 0xff, 0x00, 0x5f, 0xff, 0x65, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
-
1521  0x01, 0x39, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
1522  0xb4, 0x02, 0x1c, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
1523  0x2b, 0x34, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1,
-
1524  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00,
-
1525  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
-
1526  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xc8,
-
1527  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff,
-
1528  0x00, 0x0b, 0xb6, 0x01, 0x11, 0x05, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
-
1529  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x89,
-
1530  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
-
1531  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1532  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x73,
-
1533  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x00, 0x00,
-
1534  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b,
-
1535  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0xff, 0x19, 0x01, 0x94, 0x02, 0x97,
-
1536  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00,
-
1537  0x01, 0x06, 0x03, 0x8e, 0x6b, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x20,
-
1538  0x00, 0x00, 0x00, 0x00, 0x56, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56,
-
1539  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00,
-
1540  0x01, 0x93, 0x02, 0xac, 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06,
-
1541  0x03, 0xb4, 0xf6, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x0e, 0x05, 0x01, 0x01,
-
1542  0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2c, 0xff, 0x51,
-
1543  0x01, 0x7e, 0x02, 0x97, 0x06, 0x26, 0x01, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
1544  0x03, 0x7b, 0x45, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01,
-
1545  0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2c, 0xff, 0x51,
-
1546  0x01, 0x75, 0x01, 0xcc, 0x00, 0x19, 0x00, 0x13, 0x40, 0x09, 0x0c, 0x19,
-
1547  0x12, 0x13, 0x06, 0x72, 0x19, 0x0f, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
-
1548  0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
-
1549  0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33,
-
1550  0x11, 0x14, 0x06, 0x06, 0x23, 0xc1, 0x2c, 0x4e, 0x1b, 0x2f, 0x06, 0x06,
-
1551  0x02, 0x06, 0x0b, 0x0d, 0x23, 0x16, 0x1d, 0x2a, 0x17, 0xa7, 0xfe, 0x32,
-
1552  0x51, 0x31, 0xaf, 0x22, 0x21, 0x3f, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0b,
-
1553  0x0e, 0x19, 0x35, 0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4c, 0x46, 0x58, 0x29,
-
1554  0xff, 0xff, 0x00, 0x2c, 0xff, 0x51, 0x01, 0xdf, 0x02, 0xad, 0x06, 0x26,
-
1555  0x01, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x4b, 0xff, 0x00, 0x0b,
-
1556  0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1557  0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc, 0x01, 0xe3, 0x02, 0x9b, 0x00, 0x15,
-
1558  0x00, 0x1c, 0x40, 0x10, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x12, 0x06,
-
1559  0x72, 0x04, 0x00, 0x72, 0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
1560  0x2b, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
-
1561  0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
-
1562  0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
-
1563  0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x02, 0x9b,
-
1564  0x08, 0x06, 0x0e, 0x11, 0xfe, 0x9a, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5,
-
1565  0xfe, 0xec, 0x04, 0x00, 0xff, 0xff, 0x00, 0x3d, 0xfe, 0xe6, 0x01, 0xe3,
-
1566  0x02, 0x9b, 0x06, 0x26, 0x01, 0x4c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
1567  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03, 0x01, 0x01, 0xb8, 0xff,
-
1568  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc,
-
1569  0x01, 0xe3, 0x01, 0xce, 0x00, 0x15, 0x00, 0x22, 0x40, 0x12, 0x0c, 0x12,
-
1570  0x12, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x04, 0x06, 0x72, 0x15, 0x14,
-
1571  0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x12, 0x17,
-
1572  0x39, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
-
1573  0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
-
1574  0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
-
1575  0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x01, 0xcc,
-
1576  0x08, 0x06, 0x0e, 0x11, 0x97, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5, 0xfe,
-
1577  0xec, 0x04, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x02, 0x9b,
-
1578  0x00, 0x09, 0x00, 0x15, 0x40, 0x0a, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01,
-
1579  0x01, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30,
-
1580  0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x4a,
-
1581  0x85, 0x7f, 0xd6, 0x85, 0x44, 0x02, 0x13, 0x44, 0xfd, 0xa9, 0x44, 0x00,
-
1582  0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x03, 0x47, 0x06, 0x26,
-
1583  0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x2c, 0x00, 0x0b,
-
1584  0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1585  0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xd4, 0x02, 0xa3, 0x06, 0x26,
-
1586  0x01, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x6f, 0x00, 0xa4, 0x00, 0x00,
-
1587  0x00, 0x0b, 0xb6, 0x01, 0x17, 0x05, 0x00, 0x00, 0x06, 0x56, 0x00, 0x2b,
-
1588  0x34, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xfe, 0xe6, 0x01, 0xab, 0x02, 0x9b,
-
1589  0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00,
-
1590  0x00, 0x0e, 0xb4, 0x01, 0x16, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0,
-
1591  0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x41, 0x00, 0x00, 0x01, 0xc8,
-
1592  0x02, 0x9c, 0x00, 0x09, 0x00, 0x15, 0x00, 0x1d, 0x40, 0x0e, 0x10, 0x0a,
-
1593  0x0a, 0x00, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01, 0x01, 0x00, 0x0a, 0x72,
-
1594  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30,
-
1595  0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x03,
-
1596  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x41,
-
1597  0x70, 0x6a, 0xc1, 0x98, 0x1a, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26,
-
1598  0x44, 0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x01, 0x0d, 0x24, 0x1b, 0x1a,
-
1599  0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65,
-
1600  0x01, 0xab, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
1601  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x00, 0x01, 0x01,
-
1602  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x15,
-
1603  0xff, 0x51, 0x01, 0xbc, 0x02, 0x9c, 0x00, 0x19, 0x00, 0x23, 0x00, 0x2f,
-
1604  0x00, 0x25, 0x40, 0x14, 0x1e, 0x1f, 0x00, 0x72, 0x21, 0x1b, 0x1b, 0x1a,
-
1605  0x0a, 0x72, 0x2a, 0x24, 0x12, 0x13, 0x06, 0x72, 0x0c, 0x00, 0x0f, 0x72,
-
1606  0x00, 0x2b, 0x32, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2b,
-
1607  0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x16,
-
1608  0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x11, 0x14,
-
1609  0x0e, 0x02, 0x25, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15,
-
1610  0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
1611  0xfd, 0x29, 0x42, 0x19, 0x32, 0x05, 0x03, 0x05, 0x0e, 0x11, 0x09, 0x15,
-
1612  0x0c, 0x1b, 0x2a, 0x18, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0xfe, 0xf2, 0x3c,
-
1613  0x36, 0x8c, 0x72, 0x68, 0x18, 0x21, 0x20, 0x19, 0x18, 0x23, 0x23, 0xaf,
-
1614  0x1e, 0x1d, 0x46, 0x04, 0x0a, 0x0b, 0x0d, 0x08, 0x04, 0x06, 0x19, 0x35,
-
1615  0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a, 0x2f, 0x17, 0xae, 0x44,
-
1616  0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x02, 0x25, 0x22, 0x17, 0x19, 0x20,
-
1617  0x22, 0x17, 0x17, 0x22, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65, 0x01, 0xab,
-
1618  0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90,
-
1619  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0b, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1620  0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4b, 0x00, 0x00,
-
1621  0x01, 0xaa, 0x02, 0x9b, 0x00, 0x11, 0x00, 0x1e, 0x40, 0x10, 0x03, 0x0e,
-
1622  0x06, 0x0b, 0x04, 0x00, 0x08, 0x09, 0x00, 0x72, 0x0f, 0x01, 0x01, 0x00,
-
1623  0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x17, 0x39,
-
1624  0x30, 0x31, 0x73, 0x35, 0x33, 0x35, 0x07, 0x35, 0x37, 0x35, 0x23, 0x35,
-
1625  0x33, 0x11, 0x37, 0x15, 0x07, 0x15, 0x33, 0x15, 0x4b, 0x84, 0x4d, 0x4d,
-
1626  0x7e, 0xd5, 0x58, 0x58, 0x84, 0x44, 0xca, 0x1a, 0x4e, 0x1b, 0xfa, 0x44,
-
1627  0xfe, 0xdf, 0x20, 0x51, 0x1e, 0xe7, 0x44, 0x00, 0x00, 0x01, 0x00, 0x23,
-
1628  0x00, 0x00, 0x01, 0xd9, 0x01, 0xd7, 0x00, 0x2b, 0x00, 0x25, 0x40, 0x13,
-
1629  0x03, 0x25, 0x0b, 0x1b, 0x1b, 0x0f, 0x0f, 0x25, 0x07, 0x07, 0x72, 0x01,
-
1630  0x06, 0x72, 0x21, 0x16, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2b,
-
1631  0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
1632  0x11, 0x33, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02,
-
1633  0x33, 0x32, 0x1e, 0x02, 0x07, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23,
-
1634  0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e,
-
1635  0x02, 0x15, 0x11, 0x23, 0x4c, 0x0b, 0x1c, 0x21, 0x11, 0x13, 0x21, 0x17,
-
1636  0x05, 0x0a, 0x1e, 0x28, 0x16, 0x18, 0x22, 0x17, 0x0a, 0x01, 0x4d, 0x09,
-
1637  0x11, 0x0c, 0x11, 0x1e, 0x13, 0x4b, 0x13, 0x19, 0x0b, 0x15, 0x11, 0x0b,
-
1638  0x01, 0xcc, 0x2a, 0x11, 0x17, 0x0d, 0x0f, 0x1d, 0x14, 0x14, 0x1c, 0x10,
-
1639  0x12, 0x20, 0x2e, 0x1b, 0xfe, 0xa4, 0x01, 0x42, 0x26, 0x25, 0x0b, 0x1f,
-
1640  0x31, 0x1b, 0xfe, 0xd3, 0x01, 0x3d, 0x36, 0x24, 0x0e, 0x19, 0x27, 0x18,
-
1641  0xfe, 0xcf, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd9, 0x01, 0xd7,
-
1642  0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
1643  0x00, 0x0e, 0xb4, 0x01, 0x32, 0x21, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
1644  0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
-
1645  0x01, 0xd7, 0x00, 0x18, 0x00, 0x19, 0x40, 0x0d, 0x03, 0x12, 0x12, 0x07,
-
1646  0x07, 0x72, 0x01, 0x06, 0x72, 0x0d, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32,
-
1647  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x15, 0x3e,
-
1648  0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26,
-
1649  0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x42, 0x55, 0x11, 0x2e, 0x37, 0x1e,
-
1650  0x27, 0x3e, 0x26, 0x54, 0x14, 0x24, 0x17, 0x15, 0x2c, 0x25, 0x16, 0x01,
-
1651  0xcc, 0x4c, 0x1a, 0x27, 0x16, 0x27, 0x54, 0x46, 0xfe, 0xea, 0x01, 0x14,
-
1652  0x2d, 0x36, 0x19, 0x13, 0x22, 0x31, 0x1e, 0xfe, 0xf4, 0x00, 0xff, 0xff,
-
1653  0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x5a,
-
1654  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1655  0x19, 0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1656  0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x5a,
-
1657  0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1658  0x1e, 0x07, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1659  0x00, 0x42, 0xfe, 0xe6, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x5a,
-
1660  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x17, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
1661  0x25, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1662  0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0x97, 0x06, 0x26,
-
1663  0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x09, 0x00, 0x00, 0x0b,
-
1664  0xb6, 0x01, 0x19, 0x07, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1665  0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26,
-
1666  0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x13, 0x00, 0x00, 0x0e,
-
1667  0xb4, 0x01, 0x1f, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
1668  0x2b, 0x34, 0x00, 0x01, 0x00, 0x3f, 0xff, 0x4f, 0x01, 0xb7, 0x01, 0xd6,
-
1669  0x00, 0x2d, 0x00, 0x1d, 0x40, 0x10, 0x1e, 0x13, 0x13, 0x23, 0x07, 0x72,
-
1670  0x1c, 0x06, 0x72, 0x1b, 0x0a, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b,
-
1671  0x32, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
-
1672  0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x2e,
-
1673  0x02, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11, 0x23, 0x11, 0x33, 0x15, 0x3e,
-
1674  0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x08,
-
1675  0x1b, 0x35, 0x17, 0x26, 0x04, 0x05, 0x0b, 0x17, 0x16, 0x1f, 0x28, 0x14,
-
1676  0x0c, 0x17, 0x1d, 0x11, 0x12, 0x24, 0x20, 0x18, 0x0e, 0x57, 0x57, 0x0d,
-
1677  0x20, 0x26, 0x29, 0x15, 0x1e, 0x35, 0x27, 0x16, 0x1b, 0x30, 0x3f, 0xb1,
-
1678  0x13, 0x13, 0x4a, 0x01, 0x0a, 0x0d, 0x0a, 0x1f, 0x41, 0x2f, 0xe9, 0x21,
-
1679  0x2f, 0x1c, 0x0d, 0x0c, 0x17, 0x20, 0x29, 0x19, 0xfe, 0xf7, 0x01, 0xcc,
-
1680  0x4c, 0x14, 0x1f, 0x17, 0x0c, 0x15, 0x2d, 0x49, 0x34, 0xe0, 0x3d, 0x58,
-
1681  0x38, 0x1b, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7,
-
1682  0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x0c, 0x00,
-
1683  0x00, 0x0e, 0xb4, 0x01, 0x1a, 0x00, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0,
-
1684  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
-
1685  0x02, 0xac, 0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
1686  0x04, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x07, 0x01, 0x01, 0x6a, 0x56,
-
1687  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1688  0x01, 0xd6, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x13, 0x40, 0x09, 0x10, 0x00,
-
1689  0x18, 0x08, 0x07, 0x72, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
-
1690  0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
1691  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
1692  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
-
1693  0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
-
1694  0x25, 0x38, 0x21, 0x21, 0x38, 0x25, 0x24, 0x39, 0x21, 0x20, 0x39, 0x09,
-
1695  0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
-
1696  0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
-
1697  0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1,
-
1698  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
-
1699  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
-
1700  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x93,
-
1701  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00,
-
1702  0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1703  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xad,
-
1704  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff,
-
1705  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1706  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xec, 0x03, 0x2d,
-
1707  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xfa, 0x00,
-
1708  0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01, 0x01, 0x78, 0x56, 0x02,
-
1709  0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1710  0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0xad, 0x06, 0x26,
-
1711  0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
-
1712  0x03, 0x7f, 0x01, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c, 0x08, 0x01,
-
1713  0x01, 0x2c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0,
-
1714  0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7,
-
1715  0x01, 0xd1, 0x03, 0x43, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
-
1716  0x03, 0xba, 0xfa, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01,
-
1717  0x01, 0x8d, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1718  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd4,
-
1719  0x03, 0x2f, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
-
1720  0x00, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x20, 0x01, 0x01, 0x70,
-
1721  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1722  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x3d,
-
1723  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf9, 0x00,
-
1724  0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x20, 0x01, 0x01, 0xcc, 0x56, 0x02,
-
1725  0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1726  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
-
1727  0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d,
-
1728  0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
-
1729  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x9d,
-
1730  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xff, 0x00,
-
1731  0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x61, 0x56, 0x00,
-
1732  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1733  0x03, 0x08, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a,
-
1734  0xff, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x17,
-
1735  0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x30, 0x56, 0x03, 0x02, 0x20,
-
1736  0x08, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34, 0x00,
-
1737  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x08, 0x06, 0x26,
-
1738  0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00, 0x01, 0x07,
-
1739  0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2c,
-
1740  0x26, 0x01, 0x01, 0x39, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x56, 0x56,
-
1741  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65,
-
1742  0x01, 0xd1, 0x01, 0xd6, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
-
1743  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x00, 0x01, 0x01,
-
1744  0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23,
-
1745  0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1746  0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08,
-
1747  0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1748  0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1749  0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08,
-
1750  0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1751  0xff, 0xf7, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1752  0x01, 0x06, 0x03, 0x89, 0xe0, 0xea, 0x00, 0x0e, 0xb4, 0x02, 0x24, 0x08,
-
1753  0x01, 0x01, 0xb8, 0xff, 0xb0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
1754  0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x73,
-
1755  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x03,
-
1756  0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1757  0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x73,
-
1758  0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x03,
-
1759  0x2f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1760  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
-
1761  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b,
-
1762  0xb6, 0x03, 0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1763  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26,
-
1764  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b,
-
1765  0xb6, 0x03, 0x30, 0x08, 0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1766  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac, 0x06, 0x26,
-
1767  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00, 0x00, 0x0b,
-
1768  0xb6, 0x03, 0x2d, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1769  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc0, 0x06, 0x26,
-
1770  0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00, 0x00, 0x0d,
-
1771  0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x37, 0x56, 0x00, 0x2b, 0x34,
-
1772  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x89,
-
1773  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
-
1774  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b,
-
1775  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x73,
-
1776  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x01, 0x00,
-
1777  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b,
-
1778  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49,
-
1779  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x01, 0x00,
-
1780  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e,
-
1781  0x03, 0x24, 0x21, 0x01, 0x01, 0x28, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01,
-
1782  0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1783  0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1784  0x00, 0x26, 0x03, 0x84, 0x01, 0x00, 0x01, 0x07, 0x03, 0x7c, 0xff, 0xf6,
-
1785  0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24, 0x21, 0x01, 0x01, 0x28,
-
1786  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1787  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x28, 0x01, 0xd1, 0x01, 0xd6,
-
1788  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x06, 0x03, 0x8e, 0x31, 0x0f,
-
1789  0x00, 0x03, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0x08, 0x00, 0x03,
-
1790  0x00, 0x13, 0x00, 0x23, 0x00, 0x1e, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c,
-
1791  0x0c, 0x07, 0x72, 0x01, 0x00, 0x00, 0x14, 0x04, 0x0b, 0x72, 0x00, 0x2b,
-
1792  0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31,
-
1793  0x57, 0x27, 0x01, 0x17, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
1794  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
-
1795  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
1796  0x7f, 0x3d, 0x01, 0x2c, 0x40, 0xb4, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
-
1797  0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x25, 0x38, 0x21, 0x21, 0x38, 0x25,
-
1798  0x24, 0x39, 0x21, 0x20, 0x39, 0x41, 0x21, 0x02, 0x28, 0x21, 0xfe, 0x10,
-
1799  0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
-
1800  0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
-
1801  0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0xb1,
-
1802  0x06, 0x26, 0x01, 0x7f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
-
1803  0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
-
1804  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac,
-
1805  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00,
-
1806  0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b,
-
1807  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x65,
-
1808  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83, 0xf6, 0x00,
-
1809  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0xb4, 0x00, 0x15, 0x40, 0x0e,
-
1810  0x03, 0x38, 0x30, 0x01, 0x00, 0x03, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01,
-
1811  0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1812  0xff, 0xf7, 0x01, 0xd1, 0x03, 0x51, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1813  0x00, 0x26, 0x03, 0x83, 0xf6, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff,
-
1814  0x00, 0xb4, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x03, 0x38, 0x30, 0x01, 0x01,
-
1815  0x3c, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
-
1816  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1817  0x03, 0x27, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
-
1818  0xf6, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x15,
-
1819  0x40, 0x0e, 0x03, 0x38, 0x30, 0x01, 0x01, 0x3d, 0x56, 0x02, 0x24, 0x08,
-
1820  0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x03,
-
1821  0x00, 0x06, 0xff, 0xf4, 0x01, 0xed, 0x01, 0xd5, 0x00, 0x25, 0x00, 0x42,
-
1822  0x00, 0x4b, 0x00, 0x2f, 0x40, 0x17, 0x48, 0x15, 0x15, 0x26, 0x1f, 0x1f,
-
1823  0x00, 0x43, 0x1b, 0x00, 0x1b, 0x00, 0x1b, 0x06, 0x3b, 0x12, 0x0f, 0x07,
-
1824  0x72, 0x03, 0x06, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x11,
-
1825  0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
1826  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x2e,
-
1827  0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x36, 0x36, 0x33,
-
1828  0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37,
-
1829  0x17, 0x06, 0x06, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x2e,
-
1830  0x02, 0x35, 0x34, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
1831  0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x33, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
1832  0x06, 0x01, 0x71, 0x20, 0x3a, 0x19, 0x16, 0x30, 0x1b, 0x1b, 0x35, 0x2c,
-
1833  0x1b, 0x2d, 0x48, 0x28, 0x1e, 0x2e, 0x11, 0x13, 0x31, 0x1d, 0x2b, 0x3e,
-
1834  0x21, 0xdd, 0x01, 0x17, 0x2a, 0x1d, 0x1d, 0x2c, 0x11, 0x26, 0x1b, 0x3c,
-
1835  0xf1, 0x0a, 0x11, 0x0d, 0x07, 0x01, 0x02, 0x04, 0x04, 0x02, 0x05, 0x05,
-
1836  0x06, 0x0c, 0x11, 0x0a, 0x16, 0x28, 0x19, 0x15, 0x27, 0x86, 0x9b, 0x01,
-
1837  0x0e, 0x21, 0x1b, 0x18, 0x24, 0x14, 0x0c, 0x14, 0x14, 0x14, 0x13, 0x15,
-
1838  0x36, 0x5d, 0x48, 0x58, 0x69, 0x2f, 0x16, 0x16, 0x15, 0x17, 0x2a, 0x53,
-
1839  0x3d, 0x41, 0x43, 0x47, 0x19, 0x11, 0x14, 0x30, 0x1d, 0x1b, 0x46, 0x05,
-
1840  0x0a, 0x0d, 0x09, 0x03, 0x0a, 0x09, 0x16, 0x28, 0x27, 0x15, 0x26, 0x32,
-
1841  0x1c, 0x04, 0x08, 0x0f, 0x0b, 0x07, 0x20, 0x46, 0x39, 0x3c, 0x52, 0x29,
-
1842  0xdf, 0x2b, 0x36, 0x19, 0x1d, 0x37, 0x00, 0x02, 0x00, 0x38, 0xff, 0x59,
-
1843  0x01, 0xd3, 0x01, 0xd6, 0x00, 0x16, 0x00, 0x2a, 0x00, 0x21, 0x40, 0x12,
-
1844  0x15, 0x17, 0x17, 0x11, 0x0b, 0x72, 0x03, 0x20, 0x20, 0x07, 0x07, 0x72,
-
1845  0x01, 0x06, 0x72, 0x00, 0x0e, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11,
-
1846  0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x15, 0x3e,
-
1847  0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26,
-
1848  0x26, 0x27, 0x15, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27,
-
1849  0x26, 0x0e, 0x02, 0x15, 0x1e, 0x04, 0x38, 0x56, 0x0c, 0x29, 0x35, 0x1e,
-
1850  0x26, 0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f,
-
1851  0x72, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
-
1852  0x01, 0x0a, 0x14, 0x1b, 0x24, 0xa7, 0x02, 0x73, 0x52, 0x20, 0x29, 0x13,
-
1853  0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f, 0x0f, 0x1e, 0x14, 0xdc,
-
1854  0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28, 0x02, 0x02, 0x14, 0x2c,
-
1855  0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00, 0x00, 0x02, 0x00, 0x38,
-
1856  0xff, 0x59, 0x01, 0xd3, 0x02, 0x9b, 0x00, 0x1b, 0x00, 0x30, 0x00, 0x21,
-
1857  0x40, 0x12, 0x19, 0x1c, 0x1c, 0x15, 0x0b, 0x72, 0x1b, 0x0e, 0x72, 0x07,
-
1858  0x25, 0x25, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
1859  0x11, 0x33, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x33,
-
1860  0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15,
-
1861  0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x15, 0x23, 0x37, 0x32,
-
1862  0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27, 0x26, 0x0e, 0x02, 0x15, 0x1e,
-
1863  0x04, 0x33, 0x38, 0x55, 0x0a, 0x06, 0x03, 0x0c, 0x29, 0x35, 0x1e, 0x26,
-
1864  0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f, 0x58,
-
1865  0xca, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
-
1866  0x01, 0x0a, 0x14, 0x1b, 0x24, 0x15, 0x02, 0x9b, 0x08, 0x06, 0x0e, 0x11,
-
1867  0xf4, 0x20, 0x29, 0x13, 0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f,
-
1868  0x0f, 0x1e, 0x14, 0xdc, 0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28,
-
1869  0x02, 0x02, 0x14, 0x2c, 0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00,
-
1870  0x00, 0x02, 0x00, 0x25, 0xff, 0x59, 0x01, 0xbe, 0x01, 0xd7, 0x00, 0x17,
-
1871  0x00, 0x2b, 0x00, 0x21, 0x40, 0x12, 0x17, 0x0e, 0x72, 0x16, 0x06, 0x72,
-
1872  0x14, 0x22, 0x22, 0x0f, 0x07, 0x72, 0x01, 0x18, 0x18, 0x05, 0x0b, 0x72,
-
1873  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x2b, 0x30,
-
1874  0x31, 0x45, 0x35, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
-
1875  0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x35, 0x33, 0x11, 0x27, 0x32, 0x3e,
-
1876  0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
-
1877  0x02, 0x01, 0x68, 0x0d, 0x28, 0x32, 0x1c, 0x29, 0x47, 0x34, 0x1c, 0x1e,
-
1878  0x37, 0x4a, 0x2b, 0x17, 0x25, 0x20, 0x18, 0x09, 0x52, 0xca, 0x18, 0x2a,
-
1879  0x20, 0x11, 0x10, 0x1e, 0x27, 0x18, 0x1a, 0x2f, 0x22, 0x14, 0x11, 0x20,
-
1880  0x2d, 0xa7, 0xe6, 0x16, 0x22, 0x11, 0x23, 0x3f, 0x59, 0x36, 0x38, 0x59,
-
1881  0x3f, 0x20, 0x09, 0x13, 0x1b, 0x10, 0x3c, 0xfd, 0x8d, 0xe4, 0x14, 0x2a,
-
1882  0x45, 0x30, 0x2d, 0x3f, 0x26, 0x11, 0x13, 0x29, 0x40, 0x2d, 0x2a, 0x40,
-
1883  0x2c, 0x17, 0x00, 0x01, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x01, 0xd7,
-
1884  0x00, 0x1b, 0x00, 0x1b, 0x40, 0x0e, 0x1b, 0x0a, 0x72, 0x03, 0x02, 0x02,
-
1885  0x14, 0x14, 0x08, 0x07, 0x72, 0x00, 0x06, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
1886  0x11, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x33, 0x07, 0x27, 0x3e,
-
1887  0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1888  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x6d, 0x59, 0x02, 0x0b,
-
1889  0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25, 0x04, 0x07, 0x03,
-
1890  0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16, 0x57, 0x01, 0xcc,
-
1891  0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12, 0x19, 0x1a, 0x45, 0x09, 0x04, 0x08,
-
1892  0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26, 0x3b, 0x28, 0xf4, 0x00, 0xff, 0xff,
-
1893  0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x89,
-
1894  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1895  0x1c, 0x08, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1896  0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x89,
-
1897  0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x20, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1898  0x21, 0x08, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1899  0x00, 0x6d, 0xfe, 0xe6, 0x01, 0xcd, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x89,
-
1900  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x27, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
1901  0x28, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xe1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1902  0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26,
-
1903  0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0x15, 0x00, 0x00, 0x0d,
-
1904  0xb7, 0x02, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
1905  0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
-
1906  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
-
1907  0x00, 0x0e, 0xb4, 0x01, 0x22, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xd5, 0xb0,
-
1908  0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x14, 0xff, 0x4f, 0x01, 0xea,
-
1909  0x01, 0xcd, 0x00, 0x2e, 0x00, 0x19, 0x40, 0x0d, 0x22, 0x2e, 0x0f, 0x72,
-
1910  0x1c, 0x06, 0x72, 0x06, 0x16, 0x16, 0x0a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
-
1911  0x11, 0x33, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x27,
-
1912  0x37, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
-
1913  0x17, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x33, 0x03, 0x14,
-
1914  0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x3e, 0x02, 0x37, 0x17, 0x06,
-
1915  0x06, 0x23, 0x01, 0x90, 0x1c, 0x30, 0x25, 0x15, 0x01, 0x01, 0x0c, 0x2a,
-
1916  0x33, 0x1c, 0x21, 0x35, 0x1b, 0x23, 0x04, 0x07, 0x03, 0x07, 0x0c, 0x0b,
-
1917  0x18, 0x11, 0x15, 0x2d, 0x25, 0x16, 0x57, 0x01, 0x10, 0x1b, 0x12, 0x06,
-
1918  0x0c, 0x0d, 0x06, 0x06, 0x04, 0x03, 0x03, 0x19, 0x11, 0x2d, 0x1c, 0xb1,
-
1919  0x10, 0x24, 0x3a, 0x2b, 0x69, 0x1d, 0x29, 0x16, 0x19, 0x1a, 0x42, 0x09,
-
1920  0x04, 0x07, 0x10, 0x0b, 0x08, 0x07, 0x13, 0x27, 0x3a, 0x28, 0xf3, 0xfe,
-
1921  0x1a, 0x1a, 0x23, 0x13, 0x02, 0x04, 0x04, 0x02, 0x07, 0x07, 0x02, 0x41,
-
1922  0x11, 0x12, 0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0x89,
-
1923  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0x20, 0x00,
-
1924  0x00, 0x0b, 0xb6, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1925  0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
-
1926  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x1c, 0x00,
-
1927  0x00, 0x0e, 0xb4, 0x01, 0x1d, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0,
-
1928  0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x21, 0xff, 0xff, 0x01, 0xcd,
-
1929  0x01, 0xd7, 0x00, 0x03, 0x00, 0x1f, 0x00, 0x1f, 0x40, 0x0f, 0x01, 0x00,
-
1930  0x00, 0x1e, 0x07, 0x06, 0x06, 0x18, 0x18, 0x0c, 0x07, 0x72, 0x04, 0x06,
-
1931  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x39, 0x2f,
-
1932  0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x03, 0x33, 0x07, 0x27, 0x3e,
-
1933  0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1934  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x21, 0x01, 0x16, 0xca,
-
1935  0x59, 0x02, 0x0b, 0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25,
-
1936  0x04, 0x07, 0x03, 0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16,
-
1937  0x57, 0xa7, 0x43, 0x43, 0x01, 0x25, 0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12,
-
1938  0x19, 0x1a, 0x45, 0x09, 0x04, 0x08, 0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26,
-
1939  0x3b, 0x28, 0xf4, 0x00, 0x00, 0x01, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc,
-
1940  0x01, 0xd7, 0x00, 0x3b, 0x00, 0x1a, 0x40, 0x0e, 0x11, 0x37, 0x1a, 0x2f,
-
1941  0x04, 0x3b, 0x2c, 0x1e, 0x07, 0x72, 0x0d, 0x3b, 0x0b, 0x72, 0x00, 0x2b,
-
1942  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
-
1943  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
-
1944  0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
-
1945  0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1946  0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15,
-
1947  0x14, 0x06, 0x06, 0x23, 0xfe, 0x28, 0x48, 0x3e, 0x1b, 0x2b, 0x06, 0x06,
-
1948  0x03, 0x05, 0x0b, 0x17, 0x3c, 0x2e, 0x22, 0x2f, 0x19, 0x0c, 0x1a, 0x2c,
-
1949  0x1f, 0x33, 0x4d, 0x2a, 0x29, 0x4d, 0x37, 0x1f, 0x34, 0x2d, 0x27, 0x11,
-
1950  0x2e, 0x07, 0x05, 0x01, 0x07, 0x0c, 0x16, 0x37, 0x1b, 0x26, 0x37, 0x16,
-
1951  0x36, 0x31, 0x38, 0x46, 0x20, 0x2a, 0x55, 0x3f, 0x0a, 0x0f, 0x21, 0x18,
-
1952  0x4c, 0x09, 0x04, 0x08, 0x11, 0x0c, 0x15, 0x1a, 0x11, 0x1d, 0x14, 0x0e,
-
1953  0x15, 0x12, 0x13, 0x09, 0x0f, 0x27, 0x36, 0x23, 0x25, 0x36, 0x1f, 0x09,
-
1954  0x12, 0x1b, 0x12, 0x3b, 0x08, 0x05, 0x08, 0x0f, 0x0b, 0x11, 0x12, 0x1a,
-
1955  0x1b, 0x0f, 0x1a, 0x1a, 0x0d, 0x11, 0x26, 0x32, 0x22, 0x26, 0x43, 0x27,
-
1956  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xb1, 0x06, 0x26,
-
1957  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x00, 0x00, 0x00, 0x0b,
-
1958  0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1959  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x03, 0x36, 0x06, 0x26,
-
1960  0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7d, 0x00, 0x00, 0x01, 0x07,
-
1961  0x03, 0x7b, 0x00, 0x19, 0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x40,
-
1962  0x3e, 0x01, 0x01, 0x17, 0x56, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56,
-
1963  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
-
1964  0x01, 0xbc, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06,
-
1965  0x03, 0x80, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x41, 0x1e, 0x01, 0x01,
-
1966  0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
-
1967  0x01, 0xbc, 0x03, 0x28, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26,
-
1968  0x03, 0x80, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7b, 0x00, 0x01, 0x00, 0x91,
-
1969  0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x3c, 0x01, 0x00, 0x0c, 0x56, 0x01,
-
1970  0x41, 0x1e, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1971  0xff, 0xff, 0x00, 0x35, 0xff, 0x38, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
-
1972  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x00, 0x00, 0x00, 0x0b,
-
1973  0xb6, 0x01, 0x4b, 0x3b, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1974  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xae, 0x06, 0x26,
-
1975  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x00, 0x00, 0x00, 0x0b,
-
1976  0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1977  0xff, 0xff, 0x00, 0x35, 0xfe, 0xe6, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
-
1978  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e,
-
1979  0xb4, 0x01, 0x48, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00,
-
1980  0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x97,
-
1981  0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00,
-
1982  0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
-
1983  0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc, 0x01, 0xd7,
-
1984  0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x00, 0x00,
-
1985  0x00, 0x0e, 0xb4, 0x01, 0x42, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
-
1986  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc,
-
1987  0x02, 0x97, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a,
-
1988  0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x18, 0x40, 0x0c,
-
1989  0x02, 0x48, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x01, 0x42, 0x3b, 0x01, 0x01,
-
1990  0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01,
-
1991  0x00, 0x32, 0xff, 0xf5, 0x01, 0xd0, 0x02, 0x9e, 0x00, 0x3a, 0x00, 0x21,
-
1992  0x40, 0x11, 0x32, 0x13, 0x13, 0x12, 0x12, 0x00, 0x1f, 0x2a, 0x01, 0x72,
-
1993  0x25, 0x0a, 0x72, 0x07, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2b,
-
1994  0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26,
-
1995  0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
1996  0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23,
-
1997  0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32,
-
1998  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x06,
-
1999  0x06, 0x01, 0x1b, 0x1e, 0x32, 0x18, 0x26, 0x0d, 0x21, 0x14, 0x14, 0x25,
-
2000  0x1c, 0x10, 0x11, 0x23, 0x35, 0x25, 0x22, 0x28, 0x0e, 0x1c, 0x18, 0x12,
-
2001  0x0a, 0x0f, 0x1b, 0x25, 0x17, 0x22, 0x31, 0x19, 0x52, 0x2f, 0x52, 0x35,
-
2002  0x37, 0x56, 0x31, 0x12, 0x22, 0x1a, 0x1c, 0x2c, 0x1f, 0x11, 0x2d, 0x51,
-
2003  0x0b, 0x0f, 0x10, 0x42, 0x0c, 0x0c, 0x15, 0x24, 0x2f, 0x1c, 0x19, 0x2e,
-
2004  0x22, 0x13, 0x43, 0x09, 0x11, 0x19, 0x21, 0x14, 0x19, 0x28, 0x1f, 0x11,
-
2005  0x2b, 0x4d, 0x34, 0xfe, 0x52, 0x01, 0xaa, 0x53, 0x6c, 0x35, 0x31, 0x50,
-
2006  0x2f, 0x1c, 0x34, 0x29, 0x0d, 0x09, 0x21, 0x2f, 0x38, 0x21, 0x36, 0x58,
-
2007  0x33, 0x00, 0x00, 0x02, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
-
2008  0x00, 0x1a, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x1e, 0x00, 0x08, 0x01,
-
2009  0x08, 0x80, 0x1b, 0x06, 0x72, 0x13, 0x1a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
-
2010  0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x37,
-
2011  0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07, 0x06, 0x16,
-
2012  0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03, 0x21, 0x15,
-
2013  0x21, 0x01, 0x2b, 0x2b, 0x39, 0x21, 0x0b, 0x02, 0x0c, 0x59, 0x0a, 0x01,
-
2014  0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e, 0x23, 0x1b, 0x21, 0x33,
-
2015  0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53, 0xfe, 0xad, 0x08, 0x1d,
-
2016  0x3d, 0x60, 0x44, 0x01, 0x48, 0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a,
-
2017  0x0e, 0xa2, 0x48, 0x4f, 0x1e, 0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4,
-
2018  0x45, 0x00, 0x00, 0x03, 0x00, 0x3a, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
-
2019  0x00, 0x03, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x21, 0x40, 0x11, 0x00, 0x01,
-
2020  0x01, 0x22, 0x22, 0x00, 0x0c, 0x01, 0x0c, 0x80, 0x1f, 0x06, 0x72, 0x17,
-
2021  0x1e, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x11,
-
2022  0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x07, 0x22, 0x2e,
-
2023  0x02, 0x37, 0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07,
-
2024  0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03,
-
2025  0x21, 0x15, 0x21, 0x3a, 0x01, 0x53, 0x62, 0x2b, 0x39, 0x21, 0x0b, 0x02,
-
2026  0x0c, 0x59, 0x0a, 0x01, 0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e,
-
2027  0x23, 0x1b, 0x21, 0x33, 0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53,
-
2028  0xfe, 0xad, 0xd7, 0x44, 0x44, 0xdf, 0x1d, 0x3d, 0x60, 0x44, 0x01, 0x48,
-
2029  0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a, 0x0e, 0xa2, 0x48, 0x4f, 0x1e,
-
2030  0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4, 0x45, 0xff, 0xff, 0x00, 0x42,
-
2031  0xff, 0xf8, 0x01, 0xde, 0x02, 0xc6, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00,
-
2032  0x01, 0x07, 0x03, 0x6f, 0x00, 0xae, 0x00, 0x23, 0x00, 0x0e, 0xb4, 0x02,
-
2033  0x1f, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
2034  0xff, 0xff, 0x00, 0x42, 0xff, 0x38, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
-
2035  0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xf3, 0x00, 0x00, 0x0b,
-
2036  0xb6, 0x02, 0x2e, 0x1a, 0x01, 0x00, 0x07, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
2037  0xff, 0xff, 0x00, 0x42, 0xfe, 0xe6, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
-
2038  0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x15, 0x00, 0x00, 0x0e,
-
2039  0xb4, 0x02, 0x2b, 0x1a, 0x01, 0x01, 0xb8, 0xff, 0xe7, 0xb0, 0x56, 0x00,
-
2040  0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x03, 0x1a,
-
2041  0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xf1, 0x7d,
-
2042  0x00, 0x0d, 0xb7, 0x03, 0x02, 0x1f, 0x08, 0x01, 0x01, 0x6a, 0x56, 0x00,
-
2043  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xbf,
-
2044  0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
2045  0x11, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x25, 0x1a, 0x01, 0x01, 0xb8, 0xff,
-
2046  0xdb, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65,
-
2047  0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06,
-
2048  0x03, 0x90, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x20, 0x1a, 0x01, 0x00,
-
2049  0xb8, 0xff, 0xa4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3b,
-
2050  0xff, 0xf5, 0x01, 0xbe, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x19, 0x40, 0x0d,
-
2051  0x1a, 0x0a, 0x72, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b,
-
2052  0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x2b, 0x30, 0x31, 0x57,
-
2053  0x22, 0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32,
-
2054  0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
-
2055  0x35, 0x0e, 0x03, 0xda, 0x1b, 0x31, 0x27, 0x1d, 0x0f, 0x01, 0x54, 0x0e,
-
2056  0x1a, 0x23, 0x13, 0x17, 0x29, 0x1f, 0x12, 0x55, 0x03, 0x07, 0x51, 0x05,
-
2057  0x04, 0x01, 0x0b, 0x1d, 0x24, 0x27, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c,
-
2058  0x01, 0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25,
-
2059  0x01, 0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13,
-
2060  0x1d, 0x14, 0x0a, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2061  0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
2062  0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x14, 0x01, 0x01, 0x32, 0x56,
-
2063  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2064  0x02, 0x93, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
-
2065  0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x51, 0x56,
-
2066  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2067  0x02, 0xad, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f,
-
2068  0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x36, 0x56,
-
2069  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2070  0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86,
-
2071  0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01, 0x01, 0x32,
-
2072  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5,
-
2073  0x01, 0xbe, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06,
-
2074  0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01,
-
2075  0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b,
-
2076  0xff, 0x65, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00,
-
2077  0x01, 0x06, 0x03, 0x8a, 0xf4, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x29, 0x00,
-
2078  0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
2079  0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7,
-
2080  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
2081  0x23, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2082  0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xa7,
-
2083  0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x01,
-
2084  0x2a, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2085  0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26, 0x01, 0xd4,
-
2086  0x00, 0x00, 0x01, 0x06, 0x03, 0x89, 0xf4, 0xff, 0x00, 0x0e, 0xb4, 0x01,
-
2087  0x27, 0x07, 0x01, 0x01, 0xb8, 0xff, 0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
2088  0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1, 0x06, 0x26,
-
2089  0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xdf, 0x00, 0x00, 0x0b,
-
2090  0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
2091  0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26,
-
2092  0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0xe5, 0x00, 0x00, 0x0e,
-
2093  0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
-
2094  0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1,
-
2095  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xe3, 0x00,
-
2096  0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
-
2097  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xc8,
-
2098  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0xfb, 0xff,
-
2099  0x00, 0x0b, 0xb6, 0x02, 0x33, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
-
2100  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xad,
-
2101  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb4, 0xdc, 0x00,
-
2102  0x00, 0x0b, 0xb6, 0x02, 0x30, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b,
-
2103  0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc0,
-
2104  0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00,
-
2105  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x41, 0x56, 0x00,
-
2106  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2107  0x02, 0x89, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
-
2108  0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x47, 0x56,
-
2109  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2110  0x02, 0x73, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
-
2111  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x6c, 0x56,
-
2112  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2113  0x03, 0x35, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
-
2114  0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff, 0x00, 0x98, 0x00, 0x17,
-
2115  0x40, 0x0f, 0x03, 0x02, 0x27, 0x24, 0x01, 0x01, 0x61, 0x56, 0x01, 0x23,
-
2116  0x07, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00,
-
2117  0xff, 0xff, 0x00, 0x3b, 0xff, 0x19, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26,
-
2118  0x01, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x8e, 0x00, 0x86, 0x00, 0x00,
-
2119  0x00, 0x0b, 0xb6, 0x01, 0x2c, 0x1a, 0x00, 0x00, 0x11, 0x56, 0x00, 0x2b,
-
2120  0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xbb,
-
2121  0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x82, 0xfa, 0x00,
-
2122  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x3c, 0x56, 0x00,
-
2123  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2124  0x02, 0xac, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
2125  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x75, 0x56,
-
2126  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2127  0x03, 0x65, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
-
2128  0xf6, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0xb4, 0x00, 0x15,
-
2129  0x40, 0x0e, 0x02, 0x3b, 0x33, 0x01, 0x00, 0x03, 0x56, 0x01, 0x27, 0x14,
-
2130  0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2131  0x00, 0x24, 0x00, 0x00, 0x01, 0xca, 0x01, 0xcc, 0x00, 0x0d, 0x00, 0x15,
-
2132  0x40, 0x0a, 0x04, 0x03, 0x00, 0x09, 0x01, 0x06, 0x72, 0x00, 0x0a, 0x72,
-
2133  0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x30, 0x31, 0x73, 0x03, 0x33,
-
2134  0x13, 0x23, 0x37, 0x36, 0x36, 0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0xd7,
-
2135  0xb3, 0x58, 0x8a, 0x0f, 0x4b, 0x17, 0x1b, 0x05, 0x51, 0x07, 0x22, 0x17,
-
2136  0x70, 0x01, 0xcc, 0xfe, 0x97, 0xae, 0x35, 0x5d, 0x29, 0x2b, 0x63, 0x38,
-
2137  0xfe, 0xfa, 0x00, 0x01, 0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x01, 0xcc,
-
2138  0x00, 0x14, 0x00, 0x1b, 0x40, 0x0e, 0x03, 0x06, 0x13, 0x03, 0x00, 0x0d,
-
2139  0x04, 0x01, 0x06, 0x72, 0x12, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
2140  0xcc, 0x33, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33, 0x13, 0x13,
-
2141  0x33, 0x13, 0x3e, 0x03, 0x35, 0x35, 0x33, 0x0e, 0x02, 0x07, 0x23, 0x03,
-
2142  0x03, 0x68, 0x5a, 0x4a, 0x43, 0x4a, 0x31, 0x5b, 0x0c, 0x0f, 0x08, 0x02,
-
2143  0x4d, 0x09, 0x16, 0x1b, 0x10, 0x4e, 0x4e, 0x49, 0x01, 0x01, 0xcd, 0xfe,
-
2144  0xa1, 0x01, 0x31, 0xfe, 0xd0, 0x52, 0x6a, 0x46, 0x31, 0x18, 0x13, 0x4c,
-
2145  0x9c, 0x9a, 0x4b, 0x01, 0x1a, 0xfe, 0xe6, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2146  0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2147  0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x0c,
-
2148  0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2149  0xff, 0xff, 0x01, 0xe3, 0x02, 0xad, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2150  0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x01,
-
2151  0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2152  0xff, 0xff, 0x01, 0xe3, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2153  0x01, 0x06, 0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x15,
-
2154  0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
2155  0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf,
-
2156  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
2157  0x15, 0x0c, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2158  0x00, 0x29, 0x00, 0x00, 0x01, 0xcf, 0x01, 0xcc, 0x00, 0x0b, 0x00, 0x1a,
-
2159  0x40, 0x0e, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x02, 0x06, 0x72,
-
2160  0x09, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39,
-
2161  0x30, 0x31, 0x73, 0x37, 0x27, 0x33, 0x17, 0x37, 0x33, 0x07, 0x17, 0x23,
-
2162  0x27, 0x07, 0x29, 0xa1, 0x9f, 0x5d, 0x70, 0x6b, 0x58, 0x94, 0xa8, 0x60,
-
2163  0x77, 0x70, 0xe8, 0xe4, 0xa1, 0xa1, 0xe0, 0xec, 0xa8, 0xa8, 0x00, 0x02,
-
2164  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x00, 0x1c, 0x00, 0x20,
-
2165  0x00, 0x1a, 0x40, 0x0e, 0x19, 0x20, 0x10, 0x1f, 0x04, 0x1c, 0x15, 0x1d,
-
2166  0x06, 0x72, 0x0c, 0x1c, 0x0f, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
2167  0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16,
-
2168  0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x36, 0x36,
-
2169  0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0x06, 0x06, 0x23, 0x03, 0x33, 0x13,
-
2170  0x07, 0x7f, 0x21, 0x35, 0x15, 0x21, 0x06, 0x07, 0x02, 0x0a, 0x0d, 0x09,
-
2171  0x13, 0x0a, 0x19, 0x22, 0x1b, 0x0d, 0x5c, 0x0f, 0x19, 0x04, 0x53, 0x06,
-
2172  0x1f, 0x11, 0x72, 0x1a, 0x4c, 0x32, 0x56, 0x58, 0x90, 0x29, 0xaf, 0x15,
-
2173  0x14, 0x3a, 0x09, 0x04, 0x08, 0x0c, 0x09, 0x03, 0x03, 0x18, 0x34, 0x27,
-
2174  0x01, 0x12, 0x2d, 0x57, 0x2d, 0x2e, 0x60, 0x2e, 0xfe, 0xc0, 0x46, 0x39,
-
2175  0x02, 0x7b, 0xfe, 0x8b, 0x63, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2176  0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2177  0x03, 0x7d, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14, 0x01, 0x01,
-
2178  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2179  0x01, 0xbf, 0x02, 0xad, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2180  0x03, 0x7f, 0x05, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x1d, 0x01, 0x01,
-
2181  0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2182  0x01, 0xbf, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2183  0x03, 0x7a, 0x03, 0x00, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x21, 0x1d, 0x01,
-
2184  0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
-
2185  0xff, 0x51, 0x01, 0xbf, 0x02, 0x97, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
-
2186  0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14,
-
2187  0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
-
2188  0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
-
2189  0x01, 0x07, 0x03, 0x8a, 0x00, 0x87, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2190  0x21, 0x1c, 0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2191  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5,
-
2192  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2193  0x21, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2194  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xc5,
-
2195  0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x11, 0xff, 0x00, 0x0b, 0xb6, 0x02,
-
2196  0x28, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2197  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x01, 0xc5,
-
2198  0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x05, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2199  0x21, 0x1d, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2200  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xac, 0x06, 0x26, 0x01, 0xc5,
-
2201  0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2202  0x25, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2203  0x00, 0x2f, 0x00, 0x00, 0x01, 0xc5, 0x01, 0xcc, 0x00, 0x0e, 0x00, 0x19,
-
2204  0x40, 0x0c, 0x00, 0x06, 0x06, 0x0e, 0x0a, 0x72, 0x05, 0x02, 0x02, 0x03,
-
2205  0x06, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30,
-
2206  0x31, 0x77, 0x01, 0x23, 0x35, 0x21, 0x15, 0x01, 0x33, 0x32, 0x36, 0x37,
-
2207  0x33, 0x15, 0x15, 0x21, 0x2f, 0x01, 0x12, 0xfe, 0x01, 0x6b, 0xfe, 0xf2,
-
2208  0xf9, 0x11, 0x0e, 0x06, 0x07, 0xfe, 0x6a, 0x37, 0x01, 0x4c, 0x49, 0x39,
-
2209  0xfe, 0xb5, 0x04, 0x06, 0x0a, 0x48, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2210  0x01, 0xc5, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2211  0x03, 0x7d, 0xf2, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
2212  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2213  0x01, 0xc5, 0x02, 0xb5, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2214  0x03, 0x80, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x14, 0x03, 0x01, 0x01,
-
2215  0x39, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2216  0x01, 0xc5, 0x02, 0x97, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2217  0x03, 0x94, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
2218  0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0xff, 0x65,
-
2219  0x01, 0xc5, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2220  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
-
2221  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x23,
-
2222  0xff, 0xf5, 0x01, 0x8e, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x18, 0x40, 0x0c,
-
2223  0x1a, 0x0a, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b, 0x72,
-
2224  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x3f, 0x30, 0x31, 0x57, 0x22,
-
2225  0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e,
-
2226  0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
-
2227  0x0e, 0x03, 0xb8, 0x1a, 0x2e, 0x25, 0x1a, 0x0e, 0x01, 0x4e, 0x0e, 0x18,
-
2228  0x20, 0x12, 0x16, 0x27, 0x1e, 0x11, 0x4e, 0x03, 0x07, 0x4c, 0x04, 0x04,
-
2229  0x01, 0x0a, 0x1c, 0x21, 0x26, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c, 0x01,
-
2230  0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25, 0x01,
-
2231  0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13, 0x1d,
-
2232  0x14, 0x0a, 0x00, 0x02, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
-
2233  0x00, 0x33, 0x00, 0x37, 0x00, 0x2c, 0x40, 0x14, 0x37, 0x34, 0x34, 0x00,
-
2234  0x2f, 0x18, 0x18, 0x00, 0x10, 0x07, 0x07, 0x00, 0x2e, 0x2e, 0x00, 0x00,
-
2235  0x21, 0x28, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2f, 0x11,
-
2236  0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x7d, 0x2f, 0x33,
-
2237  0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2238  0x16, 0x17, 0x17, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
2239  0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
2240  0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x35,
-
2241  0x0e, 0x03, 0x07, 0x21, 0x15, 0x21, 0xd8, 0x39, 0x3e, 0x2c, 0x52, 0x37,
-
2242  0x09, 0x15, 0x17, 0x0c, 0x02, 0x09, 0x18, 0x17, 0x0a, 0x25, 0x30, 0x19,
-
2243  0x10, 0x1a, 0x11, 0x18, 0x25, 0x19, 0x0d, 0x13, 0x26, 0x1e, 0x17, 0x2b,
-
2244  0x14, 0x26, 0x1b, 0x42, 0x23, 0x2d, 0x44, 0x27, 0x4b, 0x0a, 0x18, 0x1b,
-
2245  0x1d, 0x9d, 0x01, 0x62, 0xfe, 0x9e, 0x01, 0x02, 0x38, 0x2c, 0x27, 0x3a,
-
2246  0x1f, 0x01, 0x01, 0x02, 0x35, 0x02, 0x01, 0x01, 0x10, 0x1e, 0x15, 0x12,
-
2247  0x17, 0x0a, 0x11, 0x21, 0x33, 0x23, 0x2f, 0x35, 0x15, 0x10, 0x15, 0x2d,
-
2248  0x1b, 0x17, 0x1d, 0x47, 0x41, 0xc6, 0x2d, 0x10, 0x15, 0x0c, 0x05, 0x2c,
-
2249  0x40, 0x00, 0x00, 0x03, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
-
2250  0x00, 0x0f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x18, 0x40, 0x0a, 0x23, 0x20,
-
2251  0x20, 0x10, 0x00, 0x00, 0x18, 0x08, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32,
-
2252  0x2f, 0x33, 0x33, 0x7d, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26,
-
2253  0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2254  0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
-
2255  0x15, 0x14, 0x16, 0x16, 0x07, 0x21, 0x15, 0x21, 0xfa, 0x2e, 0x48, 0x2a,
-
2256  0x2a, 0x49, 0x2d, 0x2e, 0x48, 0x2a, 0x2a, 0x48, 0x2e, 0x1a, 0x26, 0x16,
-
2257  0x16, 0x27, 0x19, 0x19, 0x27, 0x16, 0x16, 0x27, 0x97, 0x01, 0x62, 0xfe,
-
2258  0x9e, 0x01, 0x04, 0x2d, 0x54, 0x38, 0x37, 0x54, 0x2e, 0x2e, 0x54, 0x37,
-
2259  0x38, 0x53, 0x2e, 0x3b, 0x20, 0x39, 0x26, 0x26, 0x38, 0x1f, 0x1f, 0x38,
-
2260  0x26, 0x26, 0x39, 0x20, 0x69, 0x40, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00,
-
2261  0x01, 0xb6, 0x01, 0xd7, 0x06, 0x06, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x02,
-
2262  0x00, 0x32, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x14,
-
2263  0x00, 0x22, 0x40, 0x10, 0x12, 0x0d, 0x0d, 0x0b, 0x0f, 0x0f, 0x10, 0x02,
-
2264  0x72, 0x14, 0x0a, 0x00, 0x01, 0x01, 0x09, 0x08, 0x00, 0x3f, 0x33, 0x11,
-
2265  0x33, 0x33, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
2266  0x77, 0x27, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x35, 0x01,
-
2267  0x33, 0x17, 0x17, 0x21, 0x35, 0x21, 0x15, 0x01, 0x23, 0x60, 0x1b, 0x01,
-
2268  0x5d, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x63, 0x01, 0x08, 0x38, 0x31, 0x1e,
-
2269  0xfe, 0x73, 0x01, 0x9c, 0xfe, 0xff, 0x37, 0x1f, 0x16, 0x04, 0x05, 0x09,
-
2270  0x35, 0x37, 0x02, 0x29, 0x11, 0x16, 0x36, 0x37, 0xfd, 0xe1, 0x00, 0x03,
-
2271  0x00, 0x32, 0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x03, 0x00, 0x13,
-
2272  0x00, 0x23, 0x00, 0x1d, 0x40, 0x0e, 0x02, 0x01, 0x01, 0x1c, 0x0c, 0x05,
-
2273  0x72, 0x00, 0x03, 0x03, 0x14, 0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32,
-
2274  0x11, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x01, 0x17,
-
2275  0x01, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2276  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
2277  0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x6b, 0x01, 0x0b,
-
2278  0x16, 0xfe, 0xf5, 0x79, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59,
-
2279  0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34,
-
2280  0x1c, 0x1c, 0x34, 0xa5, 0x01, 0x4d, 0x38, 0xfe, 0xb6, 0x7b, 0x4a, 0x8f,
-
2281  0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a,
-
2282  0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00,
-
2283  0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x01, 0x33, 0x02, 0x70, 0x00, 0x06,
-
2284  0x00, 0x17, 0x40, 0x0b, 0x06, 0x0c, 0x72, 0x02, 0x03, 0x03, 0x01, 0x01,
-
2285  0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x30,
-
2286  0x31, 0x73, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xdf, 0x7a, 0x13, 0xa4,
-
2287  0x3d, 0x02, 0x0d, 0x26, 0x33, 0x56, 0xfd, 0x90, 0x00, 0x01, 0x00, 0x35,
-
2288  0x00, 0x00, 0x01, 0xba, 0x02, 0x75, 0x00, 0x2b, 0x00, 0x15, 0x40, 0x0a,
-
2289  0x00, 0x23, 0x23, 0x2b, 0x0c, 0x72, 0x0b, 0x19, 0x05, 0x72, 0x00, 0x2b,
-
2290  0x32, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x3e, 0x04, 0x35, 0x34,
-
2291  0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
-
2292  0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x07,
-
2293  0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x44, 0x37, 0x5a, 0x46,
-
2294  0x30, 0x19, 0x0f, 0x1b, 0x25, 0x15, 0x17, 0x2a, 0x26, 0x10, 0x09, 0x04,
-
2295  0x01, 0x05, 0x07, 0x3c, 0x15, 0x3d, 0x4d, 0x2b, 0x36, 0x52, 0x30, 0x1b,
-
2296  0x31, 0x42, 0x4e, 0x2a, 0xdc, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x8a, 0x41,
-
2297  0x38, 0x59, 0x4b, 0x42, 0x41, 0x23, 0x1d, 0x28, 0x19, 0x0c, 0x0d, 0x19,
-
2298  0x14, 0x0e, 0x0f, 0x08, 0x05, 0x05, 0x2e, 0x27, 0x36, 0x1c, 0x2c, 0x50,
-
2299  0x37, 0x28, 0x4b, 0x47, 0x48, 0x4d, 0x2c, 0x04, 0x06, 0x0a, 0x47, 0x00,
-
2300  0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xb0, 0x02, 0x75, 0x00, 0x38,
-
2301  0x00, 0x1d, 0x40, 0x0e, 0x30, 0x16, 0x16, 0x15, 0x15, 0x28, 0x0c, 0x38,
-
2302  0x0d, 0x72, 0x20, 0x28, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11,
-
2303  0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37,
-
2304  0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
-
2305  0x34, 0x2e, 0x02, 0x07, 0x35, 0x16, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
2306  0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
2307  0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23,
-
2308  0xee, 0x33, 0x5e, 0x20, 0x31, 0x07, 0x06, 0x01, 0x06, 0x0b, 0x12, 0x2d,
-
2309  0x1f, 0x25, 0x31, 0x19, 0x17, 0x2d, 0x3f, 0x28, 0x2f, 0x3c, 0x21, 0x0d,
-
2310  0x0d, 0x16, 0x21, 0x13, 0x14, 0x27, 0x25, 0x11, 0x31, 0x22, 0x56, 0x2a,
-
2311  0x35, 0x4c, 0x2a, 0x17, 0x2c, 0x1f, 0x21, 0x36, 0x1f, 0x2d, 0x56, 0x3f,
-
2312  0x0b, 0x24, 0x24, 0x40, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0f, 0x13, 0x1d,
-
2313  0x35, 0x22, 0x22, 0x30, 0x1b, 0x0a, 0x04, 0x43, 0x01, 0x12, 0x20, 0x29,
-
2314  0x17, 0x14, 0x20, 0x17, 0x0d, 0x0a, 0x14, 0x11, 0x32, 0x25, 0x1f, 0x28,
-
2315  0x47, 0x2e, 0x21, 0x39, 0x29, 0x0b, 0x0a, 0x2a, 0x3f, 0x2b, 0x32, 0x53,
-
2316  0x32, 0x00, 0x00, 0x02, 0x00, 0x2d, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70,
-
2317  0x00, 0x0a, 0x00, 0x0d, 0x00, 0x21, 0x40, 0x10, 0x03, 0x0b, 0x0b, 0x06,
-
2318  0x06, 0x02, 0x0d, 0x09, 0x09, 0x04, 0x0a, 0x0c, 0x72, 0x04, 0x04, 0x72,
-
2319  0x00, 0x2b, 0x2b, 0x12, 0x39, 0x2f, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11,
-
2320  0x33, 0x30, 0x31, 0x61, 0x35, 0x21, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15,
-
2321  0x23, 0x15, 0x25, 0x33, 0x11, 0x01, 0x33, 0xfe, 0xfa, 0x01, 0x18, 0x44,
-
2322  0x50, 0x50, 0xff, 0x00, 0xab, 0x97, 0x3b, 0x01, 0x9e, 0xfe, 0x6c, 0x46,
-
2323  0x96, 0xdc, 0x01, 0x04, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xc2,
-
2324  0x02, 0x6f, 0x00, 0x2d, 0x00, 0x1d, 0x40, 0x0e, 0x20, 0x16, 0x16, 0x24,
-
2325  0x24, 0x1c, 0x0c, 0x2d, 0x0d, 0x72, 0x1f, 0x1c, 0x04, 0x72, 0x00, 0x2b,
-
2326  0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
-
2327  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33,
-
2328  0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07,
-
2329  0x27, 0x13, 0x21, 0x15, 0x23, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
2330  0x15, 0x14, 0x06, 0x06, 0x23, 0xfa, 0x3c, 0x63, 0x1e, 0x3f, 0x08, 0x05,
-
2331  0x01, 0x07, 0x0a, 0x13, 0x2f, 0x21, 0x18, 0x2a, 0x1f, 0x12, 0x12, 0x20,
-
2332  0x2c, 0x1a, 0x15, 0x29, 0x23, 0x0f, 0x34, 0x15, 0x01, 0x42, 0xfb, 0x0a,
-
2333  0x10, 0x20, 0x22, 0x10, 0x29, 0x44, 0x33, 0x1b, 0x35, 0x59, 0x3a, 0x0b,
-
2334  0x32, 0x2f, 0x31, 0x06, 0x05, 0x08, 0x0e, 0x0d, 0x15, 0x14, 0x14, 0x24,
-
2335  0x34, 0x1f, 0x20, 0x34, 0x24, 0x14, 0x0d, 0x19, 0x12, 0x12, 0x01, 0x42,
-
2336  0x48, 0xa7, 0x08, 0x0b, 0x05, 0x1d, 0x36, 0x4d, 0x31, 0x41, 0x5e, 0x33,
-
2337  0x00, 0x02, 0x00, 0x3e, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x77, 0x00, 0x28,
-
2338  0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0e, 0x1b, 0x33, 0x33, 0x1f, 0x1f, 0x08,
-
2339  0x3d, 0x28, 0x0d, 0x72, 0x15, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
2340  0x32, 0x12, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
-
2341  0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
2342  0x26, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x3e, 0x02,
-
2343  0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x37, 0x32, 0x3e,
-
2344  0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x06, 0x1e,
-
2345  0x02, 0x33, 0x01, 0x05, 0x40, 0x59, 0x2e, 0x39, 0x65, 0x42, 0x28, 0x4a,
-
2346  0x1e, 0x32, 0x06, 0x06, 0x01, 0x08, 0x0d, 0x08, 0x11, 0x13, 0x0b, 0x10,
-
2347  0x26, 0x25, 0x21, 0x15, 0x01, 0x0d, 0x29, 0x30, 0x18, 0x24, 0x3f, 0x2f,
-
2348  0x1b, 0x31, 0x52, 0x34, 0x02, 0x15, 0x24, 0x1c, 0x10, 0x12, 0x1e, 0x24,
-
2349  0x12, 0x11, 0x21, 0x1d, 0x19, 0x0a, 0x03, 0x0d, 0x1e, 0x2e, 0x1d, 0x0a,
-
2350  0x48, 0x85, 0x5a, 0x6f, 0x9a, 0x51, 0x1c, 0x1e, 0x39, 0x08, 0x06, 0x08,
-
2351  0x0d, 0x0a, 0x05, 0x06, 0x02, 0x0a, 0x1c, 0x31, 0x4f, 0x38, 0x16, 0x1e,
-
2352  0x11, 0x1c, 0x35, 0x4c, 0x2f, 0x3e, 0x60, 0x35, 0x47, 0x13, 0x23, 0x33,
-
2353  0x22, 0x23, 0x33, 0x20, 0x10, 0x0c, 0x15, 0x1c, 0x11, 0x24, 0x45, 0x38,
-
2354  0x22, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xb4, 0x02, 0x6f,
-
2355  0x00, 0x0d, 0x00, 0x13, 0x40, 0x09, 0x08, 0x05, 0x05, 0x06, 0x04, 0x72,
-
2356  0x00, 0x0c, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
-
2357  0x3e, 0x02, 0x37, 0x21, 0x35, 0x21, 0x15, 0x0e, 0x03, 0x07, 0x91, 0x1d,
-
2358  0x3d, 0x41, 0x23, 0xfe, 0xfb, 0x01, 0x6a, 0x1c, 0x37, 0x32, 0x2d, 0x16,
-
2359  0x5e, 0xb6, 0xb4, 0x5b, 0x4c, 0x2f, 0x46, 0x8e, 0x90, 0x91, 0x4b, 0x00,
-
2360  0x00, 0x03, 0x00, 0x36, 0xff, 0xf6, 0x01, 0xbf, 0x02, 0x78, 0x00, 0x21,
-
2361  0x00, 0x33, 0x00, 0x45, 0x00, 0x1a, 0x40, 0x0e, 0x2b, 0x08, 0x19, 0x34,
-
2362  0x04, 0x00, 0x3d, 0x10, 0x05, 0x72, 0x22, 0x00, 0x0d, 0x72, 0x00, 0x2b,
-
2363  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
-
2364  0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33,
-
2365  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x1e, 0x03, 0x15, 0x14,
-
2366  0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x0e,
-
2367  0x03, 0x15, 0x14, 0x16, 0x16, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26,
-
2368  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0xfa, 0x3c, 0x58, 0x30,
-
2369  0x1f, 0x37, 0x25, 0x1b, 0x2a, 0x18, 0x28, 0x4c, 0x37, 0x3a, 0x4b, 0x26,
-
2370  0x0e, 0x18, 0x23, 0x16, 0x1b, 0x2a, 0x1f, 0x10, 0x31, 0x58, 0x3a, 0x24,
-
2371  0x31, 0x19, 0x12, 0x21, 0x2f, 0x1d, 0x14, 0x24, 0x19, 0x0e, 0x1a, 0x33,
-
2372  0x33, 0x11, 0x1c, 0x14, 0x0c, 0x15, 0x29, 0x1e, 0x1e, 0x27, 0x14, 0x10,
-
2373  0x1d, 0x26, 0x0a, 0x2d, 0x4c, 0x2f, 0x25, 0x42, 0x35, 0x11, 0x10, 0x2c,
-
2374  0x37, 0x1e, 0x2b, 0x46, 0x2b, 0x29, 0x44, 0x29, 0x17, 0x2c, 0x27, 0x20,
-
2375  0x0c, 0x0d, 0x24, 0x2c, 0x32, 0x1b, 0x32, 0x4d, 0x2d, 0x49, 0x1b, 0x2e,
-
2376  0x1c, 0x16, 0x29, 0x22, 0x1d, 0x08, 0x09, 0x1b, 0x23, 0x26, 0x16, 0x1d,
-
2377  0x2f, 0x1c, 0x01, 0x29, 0x0a, 0x1b, 0x1e, 0x22, 0x11, 0x16, 0x26, 0x18,
-
2378  0x17, 0x25, 0x16, 0x15, 0x23, 0x1c, 0x19, 0x00, 0x00, 0x01, 0x00, 0x3d,
-
2379  0xff, 0xf6, 0x01, 0xba, 0x02, 0x75, 0x00, 0x3a, 0x00, 0x19, 0x40, 0x0c,
-
2380  0x1f, 0x28, 0x28, 0x32, 0x0c, 0x3a, 0x0d, 0x72, 0x15, 0x32, 0x05, 0x72,
-
2381  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57,
-
2382  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
-
2383  0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
2384  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x23,
-
2385  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
2386  0x14, 0x06, 0x06, 0x07, 0xe3, 0x2f, 0x4e, 0x20, 0x30, 0x07, 0x06, 0x01,
-
2387  0x08, 0x0c, 0x0f, 0x21, 0x15, 0x25, 0x35, 0x22, 0x12, 0x18, 0x33, 0x27,
-
2388  0x18, 0x28, 0x1d, 0x0f, 0x11, 0x1e, 0x27, 0x16, 0x20, 0x2e, 0x27, 0x10,
-
2389  0x07, 0x11, 0x2a, 0x35, 0x20, 0x27, 0x44, 0x32, 0x1b, 0x1d, 0x33, 0x44,
-
2390  0x27, 0x3d, 0x57, 0x2e, 0x33, 0x60, 0x44, 0x0a, 0x1b, 0x1d, 0x3d, 0x08,
-
2391  0x05, 0x08, 0x0d, 0x0b, 0x09, 0x09, 0x2a, 0x48, 0x5c, 0x32, 0x54, 0x6b,
-
2392  0x33, 0x12, 0x24, 0x32, 0x20, 0x1c, 0x2d, 0x1f, 0x10, 0x0e, 0x22, 0x1c,
-
2393  0x50, 0x14, 0x1e, 0x11, 0x1b, 0x33, 0x47, 0x2b, 0x2c, 0x4b, 0x38, 0x1f,
-
2394  0x44, 0x7a, 0x53, 0x7a, 0xa2, 0x51, 0x01, 0x00, 0x00, 0x03, 0x00, 0x32,
-
2395  0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x2b,
-
2396  0x00, 0x19, 0x40, 0x0c, 0x06, 0x00, 0x00, 0x0c, 0x24, 0x14, 0x05, 0x72,
-
2397  0x1c, 0x0c, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
2398  0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
-
2399  0x15, 0x14, 0x06, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
2400  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
2401  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
-
2402  0x1a, 0x24, 0x26, 0x18, 0x19, 0x26, 0x25, 0x1a, 0x3f, 0x59, 0x30, 0x30,
-
2403  0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c,
-
2404  0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0xfe, 0x23, 0x19, 0x19, 0x23,
-
2405  0x23, 0x19, 0x19, 0x23, 0xfe, 0xf7, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e,
-
2406  0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f,
-
2407  0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00, 0x00, 0x02, 0x00, 0x32,
-
2408  0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x10,
-
2409  0xb7, 0x18, 0x08, 0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32,
-
2410  0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
2411  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
-
2412  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
2413  0xfa, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59,
-
2414  0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34,
-
2415  0x0b, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f,
-
2416  0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50,
-
2417  0x70, 0x3a, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
-
2418  0x06, 0x07, 0x02, 0x03, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x85,
-
2419  0xff, 0xef, 0x01, 0x24, 0x01, 0x72, 0x06, 0x07, 0x02, 0x04, 0x00, 0x00,
-
2420  0xfe, 0xf9, 0xff, 0xff, 0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e,
-
2421  0x06, 0x07, 0x02, 0x05, 0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74,
-
2422  0xff, 0xe6, 0x01, 0x79, 0x01, 0x74, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00,
-
2423  0xfe, 0xf7, 0xff, 0xff, 0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b,
-
2424  0x06, 0x07, 0x02, 0x07, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77,
-
2425  0xff, 0xf1, 0x01, 0x86, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x08, 0x00, 0x00,
-
2426  0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf2, 0x01, 0x81, 0x01, 0x80,
-
2427  0x06, 0x07, 0x02, 0x09, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x7f,
-
2428  0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x0a, 0x00, 0x00,
-
2429  0xff, 0x02, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83, 0x01, 0x80,
-
2430  0x06, 0x07, 0x02, 0x0b, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x75,
-
2431  0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x07, 0x02, 0x0c, 0x00, 0x00,
-
2432  0xff, 0x02, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
-
2433  0x06, 0x06, 0x01, 0xe5, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0xff, 0xef,
-
2434  0x01, 0x24, 0x01, 0x72, 0x06, 0x06, 0x01, 0xe6, 0x00, 0x00, 0xff, 0xff,
-
2435  0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e, 0x06, 0x07, 0x02, 0x05,
-
2436  0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74, 0xff, 0xd7, 0x01, 0x79,
-
2437  0x01, 0x65, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00, 0xfe, 0xe8, 0xff, 0xff,
-
2438  0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b, 0x06, 0x07, 0x02, 0x07,
-
2439  0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf1, 0x01, 0x86,
-
2440  0x01, 0x7a, 0x06, 0x06, 0x01, 0xea, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
-
2441  0xff, 0xf2, 0x01, 0x81, 0x01, 0x80, 0x06, 0x06, 0x01, 0xeb, 0x00, 0x00,
-
2442  0xff, 0xff, 0x00, 0x7f, 0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x06,
-
2443  0x01, 0xec, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83,
-
2444  0x01, 0x80, 0x06, 0x06, 0x01, 0xed, 0x00, 0x00, 0xff, 0xff, 0x00, 0x75,
-
2445  0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x06, 0x01, 0xee, 0x00, 0x00,
-
2446  0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x06, 0x06,
-
2447  0x02, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24,
-
2448  0x02, 0x79, 0x06, 0x06, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x70,
-
2449  0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06, 0x02, 0x05, 0x00, 0x00,
-
2450  0xff, 0xff, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d, 0x06, 0x06,
-
2451  0x02, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93,
-
2452  0x02, 0x79, 0x06, 0x06, 0x02, 0x07, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
-
2453  0x00, 0xef, 0x01, 0x86, 0x02, 0x78, 0x06, 0x06, 0x02, 0x08, 0x00, 0x00,
-
2454  0xff, 0xff, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x06, 0x06,
-
2455  0x02, 0x09, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
-
2456  0x02, 0x78, 0x06, 0x06, 0x02, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72,
-
2457  0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x06, 0x06, 0x02, 0x0b, 0x00, 0x00,
-
2458  0xff, 0xff, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06,
-
2459  0x02, 0x0c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
-
2460  0x02, 0x7d, 0x00, 0x03, 0x00, 0x13, 0x00, 0x21, 0x00, 0x17, 0x40, 0x0c,
-
2461  0x03, 0x00, 0x02, 0x01, 0x04, 0x14, 0x04, 0x77, 0x1b, 0x0c, 0x05, 0x72,
-
2462  0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37, 0x17,
-
2463  0x07, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2464  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2465  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x98, 0xb6, 0x0e, 0xb6, 0x54,
-
2466  0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c,
-
2467  0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29, 0x01, 0x63, 0xc9,
-
2468  0x2a, 0xc7, 0x4c, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e,
-
2469  0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e,
-
2470  0x47, 0x4d, 0x00, 0x01, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24, 0x02, 0x79,
-
2471  0x00, 0x06, 0x00, 0x16, 0x40, 0x0a, 0x03, 0x02, 0x02, 0x01, 0x01, 0x00,
-
2472  0x77, 0x04, 0x04, 0x72, 0x00, 0x2b, 0xed, 0x33, 0x11, 0x33, 0x11, 0x33,
-
2473  0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xe4, 0x51, 0x0e,
-
2474  0x6f, 0x30, 0xf6, 0x01, 0x3d, 0x19, 0x28, 0x37, 0xfe, 0x7d, 0x00, 0x01,
-
2475  0x00, 0x70, 0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x00, 0x26, 0x00, 0x14,
-
2476  0x40, 0x09, 0x00, 0x1e, 0x1e, 0x26, 0x77, 0x09, 0x15, 0x05, 0x72, 0x00,
-
2477  0x2b, 0x32, 0xe4, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x3e, 0x03, 0x35,
-
2478  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
-
2479  0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07,
-
2480  0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x7b, 0x30, 0x49, 0x31,
-
2481  0x1a, 0x10, 0x1e, 0x14, 0x13, 0x23, 0x0e, 0x0a, 0x07, 0x01, 0x05, 0x08,
-
2482  0x2c, 0x17, 0x49, 0x2d, 0x24, 0x3b, 0x21, 0x1a, 0x2d, 0x3d, 0x24, 0x7d,
-
2483  0x11, 0x0e, 0x06, 0x08, 0xfe, 0xfc, 0x01, 0x24, 0x2c, 0x40, 0x33, 0x30,
-
2484  0x1a, 0x15, 0x1a, 0x0b, 0x0a, 0x0b, 0x0c, 0x0e, 0x08, 0x06, 0x06, 0x23,
-
2485  0x23, 0x27, 0x1b, 0x32, 0x23, 0x1e, 0x36, 0x35, 0x39, 0x21, 0x04, 0x06,
-
2486  0x0a, 0x34, 0x00, 0x01, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d,
-
2487  0x00, 0x32, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x14, 0x14, 0x13, 0x13, 0x24,
-
2488  0x32, 0x0c, 0x1d, 0x32, 0x77, 0x24, 0x05, 0x72, 0x00, 0x2b, 0xe4, 0x33,
-
2489  0x3f, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x77, 0x22, 0x26,
-
2490  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
-
2491  0x35, 0x34, 0x26, 0x26, 0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26,
-
2492  0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2493  0x14, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0xf1, 0x24,
-
2494  0x43, 0x16, 0x24, 0x06, 0x06, 0x01, 0x09, 0x0d, 0x0b, 0x19, 0x10, 0x24,
-
2495  0x26, 0x1c, 0x34, 0x25, 0x20, 0x28, 0x18, 0x09, 0x0f, 0x1a, 0x12, 0x15,
-
2496  0x27, 0x11, 0x26, 0x18, 0x3d, 0x1f, 0x36, 0x43, 0x23, 0x1d, 0x15, 0x22,
-
2497  0x16, 0x20, 0x3c, 0x2c, 0xef, 0x17, 0x17, 0x2d, 0x08, 0x05, 0x08, 0x0c,
-
2498  0x0b, 0x05, 0x07, 0x25, 0x1d, 0x1a, 0x1f, 0x0c, 0x04, 0x32, 0x09, 0x11,
-
2499  0x18, 0x0d, 0x10, 0x16, 0x0c, 0x0d, 0x10, 0x26, 0x18, 0x14, 0x37, 0x2b,
-
2500  0x20, 0x2e, 0x0a, 0x06, 0x19, 0x27, 0x1c, 0x20, 0x34, 0x1e, 0x00, 0x02,
-
2501  0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93, 0x02, 0x79, 0x00, 0x0a, 0x00, 0x0d,
-
2502  0x00, 0x1f, 0x40, 0x0e, 0x03, 0x06, 0x06, 0x0c, 0x0c, 0x09, 0x0d, 0x04,
-
2503  0x01, 0x01, 0x00, 0x77, 0x04, 0x05, 0x00, 0x3f, 0xed, 0x39, 0x2f, 0x12,
-
2504  0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23,
-
2505  0x35, 0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x01,
-
2506  0x1c, 0xb0, 0xbe, 0x31, 0x38, 0x38, 0xa9, 0x6b, 0xf6, 0x5c, 0x29, 0xfe,
-
2507  0xf4, 0x34, 0x5b, 0x8f, 0x90, 0x00, 0x00, 0x01, 0x00, 0x77, 0x00, 0xef,
-
2508  0x01, 0x86, 0x02, 0x78, 0x00, 0x2a, 0x00, 0x17, 0x40, 0x0a, 0x0c, 0x1e,
-
2509  0x14, 0x21, 0x21, 0x2a, 0x77, 0x1d, 0x1a, 0x05, 0x00, 0x3f, 0x33, 0xe4,
-
2510  0x39, 0x2f, 0x33, 0x33, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x27, 0x37,
-
2511  0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
-
2512  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x37, 0x33, 0x15,
-
2513  0x23, 0x07, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06,
-
2514  0x23, 0xfb, 0x2a, 0x46, 0x14, 0x2e, 0x07, 0x05, 0x01, 0x09, 0x0c, 0x0b,
-
2515  0x1b, 0x11, 0x14, 0x23, 0x15, 0x14, 0x24, 0x18, 0x0d, 0x1b, 0x18, 0x0a,
-
2516  0x27, 0x0e, 0xdf, 0xa9, 0x06, 0x0e, 0x23, 0x10, 0x1c, 0x2f, 0x22, 0x13,
-
2517  0x24, 0x3f, 0x28, 0xef, 0x1f, 0x1d, 0x25, 0x07, 0x07, 0x08, 0x0c, 0x0b,
-
2518  0x07, 0x07, 0x13, 0x23, 0x18, 0x19, 0x24, 0x13, 0x07, 0x0f, 0x0a, 0x0c,
-
2519  0xcb, 0x34, 0x5e, 0x07, 0x08, 0x11, 0x22, 0x30, 0x1e, 0x2a, 0x3b, 0x20,
-
2520  0x00, 0x02, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x00, 0x24,
-
2521  0x00, 0x36, 0x00, 0x16, 0x40, 0x0a, 0x2e, 0x1c, 0x1c, 0x36, 0x24, 0x77,
-
2522  0x13, 0x07, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33,
-
2523  0x30, 0x31, 0x65, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2524  0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
-
2525  0x02, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2526  0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
2527  0x06, 0x07, 0x06, 0x16, 0x16, 0x33, 0x01, 0x01, 0x43, 0x47, 0x27, 0x46,
-
2528  0x2e, 0x1c, 0x35, 0x15, 0x23, 0x07, 0x05, 0x01, 0x0c, 0x0e, 0x06, 0x0b,
-
2529  0x06, 0x0e, 0x20, 0x1d, 0x14, 0x03, 0x0a, 0x1b, 0x20, 0x10, 0x21, 0x36,
-
2530  0x20, 0x22, 0x39, 0x25, 0x02, 0x12, 0x1d, 0x13, 0x0c, 0x14, 0x18, 0x0b,
-
2531  0x0f, 0x1b, 0x18, 0x09, 0x01, 0x11, 0x24, 0x18, 0xf0, 0x64, 0x52, 0x45,
-
2532  0x60, 0x33, 0x11, 0x14, 0x28, 0x08, 0x05, 0x08, 0x08, 0x08, 0x01, 0x01,
-
2533  0x09, 0x1a, 0x31, 0x27, 0x0c, 0x11, 0x09, 0x1d, 0x38, 0x29, 0x27, 0x3c,
-
2534  0x22, 0x34, 0x13, 0x24, 0x19, 0x13, 0x1d, 0x13, 0x09, 0x0c, 0x13, 0x0e,
-
2535  0x1e, 0x32, 0x1f, 0x00, 0x00, 0x01, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
-
2536  0x02, 0x78, 0x00, 0x0c, 0x00, 0x11, 0xb7, 0x08, 0x05, 0x05, 0x00, 0x77,
-
2537  0x06, 0x04, 0x72, 0x00, 0x2b, 0xe4, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77,
-
2538  0x3e, 0x02, 0x37, 0x23, 0x35, 0x33, 0x15, 0x0e, 0x02, 0x07, 0xae, 0x14,
-
2539  0x2a, 0x2d, 0x17, 0xb1, 0xfc, 0x1a, 0x30, 0x2c, 0x14, 0xf6, 0x39, 0x6f,
-
2540  0x6c, 0x37, 0x37, 0x23, 0x39, 0x73, 0x75, 0x3e, 0x00, 0x03, 0x00, 0x72,
-
2541  0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x00, 0x1c, 0x00, 0x2c, 0x00, 0x3c,
-
2542  0x00, 0x17, 0x40, 0x0c, 0x07, 0x2d, 0x15, 0x25, 0x04, 0x1d, 0x00, 0x77,
-
2543  0x35, 0x0e, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30,
-
2544  0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35,
-
2545  0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02,
-
2546  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2547  0x27, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x3e, 0x02, 0x35, 0x34,
-
2548  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa, 0x3e,
-
2549  0x4a, 0x13, 0x24, 0x19, 0x13, 0x1b, 0x0e, 0x3f, 0x39, 0x3b, 0x3c, 0x0e,
-
2550  0x1a, 0x13, 0x17, 0x20, 0x12, 0x22, 0x3d, 0x29, 0x18, 0x20, 0x11, 0x15,
-
2551  0x26, 0x1a, 0x12, 0x1c, 0x10, 0x12, 0x21, 0x23, 0x0f, 0x15, 0x0d, 0x0e,
-
2552  0x1b, 0x13, 0x12, 0x1b, 0x0d, 0x13, 0x1f, 0xf0, 0x3c, 0x2d, 0x18, 0x28,
-
2553  0x20, 0x0b, 0x0a, 0x1b, 0x21, 0x11, 0x2a, 0x39, 0x37, 0x28, 0x13, 0x23,
-
2554  0x1d, 0x0a, 0x0a, 0x1f, 0x27, 0x16, 0x20, 0x30, 0x1c, 0x35, 0x0f, 0x1a,
-
2555  0x10, 0x11, 0x1e, 0x18, 0x06, 0x08, 0x16, 0x1c, 0x11, 0x11, 0x1b, 0x0f,
-
2556  0xb1, 0x09, 0x15, 0x1a, 0x0d, 0x0d, 0x15, 0x0d, 0x0d, 0x14, 0x0c, 0x11,
-
2557  0x19, 0x13, 0x00, 0x01, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d,
-
2558  0x00, 0x32, 0x00, 0x14, 0x40, 0x09, 0x1c, 0x24, 0x24, 0x32, 0x77, 0x14,
-
2559  0x2c, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
2560  0x77, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16,
-
2561  0x33, 0x32, 0x36, 0x36, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
-
2562  0x15, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
-
2563  0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
2564  0x06, 0x23, 0xe9, 0x1f, 0x39, 0x17, 0x23, 0x07, 0x06, 0x01, 0x0b, 0x0d,
-
2565  0x08, 0x11, 0x0a, 0x1f, 0x29, 0x15, 0x01, 0x10, 0x22, 0x1a, 0x15, 0x20,
-
2566  0x12, 0x01, 0x13, 0x20, 0x13, 0x15, 0x1e, 0x1a, 0x0b, 0x06, 0x11, 0x30,
-
2567  0x20, 0x24, 0x3a, 0x22, 0x23, 0x3d, 0x24, 0x41, 0x45, 0x4e, 0x48, 0xf0,
-
2568  0x0f, 0x13, 0x2e, 0x08, 0x05, 0x08, 0x0a, 0x09, 0x02, 0x03, 0x28, 0x44,
-
2569  0x29, 0x34, 0x40, 0x1d, 0x12, 0x24, 0x1a, 0x15, 0x1f, 0x10, 0x08, 0x14,
-
2570  0x10, 0x38, 0x12, 0x16, 0x1e, 0x37, 0x25, 0x26, 0x3a, 0x22, 0x5c, 0x52,
-
2571  0x6f, 0x70, 0x00, 0x01, 0x00, 0x47, 0xff, 0xd6, 0x01, 0xb4, 0x02, 0x9b,
-
2572  0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
2573  0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x7b, 0x34, 0x01, 0x38,
-
2574  0x35, 0x2a, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x03, 0x00, 0x0f, 0xff, 0xba,
-
2575  0x01, 0xe6, 0x02, 0xae, 0x00, 0x06, 0x00, 0x24, 0x00, 0x28, 0x00, 0x37,
-
2576  0x40, 0x19, 0x26, 0x25, 0x25, 0x07, 0x08, 0x22, 0x22, 0x07, 0x11, 0x19,
-
2577  0x19, 0x07, 0x28, 0x27, 0x27, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, 0x04,
-
2578  0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2579  0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11,
-
2580  0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x07, 0x27, 0x37,
-
2581  0x33, 0x11, 0x13, 0x35, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
-
2582  0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
2583  0x0e, 0x02, 0x07, 0x33, 0x15, 0x25, 0x27, 0x01, 0x17, 0x59, 0x3d, 0x0d,
-
2584  0x59, 0x2a, 0x84, 0x26, 0x3a, 0x26, 0x14, 0x0d, 0x16, 0x10, 0x10, 0x1b,
-
2585  0x15, 0x09, 0x26, 0x11, 0x3b, 0x23, 0x1e, 0x2f, 0x1c, 0x13, 0x22, 0x2f,
-
2586  0x1c, 0x80, 0xfe, 0x95, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6, 0x14,
-
2587  0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x28, 0x23, 0x33, 0x26, 0x25, 0x14,
-
2588  0x0f, 0x12, 0x08, 0x08, 0x12, 0x0f, 0x1e, 0x1c, 0x1f, 0x16, 0x28, 0x1b,
-
2589  0x18, 0x29, 0x28, 0x2c, 0x1a, 0x2e, 0x1c, 0x1e, 0x02, 0xa7, 0x20, 0x00,
-
2590  0x00, 0x04, 0x00, 0x0f, 0xff, 0xba, 0x01, 0xeb, 0x02, 0xae, 0x00, 0x06,
-
2591  0x00, 0x11, 0x00, 0x14, 0x00, 0x18, 0x00, 0x41, 0x40, 0x1e, 0x16, 0x15,
-
2592  0x15, 0x07, 0x0d, 0x0a, 0x13, 0x13, 0x10, 0x14, 0x0b, 0x08, 0x08, 0x07,
-
2593  0x0b, 0x0b, 0x07, 0x18, 0x17, 0x17, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03,
-
2594  0x04, 0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33,
-
2595  0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
-
2596  0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30,
-
2597  0x31, 0x53, 0x35, 0x07, 0x27, 0x37, 0x33, 0x11, 0x13, 0x35, 0x23, 0x35,
-
2598  0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x05, 0x27,
-
2599  0x01, 0x17, 0x59, 0x3d, 0x0d, 0x59, 0x2a, 0xf5, 0x87, 0x93, 0x2b, 0x2d,
-
2600  0x2d, 0x82, 0x4c, 0xfe, 0xf3, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6,
-
2601  0x14, 0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x48, 0x24, 0xc6, 0xbe, 0x2d,
-
2602  0x47, 0x74, 0x68, 0xc0, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x04, 0x00, 0x01,
-
2603  0xff, 0xba, 0x01, 0xeb, 0x02, 0xb2, 0x00, 0x30, 0x00, 0x3b, 0x00, 0x3e,
-
2604  0x00, 0x42, 0x00, 0x3d, 0x40, 0x1d, 0x40, 0x3f, 0x3f, 0x3b, 0x33, 0x36,
-
2605  0x36, 0x39, 0x39, 0x3c, 0x3d, 0x34, 0x31, 0x31, 0x3b, 0x34, 0x34, 0x3b,
-
2606  0x42, 0x41, 0x41, 0x13, 0x2a, 0x14, 0x03, 0x24, 0x30, 0x30, 0x24, 0x00,
-
2607  0x2f, 0x33, 0x2f, 0x12, 0x17, 0x39, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x2f,
-
2608  0x12, 0x39, 0x2f, 0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2609  0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
-
2610  0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2611  0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
2612  0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x16,
-
2613  0x16, 0x15, 0x14, 0x06, 0x23, 0x01, 0x23, 0x35, 0x37, 0x33, 0x15, 0x33,
-
2614  0x15, 0x23, 0x15, 0x23, 0x37, 0x35, 0x07, 0x07, 0x27, 0x01, 0x17, 0x66,
-
2615  0x1d, 0x37, 0x11, 0x1e, 0x06, 0x06, 0x02, 0x0a, 0x0d, 0x06, 0x10, 0x0a,
-
2616  0x1b, 0x1d, 0x15, 0x28, 0x1d, 0x18, 0x20, 0x12, 0x08, 0x0c, 0x14, 0x0e,
-
2617  0x10, 0x1f, 0x0d, 0x21, 0x13, 0x33, 0x18, 0x2d, 0x37, 0x1e, 0x15, 0x18,
-
2618  0x24, 0x3a, 0x34, 0x01, 0x21, 0x87, 0x93, 0x2b, 0x2d, 0x2d, 0x37, 0x01,
-
2619  0x4c, 0xc1, 0x34, 0x01, 0x38, 0x35, 0x01, 0x76, 0x12, 0x12, 0x29, 0x08,
-
2620  0x05, 0x07, 0x0c, 0x0a, 0x03, 0x03, 0x1a, 0x16, 0x14, 0x18, 0x08, 0x03,
-
2621  0x2b, 0x06, 0x0e, 0x10, 0x09, 0x0d, 0x11, 0x09, 0x0a, 0x0d, 0x21, 0x14,
-
2622  0x11, 0x2c, 0x23, 0x1a, 0x23, 0x08, 0x07, 0x25, 0x22, 0x25, 0x35, 0xfe,
-
2623  0x8c, 0x24, 0xc6, 0xbe, 0x2d, 0x47, 0x74, 0x68, 0x68, 0x58, 0x1e, 0x02,
-
2624  0xa7, 0x20, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xe9, 0x01, 0x86, 0x01, 0x77,
-
2625  0x06, 0x07, 0x02, 0x14, 0x00, 0x00, 0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e,
-
2626  0xff, 0xe9, 0x01, 0x86, 0x01, 0x77, 0x06, 0x07, 0x02, 0x14, 0x00, 0x00,
-
2627  0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d,
-
2628  0x06, 0x06, 0x02, 0x14, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6e, 0x00, 0xef,
-
2629  0x01, 0x86, 0x02, 0x7d, 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x0f, 0xb6, 0x10,
-
2630  0x00, 0x77, 0x17, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x30,
-
2631  0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2632  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2633  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfa, 0x2c, 0x3e, 0x22, 0x22,
-
2634  0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23,
-
2635  0x1a, 0x19, 0x24, 0x12, 0x29, 0xef, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30,
-
2636  0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24,
-
2637  0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf3,
-
2638  0x01, 0x86, 0x01, 0x81, 0x06, 0x07, 0x02, 0x18, 0x00, 0x00, 0xff, 0x04,
-
2639  0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f, 0x06, 0x06,
-
2640  0x02, 0x15, 0x00, 0xfe, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
-
2641  0x02, 0x7d, 0x06, 0x06, 0x02, 0x18, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e,
-
2642  0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x29,
-
2643  0x00, 0x16, 0x40, 0x0a, 0x06, 0x00, 0x00, 0x1c, 0x0c, 0x77, 0x23, 0x14,
-
2644  0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
2645  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2646  0x07, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
2647  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
2648  0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfd, 0x10, 0x15, 0x16, 0x0f, 0x0d,
-
2649  0x17, 0x15, 0x12, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22,
-
2650  0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29,
-
2651  0x01, 0x9e, 0x14, 0x10, 0x0e, 0x15, 0x15, 0x0e, 0x0f, 0x15, 0xaf, 0x2e,
-
2652  0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32,
-
2653  0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0x01,
-
2654  0x00, 0xae, 0xff, 0xf5, 0x01, 0x2d, 0x00, 0x73, 0x00, 0x0b, 0x00, 0x0a,
-
2655  0xb3, 0x06, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22,
-
2656  0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xee, 0x1a,
-
2657  0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0x0b, 0x25, 0x1a, 0x19, 0x26, 0x26,
-
2658  0x19, 0x1a, 0x25, 0x00, 0x00, 0x01, 0x00, 0xa1, 0xff, 0x57, 0x01, 0x38,
-
2659  0x00, 0x73, 0x00, 0x13, 0x00, 0x0a, 0xb2, 0x00, 0xc0, 0x0c, 0x00, 0x2f,
-
2660  0x1a, 0xcc, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02,
-
2661  0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0xcc, 0x2b,
-
2662  0x1c, 0x22, 0x0e, 0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29,
-
2663  0xa9, 0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x1c, 0x23,
-
2664  0x31, 0x28, 0x15, 0x2d, 0x31, 0x34, 0x00, 0x02, 0x00, 0xad, 0xff, 0xf5,
-
2665  0x01, 0x2e, 0x01, 0xad, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x0e, 0xb5, 0x12,
-
2666  0x0c, 0x0b, 0x72, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2b, 0x32, 0x30, 0x31,
-
2667  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2668  0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2669  0xed, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0x1b, 0x1b, 0x25, 0x26,
-
2670  0x1a, 0x19, 0x28, 0x25, 0x01, 0x2e, 0x26, 0x19, 0x1a, 0x26, 0x25, 0x1b,
-
2671  0x19, 0x26, 0xfe, 0xc7, 0x25, 0x1a, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x26,
-
2672  0x00, 0x02, 0x00, 0xa0, 0xff, 0x57, 0x01, 0x38, 0x01, 0xad, 0x00, 0x13,
-
2673  0x00, 0x1f, 0x00, 0x0e, 0xb4, 0x14, 0x1a, 0x00, 0xc0, 0x0d, 0x00, 0x2f,
-
2674  0x1a, 0xcc, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34,
-
2675  0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2676  0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
2677  0x06, 0xcc, 0x2c, 0x1c, 0x23, 0x0f, 0x14, 0x0e, 0x11, 0x1d, 0x13, 0x1e,
-
2678  0x2b, 0x18, 0x30, 0x03, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0xa9,
-
2679  0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x13, 0x1c, 0x10,
-
2680  0x31, 0x28, 0x1c, 0x3e, 0x43, 0x01, 0xb1, 0x26, 0x19, 0x1a, 0x26, 0x25,
-
2681  0x1b, 0x19, 0x26, 0x00, 0x00, 0x03, 0x00, 0x06, 0xff, 0xf5, 0x01, 0xda,
-
2682  0x00, 0x6e, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x23, 0x00, 0x19, 0x40, 0x0b,
-
2683  0x18, 0x0c, 0x0c, 0x1e, 0x12, 0x12, 0x06, 0x06, 0x00, 0x0b, 0x72, 0x00,
-
2684  0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57,
-
2685  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
-
2686  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
-
2687  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x44,
-
2688  0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x94, 0x1a, 0x24, 0x24, 0x1a,
-
2689  0x18, 0x24, 0x24, 0x96, 0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x0b,
-
2690  0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24,
-
2691  0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24,
-
2692  0x00, 0x02, 0x00, 0xad, 0xff, 0xf5, 0x01, 0x32, 0x02, 0x9d, 0x00, 0x0a,
-
2693  0x00, 0x16, 0x00, 0x14, 0x40, 0x09, 0x00, 0x11, 0x11, 0x0b, 0x0b, 0x72,
-
2694  0x05, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x7c, 0x10, 0xce, 0x30, 0x31,
-
2695  0x77, 0x03, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x03, 0x07,
-
2696  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xd2,
-
2697  0x1a, 0x0e, 0x1a, 0x11, 0x11, 0x19, 0x0f, 0x1c, 0x1f, 0x1b, 0x27, 0x27,
-
2698  0x1b, 0x1b, 0x28, 0x28, 0xc7, 0x01, 0x87, 0x1a, 0x23, 0x12, 0x12, 0x26,
-
2699  0x1f, 0xfe, 0x81, 0xd2, 0x25, 0x1b, 0x1a, 0x27, 0x27, 0x1a, 0x19, 0x27,
-
2700  0x00, 0x02, 0x00, 0xad, 0xff, 0xae, 0x01, 0x32, 0x02, 0x56, 0x00, 0x0a,
-
2701  0x00, 0x16, 0x00, 0x0f, 0xb4, 0x00, 0x11, 0x11, 0x0b, 0x06, 0x00, 0x2f,
-
2702  0x2f, 0x33, 0x7c, 0x10, 0xce, 0x30, 0x31, 0x53, 0x33, 0x13, 0x14, 0x06,
-
2703  0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2704  0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0xd2, 0x3c, 0x1c, 0x0f, 0x19, 0x11,
-
2705  0x11, 0x1a, 0x0e, 0x37, 0x1b, 0x28, 0x28, 0x1b, 0x1b, 0x27, 0x27, 0x01,
-
2706  0x84, 0xfe, 0x81, 0x1f, 0x26, 0x12, 0x12, 0x24, 0x19, 0x02, 0x59, 0x26,
-
2707  0x1a, 0x1a, 0x27, 0x27, 0x1a, 0x1b, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3e,
-
2708  0xff, 0xf5, 0x01, 0xb6, 0x02, 0x9a, 0x00, 0x26, 0x00, 0x32, 0x00, 0x17,
-
2709  0x40, 0x0b, 0x26, 0x26, 0x2d, 0x2d, 0x27, 0x0b, 0x72, 0x0c, 0x19, 0x01,
-
2710  0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x77,
-
2711  0x34, 0x3e, 0x04, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x06,
-
2712  0x06, 0x17, 0x07, 0x27, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
2713  0x14, 0x0e, 0x04, 0x15, 0x15, 0x23, 0x17, 0x22, 0x26, 0x35, 0x34, 0x36,
-
2714  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xdd, 0x14, 0x1f, 0x22, 0x20, 0x13,
-
2715  0x0f, 0x1c, 0x27, 0x16, 0x22, 0x36, 0x16, 0x0a, 0x05, 0x01, 0x05, 0x08,
-
2716  0x36, 0x17, 0x35, 0x47, 0x30, 0x37, 0x51, 0x2d, 0x14, 0x20, 0x24, 0x20,
-
2717  0x14, 0x4d, 0x28, 0x1a, 0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0xeb, 0x24,
-
2718  0x32, 0x25, 0x21, 0x23, 0x2e, 0x1f, 0x16, 0x22, 0x18, 0x0d, 0x15, 0x16,
-
2719  0x0d, 0x0e, 0x08, 0x06, 0x06, 0x2a, 0x22, 0x2f, 0x19, 0x28, 0x47, 0x30,
-
2720  0x27, 0x37, 0x28, 0x21, 0x21, 0x2a, 0x1e, 0x2c, 0xca, 0x25, 0x1a, 0x19,
-
2721  0x26, 0x26, 0x19, 0x1a, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x88,
-
2722  0x01, 0xb4, 0x02, 0x2d, 0x00, 0x26, 0x00, 0x33, 0x00, 0x12, 0xb6, 0x25,
-
2723  0x25, 0x2d, 0x2d, 0x27, 0x0c, 0x19, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
-
2724  0x33, 0x2f, 0x30, 0x31, 0x41, 0x14, 0x0e, 0x04, 0x15, 0x14, 0x1e, 0x02,
-
2725  0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x0e, 0x02,
-
2726  0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x04, 0x35, 0x35, 0x33, 0x27,
-
2727  0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33,
-
2728  0x01, 0x15, 0x14, 0x1f, 0x22, 0x20, 0x13, 0x0f, 0x1c, 0x27, 0x16, 0x22,
-
2729  0x37, 0x15, 0x0a, 0x05, 0x01, 0x05, 0x08, 0x36, 0x16, 0x36, 0x47, 0x30,
-
2730  0x37, 0x51, 0x2d, 0x15, 0x1f, 0x24, 0x20, 0x14, 0x4d, 0x28, 0x1a, 0x26,
-
2731  0x26, 0x1a, 0x1a, 0x25, 0x25, 0x1a, 0x01, 0x37, 0x23, 0x33, 0x25, 0x21,
-
2732  0x23, 0x2d, 0x20, 0x15, 0x23, 0x18, 0x0d, 0x15, 0x16, 0x0d, 0x0e, 0x08,
-
2733  0x06, 0x06, 0x2a, 0x21, 0x30, 0x19, 0x28, 0x47, 0x30, 0x27, 0x37, 0x28,
-
2734  0x21, 0x21, 0x2b, 0x1d, 0x2c, 0xca, 0x25, 0x1a, 0x19, 0x26, 0x26, 0x19,
-
2735  0x1a, 0x25, 0x00, 0x01, 0x00, 0xae, 0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b,
-
2736  0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
2737  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2738  0xee, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26, 0x01, 0x0d, 0x24, 0x1b,
-
2739  0x1a, 0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0x01, 0x00, 0x9d, 0x00, 0xcd,
-
2740  0x01, 0x58, 0x01, 0x84, 0x00, 0x0f, 0x00, 0x08, 0xb1, 0x08, 0x00, 0x00,
-
2741  0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
2742  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xfa, 0x19, 0x2b, 0x19,
-
2743  0x1a, 0x2b, 0x18, 0x19, 0x2b, 0x1a, 0x1a, 0x2a, 0xcd, 0x19, 0x2a, 0x18,
-
2744  0x1a, 0x2a, 0x18, 0x19, 0x2a, 0x19, 0x18, 0x2a, 0x19, 0x00, 0x00, 0x01,
-
2745  0x00, 0x26, 0x00, 0x76, 0x01, 0xce, 0x02, 0x1a, 0x00, 0x0e, 0x00, 0x1b,
-
2746  0x40, 0x0f, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09,
-
2747  0x06, 0x0d, 0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17,
-
2748  0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07,
-
2749  0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b,
-
2750  0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x76, 0x35, 0x90,
-
2751  0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00,
-
2752  0x00, 0x01, 0x00, 0xc8, 0xff, 0x7c, 0x01, 0x52, 0x00, 0x8d, 0x00, 0x10,
-
2753  0x00, 0x0e, 0xb4, 0x01, 0x00, 0xc0, 0x08, 0x09, 0x00, 0x2f, 0x33, 0x1a,
-
2754  0xce, 0x32, 0x30, 0x31, 0x57, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2755  0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc8, 0x20, 0x28,
-
2756  0x11, 0x20, 0x17, 0x29, 0x3e, 0x23, 0x22, 0x3f, 0x84, 0x3d, 0x2d, 0x1f,
-
2757  0x14, 0x24, 0x15, 0x3b, 0x25, 0x3e, 0x26, 0x25, 0x3e, 0x25, 0x00, 0x02,
-
2758  0x00, 0x16, 0x00, 0x09, 0x01, 0xe0, 0x02, 0x72, 0x00, 0x1b, 0x00, 0x1f,
-
2759  0x00, 0x41, 0x40, 0x1f, 0x13, 0x0f, 0x0f, 0x0c, 0x16, 0x1f, 0x1f, 0x09,
-
2760  0x09, 0x0c, 0x17, 0x1c, 0x1c, 0x08, 0x08, 0x05, 0x1a, 0x02, 0x02, 0x05,
-
2761  0x0c, 0x05, 0x0c, 0x05, 0x04, 0x12, 0x0d, 0x02, 0x72, 0x00, 0x04, 0x00,
-
2762  0x2f, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
2763  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2764  0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x37, 0x23, 0x07, 0x07,
-
2765  0x37, 0x23, 0x37, 0x33, 0x37, 0x23, 0x37, 0x33, 0x37, 0x37, 0x07, 0x33,
-
2766  0x37, 0x37, 0x07, 0x33, 0x07, 0x23, 0x07, 0x33, 0x07, 0x23, 0x07, 0x27,
-
2767  0x33, 0x37, 0x23, 0x01, 0x0a, 0x15, 0x66, 0x14, 0x46, 0x15, 0x5e, 0x04,
-
2768  0x61, 0x13, 0x6a, 0x03, 0x6d, 0x13, 0x48, 0x15, 0x65, 0x13, 0x4a, 0x14,
-
2769  0x58, 0x07, 0x58, 0x14, 0x5f, 0x05, 0x5f, 0x16, 0x92, 0x65, 0x14, 0x66,
-
2770  0x09, 0xb1, 0xac, 0x01, 0xab, 0x37, 0xa0, 0x39, 0xa8, 0x02, 0xa8, 0xa4,
-
2771  0x01, 0xa3, 0x3a, 0x9e, 0x37, 0xaf, 0xe3, 0x9f, 0x00, 0x01, 0x00, 0x3a,
-
2772  0xff, 0xd6, 0x01, 0xbb, 0x02, 0x9a, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03,
-
2773  0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27,
-
2774  0x01, 0x17, 0x84, 0x4a, 0x01, 0x37, 0x4a, 0x2a, 0x22, 0x02, 0xa2, 0x26,
-
2775  0x00, 0x01, 0x00, 0x3a, 0xff, 0xd5, 0x01, 0xbc, 0x02, 0x99, 0x00, 0x03,
-
2776  0x00, 0x0c, 0xb3, 0x01, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
2777  0x30, 0x31, 0x45, 0x01, 0x37, 0x01, 0x01, 0x73, 0xfe, 0xc7, 0x4a, 0x01,
-
2778  0x38, 0x2b, 0x02, 0x9f, 0x25, 0xfd, 0x5f, 0x00, 0xff, 0xff, 0x00, 0xae,
-
2779  0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b, 0x06, 0x06, 0x02, 0x22, 0x00, 0x00,
-
2780  0x00, 0x01, 0x00, 0x26, 0x00, 0xb2, 0x01, 0xce, 0x02, 0x56, 0x00, 0x0e,
-
2781  0x00, 0x1b, 0x40, 0x10, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a,
-
2782  0x09, 0x09, 0x0d, 0x00, 0x00, 0x06, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2f,
-
2783  0x33, 0x17, 0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27,
-
2784  0x33, 0x07, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7,
-
2785  0x1e, 0x9b, 0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0xb2,
-
2786  0x35, 0x90, 0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34,
-
2787  0xa1, 0x00, 0x00, 0x01, 0x00, 0x74, 0xff, 0x97, 0x01, 0xa2, 0x02, 0xe0,
-
2788  0x00, 0x13, 0x00, 0x0c, 0xb3, 0x09, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32,
-
2789  0x2f, 0x33, 0x30, 0x31, 0x45, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37,
-
2790  0x17, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x01, 0x8b, 0x57, 0x7e,
-
2791  0x42, 0x42, 0x7a, 0x55, 0x16, 0x30, 0x4e, 0x38, 0x1e, 0x1f, 0x39, 0x50,
-
2792  0x33, 0x69, 0x28, 0x83, 0xa5, 0x59, 0x59, 0xa1, 0x7f, 0x27, 0x48, 0x1a,
-
2793  0x49, 0x59, 0x67, 0x38, 0x38, 0x68, 0x5c, 0x4a, 0x1a, 0x00, 0x00, 0x01,
-
2794  0x00, 0x6e, 0xff, 0x97, 0x01, 0x9c, 0x02, 0xe0, 0x00, 0x13, 0x00, 0x0c,
-
2795  0xb3, 0x0b, 0x0c, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31,
-
2796  0x57, 0x27, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x37, 0x1e, 0x02,
-
2797  0x15, 0x14, 0x06, 0x06, 0x85, 0x17, 0x33, 0x50, 0x39, 0x1f, 0x1e, 0x38,
-
2798  0x4e, 0x30, 0x16, 0x55, 0x7a, 0x42, 0x42, 0x7e, 0x69, 0x46, 0x1a, 0x4a,
-
2799  0x5c, 0x68, 0x38, 0x38, 0x67, 0x59, 0x49, 0x1a, 0x48, 0x27, 0x7f, 0xa1,
-
2800  0x59, 0x59, 0xa5, 0x83, 0x00, 0x01, 0x00, 0x2f, 0xff, 0xa4, 0x01, 0x9a,
-
2801  0x02, 0xc0, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09, 0x20, 0x0b, 0x0b, 0x0a,
-
2802  0x0a, 0x18, 0x15, 0x29, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f,
-
2803  0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x37, 0x37, 0x34,
-
2804  0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34,
-
2805  0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x17, 0x14, 0x06,
-
2806  0x06, 0x07, 0x1e, 0x02, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15,
-
2807  0x01, 0x71, 0x48, 0x62, 0x32, 0x03, 0x03, 0x13, 0x25, 0x1b, 0x19, 0x18,
-
2808  0x1d, 0x26, 0x13, 0x02, 0x2c, 0x54, 0x3c, 0x43, 0x55, 0x2c, 0x2b, 0x02,
-
2809  0x13, 0x26, 0x1b, 0x1b, 0x24, 0x13, 0x03, 0x18, 0x35, 0x2a, 0x37, 0x5c,
-
2810  0x1e, 0x4d, 0x46, 0x61, 0x2a, 0x2e, 0x11, 0x42, 0x14, 0x2c, 0x24, 0x4c,
-
2811  0x3a, 0x4e, 0x27, 0x43, 0x31, 0x30, 0x4b, 0x23, 0x38, 0x29, 0x0d, 0x0a,
-
2812  0x29, 0x3d, 0x29, 0x51, 0x29, 0x31, 0x15, 0x43, 0x00, 0x01, 0x00, 0x34,
-
2813  0xff, 0xa4, 0x01, 0x9f, 0x02, 0xc0, 0x00, 0x2b, 0x00, 0x19, 0x40, 0x0a,
-
2814  0x0c, 0x20, 0x20, 0x23, 0x23, 0x01, 0x15, 0x16, 0x02, 0x01, 0x00, 0x2f,
-
2815  0x33, 0x2f, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
-
2816  0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34, 0x36, 0x36, 0x37,
-
2817  0x2e, 0x02, 0x35, 0x37, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16,
-
2818  0x16, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06,
-
2819  0x06, 0x15, 0x17, 0x16, 0x06, 0x06, 0x5d, 0x28, 0x37, 0x2b, 0x34, 0x18,
-
2820  0x03, 0x13, 0x25, 0x1a, 0x1b, 0x26, 0x13, 0x02, 0x2b, 0x2c, 0x55, 0x43,
-
2821  0x3d, 0x53, 0x2c, 0x02, 0x13, 0x27, 0x1c, 0x18, 0x19, 0x1a, 0x26, 0x13,
-
2822  0x03, 0x03, 0x31, 0x63, 0x5c, 0x43, 0x15, 0x31, 0x29, 0x51, 0x29, 0x3d,
-
2823  0x29, 0x0a, 0x0d, 0x29, 0x38, 0x23, 0x4b, 0x30, 0x31, 0x43, 0x27, 0x4e,
-
2824  0x3a, 0x4c, 0x24, 0x2c, 0x14, 0x42, 0x11, 0x2e, 0x2a, 0x61, 0x46, 0x4d,
-
2825  0x1e, 0x00, 0x00, 0x01, 0x00, 0x7e, 0xff, 0xa7, 0x01, 0xa6, 0x02, 0x9e,
-
2826  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x32,
-
2827  0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15,
-
2828  0x7e, 0x01, 0x27, 0xd8, 0xd9, 0x59, 0x02, 0xf7, 0x47, 0xfd, 0x94, 0x44,
-
2829  0x00, 0x01, 0x00, 0x7f, 0xff, 0xa7, 0x01, 0xa7, 0x02, 0x9e, 0x00, 0x07,
-
2830  0x00, 0x0c, 0xb3, 0x05, 0x06, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x2f, 0x33,
-
2831  0x30, 0x31, 0x45, 0x21, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x01, 0xa7,
-
2832  0xfe, 0xd8, 0xd9, 0xd8, 0x01, 0x27, 0x59, 0x44, 0x02, 0x6c, 0x47, 0x00,
-
2833  0x00, 0x01, 0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x00, 0x03,
-
2834  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
-
2835  0x21, 0x15, 0x6d, 0x01, 0x1c, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
-
2836  0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31,
-
2837  0x00, 0x00, 0x00, 0x01, 0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62,
-
2838  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
2839  0x53, 0x35, 0x21, 0x15, 0x45, 0x01, 0x6d, 0x01, 0x16, 0x4c, 0x4c, 0x00,
-
2840  0x00, 0x01, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62, 0x00, 0x03,
-
2841  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
-
2842  0x21, 0x15, 0x0a, 0x01, 0xe0, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
-
2843  0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62, 0x06, 0x06, 0x02, 0x33,
-
2844  0x00, 0x00, 0xff, 0xff, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62,
-
2845  0x06, 0x06, 0x02, 0x34, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
-
2846  0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x01,
-
2847  0x00, 0x22, 0xff, 0xa9, 0x01, 0xd3, 0xff, 0xf0, 0x00, 0x03, 0x00, 0x08,
-
2848  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x57, 0x35, 0x21, 0x15,
-
2849  0x22, 0x01, 0xb1, 0x57, 0x47, 0x47, 0xff, 0xff, 0x00, 0x9f, 0xff, 0x52,
-
2850  0x01, 0x37, 0x00, 0x6e, 0x06, 0x07, 0x02, 0x3e, 0x00, 0x00, 0xfd, 0xec,
-
2851  0x00, 0x02, 0x00, 0x36, 0xff, 0x52, 0x01, 0xa0, 0x00, 0x6e, 0x00, 0x13,
-
2852  0x00, 0x27, 0x00, 0x14, 0xb7, 0x15, 0x14, 0x14, 0x01, 0x00, 0xc0, 0x21,
-
2853  0x0d, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
-
2854  0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33,
-
2855  0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x27, 0x3e, 0x02, 0x35, 0x34,
-
2856  0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2857  0x60, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d, 0x1b, 0x2d,
-
2858  0x18, 0x31, 0xad, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d,
-
2859  0x1b, 0x2d, 0x18, 0x31, 0xae, 0x25, 0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11,
-
2860  0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30, 0x26, 0x1c, 0x3f, 0x44, 0x27, 0x25,
-
2861  0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30,
-
2862  0x26, 0x1c, 0x3f, 0x44, 0x00, 0x02, 0x00, 0x4a, 0x01, 0x66, 0x01, 0xaf,
-
2863  0x02, 0x81, 0x00, 0x13, 0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x15, 0x14,
-
2864  0x14, 0x21, 0x0d, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a,
-
2865  0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x0e, 0x02, 0x15,
-
2866  0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36,
-
2867  0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06,
-
2868  0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0xb9, 0x29, 0x12, 0x1d, 0x11,
-
2869  0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0xf1, 0x29, 0x12,
-
2870  0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0x02,
-
2871  0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
-
2872  0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x25, 0x25, 0x11, 0x26, 0x22, 0x0e,
-
2873  0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45,
-
2874  0x00, 0x02, 0x00, 0x4d, 0x01, 0x66, 0x01, 0xb2, 0x02, 0x81, 0x00, 0x13,
-
2875  0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x01, 0x00, 0x00, 0x15, 0x14, 0xc0,
-
2876  0x0d, 0x21, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a, 0xcc, 0x32, 0x32, 0x11,
-
2877  0x33, 0x30, 0x31, 0x41, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35,
-
2878  0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e,
-
2879  0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2880  0x14, 0x06, 0x06, 0x01, 0x43, 0x29, 0x13, 0x1c, 0x11, 0x0f, 0x14, 0x0e,
-
2881  0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0xf2, 0x29, 0x13, 0x1c, 0x11, 0x0f,
-
2882  0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x01, 0x66, 0x25, 0x12,
-
2883  0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26,
-
2884  0x1b, 0x40, 0x44, 0x26, 0x25, 0x12, 0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10,
-
2885  0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1b, 0x40, 0x44, 0x00, 0x00, 0x01,
-
2886  0x00, 0xae, 0x01, 0x66, 0x01, 0x46, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e,
-
2887  0xb5, 0x01, 0x0d, 0xc0, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x33,
-
2888  0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14,
-
2889  0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x1d, 0x29, 0x12,
-
2890  0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x02,
-
2891  0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
-
2892  0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x00, 0x01, 0x00, 0x9f, 0x01, 0x66,
-
2893  0x01, 0x37, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0,
-
2894  0x0d, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27,
-
2895  0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
-
2896  0x15, 0x14, 0x06, 0x06, 0xc9, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f,
-
2897  0x24, 0x1d, 0x1b, 0x2d, 0x18, 0x31, 0x01, 0x66, 0x25, 0x12, 0x25, 0x23,
-
2898  0x0e, 0x0b, 0x11, 0x11, 0x14, 0x0f, 0x1a, 0x24, 0x2f, 0x27, 0x1b, 0x3f,
-
2899  0x45, 0x00, 0x00, 0x02, 0x00, 0x40, 0x00, 0x38, 0x01, 0xc0, 0x01, 0x96,
-
2900  0x00, 0x06, 0x00, 0x0d, 0x00, 0x0c, 0xb3, 0x07, 0x0a, 0x03, 0x00, 0x00,
-
2901  0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x77, 0x27, 0x35, 0x37, 0x17, 0x07,
-
2902  0x17, 0x17, 0x27, 0x35, 0x37, 0x17, 0x07, 0x17, 0xe1, 0xa1, 0x9c, 0x2b,
-
2903  0x78, 0x7f, 0x84, 0xa1, 0x9b, 0x2d, 0x7a, 0x81, 0x38, 0xad, 0x1a, 0x97,
-
2904  0x2d, 0x78, 0x8d, 0x2c, 0xad, 0x1a, 0x97, 0x2e, 0x77, 0x8c, 0x00, 0x02,
-
2905  0x00, 0x46, 0x00, 0x38, 0x01, 0xc6, 0x01, 0x96, 0x00, 0x06, 0x00, 0x0d,
-
2906  0x00, 0x0c, 0xb3, 0x07, 0x0b, 0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
-
2907  0x30, 0x31, 0x65, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0x05, 0x27, 0x37,
-
2908  0x27, 0x37, 0x17, 0x15, 0x01, 0x25, 0x2d, 0x7f, 0x78, 0x2b, 0x9c, 0xfe,
-
2909  0xae, 0x2e, 0x81, 0x7a, 0x2d, 0x9b, 0x38, 0x2c, 0x8d, 0x78, 0x2d, 0x97,
-
2910  0x1a, 0xad, 0x2d, 0x8c, 0x77, 0x2e, 0x97, 0x1a, 0x00, 0x01, 0x00, 0x89,
-
2911  0x00, 0x37, 0x01, 0x5c, 0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x03,
-
2912  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x65, 0x27, 0x35, 0x37, 0x17, 0x07,
-
2913  0x17, 0x01, 0x2a, 0xa1, 0x9c, 0x30, 0x76, 0x7d, 0x37, 0xad, 0x1a, 0x97,
-
2914  0x32, 0x73, 0x88, 0x00, 0x00, 0x01, 0x00, 0x8a, 0x00, 0x37, 0x01, 0x5d,
-
2915  0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x04, 0x00, 0x00, 0x2f, 0x2f,
-
2916  0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0xbc, 0x32, 0x7d,
-
2917  0x76, 0x30, 0x9c, 0x37, 0x31, 0x88, 0x73, 0x32, 0x97, 0x1a, 0xff, 0xff,
-
2918  0x00, 0x82, 0x01, 0x97, 0x01, 0x72, 0x02, 0x99, 0x04, 0x26, 0x02, 0x44,
-
2919  0xb4, 0x00, 0x00, 0x06, 0x02, 0x44, 0x4c, 0x00, 0x00, 0x01, 0x00, 0xce,
-
2920  0x01, 0x97, 0x01, 0x26, 0x02, 0x99, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x07,
-
2921  0x00, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x33, 0x14, 0x0e, 0x02, 0x07,
-
2922  0x23, 0x2e, 0x03, 0xce, 0x58, 0x02, 0x06, 0x06, 0x03, 0x36, 0x03, 0x06,
-
2923  0x06, 0x02, 0x02, 0x99, 0x3c, 0x48, 0x31, 0x2d, 0x20, 0x20, 0x2d, 0x30,
-
2924  0x49, 0x00, 0xff, 0xff, 0x00, 0x6b, 0x01, 0x95, 0x01, 0x8c, 0x02, 0x9b,
-
2925  0x04, 0x26, 0x02, 0x46, 0xa4, 0x00, 0x00, 0x06, 0x02, 0x46, 0x48, 0x00,
-
2926  0x00, 0x01, 0x00, 0xc7, 0x01, 0x95, 0x01, 0x44, 0x02, 0x9b, 0x00, 0x0f,
-
2927  0x00, 0x0a, 0xb2, 0x01, 0x00, 0x09, 0x00, 0x2f, 0xcd, 0x32, 0x30, 0x31,
-
2928  0x41, 0x27, 0x3e, 0x02, 0x34, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2929  0x14, 0x06, 0x06, 0x01, 0x09, 0x42, 0x0b, 0x0a, 0x03, 0x1a, 0x18, 0x18,
-
2930  0x1b, 0x0d, 0x19, 0x01, 0x95, 0x12, 0x22, 0x34, 0x29, 0x26, 0x14, 0x1e,
-
2931  0x1d, 0x1b, 0x1e, 0x17, 0x36, 0x49, 0x00, 0x02, 0x00, 0x29, 0x00, 0x17,
-
2932  0x03, 0xac, 0x02, 0x65, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c,
-
2933  0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x08, 0x08, 0x01, 0x00, 0x07,
-
2934  0x00, 0x2f, 0x33, 0x32, 0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30,
-
2935  0x31, 0x65, 0x35, 0x25, 0x25, 0x35, 0x01, 0x15, 0x05, 0x35, 0x21, 0x15,
-
2936  0x01, 0xab, 0x01, 0x9a, 0xfe, 0x66, 0x02, 0x01, 0xfc, 0x7d, 0x02, 0x57,
-
2937  0x17, 0x53, 0xd7, 0xd2, 0x52, 0xfe, 0xf9, 0x3b, 0x06, 0x47, 0x47, 0x00,
-
2938  0x00, 0x04, 0x00, 0x2d, 0xff, 0x84, 0x05, 0xaf, 0x02, 0x4e, 0x00, 0x03,
-
2939  0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x29, 0x40, 0x12, 0x01, 0x00,
-
2940  0x00, 0x0c, 0x0c, 0x0d, 0x0d, 0x08, 0x03, 0x02, 0x02, 0x05, 0x05, 0x04,
-
2941  0x04, 0x09, 0x09, 0x08, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11,
-
2942  0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x32, 0x30,
-
2943  0x31, 0x45, 0x27, 0x01, 0x17, 0x05, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21,
-
2944  0x15, 0x05, 0x35, 0x21, 0x15, 0x02, 0x6d, 0x3c, 0x01, 0x3c, 0x3d, 0xfc,
-
2945  0x83, 0x05, 0x82, 0xfb, 0x28, 0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x7c,
-
2946  0x1d, 0x02, 0xad, 0x1f, 0xad, 0x45, 0x45, 0xbf, 0x45, 0x45, 0xbe, 0x45,
-
2947  0x45, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3,
-
2948  0x00, 0x03, 0x00, 0x2d, 0x00, 0x15, 0x40, 0x0a, 0x25, 0x00, 0x2d, 0x0d,
-
2949  0x72, 0x1b, 0x01, 0x0f, 0x05, 0x72, 0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd,
-
2950  0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x2e, 0x02, 0x35,
-
2951  0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26,
-
2952  0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33,
-
2953  0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0xf5, 0x40, 0x1a, 0x33,
-
2954  0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40,
-
2955  0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17,
-
2956  0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e,
-
2957  0x47, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d,
-
2958  0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f,
-
2959  0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17,
-
2960  0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xb7, 0x01, 0xcc,
-
2961  0x02, 0x6f, 0x00, 0x03, 0x00, 0x2c, 0x00, 0x19, 0x40, 0x0a, 0x24, 0x2c,
-
2962  0x00, 0x00, 0x2c, 0x1a, 0x0e, 0x02, 0x02, 0x0e, 0x00, 0x2f, 0x33, 0x2f,
-
2963  0x11, 0x33, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x45, 0x23, 0x13,
-
2964  0x33, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16,
-
2965  0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
-
2966  0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06,
-
2967  0x06, 0x23, 0x01, 0x01, 0x43, 0x5f, 0x40, 0x42, 0x33, 0x55, 0x3e, 0x23,
-
2968  0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
-
2969  0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
-
2970  0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x49, 0x02, 0xb8, 0xfd, 0xb1,
-
2971  0x24, 0x40, 0x57, 0x34, 0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07,
-
2972  0x06, 0x08, 0x0f, 0x0c, 0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d,
-
2973  0x2d, 0x19, 0x0c, 0x19, 0x13, 0x38, 0x26, 0x24, 0x00, 0x03, 0x00, 0x26,
-
2974  0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x31,
-
2975  0x00, 0x19, 0x40, 0x0c, 0x07, 0x03, 0x29, 0x31, 0x0d, 0x72, 0x01, 0x05,
-
2976  0x1f, 0x13, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0xce,
-
2977  0x32, 0x30, 0x31, 0x57, 0x13, 0x33, 0x03, 0x23, 0x13, 0x33, 0x03, 0x37,
-
2978  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07,
-
2979  0x07, 0x27, 0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
2980  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
-
2981  0xad, 0xc8, 0x27, 0xc8, 0x6d, 0xc8, 0x26, 0xc8, 0x8e, 0x33, 0x59, 0x43,
-
2982  0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40, 0x09, 0x03,
-
2983  0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17, 0x19, 0x2c,
-
2984  0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e, 0x47, 0x02,
-
2985  0xea, 0xfd, 0x16, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53,
-
2986  0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e,
-
2987  0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10,
-
2988  0x22, 0x17, 0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xa0,
-
2989  0x01, 0xb5, 0x02, 0x14, 0x00, 0x23, 0x00, 0x33, 0x00, 0x0c, 0xb3, 0x24,
-
2990  0x20, 0x2c, 0x0e, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x27,
-
2991  0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x36,
-
2992  0x33, 0x32, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x16, 0x15, 0x14, 0x06,
-
2993  0x07, 0x17, 0x07, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x32,
-
2994  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
2995  0x16, 0x16, 0x6c, 0x2d, 0x37, 0x0c, 0x0e, 0x0d, 0x0e, 0x38, 0x2d, 0x38,
-
2996  0x13, 0x2d, 0x17, 0x16, 0x2b, 0x14, 0x38, 0x2d, 0x37, 0x0e, 0x0d, 0x0d,
-
2997  0x0e, 0x37, 0x2d, 0x37, 0x13, 0x2c, 0x17, 0x18, 0x2c, 0x14, 0x57, 0x1e,
-
2998  0x29, 0x15, 0x15, 0x29, 0x1e, 0x1d, 0x29, 0x15, 0x15, 0x29, 0xa0, 0x2b,
-
2999  0x38, 0x14, 0x2c, 0x16, 0x17, 0x2c, 0x14, 0x39, 0x2b, 0x38, 0x0d, 0x0d,
-
3000  0x0c, 0x0d, 0x37, 0x2b, 0x37, 0x15, 0x2c, 0x18, 0x18, 0x2c, 0x14, 0x36,
-
3001  0x2b, 0x36, 0x0d, 0x0d, 0x0e, 0x0d, 0x24, 0x1a, 0x2b, 0x19, 0x1a, 0x2a,
-
3002  0x1b, 0x1b, 0x2a, 0x1a, 0x19, 0x2b, 0x1a, 0x00, 0x00, 0x03, 0x00, 0x39,
-
3003  0xff, 0xd2, 0x01, 0xd0, 0x02, 0x8b, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x48,
-
3004  0x00, 0x42, 0x40, 0x26, 0x2c, 0x41, 0x41, 0x16, 0x23, 0x24, 0x24, 0x3b,
-
3005  0x31, 0x3f, 0x0e, 0x2d, 0x40, 0x12, 0x45, 0x08, 0x01, 0x1f, 0x17, 0x0f,
-
3006  0x16, 0x1f, 0x16, 0x7f, 0x16, 0x03, 0x16, 0x04, 0x05, 0x06, 0x06, 0x37,
-
3007  0x0d, 0x0d, 0x35, 0x00, 0x01, 0x0c, 0x00, 0x3f, 0xcd, 0x33, 0x33, 0x11,
-
3008  0x33, 0x33, 0x11, 0x33, 0x3f, 0x5d, 0xcd, 0x33, 0x12, 0x17, 0x39, 0x33,
-
3009  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x2e, 0x02,
-
3010  0x27, 0x37, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x17, 0x35, 0x2e, 0x02, 0x35,
-
3011  0x34, 0x36, 0x36, 0x37, 0x35, 0x33, 0x16, 0x14, 0x15, 0x14, 0x06, 0x07,
-
3012  0x15, 0x1e, 0x02, 0x17, 0x07, 0x26, 0x26, 0x27, 0x2e, 0x03, 0x27, 0x15,
-
3013  0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x15, 0x37, 0x3e, 0x02, 0x35,
-
3014  0x34, 0x26, 0x26, 0x27, 0x27, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
-
3015  0xea, 0x23, 0x40, 0x37, 0x17, 0x2e, 0x06, 0x01, 0x04, 0x10, 0x25, 0x2b,
-
3016  0x17, 0x34, 0x46, 0x24, 0x2a, 0x48, 0x2d, 0x43, 0x02, 0x06, 0x01, 0x1f,
-
3017  0x36, 0x2f, 0x12, 0x2e, 0x07, 0x02, 0x05, 0x08, 0x13, 0x17, 0x19, 0x0e,
-
3018  0x3a, 0x49, 0x24, 0x29, 0x4b, 0x34, 0x01, 0x1d, 0x29, 0x16, 0x13, 0x29,
-
3019  0x20, 0x40, 0x1a, 0x25, 0x14, 0x13, 0x25, 0x2e, 0x3b, 0x03, 0x13, 0x22,
-
3020  0x17, 0x45, 0x03, 0x10, 0x05, 0x10, 0x18, 0x0e, 0x03, 0xcf, 0x12, 0x2d,
-
3021  0x3a, 0x26, 0x26, 0x3d, 0x28, 0x06, 0x3c, 0x01, 0x02, 0x01, 0x03, 0x0a,
-
3022  0x08, 0x22, 0x03, 0x14, 0x20, 0x16, 0x3a, 0x01, 0x10, 0x04, 0x09, 0x10,
-
3023  0x0a, 0x09, 0x02, 0xb5, 0x13, 0x2b, 0x39, 0x2b, 0x25, 0x48, 0x33, 0x07,
-
3024  0x3c, 0x80, 0x05, 0x1d, 0x28, 0x15, 0x16, 0x20, 0x1a, 0x0a, 0x63, 0x9f,
-
3025  0x03, 0x15, 0x1e, 0x12, 0x12, 0x1f, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x42,
-
3026  0x00, 0x00, 0x01, 0xc0, 0x02, 0x80, 0x00, 0x03, 0x00, 0x25, 0x00, 0x37,
-
3027  0x00, 0x3b, 0x00, 0x25, 0x40, 0x10, 0x13, 0x38, 0x38, 0x3b, 0x3b, 0x2e,
-
3028  0x0e, 0x0e, 0x37, 0x1d, 0x1d, 0x25, 0x80, 0x00, 0x03, 0x0c, 0x00, 0x3f,
-
3029  0x33, 0x1a, 0xcc, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x7c, 0x2f,
-
3030  0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x21, 0x15, 0x21, 0x37, 0x22, 0x2e,
-
3031  0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x35, 0x33,
-
3032  0x33, 0x15, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
-
3033  0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3034  0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x03, 0x21, 0x15, 0x21,
-
3035  0x5b, 0x01, 0x49, 0xfe, 0xb7, 0x7f, 0x1d, 0x36, 0x2b, 0x1a, 0x1a, 0x2c,
-
3036  0x37, 0x1d, 0x18, 0x27, 0x1e, 0x09, 0x41, 0x07, 0x07, 0x02, 0x06, 0x43,
-
3037  0x04, 0x03, 0x01, 0x0b, 0x1f, 0x26, 0x16, 0x0b, 0x20, 0x27, 0x12, 0x14,
-
3038  0x28, 0x21, 0x16, 0x23, 0x17, 0x0c, 0x17, 0x2b, 0x1e, 0x35, 0x01, 0x10,
-
3039  0xfe, 0xf0, 0x39, 0x39, 0x64, 0x18, 0x30, 0x49, 0x31, 0x31, 0x48, 0x2f,
-
3040  0x16, 0x0e, 0x19, 0x12, 0xd5, 0x07, 0x07, 0x16, 0xfe, 0x47, 0x0d, 0x1c,
-
3041  0x0d, 0x09, 0x11, 0x10, 0x09, 0x12, 0x1b, 0x0f, 0x39, 0x24, 0x3d, 0x27,
-
3042  0x29, 0x3d, 0x23, 0x13, 0x22, 0x2f, 0x1d, 0x2c, 0x40, 0x24, 0x01, 0xa1,
-
3043  0x3a, 0x00, 0x00, 0x01, 0x00, 0x1c, 0xff, 0xf4, 0x01, 0xd5, 0x02, 0x75,
-
3044  0x00, 0x37, 0x00, 0x2f, 0x40, 0x17, 0x22, 0x0e, 0x0e, 0x25, 0x0b, 0x2c,
-
3045  0x04, 0x04, 0x29, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x00, 0x1d, 0x13, 0x05,
-
3046  0x72, 0x30, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39,
-
3047  0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x33, 0x11,
-
3048  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, 0x37, 0x33, 0x34,
-
3049  0x34, 0x36, 0x37, 0x23, 0x37, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17,
-
3050  0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x33, 0x07, 0x23, 0x06,
-
3051  0x06, 0x14, 0x15, 0x33, 0x07, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
-
3052  0x37, 0x17, 0x06, 0x06, 0x01, 0x41, 0x3b, 0x61, 0x42, 0x0b, 0x3c, 0x10,
-
3053  0x25, 0x01, 0x01, 0x36, 0x0f, 0x32, 0x0c, 0x30, 0x40, 0x49, 0x25, 0x2a,
-
3054  0x47, 0x1c, 0x1c, 0x09, 0x0b, 0x0d, 0x16, 0x22, 0x1c, 0x1a, 0x30, 0x2a,
-
3055  0x1e, 0x08, 0xf3, 0x19, 0xe4, 0x01, 0x01, 0xcb, 0x1a, 0xaa, 0x0a, 0x2c,
-
3056  0x42, 0x28, 0x14, 0x26, 0x22, 0x0f, 0x23, 0x1f, 0x48, 0x0c, 0x32, 0x64,
-
3057  0x48, 0x45, 0x09, 0x19, 0x1a, 0x0a, 0x45, 0x3a, 0x50, 0x32, 0x17, 0x1d,
-
3058  0x1e, 0x4c, 0x05, 0x11, 0x13, 0x10, 0x0a, 0x12, 0x22, 0x36, 0x25, 0x45,
-
3059  0x0a, 0x13, 0x18, 0x11, 0x45, 0x32, 0x44, 0x22, 0x0a, 0x14, 0x0f, 0x3c,
-
3060  0x1c, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0xff, 0x51, 0x01, 0xe4, 0x02, 0xa3,
-
3061  0x00, 0x2e, 0x00, 0x1f, 0x40, 0x0f, 0x2a, 0x0f, 0x0f, 0x27, 0x10, 0x10,
-
3062  0x00, 0x22, 0x16, 0x01, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b, 0x32,
-
3063  0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
3064  0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13,
-
3065  0x23, 0x35, 0x33, 0x37, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x22,
-
3066  0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x07, 0x07, 0x33, 0x15,
-
3067  0x23, 0x03, 0x0e, 0x02, 0x67, 0x1a, 0x2b, 0x13, 0x2e, 0x03, 0x05, 0x07,
-
3068  0x11, 0x11, 0x12, 0x19, 0x11, 0x03, 0x16, 0x76, 0x7a, 0x07, 0x06, 0x29,
-
3069  0x44, 0x2d, 0x23, 0x3b, 0x18, 0x24, 0x06, 0x03, 0x02, 0x02, 0x0d, 0x12,
-
3070  0x16, 0x0c, 0x16, 0x22, 0x16, 0x04, 0x05, 0x77, 0x7d, 0x18, 0x06, 0x2a,
-
3071  0x3f, 0xaf, 0x14, 0x14, 0x48, 0x01, 0x0b, 0x0d, 0x09, 0x1d, 0x39, 0x28,
-
3072  0x01, 0x23, 0x44, 0x58, 0x45, 0x58, 0x2a, 0x1d, 0x1c, 0x4a, 0x06, 0x06,
-
3073  0x0c, 0x12, 0x0e, 0x07, 0x18, 0x3d, 0x38, 0x4e, 0x44, 0xfe, 0xda, 0x48,
-
3074  0x59, 0x28, 0xff, 0xff, 0x00, 0x13, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
-
3075  0x06, 0x26, 0x00, 0x42, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x9c,
-
3076  0xff, 0x74, 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x00, 0x01, 0x01, 0x92, 0x56,
-
3077  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xb9, 0x01, 0xce,
-
3078  0x02, 0xa3, 0x00, 0x03, 0x00, 0x2f, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x2b,
-
3079  0x2b, 0x04, 0x1a, 0x01, 0x0e, 0x05, 0x72, 0x24, 0x00, 0x04, 0x0d, 0x72,
-
3080  0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x30,
-
3081  0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x26, 0x26, 0x35, 0x26, 0x3e,
-
3082  0x03, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e,
-
3083  0x03, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x35, 0x23,
-
3084  0x35, 0x33, 0x15, 0x06, 0x06, 0xe2, 0x3f, 0x0e, 0x4d, 0x6e, 0x3a, 0x01,
-
3085  0x20, 0x36, 0x3f, 0x40, 0x1a, 0x2a, 0x3e, 0x2c, 0x20, 0x0d, 0x2e, 0x06,
-
3086  0x0a, 0x11, 0x1e, 0x30, 0x25, 0x16, 0x2d, 0x27, 0x1e, 0x11, 0x2a, 0x49,
-
3087  0x2e, 0x13, 0x25, 0x24, 0x10, 0x38, 0x87, 0x2d, 0x5d, 0x47, 0x02, 0xea,
-
3088  0xfd, 0x16, 0x3a, 0x50, 0x91, 0x5f, 0x50, 0x71, 0x4a, 0x2a, 0x11, 0x10,
-
3089  0x1d, 0x28, 0x1a, 0x35, 0x02, 0x15, 0x1b, 0x19, 0x11, 0x0f, 0x23, 0x38,
-
3090  0x52, 0x36, 0x53, 0x74, 0x3d, 0x08, 0x10, 0x0b, 0x8a, 0x48, 0xfa, 0x21,
-
3091  0x22, 0x00, 0x00, 0x03, 0x00, 0x0b, 0xff, 0xfc, 0x01, 0xee, 0x02, 0x74,
-
3092  0x00, 0x03, 0x00, 0x07, 0x00, 0x1d, 0x00, 0x28, 0x40, 0x13, 0x02, 0x03,
-
3093  0x03, 0x05, 0x1b, 0x13, 0x0c, 0x08, 0x09, 0x04, 0x04, 0x0b, 0x1a, 0x0c,
-
3094  0x04, 0x72, 0x1c, 0x0b, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x12, 0x39,
-
3095  0x2f, 0x39, 0x39, 0x12, 0x39, 0x39, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
3096  0x53, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x17, 0x07, 0x15, 0x23,
-
3097  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
-
3098  0x33, 0x03, 0x13, 0x07, 0xc9, 0xff, 0xfe, 0x43, 0x55, 0x5e, 0x2f, 0x57,
-
3099  0x56, 0x0a, 0x06, 0x03, 0xf3, 0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3,
-
3100  0xf2, 0x67, 0x01, 0x45, 0x37, 0x37, 0x37, 0x37, 0x17, 0x36, 0xf8, 0x02,
-
3101  0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02, 0x01, 0x01,
-
3102  0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x24, 0xff, 0xf1,
-
3103  0x01, 0xd8, 0x02, 0x70, 0x06, 0x06, 0x02, 0x64, 0x00, 0x00, 0x00, 0x03,
-
3104  0x00, 0x19, 0x00, 0x00, 0x01, 0xc9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07,
-
3105  0x00, 0x1b, 0x00, 0x30, 0x40, 0x16, 0x02, 0x03, 0x03, 0x01, 0x00, 0x07,
-
3106  0x06, 0x06, 0x04, 0x05, 0x00, 0x00, 0x05, 0x08, 0x09, 0x04, 0x72, 0x15,
-
3107  0x15, 0x0f, 0x08, 0x0c, 0x00, 0x3f, 0x33, 0x33, 0x2f, 0x2b, 0x12, 0x39,
-
3108  0x39, 0x2f, 0x7d, 0x2f, 0x33, 0x33, 0x18, 0x2f, 0x33, 0x11, 0x33, 0x33,
-
3109  0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x25, 0x15, 0x05, 0x35, 0x25, 0x15,
-
3110  0x01, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11, 0x32, 0x3e, 0x03, 0x35,
-
3111  0x33, 0x14, 0x0e, 0x02, 0x23, 0x19, 0x01, 0x55, 0xfe, 0xab, 0x01, 0x55,
-
3112  0xfe, 0xfc, 0x5f, 0x04, 0x04, 0x1e, 0x3a, 0x30, 0x24, 0x15, 0x47, 0x23,
-
3113  0x44, 0x62, 0x3f, 0x01, 0x6f, 0x3f, 0x78, 0x3f, 0xec, 0x3f, 0x78, 0x3f,
-
3114  0xfe, 0x8d, 0x02, 0x6f, 0x06, 0x08, 0x0a, 0x0a, 0xfd, 0xfb, 0x08, 0x14,
-
3115  0x24, 0x38, 0x27, 0x37, 0x57, 0x3a, 0x1f, 0x00, 0x00, 0x02, 0x00, 0x2e,
-
3116  0x00, 0x00, 0x01, 0xc9, 0x02, 0x9c, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x17,
-
3117  0x40, 0x09, 0x00, 0x00, 0x04, 0x19, 0x19, 0x09, 0x0f, 0x01, 0x04, 0x00,
-
3118  0x2f, 0xcd, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x39, 0x2f, 0x30, 0x31, 0x77,
-
3119  0x11, 0x33, 0x11, 0x03, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34,
-
3120  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x16, 0x15,
-
3121  0x23, 0x11, 0x34, 0x36, 0x36, 0xd6, 0x49, 0x25, 0x3f, 0x5d, 0x33, 0x4b,
-
3122  0x18, 0x3a, 0x31, 0x30, 0x39, 0x18, 0x04, 0x03, 0x53, 0x2e, 0x5b, 0x60,
-
3123  0x02, 0x3c, 0xfd, 0xc4, 0x01, 0xf3, 0x32, 0x66, 0x50, 0xfe, 0x95, 0x01,
-
3124  0x6c, 0x32, 0x48, 0x27, 0x27, 0x46, 0x31, 0xfe, 0xb2, 0x0a, 0x0a, 0x08,
-
3125  0x05, 0x01, 0x6e, 0x49, 0x66, 0x36, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00,
-
3126  0x01, 0xe9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x12, 0x00, 0x21, 0x40, 0x10,
-
3127  0x03, 0x01, 0x06, 0x12, 0x10, 0x00, 0x00, 0x04, 0x0f, 0x12, 0x0c, 0x72,
-
3128  0x07, 0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
3129  0x39, 0x12, 0x39, 0x33, 0x33, 0x30, 0x31, 0x53, 0x21, 0x15, 0x21, 0x13,
-
3130  0x33, 0x13, 0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x03,
-
3131  0x11, 0x23, 0x0e, 0x01, 0xdb, 0xfe, 0x25, 0x33, 0x4c, 0xdd, 0x02, 0x45,
-
3132  0x09, 0x05, 0x03, 0x40, 0xe7, 0x46, 0x01, 0x4a, 0x33, 0x01, 0x58, 0xfe,
-
3133  0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0xd8, 0xfe,
-
3134  0x28, 0x00, 0x00, 0x05, 0x00, 0x2f, 0xff, 0xf2, 0x01, 0xea, 0x02, 0x6f,
-
3135  0x00, 0x0c, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x39,
-
3136  0x40, 0x1b, 0x54, 0x48, 0x2d, 0x39, 0x2d, 0x16, 0x16, 0x29, 0x29, 0x2c,
-
3137  0x2c, 0x21, 0x21, 0x0d, 0x28, 0x0d, 0x28, 0x0c, 0x61, 0x2d, 0x0d, 0x2d,
-
3138  0x0c, 0x0c, 0x6b, 0x00, 0x04, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x3f, 0x33,
-
3139  0x11, 0x33, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x7c,
-
3140  0x2f, 0x11, 0x33, 0x18, 0x10, 0xc4, 0x32, 0x30, 0x31, 0x53, 0x33, 0x32,
-
3141  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x23, 0x17, 0x22,
-
3142  0x26, 0x26, 0x3f, 0x02, 0x35, 0x37, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15,
-
3143  0x07, 0x07, 0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06,
-
3144  0x23, 0x03, 0x33, 0x07, 0x23, 0x05, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
-
3145  0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
3146  0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
-
3147  0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15,
-
3148  0x14, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x01, 0x32, 0x36,
-
3149  0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x15, 0x2f, 0x52, 0x34, 0x42,
-
3150  0x20, 0x21, 0x40, 0x30, 0x17, 0x40, 0xcd, 0x1f, 0x25, 0x0e, 0x02, 0x06,
-
3151  0x01, 0x37, 0x0a, 0x01, 0x04, 0x07, 0x01, 0x04, 0x01, 0x04, 0x0e, 0x0e,
-
3152  0x0d, 0x19, 0x0f, 0x13, 0x12, 0x28, 0x16, 0x76, 0x9f, 0x08, 0x9e, 0x01,
-
3153  0x07, 0x20, 0x37, 0x16, 0x1c, 0x04, 0x06, 0x03, 0x05, 0x09, 0x0b, 0x19,
-
3154  0x11, 0x0f, 0x15, 0x0a, 0x09, 0x15, 0x14, 0x27, 0x2e, 0x17, 0x28, 0x19,
-
3155  0x20, 0x2f, 0x14, 0x1e, 0x06, 0x06, 0x07, 0x0a, 0x09, 0x11, 0x0b, 0x13,
-
3156  0x11, 0x17, 0x1d, 0x1e, 0x25, 0x10, 0x36, 0x2e, 0xfe, 0xf8, 0x20, 0x26,
-
3157  0x12, 0x12, 0x26, 0x1f, 0x10, 0x02, 0x6f, 0x2a, 0x44, 0x28, 0x2d, 0x47,
-
3158  0x2a, 0xfe, 0xc5, 0x0c, 0x1c, 0x38, 0x2d, 0x77, 0x08, 0x3d, 0x0a, 0x02,
-
3159  0x08, 0x07, 0x0f, 0x11, 0x19, 0x08, 0x73, 0x20, 0x24, 0x0e, 0x10, 0x0e,
-
3160  0x30, 0x11, 0x11, 0x01, 0x10, 0x34, 0xde, 0x18, 0x17, 0x35, 0x09, 0x03,
-
3161  0x08, 0x10, 0x0c, 0x09, 0x08, 0x08, 0x0c, 0x08, 0x09, 0x0e, 0x0e, 0x06,
-
3162  0x0d, 0x25, 0x21, 0x17, 0x20, 0x11, 0x14, 0x18, 0x29, 0x08, 0x04, 0x08,
-
3163  0x0c, 0x0b, 0x05, 0x05, 0x0d, 0x0a, 0x0b, 0x10, 0x0b, 0x0b, 0x17, 0x1c,
-
3164  0x14, 0x26, 0x32, 0x01, 0x80, 0x18, 0x2e, 0x1f, 0x1a, 0x29, 0x1a, 0xc2,
-
3165  0x00, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x6f, 0x00, 0x07,
-
3166  0x00, 0x0f, 0x00, 0x1d, 0x00, 0x28, 0x00, 0x25, 0x40, 0x10, 0x1c, 0x1e,
-
3167  0x40, 0x08, 0x09, 0x80, 0x00, 0x01, 0x01, 0x28, 0x28, 0x11, 0x04, 0x72,
-
3168  0x10, 0x0c, 0x00, 0x3f, 0x2b, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x33, 0x1a,
-
3169  0x18, 0xde, 0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
-
3170  0x15, 0x23, 0x27, 0x21, 0x07, 0x07, 0x35, 0x21, 0x15, 0x23, 0x27, 0x21,
-
3171  0x07, 0x03, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23,
-
3172  0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3173  0x23, 0x0d, 0x01, 0xe5, 0x56, 0x0e, 0xfe, 0xe0, 0x0c, 0x55, 0x01, 0xe5,
-
3174  0x54, 0x10, 0xfe, 0xdb, 0x0c, 0x27, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30,
-
3175  0x4a, 0x33, 0x7b, 0x73, 0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01,
-
3176  0xce, 0x29, 0x29, 0x01, 0x01, 0x4d, 0x29, 0x29, 0x01, 0x01, 0xfe, 0x7f,
-
3177  0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b, 0xfe, 0xf2, 0x01,
-
3178  0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x00, 0x04, 0x00, 0x12,
-
3179  0x00, 0x00, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07, 0x00, 0x15,
-
3180  0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x04, 0x05, 0x02, 0x03, 0x03, 0x16,
-
3181  0x14, 0x14, 0x08, 0x20, 0x09, 0x04, 0x72, 0x08, 0x0c, 0x00, 0x3f, 0x2b,
-
3182  0x32, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0xcc, 0x32, 0x30, 0x31,
-
3183  0x53, 0x35, 0x33, 0x15, 0x07, 0x35, 0x21, 0x15, 0x07, 0x11, 0x33, 0x32,
-
3184  0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33, 0x32,
-
3185  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x12, 0x62, 0x62, 0x01,
-
3186  0x1a, 0xeb, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30, 0x4a, 0x33, 0x7b, 0x73,
-
3187  0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01, 0x0e, 0x49, 0x49, 0x80,
-
3188  0x48, 0x48, 0x8e, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
-
3189  0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x03,
-
3190  0x00, 0x34, 0x00, 0x00, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x1c,
-
3191  0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x14, 0x18, 0x18, 0x00, 0x1e, 0x80,
-
3192  0x09, 0x19, 0x19, 0x0c, 0x1a, 0x04, 0x72, 0x16, 0x0c, 0x00, 0x3f, 0x2b,
-
3193  0x32, 0x32, 0x11, 0x33, 0x1a, 0xde, 0xcc, 0x32, 0x11, 0x33, 0x30, 0x31,
-
3194  0x53, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35,
-
3195  0x17, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x13, 0x23, 0x03,
-
3196  0x23, 0x03, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x35, 0x83, 0x29,
-
3197  0x33, 0x18, 0x18, 0x33, 0x29, 0x84, 0x7c, 0x4b, 0x5d, 0x2b, 0x1f, 0x38,
-
3198  0x26, 0x91, 0x5e, 0x87, 0x7d, 0x01, 0x01, 0x98, 0xfe, 0x68, 0x01, 0x98,
-
3199  0x01, 0x54, 0x1a, 0x2e, 0x1e, 0x1f, 0x30, 0x1c, 0x4a, 0x21, 0x27, 0x47,
-
3200  0x30, 0x22, 0x41, 0x30, 0x09, 0xfe, 0xec, 0x01, 0x0d, 0x01, 0x23, 0x3f,
-
3201  0x3f, 0x98, 0x40, 0x40, 0x00, 0x01, 0x00, 0x24, 0xff, 0xf1, 0x01, 0xd8,
-
3202  0x02, 0x70, 0x00, 0x3d, 0x00, 0x2b, 0x40, 0x16, 0x0b, 0x20, 0x20, 0x08,
-
3203  0x23, 0x23, 0x12, 0x2f, 0x36, 0x0d, 0x72, 0x19, 0x12, 0x04, 0x72, 0x2a,
-
3204  0x3b, 0x3b, 0x01, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
-
3205  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
-
3206  0x31, 0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x23, 0x35, 0x33,
-
3207  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26,
-
3208  0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x33, 0x15, 0x23,
-
3209  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x36, 0x1e, 0x02, 0x33, 0x32,
-
3210  0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
3211  0x42, 0x1e, 0x29, 0x2e, 0x15, 0x06, 0x08, 0x41, 0x32, 0x03, 0x03, 0x30,
-
3212  0x52, 0x30, 0x27, 0x42, 0x1d, 0x31, 0x10, 0x29, 0x2a, 0x19, 0x26, 0x15,
-
3213  0x03, 0x04, 0x80, 0x71, 0x07, 0x05, 0x07, 0x0f, 0x0b, 0x19, 0x2f, 0x2c,
-
3214  0x2c, 0x15, 0x12, 0x23, 0x13, 0x1d, 0x1b, 0x35, 0x1c, 0x0f, 0x2c, 0x34,
-
3215  0x31, 0x15, 0x18, 0x39, 0x0a, 0x43, 0x14, 0x28, 0x3b, 0x2f, 0x12, 0x2e,
-
3216  0x1d, 0x44, 0x10, 0x1d, 0x0e, 0x38, 0x50, 0x2d, 0x1b, 0x1b, 0x3e, 0x14,
-
3217  0x1d, 0x1c, 0x32, 0x23, 0x0c, 0x1d, 0x13, 0x44, 0x1a, 0x2e, 0x13, 0x18,
-
3218  0x2c, 0x28, 0x13, 0x03, 0x0b, 0x11, 0x0d, 0x0f, 0x0f, 0x3d, 0x16, 0x16,
-
3219  0x0e, 0x11, 0x0e, 0x14, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00, 0x01, 0xe9,
-
3220  0x02, 0x6f, 0x00, 0x03, 0x00, 0x10, 0x00, 0x26, 0x40, 0x12, 0x01, 0x0f,
-
3221  0x05, 0x07, 0x0a, 0x04, 0x00, 0x00, 0x04, 0x0b, 0x08, 0x08, 0x05, 0x04,
-
3222  0x72, 0x0e, 0x04, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x2f, 0x32, 0x11,
-
3223  0x39, 0x2f, 0x12, 0x39, 0x39, 0x12, 0x39, 0x33, 0x30, 0x31, 0x53, 0x35,
-
3224  0x21, 0x15, 0x01, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33, 0x03,
-
3225  0x23, 0x03, 0x03, 0x0e, 0x01, 0xdb, 0xfe, 0x8e, 0x54, 0x44, 0x35, 0x54,
-
3226  0x1f, 0x55, 0x2c, 0x3f, 0x54, 0x25, 0x5a, 0x5e, 0x01, 0x1e, 0x2c, 0x2c,
-
3227  0xfe, 0xe2, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe, 0x93, 0x01, 0x9c,
-
3228  0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0x05, 0x00, 0x1e, 0x00, 0x00,
-
3229  0x01, 0xd8, 0x02, 0x70, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
3230  0x00, 0x18, 0x00, 0x35, 0x40, 0x1a, 0x07, 0x01, 0x01, 0x04, 0x02, 0x0f,
-
3231  0x09, 0x09, 0x0c, 0x0a, 0x12, 0x18, 0x15, 0x03, 0x13, 0x02, 0x0a, 0x02,
-
3232  0x0a, 0x11, 0x16, 0x13, 0x04, 0x72, 0x11, 0x0c, 0x00, 0x3f, 0x2b, 0x32,
-
3233  0x12, 0x39, 0x39, 0x2f, 0x7c, 0x2f, 0x12, 0x17, 0x39, 0x11, 0x33, 0x33,
-
3234  0x11, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x23, 0x35,
-
3235  0x3b, 0x02, 0x15, 0x23, 0x07, 0x23, 0x35, 0x3b, 0x02, 0x15, 0x23, 0x17,
-
3236  0x23, 0x11, 0x03, 0x33, 0x17, 0x37, 0x33, 0x03, 0xe8, 0x97, 0x96, 0x35,
-
3237  0x91, 0x91, 0x34, 0x97, 0x97, 0x34, 0x91, 0x91, 0x0f, 0x52, 0xbb, 0x5d,
-
3238  0x88, 0x7c, 0x59, 0xad, 0xdb, 0x3c, 0x3c, 0x76, 0x3b, 0x3b, 0x65, 0x01,
-
3239  0x23, 0x01, 0x4d, 0xfd, 0xfc, 0xfe, 0xb6, 0x00, 0x00, 0x01, 0x00, 0x26,
-
3240  0x00, 0x83, 0x01, 0xce, 0x02, 0x27, 0x00, 0x0e, 0x00, 0x1b, 0x40, 0x0f,
-
3241  0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09, 0x06, 0x0d,
-
3242  0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30,
-
3243  0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17,
-
3244  0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b, 0x12, 0x60,
-
3245  0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x83, 0x35, 0x90, 0x32, 0x4d,
-
3246  0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00, 0x00, 0x01,
-
3247  0x00, 0x84, 0x00, 0x9b, 0x01, 0x6f, 0x01, 0x7e, 0x00, 0x0f, 0x00, 0x08,
-
3248  0xb1, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26,
-
3249  0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
3250  0xf9, 0x20, 0x35, 0x20, 0x21, 0x35, 0x1f, 0x1e, 0x36, 0x22, 0x20, 0x36,
-
3251  0x9b, 0x1e, 0x34, 0x20, 0x20, 0x33, 0x1e, 0x1e, 0x33, 0x20, 0x1f, 0x34,
-
3252  0x1f, 0x00, 0x00, 0x01, 0x00, 0x33, 0xff, 0x65, 0x01, 0xb7, 0x03, 0x0c,
-
3253  0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
3254  0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x6f, 0x3c, 0x01, 0x48,
-
3255  0x3c, 0x9b, 0x15, 0x03, 0x92, 0x16, 0x00, 0x02, 0x00, 0x27, 0x00, 0x00,
-
3256  0x01, 0xc0, 0x01, 0xc9, 0x00, 0x15, 0x00, 0x19, 0x00, 0x14, 0xb6, 0x18,
-
3257  0x19, 0x19, 0x0b, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32, 0x7c, 0x2f, 0x33,
-
3258  0x39, 0x18, 0x2f, 0x33, 0x30, 0x31, 0x61, 0x22, 0x26, 0x26, 0x35, 0x34,
-
3259  0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
3260  0x16, 0x33, 0x33, 0x15, 0x25, 0x27, 0x21, 0x15, 0x01, 0x11, 0x48, 0x69,
-
3261  0x39, 0x3b, 0x68, 0x45, 0xb1, 0xa1, 0x41, 0x59, 0x2d, 0x2b, 0x58, 0x44,
-
3262  0xa1, 0xfe, 0x85, 0x01, 0x01, 0x7c, 0x36, 0x66, 0x45, 0x46, 0x68, 0x3a,
-
3263  0x30, 0x2a, 0x51, 0x3d, 0x3c, 0x4f, 0x26, 0x30, 0xca, 0x30, 0x30, 0x00,
-
3264  0xff, 0xff, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb, 0x01, 0x65, 0x06, 0x06,
-
3265  0x02, 0x6d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x00, 0x68, 0x01, 0xcb,
-
3266  0x02, 0x0d, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x05, 0x04, 0x04, 0x0a,
-
3267  0x00, 0xc0, 0x01, 0x00, 0x2f, 0x1a, 0xcd, 0x33, 0x33, 0x10, 0xcd, 0x33,
-
3268  0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15,
-
3269  0x23, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8, 0xa8, 0x68, 0xb7, 0x46, 0xa8,
-
3270  0xa8, 0x46, 0xb7, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb,
-
3271  0x01, 0x65, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
3272  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x2b, 0x01, 0xa0, 0x01, 0x1f, 0x46,
-
3273  0x46, 0x00, 0x00, 0x01, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
-
3274  0x00, 0x0b, 0x00, 0x16, 0x40, 0x0a, 0x01, 0x04, 0x0a, 0x07, 0x04, 0x02,
-
3275  0x08, 0x06, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x12, 0x17, 0x39,
-
3276  0x30, 0x31, 0x65, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17,
-
3277  0x07, 0x17, 0x01, 0x7a, 0x7c, 0x7a, 0x34, 0x7b, 0x7b, 0x37, 0x79, 0x7a,
-
3278  0x39, 0x7f, 0x7c, 0x90, 0x82, 0x7e, 0x34, 0x80, 0x82, 0x36, 0x80, 0x7f,
-
3279  0x33, 0x83, 0x83, 0x00, 0x00, 0x03, 0x00, 0x44, 0x00, 0x64, 0x01, 0xb2,
-
3280  0x02, 0x0e, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x17, 0x40, 0x09,
-
3281  0x10, 0x16, 0x01, 0x80, 0x0a, 0x04, 0x04, 0x00, 0x01, 0x00, 0x2f, 0x33,
-
3282  0x33, 0x2f, 0x33, 0x1a, 0x10, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
-
3283  0x15, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
3284  0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
3285  0x06, 0x44, 0x01, 0x6e, 0xb3, 0x14, 0x1c, 0x1d, 0x13, 0x15, 0x1c, 0x1c,
-
3286  0x14, 0x14, 0x1e, 0x1f, 0x13, 0x13, 0x1d, 0x1c, 0x01, 0x13, 0x4e, 0x4e,
-
3287  0x99, 0x1c, 0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0xfe, 0xb8, 0x1c,
-
3288  0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x2c,
-
3289  0x00, 0xb1, 0x01, 0xca, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e,
-
3290  0xb4, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33,
-
3291  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2c, 0x01,
-
3292  0x9e, 0xfe, 0x62, 0x01, 0x9e, 0x01, 0x81, 0x46, 0x46, 0xd0, 0x46, 0x46,
-
3293  0x00, 0x03, 0x00, 0x2c, 0x00, 0x1c, 0x01, 0xca, 0x02, 0x5d, 0x00, 0x03,
-
3294  0x00, 0x07, 0x00, 0x0b, 0x00, 0x21, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x08,
-
3295  0x08, 0x09, 0x09, 0x04, 0x01, 0x00, 0x00, 0x05, 0x05, 0x04, 0x00, 0x2f,
-
3296  0x33, 0x11, 0x33, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f,
-
3297  0x33, 0x30, 0x31, 0x41, 0x17, 0x01, 0x27, 0x03, 0x35, 0x21, 0x15, 0x05,
-
3298  0x35, 0x21, 0x15, 0x01, 0x80, 0x31, 0xfe, 0xc4, 0x31, 0x18, 0x01, 0x9e,
-
3299  0xfe, 0x62, 0x01, 0x9e, 0x02, 0x5d, 0x1d, 0xfd, 0xdc, 0x1b, 0x01, 0x4a,
-
3300  0x46, 0x46, 0xd0, 0x46, 0x46, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x2b,
-
3301  0x01, 0xd4, 0x02, 0x3c, 0x00, 0x06, 0x00, 0x12, 0xb7, 0x06, 0x02, 0x05,
-
3302  0x03, 0x03, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39,
-
3303  0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x27, 0x01, 0x52,
-
3304  0xfe, 0xb0, 0x01, 0xab, 0x2b, 0x57, 0xbe, 0xaa, 0x52, 0xe1, 0x34, 0x00,
-
3305  0x00, 0x01, 0x00, 0x22, 0x00, 0x2b, 0x01, 0xcf, 0x02, 0x3c, 0x00, 0x06,
-
3306  0x00, 0x12, 0xb7, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x06, 0x00, 0x00,
-
3307  0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25,
-
3308  0x15, 0x05, 0x05, 0x01, 0xcf, 0xfe, 0x53, 0x01, 0xaa, 0xfe, 0xb0, 0x01,
-
3309  0x53, 0x2b, 0xfc, 0x34, 0xe1, 0x52, 0xaa, 0xbd, 0x00, 0x02, 0x00, 0x1f,
-
3310  0x00, 0x13, 0x01, 0xcb, 0x02, 0x25, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b,
-
3311  0x40, 0x0c, 0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x01, 0x00, 0x80,
-
3312  0x09, 0x08, 0x00, 0x2f, 0x33, 0x1a, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x17,
-
3313  0x39, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x03, 0x21,
-
3314  0x35, 0x21, 0x1f, 0x01, 0x50, 0xfe, 0xb0, 0x01, 0xac, 0x0c, 0xfe, 0x61,
-
3315  0x01, 0x9f, 0x76, 0x4d, 0x91, 0x80, 0x51, 0xb6, 0x33, 0xfe, 0xd7, 0x45,
-
3316  0x00, 0x02, 0x00, 0x22, 0x00, 0x13, 0x01, 0xcd, 0x02, 0x25, 0x00, 0x06,
-
3317  0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03,
-
3318  0x03, 0x06, 0x00, 0x80, 0x08, 0x07, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32,
-
3319  0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15,
-
3320  0x0d, 0x02, 0x35, 0x21, 0x15, 0x01, 0xcd, 0xfe, 0x55, 0x01, 0xab, 0xfe,
-
3321  0xb0, 0x01, 0x50, 0xfe, 0x60, 0x01, 0xa0, 0x76, 0xc6, 0x33, 0xb6, 0x51,
-
3322  0x80, 0x91, 0xb0, 0x45, 0x45, 0x00, 0x00, 0x02, 0x00, 0x2b, 0x00, 0x0c,
-
3323  0x01, 0xcb, 0x02, 0x40, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3324  0x07, 0x05, 0x04, 0x04, 0x01, 0x0c, 0x0d, 0x0d, 0x00, 0xc0, 0x0a, 0x01,
-
3325  0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x32, 0x2f, 0x33, 0x11, 0x33, 0x10, 0xcd,
-
3326  0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33,
-
3327  0x15, 0x23, 0x15, 0x07, 0x35, 0x21, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8,
-
3328  0xa8, 0xf7, 0x01, 0x9f, 0x9a, 0xb8, 0x46, 0xa8, 0xa8, 0x46, 0xb8, 0x8e,
-
3329  0x49, 0x49, 0xff, 0xff, 0x00, 0x3f, 0x00, 0xae, 0x01, 0xd0, 0x01, 0xd1,
-
3330  0x06, 0x26, 0x02, 0x78, 0x00, 0x54, 0x02, 0x06, 0x02, 0x78, 0x00, 0xaa,
-
3331  0x00, 0x01, 0x00, 0x3f, 0x01, 0x04, 0x01, 0xd0, 0x01, 0x7d, 0x00, 0x19,
-
3332  0x00, 0x1c, 0x40, 0x0c, 0x16, 0x15, 0x15, 0x05, 0x0d, 0x80, 0x09, 0x08,
-
3333  0x08, 0x12, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x32, 0x11, 0x33, 0x1a, 0xcd,
-
3334  0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x22, 0x2e, 0x02, 0x23, 0x22,
-
3335  0x06, 0x07, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
3336  0x37, 0x17, 0x0e, 0x02, 0x01, 0x5b, 0x1a, 0x28, 0x21, 0x20, 0x14, 0x18,
-
3337  0x24, 0x11, 0x38, 0x0c, 0x24, 0x31, 0x1f, 0x1a, 0x26, 0x21, 0x21, 0x14,
-
3338  0x16, 0x20, 0x12, 0x33, 0x11, 0x24, 0x28, 0x01, 0x04, 0x10, 0x16, 0x10,
-
3339  0x14, 0x1a, 0x21, 0x17, 0x24, 0x15, 0x10, 0x16, 0x10, 0x17, 0x1b, 0x28,
-
3340  0x1b, 0x22, 0x10, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x9c, 0x01, 0xa1,
-
3341  0x01, 0x61, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x02, 0x00, 0x03, 0x00, 0x2f,
-
3342  0xcc, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23, 0x35, 0x21, 0x15, 0x01, 0x54,
-
3343  0xfc, 0x01, 0x49, 0x9c, 0x7c, 0x49, 0xc5, 0x00, 0x00, 0x01, 0x00, 0x56,
-
3344  0x01, 0x53, 0x01, 0x99, 0x02, 0x6f, 0x00, 0x06, 0x00, 0x17, 0x40, 0x0a,
-
3345  0x06, 0x00, 0x02, 0x02, 0x72, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f,
-
3346  0x32, 0x32, 0x11, 0x33, 0x2b, 0x12, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37,
-
3347  0x33, 0x17, 0x07, 0x27, 0x94, 0x3e, 0x99, 0x21, 0x89, 0x40, 0x5d, 0x01,
-
3348  0x53, 0x1e, 0xfe, 0xfd, 0x1f, 0xa8, 0x00, 0x03, 0x00, 0x0c, 0x00, 0xac,
-
3349  0x01, 0xea, 0x01, 0xaf, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x27,
-
3350  0x40, 0x12, 0x2f, 0x18, 0x18, 0x07, 0x33, 0x1c, 0x15, 0x04, 0x0a, 0x1f,
-
3351  0x12, 0x12, 0x0a, 0x37, 0x04, 0x04, 0x27, 0x0a, 0x00, 0x2f, 0x33, 0x33,
-
3352  0x11, 0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x12, 0x17, 0x39, 0x33, 0x11,
-
3353  0x33, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06,
-
3354  0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
3355  0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x05, 0x26, 0x26, 0x23, 0x22,
-
3356  0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x34,
-
3357  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
3358  0x36, 0x01, 0xea, 0x1f, 0x37, 0x24, 0x23, 0x3a, 0x19, 0x19, 0x39, 0x21,
-
3359  0x23, 0x37, 0x21, 0x20, 0x38, 0x23, 0x22, 0x3b, 0x18, 0x18, 0x38, 0x25,
-
3360  0x23, 0x37, 0x1f, 0xfe, 0xec, 0x12, 0x25, 0x15, 0x12, 0x1a, 0x0e, 0x0e,
-
3361  0x1a, 0x12, 0x11, 0x1a, 0x16, 0xdc, 0x0f, 0x19, 0x11, 0x0f, 0x1b, 0x17,
-
3362  0x0d, 0x0c, 0x19, 0x1a, 0x0e, 0x12, 0x1a, 0x0e, 0x01, 0x2d, 0x24, 0x3a,
-
3363  0x23, 0x24, 0x26, 0x24, 0x25, 0x21, 0x3a, 0x26, 0x25, 0x3a, 0x22, 0x20,
-
3364  0x29, 0x25, 0x24, 0x20, 0x3b, 0x26, 0x23, 0x1c, 0x10, 0x1c, 0x13, 0x11,
-
3365  0x1d, 0x10, 0x0f, 0x1c, 0x13, 0x12, 0x1d, 0x0f, 0x0d, 0x1c, 0x15, 0x15,
-
3366  0x1d, 0x0e, 0x11, 0x1d, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x68, 0x01, 0xe8,
-
3367  0x02, 0x25, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09,
-
3368  0x03, 0x02, 0x02, 0x22, 0x0e, 0x01, 0x00, 0x18, 0x04, 0x00, 0x2f, 0x33,
-
3369  0x33, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27, 0x01,
-
3370  0x17, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
3371  0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
-
3372  0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x2f, 0x21, 0x01,
-
3373  0xba, 0x20, 0xee, 0x2d, 0x4f, 0x3d, 0x22, 0x22, 0x3d, 0x4f, 0x2d, 0x2d,
-
3374  0x50, 0x3d, 0x23, 0x23, 0x3d, 0x50, 0x2d, 0x21, 0x39, 0x2a, 0x19, 0x19,
-
3375  0x2a, 0x39, 0x21, 0x20, 0x39, 0x2a, 0x18, 0x18, 0x2a, 0x39, 0x68, 0x24,
-
3376  0x01, 0x99, 0x24, 0xfe, 0x69, 0x22, 0x3d, 0x50, 0x2d, 0x2d, 0x50, 0x3c,
-
3377  0x22, 0x22, 0x3c, 0x50, 0x2d, 0x2d, 0x50, 0x3d, 0x22, 0x3f, 0x19, 0x2b,
-
3378  0x39, 0x20, 0x20, 0x38, 0x2a, 0x19, 0x19, 0x2a, 0x38, 0x20, 0x20, 0x39,
-
3379  0x2b, 0x19, 0x00, 0x01, 0x00, 0x42, 0xff, 0x10, 0x01, 0xb6, 0x02, 0xf8,
-
3380  0x00, 0x1f, 0x00, 0x0c, 0xb3, 0x17, 0x10, 0x07, 0x00, 0x00, 0x2f, 0x32,
-
3381  0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33,
-
3382  0x32, 0x36, 0x36, 0x35, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
-
3383  0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06,
-
3384  0x8e, 0x15, 0x25, 0x12, 0x0f, 0x20, 0x11, 0x19, 0x24, 0x13, 0x25, 0x46,
-
3385  0x32, 0x16, 0x23, 0x0e, 0x0e, 0x21, 0x0f, 0x19, 0x24, 0x13, 0x26, 0x46,
-
3386  0xf0, 0x07, 0x08, 0x48, 0x06, 0x08, 0x17, 0x33, 0x28, 0x02, 0x73, 0x40,
-
3387  0x52, 0x28, 0x08, 0x06, 0x48, 0x06, 0x07, 0x16, 0x35, 0x30, 0xfd, 0x8f,
-
3388  0x3d, 0x50, 0x26, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x01, 0xe7,
-
3389  0x02, 0xa3, 0x00, 0x29, 0x00, 0x1f, 0x40, 0x0f, 0x00, 0x16, 0x01, 0x72,
-
3390  0x09, 0x22, 0x22, 0x1e, 0x1e, 0x21, 0x21, 0x0c, 0x0b, 0x12, 0x72, 0x00,
-
3391  0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x32, 0x30,
-
3392  0x31, 0x53, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x15, 0x23,
-
3393  0x35, 0x33, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
3394  0x15, 0x14, 0x06, 0x06, 0x07, 0x33, 0x15, 0x23, 0x35, 0x3e, 0x02, 0x35,
-
3395  0x34, 0x26, 0x26, 0xff, 0x2f, 0x44, 0x25, 0x12, 0x21, 0x2b, 0x19, 0xbd,
-
3396  0x70, 0x1b, 0x2e, 0x21, 0x13, 0x39, 0x69, 0x49, 0x46, 0x68, 0x3a, 0x1f,
-
3397  0x38, 0x27, 0x71, 0xbe, 0x29, 0x35, 0x1a, 0x23, 0x43, 0x02, 0x50, 0x37,
-
3398  0x6a, 0x4f, 0x2e, 0x52, 0x45, 0x32, 0x10, 0x59, 0x4d, 0x15, 0x38, 0x4a,
-
3399  0x57, 0x32, 0x66, 0x8a, 0x46, 0x45, 0x8a, 0x68, 0x42, 0x6e, 0x53, 0x1c,
-
3400  0x4d, 0x59, 0x17, 0x4c, 0x67, 0x3d, 0x50, 0x6a, 0x36, 0x00, 0x00, 0x02,
-
3401  0x00, 0x1d, 0x00, 0x01, 0x01, 0xd6, 0x02, 0x9c, 0x00, 0x05, 0x00, 0x09,
-
3402  0x00, 0x19, 0x40, 0x0c, 0x04, 0x01, 0x09, 0x09, 0x07, 0x00, 0x03, 0x12,
-
3403  0x72, 0x00, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39, 0x32, 0x11, 0x33,
-
3404  0x33, 0x30, 0x31, 0x41, 0x13, 0x15, 0x21, 0x35, 0x13, 0x13, 0x03, 0x31,
-
3405  0x03, 0x01, 0x2f, 0xa7, 0xfe, 0x47, 0xa9, 0xb9, 0x84, 0x87, 0x02, 0x9c,
-
3406  0xfd, 0x98, 0x33, 0x34, 0x02, 0x67, 0xfd, 0xab, 0x02, 0x0f, 0xfd, 0xf1,
-
3407  0x00, 0x01, 0x00, 0x32, 0xff, 0x42, 0x01, 0xc4, 0x02, 0x6f, 0x00, 0x0b,
-
3408  0x00, 0x10, 0xb6, 0x08, 0x00, 0x0a, 0x01, 0x02, 0x72, 0x00, 0x00, 0x2f,
-
3409  0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x14, 0x06, 0x06,
-
3410  0x07, 0x11, 0x23, 0x11, 0x23, 0x11, 0x32, 0x01, 0x92, 0x03, 0x02, 0x01,
-
3411  0x56, 0xdf, 0xbe, 0x03, 0x2d, 0x05, 0x07, 0x08, 0x06, 0xfc, 0xed, 0x02,
-
3412  0xe8, 0xfd, 0x18, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0x55, 0x01, 0xd4,
-
3413  0x02, 0x9c, 0x00, 0x0d, 0x00, 0x1d, 0x40, 0x0c, 0x08, 0x03, 0x07, 0x07,
-
3414  0x09, 0x02, 0x04, 0x0a, 0x01, 0x0b, 0x0b, 0x00, 0x00, 0x2f, 0x32, 0x11,
-
3415  0x33, 0x33, 0x2f, 0x39, 0x39, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x57,
-
3416  0x35, 0x13, 0x03, 0x35, 0x21, 0x15, 0x21, 0x37, 0x13, 0x03, 0x27, 0x21,
-
3417  0x15, 0x20, 0xc5, 0xc3, 0x01, 0xad, 0xfe, 0x96, 0x17, 0xbf, 0xc7, 0x16,
-
3418  0x01, 0x76, 0xab, 0x3d, 0x01, 0x67, 0x01, 0x62, 0x41, 0x46, 0x08, 0xfe,
-
3419  0x9d, 0xfe, 0x99, 0x07, 0x46, 0x00, 0x00, 0x01, 0x00, 0x0b, 0xff, 0xf9,
-
3420  0x01, 0xeb, 0x02, 0xa3, 0x00, 0x08, 0x00, 0x10, 0xb6, 0x03, 0x02, 0x02,
-
3421  0x06, 0x00, 0x13, 0x72, 0x00, 0x2b, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
3422  0x57, 0x03, 0x23, 0x35, 0x33, 0x17, 0x13, 0x33, 0x03, 0xc9, 0x67, 0x57,
-
3423  0x86, 0x55, 0xbc, 0x49, 0xe4, 0x07, 0x01, 0x1b, 0x41, 0xee, 0x02, 0x3c,
-
3424  0xfd, 0x56, 0x00, 0x01, 0x00, 0x15, 0xff, 0x5d, 0x01, 0xee, 0x01, 0xcc,
-
3425  0x00, 0x32, 0x00, 0x1c, 0x40, 0x0e, 0x32, 0x2d, 0x0e, 0x0e, 0x29, 0x0b,
-
3426  0x72, 0x19, 0x21, 0x0b, 0x13, 0x07, 0x06, 0x72, 0x00, 0x2b, 0x32, 0x3f,
-
3427  0x33, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x57, 0x34, 0x3e, 0x03,
-
3428  0x35, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35,
-
3429  0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x17,
-
3430  0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26,
-
3431  0x26, 0x27, 0x14, 0x14, 0x06, 0x06, 0x15, 0x15, 0x04, 0x05, 0x06, 0x04,
-
3432  0x51, 0x0e, 0x17, 0x1f, 0x12, 0x1d, 0x28, 0x14, 0x4f, 0x08, 0x10, 0x0c,
-
3433  0x0c, 0x1b, 0x06, 0x06, 0x20, 0x14, 0x2d, 0x1a, 0x13, 0x22, 0x16, 0x04,
-
3434  0x0a, 0x25, 0x2d, 0x18, 0x16, 0x2c, 0x22, 0x0a, 0x01, 0x01, 0xa3, 0x11,
-
3435  0x40, 0x52, 0x58, 0x52, 0x21, 0x01, 0x01, 0xfe, 0xed, 0x26, 0x33, 0x1d,
-
3436  0x0d, 0x21, 0x3c, 0x29, 0x01, 0x10, 0xfe, 0xab, 0x14, 0x1b, 0x0d, 0x16,
-
3437  0x0c, 0x0d, 0x3c, 0x1d, 0x1b, 0x13, 0x1f, 0x13, 0x17, 0x1e, 0x10, 0x0e,
-
3438  0x1d, 0x16, 0x19, 0x38, 0x38, 0x37, 0x1a, 0x00, 0x00, 0x02, 0x00, 0x1a,
-
3439  0xff, 0xf5, 0x01, 0xda, 0x02, 0x95, 0x00, 0x24, 0x00, 0x38, 0x00, 0x17,
-
3440  0x40, 0x0c, 0x14, 0x1b, 0x01, 0x72, 0x2f, 0x09, 0x06, 0x72, 0x25, 0x00,
-
3441  0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57,
-
3442  0x22, 0x26, 0x26, 0x27, 0x26, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
-
3443  0x36, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36,
-
3444  0x33, 0x32, 0x16, 0x16, 0x17, 0x16, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02,
-
3445  0x37, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x17, 0x1e, 0x03, 0xe0, 0x3b,
-
3446  0x52, 0x2d, 0x06, 0x06, 0x14, 0x32, 0x55, 0x3b, 0x20, 0x33, 0x2c, 0x10,
-
3447  0x02, 0x03, 0x01, 0x05, 0x21, 0x3e, 0x32, 0x1b, 0x41, 0x19, 0x08, 0x1e,
-
3448  0x41, 0x1e, 0x4d, 0x63, 0x35, 0x08, 0x06, 0x08, 0x1e, 0x3a, 0x5b, 0x3d,
-
3449  0x28, 0x38, 0x24, 0x14, 0x03, 0x0b, 0x19, 0x1f, 0x21, 0x13, 0x29, 0x3a,
-
3450  0x22, 0x0c, 0x04, 0x03, 0x12, 0x1b, 0x24, 0x0b, 0x2f, 0x53, 0x34, 0x31,
-
3451  0x63, 0x52, 0x32, 0x12, 0x22, 0x1a, 0x0d, 0x1a, 0x0c, 0x32, 0x4f, 0x2c,
-
3452  0x0e, 0x0e, 0x43, 0x0e, 0x0b, 0x3d, 0x6f, 0x4b, 0x37, 0x76, 0x6e, 0x59,
-
3453  0x35, 0x40, 0x2c, 0x49, 0x57, 0x2c, 0x17, 0x22, 0x15, 0x0a, 0x29, 0x42,
-
3454  0x4d, 0x25, 0x1c, 0x2c, 0x1d, 0x0e, 0x00, 0x05, 0x00, 0x19, 0xff, 0xf6,
-
3455  0x01, 0xe3, 0x02, 0x7a, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33,
-
3456  0x00, 0x44, 0x00, 0x25, 0x40, 0x12, 0x34, 0x24, 0x24, 0x3d, 0x01, 0x01,
-
3457  0x2c, 0x05, 0x72, 0x1c, 0x0c, 0x0c, 0x14, 0x03, 0x03, 0x04, 0x0d, 0x72,
-
3458  0x00, 0x2b, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x2f, 0x32,
-
3459  0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x01, 0x33, 0x01, 0x05, 0x22, 0x26,
-
3460  0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
-
3461  0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
3462  0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
-
3463  0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
-
3464  0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
3465  0x16, 0x2a, 0x01, 0x5b, 0x42, 0xfe, 0xa2, 0x01, 0x09, 0x1f, 0x34, 0x20,
-
3466  0x20, 0x34, 0x1f, 0x1f, 0x34, 0x1e, 0x1e, 0x34, 0x1e, 0x0d, 0x16, 0x0d,
-
3467  0x0c, 0x16, 0x10, 0x0d, 0x16, 0x0e, 0x0e, 0x18, 0xdb, 0x1e, 0x34, 0x20,
-
3468  0x20, 0x34, 0x1e, 0x20, 0x33, 0x20, 0x1e, 0x34, 0x21, 0x0d, 0x15, 0x0d,
-
3469  0x08, 0x0d, 0x12, 0x09, 0x0c, 0x15, 0x0e, 0x0e, 0x15, 0x02, 0x6f, 0xfd,
-
3470  0x91, 0x0a, 0x22, 0x3c, 0x25, 0x25, 0x3b, 0x23, 0x24, 0x3b, 0x25, 0x24,
-
3471  0x3c, 0x22, 0x38, 0x11, 0x21, 0x18, 0x15, 0x22, 0x14, 0x10, 0x20, 0x1a,
-
3472  0x19, 0x22, 0x10, 0x01, 0x45, 0x22, 0x3c, 0x26, 0x25, 0x3b, 0x23, 0x23,
-
3473  0x3c, 0x25, 0x27, 0x3b, 0x21, 0x3a, 0x0f, 0x21, 0x1a, 0x13, 0x1c, 0x12,
-
3474  0x08, 0x0f, 0x20, 0x1a, 0x1a, 0x20, 0x10, 0x00, 0x00, 0x07, 0x00, 0x14,
-
3475  0xff, 0xf5, 0x01, 0xe0, 0x02, 0x79, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23,
-
3476  0x00, 0x33, 0x00, 0x43, 0x00, 0x53, 0x00, 0x63, 0x00, 0x35, 0x40, 0x1b,
-
3477  0x54, 0x44, 0x44, 0x03, 0x02, 0x02, 0x5c, 0x4c, 0x05, 0x72, 0x3c, 0x2c,
-
3478  0x2c, 0x34, 0x24, 0x0d, 0x72, 0x01, 0x00, 0x00, 0x1c, 0x0c, 0x0c, 0x14,
-
3479  0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
3480  0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x32, 0x2f,
-
3481  0x33, 0x30, 0x31, 0x77, 0x35, 0x01, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35,
-
3482  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
3483  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
3484  0x14, 0x16, 0x16, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
3485  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
3486  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03,
-
3487  0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15,
-
3488  0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3489  0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x14, 0x01, 0xcc, 0xfe, 0xa1,
-
3490  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
-
3491  0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xfe,
-
3492  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1d, 0x2f, 0x1c, 0x1c, 0x2f, 0x1d,
-
3493  0x0b, 0x13, 0x0c, 0x0c, 0x14, 0x0c, 0x0a, 0x14, 0x0c, 0x0d, 0x14, 0xe9,
-
3494  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
-
3495  0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xe1,
-
3496  0x3b, 0x01, 0x01, 0x3c, 0xfe, 0x14, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20,
-
3497  0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17, 0x17, 0x1c,
-
3498  0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x38, 0x20, 0x37, 0x23, 0x22,
-
3499  0x37, 0x20, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17,
-
3500  0x17, 0x1c, 0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x01, 0x59, 0x20,
-
3501  0x37, 0x23, 0x22, 0x37, 0x20, 0x21, 0x37, 0x22, 0x23, 0x37, 0x1f, 0x38,
-
3502  0x0d, 0x1d, 0x17, 0x17, 0x1d, 0x0e, 0x0d, 0x1c, 0x18, 0x18, 0x1d, 0x0d,
-
3503  0x00, 0x03, 0x00, 0x25, 0x00, 0x5f, 0x01, 0xce, 0x02, 0x09, 0x00, 0x13,
-
3504  0x00, 0x27, 0x00, 0x33, 0x00, 0x1a, 0x40, 0x0d, 0x33, 0x32, 0x29, 0x2c,
-
3505  0x2f, 0x2d, 0x06, 0x0a, 0x14, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
-
3506  0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
-
3507  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
3508  0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02,
-
3509  0x15, 0x14, 0x1e, 0x02, 0x37, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
-
3510  0x33, 0x15, 0x23, 0x15, 0xf9, 0x2c, 0x4d, 0x3b, 0x20, 0x20, 0x3b, 0x4d,
-
3511  0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x22, 0x3c, 0x2e,
-
3512  0x1a, 0x1a, 0x2e, 0x3c, 0x22, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2e, 0x3c,
-
3513  0x0b, 0x6d, 0x6d, 0x31, 0x6a, 0x6a, 0x5f, 0x21, 0x3b, 0x4d, 0x2c, 0x2c,
-
3514  0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x2f,
-
3515  0x1a, 0x2e, 0x3d, 0x21, 0x22, 0x3b, 0x2e, 0x1a, 0x1a, 0x2e, 0x3b, 0x22,
-
3516  0x21, 0x3d, 0x2e, 0x1a, 0x1e, 0x73, 0x30, 0x69, 0x69, 0x30, 0x73, 0x00,
-
3517  0xff, 0xff, 0x00, 0x3f, 0x01, 0xcc, 0x01, 0xd0, 0x02, 0x45, 0x06, 0x07,
-
3518  0x02, 0x78, 0x00, 0x00, 0x00, 0xc8, 0xff, 0xff, 0x00, 0x58, 0x01, 0x77,
-
3519  0x01, 0x9c, 0x02, 0x93, 0x04, 0x06, 0x02, 0x7a, 0x02, 0x24, 0x00, 0x01,
-
3520  0x00, 0x30, 0x00, 0x05, 0x01, 0xc4, 0x02, 0x50, 0x00, 0x09, 0x00, 0x1d,
-
3521  0x40, 0x0c, 0x09, 0x06, 0x07, 0x07, 0x03, 0x02, 0x02, 0x04, 0x08, 0x01,
-
3522  0x01, 0x04, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
-
3523  0x11, 0x33, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x17,
-
3524  0x07, 0x27, 0x11, 0xd3, 0x6b, 0x38, 0xbe, 0x22, 0xb4, 0x3c, 0x64, 0x05,
-
3525  0x01, 0xb6, 0x86, 0x2f, 0xec, 0xee, 0x2d, 0x85, 0xfe, 0x4b, 0x00, 0x01,
-
3526  0x00, 0x0f, 0x00, 0x70, 0x01, 0xdb, 0x02, 0x37, 0x00, 0x09, 0x00, 0x16,
-
3527  0x40, 0x0c, 0x00, 0x07, 0x06, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
-
3528  0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x01,
-
3529  0x07, 0x27, 0x25, 0x17, 0x03, 0x27, 0x37, 0x01, 0x0f, 0x01, 0x37, 0xaa,
-
3530  0x07, 0x01, 0x2d, 0x19, 0x29, 0x4b, 0x17, 0xfe, 0xcb, 0xaa, 0x01, 0x37,
-
3531  0x13, 0x48, 0x21, 0x18, 0xfe, 0xd8, 0x0b, 0xa5, 0xfe, 0xc9, 0x00, 0x01,
-
3532  0x00, 0x0f, 0x00, 0x5e, 0x01, 0xdb, 0x01, 0xf2, 0x00, 0x09, 0x00, 0x1b,
-
3533  0x40, 0x0b, 0x06, 0x07, 0x07, 0x09, 0x03, 0x02, 0x02, 0x04, 0x00, 0x05,
-
3534  0x09, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3535  0x33, 0x30, 0x31, 0x53, 0x21, 0x27, 0x37, 0x17, 0x15, 0x07, 0x27, 0x37,
-
3536  0x21, 0x0f, 0x01, 0x37, 0x86, 0x2e, 0xed, 0xee, 0x2d, 0x85, 0xfe, 0xca,
-
3537  0x01, 0x4f, 0x6c, 0x37, 0xbd, 0x23, 0xb4, 0x3c, 0x65, 0x00, 0x00, 0x01,
-
3538  0x00, 0x0f, 0x00, 0x20, 0x01, 0xdb, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
-
3539  0x40, 0x0c, 0x00, 0x03, 0x04, 0x07, 0x08, 0x09, 0x02, 0x05, 0x08, 0x01,
-
3540  0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37,
-
3541  0x01, 0x27, 0x37, 0x13, 0x07, 0x25, 0x37, 0x17, 0x0f, 0x3a, 0x01, 0x35,
-
3542  0x17, 0x4b, 0x29, 0x19, 0xfe, 0xd3, 0x07, 0xaa, 0x01, 0xad, 0x3a, 0xfe,
-
3543  0xc9, 0xa5, 0x0b, 0xfe, 0xd8, 0x18, 0x21, 0x48, 0x13, 0x00, 0x00, 0x01,
-
3544  0x00, 0x30, 0x00, 0x12, 0x01, 0xc4, 0x02, 0x5d, 0x00, 0x09, 0x00, 0x1d,
-
3545  0x40, 0x0c, 0x02, 0x09, 0x09, 0x05, 0x07, 0x08, 0x08, 0x04, 0x03, 0x03,
-
3546  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11,
-
3547  0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x37, 0x17, 0x07, 0x23,
-
3548  0x27, 0x37, 0x17, 0xd3, 0x51, 0x64, 0x3c, 0xb4, 0x22, 0xbe, 0x38, 0x6b,
-
3549  0x02, 0x5d, 0xfe, 0x4b, 0x85, 0x2d, 0xee, 0xec, 0x2f, 0x86, 0x00, 0x01,
-
3550  0x00, 0x0d, 0x00, 0x20, 0x01, 0xd9, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
-
3551  0x40, 0x0c, 0x00, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
-
3552  0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x01,
-
3553  0x37, 0x17, 0x05, 0x27, 0x13, 0x17, 0x07, 0x01, 0x01, 0xd9, 0xfe, 0xc9,
-
3554  0xaa, 0x07, 0xfe, 0xd3, 0x19, 0x29, 0x4b, 0x17, 0x01, 0x35, 0x01, 0xad,
-
3555  0xfe, 0xc9, 0x13, 0x48, 0x21, 0x18, 0x01, 0x28, 0x0b, 0xa5, 0x01, 0x37,
-
3556  0x00, 0x01, 0x00, 0x15, 0x00, 0x5e, 0x01, 0xe1, 0x01, 0xf2, 0x00, 0x09,
-
3557  0x00, 0x1b, 0x40, 0x0b, 0x04, 0x03, 0x03, 0x01, 0x07, 0x08, 0x08, 0x06,
-
3558  0x00, 0x05, 0x01, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11,
-
3559  0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x21, 0x17, 0x07, 0x27, 0x35,
-
3560  0x37, 0x17, 0x07, 0x01, 0xe1, 0xfe, 0xca, 0x85, 0x2d, 0xee, 0xed, 0x2e,
-
3561  0x86, 0x01, 0x4f, 0x50, 0x65, 0x3c, 0xb4, 0x23, 0xbd, 0x37, 0x6c, 0x00,
-
3562  0x00, 0x01, 0x00, 0x0d, 0x00, 0x71, 0x01, 0xd9, 0x02, 0x38, 0x00, 0x09,
-
3563  0x00, 0x16, 0x40, 0x0c, 0x00, 0x04, 0x03, 0x02, 0x09, 0x08, 0x07, 0x05,
-
3564  0x08, 0x01, 0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31,
-
3565  0x65, 0x07, 0x01, 0x17, 0x07, 0x03, 0x37, 0x05, 0x07, 0x27, 0x01, 0xd9,
-
3566  0x3a, 0xfe, 0xcb, 0x17, 0x4b, 0x29, 0x19, 0x01, 0x2d, 0x07, 0xaa, 0xab,
-
3567  0x3a, 0x01, 0x37, 0xa5, 0x0b, 0x01, 0x28, 0x18, 0x21, 0x48, 0x13, 0x00,
-
3568  0x00, 0x01, 0x00, 0x0a, 0x00, 0x69, 0x01, 0xea, 0x01, 0xe9, 0x00, 0x0f,
-
3569  0x00, 0x2e, 0x40, 0x15, 0x00, 0x0f, 0x0f, 0x0b, 0x0c, 0x0c, 0x0a, 0x01,
-
3570  0x0d, 0x0d, 0x06, 0x03, 0x04, 0x04, 0x08, 0x07, 0x07, 0x09, 0x02, 0x06,
-
3571  0x12, 0x00, 0x3f, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11,
-
3572  0x33, 0x11, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
3573  0x41, 0x17, 0x15, 0x07, 0x27, 0x37, 0x23, 0x17, 0x07, 0x27, 0x35, 0x37,
-
3574  0x17, 0x07, 0x33, 0x27, 0x01, 0x4a, 0xa0, 0xa2, 0x33, 0x5a, 0xee, 0x5d,
-
3575  0x33, 0xa1, 0xa0, 0x35, 0x5f, 0xf0, 0x5b, 0x01, 0xe9, 0xb3, 0x1e, 0xaf,
-
3576  0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f, 0x00, 0x01,
-
3577  0x00, 0x3a, 0x00, 0x38, 0x01, 0xba, 0x02, 0x20, 0x00, 0x0f, 0x00, 0x11,
-
3578  0xb7, 0x0e, 0x05, 0x06, 0x0d, 0x04, 0x01, 0x09, 0x01, 0x00, 0x2f, 0x2f,
-
3579  0x12, 0x17, 0x39, 0x30, 0x31, 0x65, 0x07, 0x23, 0x27, 0x37, 0x17, 0x35,
-
3580  0x07, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x15, 0x37, 0x01, 0xba, 0xb3,
-
3581  0x1e, 0xaf, 0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f,
-
3582  0xd8, 0xa0, 0xa2, 0x33, 0x5a, 0xf6, 0x5d, 0x33, 0xa1, 0xa0, 0x35, 0x5f,
-
3583  0xf8, 0x5b, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c,
-
3584  0x00, 0x09, 0x00, 0x12, 0x00, 0x21, 0x40, 0x0e, 0x08, 0x06, 0x0c, 0x03,
-
3585  0x02, 0x11, 0x0c, 0x11, 0x0c, 0x11, 0x0f, 0x04, 0x0a, 0x00, 0x00, 0x2f,
-
3586  0x32, 0x2f, 0x33, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33,
-
3587  0x33, 0x30, 0x31, 0x73, 0x11, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23,
-
3588  0x11, 0x27, 0x33, 0x11, 0x33, 0x07, 0x27, 0x07, 0x27, 0x33, 0x8c, 0x6a,
-
3589  0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x06, 0xb6, 0xb4, 0x16, 0x87,
-
3590  0x01, 0x6d, 0x2c, 0xe3, 0xe3, 0x2c, 0xfe, 0x93, 0x2c, 0x01, 0x6e, 0x1c,
-
3591  0xcb, 0xcb, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
-
3592  0x01, 0xf5, 0x00, 0x09, 0x00, 0x12, 0x00, 0x2d, 0x40, 0x15, 0x05, 0x0f,
-
3593  0x04, 0x03, 0x0a, 0x0b, 0x0b, 0x09, 0x0d, 0x0e, 0x0e, 0x07, 0x07, 0x09,
-
3594  0x0a, 0x10, 0x11, 0x11, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
3595  0x11, 0x33, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3596  0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07,
-
3597  0x23, 0x35, 0x23, 0x37, 0x15, 0x33, 0x15, 0x27, 0x37, 0x27, 0x37, 0x15,
-
3598  0x0a, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xd1, 0x2c, 0xd2, 0x1f, 0xce, 0xce,
-
3599  0x1f, 0x01, 0x8b, 0x6a, 0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x05,
-
3600  0xb7, 0xb7, 0x13, 0x87, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4,
-
3601  0x02, 0x7c, 0x00, 0x09, 0x00, 0x12, 0x00, 0x27, 0x40, 0x11, 0x07, 0x0d,
-
3602  0x0d, 0x09, 0x04, 0x0f, 0x0f, 0x11, 0x02, 0x02, 0x0b, 0x09, 0x09, 0x0e,
-
3603  0x06, 0x0a, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33,
-
3604  0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53,
-
3605  0x33, 0x11, 0x33, 0x15, 0x07, 0x23, 0x27, 0x35, 0x33, 0x13, 0x11, 0x23,
-
3606  0x37, 0x17, 0x37, 0x17, 0x23, 0x11, 0x8c, 0xdf, 0x69, 0xcb, 0x1b, 0xcc,
-
3607  0x6a, 0x2c, 0x87, 0x16, 0xb4, 0xb6, 0x06, 0x78, 0x02, 0x7c, 0xfe, 0x93,
-
3608  0x2c, 0xe3, 0xe3, 0x2c, 0x01, 0x41, 0xfe, 0x92, 0x1c, 0xcb, 0xcb, 0x1c,
-
3609  0x01, 0x6e, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5,
-
3610  0x00, 0x09, 0x00, 0x12, 0x00, 0x2f, 0x40, 0x16, 0x05, 0x0e, 0x06, 0x03,
-
3611  0x0b, 0x11, 0x0b, 0x09, 0x0d, 0x0c, 0x0c, 0x08, 0x08, 0x09, 0x11, 0x02,
-
3612  0x10, 0x0f, 0x0f, 0x03, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
-
3613  0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3614  0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x15, 0x23, 0x15, 0x23, 0x27, 0x35,
-
3615  0x37, 0x33, 0x15, 0x17, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07, 0x35, 0x33,
-
3616  0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xa5, 0xd2, 0x1f, 0xce, 0xce,
-
3617  0x1f, 0xd2, 0x01, 0x8b, 0xdf, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x2c, 0x87,
-
3618  0x13, 0xb7, 0xb7, 0x05, 0x78, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00,
-
3619  0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09, 0x00, 0x17, 0x40, 0x09, 0x00, 0x07,
-
3620  0x07, 0x02, 0x05, 0x05, 0x04, 0x08, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x39,
-
3621  0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x23, 0x11, 0x23,
-
3622  0x11, 0x23, 0x35, 0x37, 0x33, 0x01, 0xd4, 0x69, 0xdf, 0x6a, 0xcc, 0x1b,
-
3623  0x01, 0x99, 0x2c, 0xfe, 0x93, 0x01, 0x6d, 0x2c, 0xe3, 0x00, 0x00, 0x01,
-
3624  0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5, 0x00, 0x09, 0x00, 0x19,
-
3625  0x40, 0x0a, 0x05, 0x06, 0x01, 0x03, 0x03, 0x01, 0x01, 0x08, 0x08, 0x00,
-
3626  0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x11, 0x39, 0x39, 0x30,
-
3627  0x31, 0x77, 0x35, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07, 0x23, 0x35, 0x0a,
-
3628  0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xac, 0xdf, 0x6a, 0xcc, 0x1b, 0xcb, 0x69,
-
3629  0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09,
-
3630  0x00, 0x17, 0x40, 0x09, 0x00, 0x08, 0x08, 0x03, 0x05, 0x05, 0x01, 0x06,
-
3631  0x01, 0x00, 0x2f, 0x2f, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
-
3632  0x31, 0x65, 0x07, 0x23, 0x27, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01,
-
3633  0xd4, 0xcb, 0x1b, 0xcc, 0x6a, 0xdf, 0x69, 0xe3, 0xe3, 0xe3, 0x2c, 0x01,
-
3634  0x6d, 0xfe, 0x93, 0x00, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
-
3635  0x01, 0xf5, 0x00, 0x09, 0x00, 0x19, 0x40, 0x0a, 0x05, 0x04, 0x09, 0x07,
-
3636  0x07, 0x09, 0x09, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11,
-
3637  0x33, 0x2f, 0x11, 0x39, 0x39, 0x30, 0x31, 0x65, 0x23, 0x15, 0x23, 0x27,
-
3638  0x35, 0x37, 0x33, 0x15, 0x33, 0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c,
-
3639  0xd1, 0xac, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00,
-
3640  0xfe, 0x70, 0x01, 0xf4, 0xff, 0x1f, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3641  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x51, 0x35, 0x21, 0x15, 0x01, 0xf4,
-
3642  0xfe, 0x70, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3643  0xff, 0xce, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3644  0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x01, 0x5e,
-
3645  0xfe, 0xa2, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x00, 0x7d,
-
3646  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3647  0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0x0d, 0xfd, 0xf3,
-
3648  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c, 0x00, 0x03,
-
3649  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3650  0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x01,
-
3651  0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0xdb, 0x00, 0x03, 0x00, 0x08,
-
3652  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
-
3653  0x01, 0xf4, 0xfe, 0x70, 0x03, 0x6b, 0xfc, 0x95, 0x00, 0x01, 0x00, 0x00,
-
3654  0xfe, 0x70, 0x01, 0xf4, 0x02, 0x8a, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3655  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4,
-
3656  0xfe, 0x70, 0x04, 0x1a, 0xfb, 0xe6, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3657  0x01, 0xf4, 0x03, 0x39, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3658  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70,
-
3659  0x04, 0xc9, 0xfb, 0x37, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3660  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3661  0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x05, 0x78,
-
3662  0xfa, 0x88, 0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x01, 0xf4, 0x03, 0xe8,
-
3663  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3664  0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44,
-
3665  0x00, 0x01, 0x00, 0x00, 0x03, 0x39, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03,
-
3666  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x35,
-
3667  0x21, 0x15, 0x01, 0xf4, 0x03, 0x39, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00,
-
3668  0xfe, 0x70, 0x00, 0x3f, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3669  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x3f, 0xfe,
-
3670  0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3671  0x00, 0x7d, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3672  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x7d, 0xfe, 0x70, 0x05,
-
3673  0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xbc,
-
3674  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3675  0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xbc, 0xfe, 0x70, 0x05, 0x78, 0xfa,
-
3676  0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa, 0x03, 0xe8,
-
3677  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3678  0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
-
3679  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0x39, 0x03, 0xe8, 0x00, 0x03,
-
3680  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3681  0x21, 0x11, 0x01, 0x39, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01,
-
3682  0x00, 0x00, 0xfe, 0x70, 0x01, 0x77, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
-
3683  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
-
3684  0x01, 0x77, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0x00,
-
3685  0xfe, 0x70, 0x01, 0xb6, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3686  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xb6,
-
3687  0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70,
-
3688  0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3689  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70,
-
3690  0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x01, 0xb6, 0xfe, 0x70, 0x01, 0xf4,
-
3691  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3692  0x30, 0x31, 0x41, 0x11, 0x33, 0x11, 0x01, 0xb6, 0x3e, 0xfe, 0x70, 0x05,
-
3693  0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa,
-
3694  0x01, 0x2c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3695  0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd,
-
3696  0x44, 0x00, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c,
-
3697  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3698  0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44,
-
3699  0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x00, 0xfa, 0x03, 0xe8, 0x00, 0x03,
-
3700  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3701  0x33, 0x11, 0xfa, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01,
-
3702  0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08,
-
3703  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11,
-
3704  0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44,
-
3705  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x07,
-
3706  0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
3707  0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0x70,
-
3708  0x02, 0xbc, 0x02, 0xbc, 0xfd, 0x44, 0xfd, 0x44, 0x00, 0x01, 0x00, 0x00,
-
3709  0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x01,
-
3710  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x23, 0x11,
-
3711  0x01, 0xf4, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44, 0x00,
-
3712  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05,
-
3713  0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
3714  0x23, 0x11, 0x21, 0x11, 0xfa, 0xfa, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc,
-
3715  0x02, 0xbc, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0x01, 0x2c, 0x01, 0xf4,
-
3716  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3717  0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0x01, 0x2c, 0x02, 0xbc,
-
3718  0xfd, 0x44, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8,
-
3719  0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x01, 0x04, 0x04, 0x05, 0x00,
-
3720  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x51, 0x11, 0x33, 0x19,
-
3721  0x02, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x02,
-
3722  0xbc, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3723  0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
-
3724  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa,
-
3725  0xfe, 0x70, 0x02, 0xbc, 0x02, 0xbc, 0xfa, 0x88, 0x00, 0x2a, 0x00, 0x0f,
-
3726  0xfe, 0x87, 0x01, 0xe5, 0x03, 0xd1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
-
3727  0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x23,
-
3728  0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3b,
-
3729  0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53,
-
3730  0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b,
-
3731  0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83,
-
3732  0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b,
-
3733  0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15,
-
3734  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3735  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3736  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3737  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3738  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3739  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3740  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3741  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3742  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3743  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3744  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3745  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3746  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3747  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x0f, 0x36, 0x70, 0x36,
-
3748  0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36,
-
3749  0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe,
-
3750  0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70,
-
3751  0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71,
-
3752  0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0,
-
3753  0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36,
-
3754  0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36,
-
3755  0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x87, 0x36,
-
3756  0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3757  0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36,
-
3758  0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36,
-
3759  0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64,
-
3760  0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3761  0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36,
-
3762  0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36,
-
3763  0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3764  0x00, 0x2a, 0x00, 0x02, 0xfe, 0x79, 0x01, 0xf2, 0x03, 0xdf, 0x00, 0x03,
-
3765  0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b,
-
3766  0x00, 0x1f, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33,
-
3767  0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b,
-
3768  0x00, 0x4f, 0x00, 0x53, 0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63,
-
3769  0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b,
-
3770  0x00, 0x7f, 0x00, 0x83, 0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93,
-
3771  0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00,
-
3772  0x53, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3773  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3774  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3775  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3776  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3777  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3778  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3779  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3780  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3781  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3782  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3783  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3784  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3785  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3786  0x02, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
-
3787  0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55,
-
3788  0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4,
-
3789  0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52,
-
3790  0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52,
-
3791  0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51,
-
3792  0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe,
-
3793  0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
-
3794  0x51, 0xfe, 0x79, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
-
3795  0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64,
-
3796  0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52,
-
3797  0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52,
-
3798  0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52,
-
3799  0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52,
-
3800  0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52,
-
3801  0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
-
3802  0x52, 0x52, 0x52, 0x52, 0x00, 0x19, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3803  0x03, 0xe8, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53, 0x00, 0x57,
-
3804  0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f,
-
3805  0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x87,
-
3806  0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f,
-
3807  0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x51, 0x35, 0x33, 0x35, 0x23, 0x35,
-
3808  0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35,
-
3809  0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
-
3810  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
-
3811  0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
-
3812  0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35,
-
3813  0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x37, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3814  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3815  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3816  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3817  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3818  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3819  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3820  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3821  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
-
3822  0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x67,
-
3823  0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
-
3824  0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x80, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
-
3825  0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
-
3826  0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
-
3827  0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
-
3828  0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0xfe, 0x70, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a,
-
3829  0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59,
-
3830  0x59, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a,
-
3831  0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x6f, 0x4e, 0x4e, 0x4e, 0x4e,
-
3832  0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e,
-
3833  0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e,
-
3834  0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64,
-
3835  0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e,
-
3836  0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x00, 0x00, 0x01, 0x00, 0x29,
-
3837  0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x08, 0xb1, 0x0a,
-
3838  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34,
-
3839  0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0xf9, 0x2b,
-
3840  0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
-
3841  0x39, 0x4c, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
-
3842  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x00, 0x00, 0x02, 0x00, 0x29,
-
3843  0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x0c,
-
3844  0xb3, 0x14, 0x1e, 0x0a, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31,
-
3845  0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
3846  0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
3847  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0xf9, 0x2b, 0x4c, 0x39,
-
3848  0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
-
3849  0x2b, 0x21, 0x39, 0x2c, 0x19, 0x19, 0x2c, 0x39, 0x21, 0x20, 0x39, 0x2c,
-
3850  0x19, 0x19, 0x2c, 0x39, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
3851  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x32, 0x1a, 0x2b,
-
3852  0x3a, 0x20, 0x21, 0x38, 0x2c, 0x19, 0x19, 0x2c, 0x38, 0x21, 0x20, 0x3a,
-
3853  0x2b, 0x1a, 0x00, 0x01, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
-
3854  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3855  0x53, 0x17, 0x07, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x01, 0xf7, 0xe1, 0xe1,
-
3856  0xe1, 0x00, 0x00, 0x02, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
-
3857  0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x02, 0x07, 0x00, 0x02,
-
3858  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x07, 0x27,
-
3859  0x33, 0x17, 0x37, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x43, 0x9e, 0x9e, 0x9e,
-
3860  0x01, 0xf7, 0xe1, 0xe1, 0xe1, 0x9e, 0x9e, 0x9e, 0x00, 0x02, 0x00, 0x2f,
-
3861  0x00, 0x00, 0x01, 0xd8, 0x02, 0x81, 0x00, 0x05, 0x00, 0x09, 0x00, 0x13,
-
3862  0x40, 0x09, 0x06, 0x00, 0x08, 0x02, 0x03, 0x72, 0x00, 0x12, 0x72, 0x00,
-
3863  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x03, 0x13, 0x33, 0x13,
-
3864  0x03, 0x27, 0x37, 0x27, 0x07, 0xf3, 0xc4, 0xc4, 0x21, 0xc4, 0xc4, 0x10,
-
3865  0x80, 0x80, 0x81, 0x01, 0x40, 0x01, 0x41, 0xfe, 0xbf, 0xfe, 0xc0, 0x6c,
-
3866  0xd4, 0xd6, 0xd6, 0x00, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
3867  0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1b, 0x40, 0x0b,
-
3868  0x0b, 0x02, 0x03, 0x03, 0x0d, 0x0a, 0x07, 0x07, 0x0c, 0x0d, 0x00, 0x00,
-
3869  0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x30,
-
3870  0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
-
3871  0x11, 0x01, 0x35, 0x21, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14,
-
3872  0x90, 0xfd, 0xfc, 0x02, 0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
-
3873  0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x84, 0x00, 0x00, 0x02,
-
3874  0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b,
-
3875  0x00, 0x12, 0xb6, 0x0b, 0x02, 0x03, 0x03, 0x08, 0x09, 0x00, 0x00, 0x2f,
-
3876  0x2f, 0x33, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3877  0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, 0x40, 0x90, 0x01, 0x14,
-
3878  0x6c, 0xfe, 0x80, 0x02, 0x04, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
-
3879  0x02, 0xf2, 0x84, 0xfc, 0x8a, 0x00, 0x00, 0x02, 0x00, 0x40, 0xfe, 0x70,
-
3880  0x02, 0x44, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x12, 0xb6, 0x0b,
-
3881  0x0a, 0x07, 0x07, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f,
-
3882  0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11,
-
3883  0x21, 0x15, 0x23, 0x11, 0x40, 0x02, 0x04, 0xfe, 0x80, 0x6c, 0x01, 0x14,
-
3884  0x90, 0xfe, 0x70, 0x03, 0x76, 0x84, 0xfd, 0x0e, 0x02, 0x86, 0x84, 0xfd,
-
3885  0xfe, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x01, 0xe6,
-
3886  0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x01, 0x04, 0x05, 0x00, 0x00,
-
3887  0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35,
-
3888  0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x02, 0x94, 0x72, 0x84, 0x84,
-
3889  0xf0, 0x84, 0x84, 0x00, 0x00, 0x03, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44,
-
3890  0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3891  0x0c, 0x07, 0x01, 0x05, 0x04, 0x04, 0x07, 0x0d, 0x0a, 0x0a, 0x07, 0x00,
-
3892  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
3893  0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x33, 0x11, 0x33,
-
3894  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c,
-
3895  0x90, 0x84, 0x6c, 0x84, 0x90, 0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02,
-
3896  0xfd, 0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x00, 0x02, 0xff, 0xb0,
-
3897  0x00, 0x72, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14,
-
3898  0xb7, 0x0a, 0x03, 0x01, 0x07, 0x06, 0x06, 0x03, 0x00, 0x00, 0x2f, 0x2f,
-
3899  0x39, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
-
3900  0x33, 0x11, 0x25, 0x35, 0x33, 0x11, 0x33, 0x11, 0x50, 0x01, 0x80, 0x84,
-
3901  0xfd, 0xfc, 0x90, 0x84, 0x72, 0x84, 0x02, 0xf2, 0xfc, 0x8a, 0xf0, 0x84,
-
3902  0x02, 0x02, 0xfd, 0x7a, 0x00, 0x02, 0x00, 0x40, 0x00, 0x72, 0x02, 0x44,
-
3903  0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x01, 0x03,
-
3904  0x09, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32,
-
3905  0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x25, 0x11,
-
3906  0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x01, 0x80, 0xfe, 0xec, 0x84, 0x90,
-
3907  0x72, 0x03, 0x76, 0xfd, 0x0e, 0x84, 0xf0, 0x02, 0x86, 0xfd, 0xfe, 0x84,
-
3908  0x00, 0x02, 0x00, 0x40, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x03,
-
3909  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3910  0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3911  0x40, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
-
3912  0xfa, 0x88, 0x00, 0x04, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
3913  0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1d, 0x40, 0x0c,
-
3914  0x13, 0x0f, 0x15, 0x0d, 0x0d, 0x12, 0x0c, 0x07, 0x02, 0x03, 0x06, 0x00,
-
3915  0x00, 0x2f, 0x32, 0x2f, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f,
-
3916  0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21,
-
3917  0x15, 0x23, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
-
3918  0x11, 0x33, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14, 0x90, 0xfd,
-
3919  0xfc, 0x90, 0x84, 0x6c, 0x84, 0x90, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd,
-
3920  0x7a, 0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x02, 0x02, 0xfd,
-
3921  0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70,
-
3922  0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x14,
-
3923  0xb7, 0x07, 0x0d, 0x0b, 0x0a, 0x02, 0x03, 0x06, 0x00, 0x00, 0x2f, 0x32,
-
3924  0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3925  0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11,
-
3926  0x40, 0x90, 0x01, 0x14, 0x6c, 0x84, 0xfd, 0xfc, 0x90, 0x84, 0xfe, 0x70,
-
3927  0x02, 0x02, 0x84, 0xfd, 0x7a, 0x05, 0x78, 0xfa, 0x88, 0x02, 0xf2, 0x84,
-
3928  0x02, 0x02, 0xfd, 0x7a, 0x00, 0x03, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44,
-
3929  0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3930  0x0c, 0x01, 0x09, 0x05, 0x08, 0x08, 0x01, 0x0a, 0x0d, 0x0d, 0x01, 0x00,
-
3931  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
3932  0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
-
3933  0x11, 0x03, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x01, 0x14,
-
3934  0x90, 0x84, 0x84, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x02, 0x86,
-
3935  0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x01,
-
3936  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x0b, 0x00, 0x12,
-
3937  0xb6, 0x08, 0x06, 0x0a, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33,
-
3938  0x11, 0x33, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15,
-
3939  0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x94, 0x90, 0x84,
-
3940  0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
-
3941  0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0x6e,
-
3942  0x00, 0x09, 0x00, 0x10, 0xb5, 0x06, 0x08, 0x02, 0x02, 0x03, 0x00, 0x00,
-
3943  0x2f, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3944  0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x04, 0x84, 0x6c,
-
3945  0xfe, 0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x02, 0x7a, 0xfd, 0x86, 0x00,
-
3946  0x00, 0x01, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x09,
-
3947  0x00, 0x10, 0xb5, 0x06, 0x04, 0x08, 0x08, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3948  0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
-
3949  0x23, 0x11, 0x23, 0x11, 0x40, 0x02, 0x04, 0x90, 0x84, 0x6c, 0xfe, 0x70,
-
3950  0x02, 0xfe, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
3951  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e,
-
3952  0xb4, 0x06, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33,
-
3953  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
3954  0x02, 0x94, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
-
3955  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0x6e, 0x00, 0x05,
-
3956  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
3957  0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70,
-
3958  0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
3959  0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x12, 0xb6, 0x07, 0x03, 0x03,
-
3960  0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33,
-
3961  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3962  0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
-
3963  0x7a, 0xfd, 0x86, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
3964  0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
-
3965  0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
-
3966  0x76, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86, 0x00,
-
3967  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
-
3968  0x00, 0x12, 0xb6, 0x01, 0x05, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f,
-
3969  0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
-
3970  0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6,
-
3971  0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
-
3972  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
3973  0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
-
3974  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3975  0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
3976  0x01, 0x08, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
-
3977  0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
3978  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x02, 0x02,
-
3979  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3980  0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe,
-
3981  0xf8, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00,
-
3982  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x05,
-
3983  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
3984  0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
-
3985  0x70, 0x02, 0x38, 0x01, 0x08, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0xff, 0xb0,
-
3986  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08,
-
3987  0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
3988  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11,
-
3989  0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x38, 0x01,
-
3990  0x08, 0x02, 0x38, 0xfc, 0xc0, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0xb8,
-
3991  0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04,
-
3992  0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
-
3993  0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x03, 0x40, 0xfe,
-
3994  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
-
3995  0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x01, 0x08, 0x08, 0x03,
-
3996  0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3997  0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42, 0x01, 0x08,
-
3998  0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
-
3999  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4000  0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x04, 0x04, 0x0a, 0x01,
-
4001  0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
4002  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4003  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe,
-
4004  0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd,
-
4005  0xc8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6,
-
4006  0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x06, 0x02, 0x02, 0x03, 0x03,
-
4007  0x08, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33,
-
4008  0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x01, 0x35,
-
4009  0x21, 0x15, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe, 0xf8, 0xfe, 0x74, 0x02,
-
4010  0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84,
-
4011  0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xe6,
-
4012  0x00, 0x09, 0x00, 0x10, 0xb5, 0x02, 0x03, 0x03, 0x06, 0x07, 0x00, 0x00,
-
4013  0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
-
4014  0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4015  0xf8, 0x01, 0x8c, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0xfc, 0x8a,
-
4016  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6, 0x00, 0x09,
-
4017  0x00, 0x10, 0xb5, 0x08, 0x05, 0x05, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
4018  0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4019  0x21, 0x15, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4020  0xf8, 0xfe, 0x70, 0x03, 0x76, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00, 0x02,
-
4021  0x00, 0x3f, 0x00, 0xa8, 0x01, 0xb6, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07,
-
4022  0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
-
4023  0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x3f, 0x7d,
-
4024  0x7d, 0x7d, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00,
-
4025  0x00, 0x02, 0x00, 0x76, 0xff, 0x1f, 0x01, 0x7e, 0x03, 0x39, 0x00, 0x03,
-
4026  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
4027  0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11,
-
4028  0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xe1, 0x01, 0x5e, 0xfe, 0xa2,
-
4029  0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
4030  0x01, 0x7e, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
4031  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
-
4032  0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4033  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x01,
-
4034  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4035  0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x02, 0x94, 0xc6, 0xfe,
-
4036  0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
-
4037  0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a,
-
4038  0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4039  0x23, 0x11, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70, 0x02, 0x38,
-
4040  0x01, 0x08, 0xfc, 0xc0, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
-
4041  0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00, 0x00, 0x2f,
-
4042  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0x01,
-
4043  0xce, 0xc6, 0xfe, 0x70, 0x03, 0x40, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4044  0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08,
-
4045  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11,
-
4046  0x50, 0x02, 0x94, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0,
-
4047  0x00, 0xa8, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
4048  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x50, 0x01,
-
4049  0x8c, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4050  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x01,
-
4051  0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x67, 0x11,
-
4052  0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x50, 0x01, 0x8c, 0x01, 0x08, 0xfe,
-
4053  0xf8, 0xa8, 0x01, 0x08, 0x42, 0x84, 0x42, 0x00, 0x00, 0x04, 0x00, 0x10,
-
4054  0x00, 0xa8, 0x01, 0xe4, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
-
4055  0x00, 0x0f, 0x00, 0x14, 0xb7, 0x0c, 0x0d, 0x08, 0x09, 0x04, 0x05, 0x01,
-
4056  0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x33, 0x32, 0x33, 0x32, 0x30, 0x31,
-
4057  0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4058  0x33, 0x11, 0x33, 0x11, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d,
-
4059  0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4060  0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x76, 0xfe, 0x9c,
-
4061  0x01, 0x7e, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4062  0x00, 0x1f, 0x40, 0x0d, 0x0d, 0x0c, 0x0c, 0x09, 0x09, 0x08, 0x01, 0x01,
-
4063  0x04, 0x04, 0x05, 0x05, 0x08, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33,
-
4064  0x2f, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21,
-
4065  0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21,
-
4066  0x11, 0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4067  0xfe, 0xf8, 0x01, 0x08, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
-
4068  0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
-
4069  0x01, 0x06, 0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xa8, 0x02, 0x44,
-
4070  0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
4071  0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xa8, 0x01, 0x08,
-
4072  0xfe, 0xf8, 0x00, 0x03, 0x00, 0x1c, 0x00, 0xa8, 0x01, 0xd8, 0x01, 0xb0,
-
4073  0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04,
-
4074  0x04, 0x09, 0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33,
-
4075  0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33,
-
4076  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x1c, 0x6f, 0x37, 0x70, 0x37,
-
4077  0x6f, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4078  0xfe, 0xf8, 0x00, 0x03, 0x00, 0x76, 0xfe, 0xbe, 0x01, 0x7e, 0x03, 0x9a,
-
4079  0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x09,
-
4080  0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
-
4081  0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
-
4082  0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xbe, 0x01, 0x37, 0xfe,
-
4083  0xc9, 0x01, 0xd2, 0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe,
-
4084  0xc9, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea, 0x01, 0x7e, 0x03, 0xe8,
-
4085  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4086  0x77, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd, 0x02,
-
4087  0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4088  0x00, 0x0e, 0xb4, 0x03, 0x05, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x11,
-
4089  0x33, 0x2f, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4090  0x50, 0xc6, 0x01, 0x08, 0xc6, 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8,
-
4091  0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x7e, 0x03, 0xe8,
-
4092  0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f,
-
4093  0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6, 0x01, 0x08,
-
4094  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76,
-
4095  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
-
4096  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11,
-
4097  0x23, 0x11, 0xb8, 0x42, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x02,
-
4098  0xfe, 0xfd, 0x02, 0xfd, 0x86, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xa8,
-
4099  0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
-
4100  0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4101  0x76, 0x01, 0x08, 0xc6, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe, 0xf8, 0x00,
-
4102  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x03,
-
4103  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
4104  0x21, 0x11, 0x76, 0x01, 0x08, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
-
4105  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4106  0x00, 0x14, 0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00,
-
4107  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4108  0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x76, 0xc6,
-
4109  0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02,
-
4110  0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0,
-
4111  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04,
-
4112  0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4113  0x53, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x76, 0xc6, 0xc6, 0x01,
-
4114  0x08, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88, 0x00,
-
4115  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4116  0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4117  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11,
-
4118  0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe,
-
4119  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4120  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x10, 0xb7, 0x01, 0x0c, 0x09, 0x07, 0x04,
-
4121  0x05, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x53, 0x11,
-
4122  0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
-
4123  0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38,
-
4124  0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x01,
-
4125  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10,
-
4126  0xb5, 0x08, 0x05, 0x05, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39,
-
4127  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4128  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0x01, 0x08, 0xfe, 0xf8, 0xfe,
-
4129  0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
4130  0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e,
-
4131  0xb4, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4132  0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4133  0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xa8, 0x01, 0x08, 0x02,
-
4134  0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4135  0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x07, 0x0a, 0x0a,
-
4136  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4137  0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
-
4138  0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38,
-
4139  0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
4140  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e,
-
4141  0xb4, 0x02, 0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4142  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x35, 0x21, 0x11, 0x23, 0x11,
-
4143  0x76, 0xc6, 0xc6, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
-
4144  0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
-
4145  0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00,
-
4146  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35,
-
4147  0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6,
-
4148  0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
-
4149  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e,
-
4150  0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4151  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4152  0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02,
-
4153  0x7a, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4154  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e,
-
4155  0xb4, 0x07, 0x0a, 0x0a, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4156  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4157  0x23, 0x15, 0x23, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
-
4158  0x42, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84,
-
4159  0x42, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c,
-
4160  0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x06, 0x07, 0x0f, 0x00, 0x2f,
-
4161  0x2f, 0x33, 0x30, 0x31, 0x77, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, 0x33,
-
4162  0x32, 0x1e, 0x03, 0x15, 0x11, 0x23, 0xb8, 0x1d, 0x32, 0x43, 0x26, 0x50,
-
4163  0x50, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x32, 0x26, 0x43, 0x32, 0x1d,
-
4164  0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0xfe, 0x3e, 0x00, 0x01, 0x00, 0xb8,
-
4165  0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x0b,
-
4166  0x08, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x41, 0x23, 0x11, 0x34,
-
4167  0x3e, 0x03, 0x33, 0x33, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x01, 0x3c,
-
4168  0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d,
-
4169  0xfe, 0x70, 0x01, 0xc2, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32,
-
4170  0x43, 0x26, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8,
-
4171  0x00, 0x10, 0x00, 0x0c, 0xb3, 0x0a, 0x09, 0x00, 0x09, 0x00, 0x2f, 0x2f,
-
4172  0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x14, 0x0e, 0x03, 0x23, 0x23,
-
4173  0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0xb8, 0x84, 0x20, 0x3a, 0x4f, 0x5f,
-
4174  0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d, 0x03, 0xe8, 0xfe, 0x3e, 0x34,
-
4175  0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32, 0x43, 0x26, 0x00, 0x00, 0x01,
-
4176  0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x10, 0x00, 0x0c,
-
4177  0xb3, 0x05, 0x08, 0x0f, 0x08, 0x00, 0x2f, 0x2f, 0x11, 0x33, 0x30, 0x31,
-
4178  0x41, 0x14, 0x1e, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x2e, 0x03, 0x35,
-
4179  0x11, 0x33, 0x01, 0x3c, 0x1d, 0x32, 0x43, 0x26, 0x50, 0x50, 0x34, 0x5f,
-
4180  0x4f, 0x3a, 0x20, 0x84, 0x02, 0x26, 0x26, 0x43, 0x32, 0x1d, 0x84, 0x20,
-
4181  0x3a, 0x4f, 0x5f, 0x34, 0x01, 0xc2, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xea,
-
4182  0x01, 0xb6, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05,
-
4183  0x01, 0x01, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
-
4184  0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x3f, 0x7d, 0x7d, 0x7d,
-
4185  0xea, 0x84, 0x84, 0x84, 0x84, 0x00, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x1f,
-
4186  0x01, 0x3c, 0x03, 0x39, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04,
-
4187  0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x11,
-
4188  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0xe1, 0x01,
-
4189  0x5e, 0xfe, 0xa2, 0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x00, 0x02,
-
4190  0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05, 0x00, 0x0b,
-
4191  0x00, 0x14, 0x40, 0x09, 0x04, 0x07, 0x0a, 0x01, 0x04, 0x08, 0x02, 0x06,
-
4192  0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x51, 0x35,
-
4193  0x01, 0x33, 0x15, 0x01, 0x21, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac,
-
4194  0x48, 0xfe, 0x54, 0x01, 0x64, 0xfe, 0x54, 0x48, 0x01, 0xac, 0xfe, 0xd4,
-
4195  0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac,
-
4196  0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
-
4197  0x00, 0x0c, 0xb3, 0x01, 0x02, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
4198  0x30, 0x31, 0x41, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac, 0xfe, 0x54,
-
4199  0x48, 0x01, 0xac, 0xfe, 0xd4, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac, 0x00,
-
4200  0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
-
4201  0x00, 0x0c, 0xb3, 0x04, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
4202  0x30, 0x31, 0x51, 0x35, 0x01, 0x33, 0x15, 0x01, 0x01, 0xac, 0x48, 0xfe,
-
4203  0x54, 0xfe, 0xd4, 0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x00, 0x00, 0x01,
-
4204  0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08,
-
4205  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
-
4206  0xb8, 0x84, 0xfe, 0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0,
-
4207  0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06,
-
4208  0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31,
-
4209  0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02,
-
4210  0x94, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
-
4211  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x05,
-
4212  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
4213  0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
-
4214  0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70,
-
4215  0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
-
4216  0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11,
-
4217  0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86,
-
4218  0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x03,
-
4219  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35,
-
4220  0x21, 0x15, 0x50, 0x02, 0x94, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0,
-
4221  0x00, 0xea, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
4222  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x50, 0x01,
-
4223  0x8c, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
-
4224  0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04, 0x01, 0x05, 0x05, 0x00,
-
4225  0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x77, 0x35, 0x21, 0x35,
-
4226  0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x01, 0x8c, 0xa8,
-
4227  0x42, 0x84, 0x42, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0xea,
-
4228  0x01, 0xe4, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4229  0x00, 0x1f, 0x40, 0x0d, 0x0c, 0x08, 0x08, 0x04, 0x04, 0x0d, 0x09, 0x09,
-
4230  0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33,
-
4231  0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x35, 0x33,
-
4232  0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33,
-
4233  0x15, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0xea, 0x84, 0x84,
-
4234  0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x00, 0x04, 0x00, 0xb8, 0xfe, 0x9c,
-
4235  0x01, 0x3c, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4236  0x00, 0x18, 0x40, 0x0a, 0x0d, 0x0c, 0x09, 0x08, 0x05, 0x00, 0x01, 0x04,
-
4237  0x05, 0x12, 0x00, 0x3f, 0xdd, 0xde, 0xcd, 0x10, 0xde, 0xdd, 0xde, 0xcd,
-
4238  0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11,
-
4239  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0x84, 0x84,
-
4240  0x84, 0x84, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
-
4241  0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
-
4242  0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e,
-
4243  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
4244  0x77, 0x35, 0x21, 0x15, 0xb8, 0x01, 0x8c, 0xea, 0x84, 0x84, 0x00, 0x03,
-
4245  0x00, 0x1c, 0x00, 0xea, 0x01, 0xd8, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07,
-
4246  0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04, 0x04, 0x09, 0x05, 0x05,
-
4247  0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
4248  0x33, 0x30, 0x31, 0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33,
-
4249  0x35, 0x33, 0x15, 0x1c, 0x6f, 0x37, 0x70, 0x37, 0x6f, 0xea, 0x84, 0x84,
-
4250  0x84, 0x84, 0x84, 0x84, 0x00, 0x03, 0x00, 0xb8, 0xfe, 0xbe, 0x01, 0x3c,
-
4251  0x03, 0x9a, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04,
-
4252  0x05, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
-
4253  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84,
-
4254  0x84, 0x84, 0x84, 0x84, 0xfe, 0xbe, 0x01, 0x37, 0xfe, 0xc9, 0x01, 0xd2,
-
4255  0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe, 0xc9, 0x00, 0x01,
-
4256  0x00, 0xb8, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
-
4257  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4258  0xb8, 0x84, 0xea, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76,
-
4259  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
-
4260  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4261  0x33, 0x11, 0x76, 0x42, 0x84, 0x42, 0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a,
-
4262  0xfd, 0x86, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44,
-
4263  0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01, 0x03, 0x00,
-
4264  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
-
4265  0x33, 0x11, 0x21, 0x15, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xea, 0x84,
-
4266  0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
-
4267  0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
-
4268  0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11, 0x33, 0x11,
-
4269  0x50, 0x01, 0x08, 0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01,
-
4270  0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a,
-
4271  0xb2, 0x03, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11,
-
4272  0x33, 0x11, 0x21, 0x15, 0xb8, 0x84, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd,
-
4273  0x86, 0x84, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
-
4274  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4275  0x53, 0x11, 0x33, 0x11, 0xb8, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88,
-
4276  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4277  0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
-
4278  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4279  0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
-
4280  0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a,
-
4281  0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0,
-
4282  0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03,
-
4283  0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4284  0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4285  0x08, 0x84, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfa, 0x88, 0x00,
-
4286  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4287  0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4288  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11,
-
4289  0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x86,
-
4290  0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4291  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x07, 0x00,
-
4292  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
4293  0x33, 0x35, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6,
-
4294  0xc6, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
-
4295  0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0,
-
4296  0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x02,
-
4297  0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4298  0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe,
-
4299  0xf8, 0x01, 0x08, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84,
-
4300  0x42, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4301  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02,
-
4302  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35,
-
4303  0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4304  0x08, 0x84, 0x01, 0x08, 0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe,
-
4305  0xf8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4306  0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f,
-
4307  0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x11,
-
4308  0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84,
-
4309  0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd,
-
4310  0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4311  0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x05, 0x05,
-
4312  0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4313  0x53, 0x11, 0x23, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
4314  0x01, 0xce, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84,
-
4315  0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8,
-
4316  0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x08, 0x08, 0x03, 0x01, 0x00, 0x00,
-
4317  0x2f, 0x32, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11,
-
4318  0x21, 0x11, 0x33, 0x15, 0x23, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
-
4319  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01,
-
4320  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4321  0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4322  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4323  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01,
-
4324  0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd,
-
4325  0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4326  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x05, 0x04, 0x04, 0x07, 0x00,
-
4327  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
4328  0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42,
-
4329  0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x42,
-
4330  0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
-
4331  0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4332  0xb7, 0x08, 0x03, 0x09, 0x05, 0x01, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f,
-
4333  0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11,
-
4334  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x90, 0x84, 0x6c,
-
4335  0x84, 0x90, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86,
-
4336  0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0xb4, 0x03, 0xe8,
-
4337  0x00, 0x09, 0x00, 0x12, 0xb6, 0x08, 0x03, 0x05, 0x01, 0x01, 0x03, 0x00,
-
4338  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
-
4339  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x50, 0x90, 0x84, 0x6c,
-
4340  0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x02, 0x00,
-
4341  0x00, 0x01, 0x00, 0x40, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
-
4342  0x00, 0x12, 0xb6, 0x06, 0x01, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x2f,
-
4343  0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4344  0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x84, 0x90, 0xea,
-
4345  0x02, 0xfe, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01,
-
4346  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4347  0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4348  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
-
4349  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6,
-
4350  0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4351  0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
-
4352  0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01,
-
4353  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
-
4354  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xea,
-
4355  0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4356  0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x03, 0x02,
-
4357  0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31,
-
4358  0x53, 0x11, 0x21, 0x35, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0xb8, 0xfe,
-
4359  0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4360  0xfd, 0x02, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x7e,
-
4361  0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f,
-
4362  0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6,
-
4363  0x01, 0x08, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01, 0x00, 0x76,
-
4364  0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x02,
-
4365  0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
4366  0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11,
-
4367  0xb8, 0x42, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x02,
-
4368  0xfe, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea,
-
4369  0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x01, 0x00,
-
4370  0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4371  0x76, 0x01, 0x08, 0xc6, 0xea, 0x02, 0xfe, 0xfd, 0x86, 0x84, 0x00, 0x01,
-
4372  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08,
-
4373  0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4374  0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x01, 0x08,
-
4375  0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38,
-
4376  0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4377  0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x05, 0x01,
-
4378  0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x67, 0x11,
-
4379  0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08,
-
4380  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
-
4381  0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08,
-
4382  0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4383  0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x76, 0xc6, 0x01, 0x08, 0x84, 0x42,
-
4384  0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfc, 0xc0,
-
4385  0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05,
-
4386  0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31,
-
4387  0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x50, 0x01, 0x08, 0x84, 0xa8, 0x01,
-
4388  0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
4389  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
-
4390  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11,
-
4391  0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x03, 0x40,
-
4392  0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0x00, 0xb8,
-
4393  0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01,
-
4394  0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4395  0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
-
4396  0xf8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x03, 0xe8,
-
4397  0x00, 0x03, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x01, 0x09, 0x05, 0x05, 0x04,
-
4398  0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
-
4399  0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x11, 0x33, 0x11,
-
4400  0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x01, 0x08, 0x84, 0x01, 0x08,
-
4401  0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x00, 0x01,
-
4402  0xff, 0xb0, 0x00, 0x72, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10,
-
4403  0xb5, 0x01, 0x05, 0x04, 0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
-
4404  0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11,
-
4405  0x33, 0x11, 0x50, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x72, 0x84,
-
4406  0x6c, 0x84, 0x02, 0x02, 0xfc, 0x8a, 0x00, 0x01, 0x00, 0xb8, 0x00, 0x72,
-
4407  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x07, 0x03, 0x06,
-
4408  0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31,
-
4409  0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0xb8, 0x84,
-
4410  0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x72, 0x03, 0x76, 0xfd, 0xfe, 0x84,
-
4411  0x6c, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4412  0x00, 0x13, 0x00, 0x1f, 0x40, 0x0d, 0x10, 0x0a, 0x05, 0x0b, 0x07, 0x03,
-
4413  0x0e, 0x12, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
-
4414  0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53,
-
4415  0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
-
4416  0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c,
-
4417  0x84, 0x90, 0x90, 0x84, 0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4418  0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
-
4419  0x86, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8,
-
4420  0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x09, 0x05, 0x03, 0x02,
-
4421  0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
-
4422  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4423  0x33, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x02, 0x7a,
-
4424  0x84, 0x02, 0x7a, 0xfa, 0x88, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x02,
-
4425  0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x0b,
-
4426  0x00, 0x14, 0xb7, 0x0b, 0x06, 0x01, 0x07, 0x0a, 0x0a, 0x01, 0x00, 0x00,
-
4427  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
-
4428  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x11, 0x40, 0x84,
-
4429  0x6c, 0x84, 0x90, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
-
4430  0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4431  0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a,
-
4432  0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
4433  0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
-
4434  0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe,
-
4435  0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
-
4436  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07,
-
4437  0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4438  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
-
4439  0x76, 0xc6, 0xc6, 0x01, 0x08, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4440  0xfa, 0x88, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4441  0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f,
-
4442  0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4443  0x23, 0x11, 0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd,
-
4444  0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4445  0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4446  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11,
-
4447  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8,
-
4448  0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8,
-
4449  0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
-
4450  0x00, 0x07, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4451  0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4452  0x08, 0x84, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88,
-
4453  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4454  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
4455  0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8,
-
4456  0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4457  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x13, 0x00, 0x1d,
-
4458  0x40, 0x0c, 0x09, 0x0b, 0x08, 0x08, 0x0e, 0x05, 0x12, 0x01, 0x01, 0x0f,
-
4459  0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
-
4460  0x11, 0x33, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21,
-
4461  0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21,
-
4462  0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01,
-
4463  0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x02, 0x84,
-
4464  0x6c, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00,
-
4465  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x0b,
-
4466  0x00, 0x19, 0x40, 0x0a, 0x08, 0x05, 0x01, 0x04, 0x05, 0x04, 0x05, 0x04,
-
4467  0x09, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
4468  0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21,
-
4469  0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4470  0x84, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0x02, 0x02, 0xfa, 0x88,
-
4471  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4472  0x00, 0x19, 0x40, 0x0a, 0x03, 0x06, 0x0a, 0x07, 0x06, 0x07, 0x06, 0x07,
-
4473  0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
4474  0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21,
-
4475  0x15, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4476  0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe,
-
4477  0x00, 0x05, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13,
-
4478  0x00, 0x27, 0x00, 0x36, 0x00, 0x42, 0x00, 0x4e, 0x00, 0x1b, 0x40, 0x09,
-
4479  0x2f, 0x28, 0x43, 0x37, 0x3d, 0x49, 0x06, 0x14, 0x00, 0xb8, 0x01, 0x40,
-
4480  0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30,
-
4481  0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
4482  0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
-
4483  0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x37, 0x32, 0x16,
-
4484  0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36,
-
4485  0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
4486  0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
4487  0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
4488  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b,
-
4489  0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x1e, 0x38, 0x12,
-
4490  0x15, 0x13, 0x2a, 0x16, 0x10, 0x1e, 0x18, 0x09, 0x1b, 0x16, 0x36, 0x25,
-
4491  0x0d, 0x14, 0x14, 0x0d, 0x0c, 0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c,
-
4492  0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
-
4493  0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c,
-
4494  0x21, 0x22, 0x3a, 0x2d, 0x19, 0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c,
-
4495  0x1a, 0x90, 0x1f, 0x1a, 0x20, 0x1a, 0x18, 0x0d, 0x16, 0x0f, 0x22, 0x1b,
-
4496  0x1c, 0x1c, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4497  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x00, 0x05, 0x00, 0x29, 0x00, 0x63,
-
4498  0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x37, 0x00, 0x43,
-
4499  0x00, 0x4f, 0x00, 0x1b, 0x40, 0x09, 0x28, 0x30, 0x44, 0x38, 0x4a, 0x3e,
-
4500  0x06, 0x14, 0x00, 0xb8, 0x01, 0x40, 0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
-
4501  0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35,
-
4502  0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x27,
-
4503  0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
4504  0x14, 0x1e, 0x02, 0x37, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x33, 0x32,
-
4505  0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36,
-
4506  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36,
-
4507  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20,
-
4508  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22,
-
4509  0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19,
-
4510  0x2d, 0x3b, 0x22, 0x1e, 0x37, 0x15, 0x1a, 0x09, 0x19, 0x1d, 0x11, 0x0f,
-
4511  0x1c, 0x1b, 0x0c, 0x16, 0x13, 0x38, 0x60, 0x0d, 0x14, 0x14, 0x0d, 0x0c,
-
4512  0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x14, 0x14, 0x63, 0x21,
-
4513  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b,
-
4514  0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c, 0x21, 0x22, 0x3a, 0x2d, 0x19,
-
4515  0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c, 0x1a, 0x2d, 0x1d, 0x1a, 0x22,
-
4516  0x0e, 0x17, 0x0c, 0x0b, 0x16, 0x10, 0x20, 0x19, 0x20, 0x7f, 0x14, 0x0c,
-
4517  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4518  0x0c, 0x14, 0x00, 0x04, 0x00, 0x28, 0x00, 0x63, 0x01, 0xc9, 0x02, 0x05,
-
4519  0x00, 0x13, 0x00, 0x23, 0x00, 0x2f, 0x00, 0x3b, 0x00, 0x16, 0xb7, 0x14,
-
4520  0x1c, 0x30, 0x24, 0x2a, 0x36, 0x06, 0x00, 0xb8, 0x01, 0x40, 0xb0, 0x0a,
-
4521  0x00, 0x2f, 0x1a, 0xcc, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
-
4522  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
4523  0x27, 0x32, 0x36, 0x37, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27,
-
4524  0x07, 0x16, 0x16, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
-
4525  0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
-
4526  0x15, 0x14, 0x16, 0xf8, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b,
-
4527  0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2a, 0x1e, 0x37, 0x14, 0x17,
-
4528  0x0c, 0x1a, 0x1d, 0x0f, 0x10, 0x1e, 0x19, 0x09, 0x1a, 0x15, 0x37, 0x25,
-
4529  0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x13, 0x13, 0x94, 0x0c, 0x14, 0x14, 0x0c,
-
4530  0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
-
4531  0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x5b, 0x20, 0x19, 0x20,
-
4532  0x10, 0x16, 0x0b, 0x0c, 0x17, 0x0e, 0x22, 0x1a, 0x1d, 0x7f, 0x14, 0x0c,
-
4533  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4534  0x0c, 0x14, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xe7, 0x02, 0x59,
-
4535  0x00, 0x0b, 0x00, 0x29, 0x00, 0x17, 0x40, 0x09, 0x1b, 0x18, 0x0b, 0x1d,
-
4536  0x1d, 0x06, 0x0c, 0x07, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
-
4537  0x33, 0x33, 0x33, 0x30, 0x31, 0x65, 0x1e, 0x02, 0x17, 0x17, 0x21, 0x37,
-
4538  0x3e, 0x02, 0x35, 0x13, 0x1e, 0x06, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22,
-
4539  0x27, 0x23, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x05, 0x35,
-
4540  0x01, 0x09, 0x01, 0x1d, 0x3f, 0x34, 0x03, 0xfe, 0xba, 0x03, 0x37, 0x40,
-
4541  0x1c, 0x21, 0x02, 0x1a, 0x27, 0x2d, 0x2d, 0x25, 0x17, 0x1d, 0x30, 0x1e,
-
4542  0x55, 0x2b, 0x04, 0x2b, 0x55, 0x1d, 0x31, 0x1d, 0x18, 0x26, 0x2f, 0x2e,
-
4543  0x26, 0x18, 0xfa, 0x4e, 0x64, 0x32, 0x04, 0x12, 0x12, 0x03, 0x31, 0x65,
-
4544  0x4f, 0x01, 0x5f, 0x24, 0x35, 0x2a, 0x25, 0x27, 0x2d, 0x3b, 0x27, 0x23,
-
4545  0x35, 0x1d, 0x37, 0x37, 0x1d, 0x35, 0x23, 0x27, 0x3b, 0x2d, 0x27, 0x25,
-
4546  0x2a, 0x35, 0x24, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x01, 0xef,
-
4547  0x02, 0x49, 0x00, 0x06, 0x00, 0x2a, 0x00, 0x31, 0x00, 0x25, 0x40, 0x10,
-
4548  0x2c, 0x12, 0x0f, 0x0f, 0x06, 0x15, 0x15, 0x24, 0x2f, 0x30, 0x30, 0x01,
-
4549  0x03, 0x02, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4550  0x33, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x77,
-
4551  0x15, 0x23, 0x37, 0x36, 0x36, 0x35, 0x37, 0x32, 0x16, 0x16, 0x15, 0x14,
-
4552  0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26,
-
4553  0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
4554  0x32, 0x16, 0x16, 0x15, 0x14, 0x07, 0x07, 0x33, 0x14, 0x16, 0x17, 0x17,
-
4555  0x23, 0xfa, 0x5e, 0x03, 0x20, 0x19, 0x98, 0x23, 0x3a, 0x22, 0x22, 0x3a,
-
4556  0x23, 0x28, 0x40, 0x0e, 0x0e, 0x3f, 0x28, 0x23, 0x3b, 0x22, 0x22, 0x3b,
-
4557  0x23, 0x05, 0x10, 0x22, 0x3b, 0x23, 0x23, 0x3a, 0x22, 0x10, 0x6f, 0x22,
-
4558  0x19, 0x20, 0x03, 0x5e, 0xfa, 0xfa, 0x12, 0x04, 0x6d, 0x77, 0x91, 0x22,
-
4559  0x3a, 0x23, 0x23, 0x3b, 0x22, 0x2c, 0x22, 0x22, 0x2c, 0x22, 0x3b, 0x23,
-
4560  0x23, 0x3a, 0x22, 0x1d, 0x22, 0x23, 0x3a, 0x22, 0x22, 0x3a, 0x23, 0x22,
-
4561  0x1d, 0x91, 0x77, 0x6d, 0x04, 0x12, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x00,
-
4562  0x01, 0xe8, 0x02, 0x4f, 0x00, 0x21, 0x00, 0x13, 0xb2, 0x1d, 0x19, 0x0d,
-
4563  0xb8, 0xff, 0xff, 0xb2, 0x72, 0x19, 0x00, 0x00, 0x2f, 0x32, 0x2b, 0x11,
-
4564  0x39, 0x30, 0x31, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x05, 0x15,
-
4565  0x23, 0x34, 0x2e, 0x05, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
4566  0x15, 0x33, 0x34, 0x36, 0x36, 0x01, 0x76, 0x20, 0x33, 0x1f, 0x18, 0x26,
-
4567  0x2f, 0x2f, 0x26, 0x18, 0x28, 0x18, 0x26, 0x2f, 0x2f, 0x26, 0x18, 0x1f,
-
4568  0x34, 0x1f, 0x22, 0x36, 0x1f, 0x0a, 0x23, 0x37, 0x02, 0x4f, 0x20, 0x38,
-
4569  0x24, 0x30, 0x4b, 0x3d, 0x36, 0x36, 0x3b, 0x47, 0x2d, 0x2d, 0x47, 0x3b,
-
4570  0x36, 0x36, 0x3d, 0x4b, 0x30, 0x24, 0x38, 0x20, 0x1a, 0x33, 0x25, 0x25,
-
4571  0x32, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x01, 0xe5, 0x02, 0x5c,
-
4572  0x00, 0x07, 0x00, 0x08, 0xb1, 0x00, 0x04, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4573  0x53, 0x33, 0x13, 0x15, 0x03, 0x23, 0x03, 0x35, 0xf0, 0x1e, 0xd7, 0xd7,
-
4574  0x1e, 0xe1, 0x02, 0x5c, 0xfe, 0xe6, 0x1e, 0xfe, 0xdd, 0x01, 0x23, 0x1e,
-
4575  0x00, 0x01, 0x00, 0x09, 0xff, 0xf0, 0x01, 0xd6, 0x02, 0x77, 0x00, 0x0d,
-
4576  0x00, 0x0f, 0xb6, 0x09, 0x07, 0x08, 0x01, 0x04, 0x06, 0x00, 0x00, 0x2f,
-
4577  0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x03, 0x07, 0x27, 0x37,
-
4578  0x17, 0x3e, 0x03, 0x01, 0x72, 0x64, 0x16, 0x44, 0x54, 0x5a, 0x2d, 0x98,
-
4579  0x41, 0x57, 0x21, 0x3d, 0x35, 0x2c, 0x02, 0x77, 0x1e, 0x64, 0xb4, 0x9c,
-
4580  0x82, 0x33, 0xa9, 0x38, 0x6b, 0x2f, 0x6c, 0x7f, 0x9a, 0x00, 0x00, 0x01,
-
4581  0x00, 0x00, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x79, 0x00, 0x0e, 0x00, 0x12,
-
4582  0x40, 0x09, 0x06, 0x09, 0x0a, 0x07, 0x08, 0x01, 0x06, 0x05, 0x00, 0x00,
-
4583  0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x07, 0x27,
-
4584  0x27, 0x37, 0x17, 0x27, 0x3e, 0x03, 0x01, 0x7e, 0x74, 0x27, 0x72, 0x87,
-
4585  0x47, 0x5a, 0x31, 0x71, 0x31, 0x4c, 0x21, 0x4f, 0x52, 0x4a, 0x02, 0x79,
-
4586  0x27, 0x85, 0xdc, 0xaf, 0x42, 0x30, 0xf3, 0x19, 0xfd, 0x1f, 0x22, 0x67,
-
4587  0x88, 0xa7, 0xff, 0xff, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
-
4588  0x06, 0x06, 0x02, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0c,
-
4589  0x01, 0xf4, 0x02, 0x75, 0x00, 0x09, 0x00, 0x12, 0x00, 0x0a, 0xb2, 0x0a,
-
4590  0x0e, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x27, 0x3e, 0x02,
-
4591  0x37, 0x17, 0x0e, 0x02, 0x17, 0x26, 0x02, 0x27, 0x37, 0x1e, 0x02, 0x17,
-
4592  0x45, 0x45, 0x40, 0x8a, 0x9e, 0x5a, 0x32, 0x58, 0x96, 0x83, 0xf1, 0x4f,
-
4593  0x71, 0x23, 0x54, 0x16, 0x3b, 0x4f, 0x34, 0x0c, 0x39, 0x60, 0xac, 0xa6,
-
4594  0x58, 0x3c, 0x51, 0xa7, 0xb0, 0x5d, 0x76, 0x01, 0x26, 0xb2, 0x19, 0x6f,
-
4595  0xc4, 0xa8, 0x48, 0x00, 0x00, 0x02, 0x00, 0x04, 0xff, 0xfd, 0x02, 0x0b,
-
4596  0x02, 0x91, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x0e, 0xb4, 0x00, 0x0e, 0x06,
-
4597  0x14, 0x0e, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27,
-
4598  0x3e, 0x03, 0x37, 0x17, 0x0e, 0x05, 0x17, 0x2e, 0x03, 0x27, 0x37, 0x16,
-
4599  0x12, 0x17, 0x6a, 0x66, 0x37, 0x66, 0x66, 0x70, 0x43, 0x51, 0x31, 0x51,
-
4600  0x46, 0x3e, 0x3c, 0x3d, 0xea, 0x2e, 0x4e, 0x42, 0x33, 0x12, 0x77, 0x20,
-
4601  0x6f, 0x56, 0x06, 0x53, 0x50, 0x8c, 0x7d, 0x76, 0x3b, 0x4e, 0x2c, 0x54,
-
4602  0x52, 0x53, 0x57, 0x5e, 0x3e, 0x39, 0x86, 0x9b, 0xae, 0x61, 0x2b, 0xa6,
-
4603  0xfe, 0xe0, 0x80, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xf5, 0x01, 0xd4,
-
4604  0x02, 0x79, 0x00, 0x32, 0x00, 0x3e, 0x00, 0x29, 0x40, 0x14, 0x38, 0x1e,
-
4605  0x33, 0x15, 0x11, 0x11, 0x15, 0x1e, 0x15, 0x1e, 0x15, 0x00, 0x22, 0x0a,
-
4606  0x03, 0x72, 0x2c, 0x00, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
4607  0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30,
-
4608  0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
4609  0x02, 0x15, 0x15, 0x23, 0x35, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35,
-
4610  0x34, 0x3e, 0x02, 0x17, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
4611  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x32,
-
4612  0x3e, 0x02, 0x35, 0x26, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x27, 0x32,
-
4613  0x60, 0x4b, 0x2d, 0x2a, 0x46, 0x56, 0x2c, 0x28, 0x48, 0x36, 0x1f, 0x46,
-
4614  0x11, 0x2e, 0x1d, 0x26, 0x3c, 0x22, 0x1a, 0x37, 0x54, 0x38, 0x1f, 0x38,
-
4615  0x28, 0x22, 0x3e, 0x30, 0x1c, 0x22, 0x3b, 0x49, 0x27, 0x1c, 0x36, 0x19,
-
4616  0x20, 0x20, 0x4a, 0x11, 0x15, 0x1f, 0x14, 0x0a, 0x35, 0x44, 0x22, 0x24,
-
4617  0x0b, 0x27, 0x50, 0x7a, 0x54, 0x52, 0x79, 0x4e, 0x26, 0x1c, 0x39, 0x58,
-
4618  0x3a, 0xe5, 0x23, 0x15, 0x16, 0x22, 0x3d, 0x26, 0x23, 0x39, 0x29, 0x14,
-
4619  0x03, 0x25, 0x38, 0x20, 0x1d, 0x3e, 0x5e, 0x41, 0x46, 0x65, 0x42, 0x20,
-
4620  0x11, 0x12, 0x38, 0x15, 0x17, 0xee, 0x11, 0x26, 0x3e, 0x2d, 0x04, 0x14,
-
4621  0x29, 0x1d, 0x24, 0x28, 0x00, 0x03, 0x00, 0x22, 0xff, 0xf3, 0x01, 0xe3,
-
4622  0x02, 0x76, 0x00, 0x2e, 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x23, 0x40, 0x15,
-
4623  0x01, 0x33, 0x2d, 0x20, 0x34, 0x1f, 0x0e, 0x3e, 0x08, 0x05, 0x46, 0x16,
-
4624  0x03, 0x72, 0x2f, 0x05, 0x09, 0x72, 0x2e, 0x00, 0x09, 0x00, 0x3f, 0x32,
-
4625  0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x45, 0x27, 0x0e,
-
4626  0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x26, 0x26,
-
4627  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02,
-
4628  0x07, 0x17, 0x3e, 0x03, 0x37, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x07,
-
4629  0x17, 0x25, 0x32, 0x36, 0x36, 0x37, 0x27, 0x0e, 0x03, 0x15, 0x14, 0x1e,
-
4630  0x02, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
4631  0x14, 0x16, 0x16, 0x01, 0x9b, 0x35, 0x14, 0x35, 0x3c, 0x20, 0x2f, 0x48,
-
4632  0x28, 0x11, 0x1f, 0x2e, 0x1c, 0x23, 0x21, 0x16, 0x27, 0x33, 0x1d, 0x29,
-
4633  0x3d, 0x23, 0x10, 0x1c, 0x26, 0x17, 0x69, 0x0b, 0x0f, 0x0a, 0x05, 0x01,
-
4634  0x02, 0x03, 0x46, 0x0b, 0x18, 0x19, 0x0e, 0x42, 0xfe, 0xee, 0x16, 0x27,
-
4635  0x25, 0x10, 0x76, 0x13, 0x1c, 0x14, 0x0b, 0x0d, 0x16, 0x1d, 0x26, 0x11,
-
4636  0x1a, 0x12, 0x09, 0x23, 0x1a, 0x12, 0x1d, 0x11, 0x0b, 0x1a, 0x0d, 0x54,
-
4637  0x19, 0x25, 0x13, 0x29, 0x46, 0x2a, 0x20, 0x39, 0x33, 0x2c, 0x10, 0x2a,
-
4638  0x4d, 0x23, 0x1c, 0x31, 0x24, 0x14, 0x27, 0x3c, 0x22, 0x1a, 0x33, 0x2c,
-
4639  0x25, 0x0c, 0x92, 0x0d, 0x18, 0x17, 0x17, 0x0c, 0x03, 0x06, 0x03, 0x30,
-
4640  0x15, 0x27, 0x25, 0x13, 0x55, 0x17, 0x0f, 0x1c, 0x13, 0xa3, 0x0b, 0x1f,
-
4641  0x23, 0x25, 0x13, 0x14, 0x21, 0x19, 0x0e, 0x01, 0x3d, 0x09, 0x18, 0x1f,
-
4642  0x21, 0x0f, 0x1e, 0x29, 0x11, 0x1e, 0x14, 0x0f, 0x24, 0x29, 0x00, 0x01,
-
4643  0x00, 0x38, 0xff, 0xbc, 0x01, 0xbd, 0x02, 0x99, 0x00, 0x10, 0x00, 0x10,
-
4644  0xb6, 0x0d, 0x00, 0x0f, 0x0a, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b, 0x32,
-
4645  0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36,
-
4646  0x33, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0xe6, 0x24, 0x41, 0x2e, 0x1b,
-
4647  0x2f, 0x6c, 0x5d, 0x8d, 0x48, 0x46, 0x44, 0x01, 0x84, 0x04, 0x1d, 0x31,
-
4648  0x3f, 0x24, 0x2b, 0x4b, 0x2e, 0xfd, 0x23, 0x02, 0x9a, 0xfd, 0x66, 0x00,
-
4649  0x00, 0x02, 0x00, 0x3c, 0xff, 0xc9, 0x01, 0xa5, 0x02, 0xa2, 0x00, 0x4c,
-
4650  0x00, 0x63, 0x00, 0x1e, 0x40, 0x12, 0x12, 0x48, 0x45, 0x4d, 0x51, 0x1a,
-
4651  0x57, 0x1f, 0x22, 0x37, 0x0a, 0x00, 0x33, 0x26, 0x01, 0x72, 0x0d, 0x00,
-
4652  0x00, 0x2f, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22,
-
4653  0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
4654  0x35, 0x34, 0x26, 0x26, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37,
-
4655  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07,
-
4656  0x26, 0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e,
-
4657  0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x06, 0x06, 0x07, 0x16, 0x16, 0x15,
-
4658  0x14, 0x0e, 0x02, 0x13, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x27,
-
4659  0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x16, 0x16, 0xee, 0x34, 0x5e,
-
4660  0x20, 0x39, 0x06, 0x02, 0x02, 0x0a, 0x0e, 0x0b, 0x18, 0x1e, 0x11, 0x16,
-
4661  0x24, 0x17, 0x0d, 0x13, 0x2f, 0x2b, 0x33, 0x3f, 0x1c, 0x0b, 0x15, 0x1d,
-
4662  0x12, 0x20, 0x21, 0x2c, 0x4b, 0x30, 0x22, 0x3d, 0x31, 0x11, 0x40, 0x02,
-
4663  0x04, 0x01, 0x02, 0x10, 0x17, 0x1e, 0x12, 0x16, 0x26, 0x15, 0x10, 0x23,
-
4664  0x36, 0x25, 0x17, 0x24, 0x1c, 0x0f, 0x12, 0x20, 0x15, 0x1e, 0x1f, 0x1a,
-
4665  0x2e, 0x40, 0x1f, 0x0b, 0x0d, 0x07, 0x0c, 0x19, 0x25, 0x19, 0x27, 0x09,
-
4666  0x0e, 0x0b, 0x05, 0x0b, 0x17, 0x25, 0x19, 0x10, 0x19, 0x37, 0x2b, 0x2c,
-
4667  0x49, 0x01, 0x07, 0x0b, 0x13, 0x0d, 0x0b, 0x0d, 0x08, 0x0b, 0x14, 0x1a,
-
4668  0x0f, 0x15, 0x1e, 0x1a, 0x0c, 0x11, 0x26, 0x30, 0x1e, 0x11, 0x1d, 0x1c,
-
4669  0x15, 0x06, 0x13, 0x37, 0x25, 0x27, 0x42, 0x29, 0x16, 0x2a, 0x1e, 0x38,
-
4670  0x03, 0x06, 0x04, 0x0d, 0x18, 0x13, 0x0b, 0x13, 0x1f, 0x14, 0x14, 0x1c,
-
4671  0x16, 0x17, 0x0e, 0x09, 0x19, 0x1e, 0x24, 0x15, 0x14, 0x27, 0x1d, 0x09,
-
4672  0x16, 0x36, 0x20, 0x22, 0x39, 0x29, 0x18, 0x01, 0x1f, 0x07, 0x11, 0x16,
-
4673  0x0d, 0x10, 0x18, 0x15, 0x12, 0x09, 0x0e, 0x03, 0x0c, 0x0f, 0x12, 0x0a,
-
4674  0x0f, 0x19, 0x14, 0x11, 0x08, 0x05, 0x08, 0x00, 0x00, 0x03, 0x00, 0x0b,
-
4675  0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x25, 0x00, 0x3a, 0x00, 0x4e,
-
4676  0x00, 0x18, 0xb6, 0x00, 0x1e, 0x15, 0x09, 0x04, 0x45, 0x30, 0xb8, 0x01,
-
4677  0xc0, 0xb1, 0x3b, 0x26, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39,
-
4678  0x30, 0x31, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
-
4679  0x16, 0x17, 0x07, 0x26, 0x34, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22,
-
4680  0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17,
-
4681  0x06, 0x06, 0x07, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
-
4682  0x1e, 0x02, 0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34,
-
4683  0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x02,
-
4684  0x29, 0x40, 0x26, 0x17, 0x27, 0x31, 0x1a, 0x37, 0x44, 0x0b, 0x3b, 0x04,
-
4685  0x01, 0x09, 0x0e, 0x07, 0x15, 0x0b, 0x0c, 0x1b, 0x19, 0x10, 0x16, 0x26,
-
4686  0x18, 0x0e, 0x1b, 0x14, 0x06, 0x33, 0x14, 0x42, 0x2c, 0x32, 0x57, 0x43,
-
4687  0x25, 0x26, 0x43, 0x58, 0x32, 0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d,
-
4688  0x4a, 0x26, 0x28, 0x47, 0x35, 0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46,
-
4689  0x35, 0x1f, 0x1f, 0x35, 0x46, 0x7c, 0x29, 0x47, 0x28, 0x20, 0x34, 0x28,
-
4690  0x16, 0x35, 0x2b, 0x13, 0x06, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x06, 0x0a,
-
4691  0x14, 0x21, 0x16, 0x1c, 0x2c, 0x1b, 0x0a, 0x13, 0x0d, 0x1e, 0x21, 0x25,
-
4692  0x69, 0x28, 0x46, 0x5d, 0x34, 0x35, 0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c,
-
4693  0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a, 0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a,
-
4694  0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d, 0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00,
-
4695  0x00, 0x04, 0x00, 0x0b, 0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x0e,
-
4696  0x00, 0x17, 0x00, 0x2c, 0x00, 0x40, 0x00, 0x1c, 0x40, 0x0a, 0x00, 0x03,
-
4697  0x02, 0x0d, 0x0f, 0x17, 0x05, 0x07, 0x37, 0x22, 0xb8, 0x01, 0xc0, 0xb1,
-
4698  0x2d, 0x18, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31,
-
4699  0x65, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
4700  0x06, 0x07, 0x17, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23,
-
4701  0x13, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
4702  0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
4703  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x3f, 0x39, 0x37,
-
4704  0x33, 0x5b, 0x2b, 0x34, 0x18, 0x1b, 0x1b, 0x3c, 0xa5, 0x2d, 0x1f, 0x1f,
-
4705  0x20, 0x21, 0x2a, 0x2d, 0x32, 0x57, 0x43, 0x25, 0x26, 0x43, 0x58, 0x32,
-
4706  0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d, 0x4a, 0x26, 0x28, 0x47, 0x35,
-
4707  0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46, 0x35, 0x1f, 0x1f, 0x35, 0x46,
-
4708  0x87, 0x77, 0x74, 0x01, 0x19, 0x15, 0x25, 0x19, 0x18, 0x2a, 0x08, 0x77,
-
4709  0x99, 0x14, 0x13, 0x13, 0x14, 0xfe, 0x9d, 0x28, 0x46, 0x5d, 0x34, 0x35,
-
4710  0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c, 0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a,
-
4711  0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a, 0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d,
-
4712  0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00, 0x00, 0x02, 0x00, 0x12, 0x01, 0x40,
-
4713  0x01, 0xe3, 0x02, 0x7b, 0x00, 0x07, 0x00, 0x14, 0x00, 0x2b, 0x40, 0x15,
-
4714  0x0c, 0x09, 0x09, 0x06, 0x02, 0x02, 0x0b, 0x13, 0x10, 0x03, 0x12, 0x12,
-
4715  0x00, 0x0f, 0x08, 0x08, 0x00, 0x00, 0x03, 0x03, 0x72, 0x00, 0x2b, 0x32,
-
4716  0x2f, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x17, 0x39, 0x32, 0x11, 0x33,
-
4717  0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x15, 0x23,
-
4718  0x11, 0x33, 0x11, 0x33, 0x17, 0x37, 0x33, 0x11, 0x23, 0x35, 0x07, 0x23,
-
4719  0x27, 0x15, 0x64, 0x52, 0xdc, 0x54, 0x6d, 0x2a, 0x43, 0x47, 0x28, 0x34,
-
4720  0x33, 0x14, 0x2e, 0x01, 0x40, 0x01, 0x0b, 0x30, 0x30, 0xfe, 0xf5, 0x01,
-
4721  0x3b, 0x8b, 0x8b, 0xfe, 0xc5, 0xc9, 0x5f, 0x5e, 0xc8, 0x00, 0x00, 0x02,
-
4722  0x00, 0x75, 0x01, 0x76, 0x01, 0x8b, 0x02, 0x88, 0x00, 0x10, 0x00, 0x20,
-
4723  0x00, 0x10, 0xb6, 0x11, 0x00, 0xc0, 0x19, 0x09, 0x03, 0x72, 0x00, 0x2b,
-
4724  0x32, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34,
-
4725  0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
4726  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
4727  0x16, 0x16, 0x01, 0x00, 0x26, 0x40, 0x25, 0x17, 0x26, 0x32, 0x1c, 0x26,
-
4728  0x3f, 0x26, 0x25, 0x3f, 0x27, 0x14, 0x1e, 0x12, 0x12, 0x1d, 0x14, 0x13,
-
4729  0x1f, 0x12, 0x12, 0x1f, 0x01, 0x76, 0x25, 0x3e, 0x26, 0x1d, 0x32, 0x25,
-
4730  0x15, 0x26, 0x3e, 0x25, 0x25, 0x3e, 0x26, 0x40, 0x14, 0x22, 0x14, 0x14,
-
4731  0x22, 0x15, 0x15, 0x22, 0x14, 0x14, 0x22, 0x14, 0x00, 0x01, 0x00, 0xca,
-
4732  0x02, 0x05, 0x01, 0x30, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
-
4733  0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xfc, 0x32,
-
4734  0x17, 0x4f, 0x02, 0x05, 0xb8, 0x00, 0xff, 0xff, 0x00, 0x8c, 0x02, 0x05,
-
4735  0x01, 0x76, 0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x46, 0x00, 0x00, 0x06,
-
4736  0x03, 0x55, 0xc2, 0x00, 0x00, 0x01, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
-
4737  0x02, 0x8c, 0x00, 0x03, 0x00, 0x0a, 0xb3, 0x01, 0x03, 0x72, 0x00, 0x00,
-
4738  0x2f, 0x2b, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x97, 0x03,
-
4739  0x23, 0xfc, 0xdd, 0x00, 0x00, 0x02, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
-
4740  0x02, 0x8c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb5, 0x05, 0x04, 0x00,
-
4741  0x01, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4742  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x4f, 0x4f, 0x01, 0x23,
-
4743  0x01, 0x69, 0xfe, 0x97, 0xfe, 0x46, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01,
-
4744  0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x0b, 0x00, 0x18,
-
4745  0x40, 0x0a, 0x07, 0x03, 0x0a, 0x02, 0x02, 0x03, 0x03, 0x05, 0x01, 0x00,
-
4746  0x00, 0x2f, 0x3f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31,
-
4747  0x57, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
-
4748  0xd2, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0x97, 0x02, 0x1f, 0x46, 0xbe, 0xbe,
-
4749  0x46, 0xfd, 0xe1, 0x00, 0x00, 0x02, 0x00, 0x12, 0xff, 0xf8, 0x01, 0xb8,
-
4750  0x02, 0xac, 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x20, 0x40, 0x11, 0x11, 0x28,
-
4751  0x1a, 0x37, 0x04, 0x1f, 0x05, 0x05, 0x0b, 0x32, 0x1f, 0x01, 0x72, 0x00,
-
4752  0x0b, 0x13, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x12,
-
4753  0x17, 0x39, 0x30, 0x31, 0x65, 0x32, 0x3e, 0x02, 0x37, 0x33, 0x0e, 0x03,
-
4754  0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, 0x0e, 0x02, 0x07, 0x35, 0x3e, 0x02,
-
4755  0x37, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06,
-
4756  0x06, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x13, 0x34, 0x26, 0x26, 0x23, 0x22,
-
4757  0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x01, 0x1b, 0x13, 0x1d, 0x12, 0x0a,
-
4758  0x01, 0x50, 0x02, 0x14, 0x29, 0x3f, 0x2e, 0x28, 0x3b, 0x27, 0x13, 0x11,
-
4759  0x20, 0x1d, 0x0f, 0x10, 0x20, 0x1e, 0x0f, 0x24, 0x47, 0x33, 0x26, 0x38,
-
4760  0x26, 0x13, 0x2e, 0x5e, 0x4c, 0x0b, 0x15, 0x1c, 0x45, 0x0e, 0x1c, 0x16,
-
4761  0x12, 0x1e, 0x11, 0x29, 0x39, 0x1f, 0x3e, 0x0f, 0x1d, 0x29, 0x19, 0x29,
-
4762  0x43, 0x2f, 0x19, 0x1a, 0x2f, 0x42, 0x2a, 0x3a, 0x06, 0x0a, 0x08, 0x04,
-
4763  0x46, 0x04, 0x09, 0x0a, 0x06, 0xd5, 0x36, 0x4c, 0x27, 0x15, 0x2b, 0x3c,
-
4764  0x26, 0x38, 0x62, 0x50, 0x1d, 0x55, 0x1e, 0x2b, 0x1b, 0x0c, 0x01, 0xcf,
-
4765  0x1d, 0x2a, 0x16, 0x11, 0x27, 0x20, 0xc5, 0x14, 0x37, 0x48, 0x00, 0x01,
-
4766  0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x13, 0x00, 0x29,
-
4767  0x40, 0x13, 0x0f, 0x03, 0x12, 0x03, 0x02, 0x02, 0x00, 0x0b, 0x07, 0x0e,
-
4768  0x06, 0x06, 0x07, 0x07, 0x00, 0x09, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b,
-
4769  0x11, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33,
-
4770  0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x23, 0x35, 0x33, 0x11, 0x23,
-
4771  0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23,
-
4772  0x15, 0xd2, 0xa4, 0xa4, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0xa3, 0xa3, 0x97,
-
4773  0xcf, 0x46, 0x01, 0x0a, 0x46, 0xbe, 0xbe, 0x46, 0xfe, 0xf6, 0x46, 0xcf,
-
4774  0x00, 0x04, 0x00, 0x2a, 0x00, 0x00, 0x01, 0xd5, 0x02, 0x7a, 0x00, 0x0e,
-
4775  0x00, 0x12, 0x00, 0x22, 0x00, 0x32, 0x00, 0x27, 0x40, 0x14, 0x0f, 0x10,
-
4776  0x23, 0x13, 0x2b, 0x1b, 0x1b, 0x04, 0x03, 0x0c, 0x0d, 0x04, 0x00, 0x05,
-
4777  0x01, 0x04, 0x72, 0x0b, 0x00, 0x0c, 0x00, 0x3f, 0x32, 0x2b, 0x32, 0x12,
-
4778  0x17, 0x39, 0x33, 0x2f, 0x33, 0xdc, 0x32, 0xce, 0x32, 0x30, 0x31, 0x73,
-
4779  0x11, 0x33, 0x13, 0x07, 0x11, 0x33, 0x14, 0x06, 0x15, 0x11, 0x23, 0x03,
-
4780  0x37, 0x11, 0x13, 0x35, 0x33, 0x15, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34,
-
4781  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
4782  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
4783  0x16, 0x16, 0x2a, 0x47, 0x71, 0x19, 0x4a, 0x07, 0x38, 0x7e, 0x19, 0xbe,
-
4784  0xa8, 0x55, 0x17, 0x26, 0x16, 0x18, 0x27, 0x17, 0x16, 0x26, 0x16, 0x18,
-
4785  0x26, 0x16, 0x0b, 0x11, 0x0b, 0x0a, 0x11, 0x0b, 0x0b, 0x12, 0x0c, 0x0b,
-
4786  0x13, 0x02, 0x6f, 0xfe, 0x11, 0x05, 0x01, 0xf4, 0x08, 0x0a, 0x0c, 0xfd,
-
4787  0xaf, 0x02, 0x0a, 0x05, 0xfd, 0xf1, 0x01, 0x64, 0x2f, 0x2f, 0x4d, 0x19,
-
4788  0x2c, 0x1d, 0x1e, 0x2e, 0x1b, 0x17, 0x2c, 0x20, 0x20, 0x2d, 0x19, 0x2c,
-
4789  0x0d, 0x19, 0x12, 0x13, 0x19, 0x0e, 0x0e, 0x19, 0x13, 0x11, 0x1a, 0x0d,
-
4790  0x00, 0x02, 0x00, 0x19, 0xff, 0xf9, 0x01, 0xdf, 0x01, 0xdd, 0x00, 0x19,
-
4791  0x00, 0x22, 0x00, 0x12, 0xb6, 0x22, 0x0e, 0x0e, 0x1e, 0x09, 0x12, 0x00,
-
4792  0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22,
-
4793  0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x21,
-
4794  0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x13, 0x35,
-
4795  0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0xfc, 0x4a, 0x65, 0x34, 0x28,
-
4796  0x42, 0x51, 0x28, 0x41, 0x66, 0x3c, 0xfe, 0x9e, 0x14, 0x44, 0x27, 0x40,
-
4797  0x4c, 0x1e, 0x1e, 0x14, 0x34, 0x49, 0x49, 0x10, 0x43, 0x2e, 0x2b, 0x3f,
-
4798  0x14, 0x07, 0x44, 0x6f, 0x3f, 0x3f, 0x5b, 0x3c, 0x1c, 0x3b, 0x6c, 0x4b,
-
4799  0x99, 0x14, 0x21, 0x35, 0x2f, 0x11, 0x20, 0x37, 0x20, 0x01, 0x16, 0x77,
-
4800  0x11, 0x22, 0x1e, 0x14, 0x78, 0x00, 0x00, 0x01, 0x00, 0x2e, 0xff, 0xb6,
-
4801  0x01, 0xc6, 0x00, 0x46, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x80,
-
4802  0x03, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x57, 0x35,
-
4803  0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x2e, 0x3d, 0x01, 0x1d, 0x3e, 0x4a,
-
4804  0x90, 0x58, 0x58, 0x90, 0x00, 0x03, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca,
-
4805  0x02, 0x05, 0x00, 0x1f, 0x00, 0x26, 0x00, 0x2a, 0x00, 0x1d, 0x40, 0x0c,
-
4806  0x28, 0x29, 0x29, 0x0a, 0x21, 0x23, 0x23, 0x15, 0x0a, 0x27, 0x1f, 0x00,
-
4807  0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11,
-
4808  0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23,
-
4809  0x22, 0x2e, 0x02, 0x35, 0x33, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
4810  0x35, 0x34, 0x2e, 0x02, 0x23, 0x07, 0x23, 0x35, 0x37, 0x33, 0x15, 0x23,
-
4811  0x37, 0x17, 0x07, 0x27, 0xf9, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
-
4812  0x2b, 0x2b, 0x4c, 0x39, 0x20, 0x2c, 0x19, 0x2e, 0x3b, 0x22, 0x22, 0x3c,
-
4813  0x2e, 0x19, 0x19, 0x2e, 0x3c, 0x22, 0xa9, 0x27, 0x0b, 0x66, 0x4a, 0x01,
-
4814  0xb7, 0x1c, 0xb7, 0x02, 0x05, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
4815  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2d, 0x3d,
-
4816  0x21, 0x22, 0x3b, 0x2e, 0x19, 0x42, 0x65, 0x0a, 0x27, 0x1c, 0xb9, 0x1b,
-
4817  0xb9, 0x00, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd8, 0x01, 0xcf,
-
4818  0x00, 0x04, 0x00, 0x09, 0x00, 0x1d, 0x40, 0x0c, 0x00, 0x08, 0x08, 0x09,
-
4819  0x03, 0x05, 0x05, 0x09, 0x09, 0x04, 0x06, 0x02, 0x00, 0x2f, 0x33, 0x2f,
-
4820  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41,
-
4821  0x11, 0x21, 0x11, 0x37, 0x07, 0x11, 0x21, 0x11, 0x27, 0x01, 0xd8, 0xfe,
-
4822  0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x01, 0x48, 0xfe, 0xb8, 0x01, 0x48,
-
4823  0x87, 0xa1, 0xfe, 0xfe, 0x01, 0x02, 0x6b, 0x00, 0x00, 0x04, 0x00, 0x22,
-
4824  0xff, 0xd4, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x11,
-
4825  0x00, 0x1a, 0x00, 0x31, 0x40, 0x16, 0x0e, 0x14, 0x14, 0x0b, 0x1a, 0x1a,
-
4826  0x10, 0x09, 0x09, 0x17, 0x0c, 0x0c, 0x12, 0x08, 0x01, 0x40, 0x04, 0x00,
-
4827  0x00, 0xc0, 0x07, 0x01, 0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x2f, 0x32, 0x1a,
-
4828  0x10, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
4829  0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x33, 0x15, 0x27, 0x33, 0x35,
-
4830  0x23, 0x27, 0x35, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23, 0x15, 0x27,
-
4831  0x33, 0x35, 0x33, 0x17, 0x27, 0x07, 0x27, 0x33, 0x8c, 0xdf, 0xb3, 0x87,
-
4832  0x87, 0x2c, 0x6a, 0xca, 0x1f, 0xc9, 0x69, 0xb3, 0x87, 0x78, 0x02, 0xbe,
-
4833  0xbf, 0x0d, 0x89, 0x2c, 0x9f, 0x9f, 0x2c, 0x47, 0x85, 0x9d, 0x30, 0xe3,
-
4834  0xe3, 0x30, 0x9d, 0x2c, 0x9e, 0x21, 0xd6, 0xd6, 0x21, 0x00, 0x00, 0x03,
-
4835  0x00, 0x3d, 0x00, 0x4e, 0x01, 0xb7, 0x02, 0x0a, 0x00, 0x03, 0x00, 0x07,
-
4836  0x00, 0x13, 0x00, 0x1c, 0x40, 0x0f, 0x10, 0x12, 0x11, 0x0e, 0x08, 0x0b,
-
4837  0x0c, 0x0a, 0x08, 0x07, 0x04, 0x07, 0x04, 0x03, 0x00, 0x00, 0x2f, 0xcd,
-
4838  0x32, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x21, 0x11, 0x21,
-
4839  0x37, 0x21, 0x11, 0x21, 0x17, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17,
-
4840  0x07, 0x27, 0x07, 0x27, 0x3d, 0x01, 0x7a, 0xfe, 0x86, 0x2c, 0x01, 0x22,
-
4841  0xfe, 0xde, 0x76, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50,
-
4842  0x50, 0x1b, 0x02, 0x0a, 0xfe, 0x44, 0x2c, 0x01, 0x64, 0xb2, 0x50, 0x1b,
-
4843  0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x00, 0x03,
-
4844  0x00, 0x02, 0x00, 0x4e, 0x01, 0xce, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09,
-
4845  0x00, 0x15, 0x00, 0x22, 0x40, 0x15, 0x12, 0x14, 0x15, 0x11, 0x13, 0x04,
-
4846  0x10, 0x0a, 0x09, 0x0d, 0x0f, 0x0b, 0x0e, 0x0c, 0x0e, 0x08, 0x05, 0x05,
-
4847  0x03, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39,
-
4848  0x30, 0x31, 0x53, 0x21, 0x11, 0x21, 0x27, 0x17, 0x21, 0x11, 0x21, 0x07,
-
4849  0x33, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x07, 0x27,
-
4850  0x86, 0x01, 0x48, 0xfe, 0xb8, 0x84, 0x9d, 0x01, 0x03, 0xfe, 0xfd, 0x6a,
-
4851  0xc0, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b,
-
4852  0x02, 0x0a, 0xfe, 0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x50, 0x1b, 0x50,
-
4853  0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x03, 0x00, 0x16,
-
4854  0x00, 0x4e, 0x01, 0xe2, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09, 0x00, 0x15,
-
4855  0x00, 0x22, 0x40, 0x15, 0x0e, 0x0c, 0x0b, 0x0f, 0x0d, 0x01, 0x0a, 0x10,
-
4856  0x06, 0x13, 0x15, 0x11, 0x12, 0x14, 0x0e, 0x08, 0x09, 0x08, 0x04, 0x09,
-
4857  0x03, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31,
-
4858  0x41, 0x17, 0x07, 0x21, 0x11, 0x01, 0x37, 0x27, 0x21, 0x11, 0x37, 0x17,
-
4859  0x07, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17, 0x01, 0x5e,
-
4860  0x84, 0x84, 0xfe, 0xb8, 0x01, 0x2f, 0x6a, 0x6a, 0xfe, 0xfd, 0xad, 0x50,
-
4861  0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x02, 0x0a,
-
4862  0xde, 0xde, 0x01, 0xbc, 0xfe, 0x70, 0xb2, 0xb2, 0xfe, 0x9c, 0xb2, 0x50,
-
4863  0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x02,
-
4864  0x00, 0x00, 0xff, 0xff, 0x01, 0xf4, 0x01, 0xcb, 0x00, 0x07, 0x00, 0x0b,
-
4865  0x00, 0x13, 0xb7, 0x08, 0x09, 0x09, 0x02, 0x03, 0x06, 0x05, 0x00, 0x00,
-
4866  0x2f, 0x32, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x03, 0x23,
-
4867  0x35, 0x33, 0x13, 0x33, 0x15, 0x03, 0x35, 0x33, 0x15, 0x01, 0x56, 0xd6,
-
4868  0x80, 0x9d, 0xd6, 0x81, 0xb1, 0xb1, 0x01, 0x01, 0x9e, 0x2e, 0xfe, 0x62,
-
4869  0x2e, 0x01, 0x9e, 0x2e, 0x2e, 0x00, 0x00, 0x06, 0x00, 0x16, 0x00, 0x06,
-
4870  0x01, 0xde, 0x01, 0xcd, 0x00, 0x33, 0x00, 0x41, 0x00, 0x4f, 0x00, 0x53,
-
4871  0x00, 0x61, 0x00, 0x6f, 0x00, 0x47, 0x40, 0x21, 0x22, 0x53, 0x53, 0x09,
-
4872  0x62, 0x15, 0x15, 0x43, 0x43, 0x09, 0x6b, 0x1a, 0x1a, 0x48, 0x11, 0x11,
-
4873  0x09, 0x23, 0x50, 0x50, 0x5d, 0x30, 0x30, 0x39, 0x39, 0x54, 0x2b, 0x2b,
-
4874  0x34, 0x00, 0x00, 0x08, 0x09, 0x00, 0x2f, 0xce, 0x32, 0x2f, 0x33, 0x33,
-
4875  0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33,
-
4876  0x2f, 0x33, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4877  0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36,
-
4878  0x33, 0x33, 0x35, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
4879  0x16, 0x15, 0x15, 0x33, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
4880  0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
-
4881  0x23, 0x22, 0x26, 0x35, 0x35, 0x23, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36,
-
4882  0x36, 0x35, 0x35, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13,
-
4883  0x33, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
4884  0x16, 0x17, 0x33, 0x35, 0x23, 0x17, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
4885  0x26, 0x23, 0x23, 0x15, 0x14, 0x16, 0x16, 0x03, 0x33, 0x32, 0x36, 0x36,
-
4886  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x75, 0x27, 0x38,
-
4887  0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b, 0x1a, 0x38, 0x27, 0x27, 0x37,
-
4888  0x4e, 0x37, 0x27, 0x27, 0x38, 0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b,
-
4889  0x1a, 0x38, 0x27, 0x27, 0x37, 0x4e, 0x37, 0x27, 0x0f, 0x16, 0x0d, 0x32,
-
4890  0x0e, 0x18, 0x0d, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
-
4891  0x0d, 0x0d, 0x18, 0x6c, 0x4e, 0x4e, 0xac, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
-
4892  0x0f, 0x32, 0x0d, 0x17, 0x24, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f,
-
4893  0x0e, 0x17, 0x0d, 0x06, 0x38, 0x27, 0x1a, 0x2a, 0x1a, 0x4d, 0x1a, 0x2a,
-
4894  0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32, 0x27, 0x38, 0x38, 0x27, 0x1a,
-
4895  0x2a, 0x1a, 0x4d, 0x1a, 0x2a, 0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32,
-
4896  0x27, 0x38, 0x2c, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
-
4897  0x0d, 0x01, 0x0a, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f, 0x0e, 0x17,
-
4898  0x0d, 0x79, 0x4d, 0xde, 0x0d, 0x18, 0x0e, 0x0f, 0x16, 0x0d, 0x32, 0x0e,
-
4899  0x18, 0x0d, 0x01, 0x0a, 0x0d, 0x17, 0x0e, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
-
4900  0x0f, 0x00, 0x00, 0x02, 0x00, 0x1f, 0x00, 0x21, 0x01, 0xce, 0x01, 0xc9,
-
4901  0x00, 0x0b, 0x00, 0x16, 0x00, 0x3a, 0x40, 0x1a, 0x13, 0x12, 0x12, 0x06,
-
4902  0x11, 0x07, 0x03, 0x09, 0x04, 0x04, 0x03, 0x03, 0x14, 0x0e, 0x0f, 0x10,
-
4903  0x10, 0x09, 0x0c, 0x00, 0x00, 0x09, 0x09, 0x0a, 0x0a, 0x0e, 0x00, 0x2f,
-
4904  0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x18, 0x2f, 0x32, 0x11, 0x33, 0x11,
-
4905  0x33, 0x10, 0xce, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x12, 0x17, 0x39, 0x33,
-
4906  0x11, 0x33, 0x30, 0x31, 0x41, 0x33, 0x11, 0x21, 0x15, 0x23, 0x27, 0x35,
-
4907  0x37, 0x33, 0x15, 0x33, 0x37, 0x15, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07,
-
4908  0x35, 0x21, 0x35, 0x01, 0x3e, 0x90, 0xfe, 0xee, 0x12, 0x8b, 0x8b, 0x14,
-
4909  0x80, 0x2c, 0xd1, 0x1d, 0x66, 0x63, 0x1c, 0x01, 0x0b, 0x01, 0xc9, 0xfe,
-
4910  0xb2, 0x5a, 0x9b, 0x1a, 0x8d, 0x58, 0x92, 0xbe, 0x61, 0x0f, 0x6a, 0x70,
-
4911  0x0d, 0x5d, 0xf6, 0x00, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x02, 0x01, 0xe5,
-
4912  0x02, 0x59, 0x00, 0x07, 0x00, 0x14, 0x00, 0x37, 0x00, 0x13, 0x40, 0x09,
-
4913  0x08, 0x0e, 0x37, 0x2c, 0x1f, 0x05, 0x02, 0x07, 0x02, 0x00, 0x2f, 0x2f,
-
4914  0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x35, 0x13, 0x33, 0x13, 0x15, 0x03,
-
4915  0x23, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14,
-
4916  0x16, 0x33, 0x37, 0x35, 0x34, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22,
-
4917  0x06, 0x06, 0x07, 0x17, 0x17, 0x37, 0x26, 0x36, 0x37, 0x36, 0x36, 0x33,
-
4918  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x15, 0x15, 0x0f, 0xe1, 0x1e,
-
4919  0xd7, 0xd7, 0x1e, 0x10, 0x0e, 0x16, 0x16, 0x0e, 0x0f, 0x14, 0x14, 0x0f,
-
4920  0x0f, 0x13, 0x1c, 0x1b, 0x13, 0x3c, 0x2f, 0x1d, 0x2c, 0x22, 0x10, 0x1c,
-
4921  0x08, 0x05, 0x01, 0x09, 0x0b, 0x0d, 0x1e, 0x11, 0x12, 0x1e, 0x13, 0x12,
-
4922  0x1c, 0x1b, 0x12, 0x01, 0x23, 0x1e, 0x01, 0x18, 0xfe, 0xe8, 0x1e, 0xfe,
-
4923  0xdf, 0x37, 0x15, 0x0e, 0x0f, 0x15, 0x15, 0x0f, 0x0e, 0x15, 0x7a, 0x19,
-
4924  0x1b, 0x22, 0x1a, 0x19, 0x23, 0x1a, 0x2e, 0x36, 0x10, 0x1d, 0x14, 0x16,
-
4925  0x07, 0x06, 0x08, 0x0c, 0x0c, 0x08, 0x0a, 0x0b, 0x1c, 0x18, 0x16, 0x1f,
-
4926  0x1a, 0x1c, 0x26, 0x1b, 0x19, 0x00, 0x00, 0x03, 0x00, 0x2d, 0x00, 0x05,
-
4927  0x05, 0xaf, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x13,
-
4928  0xb7, 0x08, 0x09, 0x80, 0x01, 0x00, 0x04, 0x05, 0x12, 0x00, 0x3f, 0x33,
-
4929  0xce, 0x32, 0x1a, 0xce, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05,
-
4930  0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2d, 0x05, 0x82, 0xfb, 0x28,
-
4931  0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x01, 0x82, 0x45, 0x45, 0xbf, 0x45,
-
4932  0x45, 0xbe, 0x45, 0x45, 0x00, 0x05, 0x00, 0x2c, 0x00, 0x16, 0x03, 0xa8,
-
4933  0x02, 0x6a, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x16,
-
4934  0x00, 0x34, 0x40, 0x18, 0x0d, 0x14, 0x14, 0x02, 0x05, 0x01, 0x03, 0x15,
-
4935  0x10, 0x0c, 0x06, 0x06, 0x00, 0x15, 0x08, 0x11, 0x11, 0x10, 0x09, 0x04,
-
4936  0x04, 0x03, 0x03, 0x10, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4937  0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x11, 0x12, 0x17,
-
4938  0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x01, 0x15, 0x01, 0x35, 0x25,
-
4939  0x25, 0x11, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x23, 0x15, 0x21, 0x35,
-
4940  0x21, 0x35, 0x21, 0x35, 0x21, 0x01, 0xad, 0x01, 0xfb, 0xfe, 0x05, 0x01,
-
4941  0x9a, 0xfe, 0x66, 0x45, 0x45, 0x45, 0x45, 0xfe, 0x7f, 0x01, 0x81, 0xfe,
-
4942  0x7f, 0x01, 0x81, 0x02, 0x6a, 0xfe, 0xf2, 0x38, 0xfe, 0xf2, 0x4e, 0xdc,
-
4943  0xdc, 0xfe, 0xd9, 0xba, 0x25, 0x02, 0x54, 0x25, 0xb6, 0xdf, 0x45, 0x9a,
-
4944  0x45, 0x00, 0x00, 0x02, 0x00, 0x93, 0xff, 0xb9, 0x03, 0x53, 0x02, 0x99,
-
4945  0x00, 0x06, 0x00, 0x0a, 0x00, 0x21, 0x40, 0x0f, 0x0a, 0x09, 0x08, 0x06,
-
4946  0x02, 0x05, 0x03, 0x03, 0x04, 0x40, 0x01, 0x00, 0x80, 0x07, 0x08, 0x00,
-
4947  0x2f, 0x33, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x10, 0xcd,
-
4948  0x32, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x01, 0x35,
-
4949  0x01, 0x15, 0x93, 0x01, 0xa8, 0xfe, 0x5a, 0x02, 0x02, 0xfd, 0xfc, 0x02,
-
4950  0xc0, 0x89, 0x57, 0xbc, 0xab, 0x52, 0xe1, 0x33, 0xfe, 0x34, 0x54, 0x01,
-
4951  0x5c, 0x54, 0x00, 0x02, 0x00, 0x3c, 0x00, 0x17, 0x03, 0xbf, 0x02, 0x65,
-
4952  0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03,
-
4953  0x04, 0x03, 0x03, 0x09, 0x09, 0x06, 0x00, 0x08, 0x00, 0x2f, 0x33, 0x32,
-
4954  0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x01, 0x35,
-
4955  0x01, 0x15, 0x05, 0x05, 0x25, 0x21, 0x35, 0x21, 0x02, 0x3d, 0xfd, 0xff,
-
4956  0x02, 0x01, 0xfe, 0x66, 0x01, 0x9a, 0x01, 0x82, 0xfd, 0xa9, 0x02, 0x57,
-
4957  0x17, 0x01, 0x0c, 0x3b, 0x01, 0x07, 0x52, 0xd2, 0xd7, 0xb3, 0x47, 0x00,
-
4958  0x00, 0x02, 0x00, 0x95, 0xff, 0xb9, 0x03, 0x55, 0x02, 0x99, 0x00, 0x06,
-
4959  0x00, 0x0a, 0x00, 0x25, 0x40, 0x11, 0x09, 0x08, 0x08, 0x07, 0x07, 0x0a,
-
4960  0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x40, 0x06, 0x00, 0x80, 0x0a, 0x00,
-
4961  0x2f, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x11, 0x33, 0x11,
-
4962  0x33, 0x2f, 0x33, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15, 0x05, 0x05,
-
4963  0x11, 0x01, 0x35, 0x01, 0x03, 0x55, 0xfd, 0xfc, 0x02, 0x02, 0xfe, 0x5a,
-
4964  0x01, 0xa8, 0xfd, 0x40, 0x02, 0xc0, 0x89, 0xfc, 0x33, 0xe1, 0x52, 0xab,
-
4965  0xbc, 0xfe, 0xd9, 0x01, 0x5c, 0x54, 0xfe, 0xa4, 0x00, 0x01, 0x00, 0xad,
-
4966  0xff, 0xb4, 0x01, 0x3b, 0x00, 0x6c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
-
4967  0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x57, 0x23, 0x37, 0x33, 0xdf, 0x32,
-
4968  0x3f, 0x4f, 0x4c, 0xb8, 0x00, 0x01, 0x00, 0xb0, 0x01, 0xc1, 0x01, 0x30,
-
4969  0x02, 0xa3, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0, 0x0d, 0x03,
-
4970  0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x3e, 0x02,
-
4971  0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
4972  0x06, 0x06, 0xd6, 0x26, 0x10, 0x18, 0x0d, 0x0c, 0x10, 0x0c, 0x1f, 0x18,
-
4973  0x17, 0x25, 0x14, 0x27, 0x01, 0xc1, 0x20, 0x0f, 0x1e, 0x1b, 0x0a, 0x07,
-
4974  0x0d, 0x0d, 0x11, 0x0b, 0x16, 0x1d, 0x27, 0x1f, 0x15, 0x32, 0x37, 0x00,
-
4975  0x00, 0x01, 0x00, 0xac, 0x01, 0x82, 0x01, 0x35, 0x02, 0x82, 0x00, 0x11,
-
4976  0x00, 0x0e, 0xb5, 0x0b, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32,
-
4977  0x1a, 0xcc, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
4978  0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x0e,
-
4979  0x27, 0x19, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c, 0x02,
-
4980  0x82, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20, 0x2d,
-
4981  0x24, 0x19, 0x37, 0x3d, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x05, 0x01, 0x76,
-
4982  0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x45, 0x00, 0x00, 0x06, 0x03, 0x55,
-
4983  0xc3, 0x00, 0x00, 0x01, 0x00, 0x76, 0x02, 0x31, 0x01, 0x7d, 0x02, 0x74,
-
4984  0x00, 0x03, 0x00, 0x0a, 0xb3, 0x00, 0x01, 0x02, 0x72, 0x00, 0x2b, 0x32,
-
4985  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x76, 0x01, 0x07, 0x02, 0x31, 0x43,
-
4986  0x43, 0x00, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x08, 0x01, 0x4c, 0x02, 0xc0,
-
4987  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
-
4988  0x41, 0x27, 0x37, 0x17, 0x01, 0x18, 0x66, 0x45, 0x55, 0x02, 0x08, 0x89,
-
4989  0x2f, 0x99, 0xff, 0xff, 0x00, 0xca, 0x02, 0x05, 0x01, 0x30, 0x02, 0xbd,
-
4990  0x06, 0x06, 0x03, 0x55, 0x00, 0x00, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5,
-
4991  0x01, 0x32, 0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x10, 0x00, 0x09,
-
4992  0x08, 0x00, 0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26,
-
4993  0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16,
-
4994  0x33, 0x01, 0x32, 0x1f, 0x33, 0x1e, 0x1f, 0x33, 0x1e, 0x15, 0x1f, 0x0e,
-
4995  0x18, 0x0e, 0x01, 0xc5, 0x1d, 0x32, 0x1e, 0x20, 0x31, 0x1d, 0x33, 0x22,
-
4996  0x18, 0x0f, 0x1a, 0x0f, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5, 0x01, 0x32,
-
4997  0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x08, 0x09, 0x00,
-
4998  0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x32, 0x36, 0x36, 0x35,
-
4999  0x34, 0x26, 0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc2,
-
5000  0x0f, 0x17, 0x0e, 0x1f, 0x15, 0x1e, 0x33, 0x1f, 0x1e, 0x33, 0x01, 0xc5,
-
5001  0x36, 0x0f, 0x1a, 0x0f, 0x18, 0x22, 0x33, 0x1d, 0x31, 0x20, 0x1e, 0x32,
-
5002  0x1d, 0x00, 0x00, 0x01, 0x00, 0xb8, 0x02, 0x2c, 0x01, 0x69, 0x02, 0xc0,
-
5003  0x00, 0x03, 0x00, 0x0a, 0xb2, 0x01, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd,
-
5004  0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xf6, 0x3e, 0x5c, 0x55, 0x02, 0x2c,
-
5005  0x94, 0x00, 0x00, 0x01, 0x00, 0xd1, 0xff, 0x42, 0x01, 0x24, 0x00, 0x1e,
-
5006  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
-
5007  0x45, 0x23, 0x35, 0x33, 0x01, 0x24, 0x53, 0x53, 0xbe, 0xdc, 0x00, 0x01,
-
5008  0x00, 0xdb, 0x01, 0xbd, 0x01, 0x2c, 0x02, 0x99, 0x00, 0x03, 0x00, 0x08,
-
5009  0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x41, 0x23, 0x35, 0x33,
-
5010  0x01, 0x2c, 0x51, 0x51, 0x01, 0xbd, 0xdc, 0x00, 0xff, 0xff, 0x00, 0x69,
-
5011  0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x04, 0x06, 0x03, 0x93, 0x00, 0x00,
-
5012  0xff, 0xff, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97, 0x04, 0x06,
-
5013  0x03, 0x94, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0x01, 0xfa, 0x01, 0x29,
-
5014  0x02, 0xb1, 0x04, 0x06, 0x03, 0x95, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd4,
-
5015  0x01, 0xfa, 0x01, 0x67, 0x02, 0xb1, 0x04, 0x06, 0x03, 0x96, 0x00, 0xf4,
-
5016  0xff, 0xff, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2, 0x02, 0xc0, 0x04, 0x06,
-
5017  0x03, 0x97, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5e, 0x01, 0xfc, 0x01, 0x94,
-
5018  0x02, 0xae, 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05,
-
5019  0x05, 0x01, 0x00, 0x00, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x32, 0x11,
-
5020  0x33, 0x11, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27,
-
5021  0x8a, 0x2c, 0x8d, 0x1c, 0x8d, 0x2c, 0x6f, 0x01, 0xfc, 0x26, 0x8c, 0x8c,
-
5022  0x26, 0x6b, 0x00, 0x01, 0x00, 0x63, 0x02, 0x03, 0x01, 0x99, 0x02, 0xb5,
-
5023  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02, 0x02, 0x01, 0x05, 0x06,
-
5024  0x00, 0x00, 0x05, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x12, 0x39, 0x33, 0x11,
-
5025  0x33, 0x30, 0x31, 0x53, 0x17, 0x37, 0x17, 0x07, 0x23, 0x27, 0x8f, 0x6f,
-
5026  0x6f, 0x2c, 0x8d, 0x1c, 0x8d, 0x02, 0xb5, 0x6b, 0x6b, 0x27, 0x8b, 0x8b,
-
5027  0x00, 0x01, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x02, 0x93, 0x00, 0x0e,
-
5028  0x00, 0x14, 0xb7, 0x01, 0x00, 0x00, 0x07, 0x08, 0x80, 0x0b, 0x04, 0x00,
-
5029  0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
-
5030  0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36,
-
5031  0x36, 0x01, 0x59, 0x3a, 0x17, 0x4a, 0x30, 0x2f, 0x4b, 0x17, 0x3a, 0x11,
-
5032  0x29, 0x1d, 0x13, 0x20, 0x1a, 0x02, 0x93, 0x1b, 0x2e, 0x33, 0x33, 0x2e,
-
5033  0x1b, 0x24, 0x22, 0x0f, 0x1f, 0x00, 0xff, 0xff, 0x00, 0x9f, 0x02, 0x03,
-
5034  0x01, 0x5e, 0x02, 0xbb, 0x04, 0x06, 0x03, 0x9b, 0x00, 0x00, 0x00, 0x01,
-
5035  0x00, 0x5f, 0x02, 0x38, 0x01, 0xae, 0x02, 0xac, 0x00, 0x17, 0x00, 0x1b,
-
5036  0x40, 0x0b, 0x01, 0x00, 0x00, 0x09, 0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15,
-
5037  0x04, 0x00, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11,
-
5038  0x33, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23,
-
5039  0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32,
-
5040  0x36, 0x01, 0x7c, 0x32, 0x15, 0x2b, 0x1e, 0x19, 0x24, 0x1c, 0x1b, 0x10,
-
5041  0x11, 0x1b, 0x0b, 0x36, 0x0f, 0x34, 0x27, 0x17, 0x22, 0x1c, 0x1c, 0x11,
-
5042  0x10, 0x14, 0x02, 0xa2, 0x1d, 0x2a, 0x23, 0x11, 0x17, 0x11, 0x16, 0x1a,
-
5043  0x19, 0x25, 0x2d, 0x11, 0x16, 0x11, 0x14, 0x00, 0xff, 0xff, 0x00, 0x76,
-
5044  0x02, 0x35, 0x01, 0x7d, 0x02, 0x73, 0x04, 0x06, 0x03, 0x9d, 0x00, 0xff,
-
5045  0x00, 0x01, 0x00, 0x98, 0x02, 0x0a, 0x01, 0x4b, 0x02, 0xc9, 0x00, 0x1a,
-
5046  0x00, 0x0c, 0xb3, 0x10, 0x06, 0x80, 0x17, 0x00, 0x2f, 0x1a, 0xcc, 0x33,
-
5047  0x30, 0x31, 0x41, 0x14, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x34, 0x3e,
-
5048  0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
-
5049  0x1e, 0x02, 0x01, 0x4b, 0x12, 0x17, 0x13, 0x39, 0x11, 0x16, 0x11, 0x12,
-
5050  0x0e, 0x0f, 0x1a, 0x07, 0x26, 0x12, 0x2e, 0x1b, 0x19, 0x28, 0x17, 0x02,
-
5051  0x7a, 0x15, 0x19, 0x12, 0x16, 0x12, 0x08, 0x1c, 0x0e, 0x16, 0x12, 0x12,
-
5052  0x09, 0x0e, 0x0f, 0x0d, 0x15, 0x2b, 0x18, 0x14, 0x01, 0x13, 0x23, 0x00,
-
5053  0xff, 0xff, 0x00, 0x5b, 0x01, 0xfa, 0x01, 0x8e, 0x02, 0xb1, 0x04, 0x26,
-
5054  0x03, 0x7c, 0xc5, 0x00, 0x00, 0x06, 0x03, 0x7c, 0x65, 0x00, 0x00, 0x01,
-
5055  0x00, 0x6f, 0x02, 0x0d, 0x01, 0x91, 0x02, 0x89, 0x00, 0x0e, 0x00, 0x14,
-
5056  0xb7, 0x07, 0x08, 0x08, 0x0b, 0x04, 0x80, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
5057  0x1a, 0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36,
-
5058  0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0xa9,
-
5059  0x3a, 0x18, 0x4a, 0x2f, 0x30, 0x4b, 0x16, 0x3a, 0x10, 0x2a, 0x1d, 0x13,
-
5060  0x1f, 0x1a, 0x02, 0x0d, 0x1b, 0x2e, 0x33, 0x33, 0x2e, 0x1b, 0x24, 0x22,
-
5061  0x0f, 0x1e, 0x00, 0x01, 0x00, 0xa0, 0x02, 0x1a, 0x01, 0x37, 0x03, 0x36,
-
5062  0x00, 0x13, 0x00, 0x08, 0xb1, 0x0c, 0x00, 0x00, 0x2f, 0xcc, 0x30, 0x31,
-
5063  0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23,
-
5064  0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x01, 0x0c, 0x2b, 0x1c, 0x22, 0x0e,
-
5065  0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29, 0x03, 0x36, 0x25,
-
5066  0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x16, 0x0f, 0x1c, 0x23, 0x32, 0x27,
-
5067  0x15, 0x2d, 0x31, 0x34, 0x00, 0x01, 0x01, 0x85, 0x01, 0x94, 0x01, 0xe8,
-
5068  0x02, 0x24, 0x00, 0x08, 0x00, 0x0c, 0xb3, 0x05, 0x04, 0x80, 0x00, 0x00,
-
5069  0x2f, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x35,
-
5070  0x32, 0x36, 0x35, 0x01, 0xe8, 0x11, 0x2b, 0x27, 0x0f, 0x0d, 0x02, 0x24,
-
5071  0x35, 0x40, 0x1b, 0x38, 0x24, 0x34, 0xff, 0xff, 0x00, 0xb6, 0xff, 0x65,
-
5072  0x01, 0x2a, 0xff, 0xd7, 0x04, 0x07, 0x03, 0x7b, 0xff, 0xf1, 0xfd, 0x40,
-
5073  0xff, 0xff, 0x00, 0x69, 0xff, 0x55, 0x01, 0x8d, 0xff, 0xc3, 0x06, 0x07,
-
5074  0x03, 0x7a, 0x00, 0x00, 0xfd, 0x26, 0x00, 0x01, 0x00, 0xad, 0xfe, 0xe6,
-
5075  0x01, 0x35, 0xff, 0xe6, 0x00, 0x11, 0x00, 0x0a, 0xb2, 0x01, 0x00, 0x0b,
-
5076  0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36, 0x35, 0x34,
-
5077  0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
-
5078  0xd3, 0x26, 0x18, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c,
-
5079  0xfe, 0xe6, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20,
-
5080  0x2d, 0x24, 0x19, 0x37, 0x3d, 0x00, 0xff, 0xff, 0x00, 0xa1, 0xff, 0x38,
-
5081  0x01, 0x85, 0x00, 0x00, 0x04, 0x06, 0x03, 0x9e, 0x00, 0x00, 0x00, 0x01,
-
5082  0x00, 0x8b, 0xff, 0x19, 0x01, 0x29, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a,
-
5083  0xb2, 0x00, 0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07,
-
5084  0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14,
-
5085  0x16, 0x01, 0x1b, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18,
-
5086  0x23, 0x12, 0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33,
-
5087  0x17, 0x14, 0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x71,
-
5088  0xff, 0x4c, 0x01, 0x93, 0xff, 0xc8, 0x06, 0x07, 0x03, 0x81, 0x00, 0x00,
-
5089  0xfd, 0x35, 0xff, 0xff, 0x00, 0x76, 0xff, 0x65, 0x01, 0x7d, 0xff, 0xa3,
-
5090  0x06, 0x07, 0x03, 0x84, 0x00, 0x00, 0xfd, 0x30, 0x00, 0x01, 0x00, 0x77,
-
5091  0x01, 0x1e, 0x01, 0x86, 0x01, 0x5b, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
5092  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x77, 0x01,
-
5093  0x0f, 0x01, 0x1e, 0x3d, 0x3d, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
-
5094  0x01, 0x89, 0x01, 0x62, 0x04, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x02,
-
5095  0x00, 0x69, 0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x00, 0x0b, 0x00, 0x17,
-
5096  0x00, 0x0e, 0xb4, 0x12, 0x0c, 0x0c, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x32,
-
5097  0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
5098  0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
5099  0x16, 0x15, 0x14, 0x06, 0xa2, 0x17, 0x22, 0x22, 0x17, 0x17, 0x21, 0x22,
-
5100  0x9e, 0x17, 0x21, 0x21, 0x17, 0x17, 0x20, 0x21, 0x02, 0x2f, 0x20, 0x16,
-
5101  0x16, 0x22, 0x21, 0x17, 0x16, 0x20, 0x1f, 0x17, 0x17, 0x21, 0x22, 0x16,
-
5102  0x16, 0x20, 0x00, 0x01, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97,
-
5103  0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
5104  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
5105  0xfe, 0x18, 0x22, 0x21, 0x19, 0x17, 0x23, 0x23, 0x02, 0x25, 0x22, 0x17,
-
5106  0x19, 0x20, 0x22, 0x17, 0x17, 0x22, 0x00, 0x01, 0x00, 0x96, 0x01, 0xfa,
-
5107  0x01, 0x29, 0x02, 0xb1, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x01, 0x03, 0x02,
-
5108  0x00, 0x00, 0x2f, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17,
-
5109  0xfe, 0x68, 0x3f, 0x54, 0x01, 0xfa, 0x89, 0x2e, 0x9b, 0x00, 0x00, 0x01,
-
5110  0x00, 0xd4, 0x02, 0x06, 0x01, 0x67, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x0e,
-
5111  0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39,
-
5112  0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xff, 0x2b, 0x54, 0x3f, 0x02, 0x06,
-
5113  0x1c, 0x9b, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2,
-
5114  0x02, 0xc0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02,
-
5115  0x02, 0x07, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5116  0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x27, 0x37, 0x17, 0x05,
-
5117  0x27, 0x37, 0x17, 0x01, 0x4b, 0x35, 0x57, 0x45, 0xfe, 0xfe, 0x35, 0x57,
-
5118  0x45, 0x02, 0x08, 0x20, 0x98, 0x2f, 0x89, 0x20, 0x98, 0x2f, 0x00, 0x01,
-
5119  0x00, 0x75, 0x02, 0x02, 0x01, 0x87, 0x02, 0xb1, 0x00, 0x06, 0x00, 0x10,
-
5120  0xb5, 0x01, 0x04, 0x06, 0x00, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5121  0xcd, 0x39, 0x30, 0x31, 0x41, 0x27, 0x07, 0x27, 0x37, 0x33, 0x17, 0x01,
-
5122  0x59, 0x5a, 0x61, 0x29, 0x7e, 0x19, 0x7b, 0x02, 0x04, 0x65, 0x67, 0x22,
-
5123  0x8d, 0x8d, 0x00, 0x01, 0x00, 0x83, 0x02, 0x04, 0x01, 0x7c, 0x02, 0xb9,
-
5124  0x00, 0x06, 0x00, 0x12, 0xb6, 0x05, 0x04, 0x04, 0x03, 0x01, 0x02, 0x00,
-
5125  0x00, 0x2f, 0xcd, 0x32, 0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27,
-
5126  0x37, 0x17, 0x37, 0x17, 0x07, 0xf2, 0x6f, 0x31, 0x4e, 0x51, 0x29, 0x70,
-
5127  0x02, 0x04, 0x8e, 0x27, 0x64, 0x63, 0x27, 0x8d, 0x00, 0x01, 0x00, 0x60,
-
5128  0x02, 0x0a, 0x01, 0x92, 0x02, 0x90, 0x00, 0x0e, 0x00, 0x14, 0xb7, 0x0b,
-
5129  0x0a, 0x0a, 0x03, 0x04, 0x80, 0x07, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcc,
-
5130  0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16,
-
5131  0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0xfb, 0x2a, 0x4e, 0x23,
-
5132  0x2c, 0x14, 0x3a, 0x21, 0x1e, 0x3b, 0x1b, 0x23, 0x14, 0x31, 0x36, 0x02,
-
5133  0x0a, 0x27, 0x28, 0x37, 0x21, 0x26, 0x22, 0x25, 0x34, 0x19, 0x25, 0x14,
-
5134  0x00, 0x02, 0x00, 0x9f, 0x02, 0x03, 0x01, 0x5e, 0x02, 0xbb, 0x00, 0x0f,
-
5135  0x00, 0x1b, 0x00, 0x0f, 0xb4, 0x16, 0x08, 0x80, 0x10, 0x00, 0x00, 0x2f,
-
5136  0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26, 0x35,
-
5137  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
5138  0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xfe,
-
5139  0x1a, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x19,
-
5140  0x0f, 0x17, 0x17, 0x0f, 0x10, 0x16, 0x16, 0x02, 0x03, 0x19, 0x2a, 0x19,
-
5141  0x19, 0x2a, 0x19, 0x19, 0x29, 0x1a, 0x19, 0x2a, 0x19, 0x32, 0x19, 0x12,
-
5142  0x12, 0x1a, 0x1a, 0x12, 0x12, 0x19, 0xff, 0xff, 0x00, 0x5f, 0x02, 0x38,
-
5143  0x01, 0xae, 0x02, 0xac, 0x04, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x01,
-
5144  0x00, 0x76, 0x02, 0x35, 0x01, 0x7d, 0x02, 0x74, 0x00, 0x03, 0x00, 0x08,
-
5145  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15,
-
5146  0x76, 0x01, 0x07, 0x02, 0x35, 0x3f, 0x3f, 0x00, 0x00, 0x01, 0x00, 0xa1,
-
5147  0xff, 0x38, 0x01, 0x85, 0x00, 0x00, 0x00, 0x17, 0x00, 0x13, 0xb6, 0x11,
-
5148  0x0e, 0x0e, 0x07, 0x00, 0x80, 0x0f, 0x00, 0x2f, 0x1a, 0x7c, 0xcc, 0x32,
-
5149  0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16,
-
5150  0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, 0x07, 0x1e,
-
5151  0x02, 0x15, 0x14, 0x06, 0x01, 0x0d, 0x1c, 0x36, 0x1a, 0x1d, 0x16, 0x2c,
-
5152  0x19, 0x18, 0x19, 0x1b, 0x17, 0x24, 0x0b, 0x38, 0x05, 0x1c, 0x25, 0x12,
-
5153  0x3d, 0xc8, 0x10, 0x13, 0x32, 0x12, 0x0f, 0x11, 0x0f, 0x0f, 0x0f, 0x56,
-
5154  0x2a, 0x02, 0x14, 0x1d, 0x10, 0x25, 0x36, 0x00, 0x00, 0x01, 0x00, 0xef,
-
5155  0xff, 0x19, 0x01, 0x8d, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x00,
-
5156  0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07, 0x2e, 0x02,
-
5157  0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x01,
-
5158  0x7f, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18, 0x23, 0x12,
-
5159  0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33, 0x17, 0x14,
-
5160  0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x68, 0x02, 0xae,
-
5161  0x01, 0x8c, 0x03, 0x1d, 0x04, 0x06, 0x03, 0xab, 0x03, 0x00, 0xff, 0xff,
-
5162  0x00, 0xc0, 0x02, 0xb1, 0x01, 0x34, 0x03, 0x23, 0x04, 0x06, 0x03, 0xac,
-
5163  0xf4, 0x00, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x92, 0x01, 0x54, 0x03, 0x1b,
-
5164  0x04, 0x06, 0x03, 0xad, 0xdc, 0x00, 0xff, 0xff, 0x00, 0xab, 0x02, 0x92,
-
5165  0x01, 0x70, 0x03, 0x1b, 0x04, 0x06, 0x03, 0xae, 0x00, 0x00, 0xff, 0xff,
-
5166  0x00, 0x6a, 0x02, 0x84, 0x01, 0xd3, 0x03, 0x2b, 0x04, 0x06, 0x03, 0xaf,
-
5167  0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0x1a,
-
5168  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05, 0x05, 0x01,
-
5169  0x00, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
-
5170  0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x78, 0x22,
-
5171  0x95, 0x19, 0x9a, 0x21, 0x84, 0x02, 0x8d, 0x2c, 0x61, 0x61, 0x2b, 0x44,
-
5172  0xff, 0xff, 0x00, 0x54, 0x02, 0x92, 0x01, 0x9b, 0x03, 0x1f, 0x04, 0x06,
-
5173  0x03, 0xb0, 0x0a, 0x04, 0xff, 0xff, 0x00, 0x69, 0x02, 0x9d, 0x01, 0x8b,
-
5174  0x03, 0x18, 0x04, 0x06, 0x03, 0xb1, 0xfb, 0x07, 0xff, 0xff, 0x00, 0x9a,
-
5175  0x02, 0x6a, 0x01, 0x59, 0x03, 0x22, 0x04, 0x06, 0x03, 0xb2, 0xff, 0x00,
-
5176  0xff, 0xff, 0x00, 0x5a, 0x02, 0xac, 0x01, 0xa9, 0x03, 0x20, 0x04, 0x06,
-
5177  0x03, 0x83, 0xfb, 0x74, 0x00, 0x01, 0x01, 0x8e, 0x02, 0x36, 0x01, 0xf1,
-
5178  0x02, 0xcd, 0x00, 0x09, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x80, 0x05, 0x00,
-
5179  0x2f, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x27, 0x32, 0x36, 0x36, 0x35,
-
5180  0x33, 0x14, 0x06, 0x06, 0x01, 0x98, 0x0a, 0x11, 0x10, 0x04, 0x3e, 0x0c,
-
5181  0x25, 0x02, 0x36, 0x39, 0x10, 0x29, 0x25, 0x34, 0x43, 0x20, 0x00, 0x02,
-
5182  0x00, 0x65, 0x02, 0xae, 0x01, 0x89, 0x03, 0x1d, 0x00, 0x0b, 0x00, 0x17,
-
5183  0x00, 0x0c, 0xb3, 0x06, 0x00, 0x12, 0x0c, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5184  0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
5185  0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
5186  0x14, 0x06, 0x9d, 0x16, 0x22, 0x22, 0x16, 0x18, 0x21, 0x22, 0x9d, 0x16,
-
5187  0x21, 0x21, 0x16, 0x18, 0x20, 0x21, 0x02, 0xae, 0x21, 0x16, 0x16, 0x22,
-
5188  0x22, 0x16, 0x16, 0x21, 0x20, 0x17, 0x17, 0x21, 0x22, 0x16, 0x16, 0x21,
-
5189  0xff, 0xff, 0x00, 0xcc, 0x02, 0xb1, 0x01, 0x40, 0x03, 0x23, 0x04, 0x07,
-
5190  0x03, 0x94, 0x00, 0x08, 0x00, 0x8c, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x92,
-
5191  0x01, 0x78, 0x03, 0x1b, 0x00, 0x03, 0x00, 0x0e, 0xb4, 0x01, 0x03, 0x02,
-
5192  0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x41, 0x27,
-
5193  0x37, 0x17, 0x01, 0x5f, 0xad, 0x2a, 0x9c, 0x02, 0x92, 0x3e, 0x4b, 0x5b,
-
5194  0x00, 0x01, 0x00, 0xab, 0x02, 0x92, 0x01, 0x70, 0x03, 0x1b, 0x00, 0x03,
-
5195  0x00, 0x0e, 0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd,
-
5196  0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xc3, 0x18, 0x9b, 0x2a,
-
5197  0x02, 0x92, 0x2e, 0x5b, 0x4b, 0x00, 0x00, 0x02, 0x00, 0x6a, 0x02, 0x84,
-
5198  0x01, 0xd3, 0x03, 0x2b, 0x00, 0x03, 0x00, 0x07, 0x00, 0x19, 0x40, 0x0a,
-
5199  0x03, 0x02, 0x02, 0x07, 0x06, 0x80, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f,
-
5200  0x33, 0x33, 0x32, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41,
-
5201  0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x01, 0x3f, 0x22, 0x85, 0x31,
-
5202  0xfe, 0xb9, 0x22, 0x86, 0x31, 0x02, 0x84, 0x2b, 0x7c, 0x42, 0x65, 0x2b,
-
5203  0x7c, 0x42, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x8e, 0x01, 0x91, 0x03, 0x1b,
-
5204  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x01, 0x00, 0x00, 0x04,
-
5205  0x05, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
-
5206  0x39, 0x30, 0x31, 0x41, 0x17, 0x07, 0x23, 0x27, 0x37, 0x17, 0x01, 0x6f,
-
5207  0x22, 0x95, 0x19, 0x99, 0x20, 0x84, 0x03, 0x1b, 0x2b, 0x62, 0x62, 0x2b,
-
5208  0x45, 0x00, 0xff, 0xff, 0x00, 0x6e, 0x02, 0x96, 0x01, 0x90, 0x03, 0x11,
-
5209  0x04, 0x06, 0x03, 0x81, 0xfd, 0x7e, 0x00, 0x02, 0x00, 0x9b, 0x02, 0x6a,
-
5210  0x01, 0x5a, 0x03, 0x22, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x0c, 0xb3, 0x16,
-
5211  0x08, 0x10, 0x00, 0x00, 0x2f, 0x32, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22,
-
5212  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
5213  0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15,
-
5214  0x14, 0x16, 0xfb, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a,
-
5215  0x19, 0x2b, 0x1a, 0x0f, 0x17, 0x17, 0x0f, 0x10, 0x17, 0x17, 0x02, 0x6a,
-
5216  0x19, 0x2a, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2a, 0x1a, 0x18, 0x2a, 0x19,
-
5217  0x32, 0x18, 0x12, 0x13, 0x19, 0x19, 0x13, 0x12, 0x18, 0x00, 0xff, 0xff,
-
5218  0x00, 0x5f, 0x02, 0xba, 0x01, 0xae, 0x03, 0x2e, 0x04, 0x07, 0x03, 0x83,
-
5219  0x00, 0x00, 0x00, 0x82, 0x00, 0x01, 0x00, 0x73, 0x02, 0x3d, 0x01, 0x95,
-
5220  0x02, 0xad, 0x00, 0x17, 0x00, 0x1c, 0x40, 0x0c, 0x01, 0x00, 0x00, 0x09,
-
5221  0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15, 0x04, 0x10, 0x00, 0x3f, 0x33, 0x33,
-
5222  0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
-
5223  0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36,
-
5224  0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x01, 0x63, 0x32, 0x13,
-
5225  0x29, 0x1a, 0x13, 0x1f, 0x19, 0x17, 0x0c, 0x0d, 0x17, 0x08, 0x32, 0x0c,
-
5226  0x32, 0x19, 0x13, 0x21, 0x1c, 0x18, 0x0b, 0x0b, 0x12, 0x02, 0xa0, 0x18,
-
5227  0x29, 0x22, 0x10, 0x15, 0x10, 0x15, 0x14, 0x18, 0x22, 0x2a, 0x10, 0x16,
-
5228  0x10, 0x13, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
-
5229  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x08,
-
5230  0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
-
5231  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x08,
-
5232  0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x50,
-
5233  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x10,
-
5234  0x00, 0x87, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x94, 0x03, 0x29,
-
5235  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x06, 0x03, 0xb4, 0xff, 0x7d,
-
5236  0xff, 0xff, 0x00, 0x64, 0x01, 0xfc, 0x01, 0xf2, 0x03, 0x2d, 0x04, 0x26,
-
5237  0x03, 0x7f, 0x07, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x8b, 0x00, 0x7c,
-
5238  0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0xaa, 0x03, 0x43, 0x04, 0x26,
-
5239  0x03, 0x7f, 0x08, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x81, 0x00, 0x92,
-
5240  0xff, 0xff, 0x00, 0x5f, 0x01, 0xfc, 0x01, 0xd4, 0x03, 0x2f, 0x04, 0x26,
-
5241  0x03, 0x7f, 0x01, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0x66,
-
5242  0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0x9d, 0x03, 0x3d, 0x04, 0x26,
-
5243  0x03, 0x7f, 0x09, 0x00, 0x02, 0x07, 0x03, 0xb4, 0xff, 0xfa, 0x00, 0x90,
-
5244  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x02, 0x20, 0x03, 0x88, 0x06, 0x26,
-
5245  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa3, 0x00, 0xb1, 0x00, 0x6d,
-
5246  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xaa, 0x06, 0x26,
-
5247  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa2, 0x00, 0x04, 0x00, 0x8f,
-
5248  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0xd5, 0x03, 0xac, 0x06, 0x26,
-
5249  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0xe4,
-
5250  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xa9, 0x06, 0x26,
-
5251  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xb4, 0xff, 0xf2, 0x00, 0xfd,
-
5252  0x00, 0x01, 0x00, 0x00, 0x03, 0xc2, 0x00, 0xa8, 0x00, 0x2a, 0x00, 0x73,
-
5253  0x00, 0x05, 0x00, 0x02, 0x00, 0x10, 0x00, 0x2f, 0x00, 0x9a, 0x00, 0x00,
-
5254  0x02, 0xdb, 0x0f, 0x83, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
-
5255  0x00, 0x26, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x9a,
-
5256  0x00, 0xb5, 0x00, 0xd0, 0x00, 0xe2, 0x00, 0xf9, 0x01, 0x14, 0x01, 0x2b,
-
5257  0x01, 0x42, 0x01, 0x59, 0x01, 0x6d, 0x01, 0x80, 0x01, 0x93, 0x01, 0xa5,
-
5258  0x01, 0xb8, 0x01, 0xcb, 0x01, 0xde, 0x01, 0xf1, 0x02, 0x05, 0x02, 0x22,
-
5259  0x02, 0x34, 0x02, 0x69, 0x02, 0x7b, 0x02, 0xc9, 0x03, 0x18, 0x03, 0x2a,
-
5260  0x03, 0x3c, 0x03, 0x4e, 0x03, 0x68, 0x03, 0x7a, 0x03, 0x8c, 0x03, 0xbf,
-
5261  0x04, 0x03, 0x04, 0x15, 0x04, 0x1d, 0x04, 0x30, 0x04, 0x43, 0x04, 0x65,
-
5262  0x04, 0x77, 0x04, 0x89, 0x04, 0x9b, 0x04, 0xb5, 0x04, 0xc7, 0x04, 0xde,
-
5263  0x04, 0xf9, 0x05, 0x10, 0x05, 0x27, 0x05, 0x3e, 0x05, 0x52, 0x05, 0x65,
-
5264  0x05, 0x77, 0x05, 0x8a, 0x05, 0x9c, 0x05, 0xaf, 0x05, 0xc2, 0x05, 0xd5,
-
5265  0x05, 0xf1, 0x06, 0x0d, 0x06, 0x1f, 0x06, 0x31, 0x06, 0x7f, 0x06, 0x9e,
-
5266  0x06, 0xf4, 0x07, 0x06, 0x07, 0x18, 0x07, 0x2a, 0x07, 0x3d, 0x07, 0x4f,
-
5267  0x07, 0x62, 0x07, 0x91, 0x07, 0xca, 0x07, 0xdd, 0x07, 0xef, 0x08, 0x02,
-
5268  0x08, 0x23, 0x08, 0x35, 0x08, 0x47, 0x08, 0x59, 0x08, 0x6d, 0x08, 0x80,
-
5269  0x08, 0x9c, 0x08, 0xae, 0x08, 0xc1, 0x08, 0xd3, 0x08, 0xe6, 0x08, 0xf9,
-
5270  0x09, 0x0c, 0x09, 0x1e, 0x09, 0x30, 0x09, 0x68, 0x09, 0x7a, 0x09, 0xac,
-
5271  0x09, 0xbf, 0x0a, 0x06, 0x0a, 0x23, 0x0a, 0x6b, 0x0a, 0x7d, 0x0a, 0xb6,
-
5272  0x0a, 0xc9, 0x0a, 0xdc, 0x0a, 0xef, 0x0b, 0x46, 0x0b, 0x59, 0x0b, 0x89,
-
5273  0x0b, 0xaf, 0x0b, 0xc2, 0x0b, 0xea, 0x0b, 0xfc, 0x0c, 0x0e, 0x0c, 0x21,
-
5274  0x0c, 0x33, 0x0c, 0x46, 0x0c, 0x82, 0x0c, 0x95, 0x0c, 0xa7, 0x0c, 0xe0,
-
5275  0x0c, 0xf2, 0x0d, 0x04, 0x0d, 0x16, 0x0d, 0x2d, 0x0d, 0x48, 0x0d, 0x5f,
-
5276  0x0d, 0x76, 0x0d, 0x8d, 0x0d, 0xa1, 0x0d, 0xb4, 0x0d, 0xd0, 0x0d, 0xeb,
-
5277  0x0d, 0xfe, 0x0e, 0x10, 0x0e, 0x23, 0x0e, 0x36, 0x0e, 0x48, 0x0e, 0x5b,
-
5278  0x0e, 0x6d, 0x0e, 0x80, 0x0e, 0x92, 0x0e, 0xa5, 0x0e, 0xb8, 0x0e, 0xcb,
-
5279  0x0e, 0xe7, 0x0f, 0x03, 0x0f, 0x15, 0x0f, 0x5e, 0x0f, 0x70, 0x0f, 0x82,
-
5280  0x0f, 0x9d, 0x0f, 0xb9, 0x0f, 0xd5, 0x10, 0x29, 0x10, 0x5b, 0x10, 0x99,
-
5281  0x10, 0xee, 0x11, 0x26, 0x11, 0x38, 0x11, 0x4a, 0x11, 0x5d, 0x11, 0x71,
-
5282  0x11, 0x84, 0x11, 0x97, 0x11, 0xaa, 0x12, 0x12, 0x12, 0x24, 0x12, 0x3e,
-
5283  0x12, 0x50, 0x12, 0x6b, 0x12, 0x7d, 0x12, 0x8f, 0x12, 0xa2, 0x12, 0xb4,
-
5284  0x12, 0xc7, 0x12, 0xe2, 0x13, 0x3c, 0x13, 0x44, 0x13, 0x5e, 0x13, 0x82,
-
5285  0x13, 0x94, 0x13, 0xa6, 0x13, 0xb9, 0x13, 0xcc, 0x13, 0xdf, 0x14, 0x0d,
-
5286  0x14, 0x1f, 0x14, 0x31, 0x14, 0x43, 0x14, 0x57, 0x14, 0x6a, 0x14, 0x7d,
-
5287  0x14, 0x8f, 0x14, 0xa2, 0x14, 0xb5, 0x14, 0xc7, 0x14, 0xda, 0x14, 0xec,
-
5288  0x14, 0xff, 0x15, 0x11, 0x15, 0x24, 0x15, 0x37, 0x15, 0x4a, 0x15, 0x67,
-
5289  0x15, 0x79, 0x15, 0x8d, 0x15, 0x9f, 0x15, 0xba, 0x15, 0xd6, 0x16, 0x01,
-
5290  0x16, 0x13, 0x16, 0x25, 0x16, 0x38, 0x16, 0x4a, 0x16, 0x71, 0x16, 0x92,
-
5291  0x16, 0xa4, 0x16, 0xb6, 0x16, 0xc9, 0x16, 0xdb, 0x16, 0xee, 0x17, 0x00,
-
5292  0x17, 0x13, 0x17, 0x26, 0x17, 0x38, 0x17, 0x61, 0x17, 0x73, 0x17, 0x85,
-
5293  0x17, 0x97, 0x17, 0xaa, 0x17, 0xd8, 0x18, 0x38, 0x18, 0x4a, 0x18, 0x5c,
-
5294  0x18, 0x73, 0x18, 0x8e, 0x18, 0xa5, 0x18, 0xbc, 0x18, 0xd3, 0x18, 0xe5,
-
5295  0x18, 0xfc, 0x19, 0x17, 0x19, 0x2e, 0x19, 0x45, 0x19, 0x5c, 0x19, 0x6f,
-
5296  0x19, 0x82, 0x19, 0x95, 0x19, 0xa7, 0x19, 0xb9, 0x19, 0xcb, 0x19, 0xdd,
-
5297  0x19, 0xef, 0x1a, 0x02, 0x1a, 0x1e, 0x1a, 0x30, 0x1a, 0xba, 0x1a, 0xcc,
-
5298  0x1b, 0x23, 0x1b, 0x70, 0x1b, 0xb6, 0x1b, 0xc8, 0x1b, 0xda, 0x1b, 0xec,
-
5299  0x1c, 0x06, 0x1c, 0x18, 0x1c, 0x2a, 0x1c, 0x87, 0x1c, 0xef, 0x1d, 0x65,
-
5300  0x1d, 0x78, 0x1d, 0x8b, 0x1d, 0x9e, 0x1d, 0xec, 0x1d, 0xfe, 0x1e, 0x10,
-
5301  0x1e, 0x22, 0x1e, 0x3c, 0x1e, 0x4e, 0x1e, 0x65, 0x1e, 0x80, 0x1e, 0x97,
-
5302  0x1e, 0xae, 0x1e, 0xc5, 0x1e, 0xd8, 0x1e, 0xeb, 0x1e, 0xfd, 0x1f, 0x10,
-
5303  0x1f, 0x22, 0x1f, 0x34, 0x1f, 0x46, 0x1f, 0x58, 0x1f, 0x73, 0x1f, 0x8e,
-
5304  0x1f, 0xa0, 0x1f, 0xfe, 0x20, 0x10, 0x20, 0x5d, 0x20, 0x66, 0x20, 0xa2,
-
5305  0x21, 0x45, 0x21, 0x57, 0x21, 0x69, 0x21, 0x7b, 0x21, 0x8d, 0x21, 0x9f,
-
5306  0x21, 0xb1, 0x21, 0xeb, 0x21, 0xfe, 0x22, 0x11, 0x22, 0x24, 0x22, 0x37,
-
5307  0x22, 0x49, 0x22, 0x67, 0x22, 0x79, 0x22, 0x8b, 0x22, 0x9d, 0x22, 0xb0,
-
5308  0x22, 0xc3, 0x22, 0xe0, 0x22, 0xf2, 0x23, 0x05, 0x23, 0x17, 0x23, 0x29,
-
5309  0x23, 0x3b, 0x23, 0x4d, 0x23, 0x67, 0x23, 0x79, 0x23, 0x8b, 0x23, 0xbe,
-
5310  0x23, 0xd0, 0x24, 0x02, 0x24, 0x15, 0x24, 0x49, 0x24, 0x66, 0x24, 0x78,
-
5311  0x24, 0x8b, 0x24, 0x9e, 0x24, 0xcf, 0x24, 0xe2, 0x25, 0x3a, 0x25, 0x4d,
-
5312  0x25, 0x78, 0x25, 0xc9, 0x25, 0xdc, 0x26, 0x0f, 0x26, 0x21, 0x26, 0x33,
-
5313  0x26, 0x46, 0x26, 0x58, 0x26, 0x6b, 0x26, 0xb9, 0x26, 0xcc, 0x26, 0xde,
-
5314  0x27, 0x19, 0x27, 0x2b, 0x27, 0x3d, 0x27, 0x4f, 0x27, 0x66, 0x27, 0x81,
-
5315  0x27, 0x98, 0x27, 0xaf, 0x27, 0xc6, 0x27, 0xd9, 0x27, 0xec, 0x28, 0x08,
-
5316  0x28, 0x23, 0x28, 0x36, 0x28, 0x48, 0x28, 0x5a, 0x28, 0x6d, 0x28, 0x7f,
-
5317  0x28, 0x92, 0x28, 0xa4, 0x28, 0xb6, 0x28, 0xc8, 0x28, 0xdb, 0x28, 0xed,
-
5318  0x28, 0xff, 0x29, 0x1a, 0x29, 0x35, 0x29, 0x40, 0x29, 0x89, 0x29, 0x9b,
-
5319  0x29, 0xad, 0x29, 0xc8, 0x29, 0xe4, 0x29, 0xff, 0x2a, 0x81, 0x2a, 0xd0,
-
5320  0x2b, 0x26, 0x2b, 0x75, 0x2b, 0xaf, 0x2b, 0xc1, 0x2b, 0xd3, 0x2b, 0xe6,
-
5321  0x2b, 0xf9, 0x2c, 0x0c, 0x2c, 0x5f, 0x2c, 0x71, 0x2c, 0x84, 0x2c, 0xc6,
-
5322  0x2d, 0x2a, 0x2d, 0x3c, 0x2d, 0x57, 0x2d, 0x69, 0x2d, 0x84, 0x2d, 0x96,
-
5323  0x2d, 0xa8, 0x2d, 0xbb, 0x2d, 0xcd, 0x2d, 0xe0, 0x2d, 0xfb, 0x2e, 0x5d,
-
5324  0x2e, 0x9f, 0x2e, 0xea, 0x2e, 0xfe, 0x2f, 0x10, 0x2f, 0x23, 0x2f, 0x36,
-
5325  0x2f, 0x49, 0x2f, 0x5c, 0x2f, 0x9c, 0x2f, 0xae, 0x2f, 0xc0, 0x2f, 0xd2,
-
5326  0x2f, 0xe5, 0x2f, 0xf8, 0x30, 0x0b, 0x30, 0x1d, 0x30, 0x2f, 0x30, 0x42,
-
5327  0x30, 0x54, 0x30, 0x67, 0x30, 0x79, 0x30, 0x8b, 0x30, 0x9d, 0x30, 0xb0,
-
5328  0x30, 0xc2, 0x30, 0xd4, 0x30, 0xf0, 0x31, 0x03, 0x31, 0x16, 0x31, 0x28,
-
5329  0x31, 0x43, 0x31, 0x69, 0x31, 0x9c, 0x31, 0xae, 0x31, 0xc0, 0x31, 0xd3,
-
5330  0x31, 0xe5, 0x32, 0x09, 0x32, 0x4f, 0x32, 0x61, 0x32, 0x73, 0x32, 0x86,
-
5331  0x32, 0x98, 0x32, 0xab, 0x32, 0xbd, 0x32, 0xcf, 0x32, 0xe1, 0x32, 0xf3,
-
5332  0x33, 0x1b, 0x33, 0x2d, 0x33, 0x3f, 0x33, 0x51, 0x33, 0x64, 0x33, 0xa3,
-
5333  0x34, 0x09, 0x34, 0x4d, 0x34, 0x55, 0x34, 0x8b, 0x34, 0xd4, 0x34, 0xf0,
-
5334  0x35, 0x3a, 0x35, 0x9b, 0x35, 0xc6, 0x36, 0x18, 0x36, 0x7f, 0x36, 0xa2,
-
5335  0x37, 0x12, 0x37, 0x72, 0x37, 0xc0, 0x37, 0xf9, 0x38, 0x02, 0x38, 0x0b,
-
5336  0x38, 0x14, 0x38, 0x1d, 0x38, 0x26, 0x38, 0x2f, 0x38, 0x38, 0x38, 0x41,
-
5337  0x38, 0x4a, 0x38, 0x53, 0x38, 0x5b, 0x38, 0x63, 0x38, 0x6c, 0x38, 0x75,
-
5338  0x38, 0x7e, 0x38, 0x86, 0x38, 0x8e, 0x38, 0x96, 0x38, 0x9e, 0x38, 0xa6,
-
5339  0x38, 0xae, 0x38, 0xb6, 0x38, 0xbe, 0x38, 0xc6, 0x38, 0xce, 0x38, 0xd6,
-
5340  0x38, 0xde, 0x38, 0xe6, 0x38, 0xee, 0x38, 0xf6, 0x39, 0x37, 0x39, 0x53,
-
5341  0x39, 0x97, 0x39, 0xef, 0x3a, 0x17, 0x3a, 0x62, 0x3a, 0xbe, 0x3a, 0xde,
-
5342  0x3b, 0x41, 0x3b, 0x95, 0x3b, 0xa9, 0x3c, 0x06, 0x3c, 0x52, 0x3c, 0xd3,
-
5343  0x3c, 0xdc, 0x3c, 0xe5, 0x3c, 0xed, 0x3d, 0x23, 0x3d, 0x2c, 0x3d, 0x34,
-
5344  0x3d, 0x3c, 0x3d, 0x85, 0x3d, 0xa0, 0x3d, 0xc5, 0x3d, 0xf2, 0x3e, 0x2a,
-
5345  0x3e, 0x6a, 0x3e, 0x9a, 0x3e, 0xc8, 0x3f, 0x1b, 0x3f, 0x6d, 0x3f, 0x87,
-
5346  0x3f, 0xa7, 0x3f, 0xd2, 0x3f, 0xf5, 0x40, 0x48, 0x40, 0x5c, 0x40, 0x72,
-
5347  0x40, 0x7a, 0x40, 0xa5, 0x40, 0xcd, 0x40, 0xf4, 0x41, 0x3e, 0x41, 0x89,
-
5348  0x41, 0xa0, 0x41, 0xb8, 0x41, 0xc9, 0x41, 0xd1, 0x41, 0xe2, 0x41, 0xf3,
-
5349  0x41, 0xfb, 0x42, 0x03, 0x42, 0x0b, 0x42, 0x1b, 0x42, 0x24, 0x42, 0x68,
-
5350  0x42, 0xae, 0x42, 0xf5, 0x43, 0x1d, 0x43, 0x45, 0x43, 0x67, 0x43, 0x8a,
-
5351  0x43, 0xa0, 0x43, 0xb5, 0x43, 0xc0, 0x43, 0xdb, 0x43, 0xe6, 0x44, 0x07,
-
5352  0x44, 0x2e, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65,
-
5353  0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0xb4, 0x45, 0x04,
-
5354  0x45, 0x5d, 0x45, 0xb2, 0x46, 0x3c, 0x46, 0xa5, 0x47, 0x0b, 0x47, 0x5f,
-
5355  0x47, 0x72, 0x47, 0xc5, 0x48, 0x09, 0x48, 0x11, 0x48, 0x58, 0x48, 0x93,
-
5356  0x48, 0xc7, 0x49, 0x80, 0x49, 0xd2, 0x4a, 0x15, 0x4a, 0x5a, 0x4a, 0xc6,
-
5357  0x4a, 0xfd, 0x4b, 0x40, 0x4b, 0x6b, 0x4b, 0x8b, 0x4b, 0x9f, 0x4b, 0xd2,
-
5358  0x4b, 0xda, 0x4b, 0xf8, 0x4c, 0x09, 0x4c, 0x2e, 0x4c, 0x66, 0x4c, 0x80,
-
5359  0x4c, 0xad, 0x4c, 0xc8, 0x4c, 0xe4, 0x4d, 0x0a, 0x4d, 0x31, 0x4d, 0x59,
-
5360  0x4d, 0x64, 0x4d, 0x9c, 0x4d, 0xb0, 0x4d, 0xcd, 0x4e, 0x38, 0x4e, 0x85,
-
5361  0x4e, 0xbc, 0x4f, 0x07, 0x4f, 0x2c, 0x4f, 0x4c, 0x4f, 0x77, 0x4f, 0x93,
-
5362  0x4f, 0xea, 0x50, 0x49, 0x50, 0xc2, 0x51, 0x6c, 0x51, 0xc0, 0x51, 0xc9,
-
5363  0x51, 0xd1, 0x51, 0xf5, 0x52, 0x19, 0x52, 0x3d, 0x52, 0x61, 0x52, 0x85,
-
5364  0x52, 0xaa, 0x52, 0xce, 0x52, 0xf2, 0x53, 0x27, 0x53, 0x4d, 0x53, 0x7e,
-
5365  0x53, 0xb4, 0x53, 0xe9, 0x54, 0x21, 0x54, 0x41, 0x54, 0x60, 0x54, 0x80,
-
5366  0x54, 0xa0, 0x54, 0xb0, 0x54, 0xc1, 0x54, 0xd2, 0x54, 0xe3, 0x54, 0xf4,
-
5367  0x55, 0x05, 0x55, 0x16, 0x55, 0x27, 0x55, 0x38, 0x55, 0x48, 0x55, 0x59,
-
5368  0x55, 0x6a, 0x55, 0x7b, 0x55, 0x8c, 0x55, 0x9d, 0x55, 0xae, 0x55, 0xbf,
-
5369  0x55, 0xd0, 0x55, 0xe2, 0x55, 0xf3, 0x56, 0x04, 0x56, 0x15, 0x56, 0x28,
-
5370  0x56, 0x3e, 0x56, 0x52, 0x56, 0x66, 0x56, 0x77, 0x56, 0x91, 0x56, 0xa4,
-
5371  0x57, 0x8a, 0x58, 0x70, 0x59, 0x3e, 0x59, 0x62, 0x59, 0xa1, 0x59, 0xb3,
-
5372  0x59, 0xce, 0x59, 0xf0, 0x5a, 0x1d, 0x5a, 0x3f, 0x5a, 0x61, 0x5a, 0x7a,
-
5373  0x5a, 0xa6, 0x5a, 0xc8, 0x5a, 0xea, 0x5b, 0x03, 0x5b, 0x3b, 0x5b, 0x64,
-
5374  0x5b, 0x91, 0x5b, 0xb1, 0x5b, 0xce, 0x5b, 0xeb, 0x5c, 0x04, 0x5c, 0x19,
-
5375  0x5c, 0x37, 0x5c, 0x4c, 0x5c, 0x6a, 0x5c, 0x8b, 0x5c, 0xa6, 0x5c, 0xbc,
-
5376  0x5c, 0xda, 0x5c, 0xf0, 0x5d, 0x0e, 0x5d, 0x31, 0x5d, 0x55, 0x5d, 0x72,
-
5377  0x5d, 0x8f, 0x5d, 0xa8, 0x5d, 0xc3, 0x5d, 0xd5, 0x5d, 0xef, 0x5e, 0x04,
-
5378  0x5e, 0x19, 0x5e, 0x2a, 0x5e, 0x3b, 0x5e, 0x54, 0x5e, 0x7d, 0x5e, 0xb2,
-
5379  0x5e, 0xc3, 0x5e, 0xe7, 0x5f, 0x0b, 0x5f, 0x1c, 0x5f, 0x35, 0x5f, 0x4a,
-
5380  0x5f, 0x61, 0x5f, 0x76, 0x5f, 0x88, 0x5f, 0xaa, 0x5f, 0xc4, 0x5f, 0xde,
-
5381  0x5f, 0xff, 0x60, 0x1d, 0x60, 0x39, 0x60, 0x59, 0x60, 0x74, 0x60, 0x8f,
-
5382  0x60, 0xad, 0x60, 0xce, 0x60, 0xee, 0x61, 0x0f, 0x61, 0x31, 0x61, 0x53,
-
5383  0x61, 0x6b, 0x61, 0x85, 0x61, 0xaa, 0x61, 0xc2, 0x61, 0xd9, 0x61, 0xea,
-
5384  0x62, 0x04, 0x62, 0x19, 0x62, 0x2e, 0x62, 0x3e, 0x62, 0x4e, 0x62, 0x67,
-
5385  0x62, 0x91, 0x62, 0xbf, 0x62, 0xcf, 0x62, 0xf0, 0x63, 0x11, 0x63, 0x22,
-
5386  0x63, 0x38, 0x63, 0x51, 0x63, 0x65, 0x63, 0x79, 0x63, 0x8a, 0x63, 0xac,
-
5387  0x63, 0xc6, 0x63, 0xe0, 0x64, 0x00, 0x64, 0x1d, 0x64, 0x39, 0x64, 0x59,
-
5388  0x64, 0x75, 0x64, 0x91, 0x64, 0xb2, 0x64, 0xd3, 0x64, 0xf3, 0x65, 0x10,
-
5389  0x65, 0x2d, 0x65, 0x4f, 0x65, 0x67, 0x65, 0x84, 0x65, 0x98, 0x65, 0xb5,
-
5390  0x65, 0xc9, 0x65, 0xe5, 0x65, 0xff, 0x66, 0x18, 0x66, 0x2d, 0x66, 0x46,
-
5391  0x66, 0x5b, 0x66, 0x7d, 0x66, 0x99, 0x66, 0xb5, 0x66, 0xe5, 0x67, 0x07,
-
5392  0x67, 0x29, 0x67, 0x4a, 0x67, 0x63, 0x67, 0x7c, 0x67, 0x99, 0x67, 0xb0,
-
5393  0x67, 0xc7, 0x67, 0xf8, 0x68, 0x1c, 0x68, 0x40, 0x68, 0xbb, 0x69, 0x37,
-
5394  0x69, 0x97, 0x69, 0xe0, 0x6a, 0x3b, 0x6a, 0x75, 0x6a, 0x8c, 0x6a, 0xaf,
-
5395  0x6a, 0xd5, 0x6a, 0xdd, 0x6b, 0x06, 0x6b, 0x36, 0x6b, 0xa2, 0x6c, 0x23,
-
5396  0x6c, 0x48, 0x6c, 0xe2, 0x6d, 0x5c, 0x6d, 0xc5, 0x6d, 0xfd, 0x6e, 0x38,
-
5397  0x6e, 0x49, 0x6e, 0x54, 0x6e, 0x66, 0x6e, 0x81, 0x6e, 0xa2, 0x6f, 0x05,
-
5398  0x6f, 0x36, 0x6f, 0x96, 0x6f, 0xd5, 0x6f, 0xec, 0x70, 0x39, 0x70, 0x60,
-
5399  0x70, 0xa3, 0x70, 0xd9, 0x71, 0x14, 0x71, 0x51, 0x71, 0x73, 0x72, 0x2b,
-
5400  0x72, 0x6e, 0x72, 0xc9, 0x72, 0xec, 0x73, 0x33, 0x73, 0x5d, 0x73, 0x86,
-
5401  0x73, 0xb4, 0x73, 0xc4, 0x73, 0xec, 0x74, 0x12, 0x74, 0x1d, 0x74, 0x2f,
-
5402  0x74, 0x41, 0x74, 0x49, 0x74, 0x6c, 0x74, 0x8f, 0x74, 0xa1, 0x74, 0xb1,
-
5403  0x74, 0xc2, 0x74, 0xca, 0x74, 0xd2, 0x74, 0xda, 0x74, 0xe2, 0x74, 0xea,
-
5404  0x75, 0x07, 0x75, 0x24, 0x75, 0x4b, 0x75, 0x53, 0x75, 0x88, 0x75, 0x90,
-
5405  0x75, 0xc0, 0x75, 0xcb, 0x75, 0xf1, 0x76, 0x16, 0x76, 0x2f, 0x76, 0x38,
-
5406  0x76, 0x41, 0x76, 0x65, 0x76, 0x6d, 0x76, 0x90, 0x76, 0x99, 0x76, 0xa2,
-
5407  0x76, 0xb3, 0x76, 0xbb, 0x76, 0xe7, 0x77, 0x01, 0x77, 0x15, 0x77, 0x2a,
-
5408  0x77, 0x4b, 0x77, 0x65, 0x77, 0x80, 0x77, 0xa6, 0x77, 0xd9, 0x77, 0xe1,
-
5409  0x77, 0xf2, 0x78, 0x22, 0x78, 0x45, 0x78, 0x4d, 0x78, 0x55, 0x78, 0x5d,
-
5410  0x78, 0x65, 0x78, 0x6d, 0x78, 0x8a, 0x78, 0x92, 0x78, 0x9a, 0x78, 0xa2,
-
5411  0x78, 0xaa, 0x78, 0xc5, 0x78, 0xf0, 0x78, 0xf9, 0x79, 0x0e, 0x79, 0x23,
-
5412  0x79, 0x45, 0x79, 0x63, 0x79, 0x6b, 0x79, 0x9d, 0x79, 0xa6, 0x79, 0xdb,
-
5413  0x79, 0xe7, 0x79, 0xf3, 0x79, 0xff, 0x7a, 0x0a, 0x7a, 0x16, 0x7a, 0x22,
-
5414  0x7a, 0x2e, 0x7a, 0x3a, 0x7a, 0x46, 0x7a, 0x52, 0x7a, 0x5e, 0x7a, 0x6a,
-
5415  0x7a, 0x6a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x42,
-
5416  0x1c, 0xaf, 0x64, 0x2c, 0x5f, 0x0f, 0x3c, 0xf5, 0x00, 0x0b, 0x03, 0xe8,
-
5417  0x00, 0x00, 0x00, 0x00, 0xda, 0x17, 0x06, 0x51, 0x00, 0x00, 0x00, 0x00,
-
5418  0xda, 0xaa, 0x43, 0x42, 0xff, 0xb0, 0xfe, 0x70, 0x05, 0xaf, 0x03, 0xe8,
-
5419  0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5420  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5421  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5422  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5423  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5424  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5425  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5426  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5427  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5428  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0a,
-
5429  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x26,
-
5430  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5431  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5432  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32,
-
5433  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5434  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5435  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5436  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5437  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5438  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5439  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5440  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5441  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3f,
-
5442  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
-
5443  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
-
5444  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x2e,
-
5445  0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5446  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5447  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x41,
-
5448  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5449  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5450  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5451  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
-
5452  0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x29,
-
5453  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3c, 0x01, 0xf4, 0x00, 0x3f,
-
5454  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
-
5455  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x3f,
-
5456  0x01, 0xf4, 0x00, 0x11, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5457  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5458  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5459  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5460  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5461  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5462  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5463  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5464  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5465  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5466  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5467  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5468  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5469  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5470  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5471  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x37,
-
5472  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x1a, 0x01, 0xf4, 0x00, 0x34,
-
5473  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
-
5474  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
-
5475  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5476  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5477  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5478  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5479  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x1c,
-
5480  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
-
5481  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
-
5482  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5483  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5484  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5485  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5486  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5487  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5488  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5489  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x16,
-
5490  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5491  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x25,
-
5492  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5493  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5494  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5495  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5496  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5497  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5498  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5499  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5500  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5501  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5502  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5503  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5504  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5505  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x07,
-
5506  0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x18,
-
5507  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5508  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5509  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x26,
-
5510  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5511  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5512  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5513  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5514  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5515  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5516  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5517  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5518  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x28,
-
5519  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x33, 0x01, 0xf4, 0x00, 0x4e,
-
5520  0x01, 0xf4, 0x00, 0x37, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5521  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5522  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x43,
-
5523  0x01, 0xf4, 0xff, 0xff, 0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0xff, 0xd2,
-
5524  0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5525  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5e,
-
5526  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5527  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5528  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5529  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x2c,
-
5530  0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x3d,
-
5531  0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x4a,
-
5532  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
-
5533  0x01, 0xf4, 0x00, 0x41, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x15,
-
5534  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4b, 0x01, 0xf4, 0x00, 0x23,
-
5535  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5536  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5537  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x42,
-
5538  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5539  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5540  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5541  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5542  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5543  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5544  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5545  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5546  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5547  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5548  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5549  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x06,
-
5550  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x25,
-
5551  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5552  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5553  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5554  0x01, 0xf4, 0x00, 0x21, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5555  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5556  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5557  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5558  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3a,
-
5559  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5560  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5561  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5562  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5563  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5564  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5565  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5566  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5567  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5568  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x24,
-
5569  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e,
-
5570  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x29,
-
5571  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5572  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5573  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5574  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
-
5575  0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
-
5576  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
-
5577  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5578  0x01, 0xf4, 0x00, 0x52, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x3d,
-
5579  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3e,
-
5580  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x3d,
-
5581  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x6e,
-
5582  0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
-
5583  0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
-
5584  0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
-
5585  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70,
-
5586  0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77,
-
5587  0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72,
-
5588  0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85,
-
5589  0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c,
-
5590  0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f,
-
5591  0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e,
-
5592  0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
-
5593  0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
-
5594  0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
-
5595  0x01, 0xf4, 0x00, 0x47, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5596  0x01, 0xf4, 0x00, 0x01, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5597  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5598  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5599  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0xa1, 0x01, 0xf4, 0x00, 0xad,
-
5600  0x01, 0xf4, 0x00, 0xa0, 0x01, 0xf4, 0x00, 0x06, 0x01, 0xf4, 0x00, 0xad,
-
5601  0x01, 0xf4, 0x00, 0xad, 0x01, 0xf4, 0x00, 0x3e, 0x01, 0xf4, 0x00, 0x3c,
-
5602  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9d, 0x01, 0xf4, 0x00, 0x26,
-
5603  0x01, 0xf4, 0x00, 0xc8, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x3a,
-
5604  0x01, 0xf4, 0x00, 0x3a, 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x26,
-
5605  0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x2f,
-
5606  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x7e, 0x01, 0xf4, 0x00, 0x7f,
-
5607  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x45,
-
5608  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x45, 0x01, 0xf4, 0x00, 0x0a,
-
5609  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x9f,
-
5610  0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4d,
-
5611  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9f, 0x01, 0xf4, 0x00, 0x40,
-
5612  0x01, 0xf4, 0x00, 0x46, 0x01, 0xf4, 0x00, 0x89, 0x01, 0xf4, 0x00, 0x8a,
-
5613  0x01, 0xf4, 0x00, 0x82, 0x01, 0xf4, 0x00, 0xce, 0x01, 0xf4, 0x00, 0x6b,
-
5614  0x01, 0xf4, 0x00, 0xc7, 0x03, 0xe8, 0x00, 0x29, 0x05, 0xdc, 0x00, 0x2d,
-
5615  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5616  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5617  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x26,
-
5618  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x3f,
-
5619  0x01, 0xf4, 0x00, 0x39, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x1c,
-
5620  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x13, 0x01, 0xf4, 0x00, 0x1d,
-
5621  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x19,
-
5622  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x2f,
-
5623  0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x34,
-
5624  0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x1e,
-
5625  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x84, 0x01, 0xf4, 0x00, 0x33,
-
5626  0x01, 0xf4, 0x00, 0x27, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
-
5627  0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x44,
-
5628  0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x27,
-
5629  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x22,
-
5630  0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
-
5631  0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x0c,
-
5632  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x14,
-
5633  0x01, 0xf4, 0x00, 0x1d, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x20,
-
5634  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x15, 0x01, 0xf4, 0x00, 0x1a,
-
5635  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x25,
-
5636  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x30,
-
5637  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5638  0x01, 0xf4, 0x00, 0x30, 0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x15,
-
5639  0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x3a,
-
5640  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22,
-
5641  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a,
-
5642  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x00,
-
5643  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5644  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5645  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5646  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5647  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5648  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x01, 0xb6,
-
5649  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
-
5650  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5651  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
-
5652  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x02,
-
5653  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5654  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2f,
-
5655  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40,
-
5656  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5657  0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5658  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5659  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5660  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76,
-
5661  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5662  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
-
5663  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5664  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f,
-
5665  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5666  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5667  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10,
-
5668  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c,
-
5669  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5670  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76,
-
5671  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5672  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5673  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5674  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5675  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5676  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0xb8,
-
5677  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5678  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5679  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5680  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10, 0x01, 0xf4, 0x00, 0xb8,
-
5681  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0xb8,
-
5682  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5683  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0xb8,
-
5684  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
-
5685  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5686  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5687  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5688  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5689  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5690  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5691  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5692  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5693  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5694  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5695  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5696  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5697  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x29,
-
5698  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x0d,
-
5699  0x01, 0xf4, 0x00, 0x05, 0x01, 0xf4, 0x00, 0x0c, 0x01, 0xf4, 0x00, 0x0f,
-
5700  0x01, 0xf4, 0x00, 0x09, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x50,
-
5701  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, 0x01, 0xf4, 0x00, 0x1d,
-
5702  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3c,
-
5703  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x12,
-
5704  0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0xca, 0x01, 0xf4, 0x00, 0x8c,
-
5705  0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0x2e,
-
5706  0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2a,
-
5707  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x29,
-
5708  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x3d,
-
5709  0x01, 0xf4, 0x00, 0x02, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x00,
-
5710  0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x0f,
-
5711  0x05, 0xdc, 0x00, 0x2d, 0x03, 0xe8, 0x00, 0x2c, 0x03, 0xe8, 0x00, 0x93,
-
5712  0x03, 0xe8, 0x00, 0x3c, 0x03, 0xe8, 0x00, 0x95, 0x01, 0xf4, 0x00, 0xad,
-
5713  0x01, 0xf4, 0x00, 0xb0, 0x01, 0xf4, 0x00, 0xac, 0x01, 0xf4, 0x00, 0x8e,
-
5714  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb2, 0x01, 0xf4, 0x00, 0xca,
-
5715  0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xb8,
-
5716  0x01, 0xf4, 0x00, 0xd1, 0x01, 0xf4, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x69,
-
5717  0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xd4,
-
5718  0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x63,
-
5719  0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x5f,
-
5720  0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x5b,
-
5721  0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x01, 0x85,
-
5722  0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0xad,
-
5723  0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x71,
-
5724  0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x6d,
-
5725  0x01, 0xf4, 0x00, 0x69, 0x01, 0xf4, 0x00, 0xc4, 0x01, 0xf4, 0x00, 0x96,
-
5726  0x01, 0xf4, 0x00, 0xd4, 0x01, 0xf4, 0x00, 0x7b, 0x01, 0xf4, 0x00, 0x75,
-
5727  0x01, 0xf4, 0x00, 0x83, 0x01, 0xf4, 0x00, 0x60, 0x01, 0xf4, 0x00, 0x9f,
-
5728  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xa1,
-
5729  0x01, 0xf4, 0x00, 0xef, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0xc0,
-
5730  0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x6a,
-
5731  0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x69,
-
5732  0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x01, 0x8e,
-
5733  0x01, 0xf4, 0x00, 0x65, 0x01, 0xf4, 0x00, 0xcc, 0x01, 0xf4, 0x00, 0xb2,
-
5734  0x01, 0xf4, 0x00, 0xab, 0x01, 0xf4, 0x00, 0x6a, 0x01, 0xf4, 0x00, 0x4a,
-
5735  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x9b, 0x01, 0xf4, 0x00, 0x5f,
-
5736  0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71,
-
5737  0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x64,
-
5738  0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x66,
-
5739  0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56,
-
5740  0x00, 0x00, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
-
5741  0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x05, 0xdc, 0xff, 0xb0, 0xfd, 0xe5,
-
5742  0x05, 0xaf, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5743  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc2, 0x00, 0x04, 0x01, 0xf9,
-
5744  0x01, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00,
-
5745  0x00, 0x4b, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x32,
-
5746  0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x05, 0x09, 0x00, 0x00, 0x00, 0x00,
-
5747  0x00, 0x00, 0xa0, 0x00, 0x00, 0xff, 0x00, 0x00, 0xf9, 0xeb, 0x00, 0x00,
-
5748  0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x43, 0x59, 0x52, 0x45, 0x00, 0xc0,
-
5749  0x00, 0x00, 0xff, 0xfd, 0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x03, 0xec,
-
5750  0x01, 0xc6, 0x60, 0x00, 0x01, 0x93, 0xcd, 0xd4, 0x00, 0x00, 0x01, 0xc9,
-
5751  0x02, 0x6f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02,
-
5752  0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01,
-
5753  0x00, 0x00, 0x00, 0x14, 0x00, 0x04, 0x0a, 0x2c, 0x00, 0x00, 0x01, 0x0a,
-
5754  0x01, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x2f,
-
5755  0x00, 0x39, 0x00, 0x7e, 0x01, 0x31, 0x01, 0x48, 0x01, 0x7e, 0x01, 0x8f,
-
5756  0x01, 0x92, 0x01, 0x98, 0x01, 0xa1, 0x01, 0xb0, 0x01, 0xb9, 0x01, 0xc9,
-
5757  0x01, 0xe7, 0x01, 0xeb, 0x02, 0x1b, 0x02, 0x2d, 0x02, 0x33, 0x02, 0x37,
-
5758  0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98, 0x02, 0x9a, 0x02, 0xbc,
-
5759  0x02, 0xbf, 0x02, 0xcc, 0x02, 0xdd, 0x03, 0x04, 0x03, 0x0c, 0x03, 0x0f,
-
5760  0x03, 0x12, 0x03, 0x1b, 0x03, 0x24, 0x03, 0x28, 0x03, 0x2e, 0x03, 0x31,
-
5761  0x03, 0x36, 0x03, 0x75, 0x1e, 0x09, 0x1e, 0x0f, 0x1e, 0x17, 0x1e, 0x1d,
-
5762  0x1e, 0x21, 0x1e, 0x25, 0x1e, 0x2b, 0x1e, 0x2f, 0x1e, 0x37, 0x1e, 0x3b,
-
5763  0x1e, 0x49, 0x1e, 0x53, 0x1e, 0x5b, 0x1e, 0x69, 0x1e, 0x6f, 0x1e, 0x7b,
-
5764  0x1e, 0x85, 0x1e, 0x8f, 0x1e, 0x93, 0x1e, 0x97, 0x1e, 0x9e, 0x1e, 0xf9,
-
5765  0x20, 0x0b, 0x20, 0x10, 0x20, 0x15, 0x20, 0x1a, 0x20, 0x1e, 0x20, 0x22,
-
5766  0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3a, 0x20, 0x44, 0x20, 0x70,
-
5767  0x20, 0x79, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x89, 0x20, 0xa1, 0x20, 0xa4,
-
5768  0x20, 0xa7, 0x20, 0xa9, 0x20, 0xad, 0x20, 0xb2, 0x20, 0xb5, 0x20, 0xba,
-
5769  0x20, 0xbd, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x24, 0x21, 0x26,
-
5770  0x21, 0x2e, 0x21, 0x99, 0x21, 0xea, 0x22, 0x02, 0x22, 0x06, 0x22, 0x08,
-
5771  0x22, 0x0f, 0x22, 0x12, 0x22, 0x15, 0x22, 0x17, 0x22, 0x1a, 0x22, 0x1e,
-
5772  0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x22, 0x95, 0x23, 0x02,
-
5773  0x23, 0x18, 0x23, 0x27, 0x23, 0x2b, 0x23, 0x8b, 0x23, 0xce, 0x24, 0x23,
-
5774  0x25, 0x94, 0x25, 0x9f, 0x25, 0xc7, 0x25, 0xcb, 0x25, 0xcf, 0x26, 0x3b,
-
5775  0x26, 0x60, 0x26, 0x63, 0x26, 0x66, 0x27, 0x15, 0x27, 0x18, 0x2b, 0x07,
-
5776  0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
-
5777  0x00, 0x0d, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3a, 0x00, 0xa0, 0x01, 0x34,
-
5778  0x01, 0x4a, 0x01, 0x8f, 0x01, 0x92, 0x01, 0x98, 0x01, 0xa0, 0x01, 0xaf,
-
5779  0x01, 0xb8, 0x01, 0xc7, 0x01, 0xe6, 0x01, 0xea, 0x01, 0xfa, 0x02, 0x2a,
-
5780  0x02, 0x30, 0x02, 0x37, 0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98,
-
5781  0x02, 0x9a, 0x02, 0xb9, 0x02, 0xbe, 0x02, 0xc6, 0x02, 0xd8, 0x03, 0x00,
-
5782  0x03, 0x06, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x1b, 0x03, 0x23, 0x03, 0x26,
-
5783  0x03, 0x2e, 0x03, 0x31, 0x03, 0x35, 0x03, 0x75, 0x1e, 0x08, 0x1e, 0x0c,
-
5784  0x1e, 0x14, 0x1e, 0x1c, 0x1e, 0x20, 0x1e, 0x24, 0x1e, 0x2a, 0x1e, 0x2e,
-
5785  0x1e, 0x36, 0x1e, 0x3a, 0x1e, 0x42, 0x1e, 0x4c, 0x1e, 0x5a, 0x1e, 0x5e,
-
5786  0x1e, 0x6c, 0x1e, 0x78, 0x1e, 0x80, 0x1e, 0x8e, 0x1e, 0x92, 0x1e, 0x97,
-
5787  0x1e, 0x9e, 0x1e, 0xa0, 0x20, 0x07, 0x20, 0x10, 0x20, 0x12, 0x20, 0x18,
-
5788  0x20, 0x1c, 0x20, 0x20, 0x20, 0x26, 0x20, 0x30, 0x20, 0x32, 0x20, 0x39,
-
5789  0x20, 0x44, 0x20, 0x70, 0x20, 0x74, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x80,
-
5790  0x20, 0xa1, 0x20, 0xa3, 0x20, 0xa6, 0x20, 0xa9, 0x20, 0xab, 0x20, 0xb1,
-
5791  0x20, 0xb5, 0x20, 0xb9, 0x20, 0xbc, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22,
-
5792  0x21, 0x24, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x90, 0x21, 0xe6, 0x22, 0x02,
-
5793  0x22, 0x05, 0x22, 0x08, 0x22, 0x0f, 0x22, 0x11, 0x22, 0x15, 0x22, 0x17,
-
5794  0x22, 0x19, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64,
-
5795  0x22, 0x95, 0x23, 0x02, 0x23, 0x18, 0x23, 0x25, 0x23, 0x2b, 0x23, 0x8b,
-
5796  0x23, 0xce, 0x24, 0x23, 0x25, 0x00, 0x25, 0x95, 0x25, 0xc6, 0x25, 0xca,
-
5797  0x25, 0xcf, 0x26, 0x39, 0x26, 0x60, 0x26, 0x63, 0x26, 0x65, 0x27, 0x13,
-
5798  0x27, 0x17, 0x2b, 0x05, 0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff,
-
5799  0x03, 0xc1, 0x02, 0x43, 0x00, 0x00, 0x01, 0xa9, 0x00, 0x00, 0x00, 0x00,
-
5800  0x00, 0x00, 0x00, 0x00, 0xff, 0x23, 0x00, 0xc6, 0xfe, 0xca, 0x00, 0x00,
-
5801  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5802  0x00, 0x00, 0x00, 0x00, 0xff, 0x13, 0xff, 0x45, 0xfe, 0xd1, 0xff, 0x14,
-
5803  0xfe, 0x6c, 0xfe, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5804  0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x67,
-
5805  0x00, 0x66, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5c, 0xff, 0xf9, 0x00, 0x00,
-
5806  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5807  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5808  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5809  0xe3, 0x0d, 0xe2, 0x13, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x27, 0x00, 0x00,
-
5810  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xf7, 0xe2, 0x56, 0xe3, 0x23,
-
5811  0xe2, 0x08, 0xe1, 0xc9, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0xf0, 0xe1, 0x58,
-
5812  0xe1, 0x65, 0xe1, 0xb2, 0x00, 0x00, 0xe1, 0xb9, 0xe1, 0xbc, 0x00, 0x00,
-
5813  0x00, 0x00, 0xe1, 0x9c, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x47, 0xe2, 0x46,
-
5814  0xe2, 0x31, 0xe0, 0xb4, 0xe1, 0x58, 0xe2, 0x2f, 0x00, 0x00, 0x00, 0x00,
-
5815  0xe0, 0x82, 0x00, 0x00, 0xe0, 0x62, 0xe0, 0x71, 0x00, 0x00, 0xe0, 0x54,
-
5816  0xe0, 0x50, 0x00, 0x00, 0xe0, 0x5d, 0xe0, 0x52, 0xe0, 0x2f, 0xe0, 0x11,
-
5817  0x00, 0x00, 0xdf, 0xf2, 0xe0, 0x5e, 0xe0, 0x4e, 0x00, 0x00, 0xe0, 0x38,
-
5818  0xdf, 0xd4, 0xdf, 0x99, 0xdf, 0x3b, 0x00, 0x00, 0xdd, 0x19, 0xdc, 0xf8,
-
5819  0x00, 0x00, 0xdc, 0xed, 0xdd, 0x08, 0xdc, 0xe4, 0xdc, 0xe2, 0xdc, 0xe1,
-
5820  0xdc, 0x35, 0xdc, 0x34, 0x00, 0x00, 0xd7, 0x04, 0xd4, 0x13, 0x03, 0x6b,
-
5821  0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x22,
-
5822  0x01, 0xaa, 0x02, 0xcc, 0x02, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5823  0x03, 0x56, 0x03, 0x58, 0x03, 0x5a, 0x03, 0x5c, 0x03, 0x60, 0x03, 0x62,
-
5824  0x03, 0x64, 0x03, 0xa6, 0x03, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5825  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xa6, 0x03, 0xac, 0x03, 0xae,
-
5826  0x03, 0xba, 0x03, 0xc4, 0x03, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5827  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5828  0x03, 0xc6, 0x03, 0xc8, 0x03, 0xce, 0x03, 0xd4, 0x03, 0xd6, 0x03, 0xd8,
-
5829  0x03, 0xda, 0x03, 0xdc, 0x03, 0xde, 0x03, 0xe0, 0x03, 0xe2, 0x03, 0xf0,
-
5830  0x03, 0xfe, 0x04, 0x00, 0x04, 0x16, 0x04, 0x1c, 0x04, 0x22, 0x04, 0x2c,
-
5831  0x04, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x04, 0x2c, 0x04, 0xde, 0x00, 0x00,
-
5832  0x04, 0xe4, 0x04, 0xea, 0x04, 0xee, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00,
-
5833  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5834  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00, 0x00, 0x00,
-
5835  0x04, 0xde, 0x04, 0xe2, 0x00, 0x00, 0x04, 0xe2, 0x04, 0xe4, 0x00, 0x00,
-
5836  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xda,
-
5837  0x04, 0xec, 0x00, 0x00, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x04, 0xf0,
-
5838  0x00, 0x00, 0x00, 0x00, 0x04, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5839  0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe4,
-
5840  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00,
-
5841  0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5842  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0xf8, 0x00, 0x00, 0x00, 0x00,
-
5843  0x00, 0x00, 0x00, 0x00, 0x02, 0x4c, 0x02, 0x1e, 0x02, 0x43, 0x02, 0x26,
-
5844  0x02, 0x55, 0x02, 0x85, 0x03, 0x4e, 0x02, 0x44, 0x02, 0x2b, 0x02, 0x2c,
-
5845  0x02, 0x24, 0x02, 0x6c, 0x02, 0x1a, 0x02, 0x31, 0x02, 0x19, 0x02, 0x27,
-
5846  0x02, 0x1b, 0x02, 0x1c, 0x02, 0x73, 0x02, 0x70, 0x02, 0x72, 0x02, 0x20,
-
5847  0x03, 0x4d, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x24, 0x00, 0x2a,
-
5848  0x00, 0x42, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x5e, 0x00, 0x60,
-
5849  0x00, 0x63, 0x00, 0x6d, 0x00, 0x6f, 0x00, 0x78, 0x00, 0x9b, 0x00, 0x9d,
-
5850  0x00, 0x9e, 0x00, 0xa6, 0x00, 0xb3, 0x00, 0xba, 0x00, 0xd1, 0x00, 0xd2,
-
5851  0x00, 0xd7, 0x00, 0xd8, 0x00, 0xe2, 0x02, 0x2f, 0x02, 0x28, 0x02, 0x30,
-
5852  0x02, 0x7a, 0x02, 0x38, 0x03, 0x95, 0x00, 0xe8, 0x01, 0x03, 0x01, 0x05,
-
5853  0x01, 0x0c, 0x01, 0x12, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x34, 0x01, 0x39,
-
5854  0x01, 0x49, 0x01, 0x4c, 0x01, 0x4f, 0x01, 0x58, 0x01, 0x5a, 0x01, 0x63,
-
5855  0x01, 0x86, 0x01, 0x88, 0x01, 0x89, 0x01, 0x93, 0x01, 0x9f, 0x01, 0xa7,
-
5856  0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xcf, 0x02, 0x2d,
-
5857  0x03, 0x57, 0x02, 0x2e, 0x02, 0x78, 0x02, 0x4d, 0x02, 0x1f, 0x02, 0x52,
-
5858  0x02, 0x64, 0x02, 0x54, 0x02, 0x66, 0x03, 0x58, 0x03, 0x50, 0x03, 0x93,
-
5859  0x03, 0x51, 0x01, 0xd5, 0x02, 0x3f, 0x02, 0x79, 0x02, 0x32, 0x03, 0x52,
-
5860  0x03, 0x9d, 0x03, 0x54, 0x02, 0x76, 0x02, 0x05, 0x02, 0x06, 0x03, 0x96,
-
5861  0x02, 0x83, 0x03, 0x4f, 0x02, 0x22, 0x03, 0x9e, 0x02, 0x04, 0x01, 0xd6,
-
5862  0x02, 0x40, 0x02, 0x0f, 0x02, 0x0e, 0x02, 0x10, 0x02, 0x21, 0x00, 0x12,
-
5863  0x00, 0x02, 0x00, 0x09, 0x00, 0x19, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1a,
-
5864  0x00, 0x20, 0x00, 0x39, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x58,
-
5865  0x00, 0x50, 0x00, 0x52, 0x00, 0x54, 0x00, 0x25, 0x00, 0x77, 0x00, 0x86,
-
5866  0x00, 0x79, 0x00, 0x7b, 0x00, 0x96, 0x00, 0x82, 0x02, 0x6e, 0x00, 0x94,
-
5867  0x00, 0xc1, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xbf, 0x00, 0xd9, 0x00, 0x9c,
-
5868  0x01, 0x9e, 0x00, 0xf9, 0x00, 0xe9, 0x00, 0xf0, 0x01, 0x00, 0x00, 0xf7,
-
5869  0x00, 0xfe, 0x01, 0x01, 0x01, 0x08, 0x01, 0x21, 0x01, 0x13, 0x01, 0x17,
-
5870  0x01, 0x1e, 0x01, 0x43, 0x01, 0x3b, 0x01, 0x3d, 0x01, 0x3f, 0x01, 0x0d,
-
5871  0x01, 0x62, 0x01, 0x71, 0x01, 0x64, 0x01, 0x66, 0x01, 0x81, 0x01, 0x6d,
-
5872  0x02, 0x6f, 0x01, 0x7f, 0x01, 0xae, 0x01, 0xa8, 0x01, 0xaa, 0x01, 0xac,
-
5873  0x01, 0xc6, 0x01, 0x87, 0x01, 0xc8, 0x00, 0x15, 0x00, 0xfc, 0x00, 0x03,
-
5874  0x00, 0xea, 0x00, 0x16, 0x00, 0xfd, 0x00, 0x1e, 0x01, 0x06, 0x00, 0x22,
-
5875  0x01, 0x0a, 0x00, 0x23, 0x01, 0x0b, 0x00, 0x1f, 0x01, 0x07, 0x00, 0x26,
-
5876  0x01, 0x0e, 0x00, 0x27, 0x01, 0x0f, 0x00, 0x3c, 0x01, 0x24, 0x00, 0x2c,
-
5877  0x01, 0x14, 0x00, 0x37, 0x01, 0x1f, 0x00, 0x3f, 0x01, 0x27, 0x00, 0x2d,
-
5878  0x01, 0x15, 0x00, 0x46, 0x01, 0x30, 0x00, 0x44, 0x01, 0x2e, 0x00, 0x48,
-
5879  0x01, 0x32, 0x00, 0x47, 0x01, 0x31, 0x00, 0x4d, 0x01, 0x37, 0x00, 0x4b,
-
5880  0x01, 0x35, 0x00, 0x5d, 0x01, 0x48, 0x00, 0x5b, 0x01, 0x46, 0x00, 0x51,
-
5881  0x01, 0x3c, 0x00, 0x5c, 0x01, 0x47, 0x00, 0x56, 0x01, 0x3a, 0x00, 0x5f,
-
5882  0x01, 0x4b, 0x00, 0x61, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0x65, 0x01, 0x50,
-
5883  0x00, 0x67, 0x01, 0x52, 0x00, 0x66, 0x01, 0x51, 0x00, 0x68, 0x01, 0x53,
-
5884  0x00, 0x6c, 0x01, 0x57, 0x00, 0x70, 0x01, 0x5b, 0x00, 0x72, 0x01, 0x5d,
-
5885  0x00, 0x71, 0x01, 0x5c, 0x00, 0x75, 0x01, 0x60, 0x00, 0x90, 0x01, 0x7b,
-
5886  0x00, 0x7a, 0x01, 0x65, 0x00, 0x8e, 0x01, 0x79, 0x00, 0x9a, 0x01, 0x85,
-
5887  0x00, 0x9f, 0x01, 0x8a, 0x00, 0xa1, 0x01, 0x8c, 0x00, 0xa0, 0x01, 0x8b,
-
5888  0x00, 0xa7, 0x01, 0x94, 0x00, 0xac, 0x01, 0x99, 0x00, 0xab, 0x01, 0x98,
-
5889  0x00, 0xa9, 0x01, 0x96, 0x00, 0xb6, 0x01, 0xa2, 0x00, 0xb5, 0x01, 0xa1,
-
5890  0x00, 0xb4, 0x01, 0xa0, 0x00, 0xcf, 0x01, 0xbc, 0x00, 0xcb, 0x01, 0xb8,
-
5891  0x00, 0xbc, 0x01, 0xa9, 0x00, 0xce, 0x01, 0xbb, 0x00, 0xc9, 0x01, 0xb6,
-
5892  0x00, 0xcd, 0x01, 0xba, 0x00, 0xd4, 0x01, 0xc1, 0x00, 0xda, 0x01, 0xc7,
-
5893  0x00, 0xdb, 0x00, 0xe3, 0x01, 0xd0, 0x00, 0xe5, 0x01, 0xd2, 0x00, 0xe4,
-
5894  0x01, 0xd1, 0x00, 0x88, 0x01, 0x73, 0x00, 0xc3, 0x01, 0xb0, 0x00, 0x41,
-
5895  0x01, 0x2b, 0x00, 0x64, 0x00, 0x6a, 0x01, 0x55, 0x00, 0x45, 0x01, 0x2f,
-
5896  0x00, 0x93, 0x01, 0x7e, 0x00, 0x18, 0x00, 0xff, 0x00, 0x1b, 0x01, 0x02,
-
5897  0x00, 0x95, 0x01, 0x80, 0x00, 0x0f, 0x00, 0xf6, 0x00, 0x14, 0x00, 0xfb,
-
5898  0x00, 0x35, 0x01, 0x1d, 0x00, 0x3b, 0x01, 0x23, 0x00, 0x53, 0x01, 0x3e,
-
5899  0x00, 0x5a, 0x01, 0x45, 0x00, 0x81, 0x01, 0x6c, 0x00, 0x8f, 0x01, 0x7a,
-
5900  0x00, 0xa2, 0x01, 0x8d, 0x00, 0xa4, 0x01, 0x90, 0x00, 0xbe, 0x01, 0xab,
-
5901  0x00, 0xca, 0x01, 0xb7, 0x00, 0xad, 0x01, 0x9a, 0x00, 0xb7, 0x01, 0xa3,
-
5902  0x00, 0x83, 0x01, 0x6e, 0x00, 0x99, 0x01, 0x84, 0x00, 0x84, 0x01, 0x6f,
-
5903  0x00, 0xe0, 0x01, 0xcd, 0x03, 0x74, 0x03, 0x71, 0x03, 0x70, 0x03, 0x6f,
-
5904  0x03, 0x76, 0x03, 0x75, 0x03, 0x98, 0x03, 0x99, 0x03, 0x79, 0x03, 0x72,
-
5905  0x03, 0x77, 0x03, 0x73, 0x03, 0x78, 0x03, 0x9a, 0x03, 0x94, 0x03, 0x9b,
-
5906  0x03, 0x9f, 0x03, 0x9c, 0x03, 0x97, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7f,
-
5907  0x03, 0x83, 0x03, 0x84, 0x03, 0x81, 0x03, 0x7b, 0x03, 0x7a, 0x03, 0x85,
-
5908  0x03, 0x82, 0x03, 0x7e, 0x03, 0x80, 0x00, 0x21, 0x01, 0x09, 0x00, 0x28,
-
5909  0x01, 0x10, 0x00, 0x29, 0x01, 0x11, 0x00, 0x3e, 0x01, 0x26, 0x00, 0x3d,
-
5910  0x01, 0x25, 0x00, 0x2e, 0x01, 0x16, 0x00, 0x49, 0x01, 0x33, 0x00, 0x4e,
-
5911  0x01, 0x38, 0x00, 0x4c, 0x01, 0x36, 0x00, 0x55, 0x01, 0x40, 0x00, 0x69,
-
5912  0x01, 0x54, 0x00, 0x6b, 0x01, 0x56, 0x00, 0x6e, 0x01, 0x59, 0x00, 0x73,
-
5913  0x01, 0x5e, 0x00, 0x74, 0x01, 0x5f, 0x00, 0x76, 0x01, 0x61, 0x00, 0x97,
-
5914  0x01, 0x82, 0x00, 0x98, 0x01, 0x83, 0x00, 0x92, 0x01, 0x7d, 0x00, 0x91,
-
5915  0x01, 0x7c, 0x00, 0xa3, 0x01, 0x8e, 0x00, 0xa5, 0x01, 0x91, 0x00, 0xae,
-
5916  0x01, 0x9b, 0x00, 0xaf, 0x01, 0x9c, 0x00, 0xa8, 0x01, 0x95, 0x00, 0xaa,
-
5917  0x01, 0x97, 0x00, 0xb0, 0x01, 0x9d, 0x00, 0xb8, 0x01, 0xa5, 0x00, 0xb9,
-
5918  0x01, 0xa6, 0x00, 0xd0, 0x01, 0xbd, 0x00, 0xcc, 0x01, 0xb9, 0x00, 0xd6,
-
5919  0x01, 0xc3, 0x00, 0xd3, 0x01, 0xc0, 0x00, 0xd5, 0x01, 0xc2, 0x00, 0xdc,
-
5920  0x01, 0xc9, 0x00, 0xe6, 0x01, 0xd3, 0x00, 0x11, 0x00, 0xf8, 0x00, 0x13,
-
5921  0x00, 0xfa, 0x00, 0x0a, 0x00, 0xf1, 0x00, 0x0c, 0x00, 0xf3, 0x00, 0x0d,
-
5922  0x00, 0xf4, 0x00, 0x0e, 0x00, 0xf5, 0x00, 0x0b, 0x00, 0xf2, 0x00, 0x04,
-
5923  0x00, 0xeb, 0x00, 0x06, 0x00, 0xed, 0x00, 0x07, 0x00, 0xee, 0x00, 0x08,
-
5924  0x00, 0xef, 0x00, 0x05, 0x00, 0xec, 0x00, 0x38, 0x01, 0x20, 0x00, 0x3a,
-
5925  0x01, 0x22, 0x00, 0x40, 0x01, 0x29, 0x00, 0x30, 0x01, 0x18, 0x00, 0x32,
-
5926  0x01, 0x1a, 0x00, 0x33, 0x01, 0x1b, 0x00, 0x34, 0x01, 0x1c, 0x00, 0x31,
-
5927  0x01, 0x19, 0x00, 0x59, 0x01, 0x44, 0x00, 0x57, 0x01, 0x42, 0x00, 0x85,
-
5928  0x01, 0x70, 0x00, 0x87, 0x01, 0x72, 0x00, 0x7c, 0x01, 0x67, 0x00, 0x7e,
-
5929  0x01, 0x69, 0x00, 0x7f, 0x01, 0x6a, 0x00, 0x80, 0x01, 0x6b, 0x00, 0x7d,
-
5930  0x01, 0x68, 0x00, 0x89, 0x01, 0x74, 0x00, 0x8b, 0x01, 0x76, 0x00, 0x8c,
-
5931  0x01, 0x77, 0x00, 0x8d, 0x01, 0x78, 0x00, 0x8a, 0x01, 0x75, 0x00, 0xc0,
-
5932  0x01, 0xad, 0x00, 0xc2, 0x01, 0xaf, 0x00, 0xc4, 0x01, 0xb1, 0x00, 0xc6,
-
5933  0x01, 0xb3, 0x00, 0xc7, 0x01, 0xb4, 0x00, 0xc8, 0x01, 0xb5, 0x00, 0xc5,
-
5934  0x01, 0xb2, 0x00, 0xde, 0x01, 0xcb, 0x00, 0xdd, 0x01, 0xca, 0x00, 0xdf,
-
5935  0x01, 0xcc, 0x00, 0xe1, 0x01, 0xce, 0x02, 0x49, 0x02, 0x4b, 0x02, 0x4e,
-
5936  0x02, 0x4a, 0x02, 0x4f, 0x02, 0x35, 0x02, 0x33, 0x02, 0x34, 0x02, 0x36,
-
5937  0x02, 0x3d, 0x02, 0x3e, 0x02, 0x39, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3a,
-
5938  0x03, 0x59, 0x03, 0x5b, 0x02, 0x23, 0x02, 0x59, 0x02, 0x5c, 0x02, 0x56,
-
5939  0x02, 0x57, 0x02, 0x5b, 0x02, 0x61, 0x02, 0x5a, 0x02, 0x63, 0x02, 0x5d,
-
5940  0x02, 0x5e, 0x02, 0x62, 0x02, 0x90, 0x02, 0x8a, 0x02, 0x8c, 0x02, 0x8e,
-
5941  0x02, 0x92, 0x02, 0x93, 0x02, 0x91, 0x02, 0x8b, 0x02, 0x8d, 0x02, 0x8f,
-
5942  0x02, 0x97, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x03, 0x61, 0x02, 0x7c,
-
5943  0x02, 0x7f, 0x02, 0x81, 0x02, 0x6d, 0x02, 0x68, 0x02, 0x82, 0x02, 0x75,
-
5944  0x02, 0x74, 0x03, 0x65, 0x03, 0x64, 0x03, 0x62, 0x03, 0x0a, 0x02, 0xe4,
-
5945  0x03, 0x17, 0x02, 0xf1, 0x03, 0x10, 0x02, 0xea, 0x03, 0x11, 0x02, 0xeb,
-
5946  0x03, 0x0d, 0x02, 0xe7, 0x03, 0x0e, 0x02, 0xe8, 0x03, 0x09, 0x02, 0xd8,
-
5947  0x02, 0xd2, 0x02, 0xe3, 0x03, 0x08, 0x02, 0xd6, 0x02, 0xd0, 0x02, 0xe2,
-
5948  0x03, 0x16, 0x03, 0x31, 0x03, 0x2b, 0x02, 0xf0, 0x03, 0x15, 0x03, 0x2f,
-
5949  0x03, 0x29, 0x02, 0xee, 0x03, 0x1a, 0x03, 0x3d, 0x03, 0x2a, 0x02, 0xd3,
-
5950  0x03, 0x3a, 0x02, 0xd9, 0x03, 0x30, 0x02, 0xf4, 0x03, 0x19, 0x03, 0x3c,
-
5951  0x03, 0x28, 0x02, 0xd1, 0x03, 0x39, 0x02, 0xd7, 0x03, 0x2e, 0x02, 0xf3,
-
5952  0x03, 0x07, 0x02, 0xf6, 0x03, 0x1c, 0x02, 0xd5, 0x02, 0xcf, 0x03, 0x1f,
-
5953  0x02, 0xf9, 0x02, 0xe1, 0x03, 0x14, 0x02, 0xf7, 0x03, 0x1d, 0x03, 0x2d,
-
5954  0x03, 0x27, 0x03, 0x20, 0x02, 0xfa, 0x02, 0xed, 0x03, 0x18, 0x02, 0xf8,
-
5955  0x03, 0x1e, 0x03, 0x3b, 0x03, 0x26, 0x02, 0xd4, 0x03, 0x38, 0x02, 0xfc,
-
5956  0x03, 0x22, 0x02, 0xf5, 0x03, 0x1b, 0x02, 0xda, 0x03, 0x2c, 0x03, 0x21,
-
5957  0x02, 0xfb, 0x02, 0xf2, 0x03, 0x01, 0x02, 0xde, 0x03, 0x02, 0x02, 0xdf,
-
5958  0x02, 0xc4, 0x02, 0xc8, 0x02, 0xdd, 0x02, 0xce, 0x02, 0xc3, 0x02, 0xdc,
-
5959  0x02, 0xcd, 0x02, 0xc2, 0x03, 0x34, 0x03, 0x25, 0x02, 0xc7, 0x03, 0x33,
-
5960  0x03, 0x24, 0x02, 0xc6, 0x03, 0x40, 0x03, 0x37, 0x02, 0xcb, 0x03, 0x3f,
-
5961  0x03, 0x36, 0x02, 0xca, 0x02, 0xdb, 0x02, 0xcc, 0x02, 0xc1, 0x03, 0x32,
-
5962  0x03, 0x23, 0x02, 0xc5, 0x03, 0x3e, 0x03, 0x35, 0x02, 0xc9, 0x02, 0xfe,
-
5963  0x02, 0xfd, 0x02, 0xff, 0x03, 0x00, 0x03, 0x05, 0x03, 0x04, 0x03, 0x03,
-
5964  0x03, 0x0b, 0x03, 0x12, 0x03, 0x0f, 0x03, 0x06, 0x02, 0xe5, 0x02, 0xec,
-
5965  0x02, 0xe9, 0x02, 0xe0, 0x03, 0x0c, 0x03, 0x13, 0x02, 0xe6, 0x02, 0xef,
-
5966  0x02, 0xa4, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0,
-
5967  0x02, 0xa1, 0x02, 0xa2, 0x02, 0xa3, 0x02, 0xac, 0x02, 0xab, 0x02, 0xaa,
-
5968  0x02, 0xa9, 0x02, 0xa8, 0x02, 0xa7, 0x02, 0xa6, 0x02, 0xad, 0x02, 0xb9,
-
5969  0x02, 0xba, 0x02, 0xbb, 0x02, 0xa5, 0x02, 0xc0, 0x02, 0xbd, 0x02, 0x9b,
-
5970  0x02, 0x98, 0x02, 0x9a, 0x40, 0x4a, 0x99, 0x98, 0x97, 0x96, 0x87, 0x86,
-
5971  0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,
-
5972  0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e,
-
5973  0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x62,
-
5974  0x61, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56,
-
5975  0x55, 0x54, 0x53, 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49,
-
5976  0x48, 0x47, 0x46, 0x28, 0x1f, 0x10, 0x0a, 0x09, 0x2c, 0x01, 0xb1, 0x0b,
-
5977  0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0x00, 0xb1, 0x0a, 0x0b,
-
5978  0x43, 0x23, 0x43, 0x0b, 0x2d, 0x2c, 0x01, 0xb0, 0x06, 0x43, 0xb0, 0x07,
-
5979  0x43, 0x65, 0x0a, 0x2d, 0x2c, 0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51,
-
5980  0x58, 0x21, 0x4b, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x1b,
-
5981  0x23, 0x21, 0xb0, 0x40, 0xb0, 0x04, 0x25, 0x45, 0xb0, 0x04, 0x25, 0x45,
-
5982  0x61, 0x64, 0x8a, 0x63, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59,
-
5983  0x59, 0x2d, 0x2c, 0x00, 0xb0, 0x07, 0x43, 0xb0, 0x06, 0x43, 0x0b, 0x2d,
-
5984  0x2c, 0x4b, 0x53, 0x23, 0x4b, 0x51, 0x5a, 0x58, 0x20, 0x45, 0x8a, 0x60,
-
5985  0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x54, 0x58, 0x20, 0x45,
-
5986  0x8a, 0x60, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x53, 0x23,
-
5987  0x4b, 0x51, 0x5a, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b,
-
5988  0x54, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43,
-
5989  0x54, 0x58, 0xb0, 0x46, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
-
5990  0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x47, 0x2b, 0x1b, 0x21, 0x21,
-
5991  0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x48, 0x2b,
-
5992  0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54,
-
5993  0x58, 0xb0, 0x49, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x23,
-
5994  0x20, 0xb0, 0x00, 0x50, 0x8a, 0x8a, 0x64, 0xb1, 0x00, 0x03, 0x25, 0x54,
-
5995  0x58, 0xb0, 0x40, 0x1b, 0xb1, 0x01, 0x03, 0x25, 0x54, 0x58, 0xb0, 0x05,
-
5996  0x43, 0x8b, 0x59, 0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb0, 0x62, 0x2b, 0x23,
-
5997  0x21, 0x23, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0xb1, 0x08, 0x00, 0x0c, 0x21,
-
5998  0x54, 0x60, 0x43, 0x2d, 0x2c, 0xb1, 0x0c, 0x00, 0x0c, 0x21, 0x54, 0x60,
-
5999  0x43, 0x2d, 0x2c, 0x01, 0x20, 0x47, 0xb0, 0x02, 0x43, 0x20, 0xb8, 0x10,
-
6000  0x00, 0x62, 0xb8, 0x10, 0x00, 0x63, 0x57, 0x23, 0xb8, 0x01, 0x00, 0x62,
-
6001  0xb8, 0x10, 0x00, 0x63, 0x57, 0x5a, 0x58, 0xb0, 0x20, 0x60, 0x66, 0x59,
-
6002  0x48, 0x2d, 0x2c, 0xb1, 0x00, 0x02, 0x25, 0xb0, 0x02, 0x25, 0xb0, 0x02,
-
6003  0x25, 0x53, 0xb8, 0x00, 0x35, 0x23, 0x78, 0xb0, 0x02, 0x25, 0xb0, 0x02,
-
6004  0x25, 0x60, 0xb0, 0x20, 0x63, 0x20, 0x20, 0xb0, 0x06, 0x25, 0x23, 0x62,
-
6005  0x50, 0x58, 0x8a, 0x21, 0xb0, 0x01, 0x60, 0x23, 0x1b, 0x20, 0x20, 0xb0,
-
6006  0x06, 0x25, 0x23, 0x62, 0x52, 0x58, 0x23, 0x21, 0xb0, 0x01, 0x61, 0x1b,
-
6007  0x8a, 0x21, 0x23, 0x21, 0x20, 0x59, 0x59, 0xb8, 0xff, 0xc1, 0x1c, 0x60,
-
6008  0xb0, 0x20, 0x63, 0x23, 0x21, 0x2d, 0x2c, 0xb1, 0x02, 0x00, 0x42, 0xb1,
-
6009  0x23, 0x01, 0x88, 0x51, 0xb1, 0x40, 0x01, 0x88, 0x53, 0x5a, 0x58, 0xb8,
-
6010  0x10, 0x00, 0xb0, 0x20, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x01, 0x02, 0x43,
-
6011  0x60, 0x42, 0x59, 0xb1, 0x24, 0x01, 0x88, 0x51, 0x58, 0xb8, 0x20, 0x00,
-
6012  0xb0, 0x40, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x02, 0x02, 0x43, 0x60, 0x42,
-
6013  0xb1, 0x24, 0x01, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x20, 0x02, 0x43, 0x60,
-
6014  0x42, 0x00, 0x4b, 0x01, 0x4b, 0x52, 0x58, 0xb2, 0x02, 0x08, 0x02, 0x43,
-
6015  0x60, 0x42, 0x59, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x54, 0x58,
-
6016  0xb2, 0x02, 0x04, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb8, 0x40, 0x00, 0xb0,
-
6017  0x80, 0x63, 0xb8, 0x01, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x08, 0x02,
-
6018  0x43, 0x60, 0x42, 0x59, 0xb9, 0x40, 0x00, 0x01, 0x00, 0x63, 0xb8, 0x02,
-
6019  0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x10, 0x02, 0x43, 0x60, 0x42, 0x59,
-
6020  0xb1, 0x26, 0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x02, 0x00, 0x63,
-
6021  0xb8, 0x04, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x40, 0x02, 0x43, 0x60,
-
6022  0x42, 0x59, 0xb9, 0x40, 0x00, 0x04, 0x00, 0x63, 0xb8, 0x08, 0x00, 0x88,
-
6023  0x54, 0x58, 0xb2, 0x02, 0x80, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb1, 0x28,
-
6024  0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x08, 0x00, 0x63, 0xb8, 0x10,
-
6025  0x00, 0x88, 0x54, 0x58, 0xb9, 0x00, 0x02, 0x01, 0x00, 0xb0, 0x02, 0x43,
-
6026  0x60, 0x42, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0xb1, 0x00, 0x02,
-
6027  0x43, 0x54, 0x58, 0x40, 0x0a, 0x05, 0x40, 0x08, 0x40, 0x09, 0x40, 0x0c,
-
6028  0x02, 0x0d, 0x02, 0x1b, 0xb1, 0x01, 0x02, 0x43, 0x54, 0x58, 0xb2, 0x05,
-
6029  0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0xb3, 0x0c, 0x01,
-
6030  0x0d, 0x01, 0x1b, 0xb1, 0x80, 0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40,
-
6031  0x08, 0xb8, 0x01, 0x80, 0xb1, 0x09, 0x40, 0x1b, 0xb8, 0x01, 0x00, 0xb0,
-
6032  0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40, 0x08, 0xba, 0x01, 0x80, 0x00,
-
6033  0x09, 0x01, 0x40, 0x1b, 0xb8, 0x01, 0x80, 0xb0, 0x02, 0x43, 0x52, 0x58,
-
6034  0xb2, 0x05, 0x40, 0x08, 0xb8, 0x02, 0x00, 0xb1, 0x09, 0x40, 0x1b, 0xb2,
-
6035  0x05, 0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0x59, 0x59,
-
6036  0x59, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x55, 0xb9, 0x40, 0x00, 0x02,
-
6037  0x00, 0x63, 0xb8, 0x04, 0x00, 0x88, 0x55, 0x5a, 0x58, 0xb3, 0x0c, 0x00,
-
6038  0x0d, 0x01, 0x1b, 0xb3, 0x0c, 0x00, 0x0d, 0x01, 0x59, 0x59, 0x59, 0x42,
-
6039  0x42, 0x42, 0x42, 0x42, 0x2d, 0x2c, 0x45, 0xb1, 0x02, 0x4e, 0x2b, 0x23,
-
6040  0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51, 0x58, 0x21, 0x4b, 0x51, 0x58,
-
6041  0xb0, 0x02, 0x25, 0x45, 0xb1, 0x01, 0x4e, 0x2b, 0x60, 0x59, 0x1b, 0x23,
-
6042  0x4b, 0x51, 0x58, 0xb0, 0x03, 0x25, 0x45, 0x20, 0x64, 0x8a, 0x63, 0xb0,
-
6043  0x40, 0x53, 0x58, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x1b, 0x21, 0x59, 0x1b,
-
6044  0x21, 0x59, 0x59, 0x44, 0x2d, 0x2c, 0x20, 0xb0, 0x00, 0x50, 0x20, 0x58,
-
6045  0x23, 0x65, 0x1b, 0x23, 0x59, 0xb1, 0x14, 0x14, 0x8a, 0x70, 0x45, 0xb1,
-
6046  0x10, 0x10, 0x43, 0x4b, 0x8a, 0x43, 0x51, 0x5a, 0x58, 0xb0, 0x40, 0x1b,
-
6047  0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb1, 0x61, 0x06, 0x26, 0x60, 0x2b, 0x8a,
-
6048  0x58, 0xb0, 0x05, 0x43, 0x8b, 0x59, 0x23, 0x58, 0x65, 0x59, 0x23, 0x10,
-
6049  0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x49, 0x63, 0x23, 0x46, 0x60, 0xb0,
-
6050  0x4f, 0x2b, 0x23, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0xb0, 0x03,
-
6051  0x25, 0x63, 0x56, 0x20, 0x60, 0xb0, 0x62, 0x60, 0x2b, 0xb0, 0x03, 0x25,
-
6052  0x20, 0x10, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61, 0x3a, 0x2d,
-
6053  0x2c, 0xb0, 0x00, 0x16, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01, 0x04, 0x25,
-
6054  0x01, 0x3e, 0x00, 0x3e, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0, 0x0a, 0x23,
-
6055  0x65, 0x42, 0xb0, 0x0b, 0x23, 0x42, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01,
-
6056  0x04, 0x25, 0x01, 0x3f, 0x00, 0x3f, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0,
-
6057  0x06, 0x23, 0x65, 0x42, 0xb0, 0x07, 0x23, 0x42, 0xb0, 0x01, 0x16, 0xb1,
-
6058  0x00, 0x02, 0x43, 0x54, 0x58, 0x45, 0x23, 0x45, 0x20, 0x18, 0x69, 0x8a,
-
6059  0x63, 0x23, 0x62, 0x20, 0x20, 0xb0, 0x40, 0x50, 0x58, 0x67, 0x1b, 0x66,
-
6060  0x59, 0x61, 0xb0, 0x20, 0x63, 0xb0, 0x40, 0x23, 0x61, 0xb0, 0x04, 0x23,
-
6061  0x42, 0x1b, 0xb1, 0x04, 0x00, 0x42, 0x21, 0x21, 0x59, 0x18, 0x01, 0x2d,
-
6062  0x2c, 0x20, 0x45, 0xb1, 0x00, 0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x4b, 0x51,
-
6063  0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x20, 0x45, 0xb1, 0x01, 0x4e,
-
6064  0x2b, 0x20, 0x8a, 0x8a, 0x44, 0x20, 0xb1, 0x40, 0x04, 0x26, 0x61, 0x63,
-
6065  0x61, 0xb1, 0x01, 0x4e, 0x2b, 0x44, 0x21, 0x1b, 0x23, 0x21, 0x8a, 0x45,
-
6066  0xb1, 0x01, 0x4e, 0x2b, 0x20, 0x8a, 0x23, 0x44, 0x44, 0x59, 0x2d, 0x2c,
-
6067  0x4b, 0x51, 0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x45, 0x20, 0x8a,
-
6068  0xb0, 0x40, 0x61, 0x63, 0x60, 0x1b, 0x23, 0x21, 0x45, 0x59, 0xb1, 0x01,
-
6069  0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x23, 0x45, 0x20, 0x8a, 0x45, 0x23, 0x61,
-
6070  0x20, 0x64, 0xb0, 0x40, 0x51, 0xb0, 0x04, 0x25, 0x20, 0xb0, 0x00, 0x53,
-
6071  0x23, 0xb0, 0x40, 0x51, 0x5a, 0x5a, 0xb1, 0x40, 0x4f, 0x2b, 0x54, 0x5a,
-
6072  0x58, 0x8a, 0x0c, 0x64, 0x23, 0x64, 0x23, 0x53, 0x58, 0xb1, 0x40, 0x40,
-
6073  0x8a, 0x61, 0x20, 0x63, 0x61, 0x1b, 0x20, 0x63, 0x59, 0x1b, 0x8a, 0x59,
-
6074  0x63, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x44, 0x2d, 0x2c, 0x01, 0x2d, 0x2c,
-
6075  0x00, 0x2d, 0x2c, 0x05, 0xb1, 0x0b, 0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a,
-
6076  0x2d, 0x2c, 0xb1, 0x0a, 0x0b, 0x43, 0x23, 0x43, 0x0b, 0x02, 0x2d, 0x2c,
-
6077  0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62,
-
6078  0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0xb0, 0x20, 0x60,
-
6079  0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62, 0x2d,
-
6080  0x2c, 0xb0, 0x02, 0x25, 0x63, 0x67, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00,
-
6081  0x62, 0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0,
-
6082  0x20, 0x60, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62,
-
6083  0x2d, 0x2c, 0x23, 0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x4a,
-
6084  0xb1, 0x01, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45, 0x64,
-
6085  0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03, 0x43,
-
6086  0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0xb0,
-
6087  0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45,
-
6088  0x64, 0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03,
-
6089  0x43, 0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x01, 0x4e, 0x2b, 0x23,
-
6090  0xb0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x03, 0x25,
-
6091  0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0x20, 0xb0,
-
6092  0x03, 0x25, 0x4a, 0xb1, 0x01, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c,
-
6093  0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x67, 0x2b, 0x8a, 0x10,
-
6094  0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x68,
-
6095  0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03,
-
6096  0x25, 0x46, 0x60, 0xb0, 0x04, 0x25, 0x2e, 0xb0, 0x04, 0x25, 0xb0, 0x04,
-
6097  0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a,
-
6098  0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03, 0x25,
-
6099  0x46, 0x60, 0x61, 0xb0, 0x80, 0x62, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a,
-
6100  0x23, 0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x47, 0xb0,
-
6101  0x03, 0x25, 0x47, 0x60, 0xb0, 0x05, 0x25, 0x47, 0xb0, 0x80, 0x63, 0x61,
-
6102  0xb0, 0x02, 0x25, 0xb0, 0x06, 0x25, 0x49, 0x63, 0x23, 0xb0, 0x05, 0x25,
-
6103  0x4a, 0xb0, 0x80, 0x63, 0x20, 0x58, 0x62, 0x1b, 0x21, 0x59, 0xb0, 0x04,
-
6104  0x26, 0x46, 0x60, 0x8a, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61,
-
6105  0x2d, 0x2c, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0,
-
6106  0x04, 0x26, 0xb0, 0x6e, 0x2b, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a, 0x23,
-
6107  0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0x20, 0xb0, 0x01, 0x54, 0x58,
-
6108  0x21, 0xb0, 0x02, 0x25, 0xb1, 0x02, 0x4e, 0x2b, 0xb0, 0x80, 0x50, 0x20,
-
6109  0x60, 0x59, 0x20, 0x60, 0x60, 0x20, 0xb0, 0x01, 0x51, 0x58, 0x21, 0x21,
-
6110  0x1b, 0x20, 0xb0, 0x05, 0x51, 0x58, 0x21, 0x20, 0x66, 0x61, 0xb0, 0x40,
-
6111  0x23, 0x61, 0xb1, 0x00, 0x03, 0x25, 0x50, 0xb0, 0x03, 0x25, 0xb0, 0x03,
-
6112  0x25, 0x50, 0x5a, 0x58, 0x20, 0xb0, 0x03, 0x25, 0x61, 0x8a, 0x53, 0x58,
-
6113  0x21, 0xb0, 0x00, 0x59, 0x1b, 0x21, 0x59, 0x1b, 0xb0, 0x07, 0x54, 0x58,
-
6114  0x20, 0x66, 0x61, 0x65, 0x23, 0x21, 0x1b, 0x21, 0x21, 0xb0, 0x00, 0x59,
-
6115  0x59, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0xb0,
-
6116  0x04, 0x25, 0x4a, 0xb0, 0x00, 0x53, 0x58, 0xb0, 0x00, 0x1b, 0x8a, 0x8a,
-
6117  0x23, 0x8a, 0xb0, 0x01, 0x59, 0xb0, 0x04, 0x25, 0x46, 0x20, 0x66, 0x61,
-
6118  0x20, 0xb0, 0x05, 0x26, 0xb0, 0x06, 0x26, 0x49, 0xb0, 0x05, 0x26, 0xb0,
-
6119  0x05, 0x26, 0xb0, 0x70, 0x2b, 0x23, 0x61, 0x65, 0xb0, 0x20, 0x60, 0x20,
-
6120  0x66, 0x61, 0xb0, 0x20, 0x61, 0x65, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x46,
-
6121  0x20, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb1, 0x02, 0x4e, 0x2b,
-
6122  0x1b, 0x45, 0x23, 0x21, 0x59, 0x61, 0x65, 0xb0, 0x02, 0x25, 0x10, 0x3b,
-
6123  0x2d, 0x2c, 0xb0, 0x04, 0x26, 0x20, 0xb8, 0x02, 0x00, 0x62, 0x20, 0xb8,
-
6124  0x02, 0x00, 0x63, 0x8a, 0x23, 0x61, 0x20, 0xb0, 0x5d, 0x60, 0x2b, 0xb0,
-
6125  0x05, 0x25, 0x11, 0x8a, 0x12, 0x8a, 0x20, 0x39, 0x8a, 0x58, 0xb9, 0x00,
-
6126  0x5d, 0x10, 0x00, 0xb0, 0x04, 0x26, 0x63, 0x56, 0x60, 0x2b, 0x23, 0x21,
-
6127  0x20, 0x10, 0x20, 0x46, 0x20, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0x61, 0x1b,
-
6128  0x23, 0x21, 0x20, 0x8a, 0x20, 0x10, 0x49, 0xb1, 0x02, 0x4e, 0x2b, 0x59,
-
6129  0x3b, 0x2d, 0x2c, 0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x09, 0x25, 0x63,
-
6130  0x56, 0x60, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26,
-
6131  0xb0, 0x6d, 0x2b, 0xb1, 0x5d, 0x07, 0x25, 0x60, 0x2b, 0xb0, 0x05, 0x25,
-
6132  0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x6f, 0x2b,
-
6133  0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x08, 0x26, 0x63, 0x56, 0x60, 0x2b,
-
6134  0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x50, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
-
6135  0x05, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x05, 0x25, 0xb0,
-
6136  0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0xb0, 0x00, 0x52, 0xb0, 0x02, 0x25,
-
6137  0xb0, 0x01, 0x52, 0x5a, 0x58, 0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49,
-
6138  0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20, 0xb0, 0x40, 0x52,
-
6139  0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0x20, 0xb0, 0x02, 0x54, 0x58,
-
6140  0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
-
6141  0x49, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6142  0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49, 0xb0, 0x02, 0x17, 0x38, 0x59,
-
6143  0x59, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb9,
-
6144  0x00, 0x5d, 0x10, 0x00, 0xb0, 0x0b, 0x25, 0x63, 0x56, 0x60, 0x2b, 0xb0,
-
6145  0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0,
-
6146  0x0c, 0x25, 0xb0, 0x0c, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x08, 0x25, 0xb0,
-
6147  0x6e, 0x2b, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
-
6148  0xb0, 0x07, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6149  0xb0, 0x04, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x50, 0x2b, 0xb0, 0x06, 0x25,
-
6150  0xb0, 0x06, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x05, 0x25,
-
6151  0xb0, 0x05, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x02, 0x17, 0x38, 0x20, 0xb0,
-
6152  0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0x60,
-
6153  0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x04, 0x25, 0x65, 0xb0, 0x02,
-
6154  0x17, 0x38, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x60, 0x20, 0xb0, 0x40,
-
6155  0x53, 0x58, 0x21, 0xb0, 0x40, 0x61, 0x23, 0xb0, 0x40, 0x61, 0x23, 0x1b,
-
6156  0xb8, 0xff, 0xc0, 0x50, 0x58, 0xb0, 0x40, 0x60, 0x23, 0xb0, 0x40, 0x60,
-
6157  0x23, 0x59, 0x59, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x04, 0x26,
-
6158  0xb0, 0x02, 0x17, 0x38, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0x8a, 0xb0,
-
6159  0x02, 0x17, 0x38, 0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06, 0x25, 0xb0,
-
6160  0x08, 0x25, 0x49, 0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20,
-
6161  0xb0, 0x40, 0x52, 0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06,
-
6162  0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0b,
-
6163  0x25, 0xb0, 0x0b, 0x25, 0x49, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x06, 0x25,
-
6164  0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25,
-
6165  0xb0, 0x0a, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x04, 0x17,
-
6166  0x38, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x07,
-
6167  0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0x1b,
-
6168  0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb8, 0xff, 0xc0, 0xb0, 0x02, 0x17,
-
6169  0x38, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,
-
6170  0x2d, 0x2c, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x87, 0xb0, 0x03, 0x25,
-
6171  0xb0, 0x03, 0x25, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x65,
-
6172  0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x64, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6173  0x06, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0x20, 0x20, 0x63, 0xb0,
-
6174  0x03, 0x25, 0x20, 0x63, 0x51, 0xb1, 0x00, 0x03, 0x25, 0x54, 0x5b, 0x58,
-
6175  0x21, 0x21, 0x23, 0x21, 0x07, 0x1b, 0x20, 0x63, 0xb0, 0x02, 0x25, 0x20,
-
6176  0x63, 0x61, 0x20, 0xb0, 0x53, 0x2b, 0x8a, 0x63, 0xb0, 0x05, 0x25, 0xb0,
-
6177  0x05, 0x25, 0x87, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x4a, 0xb0, 0x00,
-
6178  0x50, 0x58, 0x65, 0x59, 0xb0, 0x04, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00,
-
6179  0x46, 0xb0, 0x05, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00, 0x46, 0xb0, 0x00,
-
6180  0x16, 0x00, 0xb0, 0x00, 0x23, 0x48, 0x01, 0xb0, 0x00, 0x23, 0x48, 0x00,
-
6181  0x20, 0xb0, 0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x01, 0x20, 0xb0,
-
6182  0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x23, 0xb2, 0x02, 0x00, 0x01,
-
6183  0x08, 0x23, 0x38, 0xb2, 0x02, 0x00, 0x01, 0x09, 0x23, 0x38, 0xb1, 0x02,
-
6184  0x01, 0x07, 0xb0, 0x01, 0x16, 0x59, 0x2d, 0x2c, 0x23, 0x10, 0x0d, 0x0c,
-
6185  0x8a, 0x63, 0x23, 0x8a, 0x63, 0x60, 0x64, 0xb9, 0x40, 0x00, 0x04, 0x00,
-
6186  0x63, 0x50, 0x58, 0xb0, 0x00, 0x38, 0x1b, 0x3c, 0x59, 0x2d, 0x2c, 0xb0,
-
6187  0x06, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x07, 0x26, 0xb0,
-
6188  0x76, 0x2b, 0x23, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0,
-
6189  0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
-
6190  0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b, 0xb0,
-
6191  0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d, 0x2c,
-
6192  0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26,
-
6193  0xb0, 0x76, 0x2b, 0x8a, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59,
-
6194  0xb0, 0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25,
-
6195  0xb0, 0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b,
-
6196  0x08, 0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25,
-
6197  0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26, 0xb0, 0x76, 0x2b, 0x8a, 0x8a, 0x08,
-
6198  0xb0, 0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25,
-
6199  0xb0, 0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b,
-
6200  0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d,
-
6201  0x2c, 0xb0, 0x08, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x09,
-
6202  0x26, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0x08, 0xb0,
-
6203  0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25, 0xb0,
-
6204  0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b, 0x08,
-
6205  0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0x03, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25,
-
6206  0x4a, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x4a, 0x02, 0xb0, 0x05, 0x25,
-
6207  0xb0, 0x05, 0x26, 0x4a, 0xb0, 0x05, 0x26, 0xb0, 0x05, 0x26, 0x4a, 0xb0,
-
6208  0x04, 0x26, 0x63, 0x8a, 0x8a, 0x63, 0x61, 0x2d, 0x2c, 0xb1, 0x5d, 0x0e,
-
6209  0x25, 0x60, 0x2b, 0xb0, 0x0c, 0x26, 0x11, 0xb0, 0x05, 0x26, 0x12, 0xb0,
-
6210  0x0a, 0x25, 0x39, 0xb0, 0x07, 0x25, 0x39, 0xb0, 0x0a, 0x25, 0xb0, 0x0a,
-
6211  0x25, 0xb0, 0x09, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00, 0x50, 0xb0, 0x0b,
-
6212  0x25, 0xb0, 0x08, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00,
-
6213  0x50, 0x54, 0x58, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0x87, 0xb0, 0x04,
-
6214  0x25, 0xb0, 0x04, 0x25, 0x0b, 0xb0, 0x0a, 0x25, 0x10, 0xb0, 0x09, 0x25,
-
6215  0xc1, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0x10,
-
6216  0xb0, 0x06, 0x25, 0xc1, 0x1b, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0xb0,
-
6217  0x0b, 0x25, 0xb8, 0xff, 0xff, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x25, 0xb0,
-
6218  0x04, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x77, 0x2b,
-
6219  0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb8, 0xff, 0xff,
-
6220  0xb0, 0x76, 0x2b, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x0a,
-
6221  0x25, 0xb0, 0x07, 0x25, 0xb0, 0x77, 0x2b, 0x59, 0xb0, 0x0a, 0x25, 0x46,
-
6222  0xb0, 0x0a, 0x25, 0x46, 0x60, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25,
-
6223  0x46, 0x60, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0x0b, 0xb0, 0x0c, 0x25,
-
6224  0xb0, 0x0c, 0x25, 0xb0, 0x0c, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21,
-
6225  0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04,
-
6226  0x25, 0x0b, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x26, 0x20,
-
6227  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
-
6228  0x23, 0xb0, 0x0a, 0x25, 0x46, 0xb0, 0x0a, 0x25, 0x46, 0x60, 0x61, 0xb0,
-
6229  0x20, 0x63, 0x23, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25, 0x46, 0x60,
-
6230  0x61, 0xb0, 0x20, 0x63, 0xb1, 0x01, 0x0c, 0x25, 0x54, 0x58, 0x04, 0x1b,
-
6231  0x05, 0x59, 0xb0, 0x0a, 0x26, 0x20, 0x10, 0xb0, 0x03, 0x25, 0x3a, 0xb0,
-
6232  0x06, 0x26, 0xb0, 0x06, 0x26, 0x0b, 0xb0, 0x07, 0x26, 0x20, 0x10, 0x8a,
-
6233  0x3a, 0xb1, 0x01, 0x07, 0x26, 0x54, 0x58, 0x04, 0x1b, 0x05, 0x59, 0xb0,
-
6234  0x05, 0x26, 0x20, 0x10, 0xb0, 0x02, 0x25, 0x3a, 0x8a, 0x8a, 0x0b, 0x23,
-
6235  0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0xb0, 0x01, 0x54, 0x58, 0xb9,
-
6236  0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0x8a,
-
6237  0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
-
6238  0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x8a, 0x8a, 0x08,
-
6239  0x0d, 0x8a, 0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b,
-
6240  0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x08,
-
6241  0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
-
6242  0x00, 0xb0, 0x00, 0x59, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0xb0, 0x04,
-
6243  0x26, 0xb0, 0x04, 0x26, 0x08, 0x0d, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
-
6244  0x08, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x20, 0x01, 0x46, 0x23, 0x00,
-
6245  0x46, 0xb0, 0x0a, 0x43, 0xb0, 0x0b, 0x43, 0x8a, 0x63, 0x23, 0x62, 0x61,
-
6246  0x2d, 0x2c, 0xb0, 0x09, 0x2b, 0xb0, 0x06, 0x25, 0x2e, 0xb0, 0x05, 0x25,
-
6247  0x7d, 0xc5, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0x20,
-
6248  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
-
6249  0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x20, 0xb0, 0x00,
-
6250  0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0x18, 0xb0,
-
6251  0x08, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25, 0xb0,
-
6252  0x6f, 0x2b, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x26, 0x20,
-
6253  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b,
-
6254  0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00,
-
6255  0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x54, 0x58,
-
6256  0x7d, 0xb0, 0x04, 0x25, 0x10, 0xb0, 0x03, 0x25, 0xc5, 0xb0, 0x02, 0x25,
-
6257  0x10, 0xb0, 0x01, 0x25, 0xc5, 0xb0, 0x05, 0x26, 0x21, 0xb0, 0x05, 0x26,
-
6258  0x21, 0x1b, 0xb0, 0x06, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0xb0,
-
6259  0x08, 0x26, 0xb0, 0x6f, 0x2b, 0x59, 0xb1, 0x00, 0x02, 0x43, 0x54, 0x58,
-
6260  0x7d, 0xb0, 0x02, 0x25, 0xb0, 0x82, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x82,
-
6261  0x2b, 0x20, 0x20, 0x69, 0x61, 0xb0, 0x04, 0x43, 0x01, 0x23, 0x61, 0xb0,
-
6262  0x60, 0x60, 0x20, 0x69, 0x61, 0xb0, 0x20, 0x61, 0x20, 0xb0, 0x08, 0x26,
-
6263  0xb0, 0x08, 0x26, 0x8a, 0xb0, 0x02, 0x17, 0x38, 0x8a, 0x8a, 0x61, 0x20,
-
6264  0x69, 0x61, 0x61, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0x21, 0x21, 0x21, 0x21,
-
6265  0x59, 0x18, 0x2d, 0x2c, 0x4b, 0x52, 0xb1, 0x01, 0x02, 0x43, 0x53, 0x5a,
-
6266  0x58, 0x23, 0x10, 0x20, 0x01, 0x3c, 0x00, 0x3c, 0x1b, 0x21, 0x21, 0x59,
-
6267  0x2d, 0x2c, 0x23, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x53, 0x58, 0x20,
-
6268  0xb0, 0x04, 0x25, 0x58, 0x3c, 0x1b, 0x39, 0x59, 0xb0, 0x01, 0x60, 0xb8,
-
6269  0xff, 0xe9, 0x1c, 0x59, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb0, 0x02, 0x25,
-
6270  0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x8a, 0x20, 0x20, 0x10, 0x11, 0xb0,
-
6271  0x01, 0x60, 0x8a, 0x20, 0x12, 0xb0, 0x01, 0x61, 0xb0, 0x85, 0x2b, 0x2d,
-
6272  0x2c, 0xb0, 0x04, 0x25, 0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x23, 0x20,
-
6273  0x12, 0xb0, 0x01, 0x61, 0x23, 0x20, 0xb0, 0x06, 0x26, 0x20, 0x20, 0x10,
-
6274  0x11, 0xb0, 0x01, 0x60, 0xb0, 0x06, 0x26, 0xb0, 0x85, 0x2b, 0x8a, 0x8a,
-
6275  0xb0, 0x85, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0x0c, 0x02,
-
6276  0x8a, 0x4b, 0x53, 0xb0, 0x04, 0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38,
-
6277  0x1b, 0x0a, 0x21, 0x21, 0x59, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
-
6278  0x2c, 0xb0, 0x98, 0x2b, 0x58, 0x0c, 0x02, 0x8a, 0x4b, 0x53, 0xb0, 0x04,
-
6279  0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38, 0x1b, 0x0a, 0x21, 0x21, 0x59,
-
6280  0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
-
6281  0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x68, 0x23, 0x78, 0x21, 0xb1, 0x00,
-
6282  0x02, 0x43, 0xb8, 0x00, 0x5e, 0x23, 0x79, 0x21, 0xb0, 0x02, 0x43, 0x23,
-
6283  0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
-
6284  0x4d, 0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10,
-
6285  0x00, 0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0x21, 0x21,
-
6286  0x21, 0xb0, 0x01, 0xb8, 0x00, 0x30, 0x1c, 0x59, 0x1b, 0x21, 0x59, 0xb0,
-
6287  0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
-
6288  0x1d, 0x1c, 0x59, 0x23, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
-
6289  0x21, 0xb0, 0x00, 0xb8, 0x00, 0x0c, 0x1c, 0x59, 0x8a, 0xb0, 0x01, 0x61,
-
6290  0xb8, 0xff, 0xab, 0x1c, 0x23, 0x21, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
-
6291  0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x81, 0x23, 0x78, 0x21, 0xb1, 0x00,
-
6292  0x02, 0x43, 0xb8, 0x00, 0x77, 0x23, 0x79, 0x21, 0xb1, 0x00, 0x02, 0x43,
-
6293  0x8a, 0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x67,
-
6294  0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10, 0x00,
-
6295  0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0xb0, 0x04, 0x26,
-
6296  0xb0, 0x01, 0x5b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
-
6297  0x1b, 0x21, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x38, 0xb0, 0x00, 0x23, 0x1c,
-
6298  0x59, 0x1b, 0x21, 0x59, 0xb0, 0x04, 0x26, 0x23, 0xb0, 0x80, 0x62, 0x20,
-
6299  0x5c, 0x58, 0x8a, 0x5c, 0x8a, 0x5a, 0x23, 0x21, 0x23, 0x21, 0xb8, 0x00,
-
6300  0x1e, 0x1c, 0x59, 0x8a, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
-
6301  0x23, 0x21, 0xb8, 0x00, 0x0e, 0x1c, 0x59, 0xb0, 0x04, 0x26, 0xb0, 0x01,
-
6302  0x61, 0xb8, 0xff, 0x93, 0x1c, 0x23, 0x21, 0x2d, 0x40, 0xff, 0x76, 0x34,
-
6303  0x22, 0x1f, 0x75, 0x34, 0x48, 0x1f, 0x74, 0x34, 0x64, 0x1f, 0x73, 0x34,
-
6304  0xfa, 0x1f, 0x72, 0x34, 0xff, 0x1f, 0x71, 0x34, 0xa7, 0x1f, 0x70, 0x33,
-
6305  0xff, 0x1f, 0x6f, 0x33, 0xfa, 0x1f, 0x6e, 0x32, 0x48, 0x1f, 0x6d, 0x32,
-
6306  0xa7, 0x1f, 0x6c, 0x32, 0xff, 0x1f, 0x6b, 0x31, 0xff, 0x1f, 0x6a, 0x30,
-
6307  0xff, 0x1f, 0x69, 0x2f, 0xff, 0x1f, 0x68, 0x2f, 0xfa, 0x1f, 0x67, 0x2e,
-
6308  0x7d, 0x1f, 0x66, 0x2e, 0xfa, 0x1f, 0x65, 0x2e, 0xff, 0x1f, 0x64, 0x2e,
-
6309  0x7d, 0x1f, 0x63, 0x2e, 0x3f, 0x1f, 0x62, 0x2d, 0xff, 0x1f, 0x61, 0x2c,
-
6310  0xff, 0x1f, 0x60, 0x2c, 0x64, 0x1f, 0x5f, 0x2b, 0x64, 0x1f, 0x5e, 0x2b,
-
6311  0xfa, 0x1f, 0x5d, 0x2b, 0xff, 0x1f, 0x5c, 0x2b, 0xfa, 0x1f, 0x5b, 0x2a,
-
6312  0xfa, 0x1f, 0x5a, 0x2a, 0xff, 0x1f, 0x59, 0x2a, 0xa7, 0x1f, 0x58, 0x29,
-
6313  0xff, 0x1f, 0x57, 0x26, 0x32, 0x1f, 0x56, 0x28, 0x7d, 0x1f, 0x55, 0x28,
-
6314  0xff, 0x1f, 0x54, 0x26, 0xff, 0x1f, 0x53, 0x26, 0xfa, 0x1f, 0x52, 0x27,
-
6315  0xff, 0x1f, 0x51, 0x27, 0xfa, 0x1f, 0x50, 0x26, 0x38, 0x1f, 0x4f, 0x25,
-
6316  0xff, 0x1f, 0x4e, 0x25, 0x54, 0x1f, 0x4d, 0x24, 0x7d, 0x1f, 0x4c, 0x24,
-
6317  0xff, 0x1f, 0x4b, 0x24, 0x7d, 0x1f, 0x4a, 0x23, 0xa7, 0x1f, 0x49, 0x23,
-
6318  0xff, 0x1f, 0x48, 0x23, 0xfa, 0x1f, 0x47, 0x23, 0x54, 0x1f, 0x46, 0x22,
-
6319  0xff, 0x1f, 0x45, 0x1f, 0x20, 0x1f, 0x44, 0x21, 0xff, 0x1f, 0x43, 0x1f,
-
6320  0xa7, 0x1f, 0x42, 0x1f, 0xff, 0x1f, 0x41, 0x1f, 0xa7, 0x1f, 0x40, 0x20,
-
6321  0xfa, 0x1f, 0x3f, 0x20, 0xff, 0x1f, 0x3e, 0x20, 0x7d, 0x1f, 0x3d, 0x20,
-
6322  0x54, 0x1f, 0x3c, 0x1e, 0xff, 0x1f, 0x3b, 0x1d, 0x64, 0x1f, 0x3a, 0x1d,
-
6323  0xff, 0x1f, 0x39, 0x1d, 0xfa, 0x1f, 0x38, 0x1d, 0x54, 0x1f, 0x37, 0x1c,
-
6324  0xfa, 0x40, 0xdf, 0x1f, 0x36, 0x1c, 0xff, 0x1f, 0x35, 0x1c, 0xfa, 0x1f,
-
6325  0x32, 0x31, 0x7d, 0x1f, 0x28, 0x26, 0xa7, 0x1f, 0x27, 0x26, 0x64, 0x1f,
-
6326  0x26, 0x1b, 0x1b, 0x19, 0x5c, 0x25, 0x1b, 0x38, 0x1f, 0x24, 0x04, 0x1a,
-
6327  0x19, 0x5c, 0x23, 0x19, 0xff, 0x1f, 0x22, 0x09, 0x1a, 0x19, 0x5c, 0x21,
-
6328  0x1f, 0x3f, 0x1f, 0x20, 0x1f, 0x3f, 0x1f, 0x1f, 0x35, 0x18, 0x16, 0x5c,
-
6329  0x1e, 0x18, 0x2a, 0x1f, 0x1d, 0x17, 0xff, 0x1f, 0x1c, 0x16, 0xa7, 0x1f,
-
6330  0x1b, 0x33, 0x19, 0x24, 0x5b, 0x18, 0x3a, 0x16, 0x4f, 0x5b, 0x1a, 0x33,
-
6331  0x19, 0x24, 0x5b, 0x17, 0x3a, 0x16, 0x4f, 0x5b, 0x15, 0x19, 0x45, 0x16,
-
6332  0x61, 0x5a, 0x13, 0x32, 0x12, 0x55, 0x11, 0x32, 0x10, 0x55, 0x12, 0x59,
-
6333  0x10, 0x59, 0x0d, 0x2e, 0x0c, 0x55, 0x05, 0x7d, 0x04, 0x55, 0x0c, 0x59,
-
6334  0x04, 0x59, 0x0f, 0x04, 0x1f, 0x04, 0x3f, 0x04, 0x4f, 0x04, 0x7f, 0x04,
-
6335  0x9f, 0x04, 0xef, 0x04, 0x07, 0x0f, 0x64, 0x0e, 0x55, 0x0b, 0x3f, 0x0a,
-
6336  0x55, 0x07, 0x32, 0x06, 0x55, 0x01, 0x54, 0x00, 0x55, 0x0e, 0x59, 0x6f,
-
6337  0x0e, 0x01, 0x0a, 0x59, 0x06, 0x59, 0x0f, 0x06, 0x3f, 0x06, 0x4f, 0x06,
-
6338  0x5f, 0x06, 0x7f, 0x06, 0x9f, 0x06, 0x06, 0x00, 0x59, 0x0f, 0x00, 0x4f,
-
6339  0x00, 0x5f, 0x00, 0x9f, 0x00, 0xef, 0x00, 0x05, 0x09, 0x2e, 0x08, 0x55,
-
6340  0x03, 0x7d, 0x02, 0x55, 0x08, 0x59, 0x02, 0x59, 0xef, 0x02, 0x01, 0xd0,
-
6341  0x02, 0x01, 0x0f, 0x02, 0x1f, 0x02, 0x3f, 0x02, 0x4f, 0x02, 0x7f, 0x02,
-
6342  0x9f, 0x02, 0x06, 0x10, 0x00, 0x03, 0x40, 0x40, 0x05, 0x01, 0xb8, 0x01,
-
6343  0x90, 0xb0, 0x54, 0x2b, 0x4b, 0xb8, 0x07, 0xff, 0x52, 0x4b, 0xb0, 0x09,
-
6344  0x50, 0x5b, 0xb0, 0x01, 0x88, 0xb0, 0x25, 0x53, 0xb0, 0x01, 0x88, 0xb0,
-
6345  0x40, 0x51, 0x5a, 0xb0, 0x06, 0x88, 0xb0, 0x00, 0x55, 0x5a, 0x5b, 0x58,
-
6346  0xb1, 0x01, 0x01, 0x8e, 0x59, 0x85, 0x8d, 0x8d, 0x00, 0x1d, 0x42, 0x4b,
-
6347  0xb0, 0x90, 0x53, 0x58, 0xb2, 0x03, 0x00, 0x00, 0x1d, 0x42, 0x59, 0xb1,
-
6348  0x02, 0x02, 0x43, 0x51, 0x58, 0xb1, 0x04, 0x03, 0x8e, 0x59, 0x42, 0x73,
-
6349  0x73, 0x73, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x73, 0x00, 0x2b, 0x73,
-
6350  0x00, 0x2b, 0x00, 0x2b, 0x73, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x73,
-
6351  0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
-
6352  0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b,
-
6353  0x00, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x00,
-
6354  0x2b, 0x00, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b,
-
6355  0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
-
6356  0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b,
-
6357  0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x01,
-
6358  0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
-
6359  0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
-
6360  0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x18, 0x00,
-
6361  0x02, 0x99, 0x00, 0x06, 0x02, 0x6f, 0x00, 0x04, 0x02, 0x6f, 0x00, 0x04,
-
6362  0x01, 0xc9, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xf5, 0x00, 0x00, 0xff, 0xf8,
-
6363  0x00, 0x00, 0xff, 0xf5, 0xff, 0x59, 0xff, 0xfb, 0x02, 0x70, 0x00, 0x0a,
-
6364  0x00, 0x00, 0xff, 0xf6, 0x00, 0x00, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3d,
-
6365  0x00, 0x3d, 0x00, 0x48, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x3d,
-
6366  0x00, 0x31, 0x00, 0x42, 0x00, 0x3b, 0x00, 0x4b, 0x00, 0x3c, 0x00, 0x48,
-
6367  0x00, 0x3b, 0x00, 0x31, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x3a,
-
6368  0x00, 0x47, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x4a, 0x00, 0x43, 0x00, 0x4c,
-
6369  0x00, 0x2d, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43,
-
6370  0x00, 0x45, 0x00, 0x48, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x42,
-
6371  0x00, 0x31, 0x00, 0x35, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x40,
-
6372  0x00, 0x44, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x3c, 0x00, 0x42,
-
6373  0x00, 0x46, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f,
-
6374  0x00, 0x2b, 0x00, 0x31, 0x00, 0x37, 0x00, 0x39, 0x00, 0x3b, 0x00, 0x3e,
-
6375  0x00, 0x40, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x3a, 0x00, 0x44,
-
6376  0x00, 0x48, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x42,
-
6377  0x00, 0x3a, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43,
-
6378  0x00, 0x45, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x2d, 0x00, 0x38,
-
6379  0x00, 0x3d, 0x00, 0x40, 0x00, 0x43, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x37,
-
6380  0x00, 0x3a, 0x00, 0x3c, 0x00, 0x3f, 0x00, 0x42, 0x00, 0x4a, 0x01, 0x8b,
-
6381  0x00, 0x00, 0x00, 0x13, 0x00, 0xea, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6382  0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6383  0x00, 0x01, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6384  0x00, 0x02, 0x00, 0x0e, 0x00, 0xd8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6385  0x00, 0x03, 0x00, 0x3a, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6386  0x00, 0x04, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6387  0x00, 0x05, 0x00, 0x1a, 0x01, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6388  0x00, 0x06, 0x00, 0x24, 0x01, 0x3a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6389  0x00, 0x08, 0x00, 0x36, 0x01, 0x5e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6390  0x00, 0x09, 0x00, 0x48, 0x01, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6391  0x00, 0x0b, 0x00, 0x8e, 0x01, 0xdc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6392  0x00, 0x0c, 0x00, 0x92, 0x02, 0x6a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6393  0x00, 0x0d, 0x01, 0x20, 0x02, 0xfc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6394  0x00, 0x0e, 0x00, 0x34, 0x04, 0x1c, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6395  0x00, 0x10, 0x00, 0x16, 0x04, 0x50, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6396  0x00, 0x11, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6397  0x01, 0x00, 0x00, 0x0c, 0x04, 0x72, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6398  0x01, 0x01, 0x00, 0x0a, 0x04, 0x7e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6399  0x01, 0x50, 0x00, 0x0c, 0x04, 0x88, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6400  0x01, 0x58, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x70,
-
6401  0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74,
-
6402  0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x36, 0x00, 0x20,
-
6403  0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6e,
-
6404  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
-
6405  0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x50, 0x00, 0x72,
-
6406  0x00, 0x6f, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20,
-
6407  0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6f, 0x00, 0x72,
-
6408  0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74,
-
6409  0x00, 0x70, 0x00, 0x73, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x67,
-
6410  0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2e,
-
6411  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, 0x00, 0x63, 0x00, 0x79,
-
6412  0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x74, 0x00, 0x79,
-
6413  0x00, 0x70, 0x00, 0x65, 0x00, 0x2f, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6414  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6415  0x00, 0x74, 0x00, 0x61, 0x00, 0x29, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6416  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6417  0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
-
6418  0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67,
-
6419  0x00, 0x75, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x33, 0x00, 0x2e,
-
6420  0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x59,
-
6421  0x00, 0x52, 0x00, 0x45, 0x00, 0x3b, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6422  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6423  0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
-
6424  0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72,
-
6425  0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x33,
-
6426  0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x49, 0x00, 0x6e,
-
6427  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
-
6428  0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65,
-
6429  0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x61,
-
6430  0x00, 0x70, 0x00, 0x68, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x65, 0x00, 0x76,
-
6431  0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x43,
-
6432  0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c,
-
6433  0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c,
-
6434  0x00, 0x65, 0x00, 0x52, 0x00, 0x61, 0x00, 0x70, 0x00, 0x68, 0x00, 0x20,
-
6435  0x00, 0x4c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
-
6436  0x00, 0x2c, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65,
-
6437  0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x42, 0x00, 0x72,
-
6438  0x00, 0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20,
-
6439  0x00, 0x53, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x73, 0x00, 0x6f,
-
6440  0x00, 0x6e, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6441  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
-
6442  0x00, 0x6c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
-
6443  0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c,
-
6444  0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6445  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
-
6446  0x00, 0x63, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c,
-
6447  0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c,
-
6448  0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6449  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74,
-
6450  0x00, 0x73, 0x00, 0x2e, 0x00, 0x67, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67,
-
6451  0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d,
-
6452  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6453  0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x6c,
-
6454  0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2e,
-
6455  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
-
6456  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6457  0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x63,
-
6458  0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2e,
-
6459  0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
-
6460  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6461  0x00, 0x2f, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x73, 0x00, 0x66,
-
6462  0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69,
-
6463  0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f,
-
6464  0x00, 0x6d, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20,
-
6465  0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53,
-
6466  0x00, 0x6f, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72,
-
6467  0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
-
6468  0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
-
6469  0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65,
-
6470  0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20,
-
6471  0x00, 0x53, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x20, 0x00, 0x4f, 0x00, 0x70,
-
6472  0x00, 0x65, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e,
-
6473  0x00, 0x74, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65,
-
6474  0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56,
-
6475  0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e,
-
6476  0x00, 0x20, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x20,
-
6477  0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
-
6478  0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
-
6479  0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76,
-
6480  0x00, 0x61, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6c,
-
6481  0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68,
-
6482  0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51,
-
6483  0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3a, 0x00, 0x20, 0x00, 0x68,
-
6484  0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f,
-
6485  0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74,
-
6486  0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x2e,
-
6487  0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f, 0x00, 0x4f, 0x00, 0x46,
-
6488  0x00, 0x4c, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6489  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69,
-
6490  0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69,
-
6491  0x00, 0x6c, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f,
-
6492  0x00, 0x4f, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6493  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6494  0x00, 0x74, 0x00, 0x61, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69,
-
6495  0x00, 0x75, 0x00, 0x6d, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67,
-
6496  0x00, 0x68, 0x00, 0x74, 0x00, 0x57, 0x00, 0x69, 0x00, 0x64, 0x00, 0x74,
-
6497  0x00, 0x68, 0x00, 0x4e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6d, 0x00, 0x61,
-
6498  0x00, 0x6c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
6499  0xff, 0x38, 0x00, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
-
6500  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
6501  0x03, 0xc2, 0x00, 0x00, 0x00, 0x24, 0x00, 0xc9, 0x01, 0x02, 0x01, 0x03,
-
6502  0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x00, 0xc7, 0x01, 0x08,
-
6503  0x01, 0x09, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x0c, 0x01, 0x0d, 0x00, 0x62,
-
6504  0x01, 0x0e, 0x00, 0xad, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12,
-
6505  0x00, 0x63, 0x01, 0x13, 0x00, 0xae, 0x00, 0x90, 0x01, 0x14, 0x00, 0x25,
-
6506  0x00, 0x26, 0x00, 0xfd, 0x00, 0xff, 0x00, 0x64, 0x01, 0x15, 0x01, 0x16,
-
6507  0x01, 0x17, 0x00, 0x27, 0x00, 0xe9, 0x01, 0x18, 0x01, 0x19, 0x01, 0x1a,
-
6508  0x01, 0x1b, 0x00, 0x28, 0x00, 0x65, 0x01, 0x1c, 0x01, 0x1d, 0x01, 0x1e,
-
6509  0x00, 0xc8, 0x01, 0x1f, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23,
-
6510  0x01, 0x24, 0x00, 0xca, 0x01, 0x25, 0x01, 0x26, 0x00, 0xcb, 0x01, 0x27,
-
6511  0x01, 0x28, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x2b, 0x01, 0x2c, 0x01, 0x2d,
-
6512  0x01, 0x2e, 0x00, 0x29, 0x00, 0x2a, 0x00, 0xf8, 0x01, 0x2f, 0x01, 0x30,
-
6513  0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x00, 0x2b, 0x01, 0x34, 0x01, 0x35,
-
6514  0x01, 0x36, 0x01, 0x37, 0x00, 0x2c, 0x00, 0xcc, 0x01, 0x38, 0x00, 0xcd,
-
6515  0x01, 0x39, 0x00, 0xce, 0x01, 0x3a, 0x00, 0xfa, 0x01, 0x3b, 0x00, 0xcf,
-
6516  0x01, 0x3c, 0x01, 0x3d, 0x01, 0x3e, 0x01, 0x3f, 0x01, 0x40, 0x00, 0x2d,
-
6517  0x01, 0x41, 0x00, 0x2e, 0x01, 0x42, 0x01, 0x43, 0x00, 0x2f, 0x01, 0x44,
-
6518  0x01, 0x45, 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4a,
-
6519  0x01, 0x4b, 0x00, 0xe2, 0x00, 0x30, 0x01, 0x4c, 0x00, 0x31, 0x01, 0x4d,
-
6520  0x01, 0x4e, 0x01, 0x4f, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53,
-
6521  0x00, 0x66, 0x00, 0x32, 0x00, 0xd0, 0x01, 0x54, 0x00, 0xd1, 0x01, 0x55,
-
6522  0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5a, 0x00, 0x67,
-
6523  0x01, 0x5b, 0x01, 0x5c, 0x01, 0x5d, 0x00, 0xd3, 0x01, 0x5e, 0x01, 0x5f,
-
6524  0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65,
-
6525  0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6a, 0x00, 0x91,
-
6526  0x01, 0x6b, 0x00, 0xaf, 0x01, 0x6c, 0x01, 0x6d, 0x01, 0x6e, 0x00, 0xb0,
-
6527  0x00, 0x33, 0x00, 0xed, 0x00, 0x34, 0x00, 0x35, 0x01, 0x6f, 0x01, 0x70,
-
6528  0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x00, 0x36,
-
6529  0x01, 0x76, 0x01, 0x77, 0x00, 0xe4, 0x01, 0x78, 0x00, 0xfb, 0x01, 0x79,
-
6530  0x01, 0x7a, 0x01, 0x7b, 0x01, 0x7c, 0x01, 0x7d, 0x01, 0x7e, 0x01, 0x7f,
-
6531  0x00, 0x37, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84,
-
6532  0x01, 0x85, 0x00, 0x38, 0x00, 0xd4, 0x01, 0x86, 0x00, 0xd5, 0x01, 0x87,
-
6533  0x00, 0x68, 0x01, 0x88, 0x00, 0xd6, 0x01, 0x89, 0x01, 0x8a, 0x01, 0x8b,
-
6534  0x01, 0x8c, 0x01, 0x8d, 0x01, 0x8e, 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91,
-
6535  0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97,
-
6536  0x00, 0x39, 0x00, 0x3a, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9a, 0x01, 0x9b,
-
6537  0x00, 0x3b, 0x00, 0x3c, 0x00, 0xeb, 0x01, 0x9c, 0x00, 0xbb, 0x01, 0x9d,
-
6538  0x01, 0x9e, 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x00, 0x3d,
-
6539  0x01, 0xa3, 0x00, 0xe6, 0x01, 0xa4, 0x01, 0xa5, 0x01, 0xa6, 0x00, 0x44,
-
6540  0x00, 0x69, 0x01, 0xa7, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xaa, 0x01, 0xab,
-
6541  0x01, 0xac, 0x00, 0x6b, 0x01, 0xad, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xb0,
-
6542  0x01, 0xb1, 0x01, 0xb2, 0x00, 0x6c, 0x01, 0xb3, 0x00, 0x6a, 0x01, 0xb4,
-
6543  0x01, 0xb5, 0x01, 0xb6, 0x01, 0xb7, 0x00, 0x6e, 0x01, 0xb8, 0x00, 0x6d,
-
6544  0x00, 0xa0, 0x01, 0xb9, 0x00, 0x45, 0x01, 0xba, 0x00, 0x46, 0x00, 0xfe,
-
6545  0x01, 0x00, 0x00, 0x6f, 0x01, 0xbb, 0x01, 0xbc, 0x01, 0xbd, 0x00, 0x47,
-
6546  0x00, 0xea, 0x01, 0xbe, 0x01, 0x01, 0x01, 0xbf, 0x01, 0xc0, 0x00, 0x48,
-
6547  0x00, 0x70, 0x01, 0xc1, 0x01, 0xc2, 0x01, 0xc3, 0x00, 0x72, 0x01, 0xc4,
-
6548  0x01, 0xc5, 0x01, 0xc6, 0x01, 0xc7, 0x01, 0xc8, 0x01, 0xc9, 0x00, 0x73,
-
6549  0x01, 0xca, 0x01, 0xcb, 0x00, 0x71, 0x01, 0xcc, 0x01, 0xcd, 0x01, 0xce,
-
6550  0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd4,
-
6551  0x01, 0xd5, 0x00, 0x49, 0x00, 0x4a, 0x00, 0xf9, 0x01, 0xd6, 0x01, 0xd7,
-
6552  0x01, 0xd8, 0x01, 0xd9, 0x01, 0xda, 0x00, 0x4b, 0x01, 0xdb, 0x01, 0xdc,
-
6553  0x01, 0xdd, 0x01, 0xde, 0x00, 0x4c, 0x00, 0xd7, 0x00, 0x74, 0x01, 0xdf,
-
6554  0x00, 0x76, 0x01, 0xe0, 0x00, 0x77, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3,
-
6555  0x00, 0x75, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe6, 0x01, 0xe7, 0x01, 0xe8,
-
6556  0x00, 0x4d, 0x01, 0xe9, 0x01, 0xea, 0x00, 0x4e, 0x01, 0xeb, 0x01, 0xec,
-
6557  0x00, 0x4f, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1,
-
6558  0x01, 0xf2, 0x01, 0xf3, 0x00, 0xe3, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x51,
-
6559  0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, 0x01, 0xf9, 0x01, 0xfa,
-
6560  0x01, 0xfb, 0x00, 0x78, 0x00, 0x52, 0x00, 0x79, 0x01, 0xfc, 0x00, 0x7b,
-
6561  0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
-
6562  0x00, 0x7c, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x00, 0x7a, 0x02, 0x06,
-
6563  0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c,
-
6564  0x02, 0x0d, 0x02, 0x0e, 0x02, 0x0f, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12,
-
6565  0x00, 0xa1, 0x02, 0x13, 0x00, 0x7d, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16,
-
6566  0x00, 0xb1, 0x00, 0x53, 0x00, 0xee, 0x00, 0x54, 0x00, 0x55, 0x02, 0x17,
-
6567  0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, 0x02, 0x1b, 0x02, 0x1c, 0x02, 0x1d,
-
6568  0x02, 0x1e, 0x02, 0x1f, 0x00, 0x56, 0x02, 0x20, 0x02, 0x21, 0x00, 0xe5,
-
6569  0x02, 0x22, 0x00, 0xfc, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26,
-
6570  0x02, 0x27, 0x00, 0x89, 0x00, 0x57, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2a,
-
6571  0x02, 0x2b, 0x02, 0x2c, 0x02, 0x2d, 0x02, 0x2e, 0x00, 0x58, 0x00, 0x7e,
-
6572  0x02, 0x2f, 0x00, 0x80, 0x02, 0x30, 0x00, 0x81, 0x02, 0x31, 0x00, 0x7f,
-
6573  0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37,
-
6574  0x02, 0x38, 0x02, 0x39, 0x02, 0x3a, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3d,
-
6575  0x02, 0x3e, 0x02, 0x3f, 0x02, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x02, 0x41,
-
6576  0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0xec,
-
6577  0x02, 0x45, 0x00, 0xba, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49,
-
6578  0x02, 0x4a, 0x02, 0x4b, 0x00, 0x5d, 0x02, 0x4c, 0x00, 0xe7, 0x02, 0x4d,
-
6579  0x02, 0x4e, 0x02, 0x4f, 0x00, 0x9d, 0x00, 0x9e, 0x02, 0x50, 0x02, 0x51,
-
6580  0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18,
-
6581  0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x02, 0x52, 0x02, 0x53,
-
6582  0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59,
-
6583  0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x5e, 0x02, 0x5f,
-
6584  0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65,
-
6585  0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, 0x02, 0x6a, 0x02, 0x6b,
-
6586  0x02, 0x6c, 0x02, 0x6d, 0x02, 0x6e, 0x02, 0x6f, 0x02, 0x70, 0x02, 0x71,
-
6587  0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77,
-
6588  0x02, 0x78, 0x02, 0x79, 0x02, 0x7a, 0x02, 0x7b, 0x00, 0xbc, 0x00, 0xf4,
-
6589  0x00, 0xf5, 0x00, 0xf6, 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, 0x02, 0x7f,
-
6590  0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x00, 0x11, 0x00, 0x0f,
-
6591  0x00, 0x1d, 0x00, 0x1e, 0x00, 0xab, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x22,
-
6592  0x00, 0xa2, 0x00, 0xc3, 0x00, 0x87, 0x00, 0x0d, 0x02, 0x84, 0x00, 0x06,
-
6593  0x00, 0x12, 0x00, 0x3f, 0x02, 0x85, 0x02, 0x86, 0x00, 0x0b, 0x00, 0x0c,
-
6594  0x00, 0x5e, 0x00, 0x60, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x10, 0x02, 0x87,
-
6595  0x00, 0xb2, 0x00, 0xb3, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, 0x00, 0x42,
-
6596  0x00, 0xc4, 0x00, 0xc5, 0x00, 0xb4, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb7,
-
6597  0x00, 0xa9, 0x00, 0xaa, 0x00, 0xbe, 0x00, 0xbf, 0x00, 0x05, 0x00, 0x0a,
-
6598  0x02, 0x8b, 0x02, 0x8c, 0x02, 0x8d, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90,
-
6599  0x02, 0x91, 0x00, 0x03, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95,
-
6600  0x02, 0x96, 0x00, 0x84, 0x02, 0x97, 0x00, 0xbd, 0x00, 0x07, 0x02, 0x98,
-
6601  0x02, 0x99, 0x00, 0xa6, 0x00, 0xf7, 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c,
-
6602  0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2,
-
6603  0x02, 0xa3, 0x00, 0x85, 0x02, 0xa4, 0x00, 0x96, 0x02, 0xa5, 0x02, 0xa6,
-
6604  0x02, 0xa7, 0x02, 0xa8, 0x02, 0xa9, 0x00, 0x0e, 0x00, 0xef, 0x00, 0xf0,
-
6605  0x00, 0xb8, 0x00, 0x20, 0x00, 0x8f, 0x00, 0x21, 0x00, 0x1f, 0x00, 0x95,
-
6606  0x00, 0x94, 0x00, 0x93, 0x00, 0xa7, 0x00, 0x61, 0x00, 0xa4, 0x00, 0x41,
-
6607  0x00, 0x92, 0x02, 0xaa, 0x00, 0x9c, 0x02, 0xab, 0x02, 0xac, 0x00, 0x9a,
-
6608  0x00, 0x99, 0x00, 0xa5, 0x02, 0xad, 0x00, 0x98, 0x00, 0x08, 0x00, 0xc6,
-
6609  0x02, 0xae, 0x02, 0xaf, 0x02, 0xb0, 0x02, 0xb1, 0x02, 0xb2, 0x02, 0xb3,
-
6610  0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb7, 0x02, 0xb8, 0x02, 0xb9,
-
6611  0x02, 0xba, 0x02, 0xbb, 0x02, 0xbc, 0x02, 0xbd, 0x02, 0xbe, 0x02, 0xbf,
-
6612  0x02, 0xc0, 0x02, 0xc1, 0x02, 0xc2, 0x02, 0xc3, 0x02, 0xc4, 0x02, 0xc5,
-
6613  0x02, 0xc6, 0x02, 0xc7, 0x02, 0xc8, 0x02, 0xc9, 0x02, 0xca, 0x02, 0xcb,
-
6614  0x02, 0xcc, 0x02, 0xcd, 0x02, 0xce, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1,
-
6615  0x02, 0xd2, 0x02, 0xd3, 0x02, 0xd4, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7,
-
6616  0x02, 0xd8, 0x02, 0xd9, 0x02, 0xda, 0x02, 0xdb, 0x02, 0xdc, 0x02, 0xdd,
-
6617  0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x02, 0xe1, 0x02, 0xe2, 0x02, 0xe3,
-
6618  0x02, 0xe4, 0x02, 0xe5, 0x02, 0xe6, 0x00, 0xb9, 0x02, 0xe7, 0x02, 0xe8,
-
6619  0x02, 0xe9, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, 0x02, 0xee,
-
6620  0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x02, 0xf2, 0x02, 0xf3, 0x02, 0xf4,
-
6621  0x02, 0xf5, 0x02, 0xf6, 0x02, 0xf7, 0x02, 0xf8, 0x02, 0xf9, 0x02, 0xfa,
-
6622  0x02, 0xfb, 0x02, 0xfc, 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00,
-
6623  0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, 0x03, 0x06,
-
6624  0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c,
-
6625  0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12,
-
6626  0x03, 0x13, 0x03, 0x14, 0x03, 0x15, 0x03, 0x16, 0x03, 0x17, 0x03, 0x18,
-
6627  0x03, 0x19, 0x03, 0x1a, 0x03, 0x1b, 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e,
-
6628  0x03, 0x1f, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24,
-
6629  0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2a,
-
6630  0x03, 0x2b, 0x03, 0x2c, 0x03, 0x2d, 0x03, 0x2e, 0x03, 0x2f, 0x03, 0x30,
-
6631  0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36,
-
6632  0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x03, 0x3b, 0x03, 0x3c,
-
6633  0x03, 0x3d, 0x03, 0x3e, 0x03, 0x3f, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42,
-
6634  0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48,
-
6635  0x03, 0x49, 0x03, 0x4a, 0x03, 0x4b, 0x03, 0x4c, 0x03, 0x4d, 0x03, 0x4e,
-
6636  0x03, 0x4f, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54,
-
6637  0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x03, 0x58, 0x03, 0x59, 0x03, 0x5a,
-
6638  0x03, 0x5b, 0x03, 0x5c, 0x03, 0x5d, 0x03, 0x5e, 0x03, 0x5f, 0x03, 0x60,
-
6639  0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, 0x03, 0x66,
-
6640  0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6a, 0x03, 0x6b, 0x03, 0x6c,
-
6641  0x03, 0x6d, 0x03, 0x6e, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72,
-
6642  0x00, 0x23, 0x00, 0x09, 0x00, 0x88, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8a,
-
6643  0x00, 0x8c, 0x00, 0x83, 0x03, 0x73, 0x03, 0x74, 0x00, 0x5f, 0x00, 0xe8,
-
6644  0x00, 0x82, 0x03, 0x75, 0x00, 0xc2, 0x03, 0x76, 0x03, 0x77, 0x03, 0x78,
-
6645  0x03, 0x79, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7e,
-
6646  0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84,
-
6647  0x03, 0x85, 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8a,
-
6648  0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8e, 0x03, 0x8f, 0x03, 0x90,
-
6649  0x03, 0x91, 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96,
-
6650  0x03, 0x97, 0x03, 0x98, 0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c,
-
6651  0x03, 0x9d, 0x03, 0x9e, 0x03, 0x9f, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2,
-
6652  0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8,
-
6653  0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x00, 0x8e, 0x00, 0xdc,
-
6654  0x00, 0x43, 0x00, 0x8d, 0x00, 0xdf, 0x00, 0xd8, 0x00, 0xe1, 0x00, 0xdb,
-
6655  0x00, 0xdd, 0x00, 0xd9, 0x00, 0xda, 0x00, 0xde, 0x00, 0xe0, 0x03, 0xad,
-
6656  0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
-
6657  0x03, 0xb4, 0x03, 0xb5, 0x03, 0xb6, 0x03, 0xb7, 0x03, 0xb8, 0x03, 0xb9,
-
6658  0x03, 0xba, 0x03, 0xbb, 0x03, 0xbc, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
-
6659  0x03, 0xc0, 0x03, 0xc1, 0x03, 0xc2, 0x03, 0xc3, 0x03, 0xc4, 0x03, 0xc5,
-
6660  0x03, 0xc6, 0x03, 0xc7, 0x03, 0xc8, 0x03, 0xc9, 0x03, 0xca, 0x03, 0xcb,
-
6661  0x03, 0xcc, 0x03, 0xcd, 0x03, 0xce, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76,
-
6662  0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6e,
-
6663  0x69, 0x31, 0x45, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42,
-
6664  0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e,
-
6665  0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6666  0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e,
-
6667  0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6668  0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6e,
-
6669  0x69, 0x30, 0x32, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6670  0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6e,
-
6671  0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f,
-
6672  0x6e, 0x07, 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0a, 0x41, 0x72,
-
6673  0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61,
-
6674  0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x38,
-
6675  0x0b, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78,
-
6676  0x0a, 0x43, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06,
-
6677  0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61,
-
6678  0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x43, 0x07, 0x75, 0x6e,
-
6679  0x69, 0x31, 0x45, 0x30, 0x45, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, 0x65,
-
6680  0x06, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6681  0x45, 0x31, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07,
-
6682  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6683  0x45, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x32, 0x07,
-
6684  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6685  0x32, 0x30, 0x34, 0x0a, 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65,
-
6686  0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x38, 0x07, 0x75,
-
6687  0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6688  0x30, 0x36, 0x07, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
-
6689  0x6e, 0x69, 0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6690  0x31, 0x34, 0x07, 0x45, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x75,
-
6691  0x6e, 0x69, 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6692  0x42, 0x38, 0x06, 0x47, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x47, 0x63,
-
6693  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6694  0x69, 0x30, 0x31, 0x32, 0x32, 0x0a, 0x47, 0x64, 0x6f, 0x74, 0x61, 0x63,
-
6695  0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x30,
-
6696  0x04, 0x48, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32,
-
6697  0x41, 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65,
-
6698  0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x34, 0x06, 0x49, 0x62,
-
6699  0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x38,
-
6700  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, 0x6e, 0x69,
-
6701  0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x38,
-
6702  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x49, 0x6d, 0x61,
-
6703  0x63, 0x72, 0x6f, 0x6e, 0x07, 0x49, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
-
6704  0x06, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x4a, 0x63, 0x69, 0x72,
-
6705  0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6706  0x31, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x39, 0x38, 0x07,
-
6707  0x75, 0x6e, 0x69, 0x30, 0x31, 0x43, 0x37, 0x06, 0x4c, 0x61, 0x63, 0x75,
-
6708  0x74, 0x65, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e,
-
6709  0x69, 0x30, 0x31, 0x33, 0x42, 0x04, 0x4c, 0x64, 0x6f, 0x74, 0x07, 0x75,
-
6710  0x6e, 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6711  0x43, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75,
-
6712  0x6e, 0x69, 0x31, 0x45, 0x34, 0x32, 0x06, 0x4e, 0x61, 0x63, 0x75, 0x74,
-
6713  0x65, 0x06, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6714  0x30, 0x31, 0x34, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x34,
-
6715  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x36, 0x03, 0x45, 0x6e, 0x67,
-
6716  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x38, 0x06, 0x4f, 0x62, 0x72,
-
6717  0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x30, 0x07,
-
6718  0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6719  0x45, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07,
-
6720  0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6721  0x32, 0x30, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x41, 0x07,
-
6722  0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6723  0x45, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x45, 0x05,
-
6724  0x4f, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
-
6725  0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e,
-
6726  0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
-
6727  0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x30, 0x0d, 0x4f, 0x68,
-
6728  0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
-
6729  0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x45, 0x07, 0x4f, 0x6d, 0x61, 0x63,
-
6730  0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x32, 0x07,
-
6731  0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6732  0x31, 0x45, 0x41, 0x0b, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63,
-
6733  0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x43, 0x07,
-
6734  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6735  0x32, 0x32, 0x43, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52,
-
6736  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35,
-
6737  0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x30, 0x07, 0x75, 0x6e,
-
6738  0x69, 0x31, 0x45, 0x35, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31,
-
6739  0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x45, 0x06, 0x53, 0x61,
-
6740  0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x34,
-
6741  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x36, 0x0b, 0x53, 0x63, 0x69,
-
6742  0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69,
-
6743  0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x30,
-
6744  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69,
-
6745  0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x45,
-
6746  0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x38, 0x46, 0x04, 0x54, 0x62, 0x61,
-
6747  0x72, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6748  0x30, 0x31, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x41,
-
6749  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x43, 0x07, 0x75, 0x6e, 0x69,
-
6750  0x31, 0x45, 0x36, 0x45, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07,
-
6751  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6752  0x45, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x36, 0x05,
-
6753  0x55, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
-
6754  0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6e,
-
6755  0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
-
6756  0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x45, 0x0d, 0x55, 0x68,
-
6757  0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
-
6758  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x36, 0x07, 0x55, 0x6d, 0x61, 0x63,
-
6759  0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x41, 0x07,
-
6760  0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x05, 0x55, 0x72, 0x69, 0x6e,
-
6761  0x67, 0x06, 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
-
6762  0x31, 0x45, 0x37, 0x38, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b,
-
6763  0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09,
-
6764  0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, 0x67,
-
6765  0x72, 0x61, 0x76, 0x65, 0x0b, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d,
-
6766  0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x45,
-
6767  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x34, 0x06, 0x59, 0x67, 0x72,
-
6768  0x61, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x36, 0x07,
-
6769  0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6770  0x45, 0x46, 0x38, 0x06, 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x5a,
-
6771  0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e,
-
6772  0x69, 0x31, 0x45, 0x39, 0x32, 0x03, 0x55, 0x2e, 0x69, 0x06, 0x61, 0x62,
-
6773  0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x46,
-
6774  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6775  0x31, 0x45, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x33,
-
6776  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6777  0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x44,
-
6778  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6779  0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42,
-
6780  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6781  0x31, 0x45, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x33,
-
6782  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x33, 0x07, 0x61, 0x6d, 0x61,
-
6783  0x63, 0x72, 0x6f, 0x6e, 0x07, 0x61, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
-
6784  0x0a, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07,
-
6785  0x61, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6786  0x32, 0x39, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x39, 0x0b,
-
6787  0x63, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0a,
-
6788  0x63, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x64,
-
6789  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30,
-
6790  0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x46, 0x06, 0x65, 0x62,
-
6791  0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07,
-
6792  0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6793  0x45, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07,
-
6794  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6795  0x45, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x35, 0x07,
-
6796  0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x35, 0x0a, 0x65, 0x64, 0x6f, 0x74,
-
6797  0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6798  0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75,
-
6799  0x6e, 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72,
-
6800  0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75,
-
6801  0x6e, 0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e,
-
6802  0x65, 0x6b, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x39, 0x41, 0x07, 0x75,
-
6803  0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6804  0x35, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x42, 0x39, 0x06, 0x67,
-
6805  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75,
-
6806  0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32,
-
6807  0x33, 0x0a, 0x67, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74,
-
6808  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x31, 0x04, 0x68, 0x62, 0x61,
-
6809  0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x42, 0x0b, 0x68, 0x63,
-
6810  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6811  0x69, 0x31, 0x45, 0x32, 0x35, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65,
-
6812  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69,
-
6813  0x31, 0x45, 0x32, 0x46, 0x09, 0x69, 0x2e, 0x6c, 0x6f, 0x63, 0x6c, 0x54,
-
6814  0x52, 0x4b, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x42, 0x07, 0x75,
-
6815  0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6816  0x30, 0x42, 0x07, 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x69,
-
6817  0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x06, 0x69, 0x74, 0x69, 0x6c, 0x64,
-
6818  0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0b, 0x6a, 0x63,
-
6819  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6820  0x69, 0x30, 0x31, 0x33, 0x37, 0x0c, 0x6b, 0x67, 0x72, 0x65, 0x65, 0x6e,
-
6821  0x6c, 0x61, 0x6e, 0x64, 0x69, 0x63, 0x06, 0x6c, 0x61, 0x63, 0x75, 0x74,
-
6822  0x65, 0x06, 0x6c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6823  0x30, 0x31, 0x33, 0x43, 0x04, 0x6c, 0x64, 0x6f, 0x74, 0x07, 0x75, 0x6e,
-
6824  0x69, 0x31, 0x45, 0x33, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x43,
-
6825  0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x42, 0x07, 0x75, 0x6e,
-
6826  0x69, 0x31, 0x45, 0x34, 0x33, 0x06, 0x6e, 0x61, 0x63, 0x75, 0x74, 0x65,
-
6827  0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6828  0x31, 0x34, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x35, 0x07,
-
6829  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x37, 0x03, 0x65, 0x6e, 0x67, 0x07,
-
6830  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x39, 0x06, 0x6f, 0x62, 0x72, 0x65,
-
6831  0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x31, 0x07, 0x75,
-
6832  0x6e, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6833  0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75,
-
6834  0x6e, 0x69, 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6835  0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x42, 0x07, 0x75,
-
6836  0x6e, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6837  0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, 0x05, 0x6f,
-
6838  0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42,
-
6839  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69,
-
6840  0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x46,
-
6841  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, 0x0d, 0x6f, 0x68, 0x75,
-
6842  0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75,
-
6843  0x6e, 0x69, 0x30, 0x32, 0x30, 0x46, 0x07, 0x6f, 0x6d, 0x61, 0x63, 0x72,
-
6844  0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x33, 0x07, 0x75,
-
6845  0x6e, 0x69, 0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6846  0x45, 0x42, 0x0b, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75,
-
6847  0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x44, 0x07, 0x75,
-
6848  0x6e, 0x69, 0x31, 0x45, 0x34, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6849  0x32, 0x44, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63,
-
6850  0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35, 0x37,
-
6851  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6852  0x31, 0x45, 0x35, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x37, 0x42,
-
6853  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69,
-
6854  0x31, 0x45, 0x35, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x34, 0x44,
-
6855  0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6856  0x45, 0x36, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x37, 0x0b,
-
6857  0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
-
6858  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6859  0x45, 0x36, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x33, 0x07,
-
6860  0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x39, 0x04, 0x74, 0x62, 0x61, 0x72,
-
6861  0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6862  0x31, 0x36, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x42, 0x07,
-
6863  0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6864  0x45, 0x36, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x46, 0x06,
-
6865  0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6866  0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75,
-
6867  0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e,
-
6868  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69,
-
6869  0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x42,
-
6870  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69,
-
6871  0x31, 0x45, 0x45, 0x46, 0x0d, 0x75, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72,
-
6872  0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6873  0x31, 0x37, 0x07, 0x75, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
-
6874  0x6e, 0x69, 0x31, 0x45, 0x37, 0x42, 0x07, 0x75, 0x6f, 0x67, 0x6f, 0x6e,
-
6875  0x65, 0x6b, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, 0x06, 0x75, 0x74, 0x69,
-
6876  0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x39, 0x06,
-
6877  0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x77, 0x63, 0x69, 0x72, 0x63,
-
6878  0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72,
-
6879  0x65, 0x73, 0x69, 0x73, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0b,
-
6880  0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
-
6881  0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6882  0x45, 0x46, 0x35, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75,
-
6883  0x6e, 0x69, 0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6884  0x33, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x39, 0x06, 0x7a,
-
6885  0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x7a, 0x64, 0x6f, 0x74, 0x61, 0x63,
-
6886  0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x33,
-
6887  0x03, 0x75, 0x2e, 0x69, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x46,
-
6888  0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x34, 0x09, 0x7a, 0x65, 0x72,
-
6889  0x6f, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e,
-
6890  0x73, 0x73, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
-
6891  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6892  0x32, 0x30, 0x38, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x33,
-
6893  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x34, 0x07, 0x75, 0x6e, 0x69,
-
6894  0x32, 0x30, 0x38, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x36,
-
6895  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6896  0x32, 0x30, 0x38, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x39,
-
6897  0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x6f,
-
6898  0x6e, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x74, 0x77, 0x6f, 0x2e,
-
6899  0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2e, 0x64,
-
6900  0x6e, 0x6f, 0x6d, 0x09, 0x66, 0x6f, 0x75, 0x72, 0x2e, 0x64, 0x6e, 0x6f,
-
6901  0x6d, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08,
-
6902  0x73, 0x69, 0x78, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x73, 0x65, 0x76,
-
6903  0x65, 0x6e, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x65, 0x69, 0x67, 0x68,
-
6904  0x74, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x6e, 0x69, 0x6e, 0x65, 0x2e,
-
6905  0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
-
6906  0x6d, 0x72, 0x08, 0x6f, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x08,
-
6907  0x74, 0x77, 0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a, 0x74, 0x68, 0x72,
-
6908  0x65, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x6f, 0x75, 0x72,
-
6909  0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x6e,
-
6910  0x75, 0x6d, 0x72, 0x08, 0x73, 0x69, 0x78, 0x2e, 0x6e, 0x75, 0x6d, 0x72,
-
6911  0x0a, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a,
-
6912  0x65, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x6e,
-
6913  0x69, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x07, 0x75, 0x6e, 0x69,
-
6914  0x32, 0x30, 0x37, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x39,
-
6915  0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69,
-
6916  0x30, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x34,
-
6917  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6918  0x32, 0x30, 0x37, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x37,
-
6919  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x38, 0x07, 0x75, 0x6e, 0x69,
-
6920  0x32, 0x30, 0x37, 0x39, 0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
-
6921  0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64,
-
6922  0x6e, 0x6f, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72,
-
6923  0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0c,
-
6924  0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x30, 0x2e, 0x73, 0x73, 0x30, 0x32,
-
6925  0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30, 0x2e, 0x7a, 0x65, 0x72,
-
6926  0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x2e,
-
6927  0x7a, 0x65, 0x72, 0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
-
6928  0x6d, 0x72, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x0c, 0x75, 0x6e, 0x69, 0x32,
-
6929  0x30, 0x37, 0x30, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69,
-
6930  0x32, 0x45, 0x31, 0x32, 0x16, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63,
-
6931  0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x6f, 0x63, 0x6c,
-
6932  0x43, 0x41, 0x54, 0x0d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6b,
-
6933  0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41,
-
6934  0x44, 0x0a, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, 0x68,
-
6935  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6936  0x32, 0x30, 0x31, 0x30, 0x0d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x62,
-
6937  0x6c, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65,
-
6938  0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x13,
-
6939  0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
-
6940  0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x17, 0x65, 0x78, 0x63, 0x6c,
-
6941  0x61, 0x6d, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75,
-
6942  0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6943  0x30, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07,
-
6944  0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6945  0x30, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07,
-
6946  0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x42, 0x02, 0x43, 0x52, 0x07, 0x75,
-
6947  0x6e, 0x69, 0x32, 0x30, 0x42, 0x35, 0x0d, 0x63, 0x6f, 0x6c, 0x6f, 0x6e,
-
6948  0x6d, 0x6f, 0x6e, 0x65, 0x74, 0x61, 0x72, 0x79, 0x04, 0x64, 0x6f, 0x6e,
-
6949  0x67, 0x04, 0x45, 0x75, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
-
6950  0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x41, 0x44, 0x04, 0x6c,
-
6951  0x69, 0x72, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07,
-
6952  0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6953  0x30, 0x41, 0x36, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x07, 0x75,
-
6954  0x6e, 0x69, 0x32, 0x30, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
-
6955  0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x39, 0x07, 0x75,
-
6956  0x6e, 0x69, 0x32, 0x30, 0x41, 0x39, 0x0c, 0x61, 0x73, 0x74, 0x65, 0x72,
-
6957  0x69, 0x73, 0x6b, 0x6d, 0x61, 0x74, 0x68, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6958  0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x32, 0x31, 0x35, 0x07,
-
6959  0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6960  0x30, 0x37, 0x42, 0x08, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74,
-
6961  0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69,
-
6962  0x32, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x35,
-
6963  0x0a, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x73, 0x0f,
-
6964  0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73,
-
6965  0x73, 0x30, 0x31, 0x10, 0x61, 0x73, 0x63, 0x69, 0x69, 0x63, 0x69, 0x72,
-
6966  0x63, 0x75, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x61, 0x72, 0x72,
-
6967  0x6f, 0x77, 0x75, 0x70, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x37,
-
6968  0x0a, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07,
-
6969  0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x38, 0x09, 0x61, 0x72, 0x72, 0x6f,
-
6970  0x77, 0x64, 0x6f, 0x77, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39,
-
6971  0x39, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x6c, 0x65, 0x66, 0x74, 0x07,
-
6972  0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x36, 0x09, 0x61, 0x72, 0x72, 0x6f,
-
6973  0x77, 0x62, 0x6f, 0x74, 0x68, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x75,
-
6974  0x70, 0x64, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x37, 0x07,
-
6975  0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6976  0x31, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x36, 0x07,
-
6977  0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6978  0x42, 0x39, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x37, 0x07,
-
6979  0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x35, 0x0d, 0x64, 0x6e, 0x65, 0x69,
-
6980  0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e,
-
6981  0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6982  0x13, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68,
-
6983  0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x64, 0x6e, 0x68,
-
6984  0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x64, 0x6e, 0x66,
-
6985  0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
-
6986  0x6f, 0x63, 0x6b, 0x14, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x71,
-
6987  0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6988  0x13, 0x64, 0x6e, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65, 0x69, 0x67, 0x68,
-
6989  0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x09, 0x66, 0x75, 0x6c,
-
6990  0x6c, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x75, 0x70, 0x68, 0x61, 0x6c,
-
6991  0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0d, 0x75, 0x70, 0x65, 0x69, 0x67,
-
6992  0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0f, 0x6c, 0x65, 0x66,
-
6993  0x74, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6994  0x10, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72,
-
6995  0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68,
-
6996  0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
-
6997  0x6f, 0x63, 0x6b, 0x0d, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x61, 0x6c, 0x66,
-
6998  0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x14, 0x6c, 0x65, 0x66, 0x74, 0x66, 0x69,
-
6999  0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f,
-
7000  0x63, 0x6b, 0x16, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68, 0x72, 0x65, 0x65,
-
7001  0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63,
-
7002  0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65,
-
7003  0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e,
-
7004  0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f,
-
7005  0x63, 0x6b, 0x10, 0x72, 0x69, 0x67, 0x68, 0x74, 0x65, 0x69, 0x67, 0x68,
-
7006  0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e, 0x6c, 0x65,
-
7007  0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0f, 0x64,
-
7008  0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61,
-
7009  0x6e, 0x74, 0x0e, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61,
-
7010  0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74,
-
7011  0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68,
-
7012  0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70,
-
7013  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71,
-
7014  0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65,
-
7015  0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c,
-
7016  0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c,
-
7017  0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68,
-
7018  0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64,
-
7019  0x72, 0x61, 0x6e, 0x74, 0x0f, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7020  0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70, 0x72,
-
7021  0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75,
-
7022  0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c, 0x75, 0x70, 0x72, 0x69, 0x67,
-
7023  0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69,
-
7024  0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0a,
-
7025  0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x68, 0x61, 0x64, 0x65, 0x0b, 0x6d,
-
7026  0x65, 0x64, 0x69, 0x75, 0x6d, 0x73, 0x68, 0x61, 0x64, 0x65, 0x09, 0x64,
-
7027  0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
-
7028  0x32, 0x35, 0x43, 0x46, 0x06, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x07,
-
7029  0x75, 0x6e, 0x69, 0x32, 0x35, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7030  0x35, 0x43, 0x37, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x68, 0x6f, 0x72,
-
7031  0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x6c, 0x65,
-
7032  0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x72,
-
7033  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64, 0x62, 0x6c, 0x68,
-
7034  0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75, 0x70,
-
7035  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75,
-
7036  0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c,
-
7037  0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64,
-
7038  0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0e, 0x64, 0x62,
-
7039  0x6c, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7040  0x0e, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7041  0x62, 0x78, 0x64, 0x0f, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x72,
-
7042  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x64, 0x62,
-
7043  0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x0f,
-
7044  0x64, 0x6e, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
-
7045  0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x64, 0x62, 0x6c, 0x72, 0x69, 0x67,
-
7046  0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68,
-
7047  0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7048  0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7049  0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
-
7050  0x15, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
-
7051  0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x64,
-
7052  0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c,
-
7053  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x68, 0x65,
-
7054  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
-
7055  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x68, 0x65, 0x61,
-
7056  0x76, 0x79, 0x75, 0x70, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7057  0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7058  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7059  0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7060  0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c,
-
7061  0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65,
-
7062  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7063  0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7064  0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
-
7065  0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7066  0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70,
-
7067  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7068  0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a, 0x64, 0x62,
-
7069  0x6c, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x6c, 0x65,
-
7070  0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x73,
-
7071  0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78,
-
7072  0x64, 0x13, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61,
-
7073  0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x13, 0x68, 0x65,
-
7074  0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
-
7075  0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64,
-
7076  0x6e, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e,
-
7077  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
-
7078  0x79, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x68,
-
7079  0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62,
-
7080  0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
-
7081  0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
-
7082  0x74, 0x62, 0x78, 0x64, 0x16, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
-
7083  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7084  0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61,
-
7085  0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7086  0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61,
-
7087  0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x68, 0x65,
-
7088  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14,
-
7089  0x68, 0x65, 0x61, 0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73,
-
7090  0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61,
-
7091  0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
-
7092  0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75,
-
7093  0x70, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
-
7094  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
-
7095  0x79, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68,
-
7096  0x65, 0x61, 0x76, 0x79, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7097  0x6e, 0x62, 0x78, 0x64, 0x0f, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
-
7098  0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61,
-
7099  0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x10, 0x68, 0x65,
-
7100  0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62,
-
7101  0x78, 0x64, 0x10, 0x68, 0x65, 0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74,
-
7102  0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68, 0x65, 0x61, 0x76,
-
7103  0x79, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
-
7104  0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76,
-
7105  0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
-
7106  0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61,
-
7107  0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7108  0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
-
7109  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
-
7110  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x68,
-
7111  0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72,
-
7112  0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65,
-
7113  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7114  0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x18, 0x6c,
-
7115  0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68,
-
7116  0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a,
-
7117  0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67,
-
7118  0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7119  0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61,
-
7120  0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7121  0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61,
-
7122  0x72, 0x63, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x12,
-
7123  0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x64, 0x6e, 0x72, 0x69,
-
7124  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7125  0x61, 0x72, 0x63, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64,
-
7126  0x12, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x75, 0x70, 0x72,
-
7127  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68,
-
7128  0x74, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a,
-
7129  0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
-
7130  0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x11,
-
7131  0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x69, 0x61, 0x67, 0x63, 0x72, 0x6f,
-
7132  0x73, 0x73, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7133  0x69, 0x61, 0x67, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72,
-
7134  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68,
-
7135  0x74, 0x64, 0x69, 0x61, 0x67, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7136  0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
-
7137  0x67, 0x68, 0x74, 0x64, 0x6e, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67,
-
7138  0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e,
-
7139  0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62,
-
7140  0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x72, 0x69,
-
7141  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7142  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68,
-
7143  0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x16, 0x6c, 0x69, 0x67,
-
7144  0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72,
-
7145  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68,
-
7146  0x74, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72,
-
7147  0x7a, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75,
-
7148  0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
-
7149  0x64, 0x0d, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7150  0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70,
-
7151  0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7152  0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61,
-
7153  0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
-
7154  0x67, 0x68, 0x74, 0x75, 0x70, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67,
-
7155  0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x62,
-
7156  0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x6f,
-
7157  0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75,
-
7158  0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67,
-
7159  0x68, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
-
7160  0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
-
7161  0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68,
-
7162  0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7163  0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11,
-
7164  0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67,
-
7165  0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7166  0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70,
-
7167  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69, 0x67,
-
7168  0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
-
7169  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69,
-
7170  0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
-
7171  0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72,
-
7172  0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
-
7173  0x74, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
-
7174  0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7175  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7176  0x78, 0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68,
-
7177  0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7178  0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
-
7179  0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65,
-
7180  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7181  0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
-
7182  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70,
-
7183  0x64, 0x62, 0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78,
-
7184  0x64, 0x0f, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73,
-
7185  0x6e, 0x67, 0x62, 0x78, 0x64, 0x10, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x72,
-
7186  0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x75,
-
7187  0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a,
-
7188  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x68,
-
7189  0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7190  0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7191  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62,
-
7192  0x78, 0x64, 0x13, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
-
7193  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x75,
-
7194  0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7195  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70,
-
7196  0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69,
-
7197  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x6c, 0x69, 0x67,
-
7198  0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76,
-
7199  0x79, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7200  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7201  0x15, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7202  0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x13, 0x75,
-
7203  0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
-
7204  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x16, 0x75, 0x70, 0x6c, 0x69, 0x67,
-
7205  0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61,
-
7206  0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
-
7207  0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7208  0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
-
7209  0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67,
-
7210  0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x75,
-
7211  0x70, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
-
7212  0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x68,
-
7213  0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65,
-
7214  0x72, 0x74, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
-
7215  0x62, 0x78, 0x64, 0x12, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x72,
-
7216  0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x76,
-
7217  0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
-
7218  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72,
-
7219  0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69,
-
7220  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x68,
-
7221  0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
-
7222  0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69,
-
7223  0x67, 0x68, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7224  0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68,
-
7225  0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78,
-
7226  0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
-
7227  0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7228  0x11, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
-
7229  0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x73,
-
7230  0x6e, 0x67, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64,
-
7231  0x12, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68,
-
7232  0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7233  0x36, 0x33, 0x39, 0x09, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61, 0x63,
-
7234  0x65, 0x0c, 0x69, 0x6e, 0x76, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61,
-
7235  0x63, 0x65, 0x05, 0x73, 0x70, 0x61, 0x64, 0x65, 0x04, 0x63, 0x6c, 0x75,
-
7236  0x62, 0x05, 0x68, 0x65, 0x61, 0x72, 0x74, 0x07, 0x64, 0x69, 0x61, 0x6d,
-
7237  0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x33, 0x07,
-
7238  0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7239  0x37, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x37, 0x07,
-
7240  0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x38, 0x06, 0x6d, 0x69, 0x6e, 0x75,
-
7241  0x74, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e,
-
7242  0x69, 0x32, 0x31, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31,
-
7243  0x36, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x07,
-
7244  0x75, 0x6e, 0x69, 0x32, 0x34, 0x32, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7245  0x33, 0x38, 0x42, 0x05, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x07, 0x75, 0x6e,
-
7246  0x69, 0x32, 0x31, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
-
7247  0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32, 0x42, 0x07, 0x75, 0x6e,
-
7248  0x69, 0x32, 0x33, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
-
7249  0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x31, 0x38, 0x07, 0x75, 0x6e,
-
7250  0x69, 0x32, 0x33, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46,
-
7251  0x44, 0x16, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61,
-
7252  0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67,
-
7253  0x12, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
-
7254  0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x12, 0x67, 0x72, 0x65, 0x61,
-
7255  0x74, 0x65, 0x72, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c,
-
7256  0x69, 0x67, 0x10, 0x6c, 0x65, 0x73, 0x73, 0x5f, 0x68, 0x79, 0x70, 0x68,
-
7257  0x65, 0x6e, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x0f, 0x6c, 0x65, 0x73, 0x73,
-
7258  0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07,
-
7259  0x75, 0x6e, 0x69, 0x30, 0x33, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7260  0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07,
-
7261  0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7262  0x32, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x42, 0x07,
-
7263  0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7264  0x32, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07,
-
7265  0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7266  0x32, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x38, 0x07,
-
7267  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7268  0x33, 0x30, 0x37, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d,
-
7269  0x62, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
-
7270  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7271  0x33, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07,
-
7272  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7273  0x33, 0x30, 0x41, 0x09, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d,
-
7274  0x62, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x34, 0x0d, 0x68, 0x6f,
-
7275  0x6f, 0x6b, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
-
7276  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7277  0x33, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x32, 0x07,
-
7278  0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42, 0x0c, 0x64, 0x6f, 0x74, 0x62,
-
7279  0x65, 0x6c, 0x6f, 0x77, 0x63, 0x6f, 0x6d, 0x62, 0x07, 0x75, 0x6e, 0x69,
-
7280  0x30, 0x33, 0x32, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x36,
-
7281  0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
7282  0x30, 0x33, 0x32, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x45,
-
7283  0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
7284  0x30, 0x33, 0x33, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x36,
-
7285  0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x2e, 0x63, 0x61, 0x73,
-
7286  0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x37, 0x2e, 0x63, 0x61,
-
7287  0x73, 0x65, 0x0e, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62,
-
7288  0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63,
-
7289  0x6f, 0x6d, 0x62, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69,
-
7290  0x30, 0x33, 0x30, 0x42, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e,
-
7291  0x69, 0x30, 0x33, 0x30, 0x32, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75,
-
7292  0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c,
-
7293  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7294  0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x41, 0x2e, 0x63, 0x61, 0x73,
-
7295  0x65, 0x0e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e,
-
7296  0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42,
-
7297  0x2e, 0x63, 0x61, 0x73, 0x65, 0x0d, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73,
-
7298  0x69, 0x73, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x64, 0x6f, 0x74, 0x61,
-
7299  0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x67,
-
7300  0x72, 0x61, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x61, 0x63,
-
7301  0x75, 0x74, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x11, 0x68, 0x75, 0x6e,
-
7302  0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x63, 0x61,
-
7303  0x73, 0x65, 0x0a, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x63, 0x61, 0x73,
-
7304  0x65, 0x0a, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7305  0x09, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x74,
-
7306  0x69, 0x6c, 0x64, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0b, 0x74, 0x69,
-
7307  0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e, 0x69, 0x0b, 0x75, 0x6e,
-
7308  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
-
7309  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
-
7310  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
-
7311  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x33, 0x0b, 0x75, 0x6e,
-
7312  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
-
7313  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
-
7314  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
-
7315  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33, 0x10, 0x75, 0x6e,
-
7316  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x2e, 0x63, 0x61,
-
7317  0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33,
-
7318  0x30, 0x30, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30,
-
7319  0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7320  0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33,
-
7321  0x2e, 0x63, 0x61, 0x73, 0x65, 0x04, 0x4e, 0x55, 0x4c, 0x4c, 0x00, 0x00,
-
7322  0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02,
-
7323  0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x02,
-
7324  0x00, 0x26, 0x00, 0x01, 0x00, 0x19, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x24,
-
7325  0x00, 0x01, 0x00, 0x26, 0x00, 0x26, 0x00, 0x01, 0x00, 0x28, 0x00, 0x40,
-
7326  0x00, 0x01, 0x00, 0x42, 0x00, 0x5f, 0x00, 0x01, 0x00, 0x63, 0x00, 0x63,
-
7327  0x00, 0x01, 0x00, 0x65, 0x00, 0x69, 0x00, 0x01, 0x00, 0x6b, 0x00, 0x6b,
-
7328  0x00, 0x01, 0x00, 0x6d, 0x00, 0x99, 0x00, 0x01, 0x00, 0x9b, 0x00, 0x9b,
-
7329  0x00, 0x01, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0x01, 0x00, 0xb2, 0x00, 0xe6,
-
7330  0x00, 0x01, 0x00, 0xe8, 0x01, 0x00, 0x00, 0x01, 0x01, 0x03, 0x01, 0x0c,
-
7331  0x00, 0x01, 0x01, 0x0f, 0x01, 0x27, 0x00, 0x01, 0x01, 0x29, 0x01, 0x2a,
-
7332  0x00, 0x01, 0x01, 0x2d, 0x01, 0x52, 0x00, 0x01, 0x01, 0x54, 0x01, 0x54,
-
7333  0x00, 0x01, 0x01, 0x56, 0x01, 0x56, 0x00, 0x01, 0x01, 0x58, 0x01, 0x5f,
-
7334  0x00, 0x01, 0x01, 0x61, 0x01, 0x84, 0x00, 0x01, 0x01, 0x86, 0x01, 0x86,
-
7335  0x00, 0x01, 0x01, 0x89, 0x01, 0x8e, 0x00, 0x01, 0x01, 0x90, 0x01, 0x92,
-
7336  0x00, 0x01, 0x01, 0x9f, 0x01, 0xd3, 0x00, 0x01, 0x01, 0xd7, 0x01, 0xd7,
-
7337  0x00, 0x01, 0x02, 0x51, 0x02, 0x53, 0x00, 0x01, 0x02, 0x56, 0x02, 0x56,
-
7338  0x00, 0x01, 0x02, 0x59, 0x02, 0x59, 0x00, 0x01, 0x02, 0x5f, 0x02, 0x5f,
-
7339  0x00, 0x01, 0x02, 0x61, 0x02, 0x62, 0x00, 0x01, 0x02, 0x65, 0x02, 0x65,
-
7340  0x00, 0x01, 0x03, 0x70, 0x03, 0x70, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x92,
-
7341  0x00, 0x03, 0x03, 0x95, 0x03, 0x95, 0x00, 0x01, 0x03, 0xa0, 0x03, 0xaa,
-
7342  0x00, 0x03, 0x03, 0xb0, 0x03, 0xb0, 0x00, 0x01, 0x03, 0xb5, 0x03, 0xc0,
-
7343  0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
-
7344  0x00, 0x20, 0x00, 0x00, 0x00, 0x36, 0x00, 0x01, 0x00, 0x06, 0x03, 0x8a,
-
7345  0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f, 0x03, 0x90, 0x00, 0x02,
-
7346  0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
-
7347  0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02,
-
7348  0x03, 0x89, 0x03, 0xaa, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x26,
-
7349  0x00, 0x44, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
-
7350  0x74, 0x6e, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
-
7351  0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x6d, 0x61, 0x72, 0x6b,
-
7352  0x00, 0x0e, 0x6d, 0x6b, 0x6d, 0x6b, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01,
-
7353  0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03,
-
7354  0x00, 0x04, 0x00, 0x0a, 0x1a, 0x40, 0x1a, 0xd0, 0x1d, 0x3a, 0x00, 0x04,
-
7355  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x22,
-
7356  0x00, 0x05, 0x00, 0xf8, 0x01, 0xc6, 0x00, 0x02, 0x00, 0x03, 0x03, 0x7a,
-
7357  0x03, 0x92, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xaa, 0x00, 0x19, 0x03, 0xb5,
-
7358  0x03, 0xc0, 0x00, 0x24, 0x00, 0x02, 0x00, 0x23, 0x00, 0x01, 0x00, 0x19,
-
7359  0x00, 0x00, 0x00, 0x1c, 0x00, 0x24, 0x00, 0x19, 0x00, 0x26, 0x00, 0x26,
-
7360  0x00, 0x22, 0x00, 0x28, 0x00, 0x40, 0x00, 0x23, 0x00, 0x42, 0x00, 0x5f,
-
7361  0x00, 0x3c, 0x00, 0x63, 0x00, 0x63, 0x00, 0x5a, 0x00, 0x65, 0x00, 0x69,
-
7362  0x00, 0x5b, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x60, 0x00, 0x6d, 0x00, 0x99,
-
7363  0x00, 0x61, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x8e, 0x00, 0x9d, 0x00, 0xb0,
-
7364  0x00, 0x8f, 0x00, 0xb2, 0x00, 0xe6, 0x00, 0xa3, 0x00, 0xe8, 0x01, 0x00,
-
7365  0x00, 0xd8, 0x01, 0x03, 0x01, 0x0c, 0x00, 0xf1, 0x01, 0x0f, 0x01, 0x27,
-
7366  0x00, 0xfb, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x14, 0x01, 0x2d, 0x01, 0x52,
-
7367  0x01, 0x16, 0x01, 0x54, 0x01, 0x54, 0x01, 0x3c, 0x01, 0x56, 0x01, 0x56,
-
7368  0x01, 0x3d, 0x01, 0x58, 0x01, 0x5f, 0x01, 0x3e, 0x01, 0x61, 0x01, 0x84,
-
7369  0x01, 0x46, 0x01, 0x86, 0x01, 0x86, 0x01, 0x6a, 0x01, 0x89, 0x01, 0x8e,
-
7370  0x01, 0x6b, 0x01, 0x90, 0x01, 0x92, 0x01, 0x71, 0x01, 0x9f, 0x01, 0xd3,
-
7371  0x01, 0x74, 0x01, 0xd7, 0x01, 0xd7, 0x01, 0xa9, 0x02, 0x51, 0x02, 0x53,
-
7372  0x01, 0xaa, 0x02, 0x56, 0x02, 0x56, 0x01, 0xad, 0x02, 0x59, 0x02, 0x59,
-
7373  0x01, 0xae, 0x02, 0x5f, 0x02, 0x5f, 0x01, 0xaf, 0x02, 0x61, 0x02, 0x62,
-
7374  0x01, 0xb0, 0x02, 0x65, 0x02, 0x65, 0x01, 0xb2, 0x03, 0x70, 0x03, 0x70,
-
7375  0x01, 0xb3, 0x03, 0x95, 0x03, 0x95, 0x01, 0xb4, 0x03, 0xb0, 0x03, 0xb0,
-
7376  0x01, 0xb5, 0x00, 0x30, 0x00, 0x00, 0x1a, 0x88, 0x00, 0x00, 0x1a, 0x8e,
-
7377  0x00, 0x00, 0x1a, 0x94, 0x00, 0x00, 0x1a, 0x9a, 0x00, 0x00, 0x1a, 0xa0,
-
7378  0x00, 0x00, 0x1a, 0xa6, 0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xd6,
-
7379  0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xac, 0x00, 0x00, 0x1a, 0xe8,
-
7380  0x00, 0x00, 0x1a, 0xb2, 0x00, 0x00, 0x1a, 0xb8, 0x00, 0x00, 0x1a, 0xe2,
-
7381  0x00, 0x00, 0x1a, 0xbe, 0x00, 0x01, 0x1c, 0x5e, 0x00, 0x02, 0x19, 0x76,
-
7382  0x00, 0x02, 0x19, 0x7c, 0x00, 0x02, 0x19, 0x82, 0x00, 0x02, 0x19, 0x88,
-
7383  0x00, 0x03, 0x00, 0xc2, 0x00, 0x02, 0x19, 0x8e, 0x00, 0x02, 0x19, 0x8e,
-
7384  0x00, 0x04, 0x00, 0xc8, 0x00, 0x04, 0x00, 0xc8, 0x00, 0x00, 0x1b, 0x06,
-
7385  0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xc4, 0x00, 0x00, 0x1a, 0xca,
-
7386  0x00, 0x00, 0x1a, 0xd0, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1a, 0xfa,
-
7387  0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xf4,
-
7388  0x00, 0x01, 0x1c, 0x64, 0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xd6,
-
7389  0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xdc, 0x00, 0x00, 0x1a, 0xe2,
-
7390  0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xe8, 0x00, 0x00, 0x1a, 0xee,
-
7391  0x00, 0x00, 0x1a, 0xf4, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x00,
-
7392  0x00, 0x00, 0x1b, 0x06, 0x00, 0x01, 0x00, 0xee, 0x00, 0x00, 0x00, 0x01,
-
7393  0x00, 0xfb, 0x01, 0x3c, 0x01, 0xb6, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7394  0x11, 0x4e, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7395  0x00, 0x00, 0x1b, 0x0e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7396  0x11, 0x1e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x0e,
-
7397  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x24, 0x00, 0x00,
-
7398  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x2a, 0x00, 0x00, 0x18, 0x50,
-
7399  0x11, 0x4e, 0x00, 0x00, 0x11, 0x30, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7400  0x00, 0x00, 0x1b, 0x02, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7401  0x11, 0x36, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x02,
-
7402  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x50, 0x00, 0x00,
-
7403  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x3c, 0x00, 0x00, 0x18, 0x50,
-
7404  0x11, 0x4e, 0x00, 0x00, 0x11, 0x42, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7405  0x00, 0x00, 0x13, 0x52, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7406  0x1a, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c,
-
7407  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xe8, 0x00, 0x00,
-
7408  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xee, 0x00, 0x00, 0x18, 0x50,
-
7409  0x11, 0x4e, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7410  0x00, 0x00, 0x13, 0xf4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7411  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0x94,
-
7412  0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x48, 0x00, 0x00,
-
7413  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x18, 0x50,
-
7414  0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7415  0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7416  0x11, 0x5a, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x11, 0x54,
-
7417  0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00,
-
7418  0x11, 0x60, 0x00, 0x00, 0x00, 0x00, 0x11, 0x5a, 0x00, 0x00, 0x11, 0x60,
-
7419  0x00, 0x00, 0x00, 0x00, 0x11, 0x66, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00,
-
7420  0x00, 0x00, 0x11, 0x6c, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7421  0x11, 0x7e, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x72,
-
7422  0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00,
-
7423  0x11, 0x78, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00, 0x18, 0xf2,
-
7424  0x00, 0x00, 0x14, 0xc0, 0x11, 0xea, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7425  0x00, 0x00, 0x11, 0x84, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7426  0x11, 0x90, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x8a,
-
7427  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x90, 0x00, 0x00,
-
7428  0x13, 0x46, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7429  0x11, 0xf6, 0x00, 0x00, 0x11, 0x96, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7430  0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00,
-
7431  0x11, 0xa2, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xa8,
-
7432  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xae, 0x00, 0x00,
-
7433  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xb4, 0x00, 0x00, 0x18, 0x50,
-
7434  0x11, 0xf6, 0x00, 0x00, 0x11, 0xba, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7435  0x00, 0x00, 0x11, 0xc0, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7436  0x11, 0xea, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xc6,
-
7437  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xcc, 0x00, 0x00,
-
7438  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xd2, 0x00, 0x00, 0x18, 0x50,
-
7439  0x11, 0xf6, 0x00, 0x00, 0x11, 0xd8, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7440  0x00, 0x00, 0x11, 0xde, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7441  0x11, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xea,
-
7442  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xf0, 0x00, 0x00,
-
7443  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7444  0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
-
7445  0x00, 0x00, 0x11, 0xfc, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00,
-
7446  0x12, 0x02, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x08,
-
7447  0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00,
-
7448  0x12, 0x14, 0x00, 0x00, 0x00, 0x00, 0x12, 0x1a, 0x00, 0x00, 0x12, 0x26,
-
7449  0x00, 0x00, 0x00, 0x00, 0x12, 0x20, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
-
7450  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0,
-
7451  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c,
-
7452  0x00, 0x00, 0x15, 0xa4, 0x00, 0x00, 0x14, 0xc0, 0x1b, 0x02, 0x00, 0x00,
-
7453  0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea,
-
7454  0x00, 0x00, 0x14, 0xc0, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7455  0x00, 0x00, 0x12, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7456  0x12, 0x32, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x38,
-
7457  0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x3e, 0x00, 0x00,
-
7458  0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x44, 0x00, 0x00, 0x18, 0x50,
-
7459  0x12, 0x74, 0x00, 0x00, 0x12, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7460  0x00, 0x00, 0x12, 0x50, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7461  0x12, 0x6e, 0x00, 0x00, 0x17, 0xea, 0x12, 0x74, 0x00, 0x00, 0x12, 0x56,
-
7462  0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x5c, 0x00, 0x00,
-
7463  0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x62, 0x00, 0x00, 0x18, 0x50,
-
7464  0x12, 0x74, 0x00, 0x00, 0x12, 0x68, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7465  0x00, 0x00, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7466  0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x7a,
-
7467  0x00, 0x00, 0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x80, 0x00, 0x00,
-
7468  0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50,
-
7469  0x00, 0x00, 0x12, 0x9e, 0x12, 0x8c, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00,
-
7470  0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e,
-
7471  0x12, 0x92, 0x12, 0x98, 0x15, 0xfe, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92,
-
7472  0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98,
-
7473  0x17, 0xea, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x16, 0x10,
-
7474  0x00, 0x00, 0x12, 0x9e, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7475  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7476  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
-
7477  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x08, 0x00, 0x00,
-
7478  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
-
7479  0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7480  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7481  0x1a, 0x26, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c,
-
7482  0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00,
-
7483  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4,
-
7484  0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7485  0x14, 0xc0, 0x12, 0xa4, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7486  0x12, 0xaa, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x94,
-
7487  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xaa, 0x14, 0xae,
-
7488  0x12, 0xda, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xb0, 0x14, 0xae, 0x14, 0xb4,
-
7489  0x14, 0xba, 0x14, 0xc0, 0x12, 0xb6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7490  0x14, 0xc0, 0x12, 0xbc, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7491  0x12, 0xc2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xc8,
-
7492  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xce, 0x14, 0xae,
-
7493  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xd4, 0x14, 0xae, 0x14, 0xb4,
-
7494  0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda, 0x14, 0xba,
-
7495  0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7496  0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
-
7497  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
-
7498  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda,
-
7499  0x14, 0xba, 0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7500  0x14, 0xc0, 0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7501  0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xec,
-
7502  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x88, 0x14, 0xae,
-
7503  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x16, 0x52, 0x14, 0xae, 0x14, 0xb4,
-
7504  0x14, 0xba, 0x14, 0xc0, 0x12, 0xf2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7505  0x14, 0xc0, 0x12, 0xf8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7506  0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
-
7507  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
-
7508  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4,
-
7509  0x14, 0xba, 0x14, 0xc0, 0x13, 0x04, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7510  0x14, 0xc0, 0x13, 0x0a, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7511  0x13, 0x10, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1a, 0x2c,
-
7512  0x00, 0x00, 0x18, 0x38, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
-
7513  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7514  0x00, 0x00, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7515  0x00, 0x00, 0x1b, 0x08, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7516  0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x13, 0x52,
-
7517  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
-
7518  0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50,
-
7519  0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00,
-
7520  0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
-
7521  0x13, 0xb2, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x16,
-
7522  0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x1c, 0x00, 0x00,
-
7523  0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x22, 0x00, 0x00, 0x18, 0x2c,
-
7524  0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x13, 0x28, 0x00, 0x00,
-
7525  0x00, 0x00, 0x13, 0xb8, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
-
7526  0x13, 0xac, 0x00, 0x00, 0x13, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34,
-
7527  0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00,
-
7528  0x13, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34, 0x00, 0x00, 0x13, 0x3a,
-
7529  0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7530  0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c,
-
7531  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1b, 0x08,
-
7532  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00,
-
7533  0x13, 0x46, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
-
7534  0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7535  0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x13, 0x4c,
-
7536  0x1a, 0x2c, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xd0,
-
7537  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x0e, 0x13, 0xa0,
-
7538  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x02, 0x13, 0xa0, 0x18, 0x50,
-
7539  0x13, 0xa6, 0x00, 0x00, 0x13, 0x52, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7540  0x00, 0x00, 0x13, 0xd6, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
-
7541  0x1a, 0x2c, 0x13, 0xa0, 0x17, 0xea, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xe8,
-
7542  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xee, 0x13, 0xa0,
-
7543  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x7c,
-
7544  0x13, 0x82, 0x00, 0x00, 0x13, 0x58, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82,
-
7545  0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x64, 0x13, 0x82, 0x00, 0x00,
-
7546  0x13, 0x6a, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x70,
-
7547  0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x76, 0x1b, 0x96,
-
7548  0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x88, 0x13, 0xa0, 0x18, 0x50,
-
7549  0x13, 0xa6, 0x00, 0x00, 0x1b, 0x3e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7550  0x00, 0x00, 0x13, 0xf4, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
-
7551  0x13, 0x8e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1a, 0x2c,
-
7552  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x94, 0x13, 0xa0,
-
7553  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xfa, 0x13, 0xa0, 0x18, 0x50,
-
7554  0x13, 0xa6, 0x00, 0x00, 0x13, 0x9a, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7555  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7556  0x13, 0xac, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb2,
-
7557  0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb8, 0x00, 0x00,
-
7558  0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xbe, 0x00, 0x00, 0x13, 0xca,
-
7559  0x00, 0x00, 0x00, 0x00, 0x13, 0xc4, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00,
-
7560  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7561  0x1a, 0x2c, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
-
7562  0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x02, 0x00, 0x00,
-
7563  0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd6, 0x00, 0x00, 0x14, 0x00,
-
7564  0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
-
7565  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x13, 0xe2, 0x00, 0x00, 0x00, 0x00,
-
7566  0x13, 0xe8, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xee,
-
7567  0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xf4, 0x00, 0x00,
-
7568  0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x14, 0x00,
-
7569  0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00,
-
7570  0x00, 0x00, 0x14, 0x06, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00,
-
7571  0x14, 0x0c, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x14, 0x12,
-
7572  0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00,
-
7573  0x14, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x14, 0x84, 0x00, 0x00, 0x18, 0x50,
-
7574  0x14, 0x9c, 0x00, 0x00, 0x14, 0x24, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7575  0x00, 0x00, 0x14, 0x2a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7576  0x14, 0x30, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x2a,
-
7577  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x30, 0x00, 0x00,
-
7578  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x36, 0x00, 0x00, 0x18, 0x50,
-
7579  0x14, 0x9c, 0x00, 0x00, 0x14, 0x3c, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7580  0x00, 0x00, 0x14, 0x48, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7581  0x14, 0x42, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x48,
-
7582  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x4e, 0x00, 0x00,
-
7583  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x54, 0x00, 0x00, 0x18, 0x50,
-
7584  0x14, 0x9c, 0x00, 0x00, 0x14, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7585  0x00, 0x00, 0x14, 0x60, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7586  0x14, 0x66, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x84,
-
7587  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x6c, 0x00, 0x00,
-
7588  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x72, 0x00, 0x00, 0x18, 0x50,
-
7589  0x14, 0x9c, 0x00, 0x00, 0x14, 0x78, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7590  0x00, 0x00, 0x14, 0x7e, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7591  0x14, 0x84, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x8a,
-
7592  0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x90, 0x00, 0x00,
-
7593  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x96, 0x00, 0x00, 0x18, 0x50,
-
7594  0x14, 0x9c, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x14, 0xa2, 0x00, 0x00,
-
7595  0x00, 0x00, 0x14, 0xa8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7596  0x14, 0xcc, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xd2,
-
7597  0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xc6, 0x00, 0x00,
-
7598  0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xcc, 0x00, 0x00, 0x14, 0xd8,
-
7599  0x00, 0x00, 0x00, 0x00, 0x14, 0xd2, 0x00, 0x00, 0x14, 0xd8, 0x00, 0x00,
-
7600  0x00, 0x00, 0x14, 0xde, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7601  0x14, 0xe4, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
-
7602  0x14, 0xf0, 0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0,
-
7603  0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x17, 0xea,
-
7604  0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x16, 0x10, 0x00, 0x00,
-
7605  0x14, 0xf6, 0x19, 0xde, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7606  0x14, 0xfc, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08,
-
7607  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x02, 0x00, 0x00,
-
7608  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08, 0x00, 0x00, 0x15, 0x0e,
-
7609  0x15, 0x62, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7610  0x00, 0x00, 0x15, 0x14, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7611  0x15, 0x1a, 0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x20,
-
7612  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x26, 0x00, 0x00,
-
7613  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x2c, 0x00, 0x00, 0x16, 0xca,
-
7614  0x15, 0x62, 0x00, 0x00, 0x15, 0x32, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7615  0x00, 0x00, 0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7616  0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde,
-
7617  0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x3e, 0x00, 0x00,
-
7618  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x44, 0x00, 0x00, 0x16, 0xca,
-
7619  0x15, 0x62, 0x00, 0x00, 0x15, 0x4a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7620  0x00, 0x00, 0x15, 0x50, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7621  0x15, 0x56, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x5c,
-
7622  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde, 0x00, 0x00,
-
7623  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x1a, 0xc0, 0x00, 0x00, 0x16, 0xca,
-
7624  0x15, 0x62, 0x00, 0x00, 0x15, 0x68, 0x00, 0x00, 0x15, 0x6e, 0x15, 0x74,
-
7625  0x00, 0x00, 0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
-
7626  0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x80,
-
7627  0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x86, 0x00, 0x00,
-
7628  0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x8c, 0x00, 0x00, 0x15, 0x9e,
-
7629  0x00, 0x00, 0x00, 0x00, 0x15, 0x92, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00,
-
7630  0x00, 0x00, 0x15, 0x98, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
-
7631  0x15, 0xb0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0,
-
7632  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00,
-
7633  0x15, 0xa4, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xaa, 0x00, 0x00, 0x18, 0x50,
-
7634  0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7635  0x15, 0xb6, 0x15, 0xc2, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7636  0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x1a, 0x1a,
-
7637  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x06, 0x00, 0x00,
-
7638  0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x90, 0x00, 0x00, 0x18, 0x50,
-
7639  0x15, 0xce, 0x00, 0x00, 0x17, 0x0c, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
-
7640  0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7641  0x15, 0xbc, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
-
7642  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2, 0x00, 0x00,
-
7643  0x17, 0xea, 0x15, 0xce, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7644  0x15, 0xce, 0x00, 0x00, 0x17, 0x18, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
-
7645  0x00, 0x00, 0x17, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7646  0x1a, 0xc6, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
-
7647  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc8, 0x00, 0x00,
-
7648  0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xd4, 0x00, 0x00, 0x15, 0xe6,
-
7649  0x00, 0x00, 0x00, 0x00, 0x15, 0xda, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00,
-
7650  0x00, 0x00, 0x15, 0xe0, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00, 0x00, 0x00,
-
7651  0x15, 0xec, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x15, 0xec,
-
7652  0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x15, 0xf2, 0x00, 0x00,
-
7653  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50,
-
7654  0x00, 0x00, 0x16, 0x88, 0x15, 0xf8, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00,
-
7655  0x16, 0x88, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00, 0x16, 0x88,
-
7656  0x16, 0x04, 0x16, 0x0a, 0x15, 0xfe, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04,
-
7657  0x16, 0x0a, 0x17, 0xea, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04, 0x16, 0x0a,
-
7658  0x16, 0x10, 0x00, 0x00, 0x16, 0x88, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50,
-
7659  0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7660  0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00,
-
7661  0x16, 0x16, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1c,
-
7662  0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
-
7663  0x16, 0x22, 0x00, 0x00, 0x00, 0x00, 0x16, 0x28, 0x00, 0x00, 0x17, 0xf6,
-
7664  0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x2e, 0x00, 0x00,
-
7665  0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x34, 0x00, 0x00, 0x00, 0x00,
-
7666  0x16, 0x3a, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
-
7667  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x8a, 0x16, 0x7c,
-
7668  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x06, 0x16, 0x7c, 0x18, 0x50,
-
7669  0x16, 0x82, 0x16, 0x88, 0x17, 0x90, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7670  0x16, 0x88, 0x16, 0x40, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7671  0x17, 0x90, 0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x16, 0x46,
-
7672  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x4c, 0x16, 0x7c,
-
7673  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x52, 0x16, 0x7c, 0x18, 0x50,
-
7674  0x16, 0x82, 0x16, 0x88, 0x17, 0x0c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7675  0x16, 0x88, 0x17, 0x96, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7676  0x17, 0x60, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x58,
-
7677  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c,
-
7678  0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c, 0x18, 0x50,
-
7679  0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7680  0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7681  0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a,
-
7682  0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c,
-
7683  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50,
-
7684  0x16, 0x82, 0x16, 0x88, 0x17, 0x6c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7685  0x16, 0x88, 0x17, 0x54, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7686  0x17, 0x5a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0xc6,
-
7687  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x5e, 0x16, 0x7c,
-
7688  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x64, 0x16, 0x7c, 0x18, 0x50,
-
7689  0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7690  0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7691  0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x6c,
-
7692  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x6a, 0x16, 0x7c,
-
7693  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x70, 0x16, 0x7c, 0x18, 0x50,
-
7694  0x16, 0x82, 0x16, 0x88, 0x16, 0x76, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7695  0x16, 0x88, 0x16, 0x8e, 0x00, 0x00, 0x16, 0x94, 0x00, 0x00, 0x00, 0x00,
-
7696  0x16, 0xc4, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9a,
-
7697  0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xa0, 0x00, 0x00,
-
7698  0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xa6,
-
7699  0x00, 0x00, 0x00, 0x00, 0x16, 0xac, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00,
-
7700  0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xb2, 0x00, 0x00, 0x00, 0x00,
-
7701  0x16, 0xb8, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4,
-
7702  0x00, 0x00, 0x16, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00,
-
7703  0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2,
-
7704  0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00,
-
7705  0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00, 0x17, 0x00,
-
7706  0x16, 0xee, 0x16, 0xf4, 0x16, 0xd0, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee,
-
7707  0x16, 0xf4, 0x16, 0xd6, 0x00, 0x00, 0x17, 0x00, 0x16, 0xdc, 0x16, 0xf4,
-
7708  0x16, 0xe2, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe8,
-
7709  0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xfa, 0x00, 0x00,
-
7710  0x17, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
-
7711  0x17, 0x8a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x06,
-
7712  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x90, 0x17, 0x78,
-
7713  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x0c, 0x17, 0x78, 0x17, 0x7e,
-
7714  0x17, 0x84, 0x00, 0x00, 0x17, 0x96, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
-
7715  0x00, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x12, 0x17, 0x84, 0x00, 0x00,
-
7716  0x17, 0x9c, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x18,
-
7717  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42,
-
7718  0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x1e, 0x17, 0x42, 0x17, 0x48,
-
7719  0x17, 0x4e, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42, 0x17, 0x2a, 0x17, 0x4e,
-
7720  0x00, 0x00, 0x17, 0x30, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00,
-
7721  0x17, 0x36, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x3c,
-
7722  0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x54, 0x17, 0x78,
-
7723  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x5a, 0x17, 0x78, 0x17, 0x7e,
-
7724  0x17, 0x84, 0x00, 0x00, 0x1a, 0xc6, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
-
7725  0x00, 0x00, 0x17, 0x60, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
-
7726  0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x66,
-
7727  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x6c, 0x17, 0x78,
-
7728  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x72, 0x17, 0x78, 0x17, 0x7e,
-
7729  0x17, 0x84, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7730  0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7731  0x17, 0x8a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x90,
-
7732  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x96, 0x00, 0x00,
-
7733  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7734  0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7735  0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
-
7736  0x17, 0xa2, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xa8,
-
7737  0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x90, 0x00, 0x00,
-
7738  0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xae, 0x00, 0x00, 0x17, 0xd8,
-
7739  0x00, 0x00, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xba, 0x00, 0x00,
-
7740  0x00, 0x00, 0x17, 0xc0, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
-
7741  0x17, 0xc6, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xcc,
-
7742  0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xd2, 0x00, 0x00,
-
7743  0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba, 0x00, 0x00, 0x18, 0x50,
-
7744  0x00, 0x00, 0x00, 0x00, 0x17, 0xde, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7745  0x00, 0x00, 0x17, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7746  0x19, 0xba, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba,
-
7747  0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
-
7748  0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e,
-
7749  0x00, 0x00, 0x00, 0x00, 0x17, 0xfc, 0x00, 0x00, 0x18, 0x02, 0x00, 0x00,
-
7750  0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7751  0x18, 0x14, 0x18, 0x1a, 0x18, 0x20, 0x00, 0x00, 0x18, 0x26, 0x1a, 0x2c,
-
7752  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00,
-
7753  0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00, 0x18, 0x38,
-
7754  0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x18, 0x44, 0x00, 0x00,
-
7755  0x00, 0x00, 0x18, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7756  0x18, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x5c,
-
7757  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
7758  0x18, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x18, 0x03, 0x60,
-
7759  0x00, 0x01, 0x00, 0xdd, 0x03, 0xbe, 0x00, 0x01, 0x00, 0xf8, 0x03, 0xa0,
-
7760  0x00, 0x01, 0x00, 0xf0, 0x03, 0x62, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1e,
-
7761  0x00, 0x01, 0x00, 0xfa, 0x03, 0x1b, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x93,
-
7762  0x00, 0x01, 0x00, 0xfa, 0x03, 0x98, 0x00, 0x01, 0x01, 0x93, 0x00, 0x00,
-
7763  0x00, 0x01, 0x01, 0x0e, 0x03, 0x09, 0x00, 0x01, 0x01, 0x0e, 0x02, 0xe8,
-
7764  0x00, 0x01, 0x01, 0x16, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xaa, 0x02, 0xda,
-
7765  0x00, 0x01, 0x01, 0x0d, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xdc, 0x03, 0x09,
-
7766  0x00, 0x01, 0x00, 0xf8, 0xff, 0x51, 0x00, 0x01, 0x00, 0xdc, 0x02, 0x6f,
-
7767  0x00, 0x01, 0x01, 0x05, 0x02, 0xe8, 0x00, 0x01, 0x01, 0x05, 0x03, 0x09,
-
7768  0x00, 0x01, 0x01, 0x05, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x05, 0x03, 0x1e,
-
7769  0x00, 0x01, 0x01, 0xa1, 0x02, 0xda, 0x00, 0x01, 0x01, 0x05, 0x03, 0xa8,
-
7770  0x00, 0x01, 0x01, 0x05, 0x03, 0x1b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x93,
-
7771  0x00, 0x01, 0x00, 0xf5, 0x03, 0x20, 0x00, 0x01, 0x01, 0x04, 0x03, 0x02,
-
7772  0x00, 0x01, 0x01, 0x04, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf2, 0x03, 0x1c,
-
7773  0x00, 0x01, 0x01, 0x0d, 0x03, 0x4b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x2c,
-
7774  0x00, 0x01, 0x01, 0x05, 0x03, 0x07, 0x00, 0x01, 0x01, 0x05, 0x03, 0x80,
-
7775  0x00, 0x01, 0x00, 0xf2, 0x03, 0xb4, 0x00, 0x01, 0x01, 0x05, 0x02, 0x6f,
-
7776  0x00, 0x01, 0x01, 0x05, 0x03, 0x0d, 0x00, 0x01, 0x01, 0xb5, 0x00, 0x08,
-
7777  0x00, 0x01, 0x01, 0x11, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x11, 0x03, 0x09,
-
7778  0x00, 0x01, 0x01, 0xac, 0x02, 0xda, 0x00, 0x01, 0x01, 0x11, 0x02, 0x6f,
-
7779  0x00, 0x01, 0x01, 0x0a, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x10, 0x02, 0xe4,
-
7780  0x00, 0x01, 0x01, 0x11, 0x03, 0x07, 0x00, 0x01, 0x01, 0x0a, 0x00, 0x00,
-
7781  0x00, 0x01, 0x00, 0xf1, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x0e,
-
7782  0x00, 0x01, 0x01, 0x8d, 0x02, 0xda, 0x00, 0x01, 0x00, 0xe1, 0x03, 0x20,
-
7783  0x00, 0x01, 0x00, 0xf0, 0x03, 0x02, 0x00, 0x01, 0x00, 0xf0, 0x03, 0x7b,
-
7784  0x00, 0x01, 0x00, 0xf0, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xde, 0x03, 0x1c,
-
7785  0x00, 0x01, 0x00, 0xf9, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x2c,
-
7786  0x00, 0x01, 0x00, 0xf1, 0x03, 0x07, 0x00, 0x01, 0x00, 0xf1, 0x02, 0x6f,
-
7787  0x00, 0x01, 0x01, 0x62, 0x00, 0x00, 0x00, 0x01, 0x01, 0x46, 0x02, 0x6f,
-
7788  0x00, 0x01, 0x01, 0xe2, 0x02, 0xda, 0x00, 0x01, 0x00, 0xef, 0x00, 0x00,
-
7789  0x00, 0x01, 0x00, 0xd2, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xd2, 0x02, 0x6f,
-
7790  0x00, 0x01, 0x00, 0xbb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x38,
-
7791  0x00, 0x01, 0x00, 0xfa, 0x03, 0x0f, 0x00, 0x01, 0x01, 0x96, 0x02, 0xdb,
-
7792  0x00, 0x01, 0x00, 0xfa, 0x03, 0xa9, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1c,
-
7793  0x00, 0x01, 0x00, 0xfa, 0x03, 0x94, 0x00, 0x01, 0x00, 0xea, 0x03, 0x21,
-
7794  0x00, 0x01, 0x00, 0xf9, 0x03, 0x03, 0x00, 0x01, 0x00, 0xf9, 0x03, 0x9c,
-
7795  0x00, 0x01, 0x00, 0xfa, 0x03, 0x7e, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x51,
-
7796  0x00, 0x01, 0x00, 0xe7, 0x03, 0x1d, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4c,
-
7797  0x00, 0x01, 0x00, 0xfa, 0x03, 0x2e, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x81,
-
7798  0x00, 0x01, 0x00, 0xe7, 0x03, 0xb5, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe9,
-
7799  0x00, 0x01, 0x00, 0xfa, 0x03, 0x87, 0x00, 0x01, 0x00, 0xf9, 0x03, 0xa2,
-
7800  0x00, 0x01, 0x00, 0xf5, 0x03, 0x9c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x5d,
-
7801  0x00, 0x01, 0x01, 0x03, 0x03, 0x09, 0x00, 0x01, 0x01, 0x02, 0x03, 0x7e,
-
7802  0x00, 0x01, 0x00, 0xf9, 0xff, 0x4c, 0x00, 0x01, 0x00, 0xf9, 0xfe, 0xed,
-
7803  0x00, 0x01, 0x01, 0x02, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf9, 0xff, 0x51,
-
7804  0x00, 0x01, 0x00, 0xfa, 0x02, 0x70, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x4c,
-
7805  0x00, 0x01, 0x00, 0xf4, 0x01, 0x38, 0x00, 0x01, 0x00, 0xea, 0x03, 0x20,
-
7806  0x00, 0x01, 0x00, 0xe0, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xe0, 0x02, 0x6f,
-
7807  0x00, 0x01, 0x00, 0xe0, 0xff, 0x51, 0x00, 0x01, 0x00, 0xcd, 0x03, 0x1c,
-
7808  0x00, 0x01, 0x00, 0xe8, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xe0, 0x03, 0x0d,
-
7809  0x00, 0x01, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x01, 0x01, 0xa0, 0x00, 0x0f,
-
7810  0x00, 0x01, 0x00, 0xfa, 0x03, 0x2d, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x9b,
-
7811  0x00, 0x01, 0x00, 0xfa, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x86,
-
7812  0x00, 0x01, 0x01, 0xc8, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x27, 0x00, 0x0a,
-
7813  0x00, 0x01, 0x01, 0x03, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe8,
-
7814  0x00, 0x01, 0x01, 0x9f, 0x02, 0xda, 0x00, 0x01, 0x01, 0x01, 0x03, 0x02,
-
7815  0x00, 0x01, 0x00, 0xf0, 0x03, 0x1c, 0x00, 0x01, 0x00, 0xfd, 0x00, 0x00,
-
7816  0x00, 0x01, 0x00, 0xfa, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x02,
-
7817  0x00, 0x01, 0x00, 0xf9, 0x02, 0xe4, 0x00, 0x01, 0x01, 0x03, 0xff, 0x51,
-
7818  0x00, 0x01, 0x00, 0xe7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4b,
-
7819  0x00, 0x01, 0x00, 0xfa, 0x03, 0x07, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0d,
-
7820  0x00, 0x01, 0x01, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0xe8,
-
7821  0x00, 0x01, 0x01, 0x04, 0x03, 0x09, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe4,
-
7822  0x00, 0x01, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0d, 0xff, 0x51,
-
7823  0x00, 0x01, 0x01, 0x07, 0x02, 0x6a, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x8b,
-
7824  0x00, 0x01, 0x00, 0xf8, 0x03, 0x23, 0x00, 0x01, 0x00, 0xf6, 0x03, 0x5b,
-
7825  0x00, 0x01, 0x00, 0xf8, 0x03, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb3,
-
7826  0x00, 0x01, 0x01, 0x8e, 0x02, 0x37, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xd2,
-
7827  0x00, 0x01, 0x00, 0xf8, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x08,
-
7828  0x00, 0x01, 0x00, 0xe8, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x60,
-
7829  0x00, 0x01, 0x00, 0xd2, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x00, 0x02, 0xa7,
-
7830  0x00, 0x01, 0x00, 0xf8, 0x02, 0x88, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x63,
-
7831  0x00, 0x01, 0x00, 0xf8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb9,
-
7832  0x00, 0x01, 0x01, 0x07, 0x03, 0x58, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x7f,
-
7833  0x00, 0x01, 0x01, 0x7d, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0x00, 0x00,
-
7834  0x00, 0x01, 0x00, 0xfd, 0x01, 0x3b, 0x00, 0x01, 0x01, 0x84, 0x02, 0x46,
-
7835  0x00, 0x01, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1d, 0x00, 0x0b,
-
7836  0x00, 0x01, 0x00, 0xfa, 0x01, 0x38, 0x00, 0x01, 0x01, 0x1b, 0x02, 0x5c,
-
7837  0x00, 0x01, 0x01, 0x1b, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x2a, 0x02, 0x6a,
-
7838  0x00, 0x01, 0x01, 0x1b, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xb0, 0x02, 0x37,
-
7839  0x00, 0x01, 0x01, 0x1b, 0x02, 0x60, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x00,
-
7840  0x00, 0x01, 0x01, 0xd6, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x68, 0x02, 0x28,
-
7841  0x00, 0x01, 0x01, 0x13, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x04, 0x02, 0x5c,
-
7842  0x00, 0x01, 0x01, 0x04, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x14, 0xff, 0x4c,
-
7843  0x00, 0x01, 0x01, 0x04, 0x02, 0xb3, 0x00, 0x01, 0x01, 0x99, 0x02, 0x37,
-
7844  0x00, 0x01, 0x01, 0x04, 0x02, 0xd2, 0x00, 0x01, 0x01, 0x04, 0x03, 0x2c,
-
7845  0x00, 0x01, 0x01, 0x04, 0x03, 0x08, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7c,
-
7846  0x00, 0x01, 0x01, 0x04, 0x02, 0x60, 0x00, 0x01, 0x00, 0xde, 0x02, 0xa3,
-
7847  0x00, 0x01, 0x01, 0x0b, 0x02, 0xa7, 0x00, 0x01, 0x01, 0x04, 0x02, 0x88,
-
7848  0x00, 0x01, 0x01, 0x04, 0x02, 0x63, 0x00, 0x01, 0x01, 0x13, 0x03, 0x02,
-
7849  0x00, 0x01, 0x00, 0xde, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x3b, 0x00, 0x09,
-
7850  0x00, 0x01, 0x00, 0xe0, 0x01, 0xcc, 0x00, 0x01, 0x00, 0xf0, 0x00, 0x01,
-
7851  0x00, 0x01, 0x00, 0xb9, 0x01, 0xc3, 0x00, 0x01, 0x00, 0xe4, 0x01, 0xcb,
-
7852  0x00, 0x01, 0x00, 0xe4, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x79, 0x02, 0x37,
-
7853  0x00, 0x01, 0x00, 0xe4, 0x03, 0x2a, 0x00, 0x01, 0x00, 0xe4, 0x02, 0x60,
-
7854  0x00, 0x01, 0x00, 0xe4, 0x02, 0x63, 0x00, 0x01, 0x00, 0xf0, 0xff, 0x5d,
-
7855  0x00, 0x01, 0x00, 0xfa, 0xff, 0x41, 0x00, 0x01, 0x01, 0x12, 0x03, 0x06,
-
7856  0x00, 0x01, 0x00, 0x76, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x84, 0x02, 0x26,
-
7857  0x00, 0x01, 0x01, 0x0a, 0x02, 0xff, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x60,
-
7858  0x00, 0x01, 0x00, 0xfa, 0x02, 0x61, 0x00, 0x01, 0x01, 0x59, 0x00, 0x00,
-
7859  0x00, 0x01, 0x01, 0x44, 0x02, 0x60, 0x00, 0x01, 0x01, 0x44, 0x01, 0xcb,
-
7860  0x00, 0x01, 0x01, 0xda, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x42,
-
7861  0x00, 0x01, 0x00, 0x69, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x6b, 0x01, 0xcb,
-
7862  0x00, 0x01, 0x00, 0xfa, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0xed,
-
7863  0x00, 0x01, 0x00, 0xfa, 0x02, 0x9b, 0x00, 0x01, 0x01, 0xe0, 0x01, 0xcb,
-
7864  0x00, 0x01, 0x00, 0xfa, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x17, 0x02, 0x6a,
-
7865  0x00, 0x01, 0x01, 0x08, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x04, 0xfe, 0xed,
-
7866  0x00, 0x01, 0x01, 0x08, 0x02, 0x60, 0x00, 0x01, 0x01, 0x04, 0xff, 0x51,
-
7867  0x00, 0x01, 0x01, 0x04, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x08, 0x02, 0x7f,
-
7868  0x00, 0x01, 0x00, 0xfa, 0x02, 0xb3, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xd2,
-
7869  0x00, 0x01, 0x00, 0xfb, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x08,
-
7870  0x00, 0x01, 0x00, 0xfa, 0x02, 0xf8, 0x00, 0x01, 0x01, 0x09, 0x03, 0x02,
-
7871  0x00, 0x01, 0x00, 0xd4, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x0a, 0x03, 0x1e,
-
7872  0x00, 0x01, 0x00, 0xfb, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x17,
-
7873  0x00, 0x01, 0x01, 0x68, 0x01, 0xb6, 0x00, 0x01, 0x01, 0x1f, 0x00, 0x0f,
-
7874  0x00, 0x01, 0x00, 0xfa, 0x00, 0xe6, 0x00, 0x01, 0x01, 0x0e, 0x01, 0xcb,
-
7875  0x00, 0x01, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x01, 0x01, 0x2f, 0x02, 0x6a,
-
7876  0x00, 0x01, 0x01, 0x20, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x14, 0xfe, 0xed,
-
7877  0x00, 0x01, 0x01, 0x10, 0x02, 0x7c, 0x00, 0x01, 0x01, 0x14, 0xff, 0x51,
-
7878  0x00, 0x01, 0x01, 0x20, 0x02, 0x88, 0x00, 0x01, 0x01, 0x14, 0xff, 0x5a,
-
7879  0x00, 0x01, 0x01, 0x20, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x14, 0x00, 0x00,
-
7880  0x00, 0x01, 0x01, 0x02, 0xff, 0x4c, 0x00, 0x01, 0x01, 0x02, 0xfe, 0xed,
-
7881  0x00, 0x01, 0x00, 0xed, 0x02, 0xdd, 0x00, 0x01, 0x01, 0x02, 0x00, 0x00,
-
7882  0x00, 0x01, 0x01, 0x02, 0xff, 0x51, 0x00, 0x01, 0x00, 0xec, 0x02, 0x48,
-
7883  0x00, 0x01, 0x01, 0x34, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x02, 0xff, 0x5a,
-
7884  0x00, 0x01, 0x00, 0xd4, 0x01, 0x34, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x8b,
-
7885  0x00, 0x01, 0x00, 0xea, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xe5, 0xff, 0x51,
-
7886  0x00, 0x01, 0x01, 0x02, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xf7, 0x02, 0x6a,
-
7887  0x00, 0x01, 0x00, 0xe8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xd6, 0xff, 0x51,
-
7888  0x00, 0x01, 0x00, 0xc2, 0x02, 0xa3, 0x00, 0x01, 0x00, 0xf0, 0x02, 0xa7,
-
7889  0x00, 0x01, 0x00, 0xe0, 0x02, 0x62, 0x00, 0x01, 0x01, 0x7c, 0x01, 0xcb,
-
7890  0x00, 0x01, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x01, 0x01, 0x53, 0x00, 0x00,
-
7891  0x00, 0x01, 0x01, 0x1a, 0x02, 0xbe, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x88,
-
7892  0x00, 0x01, 0x00, 0xfb, 0x02, 0xf8, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xb9,
-
7893  0x00, 0x01, 0x00, 0xfa, 0x02, 0x7f, 0x00, 0x01, 0x01, 0x09, 0x03, 0x1e,
-
7894  0x00, 0x01, 0x01, 0xb2, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xe5, 0x00, 0x00,
-
7895  0x00, 0x01, 0x01, 0x74, 0x00, 0x00, 0x00, 0x01, 0x01, 0x09, 0x02, 0x6a,
-
7896  0x00, 0x01, 0x01, 0x90, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x60,
-
7897  0x00, 0x01, 0x00, 0xd4, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x0e, 0x02, 0x6a,
-
7898  0x00, 0x01, 0x01, 0x94, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x60,
-
7899  0x00, 0x01, 0x00, 0xfe, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x77, 0xff, 0x51,
-
7900  0x00, 0x01, 0x00, 0xd8, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x06, 0x02, 0xa7,
-
7901  0x00, 0x01, 0x00, 0xfe, 0x02, 0x63, 0x00, 0x01, 0x00, 0xff, 0x02, 0x7f,
-
7902  0x00, 0x01, 0x01, 0x77, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6a,
-
7903  0x00, 0x01, 0x00, 0xfb, 0x02, 0x5c, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x51,
-
7904  0x00, 0x01, 0x01, 0x08, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x04, 0x00, 0x00,
-
7905  0x00, 0x01, 0x01, 0x1b, 0x01, 0xf6, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x2b,
-
7906  0x00, 0x01, 0x01, 0x0e, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x16, 0x00, 0x00,
-
7907  0x00, 0x01, 0x00, 0xe9, 0x01, 0xda, 0x00, 0x01, 0x01, 0x9a, 0x01, 0xda,
-
7908  0x00, 0x01, 0x00, 0xe9, 0x00, 0x6d, 0x00, 0x01, 0x01, 0x42, 0x02, 0x24,
-
7909  0x00, 0x01, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x6f,
-
7910  0x00, 0x01, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0x6f,
-
7911  0x00, 0x01, 0x00, 0x87, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0x02, 0x6f,
-
7912  0x00, 0x01, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7b,
-
7913  0x00, 0x01, 0x00, 0xe5, 0x02, 0x6a, 0x00, 0x01, 0x00, 0x51, 0x02, 0xce,
-
7914  0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01,
-
7915  0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x54, 0x00, 0x01,
-
7916  0x00, 0x06, 0x03, 0x8a, 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f,
-
7917  0x03, 0x90, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x20,
-
7918  0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x32,
-
7919  0x00, 0x00, 0x00, 0x32, 0x00, 0x01, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x01,
-
7920  0x00, 0xfc, 0x00, 0x00, 0x00, 0x01, 0x00, 0xed, 0x00, 0x00, 0x00, 0x01,
-
7921  0x01, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x06,
-
7922  0x00, 0x0e, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2c,
-
7923  0x00, 0x01, 0x00, 0xf1, 0xff, 0x51, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x5a,
-
7924  0x00, 0x01, 0x00, 0xed, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x0f, 0xff, 0x4c,
-
7925  0x00, 0x01, 0x00, 0xf8, 0xff, 0x41, 0x00, 0x01, 0x00, 0xf8, 0xff, 0x5a,
-
7926  0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x01,
-
7927  0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x02,
-
7928  0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
-
7929  0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x25, 0x00, 0x00,
-
7930  0x00, 0x96, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00,
-
7931  0x00, 0xa8, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00,
-
7932  0x00, 0xf0, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
-
7933  0x00, 0xba, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00,
-
7934  0x00, 0xc6, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00,
-
7935  0x01, 0x14, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00,
-
7936  0x00, 0xd8, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00,
-
7937  0x01, 0x08, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00,
-
7938  0x01, 0x02, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00,
-
7939  0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
-
7940  0x00, 0xf0, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00,
-
7941  0x01, 0x02, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x0e, 0x00, 0x00,
-
7942  0x01, 0x14, 0x00, 0x01, 0x00, 0xfb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xff,
-
7943  0x01, 0xcb, 0x00, 0x01, 0x01, 0x05, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x09,
-
7944  0x01, 0xcb, 0x00, 0x01, 0x00, 0xf3, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf9,
-
7945  0x01, 0xcc, 0x00, 0x01, 0x01, 0x04, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xed,
-
7946  0x01, 0xcc, 0x00, 0x01, 0x01, 0x0b, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xec,
-
7947  0x01, 0xd3, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x0d,
-
7948  0x02, 0x6f, 0x00, 0x01, 0x01, 0x20, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x02,
-
7949  0x01, 0xcb, 0x00, 0x01, 0x01, 0x06, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x00,
-
7950  0x01, 0xcb, 0x00, 0x01, 0x00, 0xfa, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x01,
-
7951  0x01, 0xcb, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfa,
-
7952  0x02, 0x6f, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfb,
-
7953  0x02, 0x6f, 0x00, 0x25, 0x00, 0x4c, 0x00, 0x52, 0x00, 0x58, 0x00, 0x5e,
-
7954  0x00, 0x64, 0x00, 0x6a, 0x00, 0x70, 0x00, 0x76, 0x00, 0x7c, 0x00, 0x82,
-
7955  0x00, 0x88, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x9a, 0x00, 0xa0, 0x00, 0xa6,
-
7956  0x00, 0xac, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xbe, 0x00, 0xc4, 0x00, 0xca,
-
7957  0x00, 0xd0, 0x00, 0xd6, 0x00, 0xdc, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe8,
-
7958  0x00, 0xee, 0x00, 0xf4, 0x00, 0xfa, 0x01, 0x00, 0x01, 0x06, 0x01, 0x0c,
-
7959  0x01, 0x12, 0x01, 0x18, 0x01, 0x1e, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x60,
-
7960  0x00, 0x01, 0x00, 0xff, 0x02, 0x60, 0x00, 0x01, 0x00, 0xdf, 0x02, 0xa3,
-
7961  0x00, 0x01, 0x01, 0x18, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x13, 0x02, 0xbe,
-
7962  0x00, 0x01, 0x01, 0x8f, 0x02, 0x38, 0x00, 0x01, 0x01, 0x00, 0x02, 0x5c,
-
7963  0x00, 0x01, 0x01, 0x02, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb9,
-
7964  0x00, 0x01, 0x01, 0x04, 0x02, 0x7f, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x63,
-
7965  0x00, 0x01, 0x00, 0xf5, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x7c,
-
7966  0x00, 0x01, 0x01, 0x00, 0x02, 0x88, 0x00, 0x01, 0x00, 0xec, 0x03, 0x32,
-
7967  0x00, 0x01, 0x00, 0xf9, 0x03, 0x02, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe4,
-
7968  0x00, 0x01, 0x00, 0xf7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x0d, 0x02, 0xe8,
-
7969  0x00, 0x01, 0x01, 0x20, 0x03, 0x2d, 0x00, 0x01, 0x01, 0x96, 0x02, 0xda,
-
7970  0x00, 0x01, 0x00, 0xfa, 0x03, 0x09, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0e,
-
7971  0x00, 0x01, 0x00, 0xfb, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x0d,
-
7972  0x00, 0x01, 0x01, 0x02, 0x03, 0x23, 0x00, 0x01, 0x01, 0x00, 0x03, 0x5b,
-
7973  0x00, 0x01, 0x01, 0x06, 0x03, 0x0b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb3,
-
7974  0x00, 0x01, 0x01, 0x00, 0x02, 0xd2, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2c,
-
7975  0x00, 0x01, 0x01, 0x01, 0x03, 0x08, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x1e,
-
7976  0x00, 0x01, 0x00, 0xfa, 0x03, 0xa8, 0x00, 0x01, 0x00, 0xfe, 0x03, 0x1b,
-
7977  0x00, 0x01, 0x00, 0xfb, 0x03, 0x93, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01,
-
7978  0x00, 0x0a, 0x00, 0x02, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01,
-
7979  0x00, 0x14, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x02, 0x03, 0x89, 0x03, 0xaa,
-
7980  0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x02,
-
7981  0x00, 0x06, 0x00, 0x0c, 0x00, 0x01, 0x01, 0x88, 0x01, 0xcc, 0x00, 0x01,
-
7982  0x01, 0x9a, 0x02, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x01, 0xc8,
-
7983  0x02, 0xf8, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
-
7984  0x74, 0x6e, 0x00, 0x36, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
-
7985  0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
-
7986  0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
-
7987  0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x34, 0x00, 0x08,
-
7988  0x41, 0x5a, 0x45, 0x20, 0x00, 0x58, 0x43, 0x41, 0x54, 0x20, 0x00, 0x7e,
-
7989  0x43, 0x52, 0x54, 0x20, 0x00, 0xa4, 0x4b, 0x41, 0x5a, 0x20, 0x00, 0xca,
-
7990  0x4d, 0x4f, 0x4c, 0x20, 0x00, 0xf0, 0x52, 0x4f, 0x4d, 0x20, 0x01, 0x16,
-
7991  0x54, 0x41, 0x54, 0x20, 0x01, 0x3c, 0x54, 0x52, 0x4b, 0x20, 0x01, 0x62,
-
7992  0x00, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03,
-
7993  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
-
7994  0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
-
7995  0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
-
7996  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x10,
-
7997  0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
-
7998  0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
-
7999  0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0f,
-
8000  0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
-
8001  0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00,
-
8002  0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x09,
-
8003  0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14,
-
8004  0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10,
-
8005  0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06,
-
8006  0x00, 0x0a, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
-
8007  0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff,
-
8008  0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
-
8009  0x00, 0x06, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12,
-
8010  0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00,
-
8011  0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04,
-
8012  0x00, 0x05, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
-
8013  0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
-
8014  0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
-
8015  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x0f, 0x00, 0x10,
-
8016  0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
-
8017  0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
-
8018  0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x0f,
-
8019  0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
-
8020  0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x61, 0x61, 0x6c, 0x74, 0x00, 0x92,
-
8021  0x63, 0x61, 0x73, 0x65, 0x00, 0x9a, 0x63, 0x63, 0x6d, 0x70, 0x00, 0xa0,
-
8022  0x63, 0x63, 0x6d, 0x70, 0x00, 0xa8, 0x64, 0x6c, 0x69, 0x67, 0x00, 0xb2,
-
8023  0x64, 0x6e, 0x6f, 0x6d, 0x00, 0xb8, 0x66, 0x72, 0x61, 0x63, 0x00, 0xbe,
-
8024  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xc8, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xce,
-
8025  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xd4, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xda,
-
8026  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe0, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe6,
-
8027  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xec, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xf2,
-
8028  0x6e, 0x75, 0x6d, 0x72, 0x00, 0xf8, 0x6f, 0x72, 0x64, 0x6e, 0x00, 0xfe,
-
8029  0x73, 0x61, 0x6c, 0x74, 0x01, 0x06, 0x73, 0x73, 0x30, 0x31, 0x01, 0x0c,
-
8030  0x73, 0x73, 0x30, 0x32, 0x01, 0x12, 0x73, 0x73, 0x30, 0x33, 0x01, 0x18,
-
8031  0x73, 0x75, 0x62, 0x73, 0x01, 0x1e, 0x73, 0x75, 0x70, 0x73, 0x01, 0x24,
-
8032  0x7a, 0x65, 0x72, 0x6f, 0x01, 0x2a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
-
8033  0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x02,
-
8034  0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x05,
-
8035  0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01,
-
8036  0x00, 0x16, 0x00, 0x00, 0x00, 0x03, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19,
-
8037  0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09,
-
8038  0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e,
-
8039  0x00, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0c,
-
8040  0x00, 0x00, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10,
-
8041  0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1c,
-
8042  0x00, 0x1e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01,
-
8043  0x00, 0x23, 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01,
-
8044  0x00, 0x25, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01,
-
8045  0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0x00, 0x26, 0x00, 0x4e,
-
8046  0x01, 0x28, 0x01, 0xfe, 0x02, 0x88, 0x02, 0x88, 0x02, 0xf8, 0x05, 0x8e,
-
8047  0x05, 0x8e, 0x03, 0x36, 0x03, 0xb2, 0x03, 0xf0, 0x03, 0xf0, 0x04, 0x04,
-
8048  0x04, 0x04, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26,
-
8049  0x04, 0x3a, 0x04, 0x48, 0x04, 0x9e, 0x04, 0x7c, 0x04, 0x8a, 0x04, 0x9e,
-
8050  0x04, 0xac, 0x04, 0xea, 0x04, 0xea, 0x05, 0x02, 0x05, 0x4a, 0x05, 0x6c,
-
8051  0x05, 0x8e, 0x05, 0xee, 0x06, 0x5a, 0x06, 0x72, 0x06, 0x72, 0x06, 0x90,
-
8052  0x06, 0xb6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8053  0x00, 0x6a, 0x00, 0x32, 0x01, 0xd5, 0x01, 0xd6, 0x00, 0xad, 0x00, 0xb7,
-
8054  0x01, 0xd5, 0x01, 0x4a, 0x01, 0xd6, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xf0,
-
8055  0x01, 0xf1, 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6,
-
8056  0x01, 0xf7, 0x01, 0xf8, 0x02, 0x29, 0x02, 0x2a, 0x02, 0x0d, 0x02, 0x45,
-
8057  0x02, 0x46, 0x02, 0x6b, 0x02, 0x88, 0x02, 0x89, 0x03, 0xa0, 0x03, 0xa1,
-
8058  0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7,
-
8059  0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad,
-
8060  0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
-
8061  0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf, 0x03, 0xc0, 0x00, 0x01, 0x00, 0x32,
-
8062  0x00, 0x01, 0x00, 0x78, 0x00, 0xab, 0x00, 0xb6, 0x00, 0xe8, 0x01, 0x49,
-
8063  0x01, 0x63, 0x01, 0x98, 0x01, 0xa2, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc,
-
8064  0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
-
8065  0x02, 0x22, 0x02, 0x24, 0x02, 0x27, 0x02, 0x43, 0x02, 0x44, 0x02, 0x6d,
-
8066  0x02, 0x78, 0x02, 0x7a, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d,
-
8067  0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83,
-
8068  0x03, 0x89, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97,
-
8069  0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c, 0x03, 0xb9, 0x03, 0xba,
-
8070  0x03, 0xbb, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8071  0x00, 0x01, 0x00, 0xac, 0x00, 0x0f, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x38,
-
8072  0x00, 0x42, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x60, 0x00, 0x6a, 0x00, 0x74,
-
8073  0x00, 0x7e, 0x00, 0x88, 0x00, 0x92, 0x00, 0x98, 0x00, 0x9e, 0x00, 0xa6,
-
8074  0x00, 0x02, 0x01, 0x3a, 0x01, 0x41, 0x00, 0x06, 0x01, 0xe3, 0x01, 0xe4,
-
8075  0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x04, 0x01, 0xe6,
-
8076  0x01, 0xf0, 0x01, 0xfa, 0x02, 0x04, 0x00, 0x04, 0x01, 0xe7, 0x01, 0xf1,
-
8077  0x01, 0xfb, 0x02, 0x05, 0x00, 0x04, 0x01, 0xe8, 0x01, 0xf2, 0x01, 0xfc,
-
8078  0x02, 0x06, 0x00, 0x04, 0x01, 0xe9, 0x01, 0xf3, 0x01, 0xfd, 0x02, 0x07,
-
8079  0x00, 0x04, 0x01, 0xea, 0x01, 0xf4, 0x01, 0xfe, 0x02, 0x08, 0x00, 0x04,
-
8080  0x01, 0xeb, 0x01, 0xf5, 0x01, 0xff, 0x02, 0x09, 0x00, 0x04, 0x01, 0xec,
-
8081  0x01, 0xf6, 0x02, 0x00, 0x02, 0x0a, 0x00, 0x04, 0x01, 0xed, 0x01, 0xf7,
-
8082  0x02, 0x01, 0x02, 0x0b, 0x00, 0x04, 0x01, 0xee, 0x01, 0xf8, 0x02, 0x02,
-
8083  0x02, 0x0c, 0x00, 0x02, 0x02, 0x11, 0x02, 0x15, 0x00, 0x02, 0x02, 0x12,
-
8084  0x02, 0x16, 0x00, 0x03, 0x01, 0xef, 0x02, 0x13, 0x02, 0x17, 0x00, 0x02,
-
8085  0x02, 0x14, 0x02, 0x18, 0x00, 0x01, 0x00, 0x0f, 0x01, 0x39, 0x01, 0xd9,
-
8086  0x01, 0xda, 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, 0x01, 0xdf,
-
8087  0x01, 0xe0, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9,
-
8088  0x02, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x20,
-
8089  0x00, 0x56, 0x00, 0x68, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26,
-
8090  0x00, 0x01, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
-
8091  0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x2c,
-
8092  0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x01, 0x39,
-
8093  0x01, 0x49, 0x00, 0x02, 0x00, 0x02, 0x03, 0x89, 0x03, 0x8b, 0x00, 0x00,
-
8094  0x03, 0x8d, 0x03, 0x92, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x03, 0x7a,
-
8095  0x03, 0x88, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x03, 0x78, 0x00, 0x01,
-
8096  0x03, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
-
8097  0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x03, 0x66, 0x00, 0x00, 0x00, 0x01,
-
8098  0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xe6,
-
8099  0x00, 0x00, 0x01, 0xd8, 0x01, 0xd8, 0x00, 0xe6, 0x00, 0x01, 0x00, 0x00,
-
8100  0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x3a, 0x00, 0x1a, 0x01, 0x3a,
-
8101  0x01, 0x4a, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4,
-
8102  0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa,
-
8103  0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0,
-
8104  0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
-
8105  0x03, 0xc0, 0x00, 0x02, 0x00, 0x07, 0x01, 0x39, 0x01, 0x39, 0x00, 0x00,
-
8106  0x01, 0x49, 0x01, 0x49, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x83, 0x00, 0x02,
-
8107  0x03, 0x89, 0x03, 0x89, 0x00, 0x0c, 0x03, 0x93, 0x03, 0x97, 0x00, 0x0d,
-
8108  0x03, 0x99, 0x03, 0x9c, 0x00, 0x12, 0x03, 0xb9, 0x03, 0xbc, 0x00, 0x16,
-
8109  0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x03,
-
8110  0x00, 0x00, 0x00, 0x01, 0x02, 0xca, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01,
-
8111  0x00, 0x00, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01,
-
8112  0x02, 0xb8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02,
-
8113  0x00, 0x02, 0x03, 0xa0, 0x03, 0xb3, 0x00, 0x00, 0x03, 0xbd, 0x03, 0xc0,
-
8114  0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8115  0x00, 0x6a, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x2e, 0x00, 0x50, 0x00, 0x04,
-
8116  0x00, 0x0a, 0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb9, 0x00, 0x02,
-
8117  0x03, 0x7d, 0x03, 0xba, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xbb, 0x00, 0x02,
-
8118  0x03, 0x85, 0x03, 0xbc, 0x00, 0x02, 0x03, 0x83, 0x00, 0x04, 0x00, 0x0a,
-
8119  0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb5, 0x00, 0x02, 0x03, 0x7d,
-
8120  0x03, 0xb6, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xb7, 0x00, 0x02, 0x03, 0x85,
-
8121  0x03, 0xb8, 0x00, 0x02, 0x03, 0x83, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0e,
-
8122  0x00, 0x14, 0x03, 0xbd, 0x00, 0x02, 0x03, 0xa3, 0x03, 0xbe, 0x00, 0x02,
-
8123  0x03, 0xa2, 0x03, 0xc0, 0x00, 0x02, 0x03, 0xa9, 0x00, 0x01, 0x00, 0x03,
-
8124  0x03, 0x7f, 0x03, 0x81, 0x03, 0xa5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
-
8125  0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01,
-
8126  0x00, 0x42, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a,
-
8127  0x00, 0x01, 0x00, 0x01, 0x01, 0x4f, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14,
-
8128  0x00, 0x01, 0x00, 0x28, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00,
-
8129  0x00, 0x0b, 0x00, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x01, 0x00, 0x00,
-
8130  0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x07, 0x00, 0x01,
-
8131  0x00, 0x01, 0x02, 0x22, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8132  0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xad, 0x00, 0xb7, 0x01, 0x9a,
-
8133  0x01, 0xa3, 0x00, 0x01, 0x00, 0x04, 0x00, 0xab, 0x00, 0xb6, 0x01, 0x98,
-
8134  0x01, 0xa2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8135  0x00, 0x06, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x01, 0x39, 0x00, 0x01,
-
8136  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf6, 0x00, 0x0c,
-
8137  0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1c,
-
8138  0x00, 0x0b, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07,
-
8139  0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x6b,
-
8140  0x00, 0x02, 0x00, 0x02, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x02, 0x6d,
-
8141  0x02, 0x6d, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8142  0x00, 0x01, 0x00, 0xb4, 0x00, 0x16, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8143  0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xe6, 0x00, 0x01, 0x00, 0x01,
-
8144  0x02, 0x27, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8145  0x00, 0x92, 0x00, 0x20, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a,
-
8146  0x00, 0x22, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x42,
-
8147  0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x01,
-
8148  0x02, 0x0d, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x2a,
-
8149  0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x02, 0x00, 0x01,
-
8150  0x01, 0xef, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8151  0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xf6, 0x00, 0x02, 0x00, 0x01,
-
8152  0x01, 0xf9, 0x02, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
-
8153  0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x2c, 0x00, 0x01,
-
8154  0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x01,
-
8155  0x00, 0x02, 0x00, 0x01, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12,
-
8156  0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d,
-
8157  0x00, 0x02, 0x00, 0x01, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x00, 0x01,
-
8158  0x00, 0x02, 0x00, 0x78, 0x01, 0x63, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8159  0x00, 0x08, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x01, 0xd5, 0x01, 0xd6,
-
8160  0x01, 0xd5, 0x01, 0xd6, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x78,
-
8161  0x00, 0xe8, 0x01, 0x63, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8162  0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04,
-
8163  0x03, 0x5c, 0x00, 0x03, 0x01, 0x63, 0x02, 0x19, 0x00, 0x01, 0x00, 0x01,
-
8164  0x00, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8165  0x00, 0x36, 0x00, 0x18, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3,
-
8166  0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9,
-
8167  0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf,
-
8168  0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe,
-
8169  0x03, 0xbf, 0x03, 0xc0, 0x00, 0x02, 0x00, 0x05, 0x03, 0x7a, 0x03, 0x83,
-
8170  0x00, 0x00, 0x03, 0x89, 0x03, 0x89, 0x00, 0x0a, 0x03, 0x93, 0x03, 0x97,
-
8171  0x00, 0x0b, 0x03, 0x99, 0x03, 0x9c, 0x00, 0x10, 0x03, 0xb9, 0x03, 0xbc,
-
8172  0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8173  0x00, 0x56, 0x00, 0x05, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x26, 0x00, 0x3a,
-
8174  0x00, 0x44, 0x00, 0x01, 0x00, 0x04, 0x02, 0x48, 0x00, 0x03, 0x02, 0x70,
-
8175  0x02, 0x70, 0x00, 0x01, 0x00, 0x04, 0x02, 0x47, 0x00, 0x02, 0x02, 0x72,
-
8176  0x00, 0x02, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x69, 0x00, 0x03, 0x02, 0x70,
-
8177  0x02, 0x70, 0x03, 0x6a, 0x00, 0x02, 0x02, 0x72, 0x00, 0x01, 0x00, 0x04,
-
8178  0x03, 0x6b, 0x00, 0x02, 0x02, 0x70, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0c,
-
8179  0x03, 0x6d, 0x00, 0x02, 0x02, 0x70, 0x03, 0x6c, 0x00, 0x02, 0x02, 0x31,
-
8180  0x00, 0x01, 0x00, 0x05, 0x02, 0x1e, 0x02, 0x31, 0x02, 0x70, 0x02, 0x72,
-
8181  0x02, 0x73, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8182  0x00, 0x46, 0x00, 0x05, 0x01, 0xe3, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17,
-
8183  0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8184  0x00, 0x0c, 0x00, 0x03, 0x02, 0x2a, 0x02, 0x88, 0x02, 0x89, 0x00, 0x01,
-
8185  0x00, 0x03, 0x02, 0x24, 0x02, 0x78, 0x02, 0x7a, 0x00, 0x01, 0x00, 0x00,
-
8186  0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x10, 0x00, 0x05, 0x01, 0xe4,
-
8187  0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x00, 0x01, 0x00, 0x05,
-
8188  0x01, 0xd9, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x01,
-
8189  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02,
-
8190  0x00, 0x01, 0x00, 0x02, 0x02, 0x43, 0x02, 0x44, 0x00, 0x01, 0x00, 0x01,
-
8191  0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x14, 0x00, 0x02, 0x00, 0x00,
-
8192  0x00, 0x24, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x01,
-
8193  0x77, 0x64, 0x74, 0x68, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10,
-
8194  0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x01, 0x50, 0x00, 0x64, 0x00, 0x00,
-
8195  0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x58, 0x01, 0xf4, 0x00, 0x00};
+Go to the documentation of this file.
1#include <array>
+
2
+
3static std::array<unsigned char, 98304> const INCONSOLATA_MEDIUM_TTF{
+
4 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x01, 0x00, 0x00, 0x04, 0x00, 0x20,
+
5 0x47, 0x44, 0x45, 0x46, 0x56, 0xb3, 0x54, 0x99, 0x00, 0x01, 0x57, 0x10,
+
6 0x00, 0x00, 0x01, 0x34, 0x47, 0x50, 0x4f, 0x53, 0x88, 0x2b, 0x49, 0x3f,
+
7 0x00, 0x01, 0x58, 0x44, 0x00, 0x00, 0x1d, 0xb8, 0x47, 0x53, 0x55, 0x42,
+
8 0x16, 0xda, 0x4e, 0xfc, 0x00, 0x01, 0x75, 0xfc, 0x00, 0x00, 0x09, 0xc4,
+
9 0x4f, 0x53, 0x2f, 0x32, 0x5f, 0xf9, 0x23, 0x31, 0x00, 0x01, 0x0d, 0x0c,
+
10 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, 0xf3, 0x5b, 0xdf, 0xaf,
+
11 0x00, 0x01, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x40, 0x63, 0x6d, 0x61, 0x70,
+
12 0x2d, 0x65, 0xdc, 0x7a, 0x00, 0x01, 0x0d, 0x6c, 0x00, 0x00, 0x0a, 0x40,
+
13 0x63, 0x76, 0x74, 0x20, 0x16, 0xeb, 0x0d, 0xba, 0x00, 0x01, 0x29, 0xfc,
+
14 0x00, 0x00, 0x00, 0xf0, 0x66, 0x70, 0x67, 0x6d, 0xe2, 0x19, 0x9e, 0x5a,
+
15 0x00, 0x01, 0x17, 0xac, 0x00, 0x00, 0x0f, 0x94, 0x67, 0x61, 0x73, 0x70,
+
16 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x57, 0x08, 0x00, 0x00, 0x00, 0x08,
+
17 0x67, 0x6c, 0x79, 0x66, 0x8e, 0x69, 0x44, 0x44, 0x00, 0x00, 0x01, 0x2c,
+
18 0x00, 0x00, 0xf4, 0xd4, 0x68, 0x65, 0x61, 0x64, 0x19, 0x41, 0x8d, 0x10,
+
19 0x00, 0x00, 0xfd, 0xa8, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61,
+
20 0x08, 0xbd, 0x06, 0xc6, 0x00, 0x01, 0x0c, 0xe8, 0x00, 0x00, 0x00, 0x24,
+
21 0x68, 0x6d, 0x74, 0x78, 0x09, 0x15, 0xc7, 0x45, 0x00, 0x00, 0xfd, 0xe0,
+
22 0x00, 0x00, 0x0f, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x40, 0xfb, 0x04, 0x93,
+
23 0x00, 0x00, 0xf6, 0x20, 0x00, 0x00, 0x07, 0x86, 0x6d, 0x61, 0x78, 0x70,
+
24 0x07, 0x7a, 0x10, 0xd4, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x20,
+
25 0x6e, 0x61, 0x6d, 0x65, 0x9f, 0x6b, 0xb9, 0xbe, 0x00, 0x01, 0x2a, 0xec,
+
26 0x00, 0x00, 0x05, 0x7e, 0x70, 0x6f, 0x73, 0x74, 0xa2, 0x18, 0xb3, 0xb6,
+
27 0x00, 0x01, 0x30, 0x6c, 0x00, 0x00, 0x26, 0x9a, 0x70, 0x72, 0x65, 0x70,
+
28 0x2b, 0xfa, 0x72, 0x3a, 0x00, 0x01, 0x27, 0x40, 0x00, 0x00, 0x02, 0xbb,
+
29 0x00, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x02, 0x78, 0x00, 0x03,
+
30 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0d, 0x04, 0x06, 0x02, 0x01, 0x01, 0x06,
+
31 0x07, 0x03, 0x72, 0x0a, 0x06, 0x08, 0x72, 0x00, 0x2b, 0xc4, 0x2b, 0x11,
+
32 0x39, 0x2f, 0x33, 0x11, 0x39, 0x30, 0x31, 0x65, 0x23, 0x37, 0x33, 0x27,
+
33 0x03, 0x23, 0x13, 0x33, 0x13, 0x23, 0x01, 0x68, 0xe8, 0x0f, 0xc8, 0x5e,
+
34 0x97, 0x53, 0xdf, 0x18, 0xdf, 0x56, 0xaa, 0x3f, 0xde, 0xfe, 0x39, 0x02,
+
35 0x78, 0xfd, 0x88, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
+
36 0x03, 0x1b, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
+
37 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56,
+
38 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
+
39 0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
+
40 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56,
+
41 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
+
42 0x03, 0x93, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7,
+
43 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x0b, 0x78, 0x00, 0x15, 0x40, 0x0e,
+
44 0x03, 0x1a, 0x16, 0x01, 0x01, 0x34, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
+
45 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
46 0xff, 0x65, 0x01, 0xe5, 0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
47 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x00, 0x00,
+
48 0x00, 0x18, 0x40, 0x0c, 0x03, 0x1b, 0x07, 0x01, 0x01, 0x25, 0x56, 0x02,
+
49 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
50 0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xbd,
+
51 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
+
52 0x01, 0x07, 0x03, 0xa2, 0xff, 0xe6, 0x00, 0xa2, 0x00, 0x15, 0x40, 0x0e,
+
53 0x03, 0x1a, 0x16, 0x01, 0x01, 0x69, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
+
54 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
55 0x00, 0x00, 0x01, 0xe5, 0x03, 0xc2, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
56 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x03,
+
57 0x00, 0xf9, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x21, 0x16, 0x01, 0x01, 0x33,
+
58 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
59 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac,
+
60 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
+
61 0x01, 0x07, 0x03, 0xb4, 0xff, 0xec, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e,
+
62 0x03, 0x1e, 0x16, 0x01, 0x01, 0x66, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
+
63 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
64 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
65 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
+
66 0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
67 0x00, 0x00, 0x02, 0x1f, 0x03, 0x88, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
68 0x01, 0x06, 0x03, 0xbd, 0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x13,
+
69 0x0b, 0x01, 0x01, 0x99, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
+
70 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0xff, 0x65,
+
71 0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26,
+
72 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x18,
+
73 0x40, 0x0c, 0x03, 0x17, 0x07, 0x01, 0x01, 0x15, 0x56, 0x02, 0x11, 0x0a,
+
74 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
+
75 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xaa, 0x06, 0x26,
+
76 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x00, 0x00, 0x00, 0x15,
+
77 0x40, 0x0e, 0x03, 0x12, 0x0b, 0x01, 0x01, 0x8f, 0x56, 0x02, 0x0b, 0x07,
+
78 0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
79 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac, 0x06, 0x26, 0x00, 0x01,
+
80 0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0xfc, 0x00, 0x00, 0x15, 0x40, 0x0e,
+
81 0x03, 0x19, 0x0b, 0x01, 0x01, 0x5e, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01,
+
82 0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
83 0x00, 0x00, 0x01, 0xe5, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
84 0x01, 0x06, 0x03, 0xc0, 0xff, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x16,
+
85 0x0b, 0x01, 0x01, 0xa9, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
+
86 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
+
87 0x01, 0xe5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
+
88 0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x0b,
+
89 0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
+
90 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x01,
+
91 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x03,
+
92 0x02, 0x0b, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
93 0xff, 0xff, 0x00, 0x0f, 0xff, 0x65, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26,
+
94 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
+
95 0xb4, 0x02, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
+
96 0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1b,
+
97 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
+
98 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b,
+
99 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x6c,
+
100 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
+
101 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02, 0x12, 0x07, 0x01, 0x01, 0x37, 0x56,
+
102 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
+
103 0x03, 0x2d, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
+
104 0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01,
+
105 0x3c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
+
106 0x01, 0xe5, 0x03, 0x17, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
+
107 0x03, 0x84, 0x00, 0x01, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
+
108 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
+
109 0xff, 0x19, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
+
110 0x01, 0x07, 0x03, 0x8e, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
111 0x15, 0x0a, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
112 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x22, 0x06, 0x26, 0x00, 0x01,
+
113 0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00, 0x00, 0x10, 0xb5, 0x03,
+
114 0x02, 0x0b, 0x07, 0x00, 0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b,
+
115 0x34, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xcb,
+
116 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa8, 0xff, 0x00,
+
117 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0xb0, 0x00, 0x1a, 0x40, 0x0d,
+
118 0x04, 0x27, 0x07, 0x01, 0x01, 0xc6, 0x56, 0x03, 0x02, 0x0b, 0x07, 0x00,
+
119 0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
+
120 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x20, 0x06, 0x26,
+
121 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xff, 0x00, 0x00, 0x0b,
+
122 0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
123 0x00, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x02, 0x70, 0x00, 0x0f,
+
124 0x00, 0x13, 0x00, 0x2b, 0x40, 0x15, 0x10, 0x0e, 0x05, 0x08, 0x0e, 0x08,
+
125 0x0e, 0x08, 0x00, 0x13, 0x04, 0x04, 0x01, 0x02, 0x72, 0x09, 0x0c, 0x0c,
+
126 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x11, 0x33,
+
127 0x11, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
+
128 0x13, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23,
+
129 0x35, 0x23, 0x07, 0x37, 0x33, 0x13, 0x23, 0x0a, 0xc3, 0x01, 0x23, 0xa6,
+
130 0x8c, 0x8c, 0xa4, 0xf0, 0x73, 0x32, 0x43, 0x63, 0x02, 0x08, 0x02, 0x70,
+
131 0x48, 0xbf, 0x49, 0xd8, 0x48, 0xa6, 0xa6, 0xeb, 0x01, 0x33, 0xff, 0xff,
+
132 0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x1a,
+
133 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
134 0x14, 0x01, 0x01, 0x01, 0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03,
+
135 0x00, 0x2c, 0x00, 0x00, 0x01, 0xce, 0x02, 0x6f, 0x00, 0x15, 0x00, 0x20,
+
136 0x00, 0x2c, 0x00, 0x1d, 0x40, 0x0e, 0x0b, 0x21, 0x21, 0x20, 0x20, 0x00,
+
137 0x2c, 0x01, 0x02, 0x72, 0x16, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
+
138 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33,
+
139 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14,
+
140 0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
+
141 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23,
+
142 0x23, 0x2c, 0xb6, 0x36, 0x50, 0x34, 0x19, 0x15, 0x28, 0x1e, 0x1a, 0x2b,
+
143 0x1e, 0x11, 0x1d, 0x3a, 0x5a, 0x3c, 0x61, 0x6d, 0x29, 0x3d, 0x22, 0x1e,
+
144 0x42, 0x39, 0x5c, 0x58, 0x33, 0x3c, 0x19, 0x0e, 0x1d, 0x30, 0x22, 0x63,
+
145 0x02, 0x6f, 0x16, 0x29, 0x38, 0x22, 0x1c, 0x37, 0x2b, 0x0b, 0x0a, 0x20,
+
146 0x29, 0x30, 0x19, 0x28, 0x41, 0x2f, 0x19, 0x48, 0x16, 0x30, 0x26, 0x23,
+
147 0x35, 0x1f, 0x45, 0x18, 0x2b, 0x1a, 0x14, 0x21, 0x19, 0x0e, 0x00, 0x01,
+
148 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x02, 0x75, 0x00, 0x29, 0x00, 0x21,
+
149 0x40, 0x10, 0x26, 0x25, 0x25, 0x21, 0x21, 0x29, 0x09, 0x72, 0x11, 0x0e,
+
150 0x10, 0x10, 0x17, 0x0b, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
+
151 0x33, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e,
+
152 0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
+
153 0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
+
154 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b,
+
155 0x33, 0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19,
+
156 0x40, 0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c,
+
157 0x17, 0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58,
+
158 0x3e, 0x0a, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42,
+
159 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d,
+
160 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17, 0x2a, 0x34, 0x32, 0x00,
+
161 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
+
162 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x01, 0x00, 0x00, 0x0b,
+
163 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
164 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1f, 0x06, 0x26,
+
165 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0x14, 0x00, 0x00, 0x0b,
+
166 0xb6, 0x01, 0x2d, 0x0b, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
167 0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x02, 0x75, 0x06, 0x26,
+
168 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x07, 0x00, 0x00, 0x0b,
+
169 0xb6, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
170 0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
+
171 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d, 0x07, 0x00, 0x01, 0x06,
+
172 0x03, 0xa3, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x42, 0x0b, 0x01,
+
173 0x01, 0x20, 0x56, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b,
+
174 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
+
175 0x03, 0x1a, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
+
176 0x14, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x1b, 0x56,
+
177 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
+
178 0x03, 0x23, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
+
179 0x13, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x41, 0x56,
+
180 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0,
+
181 0x02, 0x6f, 0x00, 0x0f, 0x00, 0x1a, 0x00, 0x10, 0xb7, 0x1a, 0x01, 0x02,
+
182 0x72, 0x10, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31,
+
183 0x57, 0x11, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x0e, 0x03,
+
184 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x27, 0x34, 0x26, 0x26, 0x23, 0x23,
+
185 0x32, 0x96, 0x37, 0x4a, 0x34, 0x15, 0x15, 0x1b, 0x0e, 0x02, 0x21, 0x41,
+
186 0x66, 0x4a, 0x39, 0x36, 0x46, 0x56, 0x29, 0x01, 0x25, 0x50, 0x44, 0x41,
+
187 0x01, 0x02, 0x70, 0x14, 0x25, 0x1c, 0x1c, 0x47, 0x52, 0x31, 0x48, 0x72,
+
188 0x50, 0x2b, 0x42, 0x39, 0x6c, 0x4b, 0x4d, 0x70, 0x3c, 0x00, 0x00, 0x02,
+
189 0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x23,
+
190 0x00, 0x21, 0x40, 0x10, 0x15, 0x00, 0x03, 0x20, 0x02, 0x20, 0x23, 0x23,
+
191 0x00, 0x1f, 0x05, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32,
+
192 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
+
193 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x1e, 0x02,
+
194 0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34,
+
195 0x26, 0x26, 0x23, 0x23, 0x15, 0x33, 0x15, 0x23, 0x47, 0x2e, 0x2e, 0x91,
+
196 0x2f, 0x45, 0x32, 0x24, 0x0c, 0x0b, 0x13, 0x0b, 0x22, 0x43, 0x64, 0x42,
+
197 0x37, 0x35, 0x3e, 0x54, 0x2a, 0x25, 0x4f, 0x3e, 0x3f, 0x65, 0x65, 0x01,
+
198 0x01, 0x28, 0x45, 0x01, 0x03, 0x13, 0x21, 0x28, 0x15, 0x12, 0x39, 0x4e,
+
199 0x31, 0x48, 0x73, 0x4f, 0x2b, 0x45, 0x38, 0x6a, 0x4b, 0x4d, 0x6f, 0x3b,
+
200 0xbc, 0x45, 0xff, 0xff, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0, 0x03, 0x1f,
+
201 0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0xe2, 0x00,
+
202 0x00, 0x0b, 0xb6, 0x02, 0x1e, 0x01, 0x01, 0x01, 0x22, 0x56, 0x00, 0x2b,
+
203 0x34, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f,
+
204 0x06, 0x06, 0x00, 0x25, 0x00, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x65,
+
205 0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06,
+
206 0x03, 0x8a, 0x07, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x21, 0x00, 0x01, 0x01,
+
207 0xb8, 0xff, 0xd5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x32,
+
208 0xff, 0x65, 0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00,
+
209 0x01, 0x06, 0x03, 0x90, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1c, 0x00,
+
210 0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
+
211 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x02, 0x70, 0x00, 0x0b, 0x00, 0x19,
+
212 0x40, 0x0c, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01, 0x02, 0x72, 0x09, 0x00,
+
213 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30,
+
214 0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21,
+
215 0x15, 0x38, 0x01, 0x86, 0xfe, 0xcb, 0xff, 0xff, 0x01, 0x32, 0x02, 0x70,
+
216 0x48, 0xbe, 0x4a, 0xd8, 0x48, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
+
217 0x01, 0xbe, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
+
218 0x03, 0xa3, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01,
+
219 0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
+
220 0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
+
221 0x03, 0xa7, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01,
+
222 0x2f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
+
223 0x01, 0xbe, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
+
224 0x03, 0xa6, 0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x01, 0x01, 0x01,
+
225 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x38,
+
226 0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x26,
+
227 0x03, 0x8d, 0xeb, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x0b, 0x00, 0x00, 0x15,
+
228 0x40, 0x0e, 0x02, 0x28, 0x01, 0x01, 0x01, 0x2f, 0x56, 0x01, 0x1b, 0x00,
+
229 0x01, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
230 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a,
+
231 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
232 0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
233 0x00, 0x38, 0x00, 0x00, 0x02, 0x2a, 0x03, 0x88, 0x06, 0x26, 0x00, 0x2a,
+
234 0x00, 0x00, 0x01, 0x06, 0x03, 0xbd, 0x09, 0x00, 0x00, 0x15, 0x40, 0x0e,
+
235 0x02, 0x13, 0x0c, 0x01, 0x01, 0x6f, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
+
236 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
+
237 0xff, 0x65, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
+
238 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00,
+
239 0x00, 0x18, 0x40, 0x0c, 0x02, 0x18, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x01,
+
240 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
241 0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xaa,
+
242 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x0b, 0x00,
+
243 0x00, 0x15, 0x40, 0x0e, 0x02, 0x13, 0x01, 0x01, 0x01, 0xae, 0x56, 0x01,
+
244 0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
245 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xdc, 0x03, 0xac, 0x06, 0x26,
+
246 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0x07, 0x00, 0x00, 0x15,
+
247 0x40, 0x0e, 0x02, 0x1a, 0x0c, 0x01, 0x01, 0x5e, 0x56, 0x01, 0x0c, 0x01,
+
248 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
249 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x2a,
+
250 0x00, 0x00, 0x01, 0x06, 0x03, 0xc0, 0x0a, 0x00, 0x00, 0x15, 0x40, 0x0e,
+
251 0x02, 0x17, 0x01, 0x01, 0x01, 0xc8, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
+
252 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
+
253 0x00, 0x00, 0x01, 0xbe, 0x03, 0x55, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
+
254 0x01, 0x07, 0x03, 0x86, 0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02,
+
255 0x01, 0x0c, 0x01, 0x01, 0x01, 0x31, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
256 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1d, 0x06, 0x26,
+
257 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x0a, 0x00, 0x00, 0x0d,
+
258 0xb7, 0x02, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b, 0x34,
+
259 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x23,
+
260 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x0a, 0x00,
+
261 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x45, 0x56, 0x00, 0x2b,
+
262 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x65, 0x01, 0xbe, 0x02, 0x70,
+
263 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
+
264 0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
+
265 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
+
266 0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
+
267 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x24, 0x56,
+
268 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
+
269 0x03, 0x6c, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
+
270 0x00, 0x18, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x01, 0x01, 0x01,
+
271 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
+
272 0x01, 0xbe, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07,
+
273 0x03, 0x87, 0x00, 0x05, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01,
+
274 0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
+
275 0x00, 0x00, 0x01, 0xbe, 0x03, 0x17, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
+
276 0x01, 0x07, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
+
277 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
278 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a,
+
279 0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07,
+
280 0x03, 0xa3, 0xff, 0xf8, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10,
+
281 0x0c, 0x01, 0x01, 0x53, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56,
+
282 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
+
283 0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x27,
+
284 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa2, 0xff, 0xfb,
+
285 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10, 0x0c, 0x01, 0x01, 0x53,
+
286 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
287 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x19, 0x01, 0xbe, 0x02, 0x70,
+
288 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f, 0x00, 0x00,
+
289 0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b,
+
290 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x20,
+
291 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0x0a, 0x00,
+
292 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b,
+
293 0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0xff, 0xf2, 0x01, 0xb5, 0x02, 0x6f,
+
294 0x00, 0x20, 0x00, 0x27, 0x00, 0x21, 0x40, 0x11, 0x0a, 0x27, 0x26, 0x03,
+
295 0x0b, 0x0b, 0x14, 0x20, 0x21, 0x25, 0x25, 0x22, 0x02, 0x72, 0x20, 0x09,
+
296 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x39, 0x2f, 0x17,
+
297 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33,
+
298 0x33, 0x15, 0x26, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36,
+
299 0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x06, 0x06, 0x23, 0x03, 0x35,
+
300 0x21, 0x15, 0x23, 0x17, 0x07, 0x01, 0x0c, 0x42, 0x5b, 0x30, 0x20, 0x3a,
+
301 0x51, 0x30, 0x37, 0x2e, 0x47, 0x2f, 0x18, 0x1f, 0x38, 0x27, 0x1e, 0x2a,
+
302 0x12, 0x0a, 0x07, 0x01, 0x05, 0x07, 0x2c, 0x21, 0x55, 0x33, 0xbb, 0x01,
+
303 0x3f, 0xde, 0x9f, 0x4c, 0x0e, 0x34, 0x54, 0x32, 0x2c, 0x4a, 0x38, 0x1f,
+
304 0x41, 0x02, 0x0f, 0x21, 0x35, 0x23, 0x25, 0x36, 0x1c, 0x10, 0x10, 0x0e,
+
305 0x0d, 0x08, 0x06, 0x06, 0x41, 0x25, 0x26, 0x02, 0x37, 0x46, 0x4a, 0xac,
+
306 0x0d, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
+
307 0x00, 0x09, 0x00, 0x17, 0x40, 0x0b, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01,
+
308 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f,
+
309 0x33, 0x30, 0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23,
+
310 0x11, 0x4a, 0x01, 0x71, 0xfe, 0xdf, 0xe9, 0xe9, 0x02, 0x70, 0x47, 0xb5,
+
311 0x47, 0xfe, 0xd3, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0,
+
312 0x02, 0x77, 0x00, 0x30, 0x00, 0x21, 0x40, 0x10, 0x2b, 0x2a, 0x2a, 0x0a,
+
313 0x23, 0x30, 0x09, 0x72, 0x11, 0x0e, 0x10, 0x10, 0x18, 0x0a, 0x03, 0x72,
+
314 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f,
+
315 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x03, 0x33,
+
316 0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26, 0x27, 0x2e, 0x02,
+
317 0x23, 0x22, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
+
318 0x37, 0x35, 0x23, 0x35, 0x33, 0x15, 0x06, 0x06, 0x23, 0x01, 0x15, 0x4c,
+
319 0x6e, 0x3b, 0x1f, 0x36, 0x41, 0x41, 0x1b, 0x27, 0x48, 0x3c, 0x11, 0x36,
+
320 0x08, 0x05, 0x01, 0x06, 0x0b, 0x0e, 0x1e, 0x25, 0x17, 0x1a, 0x2f, 0x28,
+
321 0x1e, 0x10, 0x16, 0x2b, 0x3b, 0x25, 0x0d, 0x1d, 0x1d, 0x1b, 0x0c, 0x6e,
+
322 0xbb, 0x2c, 0x5f, 0x30, 0x0a, 0x4e, 0x8f, 0x5f, 0x50, 0x71, 0x4a, 0x2a,
+
323 0x10, 0x1b, 0x2e, 0x21, 0x30, 0x07, 0x06, 0x08, 0x0e, 0x0d, 0x10, 0x15,
+
324 0x0a, 0x0e, 0x23, 0x37, 0x51, 0x36, 0x3f, 0x60, 0x41, 0x21, 0x03, 0x09,
+
325 0x0e, 0x09, 0x89, 0x48, 0xfb, 0x21, 0x20, 0x00, 0xff, 0xff, 0x00, 0x20,
+
326 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x18, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
+
327 0x01, 0x06, 0x03, 0xa7, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x35, 0x0a,
+
328 0x01, 0x01, 0x29, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
+
329 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
+
330 0x01, 0x06, 0x03, 0xa6, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x34, 0x0a,
+
331 0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
+
332 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
+
333 0x01, 0x06, 0x03, 0xa5, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x31, 0x0a,
+
334 0x01, 0x01, 0x19, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
+
335 0xfe, 0xe6, 0x01, 0xd0, 0x02, 0x77, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
+
336 0x01, 0x06, 0x03, 0x8c, 0x1d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3d, 0x30,
+
337 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
338 0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x23, 0x06, 0x26, 0x00, 0x43,
+
339 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
340 0x31, 0x0a, 0x01, 0x01, 0x3f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
341 0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x17, 0x06, 0x26, 0x00, 0x43,
+
342 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x17, 0x00, 0xa4, 0x00, 0x0b,
+
343 0xb6, 0x01, 0x31, 0x0a, 0x01, 0x01, 0x65, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
344 0x00, 0x01, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xc7, 0x02, 0x6f, 0x00, 0x15,
+
345 0x00, 0x19, 0x40, 0x0c, 0x07, 0x13, 0x13, 0x00, 0x11, 0x15, 0x08, 0x72,
+
346 0x09, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
+
347 0x33, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33,
+
348 0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11,
+
349 0x23, 0x2e, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a, 0x06, 0x03, 0x57,
+
350 0xe2, 0x57, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08,
+
351 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0x23, 0xfe, 0xdd, 0x00, 0x00, 0x02,
+
352 0x00, 0x07, 0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x19,
+
353 0x00, 0x20, 0x40, 0x0f, 0x17, 0x0b, 0x00, 0x00, 0x0b, 0x0b, 0x04, 0x15,
+
354 0x19, 0x08, 0x72, 0x0d, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
+
355 0x12, 0x39, 0x2f, 0x33, 0x7d, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x53, 0x35,
+
356 0x21, 0x15, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33, 0x11,
+
357 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23,
+
358 0x07, 0x01, 0xe3, 0xfe, 0x44, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a,
+
359 0x06, 0x03, 0x57, 0xe2, 0x57, 0x01, 0xed, 0x42, 0x42, 0x82, 0x08, 0x06,
+
360 0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01,
+
361 0x23, 0xfe, 0xdd, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x4c, 0x01, 0xc7,
+
362 0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
+
363 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x16, 0x11, 0x01, 0x01, 0xb8, 0xff,
+
364 0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
+
365 0x01, 0xc7, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
+
366 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x01, 0x01,
+
367 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
+
368 0x01, 0xc7, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
+
369 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1c, 0x11, 0x01, 0x01,
+
370 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4d,
+
371 0x00, 0x00, 0x01, 0x9b, 0x02, 0x6f, 0x00, 0x0b, 0x00, 0x19, 0x40, 0x0c,
+
372 0x08, 0x04, 0x04, 0x05, 0x02, 0x72, 0x01, 0x09, 0x09, 0x00, 0x08, 0x72,
+
373 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
+
374 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x4d,
+
375 0x7b, 0x74, 0x01, 0x41, 0x7b, 0x81, 0x46, 0x01, 0xe3, 0x46, 0x46, 0xfe,
+
376 0x1c, 0x45, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1b,
+
377 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xe4, 0x00,
+
378 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
+
379 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x18,
+
380 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7, 0xf7, 0x00,
+
381 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x30, 0x56, 0x00, 0x2b,
+
382 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1a,
+
383 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0xf7, 0x00,
+
384 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b,
+
385 0x34, 0x00, 0xff, 0xff, 0x00, 0x41, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x55,
+
386 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xe6,
+
387 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x32,
+
388 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
+
389 0x01, 0x9b, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
+
390 0x03, 0xa0, 0xf6, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01,
+
391 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
+
392 0x00, 0x00, 0x01, 0x9b, 0x03, 0xae, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
+
393 0x00, 0x26, 0x03, 0xa0, 0xf6, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xe2,
+
394 0x00, 0x93, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x24, 0x12, 0x01, 0x00, 0x0d,
+
395 0x56, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
+
396 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b,
+
397 0x03, 0x23, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
+
398 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x46, 0x56,
+
399 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0xff, 0x65, 0x01, 0x9b,
+
400 0x02, 0x6f, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
401 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
402 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
+
403 0x01, 0x9b, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
+
404 0x03, 0xa2, 0xe7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01,
+
405 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
+
406 0x01, 0x9b, 0x03, 0x6c, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07,
+
407 0x03, 0x85, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x05,
+
408 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
+
409 0x00, 0x00, 0x01, 0x9b, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
+
410 0x01, 0x07, 0x03, 0x87, 0xff, 0xf1, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
+
411 0x0c, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
412 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x17, 0x06, 0x26, 0x00, 0x4f,
+
413 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0xff, 0xf8, 0x00, 0xa4, 0x00, 0x0b,
+
414 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
415 0xff, 0xff, 0x00, 0x4d, 0xff, 0x19, 0x01, 0x9d, 0x02, 0x6f, 0x06, 0x26,
+
416 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x74, 0x00, 0x00, 0x0b,
+
417 0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
418 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9c, 0x03, 0x50, 0x06, 0x26,
+
419 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb3, 0xed, 0x22, 0x00, 0x0b,
+
420 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
421 0x00, 0x01, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c,
+
422 0x00, 0x15, 0x40, 0x0a, 0x0c, 0x1c, 0x09, 0x72, 0x16, 0x12, 0x12, 0x13,
+
423 0x02, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x57,
+
424 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
+
425 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x16,
+
426 0x0e, 0x02, 0x23, 0xc3, 0x2d, 0x4e, 0x1d, 0x2d, 0x07, 0x06, 0x01, 0x07,
+
427 0x0c, 0x10, 0x22, 0x15, 0x1f, 0x28, 0x13, 0x76, 0x01, 0x28, 0x5e, 0x01,
+
428 0x1b, 0x31, 0x3e, 0x22, 0x0c, 0x22, 0x23, 0x3f, 0x08, 0x05, 0x08, 0x0f,
+
429 0x0b, 0x0c, 0x0d, 0x1d, 0x42, 0x35, 0x01, 0x55, 0x46, 0x46, 0xfe, 0xa9,
+
430 0x3b, 0x55, 0x36, 0x18, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xe9,
+
431 0x03, 0x1a, 0x06, 0x26, 0x00, 0x5e, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
+
432 0x4c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x13, 0x01, 0x01, 0x20, 0x56,
+
433 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x28, 0xff, 0xfc, 0x01, 0xde,
+
434 0x02, 0x74, 0x00, 0x15, 0x00, 0x1a, 0x40, 0x0e, 0x01, 0x00, 0x0b, 0x13,
+
435 0x04, 0x03, 0x12, 0x04, 0x02, 0x72, 0x14, 0x03, 0x08, 0x72, 0x00, 0x2b,
+
436 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x07, 0x15, 0x23,
+
437 0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
+
438 0x33, 0x03, 0x13, 0x07, 0xae, 0x2f, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xf3,
+
439 0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3, 0xf2, 0x67, 0x01, 0x2e, 0x36,
+
440 0xf8, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02,
+
441 0x01, 0x01, 0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x28,
+
442 0xfe, 0xe6, 0x01, 0xde, 0x02, 0x74, 0x06, 0x26, 0x00, 0x60, 0x00, 0x00,
+
443 0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03,
+
444 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02,
+
445 0x00, 0x29, 0xff, 0xfc, 0x01, 0xda, 0x02, 0x74, 0x00, 0x20, 0x00, 0x24,
+
446 0x00, 0x1e, 0x40, 0x11, 0x24, 0x12, 0x1e, 0x07, 0x21, 0x22, 0x04, 0x00,
+
447 0x20, 0x12, 0x18, 0x0c, 0x03, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b,
+
448 0x32, 0x3f, 0x12, 0x17, 0x39, 0x3f, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15,
+
449 0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x15, 0x15,
+
450 0x23, 0x26, 0x26, 0x27, 0x22, 0x22, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x15,
+
451 0x23, 0x13, 0x37, 0x01, 0x07, 0x29, 0x57, 0x0a, 0x06, 0x03, 0x2f, 0x52,
+
452 0x48, 0x42, 0x20, 0x0c, 0x15, 0x08, 0x08, 0x06, 0x0d, 0x11, 0x02, 0x02,
+
453 0x02, 0x0d, 0x22, 0x2d, 0x3e, 0x52, 0x36, 0x58, 0x69, 0x3d, 0x01, 0x0b,
+
454 0x66, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe8, 0x4d, 0x6d, 0x42, 0x1e,
+
455 0x04, 0x04, 0x53, 0x0a, 0x06, 0x0a, 0x02, 0x0d, 0x23, 0x44, 0x6f, 0x51,
+
456 0xed, 0x01, 0x53, 0x37, 0xfe, 0x76, 0x04, 0x00, 0x00, 0x01, 0x00, 0x3f,
+
457 0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f, 0x00, 0x0a, 0x00, 0x0e, 0xb6, 0x07,
+
458 0x0a, 0x08, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x30, 0x31,
+
459 0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21, 0x3f,
+
460 0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x02, 0x6f, 0x08, 0x06,
+
461 0x0e, 0x11, 0xfe, 0x05, 0x47, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x60,
+
462 0x01, 0xc8, 0x02, 0x6f, 0x00, 0x1b, 0x00, 0x25, 0x00, 0x1d, 0x40, 0x0e,
+
463 0x0c, 0x00, 0x23, 0x12, 0x13, 0x13, 0x1d, 0x1c, 0x08, 0x72, 0x1d, 0x02,
+
464 0x72, 0x00, 0x00, 0x2f, 0x2b, 0x2b, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
+
465 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x17, 0x1e,
+
466 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x15, 0x31,
+
467 0x11, 0x16, 0x0e, 0x02, 0x25, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11,
+
468 0x33, 0x15, 0x01, 0x1d, 0x2b, 0x48, 0x1c, 0x36, 0x06, 0x04, 0x02, 0x06,
+
469 0x04, 0x15, 0x1c, 0x12, 0x1d, 0x26, 0x13, 0x78, 0xcc, 0x01, 0x1b, 0x30,
+
470 0x3e, 0xfe, 0xfd, 0x5f, 0x04, 0x04, 0x9a, 0xa0, 0x22, 0x22, 0x40, 0x04,
+
471 0x0a, 0x0a, 0x07, 0x05, 0x0f, 0x0a, 0x1e, 0x43, 0x37, 0x01, 0xeb, 0x45,
+
472 0x46, 0xfe, 0x12, 0x3b, 0x54, 0x34, 0x18, 0xa0, 0x02, 0x6f, 0x07, 0x03,
+
473 0x08, 0x10, 0xfd, 0xfa, 0x47, 0x00, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00,
+
474 0x01, 0xbd, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06,
+
475 0x03, 0xa3, 0xc5, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x00, 0x01, 0x01,
+
476 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0x00,
+
477 0x01, 0xbd, 0x02, 0x79, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x15, 0x40, 0x0b,
+
478 0x19, 0x1c, 0x08, 0x72, 0x12, 0x02, 0x72, 0x00, 0x0b, 0x03, 0x72, 0x00,
+
479 0x2b, 0xcc, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x41, 0x27, 0x36, 0x36, 0x35,
+
480 0x34, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
481 0x06, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21,
+
482 0x01, 0x55, 0x24, 0x17, 0x1b, 0x13, 0x14, 0x1e, 0x16, 0x19, 0x22, 0x13,
+
483 0x26, 0xfe, 0xcd, 0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x01,
+
484 0x96, 0x1e, 0x15, 0x2e, 0x0e, 0x0b, 0x13, 0x16, 0x0e, 0x17, 0x1b, 0x27,
+
485 0x20, 0x17, 0x32, 0x35, 0xbb, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x05, 0x47,
+
486 0xff, 0xff, 0x00, 0x3f, 0xfe, 0xe6, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
+
487 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e,
+
488 0xb4, 0x01, 0x17, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00,
+
489 0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f,
+
490 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x02, 0x22, 0x44, 0x00,
+
491 0x00, 0x0e, 0xb4, 0x01, 0x11, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x15, 0xb0,
+
492 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd,
+
493 0x02, 0x6f, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
494 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff,
+
495 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x40, 0xff, 0x51,
+
496 0x01, 0xbc, 0x02, 0x97, 0x00, 0x08, 0x00, 0x25, 0x00, 0x31, 0x00, 0x1f,
+
497 0x40, 0x10, 0x2c, 0x26, 0x26, 0x1e, 0x1f, 0x06, 0x72, 0x17, 0x09, 0x01,
+
498 0x02, 0x72, 0x06, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2f, 0x33,
+
499 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x14, 0x06,
+
500 0x15, 0x11, 0x33, 0x15, 0x07, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1e, 0x03,
+
501 0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x23, 0x35, 0x33,
+
502 0x11, 0x14, 0x0e, 0x02, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
+
503 0x16, 0x15, 0x14, 0x06, 0x40, 0x60, 0x09, 0x8d, 0x27, 0x1b, 0x31, 0x29,
+
504 0x11, 0x36, 0x05, 0x03, 0x05, 0x0e, 0x10, 0x07, 0x0c, 0x0f, 0x07, 0x15,
+
505 0x21, 0x1a, 0x0d, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0x5f, 0x18, 0x22, 0x21,
+
506 0x19, 0x17, 0x23, 0x23, 0x02, 0x6f, 0x0a, 0x0e, 0x0a, 0xfd, 0xfb, 0x48,
+
507 0xaf, 0x0d, 0x1b, 0x13, 0x48, 0x05, 0x0b, 0x0b, 0x0d, 0x08, 0x03, 0x04,
+
508 0x03, 0x0e, 0x1d, 0x2e, 0x1f, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a,
+
509 0x2f, 0x17, 0x02, 0xd3, 0x21, 0x17, 0x19, 0x21, 0x23, 0x17, 0x17, 0x21,
+
510 0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
+
511 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e,
+
512 0xb4, 0x01, 0x0c, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00,
+
513 0x2b, 0x34, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x01, 0xc4, 0x02, 0x6f,
+
514 0x00, 0x16, 0x00, 0x18, 0x40, 0x0d, 0x01, 0x13, 0x04, 0x0d, 0x04, 0x00,
+
515 0x05, 0x02, 0x72, 0x14, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x12,
+
516 0x17, 0x39, 0x30, 0x31, 0x73, 0x35, 0x07, 0x35, 0x37, 0x11, 0x33, 0x32,
+
517 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x37, 0x36, 0x36, 0x37, 0x15, 0x07,
+
518 0x15, 0x21, 0x15, 0x47, 0x36, 0x36, 0x5f, 0x01, 0x01, 0x08, 0x02, 0x9d,
+
519 0x08, 0x0f, 0x05, 0xb9, 0x01, 0x26, 0xec, 0x12, 0x49, 0x12, 0x01, 0x3a,
+
520 0x02, 0x01, 0x04, 0x09, 0x12, 0xfc, 0x33, 0x03, 0x06, 0x03, 0x4d, 0x3c,
+
521 0xc0, 0x47, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x70,
+
522 0x00, 0x0c, 0x00, 0x1a, 0x40, 0x0e, 0x0a, 0x03, 0x0b, 0x08, 0x04, 0x07,
+
523 0x05, 0x02, 0x02, 0x72, 0x07, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
+
524 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33, 0x13, 0x13, 0x33,
+
525 0x11, 0x23, 0x11, 0x07, 0x23, 0x27, 0x11, 0x26, 0x46, 0x8f, 0x91, 0x44,
+
526 0x4d, 0x7a, 0x25, 0x72, 0x02, 0x6f, 0xfe, 0xd5, 0x01, 0x2c, 0xfd, 0x90,
+
527 0x01, 0xca, 0xf3, 0xf1, 0xfe, 0x38, 0xff, 0xff, 0x00, 0x26, 0xff, 0x65,
+
528 0x01, 0xd0, 0x02, 0x70, 0x06, 0x26, 0x00, 0x6d, 0x00, 0x00, 0x01, 0x06,
+
529 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x13, 0x07, 0x01, 0x01,
+
530 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
+
531 0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x17, 0x40, 0x0b,
+
532 0x0c, 0x02, 0x01, 0x0b, 0x0e, 0x08, 0x72, 0x03, 0x01, 0x02, 0x72, 0x00,
+
533 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x53, 0x33, 0x13,
+
534 0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x01, 0x11, 0x23,
+
535 0x2e, 0x54, 0xf5, 0x02, 0x4e, 0x0a, 0x06, 0x03, 0x48, 0xff, 0x00, 0x4e,
+
536 0x02, 0x6f, 0xfe, 0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe,
+
537 0x01, 0xd8, 0xfe, 0x28, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
+
538 0x03, 0x1b, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
+
539 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x00, 0x01, 0x01, 0x25, 0x56,
+
540 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
+
541 0x03, 0x1f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
+
542 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01, 0x22, 0x56,
+
543 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xcd,
+
544 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
+
545 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1b, 0x0b, 0x01, 0x01, 0xb8, 0xff,
+
546 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
+
547 0x01, 0xcd, 0x03, 0x23, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
+
548 0x03, 0xa1, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
+
549 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
+
550 0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
+
551 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0b, 0x01, 0x01,
+
552 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2d,
+
553 0xff, 0x42, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c, 0x00, 0x1b, 0x40, 0x0e,
+
554 0x16, 0x1c, 0x17, 0x03, 0x19, 0x01, 0x1b, 0x02, 0x72, 0x19, 0x08, 0x72,
+
555 0x12, 0x09, 0x00, 0x2f, 0x33, 0x2b, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30,
+
556 0x31, 0x41, 0x33, 0x14, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06, 0x23, 0x22,
+
557 0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x03, 0x11,
+
558 0x23, 0x11, 0x33, 0x13, 0x01, 0x78, 0x54, 0x07, 0x26, 0x46, 0x2e, 0x18,
+
559 0x32, 0x17, 0x29, 0x08, 0x07, 0x08, 0x11, 0x10, 0x1b, 0x21, 0x0f, 0x01,
+
560 0xfc, 0x4e, 0x54, 0xf7, 0x02, 0x6f, 0x09, 0x0b, 0x0c, 0xfd, 0xb1, 0x3e,
+
561 0x54, 0x2c, 0x0f, 0x10, 0x48, 0x02, 0x08, 0x09, 0x08, 0x1c, 0x3a, 0x2b,
+
562 0x01, 0xc9, 0xfe, 0x28, 0x02, 0x6f, 0xfe, 0x43, 0xff, 0xff, 0x00, 0x2e,
+
563 0xff, 0x65, 0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00,
+
564 0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x0e,
+
565 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
566 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd, 0x03, 0x20, 0x06, 0x26, 0x00, 0x6f,
+
567 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
568 0x13, 0x03, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02,
+
569 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
+
570 0x00, 0x10, 0xb7, 0x18, 0x08, 0x03, 0x72, 0x10, 0x00, 0x09, 0x72, 0x00,
+
571 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34,
+
572 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
+
573 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
+
574 0x16, 0x16, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35,
+
575 0x35, 0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21,
+
576 0x21, 0x40, 0x0b, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64,
+
577 0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f,
+
578 0x4d, 0x51, 0x6f, 0x39, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
579 0x03, 0x1c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
+
580 0xed, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56,
+
581 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
582 0x03, 0x19, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
+
583 0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x2c, 0x56,
+
584 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
585 0x03, 0x1b, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
+
586 0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
+
587 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x02, 0x1f,
+
588 0x03, 0x89, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbd,
+
589 0xff, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x08, 0x01, 0x01, 0x8b,
+
590 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
591 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x03, 0x1b,
+
592 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x0a, 0x00,
+
593 0x01, 0x06, 0x03, 0xa5, 0x00, 0x01, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c,
+
594 0x08, 0x01, 0x01, 0x1c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
595 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18,
+
596 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xab, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
+
597 0x01, 0x06, 0x03, 0xbe, 0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27,
+
598 0x08, 0x01, 0x01, 0xab, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
+
599 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
+
600 0x01, 0xdd, 0x03, 0xad, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
+
601 0x03, 0xbf, 0xfc, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x08, 0x01,
+
602 0x01, 0x7a, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b,
+
603 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
604 0x03, 0xaa, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xc0,
+
605 0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x08, 0x01, 0x01, 0xc5,
+
606 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
607 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x56,
+
608 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef,
+
609 0x00, 0xa5, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2e,
+
610 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
+
611 0x01, 0xdd, 0x03, 0x1e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
+
612 0x03, 0xa0, 0x00, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01,
+
613 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
614 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
+
615 0x00, 0x26, 0x03, 0xa0, 0x00, 0x01, 0x01, 0x07, 0x03, 0x84, 0xff, 0xff,
+
616 0x01, 0x38, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x54,
+
617 0x56, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34,
+
618 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
619 0x03, 0x8e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa1,
+
620 0xff, 0x01, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x15,
+
621 0x40, 0x0e, 0x03, 0x2c, 0x26, 0x01, 0x01, 0x2f, 0x56, 0x02, 0x20, 0x08,
+
622 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
623 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78,
+
624 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02,
+
625 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
626 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26,
+
627 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b,
+
628 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
629 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26,
+
630 0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4,
+
631 0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b,
+
632 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0xa4,
+
633 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa, 0xea, 0xd7,
+
634 0x00, 0x0e, 0xb4, 0x02, 0x20, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa4, 0xb0,
+
635 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
+
636 0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
+
637 0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01, 0x21, 0x56,
+
638 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd,
+
639 0x02, 0xa4, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
640 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x03, 0x30, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
641 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
+
642 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06,
+
643 0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01,
+
644 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
+
645 0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x07,
+
646 0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x03, 0x31, 0x08,
+
647 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
648 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00,
+
649 0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2e, 0x08,
+
650 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
651 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
+
652 0x01, 0x06, 0x03, 0xa4, 0xda, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20,
+
653 0x08, 0x01, 0x01, 0x12, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
+
654 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2e, 0x06, 0x26, 0x00, 0x78,
+
655 0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa5, 0x00, 0x0b,
+
656 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x43, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
657 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x18, 0x06, 0x26,
+
658 0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5,
+
659 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56, 0x00, 0x2b,
+
660 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4,
+
661 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01,
+
662 0x00, 0xa5, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x99, 0x00, 0x15,
+
663 0x40, 0x0e, 0x03, 0x24, 0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08,
+
664 0x01, 0x01, 0x68, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
665 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4, 0x06, 0x26, 0x00, 0x78,
+
666 0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5, 0x01, 0x07,
+
667 0x03, 0xa2, 0xff, 0xf1, 0x00, 0x99, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24,
+
668 0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56,
+
669 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x25,
+
670 0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
+
671 0x03, 0x8e, 0x2f, 0x0b, 0x00, 0x0b, 0xb6, 0x02, 0x29, 0x00, 0x00, 0x00,
+
672 0x26, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x18, 0xff, 0xd1,
+
673 0x01, 0xdd, 0x02, 0xaa, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x1e,
+
674 0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c, 0x0c, 0x03, 0x72, 0x01, 0x00, 0x00,
+
675 0x14, 0x04, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b,
+
676 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x03, 0x22,
+
677 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
+
678 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
+
679 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x56, 0x30, 0x01, 0x77, 0x2f, 0xd1,
+
680 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35, 0x64, 0x49,
+
681 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21, 0x40, 0x2f,
+
682 0x17, 0x02, 0xc2, 0x18, 0xfd, 0x63, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d,
+
683 0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f,
+
684 0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0x00, 0xff, 0xff, 0x00, 0x18,
+
685 0xff, 0xd1, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x94, 0x00, 0x00,
+
686 0x01, 0x06, 0x03, 0xa3, 0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c,
+
687 0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
688 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
+
689 0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08,
+
690 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
691 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xba, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
+
692 0x00, 0x26, 0x03, 0xa9, 0xff, 0x01, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed,
+
693 0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38, 0x08, 0x01, 0x01, 0xbc,
+
694 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
695 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xbc,
+
696 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa9, 0xff, 0x01,
+
697 0x01, 0x07, 0x03, 0xa0, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x17, 0x40, 0x0f,
+
698 0x04, 0x03, 0x38, 0x08, 0x01, 0x01, 0xd8, 0x56, 0x02, 0x24, 0x08, 0x01,
+
699 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
+
700 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78,
+
701 0x00, 0x00, 0x00, 0x27, 0x03, 0xb4, 0xff, 0xf6, 0x00, 0xa4, 0x01, 0x07,
+
702 0x03, 0x84, 0xff, 0xfb, 0x01, 0x39, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38,
+
703 0x08, 0x01, 0x01, 0xfb, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x71, 0x56,
+
704 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x07, 0xff, 0xf9,
+
705 0x01, 0xe7, 0x02, 0x78, 0x00, 0x1b, 0x00, 0x2b, 0x00, 0x2d, 0x40, 0x18,
+
706 0x15, 0x18, 0x08, 0x72, 0x10, 0x0d, 0x02, 0x72, 0x0c, 0x23, 0x23, 0x11,
+
707 0x14, 0x14, 0x00, 0x09, 0x03, 0x72, 0x19, 0x1c, 0x1c, 0x00, 0x09, 0x72,
+
708 0x00, 0x2b, 0x32, 0x11, 0x39, 0x2b, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
+
709 0x39, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x2e, 0x02, 0x35,
+
710 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x35, 0x33, 0x15, 0x23, 0x15,
+
711 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x06, 0x06, 0x27, 0x32,
+
712 0x36, 0x37, 0x11, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16,
+
713 0x16, 0xae, 0x26, 0x3e, 0x2b, 0x18, 0x28, 0x4b, 0x35, 0x13, 0x26, 0x10,
+
714 0xef, 0xa4, 0x8b, 0x8b, 0xa2, 0xee, 0x0f, 0x26, 0x0c, 0x18, 0x22, 0x06,
+
715 0x0a, 0x22, 0x1c, 0x12, 0x20, 0x18, 0x0f, 0x17, 0x2a, 0x07, 0x26, 0x4f,
+
716 0x78, 0x52, 0x6a, 0x8e, 0x48, 0x0f, 0x11, 0x18, 0x48, 0xbf, 0x49, 0xd8,
+
717 0x48, 0x1a, 0x11, 0x10, 0x49, 0x26, 0x1e, 0x01, 0x5c, 0x20, 0x30, 0x18,
+
718 0x38, 0x61, 0x48, 0x4e, 0x6f, 0x3a, 0x00, 0x02, 0x00, 0x37, 0x00, 0x00,
+
719 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x17, 0x40, 0x0b,
+
720 0x0e, 0x0c, 0x0c, 0x00, 0x18, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00,
+
721 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
+
722 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33,
+
723 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x37, 0xcc, 0x47,
+
724 0x59, 0x2a, 0x17, 0x30, 0x4a, 0x34, 0x7a, 0x72, 0x2a, 0x34, 0x18, 0x18,
+
725 0x34, 0x29, 0x73, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
+
726 0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x02,
+
727 0x00, 0x38, 0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x1f,
+
728 0x00, 0x1f, 0x40, 0x0f, 0x15, 0x13, 0x1f, 0x09, 0x13, 0x09, 0x13, 0x09,
+
729 0x00, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39,
+
730 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
+
731 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15,
+
732 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35,
+
733 0x34, 0x26, 0x26, 0x23, 0x23, 0x38, 0x5d, 0x01, 0x01, 0x08, 0x02, 0x77,
+
734 0x47, 0x58, 0x2a, 0x29, 0x56, 0x45, 0x7c, 0x79, 0x28, 0x32, 0x17, 0x18,
+
735 0x34, 0x29, 0x75, 0x02, 0x6f, 0x01, 0x01, 0x02, 0x03, 0x0b, 0x0c, 0x55,
+
736 0x30, 0x51, 0x31, 0x31, 0x50, 0x2f, 0x9a, 0xe1, 0x1b, 0x2f, 0x1c, 0x1d,
+
737 0x2f, 0x1e, 0x00, 0x02, 0x00, 0x1a, 0xff, 0x6d, 0x01, 0xdc, 0x02, 0x77,
+
738 0x00, 0x1e, 0x00, 0x31, 0x00, 0x19, 0x40, 0x0c, 0x29, 0x0e, 0x03, 0x72,
+
739 0x1f, 0x18, 0x05, 0x09, 0x72, 0x1c, 0x00, 0x09, 0x00, 0x7c, 0x3f, 0x32,
+
740 0x2b, 0x32, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x06, 0x2e, 0x02, 0x35,
+
741 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x07, 0x14,
+
742 0x0e, 0x02, 0x07, 0x1e, 0x02, 0x33, 0x37, 0x07, 0x27, 0x32, 0x3e, 0x02,
+
743 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
+
744 0x01, 0x89, 0x30, 0x43, 0x29, 0x13, 0x34, 0x57, 0x35, 0x28, 0x43, 0x4f,
+
745 0x27, 0x2d, 0x52, 0x3f, 0x23, 0x01, 0x18, 0x2e, 0x44, 0x2b, 0x02, 0x0c,
+
746 0x1c, 0x19, 0x52, 0x02, 0xba, 0x19, 0x31, 0x28, 0x19, 0x1a, 0x2b, 0x32,
+
747 0x18, 0x23, 0x36, 0x24, 0x12, 0x24, 0x42, 0x91, 0x02, 0x0d, 0x22, 0x36,
+
748 0x28, 0x08, 0x4b, 0x87, 0x61, 0x5b, 0x7c, 0x4a, 0x21, 0x25, 0x4e, 0x79,
+
749 0x54, 0x46, 0x6e, 0x4f, 0x30, 0x0a, 0x14, 0x1f, 0x10, 0x04, 0x4c, 0xd1,
+
750 0x19, 0x38, 0x59, 0x40, 0x4e, 0x65, 0x3b, 0x18, 0x26, 0x41, 0x56, 0x31,
+
751 0x4e, 0x74, 0x40, 0x00, 0x00, 0x02, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
+
752 0x02, 0x6f, 0x00, 0x0f, 0x00, 0x19, 0x00, 0x1d, 0x40, 0x0e, 0x0a, 0x10,
+
753 0x10, 0x0e, 0x0e, 0x00, 0x19, 0x01, 0x02, 0x72, 0x0c, 0x00, 0x08, 0x72,
+
754 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
+
755 0x31, 0x73, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07,
+
756 0x13, 0x23, 0x03, 0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26,
+
757 0x26, 0x23, 0x23, 0x34, 0xbd, 0x4b, 0x5d, 0x2b, 0x1e, 0x38, 0x26, 0x8d,
+
758 0x5c, 0x86, 0x69, 0x6f, 0x3c, 0x38, 0x18, 0x34, 0x28, 0x6f, 0x02, 0x6f,
+
759 0x2c, 0x51, 0x37, 0x22, 0x46, 0x34, 0x0c, 0xfe, 0xed, 0x01, 0x0e, 0xfe,
+
760 0xf2, 0x01, 0x56, 0x37, 0x2d, 0x1d, 0x2f, 0x1c, 0xff, 0xff, 0x00, 0x34,
+
761 0x00, 0x00, 0x01, 0xd5, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
+
762 0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01,
+
763 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
+
764 0x00, 0x00, 0x01, 0xd5, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
+
765 0x01, 0x06, 0x03, 0xa6, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1d, 0x01,
+
766 0x01, 0x01, 0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
+
767 0xfe, 0xe6, 0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
+
768 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x0c,
+
769 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
770 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x9e,
+
771 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d,
+
772 0xb7, 0x03, 0x02, 0x1a, 0x01, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
+
773 0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65, 0x01, 0xd5, 0x02, 0x6f,
+
774 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
+
775 0x00, 0x0e, 0xb4, 0x02, 0x20, 0x0c, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
+
776 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
+
777 0x03, 0x2d, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
+
778 0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01, 0x01, 0x01,
+
779 0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65,
+
780 0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06,
+
781 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1b, 0x00, 0x01, 0x01,
+
782 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
+
783 0xff, 0xf6, 0x01, 0xca, 0x02, 0x78, 0x00, 0x40, 0x00, 0x17, 0x40, 0x0b,
+
784 0x1b, 0x11, 0x1f, 0x0c, 0x40, 0x09, 0x72, 0x2c, 0x1f, 0x03, 0x72, 0x00,
+
785 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26,
+
786 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x3e,
+
787 0x02, 0x35, 0x34, 0x2e, 0x03, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
+
788 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
+
789 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x03, 0x17, 0x1e, 0x03,
+
790 0x15, 0x14, 0x06, 0x06, 0x23, 0xf5, 0x3d, 0x65, 0x25, 0x2b, 0x04, 0x07,
+
791 0x02, 0x07, 0x0b, 0x1a, 0x42, 0x29, 0x1b, 0x2c, 0x21, 0x12, 0x07, 0x12,
+
792 0x1e, 0x30, 0x22, 0x40, 0x4b, 0x20, 0x30, 0x57, 0x3a, 0x24, 0x41, 0x38,
+
793 0x16, 0x30, 0x06, 0x07, 0x01, 0x06, 0x0b, 0x16, 0x32, 0x23, 0x17, 0x25,
+
794 0x1a, 0x0f, 0x08, 0x12, 0x21, 0x33, 0x24, 0x2f, 0x3e, 0x23, 0x10, 0x2c,
+
795 0x5e, 0x4b, 0x0a, 0x27, 0x26, 0x49, 0x09, 0x04, 0x07, 0x11, 0x0c, 0x15,
+
796 0x19, 0x0f, 0x1a, 0x24, 0x15, 0x10, 0x1a, 0x16, 0x16, 0x1a, 0x0f, 0x1a,
+
797 0x3a, 0x42, 0x26, 0x2e, 0x46, 0x28, 0x13, 0x22, 0x1a, 0x3c, 0x08, 0x05,
+
798 0x08, 0x10, 0x0c, 0x15, 0x0f, 0x0c, 0x18, 0x1d, 0x10, 0x10, 0x19, 0x18,
+
799 0x19, 0x19, 0x0f, 0x14, 0x26, 0x2b, 0x31, 0x1f, 0x2b, 0x54, 0x35, 0x00,
+
800 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1b, 0x06, 0x26,
+
801 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b,
+
802 0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
803 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x9c, 0x06, 0x26,
+
804 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa3, 0xf6, 0x00, 0x01, 0x06,
+
805 0x03, 0xa1, 0x08, 0x79, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x45, 0x1f, 0x01,
+
806 0x01, 0xb4, 0x56, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b,
+
807 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
+
808 0x03, 0x1f, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
+
809 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x44, 0x1f, 0x01, 0x01, 0x1a, 0x56,
+
810 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
+
811 0x03, 0xbd, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa6,
+
812 0x09, 0x00, 0x01, 0x07, 0x03, 0xa1, 0x00, 0x08, 0x00, 0x9a, 0x00, 0x15,
+
813 0x40, 0x0e, 0x02, 0x48, 0x1f, 0x01, 0x01, 0xdc, 0x56, 0x01, 0x44, 0x1f,
+
814 0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
815 0x00, 0x2e, 0xff, 0x38, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
+
816 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
817 0x50, 0x40, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
818 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xa6,
+
819 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
820 0x41, 0x1f, 0x01, 0x01, 0x18, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
821 0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
+
822 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0c, 0x00, 0x00, 0x0e, 0xb4, 0x01,
+
823 0x4d, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
824 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x23, 0x06, 0x26,
+
825 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x0b,
+
826 0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
827 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26,
+
828 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x08, 0x00, 0x00, 0x0e,
+
829 0xb4, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
+
830 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x03, 0x23,
+
831 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x08, 0x00,
+
832 0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x4d,
+
833 0x1f, 0x01, 0x01, 0x3e, 0x56, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff,
+
834 0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x32,
+
835 0xff, 0xf5, 0x01, 0xd1, 0x02, 0x9e, 0x00, 0x33, 0x00, 0x21, 0x40, 0x0f,
+
836 0x2a, 0x2b, 0x2b, 0x13, 0x11, 0x12, 0x12, 0x00, 0x18, 0x25, 0x01, 0x72,
+
837 0x1f, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x2b, 0x32, 0x11, 0x39, 0x2f,
+
838 0x33, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37,
+
839 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23,
+
840 0x35, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23,
+
841 0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x07, 0x27, 0x32,
+
842 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x1e, 0x20, 0x34, 0x16, 0x1b,
+
843 0x0b, 0x17, 0x18, 0x0c, 0x16, 0x27, 0x1e, 0x11, 0x18, 0x3d, 0x3a, 0x1e,
+
844 0x81, 0x13, 0x29, 0x23, 0x15, 0x28, 0x21, 0x13, 0x53, 0x21, 0x37, 0x45,
+
845 0x25, 0x3c, 0x4e, 0x28, 0xaa, 0x0c, 0x48, 0x64, 0x35, 0x1c, 0x30, 0x42,
+
846 0x0b, 0x10, 0x0f, 0x41, 0x07, 0x0b, 0x05, 0x11, 0x21, 0x2f, 0x1e, 0x1e,
+
847 0x3a, 0x27, 0x43, 0x74, 0x1c, 0x2f, 0x1c, 0x0f, 0x1f, 0x32, 0x23, 0xfe,
+
848 0x29, 0x01, 0xc9, 0x3a, 0x52, 0x32, 0x17, 0x32, 0x52, 0x30, 0x95, 0x2a,
+
849 0x2f, 0x5a, 0x41, 0x31, 0x47, 0x30, 0x18, 0x00, 0xff, 0xff, 0x00, 0x18,
+
850 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x06, 0x00, 0x78, 0x00, 0x00,
+
851 0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3, 0x02, 0x70, 0x00, 0x07,
+
852 0x00, 0x13, 0x40, 0x09, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08,
+
853 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x23,
+
854 0x35, 0x21, 0x15, 0x23, 0x11, 0xca, 0xae, 0x01, 0xb7, 0xb5, 0x02, 0x26,
+
855 0x4a, 0x4a, 0xfd, 0xda, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
+
856 0x02, 0x70, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x1a, 0x40, 0x0c, 0x09, 0x08,
+
857 0x08, 0x00, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08, 0x00, 0x3f,
+
858 0x2b, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11,
+
859 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x03, 0x35, 0x21, 0x15, 0xca, 0xae,
+
860 0x01, 0xb7, 0xb5, 0xcc, 0x01, 0x4c, 0x02, 0x26, 0x4a, 0x4a, 0xfd, 0xda,
+
861 0x01, 0x19, 0x3e, 0x3e, 0xff, 0xff, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
+
862 0x03, 0x1f, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
+
863 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x03, 0x01, 0x01, 0x21, 0x56,
+
864 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x38, 0x01, 0xd3,
+
865 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
+
866 0xeb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x17, 0x00, 0x01, 0x00, 0x00, 0x56,
+
867 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xfe, 0xe6, 0x01, 0xd3,
+
868 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
+
869 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x14, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
870 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x65,
+
871 0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06,
+
872 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0e, 0x00, 0x01, 0x01,
+
873 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c,
+
874 0xff, 0x65, 0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00,
+
875 0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x09, 0x00,
+
876 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
+
877 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10,
+
878 0xb7, 0x0e, 0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32,
+
879 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15,
+
880 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33,
+
881 0x11, 0x14, 0x06, 0x06, 0x23, 0xfb, 0x65, 0x69, 0x53, 0x0a, 0x06, 0x03,
+
882 0x36, 0x45, 0x45, 0x37, 0x52, 0x34, 0x5d, 0x3e, 0x0c, 0x79, 0x6b, 0x01,
+
883 0x97, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01,
+
884 0x95, 0xfe, 0x6c, 0x4f, 0x66, 0x32, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
885 0x01, 0xca, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
+
886 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
+
887 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
888 0x01, 0xca, 0x03, 0x18, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
+
889 0x03, 0xa7, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
+
890 0x30, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
891 0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
+
892 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
+
893 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
894 0x01, 0xca, 0x03, 0x55, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07,
+
895 0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x19,
+
896 0x04, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
+
897 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xba,
+
898 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02,
+
899 0x01, 0x19, 0x04, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
900 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xca, 0x02, 0x6f, 0x06, 0x26,
+
901 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
+
902 0xb4, 0x01, 0x1f, 0x18, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
+
903 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1b,
+
904 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
+
905 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x12, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
+
906 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x6c,
+
907 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
+
908 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x20, 0x12, 0x01, 0x01, 0x42, 0x56,
+
909 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1,
+
910 0x02, 0xcd, 0x06, 0x26, 0x00, 0xe7, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa,
+
911 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x19, 0x04, 0x01, 0x01, 0xb8, 0xff,
+
912 0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4,
+
913 0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
+
914 0x03, 0xa3, 0xd3, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x04, 0x01, 0x01,
+
915 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
+
916 0x01, 0xf1, 0x02, 0xcd, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
+
917 0x03, 0x8a, 0xef, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x29, 0x18, 0x01, 0x01,
+
918 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29,
+
919 0xff, 0xf4, 0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
+
920 0x01, 0x06, 0x03, 0xa2, 0xd7, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x12,
+
921 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29,
+
922 0xff, 0xf4, 0x01, 0xf1, 0x03, 0x6c, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
+
923 0x01, 0x07, 0x03, 0x85, 0xff, 0xf3, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02,
+
924 0x2a, 0x12, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
925 0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1, 0x03, 0x20, 0x06, 0x26, 0x00, 0xc3,
+
926 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
927 0x27, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
928 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2b, 0x06, 0x26, 0x00, 0xba,
+
929 0x00, 0x00, 0x01, 0x06, 0x03, 0xa4, 0xda, 0x00, 0x00, 0x0d, 0xb7, 0x02,
+
930 0x01, 0x19, 0x12, 0x01, 0x01, 0x16, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
931 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2d, 0x06, 0x26,
+
932 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa4,
+
933 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
+
934 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x17,
+
935 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00,
+
936 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56,
+
937 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca,
+
938 0x03, 0xb5, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84,
+
939 0x00, 0x00, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa0, 0xff, 0xff, 0x00, 0x98,
+
940 0x00, 0x17, 0x40, 0x0f, 0x03, 0x02, 0x1d, 0x1a, 0x01, 0x01, 0x37, 0x56,
+
941 0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
+
942 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x23, 0x01, 0xca, 0x02, 0x6f,
+
943 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x39, 0x0a,
+
944 0x00, 0x0b, 0xb6, 0x01, 0x22, 0x18, 0x00, 0x00, 0x26, 0x56, 0x00, 0x2b,
+
945 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x22,
+
946 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00,
+
947 0x00, 0x10, 0xb5, 0x02, 0x01, 0x19, 0x12, 0x01, 0x00, 0xb8, 0xff, 0xfc,
+
948 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
949 0x01, 0xca, 0x03, 0x20, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
+
950 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
+
951 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
+
952 0x01, 0xca, 0x03, 0xb9, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x26,
+
953 0x03, 0xa9, 0xfe, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x9e,
+
954 0x00, 0x15, 0x40, 0x0e, 0x02, 0x31, 0x12, 0x01, 0x01, 0xc0, 0x56, 0x01,
+
955 0x1d, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
956 0x00, 0x01, 0x00, 0x16, 0xff, 0xfd, 0x01, 0xe2, 0x02, 0x70, 0x00, 0x06,
+
957 0x00, 0x13, 0x40, 0x09, 0x03, 0x00, 0x02, 0x05, 0x02, 0x72, 0x00, 0x08,
+
958 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33,
+
959 0x13, 0x13, 0x33, 0x03, 0xe6, 0xd0, 0x56, 0x96, 0x8e, 0x52, 0xcd, 0x03,
+
960 0x02, 0x73, 0xfe, 0x2e, 0x01, 0xd1, 0xfd, 0x8e, 0x00, 0x01, 0x00, 0x0f,
+
961 0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x1d, 0x40, 0x0f,
+
962 0x06, 0x03, 0x0b, 0x03, 0x04, 0x04, 0x00, 0x08, 0x01, 0x02, 0x72, 0x0a,
+
963 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x17,
+
964 0x39, 0x30, 0x31, 0x73, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33,
+
965 0x03, 0x23, 0x03, 0x03, 0x6d, 0x5e, 0x4c, 0x3a, 0x5e, 0x22, 0x5e, 0x31,
+
966 0x46, 0x5d, 0x29, 0x65, 0x67, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe,
+
967 0x93, 0x01, 0x9c, 0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0xff, 0xff,
+
968 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xd2,
+
969 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
970 0x0d, 0x01, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
971 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xd2,
+
972 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
973 0x0d, 0x01, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
974 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xd2,
+
975 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x08, 0x00, 0x00, 0x0d, 0xb7, 0x02,
+
976 0x01, 0x0d, 0x01, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
977 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26,
+
978 0x00, 0xd2, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf9, 0x00, 0x00, 0x0b,
+
979 0xb6, 0x01, 0x0d, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
980 0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70, 0x00, 0x0b,
+
981 0x00, 0x1c, 0x40, 0x0f, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x06,
+
982 0x02, 0x02, 0x72, 0x09, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
+
983 0x2f, 0x11, 0x17, 0x39, 0x30, 0x31, 0x73, 0x13, 0x03, 0x33, 0x17, 0x37,
+
984 0x33, 0x03, 0x13, 0x23, 0x27, 0x07, 0x25, 0xa8, 0xa5, 0x58, 0x7b, 0x78,
+
985 0x53, 0x9b, 0xae, 0x5c, 0x81, 0x7e, 0x01, 0x3e, 0x01, 0x32, 0xe3, 0xe3,
+
986 0xfe, 0xcf, 0xfe, 0xc1, 0xec, 0xec, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00,
+
987 0x01, 0xde, 0x02, 0x6f, 0x00, 0x08, 0x00, 0x1a, 0x40, 0x0e, 0x08, 0x08,
+
988 0x72, 0x07, 0x01, 0x04, 0x03, 0x00, 0x06, 0x02, 0x02, 0x72, 0x00, 0x08,
+
989 0x00, 0x3f, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x2b, 0x30, 0x31, 0x73, 0x35,
+
990 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x15, 0xd6, 0xbe, 0x5c, 0x91, 0x82,
+
991 0x57, 0xaf, 0xf6, 0x01, 0x79, 0xfe, 0xe0, 0x01, 0x20, 0xfe, 0x87, 0xf6,
+
992 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1b, 0x06, 0x26,
+
993 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b,
+
994 0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
995 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1a, 0x06, 0x26,
+
996 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b,
+
997 0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
998 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1d, 0x06, 0x26,
+
999 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d,
+
1000 0xb7, 0x02, 0x01, 0x09, 0x02, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
+
1001 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x23,
+
1002 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0xff, 0x00,
+
1003 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x46, 0x56, 0x00, 0x2b,
+
1004 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xde, 0x02, 0x6f,
+
1005 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x12, 0x00,
+
1006 0x00, 0x0e, 0xb4, 0x01, 0x0f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
+
1007 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
+
1008 0x03, 0x1b, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
+
1009 0xf0, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x25, 0x56,
+
1010 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
+
1011 0x03, 0x6c, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
+
1012 0x00, 0x0d, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01,
+
1013 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00,
+
1014 0x01, 0xde, 0x03, 0x17, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07,
+
1015 0x03, 0x84, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x02,
+
1016 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
+
1017 0x00, 0x00, 0x01, 0xde, 0x03, 0x20, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00,
+
1018 0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0d, 0x05,
+
1019 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2e,
+
1020 0x00, 0x00, 0x01, 0xd4, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x19, 0x40, 0x0c,
+
1021 0x00, 0x06, 0x06, 0x0e, 0x08, 0x72, 0x05, 0x02, 0x02, 0x03, 0x02, 0x72,
+
1022 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77,
+
1023 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15,
+
1024 0x15, 0x21, 0x2e, 0x01, 0x32, 0xfe, 0xda, 0x01, 0x8a, 0xfe, 0xd3, 0x01,
+
1025 0x10, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x5a, 0x39, 0x01, 0xec, 0x4a, 0x39,
+
1026 0xfe, 0x13, 0x04, 0x06, 0x0a, 0x49, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
+
1027 0x01, 0xd4, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
+
1028 0x03, 0xa3, 0xf7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
+
1029 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
+
1030 0x01, 0xd4, 0x03, 0x1f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
+
1031 0x03, 0xa6, 0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01,
+
1032 0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
+
1033 0x01, 0xd4, 0x03, 0x23, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
+
1034 0x03, 0xa1, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
+
1035 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
+
1036 0x01, 0xd4, 0x02, 0x6f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
+
1037 0x03, 0x8a, 0x1c, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
+
1038 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x29,
+
1039 0xff, 0xf4, 0x01, 0x9c, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10, 0xb7, 0x0e,
+
1040 0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
+
1041 0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15, 0x06, 0x06,
+
1042 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14,
+
1043 0x06, 0x06, 0x23, 0xe2, 0x5b, 0x5e, 0x4a, 0x09, 0x05, 0x03, 0x31, 0x3e,
+
1044 0x3f, 0x30, 0x4a, 0x2e, 0x54, 0x38, 0x0c, 0x79, 0x6b, 0x01, 0x97, 0x08,
+
1045 0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01, 0x95, 0xfe,
+
1046 0x6c, 0x4f, 0x66, 0x32, 0x00, 0x01, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1047 0x01, 0xd6, 0x00, 0x37, 0x00, 0x27, 0x40, 0x14, 0x31, 0x0a, 0x72, 0x0c,
+
1048 0x08, 0x08, 0x0d, 0x11, 0x11, 0x00, 0x24, 0x2b, 0x07, 0x72, 0x33, 0x1b,
+
1049 0x1b, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11,
+
1050 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x57, 0x22, 0x26,
+
1051 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x32, 0x16, 0x17, 0x17, 0x2e, 0x02,
+
1052 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
+
1053 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
+
1054 0x32, 0x1e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x0e, 0x03, 0xcf, 0x4e, 0x54,
+
1055 0x23, 0x40, 0x58, 0x35, 0x0e, 0x1f, 0x23, 0x12, 0x03, 0x10, 0x22, 0x21,
+
1056 0x0f, 0x25, 0x3b, 0x28, 0x16, 0x0e, 0x18, 0x20, 0x13, 0x24, 0x37, 0x27,
+
1057 0x14, 0x1d, 0x3a, 0x2c, 0x21, 0x3d, 0x1b, 0x2c, 0x23, 0x58, 0x2f, 0x2d,
+
1058 0x4a, 0x37, 0x1e, 0x5b, 0x0d, 0x23, 0x27, 0x2a, 0x0b, 0x47, 0x38, 0x25,
+
1059 0x3d, 0x2a, 0x17, 0x03, 0x02, 0x3f, 0x02, 0x03, 0x01, 0x0c, 0x17, 0x23,
+
1060 0x17, 0x14, 0x1a, 0x10, 0x07, 0x17, 0x2e, 0x43, 0x2d, 0x40, 0x48, 0x1d,
+
1061 0x17, 0x1b, 0x35, 0x22, 0x20, 0x15, 0x32, 0x54, 0x40, 0xfb, 0x3f, 0x16,
+
1062 0x1d, 0x10, 0x07, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1063 0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
+
1064 0xef, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56,
+
1065 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1066 0x02, 0x93, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
+
1067 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
+
1068 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1069 0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb5,
+
1070 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47, 0x3c, 0x01, 0x01, 0x64,
+
1071 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1072 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0x93,
+
1073 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00,
+
1074 0x01, 0x06, 0x03, 0x81, 0xf6, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x48,
+
1075 0x2b, 0x01, 0x01, 0x47, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
1076 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d,
+
1077 0xff, 0xf5, 0x01, 0xbf, 0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
+
1078 0x01, 0x06, 0x03, 0xb6, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47,
+
1079 0x3c, 0x01, 0x01, 0x64, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
+
1080 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1081 0x01, 0xbf, 0x03, 0x50, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1082 0x03, 0xb7, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4e, 0x3c, 0x01,
+
1083 0x01, 0x70, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
+
1084 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1085 0x03, 0x29, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb8,
+
1086 0xf2, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4b, 0x3c, 0x01, 0x01, 0x9b,
+
1087 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1088 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xad,
+
1089 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0xff, 0xff,
+
1090 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
+
1091 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xea, 0x03, 0x2d,
+
1092 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xf8, 0x00,
+
1093 0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01, 0x01, 0x78, 0x56, 0x01,
+
1094 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1095 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0xad, 0x06, 0x26,
+
1096 0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
+
1097 0x03, 0x7f, 0xff, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x44, 0x2b, 0x01,
+
1098 0x01, 0x2c, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0,
+
1099 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1100 0x01, 0xbf, 0x03, 0x43, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1101 0x03, 0xba, 0xf8, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01,
+
1102 0x01, 0x8d, 0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
+
1103 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xd2,
+
1104 0x03, 0x2f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
+
1105 0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x46, 0x38, 0x01, 0x01, 0x70,
+
1106 0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1107 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x03, 0x3d,
+
1108 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf7, 0x00,
+
1109 0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x38, 0x01, 0x01, 0xcc, 0x56, 0x01,
+
1110 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1111 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26,
+
1112 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xed, 0x00, 0x00, 0x0d,
+
1113 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
+
1114 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0x9d,
+
1115 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xfd, 0x00,
+
1116 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x61, 0x56, 0x00,
+
1117 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf,
+
1118 0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
1119 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
1120 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1121 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1122 0x03, 0x7c, 0xf3, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
+
1123 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1124 0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1125 0x03, 0x85, 0x0b, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x3f, 0x2b, 0x01, 0x01,
+
1126 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1127 0x01, 0xbf, 0x02, 0x89, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1128 0x03, 0x87, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
+
1129 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1130 0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1131 0x03, 0x84, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
+
1132 0x62, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x19,
+
1133 0x01, 0xbf, 0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1134 0x03, 0x9f, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x42, 0x32, 0x00, 0x00,
+
1135 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
+
1136 0x01, 0xbf, 0x02, 0xbb, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
+
1137 0x03, 0x82, 0xf8, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01,
+
1138 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d,
+
1139 0xff, 0xf5, 0x01, 0xbf, 0x03, 0x9f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
+
1140 0x00, 0x26, 0x03, 0x82, 0xf8, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xef,
+
1141 0x00, 0xee, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x54, 0x40, 0x01, 0x01, 0x32,
+
1142 0x56, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
+
1143 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
+
1144 0x02, 0xac, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
+
1145 0xf4, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x6b, 0x56,
+
1146 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
+
1147 0x01, 0xd6, 0x00, 0x37, 0x00, 0x43, 0x00, 0x4c, 0x00, 0x39, 0x40, 0x1c,
+
1148 0x45, 0x44, 0x44, 0x22, 0x09, 0x3c, 0x3c, 0x21, 0x22, 0x22, 0x00, 0x49,
+
1149 0x1c, 0x1c, 0x18, 0x0d, 0x14, 0x07, 0x72, 0x34, 0x38, 0x38, 0x28, 0x30,
+
1150 0x30, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x32, 0x11, 0x33,
+
1151 0x2b, 0x32, 0x32, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11,
+
1152 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35,
+
1153 0x34, 0x3e, 0x02, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27,
+
1154 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02, 0x33, 0x32, 0x16,
+
1155 0x16, 0x15, 0x15, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
+
1156 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x27,
+
1157 0x32, 0x36, 0x36, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x37,
+
1158 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x8f, 0x2c, 0x3c, 0x20, 0x1c,
+
1159 0x34, 0x4e, 0x32, 0x10, 0x21, 0x19, 0x14, 0x26, 0x10, 0x29, 0x18, 0x3c,
+
1160 0x26, 0x18, 0x2b, 0x22, 0x09, 0x0c, 0x20, 0x26, 0x13, 0x2f, 0x3a, 0x1b,
+
1161 0xcc, 0x0d, 0x19, 0x23, 0x16, 0x10, 0x1a, 0x16, 0x0a, 0x28, 0x17, 0x3d,
+
1162 0x23, 0x19, 0x2d, 0x26, 0x0e, 0x0b, 0x23, 0x2a, 0x15, 0x1f, 0x1e, 0x09,
+
1163 0x30, 0x3b, 0x1b, 0x0f, 0x1d, 0xa1, 0x8b, 0x0e, 0x1d, 0x17, 0x16, 0x21,
+
1164 0x12, 0x0b, 0x22, 0x3e, 0x28, 0x24, 0x39, 0x29, 0x16, 0x02, 0x28, 0x36,
+
1165 0x1c, 0x16, 0x16, 0x33, 0x1d, 0x1d, 0x0f, 0x1b, 0x12, 0x12, 0x1b, 0x0f,
+
1166 0x31, 0x5a, 0x3e, 0x29, 0x07, 0x2d, 0x1b, 0x2d, 0x20, 0x11, 0x08, 0x12,
+
1167 0x0d, 0x30, 0x1c, 0x1d, 0x10, 0x1e, 0x14, 0x14, 0x1e, 0x10, 0x45, 0x27,
+
1168 0x48, 0x30, 0x02, 0x15, 0x27, 0x1f, 0x19, 0x1d, 0x0c, 0xe2, 0x05, 0x26,
+
1169 0x34, 0x1a, 0x1d, 0x35, 0xff, 0xff, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
+
1170 0x02, 0xb1, 0x06, 0x26, 0x01, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
+
1171 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x03, 0x4d, 0x14, 0x01, 0x01, 0x28, 0x56,
+
1172 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x38, 0xff, 0xf5, 0x01, 0xce,
+
1173 0x02, 0x9b, 0x00, 0x1d, 0x00, 0x31, 0x00, 0x21, 0x40, 0x12, 0x04, 0x31,
+
1174 0x31, 0x1d, 0x0b, 0x72, 0x0e, 0x28, 0x28, 0x13, 0x07, 0x72, 0x07, 0x00,
+
1175 0x72, 0x06, 0x0a, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b,
+
1176 0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x07, 0x23,
+
1177 0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32,
+
1178 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x32, 0x3e, 0x02, 0x35,
+
1179 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33,
+
1180 0x01, 0x0e, 0x1b, 0x30, 0x29, 0x10, 0x17, 0x3b, 0x56, 0x0a, 0x06, 0x03,
+
1181 0x0b, 0x1c, 0x23, 0x26, 0x13, 0x2a, 0x45, 0x32, 0x1b, 0x20, 0x36, 0x45,
+
1182 0x25, 0x0d, 0x17, 0x2a, 0x22, 0x13, 0x11, 0x1e, 0x2b, 0x1a, 0x23, 0x34,
+
1183 0x1d, 0x0d, 0x1b, 0x2b, 0x1f, 0x0b, 0x10, 0x1f, 0x15, 0x39, 0x02, 0x9b,
+
1184 0x08, 0x06, 0x0e, 0x11, 0xe2, 0x10, 0x1c, 0x15, 0x0a, 0x1e, 0x3b, 0x58,
+
1185 0x3b, 0x3e, 0x5d, 0x3d, 0x1e, 0x48, 0x11, 0x28, 0x41, 0x2e, 0x2b, 0x41,
+
1186 0x2b, 0x15, 0x2a, 0x4e, 0x33, 0x27, 0x3e, 0x2d, 0x17, 0x00, 0x00, 0x03,
+
1187 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
+
1188 0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x26, 0x20, 0x20, 0x00, 0x18, 0x08,
+
1189 0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
+
1190 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
+
1191 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
+
1192 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
+
1193 0x16, 0x37, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
1194 0x06, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35,
+
1195 0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21,
+
1196 0x40, 0x2d, 0x14, 0x1c, 0x1c, 0x14, 0x14, 0x1c, 0x1c, 0x0b, 0x4a, 0x90,
+
1197 0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39,
+
1198 0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0xce,
+
1199 0x1c, 0x13, 0x14, 0x1c, 0x1d, 0x13, 0x13, 0x1c, 0x00, 0x01, 0x00, 0x32,
+
1200 0xff, 0xf5, 0x01, 0xcc, 0x01, 0xd5, 0x00, 0x28, 0x00, 0x13, 0x40, 0x09,
+
1201 0x20, 0x28, 0x16, 0x0a, 0x07, 0x72, 0x28, 0x0b, 0x72, 0x00, 0x2b, 0x2b,
+
1202 0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
+
1203 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26,
+
1204 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36,
+
1205 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b, 0x33, 0x55, 0x3e, 0x23,
+
1206 0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
+
1207 0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
+
1208 0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x0b, 0x24, 0x40, 0x57, 0x34,
+
1209 0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07, 0x06, 0x08, 0x0f, 0x0c,
+
1210 0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d, 0x2d, 0x19, 0x0c, 0x19,
+
1211 0x13, 0x38, 0x26, 0x24, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
+
1212 0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
+
1213 0x12, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a, 0x01, 0x01, 0x29, 0x56,
+
1214 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
+
1215 0x02, 0xb5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x80,
+
1216 0x1b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2e, 0x0a, 0x01, 0x01, 0x30, 0x56,
+
1217 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
+
1218 0x01, 0xd5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
+
1219 0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x28, 0x00, 0x00, 0x0b, 0x56,
+
1220 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
+
1221 0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d,
+
1222 0x0c, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x12, 0x00, 0x00, 0x15, 0x40, 0x0e,
+
1223 0x02, 0x41, 0x0a, 0x01, 0x01, 0x29, 0x56, 0x01, 0x38, 0x28, 0x00, 0x00,
+
1224 0x0b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
+
1225 0xff, 0xf5, 0x01, 0xcc, 0x02, 0xad, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
+
1226 0x01, 0x06, 0x03, 0x7f, 0x21, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
+
1227 0x01, 0x01, 0x2d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
+
1228 0xff, 0xf5, 0x01, 0xcc, 0x02, 0x97, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
+
1229 0x01, 0x06, 0x03, 0x7b, 0x1c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
+
1230 0x01, 0x01, 0x57, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x29,
+
1231 0xff, 0xf6, 0x01, 0xc5, 0x02, 0x9b, 0x00, 0x22, 0x00, 0x35, 0x00, 0x21,
+
1232 0x40, 0x12, 0x1e, 0x35, 0x35, 0x22, 0x0b, 0x72, 0x1a, 0x0a, 0x72, 0x0f,
+
1233 0x00, 0x72, 0x0e, 0x2c, 0x2c, 0x0a, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x11,
+
1234 0x33, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x2e,
+
1235 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x11, 0x33,
+
1236 0x33, 0x15, 0x06, 0x06, 0x15, 0x13, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
+
1237 0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26,
+
1238 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0xe7, 0x24, 0x44,
+
1239 0x36, 0x20, 0x21, 0x37, 0x44, 0x25, 0x1d, 0x31, 0x25, 0x0b, 0x51, 0x0a,
+
1240 0x06, 0x03, 0x01, 0x03, 0x07, 0x54, 0x05, 0x04, 0x01, 0x0e, 0x26, 0x30,
+
1241 0x1c, 0x0e, 0x1e, 0x2a, 0x1a, 0x0d, 0x18, 0x34, 0x28, 0x1c, 0x2c, 0x1c,
+
1242 0x0f, 0x1d, 0x36, 0x25, 0x0a, 0x1e, 0x3c, 0x5c, 0x3e, 0x3e, 0x59, 0x3b,
+
1243 0x1c, 0x12, 0x1f, 0x16, 0x01, 0x0a, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xd6,
+
1244 0x11, 0x22, 0x11, 0x0c, 0x14, 0x15, 0x0b, 0x17, 0x22, 0x11, 0x48, 0x18,
+
1245 0x2e, 0x3f, 0x25, 0x33, 0x4d, 0x2b, 0x16, 0x2b, 0x3b, 0x25, 0x37, 0x50,
+
1246 0x2d, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xf3, 0x01, 0xcf, 0x02, 0xa2,
+
1247 0x00, 0x28, 0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0f, 0x11, 0x1f, 0x14, 0x1c,
+
1248 0x04, 0x19, 0x19, 0x34, 0x0a, 0x07, 0x72, 0x29, 0x00, 0x0b, 0x72, 0x00,
+
1249 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x45,
+
1250 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
+
1251 0x26, 0x26, 0x27, 0x07, 0x27, 0x37, 0x2e, 0x02, 0x27, 0x37, 0x16, 0x16,
+
1252 0x17, 0x37, 0x17, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32,
+
1253 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14,
+
1254 0x1e, 0x02, 0x01, 0x00, 0x2d, 0x4f, 0x3c, 0x22, 0x21, 0x39, 0x47, 0x27,
+
1255 0x19, 0x2a, 0x25, 0x0e, 0x0e, 0x28, 0x1a, 0x7a, 0x15, 0x5f, 0x0f, 0x1f,
+
1256 0x21, 0x13, 0x5c, 0x17, 0x29, 0x14, 0x6e, 0x14, 0x51, 0x1a, 0x28, 0x1c,
+
1257 0x0e, 0x1b, 0x34, 0x4d, 0x33, 0x18, 0x2b, 0x22, 0x14, 0x0f, 0x18, 0x20,
+
1258 0x23, 0x11, 0x17, 0x2d, 0x24, 0x16, 0x15, 0x23, 0x2e, 0x0d, 0x23, 0x3e,
+
1259 0x56, 0x34, 0x33, 0x59, 0x44, 0x26, 0x0a, 0x15, 0x10, 0x22, 0x40, 0x1b,
+
1260 0x23, 0x39, 0x19, 0x0c, 0x16, 0x14, 0x07, 0x14, 0x0d, 0x1b, 0x13, 0x1e,
+
1261 0x35, 0x18, 0x1f, 0x47, 0x4f, 0x58, 0x2e, 0x3c, 0x62, 0x46, 0x26, 0x48,
+
1262 0x14, 0x2b, 0x40, 0x2d, 0x24, 0x37, 0x26, 0x19, 0x0b, 0x15, 0x29, 0x3e,
+
1263 0x29, 0x27, 0x3f, 0x2d, 0x19, 0x00, 0x00, 0x03, 0x00, 0x20, 0xff, 0xf6,
+
1264 0x01, 0xe2, 0x02, 0x9c, 0x00, 0x21, 0x00, 0x34, 0x00, 0x47, 0x00, 0x23,
+
1265 0x40, 0x11, 0x1d, 0x34, 0x34, 0x21, 0x0b, 0x19, 0x0a, 0x3c, 0x35, 0x35,
+
1266 0x0e, 0x00, 0x0d, 0x2a, 0x2a, 0x0a, 0x07, 0x00, 0x3f, 0x33, 0x11, 0x33,
+
1267 0x3f, 0x33, 0x2f, 0xcc, 0x3f, 0x3f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
+
1268 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x11,
+
1269 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e,
+
1270 0x02, 0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
+
1271 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x13, 0x32,
+
1272 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26,
+
1273 0x26, 0x35, 0x34, 0x36, 0xb4, 0x1c, 0x36, 0x2a, 0x18, 0x18, 0x2b, 0x36,
+
1274 0x1f, 0x23, 0x33, 0x0c, 0x49, 0x0a, 0x06, 0x03, 0x02, 0x06, 0x4a, 0x04,
+
1275 0x04, 0x02, 0x0a, 0x1e, 0x25, 0x17, 0x0f, 0x1d, 0x25, 0x12, 0x13, 0x26,
+
1276 0x1d, 0x15, 0x21, 0x16, 0x0c, 0x0e, 0x17, 0x21, 0x14, 0xee, 0x15, 0x1c,
+
1277 0x12, 0x1f, 0x12, 0x24, 0x0a, 0x12, 0x0b, 0x10, 0x11, 0x1a, 0x0a, 0x1a,
+
1278 0x38, 0x5e, 0x43, 0x43, 0x5c, 0x37, 0x19, 0x23, 0x23, 0x01, 0x08, 0x07,
+
1279 0x06, 0x0e, 0x11, 0xfd, 0xd7, 0x12, 0x21, 0x12, 0x0b, 0x12, 0x14, 0x0c,
+
1280 0x15, 0x21, 0x11, 0x46, 0x28, 0x4c, 0x38, 0x39, 0x4c, 0x26, 0x13, 0x27,
+
1281 0x3d, 0x2a, 0x30, 0x45, 0x2c, 0x15, 0x02, 0x60, 0x1f, 0x19, 0x15, 0x34,
+
1282 0x35, 0x18, 0x1a, 0x0c, 0x19, 0x19, 0x0d, 0x0a, 0x0f, 0x14, 0x12, 0x10,
+
1283 0x1a, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf6, 0x01, 0xf4, 0x02, 0x9b,
+
1284 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0x00, 0x6d,
+
1285 0x00, 0xec, 0x00, 0x0b, 0xb6, 0x02, 0x36, 0x0a, 0x01, 0x01, 0x33, 0x56,
+
1286 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65, 0x01, 0xc5,
+
1287 0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
1288 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x3c, 0x1a, 0x01, 0x01, 0xb8, 0xff,
+
1289 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
+
1290 0x01, 0xc5, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06,
+
1291 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x37, 0x1a, 0x01, 0x01,
+
1292 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x2e,
+
1293 0xff, 0xf6, 0x01, 0xc1, 0x01, 0xd7, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x1b,
+
1294 0x40, 0x0d, 0x18, 0x00, 0x13, 0x21, 0x21, 0x00, 0x27, 0x0a, 0x07, 0x72,
+
1295 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x11,
+
1296 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33,
+
1297 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x07, 0x21, 0x1e, 0x03, 0x33, 0x32,
+
1298 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x03, 0x33, 0x34, 0x2e, 0x02, 0x23,
+
1299 0x22, 0x0e, 0x02, 0x01, 0x10, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a, 0x4e,
+
1300 0x2c, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0xfe, 0xc1, 0x02, 0x19, 0x28,
+
1301 0x33, 0x1d, 0x17, 0x29, 0x24, 0x0f, 0x2e, 0x14, 0x33, 0x3b, 0xaf, 0xe9,
+
1302 0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x0a, 0x1f, 0x3c, 0x5a,
+
1303 0x39, 0x3a, 0x5a, 0x3e, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09, 0x15, 0x08,
+
1304 0x29, 0x3b, 0x25, 0x12, 0x0a, 0x16, 0x10, 0x2c, 0x18, 0x21, 0x0f, 0x01,
+
1305 0x20, 0x1e, 0x2e, 0x22, 0x11, 0x0f, 0x20, 0x2f, 0xff, 0xff, 0x00, 0x2e,
+
1306 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
+
1307 0x01, 0x06, 0x03, 0x7d, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a,
+
1308 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
+
1309 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
+
1310 0x01, 0x06, 0x03, 0x81, 0x02, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x30, 0x0a,
+
1311 0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
+
1312 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
+
1313 0x01, 0x06, 0x03, 0x80, 0x04, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x31, 0x0a,
+
1314 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
+
1315 0xff, 0x38, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
+
1316 0x00, 0x26, 0x03, 0x8d, 0x05, 0x00, 0x01, 0x06, 0x03, 0x81, 0x02, 0x00,
+
1317 0x00, 0x15, 0x40, 0x0e, 0x03, 0x48, 0x0a, 0x01, 0x01, 0x46, 0x56, 0x02,
+
1318 0x3b, 0x00, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1319 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26,
+
1320 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x0a, 0xff, 0x00, 0x0b,
+
1321 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1322 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xf5, 0x03, 0x2d, 0x06, 0x26,
+
1323 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0x04, 0x00, 0x00, 0x15,
+
1324 0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x78, 0x56, 0x02, 0x2c, 0x0a,
+
1325 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1326 0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26, 0x01, 0x12,
+
1327 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x23, 0x00, 0x01, 0x06, 0x03, 0x7f,
+
1328 0x0a, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x38, 0x0a, 0x01, 0x01, 0x2b,
+
1329 0x56, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
+
1330 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1331 0x03, 0x43, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xba,
+
1332 0x04, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x8d,
+
1333 0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1334 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xde, 0x03, 0x2f,
+
1335 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb, 0x0a, 0x00,
+
1336 0x00, 0x15, 0x40, 0x0e, 0x03, 0x3a, 0x2c, 0x01, 0x01, 0x70, 0x56, 0x02,
+
1337 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1338 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x3d, 0x06, 0x26,
+
1339 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0x02, 0x00, 0x00, 0x15,
+
1340 0x40, 0x0e, 0x03, 0x37, 0x2c, 0x01, 0x01, 0xcc, 0x56, 0x02, 0x2c, 0x0a,
+
1341 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1342 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12,
+
1343 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xf9, 0x00, 0x00, 0x0d, 0xb7, 0x03,
+
1344 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
1345 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x9d, 0x06, 0x26,
+
1346 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0x09, 0x00, 0x00, 0x0d,
+
1347 0xb7, 0x03, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34,
+
1348 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x97,
+
1349 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x05, 0x00,
+
1350 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
+
1351 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x01, 0xd7,
+
1352 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
+
1353 0x00, 0x0e, 0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
+
1354 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1355 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c,
+
1356 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56,
+
1357 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1358 0x02, 0xc8, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85,
+
1359 0x16, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x33, 0x0a, 0x01, 0x01, 0x37, 0x56,
+
1360 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1361 0x02, 0x89, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
+
1362 0x03, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x3c, 0x56,
+
1363 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1364 0x02, 0x73, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
+
1365 0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56,
+
1366 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
+
1367 0x03, 0x49, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
+
1368 0x0a, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xfb, 0x00, 0x98, 0x00, 0x15,
+
1369 0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01, 0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a,
+
1370 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1371 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x12,
+
1372 0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x0a, 0x00, 0x01, 0x07, 0x03, 0x7c,
+
1373 0xff, 0xff, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01,
+
1374 0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b,
+
1375 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x29, 0x01, 0xc1,
+
1376 0x01, 0xd7, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f,
+
1377 0xef, 0x0f, 0x00, 0x0b, 0xb6, 0x02, 0x35, 0x00, 0x00, 0x00, 0x2a, 0x56,
+
1378 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x28, 0xff, 0xf5, 0x01, 0xca,
+
1379 0x01, 0xd7, 0x00, 0x16, 0x00, 0x37, 0x00, 0x1d, 0x40, 0x0e, 0x08, 0x27,
+
1380 0x27, 0x2f, 0x2f, 0x00, 0x1f, 0x0f, 0x06, 0x72, 0x17, 0x00, 0x0b, 0x72,
+
1381 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
+
1382 0x31, 0x57, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x26, 0x26, 0x35,
+
1383 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
+
1384 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
+
1385 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x2e, 0x02, 0x23, 0x22,
+
1386 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0xea, 0x3c, 0x58, 0x2e, 0x16, 0x26,
+
1387 0x1b, 0x1f, 0x1f, 0x2c, 0x4f, 0x33, 0x44, 0x62, 0x35, 0x36, 0x66, 0x43,
+
1388 0x2b, 0x3d, 0x20, 0x1d, 0x3b, 0x2a, 0x1e, 0x27, 0x13, 0x10, 0x25, 0x20,
+
1389 0x08, 0x0e, 0x08, 0x08, 0x0c, 0x0b, 0x08, 0x18, 0x25, 0x1a, 0x0e, 0x1b,
+
1390 0x30, 0x0b, 0x01, 0x27, 0x44, 0x29, 0x1d, 0x2c, 0x20, 0x07, 0x12, 0x32,
+
1391 0x1e, 0x22, 0x38, 0x21, 0x3d, 0x6c, 0x48, 0x47, 0x6e, 0x3c, 0x46, 0x28,
+
1392 0x4c, 0x38, 0x33, 0x4c, 0x2a, 0x11, 0x1c, 0x13, 0x10, 0x1b, 0x10, 0x01,
+
1393 0x01, 0x49, 0x01, 0x01, 0x01, 0x09, 0x13, 0x19, 0x12, 0x16, 0x24, 0x15,
+
1394 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xac, 0x06, 0x26,
+
1395 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x0b,
+
1396 0xb6, 0x02, 0x30, 0x0a, 0x01, 0x01, 0x6a, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1397 0x00, 0x02, 0x00, 0x33, 0xff, 0xf5, 0x01, 0xc6, 0x01, 0xd6, 0x00, 0x20,
+
1398 0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x12, 0x22, 0x22, 0x00, 0x27, 0x0a,
+
1399 0x0b, 0x72, 0x18, 0x00, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
+
1400 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e,
+
1401 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x21, 0x2e, 0x03,
+
1402 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x13, 0x23, 0x14, 0x1e,
+
1403 0x02, 0x33, 0x32, 0x3e, 0x02, 0xe4, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a,
+
1404 0x4d, 0x2d, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0x01, 0x3f, 0x02, 0x19,
+
1405 0x28, 0x33, 0x1d, 0x16, 0x2a, 0x23, 0x10, 0x2e, 0x15, 0x32, 0x3b, 0xaf,
+
1406 0xe9, 0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x01, 0xd6, 0x1f,
+
1407 0x3d, 0x59, 0x39, 0x3a, 0x5b, 0x3d, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09,
+
1408 0x15, 0x08, 0x28, 0x3b, 0x26, 0x12, 0x0a, 0x16, 0x11, 0x2d, 0x19, 0x20,
+
1409 0x0f, 0xfe, 0xe0, 0x1e, 0x2f, 0x21, 0x11, 0x0f, 0x1f, 0x30, 0xff, 0xff,
+
1410 0x00, 0x4e, 0xff, 0x4e, 0x01, 0xc4, 0x01, 0xcb, 0x04, 0x07, 0x00, 0x41,
+
1411 0x00, 0x0f, 0xff, 0x5c, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x01, 0xde,
+
1412 0x02, 0xa1, 0x00, 0x1e, 0x00, 0x1b, 0x40, 0x0e, 0x1e, 0x0a, 0x72, 0x01,
+
1413 0x1c, 0x1c, 0x02, 0x19, 0x06, 0x72, 0x14, 0x08, 0x01, 0x72, 0x00, 0x2b,
+
1414 0x32, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x23, 0x35,
+
1415 0x33, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
+
1416 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x33,
+
1417 0x15, 0x23, 0x11, 0x23, 0x9a, 0x63, 0x63, 0x2f, 0x50, 0x31, 0x2d, 0x4d,
+
1418 0x1a, 0x28, 0x05, 0x07, 0x02, 0x06, 0x0b, 0x11, 0x20, 0x18, 0x1c, 0x2c,
+
1419 0x18, 0x92, 0x92, 0x54, 0x01, 0x88, 0x44, 0x22, 0x3e, 0x4f, 0x26, 0x1f,
+
1420 0x20, 0x3d, 0x08, 0x04, 0x08, 0x10, 0x0b, 0x0e, 0x0b, 0x16, 0x30, 0x28,
+
1421 0x23, 0x44, 0xfe, 0x78, 0x00, 0x04, 0x00, 0x23, 0xff, 0x52, 0x01, 0xde,
+
1422 0x01, 0xdc, 0x00, 0x36, 0x00, 0x46, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x3d,
+
1423 0x40, 0x22, 0x57, 0x5c, 0x5c, 0x5b, 0x25, 0x24, 0x47, 0x47, 0x37, 0x4f,
+
1424 0x3f, 0x29, 0x21, 0x2d, 0x09, 0x0a, 0x1b, 0x17, 0x07, 0x37, 0x37, 0x00,
+
1425 0x58, 0x5b, 0x3f, 0x07, 0x72, 0x5b, 0x07, 0x72, 0x13, 0x00, 0x0f, 0x72,
+
1426 0x00, 0x2b, 0x32, 0x2b, 0x2b, 0x11, 0x33, 0x12, 0x39, 0x2f, 0x17, 0x39,
+
1427 0x11, 0x33, 0x11, 0x33, 0x12, 0x39, 0x39, 0x11, 0x33, 0x11, 0x33, 0x30,
+
1428 0x31, 0x57, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e,
+
1429 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
+
1430 0x26, 0x23, 0x22, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02,
+
1431 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
+
1432 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
+
1433 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
+
1434 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, 0x36, 0x36,
+
1435 0x17, 0x17, 0x26, 0x06, 0xf4, 0x30, 0x4e, 0x36, 0x1d, 0x18, 0x27, 0x18,
+
1436 0x25, 0x11, 0x17, 0x0b, 0x14, 0x24, 0x34, 0x20, 0x2b, 0x38, 0x1c, 0x10,
+
1437 0x30, 0x2e, 0x22, 0x3c, 0x31, 0x22, 0x13, 0x21, 0x1a, 0x28, 0x0a, 0x0d,
+
1438 0x06, 0x1b, 0x41, 0x36, 0x32, 0x40, 0x24, 0x0f, 0x17, 0x31, 0x4e, 0x49,
+
1439 0x31, 0x4a, 0x29, 0x29, 0x4a, 0x31, 0x32, 0x49, 0x29, 0x29, 0x49, 0x32,
+
1440 0x1b, 0x29, 0x19, 0x19, 0x29, 0x1b, 0x1a, 0x2a, 0x18, 0x18, 0x2a, 0xa3,
+
1441 0x21, 0x1d, 0x42, 0x2a, 0x0a, 0x20, 0x3a, 0xae, 0x10, 0x1e, 0x2c, 0x1d,
+
1442 0x1b, 0x2b, 0x1e, 0x08, 0x13, 0x0b, 0x15, 0x1b, 0x13, 0x0f, 0x19, 0x10,
+
1443 0x09, 0x11, 0x1f, 0x13, 0x14, 0x19, 0x0c, 0x06, 0x0e, 0x15, 0x20, 0x15,
+
1444 0x1c, 0x30, 0x16, 0x1c, 0x0b, 0x0f, 0x0e, 0x09, 0x0f, 0x12, 0x09, 0x12,
+
1445 0x21, 0x2b, 0x19, 0x1c, 0x33, 0x28, 0x18, 0x01, 0x4a, 0x2a, 0x49, 0x2d,
+
1446 0x2c, 0x48, 0x2c, 0x2c, 0x48, 0x2c, 0x2d, 0x49, 0x2a, 0x43, 0x19, 0x2a,
+
1447 0x1a, 0x1a, 0x29, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2b, 0x19, 0x9f, 0x28,
+
1448 0x1b, 0x1a, 0x03, 0x42, 0x04, 0x0a, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1449 0x01, 0xde, 0x02, 0x90, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1450 0x03, 0x9a, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
+
1451 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1452 0x01, 0xde, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1453 0x03, 0x80, 0xe4, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x64, 0x3f, 0x01, 0x01,
+
1454 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1455 0x01, 0xde, 0x02, 0xad, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1456 0x03, 0x7f, 0xea, 0xff, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
+
1457 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1458 0x01, 0xde, 0x03, 0x2e, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1459 0x03, 0x88, 0xf8, 0xf8, 0x00, 0x0b, 0xb6, 0x04, 0x6b, 0x3f, 0x01, 0x01,
+
1460 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1461 0x01, 0xde, 0x02, 0x97, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1462 0x03, 0x7b, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
+
1463 0x4f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
+
1464 0x01, 0xde, 0x02, 0x73, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
+
1465 0x03, 0x84, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
+
1466 0x5b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x43, 0x00, 0x00,
+
1467 0x01, 0xb7, 0x02, 0x9b, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x11, 0x1e,
+
1468 0x0a, 0x72, 0x07, 0x16, 0x16, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00,
+
1469 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x53, 0x33, 0x33,
+
1470 0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
+
1471 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11,
+
1472 0x23, 0x43, 0x54, 0x09, 0x05, 0x03, 0x11, 0x30, 0x35, 0x1b, 0x2a, 0x41,
+
1473 0x23, 0x54, 0x14, 0x23, 0x17, 0x12, 0x24, 0x20, 0x19, 0x0e, 0x55, 0x02,
+
1474 0x9b, 0x08, 0x06, 0x0e, 0x11, 0xed, 0x1b, 0x26, 0x15, 0x27, 0x55, 0x45,
+
1475 0xfe, 0xea, 0x01, 0x14, 0x2e, 0x36, 0x18, 0x0c, 0x17, 0x21, 0x2a, 0x1a,
+
1476 0xfe, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0xb7, 0x02, 0x9b,
+
1477 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x88,
+
1478 0x00, 0xea, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x0b, 0x01, 0x01, 0x34, 0x56,
+
1479 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43, 0xff, 0x4c, 0x01, 0xb7,
+
1480 0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
+
1481 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1f, 0x11, 0x01, 0x01, 0xb8, 0xff,
+
1482 0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00,
+
1483 0x01, 0xb7, 0x03, 0x46, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07,
+
1484 0x03, 0xa5, 0xff, 0x7c, 0x00, 0x2c, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x00,
+
1485 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43,
+
1486 0xff, 0x65, 0x01, 0xb7, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00,
+
1487 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x25, 0x11,
+
1488 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
1489 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26, 0x01, 0x3a,
+
1490 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1491 0x0a, 0x05, 0x00, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
+
1492 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x01, 0xcc, 0x00, 0x09, 0x00, 0x17,
+
1493 0x40, 0x0b, 0x07, 0x01, 0x01, 0x00, 0x04, 0x05, 0x06, 0x72, 0x00, 0x0a,
+
1494 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
+
1495 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x5f, 0x74, 0x6e,
+
1496 0xc4, 0x6a, 0x44, 0x01, 0x43, 0x45, 0xfe, 0x78, 0x44, 0x00, 0xff, 0xff,
+
1497 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xbd, 0x06, 0x26, 0x01, 0x3a,
+
1498 0x00, 0x00, 0x01, 0x06, 0x03, 0x96, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1499 0x0a, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1500 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x93, 0x06, 0x26, 0x01, 0x3a,
+
1501 0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1502 0x0e, 0x05, 0x01, 0x01, 0x51, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1503 0x00, 0x5e, 0x00, 0x00, 0x01, 0x95, 0x02, 0xad, 0x06, 0x26, 0x01, 0x3a,
+
1504 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01,
+
1505 0x0a, 0x05, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1506 0x00, 0x4a, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x3a,
+
1507 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02,
+
1508 0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
+
1509 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x9d, 0x06, 0x26,
+
1510 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x93, 0xf8, 0x00, 0x00, 0x0d,
+
1511 0xb7, 0x02, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
+
1512 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x03, 0x46,
+
1513 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a, 0xff, 0x00,
+
1514 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0x95, 0x00, 0x1a, 0xb4, 0x03,
+
1515 0x22, 0x10, 0x01, 0x00, 0xb8, 0xff, 0xf6, 0x40, 0x09, 0x56, 0x02, 0x01,
+
1516 0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
+
1517 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
+
1518 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b,
+
1519 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1520 0xff, 0xff, 0x00, 0x5f, 0xff, 0x65, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
+
1521 0x01, 0x39, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
+
1522 0xb4, 0x02, 0x1c, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
+
1523 0x2b, 0x34, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1,
+
1524 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00,
+
1525 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
+
1526 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xc8,
+
1527 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff,
+
1528 0x00, 0x0b, 0xb6, 0x01, 0x11, 0x05, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
+
1529 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x89,
+
1530 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
+
1531 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
+
1532 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x73,
+
1533 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x00, 0x00,
+
1534 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b,
+
1535 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0xff, 0x19, 0x01, 0x94, 0x02, 0x97,
+
1536 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00,
+
1537 0x01, 0x06, 0x03, 0x8e, 0x6b, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x20,
+
1538 0x00, 0x00, 0x00, 0x00, 0x56, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56,
+
1539 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00,
+
1540 0x01, 0x93, 0x02, 0xac, 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06,
+
1541 0x03, 0xb4, 0xf6, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x0e, 0x05, 0x01, 0x01,
+
1542 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2c, 0xff, 0x51,
+
1543 0x01, 0x7e, 0x02, 0x97, 0x06, 0x26, 0x01, 0x4a, 0x00, 0x00, 0x01, 0x06,
+
1544 0x03, 0x7b, 0x45, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01,
+
1545 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2c, 0xff, 0x51,
+
1546 0x01, 0x75, 0x01, 0xcc, 0x00, 0x19, 0x00, 0x13, 0x40, 0x09, 0x0c, 0x19,
+
1547 0x12, 0x13, 0x06, 0x72, 0x19, 0x0f, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
+
1548 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
+
1549 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33,
+
1550 0x11, 0x14, 0x06, 0x06, 0x23, 0xc1, 0x2c, 0x4e, 0x1b, 0x2f, 0x06, 0x06,
+
1551 0x02, 0x06, 0x0b, 0x0d, 0x23, 0x16, 0x1d, 0x2a, 0x17, 0xa7, 0xfe, 0x32,
+
1552 0x51, 0x31, 0xaf, 0x22, 0x21, 0x3f, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0b,
+
1553 0x0e, 0x19, 0x35, 0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4c, 0x46, 0x58, 0x29,
+
1554 0xff, 0xff, 0x00, 0x2c, 0xff, 0x51, 0x01, 0xdf, 0x02, 0xad, 0x06, 0x26,
+
1555 0x01, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x4b, 0xff, 0x00, 0x0b,
+
1556 0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1557 0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc, 0x01, 0xe3, 0x02, 0x9b, 0x00, 0x15,
+
1558 0x00, 0x1c, 0x40, 0x10, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x12, 0x06,
+
1559 0x72, 0x04, 0x00, 0x72, 0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
+
1560 0x2b, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
+
1561 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
+
1562 0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
+
1563 0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x02, 0x9b,
+
1564 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x9a, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5,
+
1565 0xfe, 0xec, 0x04, 0x00, 0xff, 0xff, 0x00, 0x3d, 0xfe, 0xe6, 0x01, 0xe3,
+
1566 0x02, 0x9b, 0x06, 0x26, 0x01, 0x4c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
+
1567 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03, 0x01, 0x01, 0xb8, 0xff,
+
1568 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc,
+
1569 0x01, 0xe3, 0x01, 0xce, 0x00, 0x15, 0x00, 0x22, 0x40, 0x12, 0x0c, 0x12,
+
1570 0x12, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x04, 0x06, 0x72, 0x15, 0x14,
+
1571 0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x12, 0x17,
+
1572 0x39, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
+
1573 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
+
1574 0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
+
1575 0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x01, 0xcc,
+
1576 0x08, 0x06, 0x0e, 0x11, 0x97, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5, 0xfe,
+
1577 0xec, 0x04, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x02, 0x9b,
+
1578 0x00, 0x09, 0x00, 0x15, 0x40, 0x0a, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01,
+
1579 0x01, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30,
+
1580 0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x4a,
+
1581 0x85, 0x7f, 0xd6, 0x85, 0x44, 0x02, 0x13, 0x44, 0xfd, 0xa9, 0x44, 0x00,
+
1582 0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x03, 0x47, 0x06, 0x26,
+
1583 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x2c, 0x00, 0x0b,
+
1584 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1585 0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xd4, 0x02, 0xa3, 0x06, 0x26,
+
1586 0x01, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x6f, 0x00, 0xa4, 0x00, 0x00,
+
1587 0x00, 0x0b, 0xb6, 0x01, 0x17, 0x05, 0x00, 0x00, 0x06, 0x56, 0x00, 0x2b,
+
1588 0x34, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xfe, 0xe6, 0x01, 0xab, 0x02, 0x9b,
+
1589 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00,
+
1590 0x00, 0x0e, 0xb4, 0x01, 0x16, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0,
+
1591 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x41, 0x00, 0x00, 0x01, 0xc8,
+
1592 0x02, 0x9c, 0x00, 0x09, 0x00, 0x15, 0x00, 0x1d, 0x40, 0x0e, 0x10, 0x0a,
+
1593 0x0a, 0x00, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01, 0x01, 0x00, 0x0a, 0x72,
+
1594 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30,
+
1595 0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x03,
+
1596 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x41,
+
1597 0x70, 0x6a, 0xc1, 0x98, 0x1a, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26,
+
1598 0x44, 0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x01, 0x0d, 0x24, 0x1b, 0x1a,
+
1599 0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65,
+
1600 0x01, 0xab, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06,
+
1601 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x00, 0x01, 0x01,
+
1602 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x15,
+
1603 0xff, 0x51, 0x01, 0xbc, 0x02, 0x9c, 0x00, 0x19, 0x00, 0x23, 0x00, 0x2f,
+
1604 0x00, 0x25, 0x40, 0x14, 0x1e, 0x1f, 0x00, 0x72, 0x21, 0x1b, 0x1b, 0x1a,
+
1605 0x0a, 0x72, 0x2a, 0x24, 0x12, 0x13, 0x06, 0x72, 0x0c, 0x00, 0x0f, 0x72,
+
1606 0x00, 0x2b, 0x32, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2b,
+
1607 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x16,
+
1608 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x11, 0x14,
+
1609 0x0e, 0x02, 0x25, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15,
+
1610 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
1611 0xfd, 0x29, 0x42, 0x19, 0x32, 0x05, 0x03, 0x05, 0x0e, 0x11, 0x09, 0x15,
+
1612 0x0c, 0x1b, 0x2a, 0x18, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0xfe, 0xf2, 0x3c,
+
1613 0x36, 0x8c, 0x72, 0x68, 0x18, 0x21, 0x20, 0x19, 0x18, 0x23, 0x23, 0xaf,
+
1614 0x1e, 0x1d, 0x46, 0x04, 0x0a, 0x0b, 0x0d, 0x08, 0x04, 0x06, 0x19, 0x35,
+
1615 0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a, 0x2f, 0x17, 0xae, 0x44,
+
1616 0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x02, 0x25, 0x22, 0x17, 0x19, 0x20,
+
1617 0x22, 0x17, 0x17, 0x22, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65, 0x01, 0xab,
+
1618 0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90,
+
1619 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0b, 0x00, 0x01, 0x01, 0xb8, 0xff,
+
1620 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4b, 0x00, 0x00,
+
1621 0x01, 0xaa, 0x02, 0x9b, 0x00, 0x11, 0x00, 0x1e, 0x40, 0x10, 0x03, 0x0e,
+
1622 0x06, 0x0b, 0x04, 0x00, 0x08, 0x09, 0x00, 0x72, 0x0f, 0x01, 0x01, 0x00,
+
1623 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x17, 0x39,
+
1624 0x30, 0x31, 0x73, 0x35, 0x33, 0x35, 0x07, 0x35, 0x37, 0x35, 0x23, 0x35,
+
1625 0x33, 0x11, 0x37, 0x15, 0x07, 0x15, 0x33, 0x15, 0x4b, 0x84, 0x4d, 0x4d,
+
1626 0x7e, 0xd5, 0x58, 0x58, 0x84, 0x44, 0xca, 0x1a, 0x4e, 0x1b, 0xfa, 0x44,
+
1627 0xfe, 0xdf, 0x20, 0x51, 0x1e, 0xe7, 0x44, 0x00, 0x00, 0x01, 0x00, 0x23,
+
1628 0x00, 0x00, 0x01, 0xd9, 0x01, 0xd7, 0x00, 0x2b, 0x00, 0x25, 0x40, 0x13,
+
1629 0x03, 0x25, 0x0b, 0x1b, 0x1b, 0x0f, 0x0f, 0x25, 0x07, 0x07, 0x72, 0x01,
+
1630 0x06, 0x72, 0x21, 0x16, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2b,
+
1631 0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
+
1632 0x11, 0x33, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02,
+
1633 0x33, 0x32, 0x1e, 0x02, 0x07, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23,
+
1634 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e,
+
1635 0x02, 0x15, 0x11, 0x23, 0x4c, 0x0b, 0x1c, 0x21, 0x11, 0x13, 0x21, 0x17,
+
1636 0x05, 0x0a, 0x1e, 0x28, 0x16, 0x18, 0x22, 0x17, 0x0a, 0x01, 0x4d, 0x09,
+
1637 0x11, 0x0c, 0x11, 0x1e, 0x13, 0x4b, 0x13, 0x19, 0x0b, 0x15, 0x11, 0x0b,
+
1638 0x01, 0xcc, 0x2a, 0x11, 0x17, 0x0d, 0x0f, 0x1d, 0x14, 0x14, 0x1c, 0x10,
+
1639 0x12, 0x20, 0x2e, 0x1b, 0xfe, 0xa4, 0x01, 0x42, 0x26, 0x25, 0x0b, 0x1f,
+
1640 0x31, 0x1b, 0xfe, 0xd3, 0x01, 0x3d, 0x36, 0x24, 0x0e, 0x19, 0x27, 0x18,
+
1641 0xfe, 0xcf, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd9, 0x01, 0xd7,
+
1642 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
+
1643 0x00, 0x0e, 0xb4, 0x01, 0x32, 0x21, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
+
1644 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
+
1645 0x01, 0xd7, 0x00, 0x18, 0x00, 0x19, 0x40, 0x0d, 0x03, 0x12, 0x12, 0x07,
+
1646 0x07, 0x72, 0x01, 0x06, 0x72, 0x0d, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32,
+
1647 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x15, 0x3e,
+
1648 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26,
+
1649 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x42, 0x55, 0x11, 0x2e, 0x37, 0x1e,
+
1650 0x27, 0x3e, 0x26, 0x54, 0x14, 0x24, 0x17, 0x15, 0x2c, 0x25, 0x16, 0x01,
+
1651 0xcc, 0x4c, 0x1a, 0x27, 0x16, 0x27, 0x54, 0x46, 0xfe, 0xea, 0x01, 0x14,
+
1652 0x2d, 0x36, 0x19, 0x13, 0x22, 0x31, 0x1e, 0xfe, 0xf4, 0x00, 0xff, 0xff,
+
1653 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x5a,
+
1654 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1655 0x19, 0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1656 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x5a,
+
1657 0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1658 0x1e, 0x07, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1659 0x00, 0x42, 0xfe, 0xe6, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x5a,
+
1660 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x17, 0x00, 0x00, 0x0e, 0xb4, 0x01,
+
1661 0x25, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
1662 0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0x97, 0x06, 0x26,
+
1663 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x09, 0x00, 0x00, 0x0b,
+
1664 0xb6, 0x01, 0x19, 0x07, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1665 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26,
+
1666 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x13, 0x00, 0x00, 0x0e,
+
1667 0xb4, 0x01, 0x1f, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
+
1668 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3f, 0xff, 0x4f, 0x01, 0xb7, 0x01, 0xd6,
+
1669 0x00, 0x2d, 0x00, 0x1d, 0x40, 0x10, 0x1e, 0x13, 0x13, 0x23, 0x07, 0x72,
+
1670 0x1c, 0x06, 0x72, 0x1b, 0x0a, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b,
+
1671 0x32, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
+
1672 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x2e,
+
1673 0x02, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11, 0x23, 0x11, 0x33, 0x15, 0x3e,
+
1674 0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x08,
+
1675 0x1b, 0x35, 0x17, 0x26, 0x04, 0x05, 0x0b, 0x17, 0x16, 0x1f, 0x28, 0x14,
+
1676 0x0c, 0x17, 0x1d, 0x11, 0x12, 0x24, 0x20, 0x18, 0x0e, 0x57, 0x57, 0x0d,
+
1677 0x20, 0x26, 0x29, 0x15, 0x1e, 0x35, 0x27, 0x16, 0x1b, 0x30, 0x3f, 0xb1,
+
1678 0x13, 0x13, 0x4a, 0x01, 0x0a, 0x0d, 0x0a, 0x1f, 0x41, 0x2f, 0xe9, 0x21,
+
1679 0x2f, 0x1c, 0x0d, 0x0c, 0x17, 0x20, 0x29, 0x19, 0xfe, 0xf7, 0x01, 0xcc,
+
1680 0x4c, 0x14, 0x1f, 0x17, 0x0c, 0x15, 0x2d, 0x49, 0x34, 0xe0, 0x3d, 0x58,
+
1681 0x38, 0x1b, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7,
+
1682 0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x0c, 0x00,
+
1683 0x00, 0x0e, 0xb4, 0x01, 0x1a, 0x00, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0,
+
1684 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
+
1685 0x02, 0xac, 0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
+
1686 0x04, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x07, 0x01, 0x01, 0x6a, 0x56,
+
1687 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
+
1688 0x01, 0xd6, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x13, 0x40, 0x09, 0x10, 0x00,
+
1689 0x18, 0x08, 0x07, 0x72, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
+
1690 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
+
1691 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
+
1692 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
+
1693 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
+
1694 0x25, 0x38, 0x21, 0x21, 0x38, 0x25, 0x24, 0x39, 0x21, 0x20, 0x39, 0x09,
+
1695 0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
+
1696 0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
+
1697 0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1,
+
1698 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
+
1699 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
+
1700 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x93,
+
1701 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00,
+
1702 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
+
1703 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xad,
+
1704 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff,
+
1705 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
+
1706 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xec, 0x03, 0x2d,
+
1707 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xfa, 0x00,
+
1708 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01, 0x01, 0x78, 0x56, 0x02,
+
1709 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1710 0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0xad, 0x06, 0x26,
+
1711 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
+
1712 0x03, 0x7f, 0x01, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c, 0x08, 0x01,
+
1713 0x01, 0x2c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0,
+
1714 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7,
+
1715 0x01, 0xd1, 0x03, 0x43, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
+
1716 0x03, 0xba, 0xfa, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01,
+
1717 0x01, 0x8d, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
+
1718 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd4,
+
1719 0x03, 0x2f, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
+
1720 0x00, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x20, 0x01, 0x01, 0x70,
+
1721 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1722 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x3d,
+
1723 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf9, 0x00,
+
1724 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x20, 0x01, 0x01, 0xcc, 0x56, 0x02,
+
1725 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1726 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
+
1727 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d,
+
1728 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
+
1729 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x9d,
+
1730 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xff, 0x00,
+
1731 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x61, 0x56, 0x00,
+
1732 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
+
1733 0x03, 0x08, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a,
+
1734 0xff, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x17,
+
1735 0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x30, 0x56, 0x03, 0x02, 0x20,
+
1736 0x08, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34, 0x00,
+
1737 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x08, 0x06, 0x26,
+
1738 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00, 0x01, 0x07,
+
1739 0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2c,
+
1740 0x26, 0x01, 0x01, 0x39, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x56, 0x56,
+
1741 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65,
+
1742 0x01, 0xd1, 0x01, 0xd6, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
+
1743 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x00, 0x01, 0x01,
+
1744 0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23,
+
1745 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
+
1746 0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08,
+
1747 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
+
1748 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
+
1749 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08,
+
1750 0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
+
1751 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
+
1752 0x01, 0x06, 0x03, 0x89, 0xe0, 0xea, 0x00, 0x0e, 0xb4, 0x02, 0x24, 0x08,
+
1753 0x01, 0x01, 0xb8, 0xff, 0xb0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
1754 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x73,
+
1755 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x03,
+
1756 0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1757 0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x73,
+
1758 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x03,
+
1759 0x2f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
1760 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
+
1761 0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b,
+
1762 0xb6, 0x03, 0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1763 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26,
+
1764 0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b,
+
1765 0xb6, 0x03, 0x30, 0x08, 0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1766 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac, 0x06, 0x26,
+
1767 0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00, 0x00, 0x0b,
+
1768 0xb6, 0x03, 0x2d, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1769 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc0, 0x06, 0x26,
+
1770 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00, 0x00, 0x0d,
+
1771 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x37, 0x56, 0x00, 0x2b, 0x34,
+
1772 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x89,
+
1773 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
+
1774 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b,
+
1775 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x73,
+
1776 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x01, 0x00,
+
1777 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b,
+
1778 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49,
+
1779 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x01, 0x00,
+
1780 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e,
+
1781 0x03, 0x24, 0x21, 0x01, 0x01, 0x28, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01,
+
1782 0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
+
1783 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
+
1784 0x00, 0x26, 0x03, 0x84, 0x01, 0x00, 0x01, 0x07, 0x03, 0x7c, 0xff, 0xf6,
+
1785 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24, 0x21, 0x01, 0x01, 0x28,
+
1786 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b,
+
1787 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x28, 0x01, 0xd1, 0x01, 0xd6,
+
1788 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x06, 0x03, 0x8e, 0x31, 0x0f,
+
1789 0x00, 0x03, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0x08, 0x00, 0x03,
+
1790 0x00, 0x13, 0x00, 0x23, 0x00, 0x1e, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c,
+
1791 0x0c, 0x07, 0x72, 0x01, 0x00, 0x00, 0x14, 0x04, 0x0b, 0x72, 0x00, 0x2b,
+
1792 0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31,
+
1793 0x57, 0x27, 0x01, 0x17, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
+
1794 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
+
1795 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
+
1796 0x7f, 0x3d, 0x01, 0x2c, 0x40, 0xb4, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
+
1797 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x25, 0x38, 0x21, 0x21, 0x38, 0x25,
+
1798 0x24, 0x39, 0x21, 0x20, 0x39, 0x41, 0x21, 0x02, 0x28, 0x21, 0xfe, 0x10,
+
1799 0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
+
1800 0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
+
1801 0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0xb1,
+
1802 0x06, 0x26, 0x01, 0x7f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
+
1803 0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
+
1804 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac,
+
1805 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00,
+
1806 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b,
+
1807 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x65,
+
1808 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83, 0xf6, 0x00,
+
1809 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0xb4, 0x00, 0x15, 0x40, 0x0e,
+
1810 0x03, 0x38, 0x30, 0x01, 0x00, 0x03, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01,
+
1811 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
+
1812 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x51, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
+
1813 0x00, 0x26, 0x03, 0x83, 0xf6, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff,
+
1814 0x00, 0xb4, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x03, 0x38, 0x30, 0x01, 0x01,
+
1815 0x3c, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
+
1816 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
+
1817 0x03, 0x27, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
+
1818 0xf6, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x15,
+
1819 0x40, 0x0e, 0x03, 0x38, 0x30, 0x01, 0x01, 0x3d, 0x56, 0x02, 0x24, 0x08,
+
1820 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x03,
+
1821 0x00, 0x06, 0xff, 0xf4, 0x01, 0xed, 0x01, 0xd5, 0x00, 0x25, 0x00, 0x42,
+
1822 0x00, 0x4b, 0x00, 0x2f, 0x40, 0x17, 0x48, 0x15, 0x15, 0x26, 0x1f, 0x1f,
+
1823 0x00, 0x43, 0x1b, 0x00, 0x1b, 0x00, 0x1b, 0x06, 0x3b, 0x12, 0x0f, 0x07,
+
1824 0x72, 0x03, 0x06, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x11,
+
1825 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
+
1826 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x2e,
+
1827 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x36, 0x36, 0x33,
+
1828 0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37,
+
1829 0x17, 0x06, 0x06, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x2e,
+
1830 0x02, 0x35, 0x34, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
+
1831 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x33, 0x2e, 0x02, 0x23, 0x22, 0x06,
+
1832 0x06, 0x01, 0x71, 0x20, 0x3a, 0x19, 0x16, 0x30, 0x1b, 0x1b, 0x35, 0x2c,
+
1833 0x1b, 0x2d, 0x48, 0x28, 0x1e, 0x2e, 0x11, 0x13, 0x31, 0x1d, 0x2b, 0x3e,
+
1834 0x21, 0xdd, 0x01, 0x17, 0x2a, 0x1d, 0x1d, 0x2c, 0x11, 0x26, 0x1b, 0x3c,
+
1835 0xf1, 0x0a, 0x11, 0x0d, 0x07, 0x01, 0x02, 0x04, 0x04, 0x02, 0x05, 0x05,
+
1836 0x06, 0x0c, 0x11, 0x0a, 0x16, 0x28, 0x19, 0x15, 0x27, 0x86, 0x9b, 0x01,
+
1837 0x0e, 0x21, 0x1b, 0x18, 0x24, 0x14, 0x0c, 0x14, 0x14, 0x14, 0x13, 0x15,
+
1838 0x36, 0x5d, 0x48, 0x58, 0x69, 0x2f, 0x16, 0x16, 0x15, 0x17, 0x2a, 0x53,
+
1839 0x3d, 0x41, 0x43, 0x47, 0x19, 0x11, 0x14, 0x30, 0x1d, 0x1b, 0x46, 0x05,
+
1840 0x0a, 0x0d, 0x09, 0x03, 0x0a, 0x09, 0x16, 0x28, 0x27, 0x15, 0x26, 0x32,
+
1841 0x1c, 0x04, 0x08, 0x0f, 0x0b, 0x07, 0x20, 0x46, 0x39, 0x3c, 0x52, 0x29,
+
1842 0xdf, 0x2b, 0x36, 0x19, 0x1d, 0x37, 0x00, 0x02, 0x00, 0x38, 0xff, 0x59,
+
1843 0x01, 0xd3, 0x01, 0xd6, 0x00, 0x16, 0x00, 0x2a, 0x00, 0x21, 0x40, 0x12,
+
1844 0x15, 0x17, 0x17, 0x11, 0x0b, 0x72, 0x03, 0x20, 0x20, 0x07, 0x07, 0x72,
+
1845 0x01, 0x06, 0x72, 0x00, 0x0e, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11,
+
1846 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x15, 0x3e,
+
1847 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26,
+
1848 0x26, 0x27, 0x15, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27,
+
1849 0x26, 0x0e, 0x02, 0x15, 0x1e, 0x04, 0x38, 0x56, 0x0c, 0x29, 0x35, 0x1e,
+
1850 0x26, 0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f,
+
1851 0x72, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
+
1852 0x01, 0x0a, 0x14, 0x1b, 0x24, 0xa7, 0x02, 0x73, 0x52, 0x20, 0x29, 0x13,
+
1853 0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f, 0x0f, 0x1e, 0x14, 0xdc,
+
1854 0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28, 0x02, 0x02, 0x14, 0x2c,
+
1855 0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00, 0x00, 0x02, 0x00, 0x38,
+
1856 0xff, 0x59, 0x01, 0xd3, 0x02, 0x9b, 0x00, 0x1b, 0x00, 0x30, 0x00, 0x21,
+
1857 0x40, 0x12, 0x19, 0x1c, 0x1c, 0x15, 0x0b, 0x72, 0x1b, 0x0e, 0x72, 0x07,
+
1858 0x25, 0x25, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00, 0x2b, 0x2b, 0x32,
+
1859 0x11, 0x33, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x33,
+
1860 0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15,
+
1861 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x15, 0x23, 0x37, 0x32,
+
1862 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27, 0x26, 0x0e, 0x02, 0x15, 0x1e,
+
1863 0x04, 0x33, 0x38, 0x55, 0x0a, 0x06, 0x03, 0x0c, 0x29, 0x35, 0x1e, 0x26,
+
1864 0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f, 0x58,
+
1865 0xca, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
+
1866 0x01, 0x0a, 0x14, 0x1b, 0x24, 0x15, 0x02, 0x9b, 0x08, 0x06, 0x0e, 0x11,
+
1867 0xf4, 0x20, 0x29, 0x13, 0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f,
+
1868 0x0f, 0x1e, 0x14, 0xdc, 0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28,
+
1869 0x02, 0x02, 0x14, 0x2c, 0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00,
+
1870 0x00, 0x02, 0x00, 0x25, 0xff, 0x59, 0x01, 0xbe, 0x01, 0xd7, 0x00, 0x17,
+
1871 0x00, 0x2b, 0x00, 0x21, 0x40, 0x12, 0x17, 0x0e, 0x72, 0x16, 0x06, 0x72,
+
1872 0x14, 0x22, 0x22, 0x0f, 0x07, 0x72, 0x01, 0x18, 0x18, 0x05, 0x0b, 0x72,
+
1873 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x2b, 0x30,
+
1874 0x31, 0x45, 0x35, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
+
1875 0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x35, 0x33, 0x11, 0x27, 0x32, 0x3e,
+
1876 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
+
1877 0x02, 0x01, 0x68, 0x0d, 0x28, 0x32, 0x1c, 0x29, 0x47, 0x34, 0x1c, 0x1e,
+
1878 0x37, 0x4a, 0x2b, 0x17, 0x25, 0x20, 0x18, 0x09, 0x52, 0xca, 0x18, 0x2a,
+
1879 0x20, 0x11, 0x10, 0x1e, 0x27, 0x18, 0x1a, 0x2f, 0x22, 0x14, 0x11, 0x20,
+
1880 0x2d, 0xa7, 0xe6, 0x16, 0x22, 0x11, 0x23, 0x3f, 0x59, 0x36, 0x38, 0x59,
+
1881 0x3f, 0x20, 0x09, 0x13, 0x1b, 0x10, 0x3c, 0xfd, 0x8d, 0xe4, 0x14, 0x2a,
+
1882 0x45, 0x30, 0x2d, 0x3f, 0x26, 0x11, 0x13, 0x29, 0x40, 0x2d, 0x2a, 0x40,
+
1883 0x2c, 0x17, 0x00, 0x01, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x01, 0xd7,
+
1884 0x00, 0x1b, 0x00, 0x1b, 0x40, 0x0e, 0x1b, 0x0a, 0x72, 0x03, 0x02, 0x02,
+
1885 0x14, 0x14, 0x08, 0x07, 0x72, 0x00, 0x06, 0x72, 0x00, 0x2b, 0x2b, 0x32,
+
1886 0x11, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x33, 0x07, 0x27, 0x3e,
+
1887 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
+
1888 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x6d, 0x59, 0x02, 0x0b,
+
1889 0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25, 0x04, 0x07, 0x03,
+
1890 0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16, 0x57, 0x01, 0xcc,
+
1891 0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12, 0x19, 0x1a, 0x45, 0x09, 0x04, 0x08,
+
1892 0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26, 0x3b, 0x28, 0xf4, 0x00, 0xff, 0xff,
+
1893 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x89,
+
1894 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1895 0x1c, 0x08, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1896 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x89,
+
1897 0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x20, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
1898 0x21, 0x08, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
1899 0x00, 0x6d, 0xfe, 0xe6, 0x01, 0xcd, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x89,
+
1900 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x27, 0x00, 0x00, 0x0e, 0xb4, 0x01,
+
1901 0x28, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xe1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
1902 0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26,
+
1903 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0x15, 0x00, 0x00, 0x0d,
+
1904 0xb7, 0x02, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
+
1905 0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
+
1906 0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
+
1907 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xd5, 0xb0,
+
1908 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x14, 0xff, 0x4f, 0x01, 0xea,
+
1909 0x01, 0xcd, 0x00, 0x2e, 0x00, 0x19, 0x40, 0x0d, 0x22, 0x2e, 0x0f, 0x72,
+
1910 0x1c, 0x06, 0x72, 0x06, 0x16, 0x16, 0x0a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
+
1911 0x11, 0x33, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x27,
+
1912 0x37, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
+
1913 0x17, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x33, 0x03, 0x14,
+
1914 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x3e, 0x02, 0x37, 0x17, 0x06,
+
1915 0x06, 0x23, 0x01, 0x90, 0x1c, 0x30, 0x25, 0x15, 0x01, 0x01, 0x0c, 0x2a,
+
1916 0x33, 0x1c, 0x21, 0x35, 0x1b, 0x23, 0x04, 0x07, 0x03, 0x07, 0x0c, 0x0b,
+
1917 0x18, 0x11, 0x15, 0x2d, 0x25, 0x16, 0x57, 0x01, 0x10, 0x1b, 0x12, 0x06,
+
1918 0x0c, 0x0d, 0x06, 0x06, 0x04, 0x03, 0x03, 0x19, 0x11, 0x2d, 0x1c, 0xb1,
+
1919 0x10, 0x24, 0x3a, 0x2b, 0x69, 0x1d, 0x29, 0x16, 0x19, 0x1a, 0x42, 0x09,
+
1920 0x04, 0x07, 0x10, 0x0b, 0x08, 0x07, 0x13, 0x27, 0x3a, 0x28, 0xf3, 0xfe,
+
1921 0x1a, 0x1a, 0x23, 0x13, 0x02, 0x04, 0x04, 0x02, 0x07, 0x07, 0x02, 0x41,
+
1922 0x11, 0x12, 0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0x89,
+
1923 0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0x20, 0x00,
+
1924 0x00, 0x0b, 0xb6, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
+
1925 0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
+
1926 0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x1c, 0x00,
+
1927 0x00, 0x0e, 0xb4, 0x01, 0x1d, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0,
+
1928 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x21, 0xff, 0xff, 0x01, 0xcd,
+
1929 0x01, 0xd7, 0x00, 0x03, 0x00, 0x1f, 0x00, 0x1f, 0x40, 0x0f, 0x01, 0x00,
+
1930 0x00, 0x1e, 0x07, 0x06, 0x06, 0x18, 0x18, 0x0c, 0x07, 0x72, 0x04, 0x06,
+
1931 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x39, 0x2f,
+
1932 0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x03, 0x33, 0x07, 0x27, 0x3e,
+
1933 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
+
1934 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x21, 0x01, 0x16, 0xca,
+
1935 0x59, 0x02, 0x0b, 0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25,
+
1936 0x04, 0x07, 0x03, 0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16,
+
1937 0x57, 0xa7, 0x43, 0x43, 0x01, 0x25, 0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12,
+
1938 0x19, 0x1a, 0x45, 0x09, 0x04, 0x08, 0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26,
+
1939 0x3b, 0x28, 0xf4, 0x00, 0x00, 0x01, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc,
+
1940 0x01, 0xd7, 0x00, 0x3b, 0x00, 0x1a, 0x40, 0x0e, 0x11, 0x37, 0x1a, 0x2f,
+
1941 0x04, 0x3b, 0x2c, 0x1e, 0x07, 0x72, 0x0d, 0x3b, 0x0b, 0x72, 0x00, 0x2b,
+
1942 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
+
1943 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
+
1944 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
+
1945 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
+
1946 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15,
+
1947 0x14, 0x06, 0x06, 0x23, 0xfe, 0x28, 0x48, 0x3e, 0x1b, 0x2b, 0x06, 0x06,
+
1948 0x03, 0x05, 0x0b, 0x17, 0x3c, 0x2e, 0x22, 0x2f, 0x19, 0x0c, 0x1a, 0x2c,
+
1949 0x1f, 0x33, 0x4d, 0x2a, 0x29, 0x4d, 0x37, 0x1f, 0x34, 0x2d, 0x27, 0x11,
+
1950 0x2e, 0x07, 0x05, 0x01, 0x07, 0x0c, 0x16, 0x37, 0x1b, 0x26, 0x37, 0x16,
+
1951 0x36, 0x31, 0x38, 0x46, 0x20, 0x2a, 0x55, 0x3f, 0x0a, 0x0f, 0x21, 0x18,
+
1952 0x4c, 0x09, 0x04, 0x08, 0x11, 0x0c, 0x15, 0x1a, 0x11, 0x1d, 0x14, 0x0e,
+
1953 0x15, 0x12, 0x13, 0x09, 0x0f, 0x27, 0x36, 0x23, 0x25, 0x36, 0x1f, 0x09,
+
1954 0x12, 0x1b, 0x12, 0x3b, 0x08, 0x05, 0x08, 0x0f, 0x0b, 0x11, 0x12, 0x1a,
+
1955 0x1b, 0x0f, 0x1a, 0x1a, 0x0d, 0x11, 0x26, 0x32, 0x22, 0x26, 0x43, 0x27,
+
1956 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xb1, 0x06, 0x26,
+
1957 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x00, 0x00, 0x00, 0x0b,
+
1958 0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1959 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x03, 0x36, 0x06, 0x26,
+
1960 0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7d, 0x00, 0x00, 0x01, 0x07,
+
1961 0x03, 0x7b, 0x00, 0x19, 0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x40,
+
1962 0x3e, 0x01, 0x01, 0x17, 0x56, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56,
+
1963 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
+
1964 0x01, 0xbc, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06,
+
1965 0x03, 0x80, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x41, 0x1e, 0x01, 0x01,
+
1966 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
+
1967 0x01, 0xbc, 0x03, 0x28, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26,
+
1968 0x03, 0x80, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7b, 0x00, 0x01, 0x00, 0x91,
+
1969 0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x3c, 0x01, 0x00, 0x0c, 0x56, 0x01,
+
1970 0x41, 0x1e, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
+
1971 0xff, 0xff, 0x00, 0x35, 0xff, 0x38, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
+
1972 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x00, 0x00, 0x00, 0x0b,
+
1973 0xb6, 0x01, 0x4b, 0x3b, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1974 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xae, 0x06, 0x26,
+
1975 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x00, 0x00, 0x00, 0x0b,
+
1976 0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
1977 0xff, 0xff, 0x00, 0x35, 0xfe, 0xe6, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
+
1978 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e,
+
1979 0xb4, 0x01, 0x48, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00,
+
1980 0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x97,
+
1981 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00,
+
1982 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
+
1983 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc, 0x01, 0xd7,
+
1984 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x00, 0x00,
+
1985 0x00, 0x0e, 0xb4, 0x01, 0x42, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
+
1986 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc,
+
1987 0x02, 0x97, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a,
+
1988 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x18, 0x40, 0x0c,
+
1989 0x02, 0x48, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x01, 0x42, 0x3b, 0x01, 0x01,
+
1990 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01,
+
1991 0x00, 0x32, 0xff, 0xf5, 0x01, 0xd0, 0x02, 0x9e, 0x00, 0x3a, 0x00, 0x21,
+
1992 0x40, 0x11, 0x32, 0x13, 0x13, 0x12, 0x12, 0x00, 0x1f, 0x2a, 0x01, 0x72,
+
1993 0x25, 0x0a, 0x72, 0x07, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2b,
+
1994 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26,
+
1995 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
+
1996 0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23,
+
1997 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32,
+
1998 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x06,
+
1999 0x06, 0x01, 0x1b, 0x1e, 0x32, 0x18, 0x26, 0x0d, 0x21, 0x14, 0x14, 0x25,
+
2000 0x1c, 0x10, 0x11, 0x23, 0x35, 0x25, 0x22, 0x28, 0x0e, 0x1c, 0x18, 0x12,
+
2001 0x0a, 0x0f, 0x1b, 0x25, 0x17, 0x22, 0x31, 0x19, 0x52, 0x2f, 0x52, 0x35,
+
2002 0x37, 0x56, 0x31, 0x12, 0x22, 0x1a, 0x1c, 0x2c, 0x1f, 0x11, 0x2d, 0x51,
+
2003 0x0b, 0x0f, 0x10, 0x42, 0x0c, 0x0c, 0x15, 0x24, 0x2f, 0x1c, 0x19, 0x2e,
+
2004 0x22, 0x13, 0x43, 0x09, 0x11, 0x19, 0x21, 0x14, 0x19, 0x28, 0x1f, 0x11,
+
2005 0x2b, 0x4d, 0x34, 0xfe, 0x52, 0x01, 0xaa, 0x53, 0x6c, 0x35, 0x31, 0x50,
+
2006 0x2f, 0x1c, 0x34, 0x29, 0x0d, 0x09, 0x21, 0x2f, 0x38, 0x21, 0x36, 0x58,
+
2007 0x33, 0x00, 0x00, 0x02, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
+
2008 0x00, 0x1a, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x1e, 0x00, 0x08, 0x01,
+
2009 0x08, 0x80, 0x1b, 0x06, 0x72, 0x13, 0x1a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
+
2010 0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x37,
+
2011 0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07, 0x06, 0x16,
+
2012 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03, 0x21, 0x15,
+
2013 0x21, 0x01, 0x2b, 0x2b, 0x39, 0x21, 0x0b, 0x02, 0x0c, 0x59, 0x0a, 0x01,
+
2014 0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e, 0x23, 0x1b, 0x21, 0x33,
+
2015 0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53, 0xfe, 0xad, 0x08, 0x1d,
+
2016 0x3d, 0x60, 0x44, 0x01, 0x48, 0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a,
+
2017 0x0e, 0xa2, 0x48, 0x4f, 0x1e, 0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4,
+
2018 0x45, 0x00, 0x00, 0x03, 0x00, 0x3a, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
+
2019 0x00, 0x03, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x21, 0x40, 0x11, 0x00, 0x01,
+
2020 0x01, 0x22, 0x22, 0x00, 0x0c, 0x01, 0x0c, 0x80, 0x1f, 0x06, 0x72, 0x17,
+
2021 0x1e, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x11,
+
2022 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x07, 0x22, 0x2e,
+
2023 0x02, 0x37, 0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07,
+
2024 0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03,
+
2025 0x21, 0x15, 0x21, 0x3a, 0x01, 0x53, 0x62, 0x2b, 0x39, 0x21, 0x0b, 0x02,
+
2026 0x0c, 0x59, 0x0a, 0x01, 0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e,
+
2027 0x23, 0x1b, 0x21, 0x33, 0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53,
+
2028 0xfe, 0xad, 0xd7, 0x44, 0x44, 0xdf, 0x1d, 0x3d, 0x60, 0x44, 0x01, 0x48,
+
2029 0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a, 0x0e, 0xa2, 0x48, 0x4f, 0x1e,
+
2030 0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4, 0x45, 0xff, 0xff, 0x00, 0x42,
+
2031 0xff, 0xf8, 0x01, 0xde, 0x02, 0xc6, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00,
+
2032 0x01, 0x07, 0x03, 0x6f, 0x00, 0xae, 0x00, 0x23, 0x00, 0x0e, 0xb4, 0x02,
+
2033 0x1f, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
2034 0xff, 0xff, 0x00, 0x42, 0xff, 0x38, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
+
2035 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xf3, 0x00, 0x00, 0x0b,
+
2036 0xb6, 0x02, 0x2e, 0x1a, 0x01, 0x00, 0x07, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
2037 0xff, 0xff, 0x00, 0x42, 0xfe, 0xe6, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
+
2038 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x15, 0x00, 0x00, 0x0e,
+
2039 0xb4, 0x02, 0x2b, 0x1a, 0x01, 0x01, 0xb8, 0xff, 0xe7, 0xb0, 0x56, 0x00,
+
2040 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x03, 0x1a,
+
2041 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xf1, 0x7d,
+
2042 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x1f, 0x08, 0x01, 0x01, 0x6a, 0x56, 0x00,
+
2043 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xbf,
+
2044 0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
+
2045 0x11, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x25, 0x1a, 0x01, 0x01, 0xb8, 0xff,
+
2046 0xdb, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65,
+
2047 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06,
+
2048 0x03, 0x90, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x20, 0x1a, 0x01, 0x00,
+
2049 0xb8, 0xff, 0xa4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3b,
+
2050 0xff, 0xf5, 0x01, 0xbe, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x19, 0x40, 0x0d,
+
2051 0x1a, 0x0a, 0x72, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b,
+
2052 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x2b, 0x30, 0x31, 0x57,
+
2053 0x22, 0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32,
+
2054 0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
+
2055 0x35, 0x0e, 0x03, 0xda, 0x1b, 0x31, 0x27, 0x1d, 0x0f, 0x01, 0x54, 0x0e,
+
2056 0x1a, 0x23, 0x13, 0x17, 0x29, 0x1f, 0x12, 0x55, 0x03, 0x07, 0x51, 0x05,
+
2057 0x04, 0x01, 0x0b, 0x1d, 0x24, 0x27, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c,
+
2058 0x01, 0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25,
+
2059 0x01, 0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13,
+
2060 0x1d, 0x14, 0x0a, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2061 0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
+
2062 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x14, 0x01, 0x01, 0x32, 0x56,
+
2063 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2064 0x02, 0x93, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
+
2065 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x51, 0x56,
+
2066 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2067 0x02, 0xad, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f,
+
2068 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x36, 0x56,
+
2069 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2070 0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86,
+
2071 0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01, 0x01, 0x32,
+
2072 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5,
+
2073 0x01, 0xbe, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06,
+
2074 0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01,
+
2075 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b,
+
2076 0xff, 0x65, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00,
+
2077 0x01, 0x06, 0x03, 0x8a, 0xf4, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x29, 0x00,
+
2078 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
+
2079 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7,
+
2080 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
2081 0x23, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2082 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xa7,
+
2083 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x01,
+
2084 0x2a, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2085 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26, 0x01, 0xd4,
+
2086 0x00, 0x00, 0x01, 0x06, 0x03, 0x89, 0xf4, 0xff, 0x00, 0x0e, 0xb4, 0x01,
+
2087 0x27, 0x07, 0x01, 0x01, 0xb8, 0xff, 0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
+
2088 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1, 0x06, 0x26,
+
2089 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xdf, 0x00, 0x00, 0x0b,
+
2090 0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00,
+
2091 0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26,
+
2092 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0xe5, 0x00, 0x00, 0x0e,
+
2093 0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
+
2094 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1,
+
2095 0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xe3, 0x00,
+
2096 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
+
2097 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xc8,
+
2098 0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0xfb, 0xff,
+
2099 0x00, 0x0b, 0xb6, 0x02, 0x33, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
+
2100 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xad,
+
2101 0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb4, 0xdc, 0x00,
+
2102 0x00, 0x0b, 0xb6, 0x02, 0x30, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b,
+
2103 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc0,
+
2104 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00,
+
2105 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x41, 0x56, 0x00,
+
2106 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2107 0x02, 0x89, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
+
2108 0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x47, 0x56,
+
2109 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2110 0x02, 0x73, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
+
2111 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x6c, 0x56,
+
2112 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2113 0x03, 0x35, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
+
2114 0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff, 0x00, 0x98, 0x00, 0x17,
+
2115 0x40, 0x0f, 0x03, 0x02, 0x27, 0x24, 0x01, 0x01, 0x61, 0x56, 0x01, 0x23,
+
2116 0x07, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00,
+
2117 0xff, 0xff, 0x00, 0x3b, 0xff, 0x19, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26,
+
2118 0x01, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x8e, 0x00, 0x86, 0x00, 0x00,
+
2119 0x00, 0x0b, 0xb6, 0x01, 0x2c, 0x1a, 0x00, 0x00, 0x11, 0x56, 0x00, 0x2b,
+
2120 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xbb,
+
2121 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x82, 0xfa, 0x00,
+
2122 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x3c, 0x56, 0x00,
+
2123 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2124 0x02, 0xac, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
+
2125 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x75, 0x56,
+
2126 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
+
2127 0x03, 0x65, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
+
2128 0xf6, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0xb4, 0x00, 0x15,
+
2129 0x40, 0x0e, 0x02, 0x3b, 0x33, 0x01, 0x00, 0x03, 0x56, 0x01, 0x27, 0x14,
+
2130 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x01,
+
2131 0x00, 0x24, 0x00, 0x00, 0x01, 0xca, 0x01, 0xcc, 0x00, 0x0d, 0x00, 0x15,
+
2132 0x40, 0x0a, 0x04, 0x03, 0x00, 0x09, 0x01, 0x06, 0x72, 0x00, 0x0a, 0x72,
+
2133 0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x30, 0x31, 0x73, 0x03, 0x33,
+
2134 0x13, 0x23, 0x37, 0x36, 0x36, 0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0xd7,
+
2135 0xb3, 0x58, 0x8a, 0x0f, 0x4b, 0x17, 0x1b, 0x05, 0x51, 0x07, 0x22, 0x17,
+
2136 0x70, 0x01, 0xcc, 0xfe, 0x97, 0xae, 0x35, 0x5d, 0x29, 0x2b, 0x63, 0x38,
+
2137 0xfe, 0xfa, 0x00, 0x01, 0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x01, 0xcc,
+
2138 0x00, 0x14, 0x00, 0x1b, 0x40, 0x0e, 0x03, 0x06, 0x13, 0x03, 0x00, 0x0d,
+
2139 0x04, 0x01, 0x06, 0x72, 0x12, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
+
2140 0xcc, 0x33, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33, 0x13, 0x13,
+
2141 0x33, 0x13, 0x3e, 0x03, 0x35, 0x35, 0x33, 0x0e, 0x02, 0x07, 0x23, 0x03,
+
2142 0x03, 0x68, 0x5a, 0x4a, 0x43, 0x4a, 0x31, 0x5b, 0x0c, 0x0f, 0x08, 0x02,
+
2143 0x4d, 0x09, 0x16, 0x1b, 0x10, 0x4e, 0x4e, 0x49, 0x01, 0x01, 0xcd, 0xfe,
+
2144 0xa1, 0x01, 0x31, 0xfe, 0xd0, 0x52, 0x6a, 0x46, 0x31, 0x18, 0x13, 0x4c,
+
2145 0x9c, 0x9a, 0x4b, 0x01, 0x1a, 0xfe, 0xe6, 0x00, 0xff, 0xff, 0x00, 0x0e,
+
2146 0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
+
2147 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x0c,
+
2148 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
+
2149 0xff, 0xff, 0x01, 0xe3, 0x02, 0xad, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
+
2150 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x01,
+
2151 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
+
2152 0xff, 0xff, 0x01, 0xe3, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
+
2153 0x01, 0x06, 0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x15,
+
2154 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
+
2155 0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf,
+
2156 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
+
2157 0x15, 0x0c, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
+
2158 0x00, 0x29, 0x00, 0x00, 0x01, 0xcf, 0x01, 0xcc, 0x00, 0x0b, 0x00, 0x1a,
+
2159 0x40, 0x0e, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x02, 0x06, 0x72,
+
2160 0x09, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39,
+
2161 0x30, 0x31, 0x73, 0x37, 0x27, 0x33, 0x17, 0x37, 0x33, 0x07, 0x17, 0x23,
+
2162 0x27, 0x07, 0x29, 0xa1, 0x9f, 0x5d, 0x70, 0x6b, 0x58, 0x94, 0xa8, 0x60,
+
2163 0x77, 0x70, 0xe8, 0xe4, 0xa1, 0xa1, 0xe0, 0xec, 0xa8, 0xa8, 0x00, 0x02,
+
2164 0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x00, 0x1c, 0x00, 0x20,
+
2165 0x00, 0x1a, 0x40, 0x0e, 0x19, 0x20, 0x10, 0x1f, 0x04, 0x1c, 0x15, 0x1d,
+
2166 0x06, 0x72, 0x0c, 0x1c, 0x0f, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
+
2167 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16,
+
2168 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x36, 0x36,
+
2169 0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0x06, 0x06, 0x23, 0x03, 0x33, 0x13,
+
2170 0x07, 0x7f, 0x21, 0x35, 0x15, 0x21, 0x06, 0x07, 0x02, 0x0a, 0x0d, 0x09,
+
2171 0x13, 0x0a, 0x19, 0x22, 0x1b, 0x0d, 0x5c, 0x0f, 0x19, 0x04, 0x53, 0x06,
+
2172 0x1f, 0x11, 0x72, 0x1a, 0x4c, 0x32, 0x56, 0x58, 0x90, 0x29, 0xaf, 0x15,
+
2173 0x14, 0x3a, 0x09, 0x04, 0x08, 0x0c, 0x09, 0x03, 0x03, 0x18, 0x34, 0x27,
+
2174 0x01, 0x12, 0x2d, 0x57, 0x2d, 0x2e, 0x60, 0x2e, 0xfe, 0xc0, 0x46, 0x39,
+
2175 0x02, 0x7b, 0xfe, 0x8b, 0x63, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
+
2176 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
+
2177 0x03, 0x7d, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14, 0x01, 0x01,
+
2178 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
+
2179 0x01, 0xbf, 0x02, 0xad, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
+
2180 0x03, 0x7f, 0x05, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x1d, 0x01, 0x01,
+
2181 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
+
2182 0x01, 0xbf, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
+
2183 0x03, 0x7a, 0x03, 0x00, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x21, 0x1d, 0x01,
+
2184 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
+
2185 0xff, 0x51, 0x01, 0xbf, 0x02, 0x97, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
+
2186 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14,
+
2187 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
+
2188 0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
+
2189 0x01, 0x07, 0x03, 0x8a, 0x00, 0x87, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
2190 0x21, 0x1c, 0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2191 0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5,
+
2192 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
2193 0x21, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2194 0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xc5,
+
2195 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x11, 0xff, 0x00, 0x0b, 0xb6, 0x02,
+
2196 0x28, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2197 0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x01, 0xc5,
+
2198 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x05, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
2199 0x21, 0x1d, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
+
2200 0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xac, 0x06, 0x26, 0x01, 0xc5,
+
2201 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02,
+
2202 0x25, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
+
2203 0x00, 0x2f, 0x00, 0x00, 0x01, 0xc5, 0x01, 0xcc, 0x00, 0x0e, 0x00, 0x19,
+
2204 0x40, 0x0c, 0x00, 0x06, 0x06, 0x0e, 0x0a, 0x72, 0x05, 0x02, 0x02, 0x03,
+
2205 0x06, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30,
+
2206 0x31, 0x77, 0x01, 0x23, 0x35, 0x21, 0x15, 0x01, 0x33, 0x32, 0x36, 0x37,
+
2207 0x33, 0x15, 0x15, 0x21, 0x2f, 0x01, 0x12, 0xfe, 0x01, 0x6b, 0xfe, 0xf2,
+
2208 0xf9, 0x11, 0x0e, 0x06, 0x07, 0xfe, 0x6a, 0x37, 0x01, 0x4c, 0x49, 0x39,
+
2209 0xfe, 0xb5, 0x04, 0x06, 0x0a, 0x48, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
+
2210 0x01, 0xc5, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
+
2211 0x03, 0x7d, 0xf2, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
+
2212 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
+
2213 0x01, 0xc5, 0x02, 0xb5, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
+
2214 0x03, 0x80, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x14, 0x03, 0x01, 0x01,
+
2215 0x39, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
+
2216 0x01, 0xc5, 0x02, 0x97, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
+
2217 0x03, 0x94, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
+
2218 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0xff, 0x65,
+
2219 0x01, 0xc5, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
+
2220 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
+
2221 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x23,
+
2222 0xff, 0xf5, 0x01, 0x8e, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x18, 0x40, 0x0c,
+
2223 0x1a, 0x0a, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b, 0x72,
+
2224 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x3f, 0x30, 0x31, 0x57, 0x22,
+
2225 0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e,
+
2226 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
+
2227 0x0e, 0x03, 0xb8, 0x1a, 0x2e, 0x25, 0x1a, 0x0e, 0x01, 0x4e, 0x0e, 0x18,
+
2228 0x20, 0x12, 0x16, 0x27, 0x1e, 0x11, 0x4e, 0x03, 0x07, 0x4c, 0x04, 0x04,
+
2229 0x01, 0x0a, 0x1c, 0x21, 0x26, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c, 0x01,
+
2230 0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25, 0x01,
+
2231 0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13, 0x1d,
+
2232 0x14, 0x0a, 0x00, 0x02, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
+
2233 0x00, 0x33, 0x00, 0x37, 0x00, 0x2c, 0x40, 0x14, 0x37, 0x34, 0x34, 0x00,
+
2234 0x2f, 0x18, 0x18, 0x00, 0x10, 0x07, 0x07, 0x00, 0x2e, 0x2e, 0x00, 0x00,
+
2235 0x21, 0x28, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2f, 0x11,
+
2236 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x7d, 0x2f, 0x33,
+
2237 0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
2238 0x16, 0x17, 0x17, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
+
2239 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
+
2240 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x35,
+
2241 0x0e, 0x03, 0x07, 0x21, 0x15, 0x21, 0xd8, 0x39, 0x3e, 0x2c, 0x52, 0x37,
+
2242 0x09, 0x15, 0x17, 0x0c, 0x02, 0x09, 0x18, 0x17, 0x0a, 0x25, 0x30, 0x19,
+
2243 0x10, 0x1a, 0x11, 0x18, 0x25, 0x19, 0x0d, 0x13, 0x26, 0x1e, 0x17, 0x2b,
+
2244 0x14, 0x26, 0x1b, 0x42, 0x23, 0x2d, 0x44, 0x27, 0x4b, 0x0a, 0x18, 0x1b,
+
2245 0x1d, 0x9d, 0x01, 0x62, 0xfe, 0x9e, 0x01, 0x02, 0x38, 0x2c, 0x27, 0x3a,
+
2246 0x1f, 0x01, 0x01, 0x02, 0x35, 0x02, 0x01, 0x01, 0x10, 0x1e, 0x15, 0x12,
+
2247 0x17, 0x0a, 0x11, 0x21, 0x33, 0x23, 0x2f, 0x35, 0x15, 0x10, 0x15, 0x2d,
+
2248 0x1b, 0x17, 0x1d, 0x47, 0x41, 0xc6, 0x2d, 0x10, 0x15, 0x0c, 0x05, 0x2c,
+
2249 0x40, 0x00, 0x00, 0x03, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
+
2250 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x18, 0x40, 0x0a, 0x23, 0x20,
+
2251 0x20, 0x10, 0x00, 0x00, 0x18, 0x08, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32,
+
2252 0x2f, 0x33, 0x33, 0x7d, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26,
+
2253 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
+
2254 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
+
2255 0x15, 0x14, 0x16, 0x16, 0x07, 0x21, 0x15, 0x21, 0xfa, 0x2e, 0x48, 0x2a,
+
2256 0x2a, 0x49, 0x2d, 0x2e, 0x48, 0x2a, 0x2a, 0x48, 0x2e, 0x1a, 0x26, 0x16,
+
2257 0x16, 0x27, 0x19, 0x19, 0x27, 0x16, 0x16, 0x27, 0x97, 0x01, 0x62, 0xfe,
+
2258 0x9e, 0x01, 0x04, 0x2d, 0x54, 0x38, 0x37, 0x54, 0x2e, 0x2e, 0x54, 0x37,
+
2259 0x38, 0x53, 0x2e, 0x3b, 0x20, 0x39, 0x26, 0x26, 0x38, 0x1f, 0x1f, 0x38,
+
2260 0x26, 0x26, 0x39, 0x20, 0x69, 0x40, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00,
+
2261 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x06, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x02,
+
2262 0x00, 0x32, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x14,
+
2263 0x00, 0x22, 0x40, 0x10, 0x12, 0x0d, 0x0d, 0x0b, 0x0f, 0x0f, 0x10, 0x02,
+
2264 0x72, 0x14, 0x0a, 0x00, 0x01, 0x01, 0x09, 0x08, 0x00, 0x3f, 0x33, 0x11,
+
2265 0x33, 0x33, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
+
2266 0x77, 0x27, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x35, 0x01,
+
2267 0x33, 0x17, 0x17, 0x21, 0x35, 0x21, 0x15, 0x01, 0x23, 0x60, 0x1b, 0x01,
+
2268 0x5d, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x63, 0x01, 0x08, 0x38, 0x31, 0x1e,
+
2269 0xfe, 0x73, 0x01, 0x9c, 0xfe, 0xff, 0x37, 0x1f, 0x16, 0x04, 0x05, 0x09,
+
2270 0x35, 0x37, 0x02, 0x29, 0x11, 0x16, 0x36, 0x37, 0xfd, 0xe1, 0x00, 0x03,
+
2271 0x00, 0x32, 0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x03, 0x00, 0x13,
+
2272 0x00, 0x23, 0x00, 0x1d, 0x40, 0x0e, 0x02, 0x01, 0x01, 0x1c, 0x0c, 0x05,
+
2273 0x72, 0x00, 0x03, 0x03, 0x14, 0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32,
+
2274 0x11, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x01, 0x17,
+
2275 0x01, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
2276 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
+
2277 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x6b, 0x01, 0x0b,
+
2278 0x16, 0xfe, 0xf5, 0x79, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59,
+
2279 0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34,
+
2280 0x1c, 0x1c, 0x34, 0xa5, 0x01, 0x4d, 0x38, 0xfe, 0xb6, 0x7b, 0x4a, 0x8f,
+
2281 0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a,
+
2282 0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00,
+
2283 0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x01, 0x33, 0x02, 0x70, 0x00, 0x06,
+
2284 0x00, 0x17, 0x40, 0x0b, 0x06, 0x0c, 0x72, 0x02, 0x03, 0x03, 0x01, 0x01,
+
2285 0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x30,
+
2286 0x31, 0x73, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xdf, 0x7a, 0x13, 0xa4,
+
2287 0x3d, 0x02, 0x0d, 0x26, 0x33, 0x56, 0xfd, 0x90, 0x00, 0x01, 0x00, 0x35,
+
2288 0x00, 0x00, 0x01, 0xba, 0x02, 0x75, 0x00, 0x2b, 0x00, 0x15, 0x40, 0x0a,
+
2289 0x00, 0x23, 0x23, 0x2b, 0x0c, 0x72, 0x0b, 0x19, 0x05, 0x72, 0x00, 0x2b,
+
2290 0x32, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x3e, 0x04, 0x35, 0x34,
+
2291 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
+
2292 0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x07,
+
2293 0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x44, 0x37, 0x5a, 0x46,
+
2294 0x30, 0x19, 0x0f, 0x1b, 0x25, 0x15, 0x17, 0x2a, 0x26, 0x10, 0x09, 0x04,
+
2295 0x01, 0x05, 0x07, 0x3c, 0x15, 0x3d, 0x4d, 0x2b, 0x36, 0x52, 0x30, 0x1b,
+
2296 0x31, 0x42, 0x4e, 0x2a, 0xdc, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x8a, 0x41,
+
2297 0x38, 0x59, 0x4b, 0x42, 0x41, 0x23, 0x1d, 0x28, 0x19, 0x0c, 0x0d, 0x19,
+
2298 0x14, 0x0e, 0x0f, 0x08, 0x05, 0x05, 0x2e, 0x27, 0x36, 0x1c, 0x2c, 0x50,
+
2299 0x37, 0x28, 0x4b, 0x47, 0x48, 0x4d, 0x2c, 0x04, 0x06, 0x0a, 0x47, 0x00,
+
2300 0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xb0, 0x02, 0x75, 0x00, 0x38,
+
2301 0x00, 0x1d, 0x40, 0x0e, 0x30, 0x16, 0x16, 0x15, 0x15, 0x28, 0x0c, 0x38,
+
2302 0x0d, 0x72, 0x20, 0x28, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11,
+
2303 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37,
+
2304 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
+
2305 0x34, 0x2e, 0x02, 0x07, 0x35, 0x16, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
+
2306 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
+
2307 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23,
+
2308 0xee, 0x33, 0x5e, 0x20, 0x31, 0x07, 0x06, 0x01, 0x06, 0x0b, 0x12, 0x2d,
+
2309 0x1f, 0x25, 0x31, 0x19, 0x17, 0x2d, 0x3f, 0x28, 0x2f, 0x3c, 0x21, 0x0d,
+
2310 0x0d, 0x16, 0x21, 0x13, 0x14, 0x27, 0x25, 0x11, 0x31, 0x22, 0x56, 0x2a,
+
2311 0x35, 0x4c, 0x2a, 0x17, 0x2c, 0x1f, 0x21, 0x36, 0x1f, 0x2d, 0x56, 0x3f,
+
2312 0x0b, 0x24, 0x24, 0x40, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0f, 0x13, 0x1d,
+
2313 0x35, 0x22, 0x22, 0x30, 0x1b, 0x0a, 0x04, 0x43, 0x01, 0x12, 0x20, 0x29,
+
2314 0x17, 0x14, 0x20, 0x17, 0x0d, 0x0a, 0x14, 0x11, 0x32, 0x25, 0x1f, 0x28,
+
2315 0x47, 0x2e, 0x21, 0x39, 0x29, 0x0b, 0x0a, 0x2a, 0x3f, 0x2b, 0x32, 0x53,
+
2316 0x32, 0x00, 0x00, 0x02, 0x00, 0x2d, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70,
+
2317 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x21, 0x40, 0x10, 0x03, 0x0b, 0x0b, 0x06,
+
2318 0x06, 0x02, 0x0d, 0x09, 0x09, 0x04, 0x0a, 0x0c, 0x72, 0x04, 0x04, 0x72,
+
2319 0x00, 0x2b, 0x2b, 0x12, 0x39, 0x2f, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11,
+
2320 0x33, 0x30, 0x31, 0x61, 0x35, 0x21, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15,
+
2321 0x23, 0x15, 0x25, 0x33, 0x11, 0x01, 0x33, 0xfe, 0xfa, 0x01, 0x18, 0x44,
+
2322 0x50, 0x50, 0xff, 0x00, 0xab, 0x97, 0x3b, 0x01, 0x9e, 0xfe, 0x6c, 0x46,
+
2323 0x96, 0xdc, 0x01, 0x04, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xc2,
+
2324 0x02, 0x6f, 0x00, 0x2d, 0x00, 0x1d, 0x40, 0x0e, 0x20, 0x16, 0x16, 0x24,
+
2325 0x24, 0x1c, 0x0c, 0x2d, 0x0d, 0x72, 0x1f, 0x1c, 0x04, 0x72, 0x00, 0x2b,
+
2326 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
+
2327 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33,
+
2328 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07,
+
2329 0x27, 0x13, 0x21, 0x15, 0x23, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
+
2330 0x15, 0x14, 0x06, 0x06, 0x23, 0xfa, 0x3c, 0x63, 0x1e, 0x3f, 0x08, 0x05,
+
2331 0x01, 0x07, 0x0a, 0x13, 0x2f, 0x21, 0x18, 0x2a, 0x1f, 0x12, 0x12, 0x20,
+
2332 0x2c, 0x1a, 0x15, 0x29, 0x23, 0x0f, 0x34, 0x15, 0x01, 0x42, 0xfb, 0x0a,
+
2333 0x10, 0x20, 0x22, 0x10, 0x29, 0x44, 0x33, 0x1b, 0x35, 0x59, 0x3a, 0x0b,
+
2334 0x32, 0x2f, 0x31, 0x06, 0x05, 0x08, 0x0e, 0x0d, 0x15, 0x14, 0x14, 0x24,
+
2335 0x34, 0x1f, 0x20, 0x34, 0x24, 0x14, 0x0d, 0x19, 0x12, 0x12, 0x01, 0x42,
+
2336 0x48, 0xa7, 0x08, 0x0b, 0x05, 0x1d, 0x36, 0x4d, 0x31, 0x41, 0x5e, 0x33,
+
2337 0x00, 0x02, 0x00, 0x3e, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x77, 0x00, 0x28,
+
2338 0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0e, 0x1b, 0x33, 0x33, 0x1f, 0x1f, 0x08,
+
2339 0x3d, 0x28, 0x0d, 0x72, 0x15, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b,
+
2340 0x32, 0x12, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
+
2341 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
+
2342 0x26, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x3e, 0x02,
+
2343 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x37, 0x32, 0x3e,
+
2344 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x06, 0x1e,
+
2345 0x02, 0x33, 0x01, 0x05, 0x40, 0x59, 0x2e, 0x39, 0x65, 0x42, 0x28, 0x4a,
+
2346 0x1e, 0x32, 0x06, 0x06, 0x01, 0x08, 0x0d, 0x08, 0x11, 0x13, 0x0b, 0x10,
+
2347 0x26, 0x25, 0x21, 0x15, 0x01, 0x0d, 0x29, 0x30, 0x18, 0x24, 0x3f, 0x2f,
+
2348 0x1b, 0x31, 0x52, 0x34, 0x02, 0x15, 0x24, 0x1c, 0x10, 0x12, 0x1e, 0x24,
+
2349 0x12, 0x11, 0x21, 0x1d, 0x19, 0x0a, 0x03, 0x0d, 0x1e, 0x2e, 0x1d, 0x0a,
+
2350 0x48, 0x85, 0x5a, 0x6f, 0x9a, 0x51, 0x1c, 0x1e, 0x39, 0x08, 0x06, 0x08,
+
2351 0x0d, 0x0a, 0x05, 0x06, 0x02, 0x0a, 0x1c, 0x31, 0x4f, 0x38, 0x16, 0x1e,
+
2352 0x11, 0x1c, 0x35, 0x4c, 0x2f, 0x3e, 0x60, 0x35, 0x47, 0x13, 0x23, 0x33,
+
2353 0x22, 0x23, 0x33, 0x20, 0x10, 0x0c, 0x15, 0x1c, 0x11, 0x24, 0x45, 0x38,
+
2354 0x22, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xb4, 0x02, 0x6f,
+
2355 0x00, 0x0d, 0x00, 0x13, 0x40, 0x09, 0x08, 0x05, 0x05, 0x06, 0x04, 0x72,
+
2356 0x00, 0x0c, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
+
2357 0x3e, 0x02, 0x37, 0x21, 0x35, 0x21, 0x15, 0x0e, 0x03, 0x07, 0x91, 0x1d,
+
2358 0x3d, 0x41, 0x23, 0xfe, 0xfb, 0x01, 0x6a, 0x1c, 0x37, 0x32, 0x2d, 0x16,
+
2359 0x5e, 0xb6, 0xb4, 0x5b, 0x4c, 0x2f, 0x46, 0x8e, 0x90, 0x91, 0x4b, 0x00,
+
2360 0x00, 0x03, 0x00, 0x36, 0xff, 0xf6, 0x01, 0xbf, 0x02, 0x78, 0x00, 0x21,
+
2361 0x00, 0x33, 0x00, 0x45, 0x00, 0x1a, 0x40, 0x0e, 0x2b, 0x08, 0x19, 0x34,
+
2362 0x04, 0x00, 0x3d, 0x10, 0x05, 0x72, 0x22, 0x00, 0x0d, 0x72, 0x00, 0x2b,
+
2363 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
+
2364 0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33,
+
2365 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x1e, 0x03, 0x15, 0x14,
+
2366 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x0e,
+
2367 0x03, 0x15, 0x14, 0x16, 0x16, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26,
+
2368 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0xfa, 0x3c, 0x58, 0x30,
+
2369 0x1f, 0x37, 0x25, 0x1b, 0x2a, 0x18, 0x28, 0x4c, 0x37, 0x3a, 0x4b, 0x26,
+
2370 0x0e, 0x18, 0x23, 0x16, 0x1b, 0x2a, 0x1f, 0x10, 0x31, 0x58, 0x3a, 0x24,
+
2371 0x31, 0x19, 0x12, 0x21, 0x2f, 0x1d, 0x14, 0x24, 0x19, 0x0e, 0x1a, 0x33,
+
2372 0x33, 0x11, 0x1c, 0x14, 0x0c, 0x15, 0x29, 0x1e, 0x1e, 0x27, 0x14, 0x10,
+
2373 0x1d, 0x26, 0x0a, 0x2d, 0x4c, 0x2f, 0x25, 0x42, 0x35, 0x11, 0x10, 0x2c,
+
2374 0x37, 0x1e, 0x2b, 0x46, 0x2b, 0x29, 0x44, 0x29, 0x17, 0x2c, 0x27, 0x20,
+
2375 0x0c, 0x0d, 0x24, 0x2c, 0x32, 0x1b, 0x32, 0x4d, 0x2d, 0x49, 0x1b, 0x2e,
+
2376 0x1c, 0x16, 0x29, 0x22, 0x1d, 0x08, 0x09, 0x1b, 0x23, 0x26, 0x16, 0x1d,
+
2377 0x2f, 0x1c, 0x01, 0x29, 0x0a, 0x1b, 0x1e, 0x22, 0x11, 0x16, 0x26, 0x18,
+
2378 0x17, 0x25, 0x16, 0x15, 0x23, 0x1c, 0x19, 0x00, 0x00, 0x01, 0x00, 0x3d,
+
2379 0xff, 0xf6, 0x01, 0xba, 0x02, 0x75, 0x00, 0x3a, 0x00, 0x19, 0x40, 0x0c,
+
2380 0x1f, 0x28, 0x28, 0x32, 0x0c, 0x3a, 0x0d, 0x72, 0x15, 0x32, 0x05, 0x72,
+
2381 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57,
+
2382 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
+
2383 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
+
2384 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x23,
+
2385 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
+
2386 0x14, 0x06, 0x06, 0x07, 0xe3, 0x2f, 0x4e, 0x20, 0x30, 0x07, 0x06, 0x01,
+
2387 0x08, 0x0c, 0x0f, 0x21, 0x15, 0x25, 0x35, 0x22, 0x12, 0x18, 0x33, 0x27,
+
2388 0x18, 0x28, 0x1d, 0x0f, 0x11, 0x1e, 0x27, 0x16, 0x20, 0x2e, 0x27, 0x10,
+
2389 0x07, 0x11, 0x2a, 0x35, 0x20, 0x27, 0x44, 0x32, 0x1b, 0x1d, 0x33, 0x44,
+
2390 0x27, 0x3d, 0x57, 0x2e, 0x33, 0x60, 0x44, 0x0a, 0x1b, 0x1d, 0x3d, 0x08,
+
2391 0x05, 0x08, 0x0d, 0x0b, 0x09, 0x09, 0x2a, 0x48, 0x5c, 0x32, 0x54, 0x6b,
+
2392 0x33, 0x12, 0x24, 0x32, 0x20, 0x1c, 0x2d, 0x1f, 0x10, 0x0e, 0x22, 0x1c,
+
2393 0x50, 0x14, 0x1e, 0x11, 0x1b, 0x33, 0x47, 0x2b, 0x2c, 0x4b, 0x38, 0x1f,
+
2394 0x44, 0x7a, 0x53, 0x7a, 0xa2, 0x51, 0x01, 0x00, 0x00, 0x03, 0x00, 0x32,
+
2395 0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x2b,
+
2396 0x00, 0x19, 0x40, 0x0c, 0x06, 0x00, 0x00, 0x0c, 0x24, 0x14, 0x05, 0x72,
+
2397 0x1c, 0x0c, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
+
2398 0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
+
2399 0x15, 0x14, 0x06, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
+
2400 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
+
2401 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
+
2402 0x1a, 0x24, 0x26, 0x18, 0x19, 0x26, 0x25, 0x1a, 0x3f, 0x59, 0x30, 0x30,
+
2403 0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c,
+
2404 0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0xfe, 0x23, 0x19, 0x19, 0x23,
+
2405 0x23, 0x19, 0x19, 0x23, 0xfe, 0xf7, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e,
+
2406 0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f,
+
2407 0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00, 0x00, 0x02, 0x00, 0x32,
+
2408 0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x10,
+
2409 0xb7, 0x18, 0x08, 0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32,
+
2410 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
+
2411 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
+
2412 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
+
2413 0xfa, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59,
+
2414 0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34,
+
2415 0x0b, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f,
+
2416 0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50,
+
2417 0x70, 0x3a, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
+
2418 0x06, 0x07, 0x02, 0x03, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x85,
+
2419 0xff, 0xef, 0x01, 0x24, 0x01, 0x72, 0x06, 0x07, 0x02, 0x04, 0x00, 0x00,
+
2420 0xfe, 0xf9, 0xff, 0xff, 0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e,
+
2421 0x06, 0x07, 0x02, 0x05, 0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74,
+
2422 0xff, 0xe6, 0x01, 0x79, 0x01, 0x74, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00,
+
2423 0xfe, 0xf7, 0xff, 0xff, 0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b,
+
2424 0x06, 0x07, 0x02, 0x07, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77,
+
2425 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x08, 0x00, 0x00,
+
2426 0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf2, 0x01, 0x81, 0x01, 0x80,
+
2427 0x06, 0x07, 0x02, 0x09, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x7f,
+
2428 0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x0a, 0x00, 0x00,
+
2429 0xff, 0x02, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83, 0x01, 0x80,
+
2430 0x06, 0x07, 0x02, 0x0b, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x75,
+
2431 0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x07, 0x02, 0x0c, 0x00, 0x00,
+
2432 0xff, 0x02, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
+
2433 0x06, 0x06, 0x01, 0xe5, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0xff, 0xef,
+
2434 0x01, 0x24, 0x01, 0x72, 0x06, 0x06, 0x01, 0xe6, 0x00, 0x00, 0xff, 0xff,
+
2435 0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e, 0x06, 0x07, 0x02, 0x05,
+
2436 0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74, 0xff, 0xd7, 0x01, 0x79,
+
2437 0x01, 0x65, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00, 0xfe, 0xe8, 0xff, 0xff,
+
2438 0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b, 0x06, 0x07, 0x02, 0x07,
+
2439 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf1, 0x01, 0x86,
+
2440 0x01, 0x7a, 0x06, 0x06, 0x01, 0xea, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
+
2441 0xff, 0xf2, 0x01, 0x81, 0x01, 0x80, 0x06, 0x06, 0x01, 0xeb, 0x00, 0x00,
+
2442 0xff, 0xff, 0x00, 0x7f, 0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x06,
+
2443 0x01, 0xec, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83,
+
2444 0x01, 0x80, 0x06, 0x06, 0x01, 0xed, 0x00, 0x00, 0xff, 0xff, 0x00, 0x75,
+
2445 0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x06, 0x01, 0xee, 0x00, 0x00,
+
2446 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x06, 0x06,
+
2447 0x02, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24,
+
2448 0x02, 0x79, 0x06, 0x06, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x70,
+
2449 0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06, 0x02, 0x05, 0x00, 0x00,
+
2450 0xff, 0xff, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d, 0x06, 0x06,
+
2451 0x02, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93,
+
2452 0x02, 0x79, 0x06, 0x06, 0x02, 0x07, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
+
2453 0x00, 0xef, 0x01, 0x86, 0x02, 0x78, 0x06, 0x06, 0x02, 0x08, 0x00, 0x00,
+
2454 0xff, 0xff, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x06, 0x06,
+
2455 0x02, 0x09, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
+
2456 0x02, 0x78, 0x06, 0x06, 0x02, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72,
+
2457 0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x06, 0x06, 0x02, 0x0b, 0x00, 0x00,
+
2458 0xff, 0xff, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06,
+
2459 0x02, 0x0c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
+
2460 0x02, 0x7d, 0x00, 0x03, 0x00, 0x13, 0x00, 0x21, 0x00, 0x17, 0x40, 0x0c,
+
2461 0x03, 0x00, 0x02, 0x01, 0x04, 0x14, 0x04, 0x77, 0x1b, 0x0c, 0x05, 0x72,
+
2462 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37, 0x17,
+
2463 0x07, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
2464 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
+
2465 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x98, 0xb6, 0x0e, 0xb6, 0x54,
+
2466 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c,
+
2467 0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29, 0x01, 0x63, 0xc9,
+
2468 0x2a, 0xc7, 0x4c, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e,
+
2469 0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e,
+
2470 0x47, 0x4d, 0x00, 0x01, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24, 0x02, 0x79,
+
2471 0x00, 0x06, 0x00, 0x16, 0x40, 0x0a, 0x03, 0x02, 0x02, 0x01, 0x01, 0x00,
+
2472 0x77, 0x04, 0x04, 0x72, 0x00, 0x2b, 0xed, 0x33, 0x11, 0x33, 0x11, 0x33,
+
2473 0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xe4, 0x51, 0x0e,
+
2474 0x6f, 0x30, 0xf6, 0x01, 0x3d, 0x19, 0x28, 0x37, 0xfe, 0x7d, 0x00, 0x01,
+
2475 0x00, 0x70, 0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x00, 0x26, 0x00, 0x14,
+
2476 0x40, 0x09, 0x00, 0x1e, 0x1e, 0x26, 0x77, 0x09, 0x15, 0x05, 0x72, 0x00,
+
2477 0x2b, 0x32, 0xe4, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x3e, 0x03, 0x35,
+
2478 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
+
2479 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07,
+
2480 0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x7b, 0x30, 0x49, 0x31,
+
2481 0x1a, 0x10, 0x1e, 0x14, 0x13, 0x23, 0x0e, 0x0a, 0x07, 0x01, 0x05, 0x08,
+
2482 0x2c, 0x17, 0x49, 0x2d, 0x24, 0x3b, 0x21, 0x1a, 0x2d, 0x3d, 0x24, 0x7d,
+
2483 0x11, 0x0e, 0x06, 0x08, 0xfe, 0xfc, 0x01, 0x24, 0x2c, 0x40, 0x33, 0x30,
+
2484 0x1a, 0x15, 0x1a, 0x0b, 0x0a, 0x0b, 0x0c, 0x0e, 0x08, 0x06, 0x06, 0x23,
+
2485 0x23, 0x27, 0x1b, 0x32, 0x23, 0x1e, 0x36, 0x35, 0x39, 0x21, 0x04, 0x06,
+
2486 0x0a, 0x34, 0x00, 0x01, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d,
+
2487 0x00, 0x32, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x14, 0x14, 0x13, 0x13, 0x24,
+
2488 0x32, 0x0c, 0x1d, 0x32, 0x77, 0x24, 0x05, 0x72, 0x00, 0x2b, 0xe4, 0x33,
+
2489 0x3f, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x77, 0x22, 0x26,
+
2490 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
+
2491 0x35, 0x34, 0x26, 0x26, 0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26,
+
2492 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15,
+
2493 0x14, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0xf1, 0x24,
+
2494 0x43, 0x16, 0x24, 0x06, 0x06, 0x01, 0x09, 0x0d, 0x0b, 0x19, 0x10, 0x24,
+
2495 0x26, 0x1c, 0x34, 0x25, 0x20, 0x28, 0x18, 0x09, 0x0f, 0x1a, 0x12, 0x15,
+
2496 0x27, 0x11, 0x26, 0x18, 0x3d, 0x1f, 0x36, 0x43, 0x23, 0x1d, 0x15, 0x22,
+
2497 0x16, 0x20, 0x3c, 0x2c, 0xef, 0x17, 0x17, 0x2d, 0x08, 0x05, 0x08, 0x0c,
+
2498 0x0b, 0x05, 0x07, 0x25, 0x1d, 0x1a, 0x1f, 0x0c, 0x04, 0x32, 0x09, 0x11,
+
2499 0x18, 0x0d, 0x10, 0x16, 0x0c, 0x0d, 0x10, 0x26, 0x18, 0x14, 0x37, 0x2b,
+
2500 0x20, 0x2e, 0x0a, 0x06, 0x19, 0x27, 0x1c, 0x20, 0x34, 0x1e, 0x00, 0x02,
+
2501 0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93, 0x02, 0x79, 0x00, 0x0a, 0x00, 0x0d,
+
2502 0x00, 0x1f, 0x40, 0x0e, 0x03, 0x06, 0x06, 0x0c, 0x0c, 0x09, 0x0d, 0x04,
+
2503 0x01, 0x01, 0x00, 0x77, 0x04, 0x05, 0x00, 0x3f, 0xed, 0x39, 0x2f, 0x12,
+
2504 0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23,
+
2505 0x35, 0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x01,
+
2506 0x1c, 0xb0, 0xbe, 0x31, 0x38, 0x38, 0xa9, 0x6b, 0xf6, 0x5c, 0x29, 0xfe,
+
2507 0xf4, 0x34, 0x5b, 0x8f, 0x90, 0x00, 0x00, 0x01, 0x00, 0x77, 0x00, 0xef,
+
2508 0x01, 0x86, 0x02, 0x78, 0x00, 0x2a, 0x00, 0x17, 0x40, 0x0a, 0x0c, 0x1e,
+
2509 0x14, 0x21, 0x21, 0x2a, 0x77, 0x1d, 0x1a, 0x05, 0x00, 0x3f, 0x33, 0xe4,
+
2510 0x39, 0x2f, 0x33, 0x33, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x27, 0x37,
+
2511 0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
+
2512 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x37, 0x33, 0x15,
+
2513 0x23, 0x07, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06,
+
2514 0x23, 0xfb, 0x2a, 0x46, 0x14, 0x2e, 0x07, 0x05, 0x01, 0x09, 0x0c, 0x0b,
+
2515 0x1b, 0x11, 0x14, 0x23, 0x15, 0x14, 0x24, 0x18, 0x0d, 0x1b, 0x18, 0x0a,
+
2516 0x27, 0x0e, 0xdf, 0xa9, 0x06, 0x0e, 0x23, 0x10, 0x1c, 0x2f, 0x22, 0x13,
+
2517 0x24, 0x3f, 0x28, 0xef, 0x1f, 0x1d, 0x25, 0x07, 0x07, 0x08, 0x0c, 0x0b,
+
2518 0x07, 0x07, 0x13, 0x23, 0x18, 0x19, 0x24, 0x13, 0x07, 0x0f, 0x0a, 0x0c,
+
2519 0xcb, 0x34, 0x5e, 0x07, 0x08, 0x11, 0x22, 0x30, 0x1e, 0x2a, 0x3b, 0x20,
+
2520 0x00, 0x02, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x00, 0x24,
+
2521 0x00, 0x36, 0x00, 0x16, 0x40, 0x0a, 0x2e, 0x1c, 0x1c, 0x36, 0x24, 0x77,
+
2522 0x13, 0x07, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33,
+
2523 0x30, 0x31, 0x65, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
2524 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
+
2525 0x02, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
+
2526 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
+
2527 0x06, 0x07, 0x06, 0x16, 0x16, 0x33, 0x01, 0x01, 0x43, 0x47, 0x27, 0x46,
+
2528 0x2e, 0x1c, 0x35, 0x15, 0x23, 0x07, 0x05, 0x01, 0x0c, 0x0e, 0x06, 0x0b,
+
2529 0x06, 0x0e, 0x20, 0x1d, 0x14, 0x03, 0x0a, 0x1b, 0x20, 0x10, 0x21, 0x36,
+
2530 0x20, 0x22, 0x39, 0x25, 0x02, 0x12, 0x1d, 0x13, 0x0c, 0x14, 0x18, 0x0b,
+
2531 0x0f, 0x1b, 0x18, 0x09, 0x01, 0x11, 0x24, 0x18, 0xf0, 0x64, 0x52, 0x45,
+
2532 0x60, 0x33, 0x11, 0x14, 0x28, 0x08, 0x05, 0x08, 0x08, 0x08, 0x01, 0x01,
+
2533 0x09, 0x1a, 0x31, 0x27, 0x0c, 0x11, 0x09, 0x1d, 0x38, 0x29, 0x27, 0x3c,
+
2534 0x22, 0x34, 0x13, 0x24, 0x19, 0x13, 0x1d, 0x13, 0x09, 0x0c, 0x13, 0x0e,
+
2535 0x1e, 0x32, 0x1f, 0x00, 0x00, 0x01, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
+
2536 0x02, 0x78, 0x00, 0x0c, 0x00, 0x11, 0xb7, 0x08, 0x05, 0x05, 0x00, 0x77,
+
2537 0x06, 0x04, 0x72, 0x00, 0x2b, 0xe4, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77,
+
2538 0x3e, 0x02, 0x37, 0x23, 0x35, 0x33, 0x15, 0x0e, 0x02, 0x07, 0xae, 0x14,
+
2539 0x2a, 0x2d, 0x17, 0xb1, 0xfc, 0x1a, 0x30, 0x2c, 0x14, 0xf6, 0x39, 0x6f,
+
2540 0x6c, 0x37, 0x37, 0x23, 0x39, 0x73, 0x75, 0x3e, 0x00, 0x03, 0x00, 0x72,
+
2541 0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x00, 0x1c, 0x00, 0x2c, 0x00, 0x3c,
+
2542 0x00, 0x17, 0x40, 0x0c, 0x07, 0x2d, 0x15, 0x25, 0x04, 0x1d, 0x00, 0x77,
+
2543 0x35, 0x0e, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30,
+
2544 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35,
+
2545 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02,
+
2546 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
+
2547 0x27, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x3e, 0x02, 0x35, 0x34,
+
2548 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa, 0x3e,
+
2549 0x4a, 0x13, 0x24, 0x19, 0x13, 0x1b, 0x0e, 0x3f, 0x39, 0x3b, 0x3c, 0x0e,
+
2550 0x1a, 0x13, 0x17, 0x20, 0x12, 0x22, 0x3d, 0x29, 0x18, 0x20, 0x11, 0x15,
+
2551 0x26, 0x1a, 0x12, 0x1c, 0x10, 0x12, 0x21, 0x23, 0x0f, 0x15, 0x0d, 0x0e,
+
2552 0x1b, 0x13, 0x12, 0x1b, 0x0d, 0x13, 0x1f, 0xf0, 0x3c, 0x2d, 0x18, 0x28,
+
2553 0x20, 0x0b, 0x0a, 0x1b, 0x21, 0x11, 0x2a, 0x39, 0x37, 0x28, 0x13, 0x23,
+
2554 0x1d, 0x0a, 0x0a, 0x1f, 0x27, 0x16, 0x20, 0x30, 0x1c, 0x35, 0x0f, 0x1a,
+
2555 0x10, 0x11, 0x1e, 0x18, 0x06, 0x08, 0x16, 0x1c, 0x11, 0x11, 0x1b, 0x0f,
+
2556 0xb1, 0x09, 0x15, 0x1a, 0x0d, 0x0d, 0x15, 0x0d, 0x0d, 0x14, 0x0c, 0x11,
+
2557 0x19, 0x13, 0x00, 0x01, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d,
+
2558 0x00, 0x32, 0x00, 0x14, 0x40, 0x09, 0x1c, 0x24, 0x24, 0x32, 0x77, 0x14,
+
2559 0x2c, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
2560 0x77, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16,
+
2561 0x33, 0x32, 0x36, 0x36, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
+
2562 0x15, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
+
2563 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
2564 0x06, 0x23, 0xe9, 0x1f, 0x39, 0x17, 0x23, 0x07, 0x06, 0x01, 0x0b, 0x0d,
+
2565 0x08, 0x11, 0x0a, 0x1f, 0x29, 0x15, 0x01, 0x10, 0x22, 0x1a, 0x15, 0x20,
+
2566 0x12, 0x01, 0x13, 0x20, 0x13, 0x15, 0x1e, 0x1a, 0x0b, 0x06, 0x11, 0x30,
+
2567 0x20, 0x24, 0x3a, 0x22, 0x23, 0x3d, 0x24, 0x41, 0x45, 0x4e, 0x48, 0xf0,
+
2568 0x0f, 0x13, 0x2e, 0x08, 0x05, 0x08, 0x0a, 0x09, 0x02, 0x03, 0x28, 0x44,
+
2569 0x29, 0x34, 0x40, 0x1d, 0x12, 0x24, 0x1a, 0x15, 0x1f, 0x10, 0x08, 0x14,
+
2570 0x10, 0x38, 0x12, 0x16, 0x1e, 0x37, 0x25, 0x26, 0x3a, 0x22, 0x5c, 0x52,
+
2571 0x6f, 0x70, 0x00, 0x01, 0x00, 0x47, 0xff, 0xd6, 0x01, 0xb4, 0x02, 0x9b,
+
2572 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
2573 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x7b, 0x34, 0x01, 0x38,
+
2574 0x35, 0x2a, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x03, 0x00, 0x0f, 0xff, 0xba,
+
2575 0x01, 0xe6, 0x02, 0xae, 0x00, 0x06, 0x00, 0x24, 0x00, 0x28, 0x00, 0x37,
+
2576 0x40, 0x19, 0x26, 0x25, 0x25, 0x07, 0x08, 0x22, 0x22, 0x07, 0x11, 0x19,
+
2577 0x19, 0x07, 0x28, 0x27, 0x27, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, 0x04,
+
2578 0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11,
+
2579 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11,
+
2580 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x07, 0x27, 0x37,
+
2581 0x33, 0x11, 0x13, 0x35, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
+
2582 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
+
2583 0x0e, 0x02, 0x07, 0x33, 0x15, 0x25, 0x27, 0x01, 0x17, 0x59, 0x3d, 0x0d,
+
2584 0x59, 0x2a, 0x84, 0x26, 0x3a, 0x26, 0x14, 0x0d, 0x16, 0x10, 0x10, 0x1b,
+
2585 0x15, 0x09, 0x26, 0x11, 0x3b, 0x23, 0x1e, 0x2f, 0x1c, 0x13, 0x22, 0x2f,
+
2586 0x1c, 0x80, 0xfe, 0x95, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6, 0x14,
+
2587 0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x28, 0x23, 0x33, 0x26, 0x25, 0x14,
+
2588 0x0f, 0x12, 0x08, 0x08, 0x12, 0x0f, 0x1e, 0x1c, 0x1f, 0x16, 0x28, 0x1b,
+
2589 0x18, 0x29, 0x28, 0x2c, 0x1a, 0x2e, 0x1c, 0x1e, 0x02, 0xa7, 0x20, 0x00,
+
2590 0x00, 0x04, 0x00, 0x0f, 0xff, 0xba, 0x01, 0xeb, 0x02, 0xae, 0x00, 0x06,
+
2591 0x00, 0x11, 0x00, 0x14, 0x00, 0x18, 0x00, 0x41, 0x40, 0x1e, 0x16, 0x15,
+
2592 0x15, 0x07, 0x0d, 0x0a, 0x13, 0x13, 0x10, 0x14, 0x0b, 0x08, 0x08, 0x07,
+
2593 0x0b, 0x0b, 0x07, 0x18, 0x17, 0x17, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03,
+
2594 0x04, 0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33,
+
2595 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
+
2596 0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30,
+
2597 0x31, 0x53, 0x35, 0x07, 0x27, 0x37, 0x33, 0x11, 0x13, 0x35, 0x23, 0x35,
+
2598 0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x05, 0x27,
+
2599 0x01, 0x17, 0x59, 0x3d, 0x0d, 0x59, 0x2a, 0xf5, 0x87, 0x93, 0x2b, 0x2d,
+
2600 0x2d, 0x82, 0x4c, 0xfe, 0xf3, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6,
+
2601 0x14, 0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x48, 0x24, 0xc6, 0xbe, 0x2d,
+
2602 0x47, 0x74, 0x68, 0xc0, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x04, 0x00, 0x01,
+
2603 0xff, 0xba, 0x01, 0xeb, 0x02, 0xb2, 0x00, 0x30, 0x00, 0x3b, 0x00, 0x3e,
+
2604 0x00, 0x42, 0x00, 0x3d, 0x40, 0x1d, 0x40, 0x3f, 0x3f, 0x3b, 0x33, 0x36,
+
2605 0x36, 0x39, 0x39, 0x3c, 0x3d, 0x34, 0x31, 0x31, 0x3b, 0x34, 0x34, 0x3b,
+
2606 0x42, 0x41, 0x41, 0x13, 0x2a, 0x14, 0x03, 0x24, 0x30, 0x30, 0x24, 0x00,
+
2607 0x2f, 0x33, 0x2f, 0x12, 0x17, 0x39, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x2f,
+
2608 0x12, 0x39, 0x2f, 0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
2609 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
+
2610 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
+
2611 0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
+
2612 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x16,
+
2613 0x16, 0x15, 0x14, 0x06, 0x23, 0x01, 0x23, 0x35, 0x37, 0x33, 0x15, 0x33,
+
2614 0x15, 0x23, 0x15, 0x23, 0x37, 0x35, 0x07, 0x07, 0x27, 0x01, 0x17, 0x66,
+
2615 0x1d, 0x37, 0x11, 0x1e, 0x06, 0x06, 0x02, 0x0a, 0x0d, 0x06, 0x10, 0x0a,
+
2616 0x1b, 0x1d, 0x15, 0x28, 0x1d, 0x18, 0x20, 0x12, 0x08, 0x0c, 0x14, 0x0e,
+
2617 0x10, 0x1f, 0x0d, 0x21, 0x13, 0x33, 0x18, 0x2d, 0x37, 0x1e, 0x15, 0x18,
+
2618 0x24, 0x3a, 0x34, 0x01, 0x21, 0x87, 0x93, 0x2b, 0x2d, 0x2d, 0x37, 0x01,
+
2619 0x4c, 0xc1, 0x34, 0x01, 0x38, 0x35, 0x01, 0x76, 0x12, 0x12, 0x29, 0x08,
+
2620 0x05, 0x07, 0x0c, 0x0a, 0x03, 0x03, 0x1a, 0x16, 0x14, 0x18, 0x08, 0x03,
+
2621 0x2b, 0x06, 0x0e, 0x10, 0x09, 0x0d, 0x11, 0x09, 0x0a, 0x0d, 0x21, 0x14,
+
2622 0x11, 0x2c, 0x23, 0x1a, 0x23, 0x08, 0x07, 0x25, 0x22, 0x25, 0x35, 0xfe,
+
2623 0x8c, 0x24, 0xc6, 0xbe, 0x2d, 0x47, 0x74, 0x68, 0x68, 0x58, 0x1e, 0x02,
+
2624 0xa7, 0x20, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xe9, 0x01, 0x86, 0x01, 0x77,
+
2625 0x06, 0x07, 0x02, 0x14, 0x00, 0x00, 0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e,
+
2626 0xff, 0xe9, 0x01, 0x86, 0x01, 0x77, 0x06, 0x07, 0x02, 0x14, 0x00, 0x00,
+
2627 0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d,
+
2628 0x06, 0x06, 0x02, 0x14, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6e, 0x00, 0xef,
+
2629 0x01, 0x86, 0x02, 0x7d, 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x0f, 0xb6, 0x10,
+
2630 0x00, 0x77, 0x17, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x30,
+
2631 0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
2632 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
+
2633 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfa, 0x2c, 0x3e, 0x22, 0x22,
+
2634 0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23,
+
2635 0x1a, 0x19, 0x24, 0x12, 0x29, 0xef, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30,
+
2636 0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24,
+
2637 0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf3,
+
2638 0x01, 0x86, 0x01, 0x81, 0x06, 0x07, 0x02, 0x18, 0x00, 0x00, 0xff, 0x04,
+
2639 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f, 0x06, 0x06,
+
2640 0x02, 0x15, 0x00, 0xfe, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
+
2641 0x02, 0x7d, 0x06, 0x06, 0x02, 0x18, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e,
+
2642 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x29,
+
2643 0x00, 0x16, 0x40, 0x0a, 0x06, 0x00, 0x00, 0x1c, 0x0c, 0x77, 0x23, 0x14,
+
2644 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
2645 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2646 0x07, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
+
2647 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
+
2648 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfd, 0x10, 0x15, 0x16, 0x0f, 0x0d,
+
2649 0x17, 0x15, 0x12, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22,
+
2650 0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29,
+
2651 0x01, 0x9e, 0x14, 0x10, 0x0e, 0x15, 0x15, 0x0e, 0x0f, 0x15, 0xaf, 0x2e,
+
2652 0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32,
+
2653 0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0x01,
+
2654 0x00, 0xae, 0xff, 0xf5, 0x01, 0x2d, 0x00, 0x73, 0x00, 0x0b, 0x00, 0x0a,
+
2655 0xb3, 0x06, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22,
+
2656 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xee, 0x1a,
+
2657 0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0x0b, 0x25, 0x1a, 0x19, 0x26, 0x26,
+
2658 0x19, 0x1a, 0x25, 0x00, 0x00, 0x01, 0x00, 0xa1, 0xff, 0x57, 0x01, 0x38,
+
2659 0x00, 0x73, 0x00, 0x13, 0x00, 0x0a, 0xb2, 0x00, 0xc0, 0x0c, 0x00, 0x2f,
+
2660 0x1a, 0xcc, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02,
+
2661 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0xcc, 0x2b,
+
2662 0x1c, 0x22, 0x0e, 0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29,
+
2663 0xa9, 0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x1c, 0x23,
+
2664 0x31, 0x28, 0x15, 0x2d, 0x31, 0x34, 0x00, 0x02, 0x00, 0xad, 0xff, 0xf5,
+
2665 0x01, 0x2e, 0x01, 0xad, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x0e, 0xb5, 0x12,
+
2666 0x0c, 0x0b, 0x72, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2b, 0x32, 0x30, 0x31,
+
2667 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2668 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2669 0xed, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0x1b, 0x1b, 0x25, 0x26,
+
2670 0x1a, 0x19, 0x28, 0x25, 0x01, 0x2e, 0x26, 0x19, 0x1a, 0x26, 0x25, 0x1b,
+
2671 0x19, 0x26, 0xfe, 0xc7, 0x25, 0x1a, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x26,
+
2672 0x00, 0x02, 0x00, 0xa0, 0xff, 0x57, 0x01, 0x38, 0x01, 0xad, 0x00, 0x13,
+
2673 0x00, 0x1f, 0x00, 0x0e, 0xb4, 0x14, 0x1a, 0x00, 0xc0, 0x0d, 0x00, 0x2f,
+
2674 0x1a, 0xcc, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34,
+
2675 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2676 0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
2677 0x06, 0xcc, 0x2c, 0x1c, 0x23, 0x0f, 0x14, 0x0e, 0x11, 0x1d, 0x13, 0x1e,
+
2678 0x2b, 0x18, 0x30, 0x03, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0xa9,
+
2679 0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x13, 0x1c, 0x10,
+
2680 0x31, 0x28, 0x1c, 0x3e, 0x43, 0x01, 0xb1, 0x26, 0x19, 0x1a, 0x26, 0x25,
+
2681 0x1b, 0x19, 0x26, 0x00, 0x00, 0x03, 0x00, 0x06, 0xff, 0xf5, 0x01, 0xda,
+
2682 0x00, 0x6e, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x23, 0x00, 0x19, 0x40, 0x0b,
+
2683 0x18, 0x0c, 0x0c, 0x1e, 0x12, 0x12, 0x06, 0x06, 0x00, 0x0b, 0x72, 0x00,
+
2684 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57,
+
2685 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
+
2686 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
+
2687 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x44,
+
2688 0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x94, 0x1a, 0x24, 0x24, 0x1a,
+
2689 0x18, 0x24, 0x24, 0x96, 0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x0b,
+
2690 0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24,
+
2691 0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24,
+
2692 0x00, 0x02, 0x00, 0xad, 0xff, 0xf5, 0x01, 0x32, 0x02, 0x9d, 0x00, 0x0a,
+
2693 0x00, 0x16, 0x00, 0x14, 0x40, 0x09, 0x00, 0x11, 0x11, 0x0b, 0x0b, 0x72,
+
2694 0x05, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x7c, 0x10, 0xce, 0x30, 0x31,
+
2695 0x77, 0x03, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x03, 0x07,
+
2696 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xd2,
+
2697 0x1a, 0x0e, 0x1a, 0x11, 0x11, 0x19, 0x0f, 0x1c, 0x1f, 0x1b, 0x27, 0x27,
+
2698 0x1b, 0x1b, 0x28, 0x28, 0xc7, 0x01, 0x87, 0x1a, 0x23, 0x12, 0x12, 0x26,
+
2699 0x1f, 0xfe, 0x81, 0xd2, 0x25, 0x1b, 0x1a, 0x27, 0x27, 0x1a, 0x19, 0x27,
+
2700 0x00, 0x02, 0x00, 0xad, 0xff, 0xae, 0x01, 0x32, 0x02, 0x56, 0x00, 0x0a,
+
2701 0x00, 0x16, 0x00, 0x0f, 0xb4, 0x00, 0x11, 0x11, 0x0b, 0x06, 0x00, 0x2f,
+
2702 0x2f, 0x33, 0x7c, 0x10, 0xce, 0x30, 0x31, 0x53, 0x33, 0x13, 0x14, 0x06,
+
2703 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2704 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0xd2, 0x3c, 0x1c, 0x0f, 0x19, 0x11,
+
2705 0x11, 0x1a, 0x0e, 0x37, 0x1b, 0x28, 0x28, 0x1b, 0x1b, 0x27, 0x27, 0x01,
+
2706 0x84, 0xfe, 0x81, 0x1f, 0x26, 0x12, 0x12, 0x24, 0x19, 0x02, 0x59, 0x26,
+
2707 0x1a, 0x1a, 0x27, 0x27, 0x1a, 0x1b, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3e,
+
2708 0xff, 0xf5, 0x01, 0xb6, 0x02, 0x9a, 0x00, 0x26, 0x00, 0x32, 0x00, 0x17,
+
2709 0x40, 0x0b, 0x26, 0x26, 0x2d, 0x2d, 0x27, 0x0b, 0x72, 0x0c, 0x19, 0x01,
+
2710 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x77,
+
2711 0x34, 0x3e, 0x04, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x06,
+
2712 0x06, 0x17, 0x07, 0x27, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
+
2713 0x14, 0x0e, 0x04, 0x15, 0x15, 0x23, 0x17, 0x22, 0x26, 0x35, 0x34, 0x36,
+
2714 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xdd, 0x14, 0x1f, 0x22, 0x20, 0x13,
+
2715 0x0f, 0x1c, 0x27, 0x16, 0x22, 0x36, 0x16, 0x0a, 0x05, 0x01, 0x05, 0x08,
+
2716 0x36, 0x17, 0x35, 0x47, 0x30, 0x37, 0x51, 0x2d, 0x14, 0x20, 0x24, 0x20,
+
2717 0x14, 0x4d, 0x28, 0x1a, 0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0xeb, 0x24,
+
2718 0x32, 0x25, 0x21, 0x23, 0x2e, 0x1f, 0x16, 0x22, 0x18, 0x0d, 0x15, 0x16,
+
2719 0x0d, 0x0e, 0x08, 0x06, 0x06, 0x2a, 0x22, 0x2f, 0x19, 0x28, 0x47, 0x30,
+
2720 0x27, 0x37, 0x28, 0x21, 0x21, 0x2a, 0x1e, 0x2c, 0xca, 0x25, 0x1a, 0x19,
+
2721 0x26, 0x26, 0x19, 0x1a, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x88,
+
2722 0x01, 0xb4, 0x02, 0x2d, 0x00, 0x26, 0x00, 0x33, 0x00, 0x12, 0xb6, 0x25,
+
2723 0x25, 0x2d, 0x2d, 0x27, 0x0c, 0x19, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
+
2724 0x33, 0x2f, 0x30, 0x31, 0x41, 0x14, 0x0e, 0x04, 0x15, 0x14, 0x1e, 0x02,
+
2725 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x0e, 0x02,
+
2726 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x04, 0x35, 0x35, 0x33, 0x27,
+
2727 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33,
+
2728 0x01, 0x15, 0x14, 0x1f, 0x22, 0x20, 0x13, 0x0f, 0x1c, 0x27, 0x16, 0x22,
+
2729 0x37, 0x15, 0x0a, 0x05, 0x01, 0x05, 0x08, 0x36, 0x16, 0x36, 0x47, 0x30,
+
2730 0x37, 0x51, 0x2d, 0x15, 0x1f, 0x24, 0x20, 0x14, 0x4d, 0x28, 0x1a, 0x26,
+
2731 0x26, 0x1a, 0x1a, 0x25, 0x25, 0x1a, 0x01, 0x37, 0x23, 0x33, 0x25, 0x21,
+
2732 0x23, 0x2d, 0x20, 0x15, 0x23, 0x18, 0x0d, 0x15, 0x16, 0x0d, 0x0e, 0x08,
+
2733 0x06, 0x06, 0x2a, 0x21, 0x30, 0x19, 0x28, 0x47, 0x30, 0x27, 0x37, 0x28,
+
2734 0x21, 0x21, 0x2b, 0x1d, 0x2c, 0xca, 0x25, 0x1a, 0x19, 0x26, 0x26, 0x19,
+
2735 0x1a, 0x25, 0x00, 0x01, 0x00, 0xae, 0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b,
+
2736 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
+
2737 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
2738 0xee, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26, 0x01, 0x0d, 0x24, 0x1b,
+
2739 0x1a, 0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0x01, 0x00, 0x9d, 0x00, 0xcd,
+
2740 0x01, 0x58, 0x01, 0x84, 0x00, 0x0f, 0x00, 0x08, 0xb1, 0x08, 0x00, 0x00,
+
2741 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
+
2742 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xfa, 0x19, 0x2b, 0x19,
+
2743 0x1a, 0x2b, 0x18, 0x19, 0x2b, 0x1a, 0x1a, 0x2a, 0xcd, 0x19, 0x2a, 0x18,
+
2744 0x1a, 0x2a, 0x18, 0x19, 0x2a, 0x19, 0x18, 0x2a, 0x19, 0x00, 0x00, 0x01,
+
2745 0x00, 0x26, 0x00, 0x76, 0x01, 0xce, 0x02, 0x1a, 0x00, 0x0e, 0x00, 0x1b,
+
2746 0x40, 0x0f, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09,
+
2747 0x06, 0x0d, 0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17,
+
2748 0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07,
+
2749 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b,
+
2750 0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x76, 0x35, 0x90,
+
2751 0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00,
+
2752 0x00, 0x01, 0x00, 0xc8, 0xff, 0x7c, 0x01, 0x52, 0x00, 0x8d, 0x00, 0x10,
+
2753 0x00, 0x0e, 0xb4, 0x01, 0x00, 0xc0, 0x08, 0x09, 0x00, 0x2f, 0x33, 0x1a,
+
2754 0xce, 0x32, 0x30, 0x31, 0x57, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
+
2755 0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc8, 0x20, 0x28,
+
2756 0x11, 0x20, 0x17, 0x29, 0x3e, 0x23, 0x22, 0x3f, 0x84, 0x3d, 0x2d, 0x1f,
+
2757 0x14, 0x24, 0x15, 0x3b, 0x25, 0x3e, 0x26, 0x25, 0x3e, 0x25, 0x00, 0x02,
+
2758 0x00, 0x16, 0x00, 0x09, 0x01, 0xe0, 0x02, 0x72, 0x00, 0x1b, 0x00, 0x1f,
+
2759 0x00, 0x41, 0x40, 0x1f, 0x13, 0x0f, 0x0f, 0x0c, 0x16, 0x1f, 0x1f, 0x09,
+
2760 0x09, 0x0c, 0x17, 0x1c, 0x1c, 0x08, 0x08, 0x05, 0x1a, 0x02, 0x02, 0x05,
+
2761 0x0c, 0x05, 0x0c, 0x05, 0x04, 0x12, 0x0d, 0x02, 0x72, 0x00, 0x04, 0x00,
+
2762 0x2f, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
+
2763 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
2764 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x37, 0x23, 0x07, 0x07,
+
2765 0x37, 0x23, 0x37, 0x33, 0x37, 0x23, 0x37, 0x33, 0x37, 0x37, 0x07, 0x33,
+
2766 0x37, 0x37, 0x07, 0x33, 0x07, 0x23, 0x07, 0x33, 0x07, 0x23, 0x07, 0x27,
+
2767 0x33, 0x37, 0x23, 0x01, 0x0a, 0x15, 0x66, 0x14, 0x46, 0x15, 0x5e, 0x04,
+
2768 0x61, 0x13, 0x6a, 0x03, 0x6d, 0x13, 0x48, 0x15, 0x65, 0x13, 0x4a, 0x14,
+
2769 0x58, 0x07, 0x58, 0x14, 0x5f, 0x05, 0x5f, 0x16, 0x92, 0x65, 0x14, 0x66,
+
2770 0x09, 0xb1, 0xac, 0x01, 0xab, 0x37, 0xa0, 0x39, 0xa8, 0x02, 0xa8, 0xa4,
+
2771 0x01, 0xa3, 0x3a, 0x9e, 0x37, 0xaf, 0xe3, 0x9f, 0x00, 0x01, 0x00, 0x3a,
+
2772 0xff, 0xd6, 0x01, 0xbb, 0x02, 0x9a, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03,
+
2773 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27,
+
2774 0x01, 0x17, 0x84, 0x4a, 0x01, 0x37, 0x4a, 0x2a, 0x22, 0x02, 0xa2, 0x26,
+
2775 0x00, 0x01, 0x00, 0x3a, 0xff, 0xd5, 0x01, 0xbc, 0x02, 0x99, 0x00, 0x03,
+
2776 0x00, 0x0c, 0xb3, 0x01, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
+
2777 0x30, 0x31, 0x45, 0x01, 0x37, 0x01, 0x01, 0x73, 0xfe, 0xc7, 0x4a, 0x01,
+
2778 0x38, 0x2b, 0x02, 0x9f, 0x25, 0xfd, 0x5f, 0x00, 0xff, 0xff, 0x00, 0xae,
+
2779 0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b, 0x06, 0x06, 0x02, 0x22, 0x00, 0x00,
+
2780 0x00, 0x01, 0x00, 0x26, 0x00, 0xb2, 0x01, 0xce, 0x02, 0x56, 0x00, 0x0e,
+
2781 0x00, 0x1b, 0x40, 0x10, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a,
+
2782 0x09, 0x09, 0x0d, 0x00, 0x00, 0x06, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2f,
+
2783 0x33, 0x17, 0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27,
+
2784 0x33, 0x07, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7,
+
2785 0x1e, 0x9b, 0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0xb2,
+
2786 0x35, 0x90, 0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34,
+
2787 0xa1, 0x00, 0x00, 0x01, 0x00, 0x74, 0xff, 0x97, 0x01, 0xa2, 0x02, 0xe0,
+
2788 0x00, 0x13, 0x00, 0x0c, 0xb3, 0x09, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32,
+
2789 0x2f, 0x33, 0x30, 0x31, 0x45, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37,
+
2790 0x17, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x01, 0x8b, 0x57, 0x7e,
+
2791 0x42, 0x42, 0x7a, 0x55, 0x16, 0x30, 0x4e, 0x38, 0x1e, 0x1f, 0x39, 0x50,
+
2792 0x33, 0x69, 0x28, 0x83, 0xa5, 0x59, 0x59, 0xa1, 0x7f, 0x27, 0x48, 0x1a,
+
2793 0x49, 0x59, 0x67, 0x38, 0x38, 0x68, 0x5c, 0x4a, 0x1a, 0x00, 0x00, 0x01,
+
2794 0x00, 0x6e, 0xff, 0x97, 0x01, 0x9c, 0x02, 0xe0, 0x00, 0x13, 0x00, 0x0c,
+
2795 0xb3, 0x0b, 0x0c, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31,
+
2796 0x57, 0x27, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x37, 0x1e, 0x02,
+
2797 0x15, 0x14, 0x06, 0x06, 0x85, 0x17, 0x33, 0x50, 0x39, 0x1f, 0x1e, 0x38,
+
2798 0x4e, 0x30, 0x16, 0x55, 0x7a, 0x42, 0x42, 0x7e, 0x69, 0x46, 0x1a, 0x4a,
+
2799 0x5c, 0x68, 0x38, 0x38, 0x67, 0x59, 0x49, 0x1a, 0x48, 0x27, 0x7f, 0xa1,
+
2800 0x59, 0x59, 0xa5, 0x83, 0x00, 0x01, 0x00, 0x2f, 0xff, 0xa4, 0x01, 0x9a,
+
2801 0x02, 0xc0, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09, 0x20, 0x0b, 0x0b, 0x0a,
+
2802 0x0a, 0x18, 0x15, 0x29, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f,
+
2803 0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x37, 0x37, 0x34,
+
2804 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34,
+
2805 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x17, 0x14, 0x06,
+
2806 0x06, 0x07, 0x1e, 0x02, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15,
+
2807 0x01, 0x71, 0x48, 0x62, 0x32, 0x03, 0x03, 0x13, 0x25, 0x1b, 0x19, 0x18,
+
2808 0x1d, 0x26, 0x13, 0x02, 0x2c, 0x54, 0x3c, 0x43, 0x55, 0x2c, 0x2b, 0x02,
+
2809 0x13, 0x26, 0x1b, 0x1b, 0x24, 0x13, 0x03, 0x18, 0x35, 0x2a, 0x37, 0x5c,
+
2810 0x1e, 0x4d, 0x46, 0x61, 0x2a, 0x2e, 0x11, 0x42, 0x14, 0x2c, 0x24, 0x4c,
+
2811 0x3a, 0x4e, 0x27, 0x43, 0x31, 0x30, 0x4b, 0x23, 0x38, 0x29, 0x0d, 0x0a,
+
2812 0x29, 0x3d, 0x29, 0x51, 0x29, 0x31, 0x15, 0x43, 0x00, 0x01, 0x00, 0x34,
+
2813 0xff, 0xa4, 0x01, 0x9f, 0x02, 0xc0, 0x00, 0x2b, 0x00, 0x19, 0x40, 0x0a,
+
2814 0x0c, 0x20, 0x20, 0x23, 0x23, 0x01, 0x15, 0x16, 0x02, 0x01, 0x00, 0x2f,
+
2815 0x33, 0x2f, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
+
2816 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34, 0x36, 0x36, 0x37,
+
2817 0x2e, 0x02, 0x35, 0x37, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16,
+
2818 0x16, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06,
+
2819 0x06, 0x15, 0x17, 0x16, 0x06, 0x06, 0x5d, 0x28, 0x37, 0x2b, 0x34, 0x18,
+
2820 0x03, 0x13, 0x25, 0x1a, 0x1b, 0x26, 0x13, 0x02, 0x2b, 0x2c, 0x55, 0x43,
+
2821 0x3d, 0x53, 0x2c, 0x02, 0x13, 0x27, 0x1c, 0x18, 0x19, 0x1a, 0x26, 0x13,
+
2822 0x03, 0x03, 0x31, 0x63, 0x5c, 0x43, 0x15, 0x31, 0x29, 0x51, 0x29, 0x3d,
+
2823 0x29, 0x0a, 0x0d, 0x29, 0x38, 0x23, 0x4b, 0x30, 0x31, 0x43, 0x27, 0x4e,
+
2824 0x3a, 0x4c, 0x24, 0x2c, 0x14, 0x42, 0x11, 0x2e, 0x2a, 0x61, 0x46, 0x4d,
+
2825 0x1e, 0x00, 0x00, 0x01, 0x00, 0x7e, 0xff, 0xa7, 0x01, 0xa6, 0x02, 0x9e,
+
2826 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x32,
+
2827 0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15,
+
2828 0x7e, 0x01, 0x27, 0xd8, 0xd9, 0x59, 0x02, 0xf7, 0x47, 0xfd, 0x94, 0x44,
+
2829 0x00, 0x01, 0x00, 0x7f, 0xff, 0xa7, 0x01, 0xa7, 0x02, 0x9e, 0x00, 0x07,
+
2830 0x00, 0x0c, 0xb3, 0x05, 0x06, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x2f, 0x33,
+
2831 0x30, 0x31, 0x45, 0x21, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x01, 0xa7,
+
2832 0xfe, 0xd8, 0xd9, 0xd8, 0x01, 0x27, 0x59, 0x44, 0x02, 0x6c, 0x47, 0x00,
+
2833 0x00, 0x01, 0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x00, 0x03,
+
2834 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
+
2835 0x21, 0x15, 0x6d, 0x01, 0x1c, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
+
2836 0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31,
+
2837 0x00, 0x00, 0x00, 0x01, 0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62,
+
2838 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
+
2839 0x53, 0x35, 0x21, 0x15, 0x45, 0x01, 0x6d, 0x01, 0x16, 0x4c, 0x4c, 0x00,
+
2840 0x00, 0x01, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62, 0x00, 0x03,
+
2841 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
+
2842 0x21, 0x15, 0x0a, 0x01, 0xe0, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
+
2843 0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62, 0x06, 0x06, 0x02, 0x33,
+
2844 0x00, 0x00, 0xff, 0xff, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62,
+
2845 0x06, 0x06, 0x02, 0x34, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
+
2846 0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x01,
+
2847 0x00, 0x22, 0xff, 0xa9, 0x01, 0xd3, 0xff, 0xf0, 0x00, 0x03, 0x00, 0x08,
+
2848 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x57, 0x35, 0x21, 0x15,
+
2849 0x22, 0x01, 0xb1, 0x57, 0x47, 0x47, 0xff, 0xff, 0x00, 0x9f, 0xff, 0x52,
+
2850 0x01, 0x37, 0x00, 0x6e, 0x06, 0x07, 0x02, 0x3e, 0x00, 0x00, 0xfd, 0xec,
+
2851 0x00, 0x02, 0x00, 0x36, 0xff, 0x52, 0x01, 0xa0, 0x00, 0x6e, 0x00, 0x13,
+
2852 0x00, 0x27, 0x00, 0x14, 0xb7, 0x15, 0x14, 0x14, 0x01, 0x00, 0xc0, 0x21,
+
2853 0x0d, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
+
2854 0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33,
+
2855 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x27, 0x3e, 0x02, 0x35, 0x34,
+
2856 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
+
2857 0x60, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d, 0x1b, 0x2d,
+
2858 0x18, 0x31, 0xad, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d,
+
2859 0x1b, 0x2d, 0x18, 0x31, 0xae, 0x25, 0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11,
+
2860 0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30, 0x26, 0x1c, 0x3f, 0x44, 0x27, 0x25,
+
2861 0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30,
+
2862 0x26, 0x1c, 0x3f, 0x44, 0x00, 0x02, 0x00, 0x4a, 0x01, 0x66, 0x01, 0xaf,
+
2863 0x02, 0x81, 0x00, 0x13, 0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x15, 0x14,
+
2864 0x14, 0x21, 0x0d, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a,
+
2865 0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x0e, 0x02, 0x15,
+
2866 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36,
+
2867 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06,
+
2868 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0xb9, 0x29, 0x12, 0x1d, 0x11,
+
2869 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0xf1, 0x29, 0x12,
+
2870 0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0x02,
+
2871 0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
+
2872 0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x25, 0x25, 0x11, 0x26, 0x22, 0x0e,
+
2873 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45,
+
2874 0x00, 0x02, 0x00, 0x4d, 0x01, 0x66, 0x01, 0xb2, 0x02, 0x81, 0x00, 0x13,
+
2875 0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x01, 0x00, 0x00, 0x15, 0x14, 0xc0,
+
2876 0x0d, 0x21, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a, 0xcc, 0x32, 0x32, 0x11,
+
2877 0x33, 0x30, 0x31, 0x41, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35,
+
2878 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e,
+
2879 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
+
2880 0x14, 0x06, 0x06, 0x01, 0x43, 0x29, 0x13, 0x1c, 0x11, 0x0f, 0x14, 0x0e,
+
2881 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0xf2, 0x29, 0x13, 0x1c, 0x11, 0x0f,
+
2882 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x01, 0x66, 0x25, 0x12,
+
2883 0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26,
+
2884 0x1b, 0x40, 0x44, 0x26, 0x25, 0x12, 0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10,
+
2885 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1b, 0x40, 0x44, 0x00, 0x00, 0x01,
+
2886 0x00, 0xae, 0x01, 0x66, 0x01, 0x46, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e,
+
2887 0xb5, 0x01, 0x0d, 0xc0, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x33,
+
2888 0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14,
+
2889 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x1d, 0x29, 0x12,
+
2890 0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x02,
+
2891 0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
+
2892 0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x00, 0x01, 0x00, 0x9f, 0x01, 0x66,
+
2893 0x01, 0x37, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0,
+
2894 0x0d, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27,
+
2895 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
+
2896 0x15, 0x14, 0x06, 0x06, 0xc9, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f,
+
2897 0x24, 0x1d, 0x1b, 0x2d, 0x18, 0x31, 0x01, 0x66, 0x25, 0x12, 0x25, 0x23,
+
2898 0x0e, 0x0b, 0x11, 0x11, 0x14, 0x0f, 0x1a, 0x24, 0x2f, 0x27, 0x1b, 0x3f,
+
2899 0x45, 0x00, 0x00, 0x02, 0x00, 0x40, 0x00, 0x38, 0x01, 0xc0, 0x01, 0x96,
+
2900 0x00, 0x06, 0x00, 0x0d, 0x00, 0x0c, 0xb3, 0x07, 0x0a, 0x03, 0x00, 0x00,
+
2901 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x77, 0x27, 0x35, 0x37, 0x17, 0x07,
+
2902 0x17, 0x17, 0x27, 0x35, 0x37, 0x17, 0x07, 0x17, 0xe1, 0xa1, 0x9c, 0x2b,
+
2903 0x78, 0x7f, 0x84, 0xa1, 0x9b, 0x2d, 0x7a, 0x81, 0x38, 0xad, 0x1a, 0x97,
+
2904 0x2d, 0x78, 0x8d, 0x2c, 0xad, 0x1a, 0x97, 0x2e, 0x77, 0x8c, 0x00, 0x02,
+
2905 0x00, 0x46, 0x00, 0x38, 0x01, 0xc6, 0x01, 0x96, 0x00, 0x06, 0x00, 0x0d,
+
2906 0x00, 0x0c, 0xb3, 0x07, 0x0b, 0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
+
2907 0x30, 0x31, 0x65, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0x05, 0x27, 0x37,
+
2908 0x27, 0x37, 0x17, 0x15, 0x01, 0x25, 0x2d, 0x7f, 0x78, 0x2b, 0x9c, 0xfe,
+
2909 0xae, 0x2e, 0x81, 0x7a, 0x2d, 0x9b, 0x38, 0x2c, 0x8d, 0x78, 0x2d, 0x97,
+
2910 0x1a, 0xad, 0x2d, 0x8c, 0x77, 0x2e, 0x97, 0x1a, 0x00, 0x01, 0x00, 0x89,
+
2911 0x00, 0x37, 0x01, 0x5c, 0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x03,
+
2912 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x65, 0x27, 0x35, 0x37, 0x17, 0x07,
+
2913 0x17, 0x01, 0x2a, 0xa1, 0x9c, 0x30, 0x76, 0x7d, 0x37, 0xad, 0x1a, 0x97,
+
2914 0x32, 0x73, 0x88, 0x00, 0x00, 0x01, 0x00, 0x8a, 0x00, 0x37, 0x01, 0x5d,
+
2915 0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x04, 0x00, 0x00, 0x2f, 0x2f,
+
2916 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0xbc, 0x32, 0x7d,
+
2917 0x76, 0x30, 0x9c, 0x37, 0x31, 0x88, 0x73, 0x32, 0x97, 0x1a, 0xff, 0xff,
+
2918 0x00, 0x82, 0x01, 0x97, 0x01, 0x72, 0x02, 0x99, 0x04, 0x26, 0x02, 0x44,
+
2919 0xb4, 0x00, 0x00, 0x06, 0x02, 0x44, 0x4c, 0x00, 0x00, 0x01, 0x00, 0xce,
+
2920 0x01, 0x97, 0x01, 0x26, 0x02, 0x99, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x07,
+
2921 0x00, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x33, 0x14, 0x0e, 0x02, 0x07,
+
2922 0x23, 0x2e, 0x03, 0xce, 0x58, 0x02, 0x06, 0x06, 0x03, 0x36, 0x03, 0x06,
+
2923 0x06, 0x02, 0x02, 0x99, 0x3c, 0x48, 0x31, 0x2d, 0x20, 0x20, 0x2d, 0x30,
+
2924 0x49, 0x00, 0xff, 0xff, 0x00, 0x6b, 0x01, 0x95, 0x01, 0x8c, 0x02, 0x9b,
+
2925 0x04, 0x26, 0x02, 0x46, 0xa4, 0x00, 0x00, 0x06, 0x02, 0x46, 0x48, 0x00,
+
2926 0x00, 0x01, 0x00, 0xc7, 0x01, 0x95, 0x01, 0x44, 0x02, 0x9b, 0x00, 0x0f,
+
2927 0x00, 0x0a, 0xb2, 0x01, 0x00, 0x09, 0x00, 0x2f, 0xcd, 0x32, 0x30, 0x31,
+
2928 0x41, 0x27, 0x3e, 0x02, 0x34, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
+
2929 0x14, 0x06, 0x06, 0x01, 0x09, 0x42, 0x0b, 0x0a, 0x03, 0x1a, 0x18, 0x18,
+
2930 0x1b, 0x0d, 0x19, 0x01, 0x95, 0x12, 0x22, 0x34, 0x29, 0x26, 0x14, 0x1e,
+
2931 0x1d, 0x1b, 0x1e, 0x17, 0x36, 0x49, 0x00, 0x02, 0x00, 0x29, 0x00, 0x17,
+
2932 0x03, 0xac, 0x02, 0x65, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c,
+
2933 0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x08, 0x08, 0x01, 0x00, 0x07,
+
2934 0x00, 0x2f, 0x33, 0x32, 0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30,
+
2935 0x31, 0x65, 0x35, 0x25, 0x25, 0x35, 0x01, 0x15, 0x05, 0x35, 0x21, 0x15,
+
2936 0x01, 0xab, 0x01, 0x9a, 0xfe, 0x66, 0x02, 0x01, 0xfc, 0x7d, 0x02, 0x57,
+
2937 0x17, 0x53, 0xd7, 0xd2, 0x52, 0xfe, 0xf9, 0x3b, 0x06, 0x47, 0x47, 0x00,
+
2938 0x00, 0x04, 0x00, 0x2d, 0xff, 0x84, 0x05, 0xaf, 0x02, 0x4e, 0x00, 0x03,
+
2939 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x29, 0x40, 0x12, 0x01, 0x00,
+
2940 0x00, 0x0c, 0x0c, 0x0d, 0x0d, 0x08, 0x03, 0x02, 0x02, 0x05, 0x05, 0x04,
+
2941 0x04, 0x09, 0x09, 0x08, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11,
+
2942 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x32, 0x30,
+
2943 0x31, 0x45, 0x27, 0x01, 0x17, 0x05, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21,
+
2944 0x15, 0x05, 0x35, 0x21, 0x15, 0x02, 0x6d, 0x3c, 0x01, 0x3c, 0x3d, 0xfc,
+
2945 0x83, 0x05, 0x82, 0xfb, 0x28, 0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x7c,
+
2946 0x1d, 0x02, 0xad, 0x1f, 0xad, 0x45, 0x45, 0xbf, 0x45, 0x45, 0xbe, 0x45,
+
2947 0x45, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3,
+
2948 0x00, 0x03, 0x00, 0x2d, 0x00, 0x15, 0x40, 0x0a, 0x25, 0x00, 0x2d, 0x0d,
+
2949 0x72, 0x1b, 0x01, 0x0f, 0x05, 0x72, 0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd,
+
2950 0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x2e, 0x02, 0x35,
+
2951 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26,
+
2952 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33,
+
2953 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0xf5, 0x40, 0x1a, 0x33,
+
2954 0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40,
+
2955 0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17,
+
2956 0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e,
+
2957 0x47, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d,
+
2958 0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f,
+
2959 0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17,
+
2960 0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xb7, 0x01, 0xcc,
+
2961 0x02, 0x6f, 0x00, 0x03, 0x00, 0x2c, 0x00, 0x19, 0x40, 0x0a, 0x24, 0x2c,
+
2962 0x00, 0x00, 0x2c, 0x1a, 0x0e, 0x02, 0x02, 0x0e, 0x00, 0x2f, 0x33, 0x2f,
+
2963 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x45, 0x23, 0x13,
+
2964 0x33, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16,
+
2965 0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
+
2966 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06,
+
2967 0x06, 0x23, 0x01, 0x01, 0x43, 0x5f, 0x40, 0x42, 0x33, 0x55, 0x3e, 0x23,
+
2968 0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
+
2969 0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
+
2970 0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x49, 0x02, 0xb8, 0xfd, 0xb1,
+
2971 0x24, 0x40, 0x57, 0x34, 0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07,
+
2972 0x06, 0x08, 0x0f, 0x0c, 0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d,
+
2973 0x2d, 0x19, 0x0c, 0x19, 0x13, 0x38, 0x26, 0x24, 0x00, 0x03, 0x00, 0x26,
+
2974 0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x31,
+
2975 0x00, 0x19, 0x40, 0x0c, 0x07, 0x03, 0x29, 0x31, 0x0d, 0x72, 0x01, 0x05,
+
2976 0x1f, 0x13, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0xce,
+
2977 0x32, 0x30, 0x31, 0x57, 0x13, 0x33, 0x03, 0x23, 0x13, 0x33, 0x03, 0x37,
+
2978 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07,
+
2979 0x07, 0x27, 0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
+
2980 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
+
2981 0xad, 0xc8, 0x27, 0xc8, 0x6d, 0xc8, 0x26, 0xc8, 0x8e, 0x33, 0x59, 0x43,
+
2982 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40, 0x09, 0x03,
+
2983 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17, 0x19, 0x2c,
+
2984 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e, 0x47, 0x02,
+
2985 0xea, 0xfd, 0x16, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53,
+
2986 0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e,
+
2987 0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10,
+
2988 0x22, 0x17, 0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xa0,
+
2989 0x01, 0xb5, 0x02, 0x14, 0x00, 0x23, 0x00, 0x33, 0x00, 0x0c, 0xb3, 0x24,
+
2990 0x20, 0x2c, 0x0e, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x27,
+
2991 0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x36,
+
2992 0x33, 0x32, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x16, 0x15, 0x14, 0x06,
+
2993 0x07, 0x17, 0x07, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x32,
+
2994 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
+
2995 0x16, 0x16, 0x6c, 0x2d, 0x37, 0x0c, 0x0e, 0x0d, 0x0e, 0x38, 0x2d, 0x38,
+
2996 0x13, 0x2d, 0x17, 0x16, 0x2b, 0x14, 0x38, 0x2d, 0x37, 0x0e, 0x0d, 0x0d,
+
2997 0x0e, 0x37, 0x2d, 0x37, 0x13, 0x2c, 0x17, 0x18, 0x2c, 0x14, 0x57, 0x1e,
+
2998 0x29, 0x15, 0x15, 0x29, 0x1e, 0x1d, 0x29, 0x15, 0x15, 0x29, 0xa0, 0x2b,
+
2999 0x38, 0x14, 0x2c, 0x16, 0x17, 0x2c, 0x14, 0x39, 0x2b, 0x38, 0x0d, 0x0d,
+
3000 0x0c, 0x0d, 0x37, 0x2b, 0x37, 0x15, 0x2c, 0x18, 0x18, 0x2c, 0x14, 0x36,
+
3001 0x2b, 0x36, 0x0d, 0x0d, 0x0e, 0x0d, 0x24, 0x1a, 0x2b, 0x19, 0x1a, 0x2a,
+
3002 0x1b, 0x1b, 0x2a, 0x1a, 0x19, 0x2b, 0x1a, 0x00, 0x00, 0x03, 0x00, 0x39,
+
3003 0xff, 0xd2, 0x01, 0xd0, 0x02, 0x8b, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x48,
+
3004 0x00, 0x42, 0x40, 0x26, 0x2c, 0x41, 0x41, 0x16, 0x23, 0x24, 0x24, 0x3b,
+
3005 0x31, 0x3f, 0x0e, 0x2d, 0x40, 0x12, 0x45, 0x08, 0x01, 0x1f, 0x17, 0x0f,
+
3006 0x16, 0x1f, 0x16, 0x7f, 0x16, 0x03, 0x16, 0x04, 0x05, 0x06, 0x06, 0x37,
+
3007 0x0d, 0x0d, 0x35, 0x00, 0x01, 0x0c, 0x00, 0x3f, 0xcd, 0x33, 0x33, 0x11,
+
3008 0x33, 0x33, 0x11, 0x33, 0x3f, 0x5d, 0xcd, 0x33, 0x12, 0x17, 0x39, 0x33,
+
3009 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x2e, 0x02,
+
3010 0x27, 0x37, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x17, 0x35, 0x2e, 0x02, 0x35,
+
3011 0x34, 0x36, 0x36, 0x37, 0x35, 0x33, 0x16, 0x14, 0x15, 0x14, 0x06, 0x07,
+
3012 0x15, 0x1e, 0x02, 0x17, 0x07, 0x26, 0x26, 0x27, 0x2e, 0x03, 0x27, 0x15,
+
3013 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x15, 0x37, 0x3e, 0x02, 0x35,
+
3014 0x34, 0x26, 0x26, 0x27, 0x27, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
+
3015 0xea, 0x23, 0x40, 0x37, 0x17, 0x2e, 0x06, 0x01, 0x04, 0x10, 0x25, 0x2b,
+
3016 0x17, 0x34, 0x46, 0x24, 0x2a, 0x48, 0x2d, 0x43, 0x02, 0x06, 0x01, 0x1f,
+
3017 0x36, 0x2f, 0x12, 0x2e, 0x07, 0x02, 0x05, 0x08, 0x13, 0x17, 0x19, 0x0e,
+
3018 0x3a, 0x49, 0x24, 0x29, 0x4b, 0x34, 0x01, 0x1d, 0x29, 0x16, 0x13, 0x29,
+
3019 0x20, 0x40, 0x1a, 0x25, 0x14, 0x13, 0x25, 0x2e, 0x3b, 0x03, 0x13, 0x22,
+
3020 0x17, 0x45, 0x03, 0x10, 0x05, 0x10, 0x18, 0x0e, 0x03, 0xcf, 0x12, 0x2d,
+
3021 0x3a, 0x26, 0x26, 0x3d, 0x28, 0x06, 0x3c, 0x01, 0x02, 0x01, 0x03, 0x0a,
+
3022 0x08, 0x22, 0x03, 0x14, 0x20, 0x16, 0x3a, 0x01, 0x10, 0x04, 0x09, 0x10,
+
3023 0x0a, 0x09, 0x02, 0xb5, 0x13, 0x2b, 0x39, 0x2b, 0x25, 0x48, 0x33, 0x07,
+
3024 0x3c, 0x80, 0x05, 0x1d, 0x28, 0x15, 0x16, 0x20, 0x1a, 0x0a, 0x63, 0x9f,
+
3025 0x03, 0x15, 0x1e, 0x12, 0x12, 0x1f, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x42,
+
3026 0x00, 0x00, 0x01, 0xc0, 0x02, 0x80, 0x00, 0x03, 0x00, 0x25, 0x00, 0x37,
+
3027 0x00, 0x3b, 0x00, 0x25, 0x40, 0x10, 0x13, 0x38, 0x38, 0x3b, 0x3b, 0x2e,
+
3028 0x0e, 0x0e, 0x37, 0x1d, 0x1d, 0x25, 0x80, 0x00, 0x03, 0x0c, 0x00, 0x3f,
+
3029 0x33, 0x1a, 0xcc, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x7c, 0x2f,
+
3030 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x21, 0x15, 0x21, 0x37, 0x22, 0x2e,
+
3031 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x35, 0x33,
+
3032 0x33, 0x15, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
+
3033 0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
+
3034 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x03, 0x21, 0x15, 0x21,
+
3035 0x5b, 0x01, 0x49, 0xfe, 0xb7, 0x7f, 0x1d, 0x36, 0x2b, 0x1a, 0x1a, 0x2c,
+
3036 0x37, 0x1d, 0x18, 0x27, 0x1e, 0x09, 0x41, 0x07, 0x07, 0x02, 0x06, 0x43,
+
3037 0x04, 0x03, 0x01, 0x0b, 0x1f, 0x26, 0x16, 0x0b, 0x20, 0x27, 0x12, 0x14,
+
3038 0x28, 0x21, 0x16, 0x23, 0x17, 0x0c, 0x17, 0x2b, 0x1e, 0x35, 0x01, 0x10,
+
3039 0xfe, 0xf0, 0x39, 0x39, 0x64, 0x18, 0x30, 0x49, 0x31, 0x31, 0x48, 0x2f,
+
3040 0x16, 0x0e, 0x19, 0x12, 0xd5, 0x07, 0x07, 0x16, 0xfe, 0x47, 0x0d, 0x1c,
+
3041 0x0d, 0x09, 0x11, 0x10, 0x09, 0x12, 0x1b, 0x0f, 0x39, 0x24, 0x3d, 0x27,
+
3042 0x29, 0x3d, 0x23, 0x13, 0x22, 0x2f, 0x1d, 0x2c, 0x40, 0x24, 0x01, 0xa1,
+
3043 0x3a, 0x00, 0x00, 0x01, 0x00, 0x1c, 0xff, 0xf4, 0x01, 0xd5, 0x02, 0x75,
+
3044 0x00, 0x37, 0x00, 0x2f, 0x40, 0x17, 0x22, 0x0e, 0x0e, 0x25, 0x0b, 0x2c,
+
3045 0x04, 0x04, 0x29, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x00, 0x1d, 0x13, 0x05,
+
3046 0x72, 0x30, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39,
+
3047 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x33, 0x11,
+
3048 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, 0x37, 0x33, 0x34,
+
3049 0x34, 0x36, 0x37, 0x23, 0x37, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17,
+
3050 0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x33, 0x07, 0x23, 0x06,
+
3051 0x06, 0x14, 0x15, 0x33, 0x07, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
+
3052 0x37, 0x17, 0x06, 0x06, 0x01, 0x41, 0x3b, 0x61, 0x42, 0x0b, 0x3c, 0x10,
+
3053 0x25, 0x01, 0x01, 0x36, 0x0f, 0x32, 0x0c, 0x30, 0x40, 0x49, 0x25, 0x2a,
+
3054 0x47, 0x1c, 0x1c, 0x09, 0x0b, 0x0d, 0x16, 0x22, 0x1c, 0x1a, 0x30, 0x2a,
+
3055 0x1e, 0x08, 0xf3, 0x19, 0xe4, 0x01, 0x01, 0xcb, 0x1a, 0xaa, 0x0a, 0x2c,
+
3056 0x42, 0x28, 0x14, 0x26, 0x22, 0x0f, 0x23, 0x1f, 0x48, 0x0c, 0x32, 0x64,
+
3057 0x48, 0x45, 0x09, 0x19, 0x1a, 0x0a, 0x45, 0x3a, 0x50, 0x32, 0x17, 0x1d,
+
3058 0x1e, 0x4c, 0x05, 0x11, 0x13, 0x10, 0x0a, 0x12, 0x22, 0x36, 0x25, 0x45,
+
3059 0x0a, 0x13, 0x18, 0x11, 0x45, 0x32, 0x44, 0x22, 0x0a, 0x14, 0x0f, 0x3c,
+
3060 0x1c, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0xff, 0x51, 0x01, 0xe4, 0x02, 0xa3,
+
3061 0x00, 0x2e, 0x00, 0x1f, 0x40, 0x0f, 0x2a, 0x0f, 0x0f, 0x27, 0x10, 0x10,
+
3062 0x00, 0x22, 0x16, 0x01, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b, 0x32,
+
3063 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
+
3064 0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13,
+
3065 0x23, 0x35, 0x33, 0x37, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x22,
+
3066 0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x07, 0x07, 0x33, 0x15,
+
3067 0x23, 0x03, 0x0e, 0x02, 0x67, 0x1a, 0x2b, 0x13, 0x2e, 0x03, 0x05, 0x07,
+
3068 0x11, 0x11, 0x12, 0x19, 0x11, 0x03, 0x16, 0x76, 0x7a, 0x07, 0x06, 0x29,
+
3069 0x44, 0x2d, 0x23, 0x3b, 0x18, 0x24, 0x06, 0x03, 0x02, 0x02, 0x0d, 0x12,
+
3070 0x16, 0x0c, 0x16, 0x22, 0x16, 0x04, 0x05, 0x77, 0x7d, 0x18, 0x06, 0x2a,
+
3071 0x3f, 0xaf, 0x14, 0x14, 0x48, 0x01, 0x0b, 0x0d, 0x09, 0x1d, 0x39, 0x28,
+
3072 0x01, 0x23, 0x44, 0x58, 0x45, 0x58, 0x2a, 0x1d, 0x1c, 0x4a, 0x06, 0x06,
+
3073 0x0c, 0x12, 0x0e, 0x07, 0x18, 0x3d, 0x38, 0x4e, 0x44, 0xfe, 0xda, 0x48,
+
3074 0x59, 0x28, 0xff, 0xff, 0x00, 0x13, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
+
3075 0x06, 0x26, 0x00, 0x42, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x9c,
+
3076 0xff, 0x74, 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x00, 0x01, 0x01, 0x92, 0x56,
+
3077 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xb9, 0x01, 0xce,
+
3078 0x02, 0xa3, 0x00, 0x03, 0x00, 0x2f, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x2b,
+
3079 0x2b, 0x04, 0x1a, 0x01, 0x0e, 0x05, 0x72, 0x24, 0x00, 0x04, 0x0d, 0x72,
+
3080 0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x30,
+
3081 0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x26, 0x26, 0x35, 0x26, 0x3e,
+
3082 0x03, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e,
+
3083 0x03, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x35, 0x23,
+
3084 0x35, 0x33, 0x15, 0x06, 0x06, 0xe2, 0x3f, 0x0e, 0x4d, 0x6e, 0x3a, 0x01,
+
3085 0x20, 0x36, 0x3f, 0x40, 0x1a, 0x2a, 0x3e, 0x2c, 0x20, 0x0d, 0x2e, 0x06,
+
3086 0x0a, 0x11, 0x1e, 0x30, 0x25, 0x16, 0x2d, 0x27, 0x1e, 0x11, 0x2a, 0x49,
+
3087 0x2e, 0x13, 0x25, 0x24, 0x10, 0x38, 0x87, 0x2d, 0x5d, 0x47, 0x02, 0xea,
+
3088 0xfd, 0x16, 0x3a, 0x50, 0x91, 0x5f, 0x50, 0x71, 0x4a, 0x2a, 0x11, 0x10,
+
3089 0x1d, 0x28, 0x1a, 0x35, 0x02, 0x15, 0x1b, 0x19, 0x11, 0x0f, 0x23, 0x38,
+
3090 0x52, 0x36, 0x53, 0x74, 0x3d, 0x08, 0x10, 0x0b, 0x8a, 0x48, 0xfa, 0x21,
+
3091 0x22, 0x00, 0x00, 0x03, 0x00, 0x0b, 0xff, 0xfc, 0x01, 0xee, 0x02, 0x74,
+
3092 0x00, 0x03, 0x00, 0x07, 0x00, 0x1d, 0x00, 0x28, 0x40, 0x13, 0x02, 0x03,
+
3093 0x03, 0x05, 0x1b, 0x13, 0x0c, 0x08, 0x09, 0x04, 0x04, 0x0b, 0x1a, 0x0c,
+
3094 0x04, 0x72, 0x1c, 0x0b, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x12, 0x39,
+
3095 0x2f, 0x39, 0x39, 0x12, 0x39, 0x39, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
+
3096 0x53, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x17, 0x07, 0x15, 0x23,
+
3097 0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
+
3098 0x33, 0x03, 0x13, 0x07, 0xc9, 0xff, 0xfe, 0x43, 0x55, 0x5e, 0x2f, 0x57,
+
3099 0x56, 0x0a, 0x06, 0x03, 0xf3, 0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3,
+
3100 0xf2, 0x67, 0x01, 0x45, 0x37, 0x37, 0x37, 0x37, 0x17, 0x36, 0xf8, 0x02,
+
3101 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02, 0x01, 0x01,
+
3102 0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x24, 0xff, 0xf1,
+
3103 0x01, 0xd8, 0x02, 0x70, 0x06, 0x06, 0x02, 0x64, 0x00, 0x00, 0x00, 0x03,
+
3104 0x00, 0x19, 0x00, 0x00, 0x01, 0xc9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07,
+
3105 0x00, 0x1b, 0x00, 0x30, 0x40, 0x16, 0x02, 0x03, 0x03, 0x01, 0x00, 0x07,
+
3106 0x06, 0x06, 0x04, 0x05, 0x00, 0x00, 0x05, 0x08, 0x09, 0x04, 0x72, 0x15,
+
3107 0x15, 0x0f, 0x08, 0x0c, 0x00, 0x3f, 0x33, 0x33, 0x2f, 0x2b, 0x12, 0x39,
+
3108 0x39, 0x2f, 0x7d, 0x2f, 0x33, 0x33, 0x18, 0x2f, 0x33, 0x11, 0x33, 0x33,
+
3109 0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x25, 0x15, 0x05, 0x35, 0x25, 0x15,
+
3110 0x01, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11, 0x32, 0x3e, 0x03, 0x35,
+
3111 0x33, 0x14, 0x0e, 0x02, 0x23, 0x19, 0x01, 0x55, 0xfe, 0xab, 0x01, 0x55,
+
3112 0xfe, 0xfc, 0x5f, 0x04, 0x04, 0x1e, 0x3a, 0x30, 0x24, 0x15, 0x47, 0x23,
+
3113 0x44, 0x62, 0x3f, 0x01, 0x6f, 0x3f, 0x78, 0x3f, 0xec, 0x3f, 0x78, 0x3f,
+
3114 0xfe, 0x8d, 0x02, 0x6f, 0x06, 0x08, 0x0a, 0x0a, 0xfd, 0xfb, 0x08, 0x14,
+
3115 0x24, 0x38, 0x27, 0x37, 0x57, 0x3a, 0x1f, 0x00, 0x00, 0x02, 0x00, 0x2e,
+
3116 0x00, 0x00, 0x01, 0xc9, 0x02, 0x9c, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x17,
+
3117 0x40, 0x09, 0x00, 0x00, 0x04, 0x19, 0x19, 0x09, 0x0f, 0x01, 0x04, 0x00,
+
3118 0x2f, 0xcd, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x39, 0x2f, 0x30, 0x31, 0x77,
+
3119 0x11, 0x33, 0x11, 0x03, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34,
+
3120 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x16, 0x15,
+
3121 0x23, 0x11, 0x34, 0x36, 0x36, 0xd6, 0x49, 0x25, 0x3f, 0x5d, 0x33, 0x4b,
+
3122 0x18, 0x3a, 0x31, 0x30, 0x39, 0x18, 0x04, 0x03, 0x53, 0x2e, 0x5b, 0x60,
+
3123 0x02, 0x3c, 0xfd, 0xc4, 0x01, 0xf3, 0x32, 0x66, 0x50, 0xfe, 0x95, 0x01,
+
3124 0x6c, 0x32, 0x48, 0x27, 0x27, 0x46, 0x31, 0xfe, 0xb2, 0x0a, 0x0a, 0x08,
+
3125 0x05, 0x01, 0x6e, 0x49, 0x66, 0x36, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00,
+
3126 0x01, 0xe9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x12, 0x00, 0x21, 0x40, 0x10,
+
3127 0x03, 0x01, 0x06, 0x12, 0x10, 0x00, 0x00, 0x04, 0x0f, 0x12, 0x0c, 0x72,
+
3128 0x07, 0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
+
3129 0x39, 0x12, 0x39, 0x33, 0x33, 0x30, 0x31, 0x53, 0x21, 0x15, 0x21, 0x13,
+
3130 0x33, 0x13, 0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x03,
+
3131 0x11, 0x23, 0x0e, 0x01, 0xdb, 0xfe, 0x25, 0x33, 0x4c, 0xdd, 0x02, 0x45,
+
3132 0x09, 0x05, 0x03, 0x40, 0xe7, 0x46, 0x01, 0x4a, 0x33, 0x01, 0x58, 0xfe,
+
3133 0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0xd8, 0xfe,
+
3134 0x28, 0x00, 0x00, 0x05, 0x00, 0x2f, 0xff, 0xf2, 0x01, 0xea, 0x02, 0x6f,
+
3135 0x00, 0x0c, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x39,
+
3136 0x40, 0x1b, 0x54, 0x48, 0x2d, 0x39, 0x2d, 0x16, 0x16, 0x29, 0x29, 0x2c,
+
3137 0x2c, 0x21, 0x21, 0x0d, 0x28, 0x0d, 0x28, 0x0c, 0x61, 0x2d, 0x0d, 0x2d,
+
3138 0x0c, 0x0c, 0x6b, 0x00, 0x04, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x3f, 0x33,
+
3139 0x11, 0x33, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x7c,
+
3140 0x2f, 0x11, 0x33, 0x18, 0x10, 0xc4, 0x32, 0x30, 0x31, 0x53, 0x33, 0x32,
+
3141 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x23, 0x17, 0x22,
+
3142 0x26, 0x26, 0x3f, 0x02, 0x35, 0x37, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15,
+
3143 0x07, 0x07, 0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06,
+
3144 0x23, 0x03, 0x33, 0x07, 0x23, 0x05, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
+
3145 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
+
3146 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
+
3147 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15,
+
3148 0x14, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x01, 0x32, 0x36,
+
3149 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x15, 0x2f, 0x52, 0x34, 0x42,
+
3150 0x20, 0x21, 0x40, 0x30, 0x17, 0x40, 0xcd, 0x1f, 0x25, 0x0e, 0x02, 0x06,
+
3151 0x01, 0x37, 0x0a, 0x01, 0x04, 0x07, 0x01, 0x04, 0x01, 0x04, 0x0e, 0x0e,
+
3152 0x0d, 0x19, 0x0f, 0x13, 0x12, 0x28, 0x16, 0x76, 0x9f, 0x08, 0x9e, 0x01,
+
3153 0x07, 0x20, 0x37, 0x16, 0x1c, 0x04, 0x06, 0x03, 0x05, 0x09, 0x0b, 0x19,
+
3154 0x11, 0x0f, 0x15, 0x0a, 0x09, 0x15, 0x14, 0x27, 0x2e, 0x17, 0x28, 0x19,
+
3155 0x20, 0x2f, 0x14, 0x1e, 0x06, 0x06, 0x07, 0x0a, 0x09, 0x11, 0x0b, 0x13,
+
3156 0x11, 0x17, 0x1d, 0x1e, 0x25, 0x10, 0x36, 0x2e, 0xfe, 0xf8, 0x20, 0x26,
+
3157 0x12, 0x12, 0x26, 0x1f, 0x10, 0x02, 0x6f, 0x2a, 0x44, 0x28, 0x2d, 0x47,
+
3158 0x2a, 0xfe, 0xc5, 0x0c, 0x1c, 0x38, 0x2d, 0x77, 0x08, 0x3d, 0x0a, 0x02,
+
3159 0x08, 0x07, 0x0f, 0x11, 0x19, 0x08, 0x73, 0x20, 0x24, 0x0e, 0x10, 0x0e,
+
3160 0x30, 0x11, 0x11, 0x01, 0x10, 0x34, 0xde, 0x18, 0x17, 0x35, 0x09, 0x03,
+
3161 0x08, 0x10, 0x0c, 0x09, 0x08, 0x08, 0x0c, 0x08, 0x09, 0x0e, 0x0e, 0x06,
+
3162 0x0d, 0x25, 0x21, 0x17, 0x20, 0x11, 0x14, 0x18, 0x29, 0x08, 0x04, 0x08,
+
3163 0x0c, 0x0b, 0x05, 0x05, 0x0d, 0x0a, 0x0b, 0x10, 0x0b, 0x0b, 0x17, 0x1c,
+
3164 0x14, 0x26, 0x32, 0x01, 0x80, 0x18, 0x2e, 0x1f, 0x1a, 0x29, 0x1a, 0xc2,
+
3165 0x00, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x6f, 0x00, 0x07,
+
3166 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x28, 0x00, 0x25, 0x40, 0x10, 0x1c, 0x1e,
+
3167 0x40, 0x08, 0x09, 0x80, 0x00, 0x01, 0x01, 0x28, 0x28, 0x11, 0x04, 0x72,
+
3168 0x10, 0x0c, 0x00, 0x3f, 0x2b, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x33, 0x1a,
+
3169 0x18, 0xde, 0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
+
3170 0x15, 0x23, 0x27, 0x21, 0x07, 0x07, 0x35, 0x21, 0x15, 0x23, 0x27, 0x21,
+
3171 0x07, 0x03, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23,
+
3172 0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
+
3173 0x23, 0x0d, 0x01, 0xe5, 0x56, 0x0e, 0xfe, 0xe0, 0x0c, 0x55, 0x01, 0xe5,
+
3174 0x54, 0x10, 0xfe, 0xdb, 0x0c, 0x27, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30,
+
3175 0x4a, 0x33, 0x7b, 0x73, 0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01,
+
3176 0xce, 0x29, 0x29, 0x01, 0x01, 0x4d, 0x29, 0x29, 0x01, 0x01, 0xfe, 0x7f,
+
3177 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b, 0xfe, 0xf2, 0x01,
+
3178 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x00, 0x04, 0x00, 0x12,
+
3179 0x00, 0x00, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07, 0x00, 0x15,
+
3180 0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x04, 0x05, 0x02, 0x03, 0x03, 0x16,
+
3181 0x14, 0x14, 0x08, 0x20, 0x09, 0x04, 0x72, 0x08, 0x0c, 0x00, 0x3f, 0x2b,
+
3182 0x32, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0xcc, 0x32, 0x30, 0x31,
+
3183 0x53, 0x35, 0x33, 0x15, 0x07, 0x35, 0x21, 0x15, 0x07, 0x11, 0x33, 0x32,
+
3184 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33, 0x32,
+
3185 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x12, 0x62, 0x62, 0x01,
+
3186 0x1a, 0xeb, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30, 0x4a, 0x33, 0x7b, 0x73,
+
3187 0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01, 0x0e, 0x49, 0x49, 0x80,
+
3188 0x48, 0x48, 0x8e, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
+
3189 0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x03,
+
3190 0x00, 0x34, 0x00, 0x00, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x1c,
+
3191 0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x14, 0x18, 0x18, 0x00, 0x1e, 0x80,
+
3192 0x09, 0x19, 0x19, 0x0c, 0x1a, 0x04, 0x72, 0x16, 0x0c, 0x00, 0x3f, 0x2b,
+
3193 0x32, 0x32, 0x11, 0x33, 0x1a, 0xde, 0xcc, 0x32, 0x11, 0x33, 0x30, 0x31,
+
3194 0x53, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35,
+
3195 0x17, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x13, 0x23, 0x03,
+
3196 0x23, 0x03, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x35, 0x83, 0x29,
+
3197 0x33, 0x18, 0x18, 0x33, 0x29, 0x84, 0x7c, 0x4b, 0x5d, 0x2b, 0x1f, 0x38,
+
3198 0x26, 0x91, 0x5e, 0x87, 0x7d, 0x01, 0x01, 0x98, 0xfe, 0x68, 0x01, 0x98,
+
3199 0x01, 0x54, 0x1a, 0x2e, 0x1e, 0x1f, 0x30, 0x1c, 0x4a, 0x21, 0x27, 0x47,
+
3200 0x30, 0x22, 0x41, 0x30, 0x09, 0xfe, 0xec, 0x01, 0x0d, 0x01, 0x23, 0x3f,
+
3201 0x3f, 0x98, 0x40, 0x40, 0x00, 0x01, 0x00, 0x24, 0xff, 0xf1, 0x01, 0xd8,
+
3202 0x02, 0x70, 0x00, 0x3d, 0x00, 0x2b, 0x40, 0x16, 0x0b, 0x20, 0x20, 0x08,
+
3203 0x23, 0x23, 0x12, 0x2f, 0x36, 0x0d, 0x72, 0x19, 0x12, 0x04, 0x72, 0x2a,
+
3204 0x3b, 0x3b, 0x01, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
+
3205 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
+
3206 0x31, 0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x23, 0x35, 0x33,
+
3207 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26,
+
3208 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x33, 0x15, 0x23,
+
3209 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x36, 0x1e, 0x02, 0x33, 0x32,
+
3210 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06,
+
3211 0x42, 0x1e, 0x29, 0x2e, 0x15, 0x06, 0x08, 0x41, 0x32, 0x03, 0x03, 0x30,
+
3212 0x52, 0x30, 0x27, 0x42, 0x1d, 0x31, 0x10, 0x29, 0x2a, 0x19, 0x26, 0x15,
+
3213 0x03, 0x04, 0x80, 0x71, 0x07, 0x05, 0x07, 0x0f, 0x0b, 0x19, 0x2f, 0x2c,
+
3214 0x2c, 0x15, 0x12, 0x23, 0x13, 0x1d, 0x1b, 0x35, 0x1c, 0x0f, 0x2c, 0x34,
+
3215 0x31, 0x15, 0x18, 0x39, 0x0a, 0x43, 0x14, 0x28, 0x3b, 0x2f, 0x12, 0x2e,
+
3216 0x1d, 0x44, 0x10, 0x1d, 0x0e, 0x38, 0x50, 0x2d, 0x1b, 0x1b, 0x3e, 0x14,
+
3217 0x1d, 0x1c, 0x32, 0x23, 0x0c, 0x1d, 0x13, 0x44, 0x1a, 0x2e, 0x13, 0x18,
+
3218 0x2c, 0x28, 0x13, 0x03, 0x0b, 0x11, 0x0d, 0x0f, 0x0f, 0x3d, 0x16, 0x16,
+
3219 0x0e, 0x11, 0x0e, 0x14, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00, 0x01, 0xe9,
+
3220 0x02, 0x6f, 0x00, 0x03, 0x00, 0x10, 0x00, 0x26, 0x40, 0x12, 0x01, 0x0f,
+
3221 0x05, 0x07, 0x0a, 0x04, 0x00, 0x00, 0x04, 0x0b, 0x08, 0x08, 0x05, 0x04,
+
3222 0x72, 0x0e, 0x04, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x2f, 0x32, 0x11,
+
3223 0x39, 0x2f, 0x12, 0x39, 0x39, 0x12, 0x39, 0x33, 0x30, 0x31, 0x53, 0x35,
+
3224 0x21, 0x15, 0x01, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33, 0x03,
+
3225 0x23, 0x03, 0x03, 0x0e, 0x01, 0xdb, 0xfe, 0x8e, 0x54, 0x44, 0x35, 0x54,
+
3226 0x1f, 0x55, 0x2c, 0x3f, 0x54, 0x25, 0x5a, 0x5e, 0x01, 0x1e, 0x2c, 0x2c,
+
3227 0xfe, 0xe2, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe, 0x93, 0x01, 0x9c,
+
3228 0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0x05, 0x00, 0x1e, 0x00, 0x00,
+
3229 0x01, 0xd8, 0x02, 0x70, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
+
3230 0x00, 0x18, 0x00, 0x35, 0x40, 0x1a, 0x07, 0x01, 0x01, 0x04, 0x02, 0x0f,
+
3231 0x09, 0x09, 0x0c, 0x0a, 0x12, 0x18, 0x15, 0x03, 0x13, 0x02, 0x0a, 0x02,
+
3232 0x0a, 0x11, 0x16, 0x13, 0x04, 0x72, 0x11, 0x0c, 0x00, 0x3f, 0x2b, 0x32,
+
3233 0x12, 0x39, 0x39, 0x2f, 0x7c, 0x2f, 0x12, 0x17, 0x39, 0x11, 0x33, 0x33,
+
3234 0x11, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x23, 0x35,
+
3235 0x3b, 0x02, 0x15, 0x23, 0x07, 0x23, 0x35, 0x3b, 0x02, 0x15, 0x23, 0x17,
+
3236 0x23, 0x11, 0x03, 0x33, 0x17, 0x37, 0x33, 0x03, 0xe8, 0x97, 0x96, 0x35,
+
3237 0x91, 0x91, 0x34, 0x97, 0x97, 0x34, 0x91, 0x91, 0x0f, 0x52, 0xbb, 0x5d,
+
3238 0x88, 0x7c, 0x59, 0xad, 0xdb, 0x3c, 0x3c, 0x76, 0x3b, 0x3b, 0x65, 0x01,
+
3239 0x23, 0x01, 0x4d, 0xfd, 0xfc, 0xfe, 0xb6, 0x00, 0x00, 0x01, 0x00, 0x26,
+
3240 0x00, 0x83, 0x01, 0xce, 0x02, 0x27, 0x00, 0x0e, 0x00, 0x1b, 0x40, 0x0f,
+
3241 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09, 0x06, 0x0d,
+
3242 0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30,
+
3243 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17,
+
3244 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b, 0x12, 0x60,
+
3245 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x83, 0x35, 0x90, 0x32, 0x4d,
+
3246 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00, 0x00, 0x01,
+
3247 0x00, 0x84, 0x00, 0x9b, 0x01, 0x6f, 0x01, 0x7e, 0x00, 0x0f, 0x00, 0x08,
+
3248 0xb1, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26,
+
3249 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
+
3250 0xf9, 0x20, 0x35, 0x20, 0x21, 0x35, 0x1f, 0x1e, 0x36, 0x22, 0x20, 0x36,
+
3251 0x9b, 0x1e, 0x34, 0x20, 0x20, 0x33, 0x1e, 0x1e, 0x33, 0x20, 0x1f, 0x34,
+
3252 0x1f, 0x00, 0x00, 0x01, 0x00, 0x33, 0xff, 0x65, 0x01, 0xb7, 0x03, 0x0c,
+
3253 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
3254 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x6f, 0x3c, 0x01, 0x48,
+
3255 0x3c, 0x9b, 0x15, 0x03, 0x92, 0x16, 0x00, 0x02, 0x00, 0x27, 0x00, 0x00,
+
3256 0x01, 0xc0, 0x01, 0xc9, 0x00, 0x15, 0x00, 0x19, 0x00, 0x14, 0xb6, 0x18,
+
3257 0x19, 0x19, 0x0b, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32, 0x7c, 0x2f, 0x33,
+
3258 0x39, 0x18, 0x2f, 0x33, 0x30, 0x31, 0x61, 0x22, 0x26, 0x26, 0x35, 0x34,
+
3259 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
+
3260 0x16, 0x33, 0x33, 0x15, 0x25, 0x27, 0x21, 0x15, 0x01, 0x11, 0x48, 0x69,
+
3261 0x39, 0x3b, 0x68, 0x45, 0xb1, 0xa1, 0x41, 0x59, 0x2d, 0x2b, 0x58, 0x44,
+
3262 0xa1, 0xfe, 0x85, 0x01, 0x01, 0x7c, 0x36, 0x66, 0x45, 0x46, 0x68, 0x3a,
+
3263 0x30, 0x2a, 0x51, 0x3d, 0x3c, 0x4f, 0x26, 0x30, 0xca, 0x30, 0x30, 0x00,
+
3264 0xff, 0xff, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb, 0x01, 0x65, 0x06, 0x06,
+
3265 0x02, 0x6d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x00, 0x68, 0x01, 0xcb,
+
3266 0x02, 0x0d, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x05, 0x04, 0x04, 0x0a,
+
3267 0x00, 0xc0, 0x01, 0x00, 0x2f, 0x1a, 0xcd, 0x33, 0x33, 0x10, 0xcd, 0x33,
+
3268 0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15,
+
3269 0x23, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8, 0xa8, 0x68, 0xb7, 0x46, 0xa8,
+
3270 0xa8, 0x46, 0xb7, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb,
+
3271 0x01, 0x65, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
3272 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x2b, 0x01, 0xa0, 0x01, 0x1f, 0x46,
+
3273 0x46, 0x00, 0x00, 0x01, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
+
3274 0x00, 0x0b, 0x00, 0x16, 0x40, 0x0a, 0x01, 0x04, 0x0a, 0x07, 0x04, 0x02,
+
3275 0x08, 0x06, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x12, 0x17, 0x39,
+
3276 0x30, 0x31, 0x65, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17,
+
3277 0x07, 0x17, 0x01, 0x7a, 0x7c, 0x7a, 0x34, 0x7b, 0x7b, 0x37, 0x79, 0x7a,
+
3278 0x39, 0x7f, 0x7c, 0x90, 0x82, 0x7e, 0x34, 0x80, 0x82, 0x36, 0x80, 0x7f,
+
3279 0x33, 0x83, 0x83, 0x00, 0x00, 0x03, 0x00, 0x44, 0x00, 0x64, 0x01, 0xb2,
+
3280 0x02, 0x0e, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x17, 0x40, 0x09,
+
3281 0x10, 0x16, 0x01, 0x80, 0x0a, 0x04, 0x04, 0x00, 0x01, 0x00, 0x2f, 0x33,
+
3282 0x33, 0x2f, 0x33, 0x1a, 0x10, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
+
3283 0x15, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
3284 0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
3285 0x06, 0x44, 0x01, 0x6e, 0xb3, 0x14, 0x1c, 0x1d, 0x13, 0x15, 0x1c, 0x1c,
+
3286 0x14, 0x14, 0x1e, 0x1f, 0x13, 0x13, 0x1d, 0x1c, 0x01, 0x13, 0x4e, 0x4e,
+
3287 0x99, 0x1c, 0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0xfe, 0xb8, 0x1c,
+
3288 0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x2c,
+
3289 0x00, 0xb1, 0x01, 0xca, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e,
+
3290 0xb4, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33,
+
3291 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2c, 0x01,
+
3292 0x9e, 0xfe, 0x62, 0x01, 0x9e, 0x01, 0x81, 0x46, 0x46, 0xd0, 0x46, 0x46,
+
3293 0x00, 0x03, 0x00, 0x2c, 0x00, 0x1c, 0x01, 0xca, 0x02, 0x5d, 0x00, 0x03,
+
3294 0x00, 0x07, 0x00, 0x0b, 0x00, 0x21, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x08,
+
3295 0x08, 0x09, 0x09, 0x04, 0x01, 0x00, 0x00, 0x05, 0x05, 0x04, 0x00, 0x2f,
+
3296 0x33, 0x11, 0x33, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f,
+
3297 0x33, 0x30, 0x31, 0x41, 0x17, 0x01, 0x27, 0x03, 0x35, 0x21, 0x15, 0x05,
+
3298 0x35, 0x21, 0x15, 0x01, 0x80, 0x31, 0xfe, 0xc4, 0x31, 0x18, 0x01, 0x9e,
+
3299 0xfe, 0x62, 0x01, 0x9e, 0x02, 0x5d, 0x1d, 0xfd, 0xdc, 0x1b, 0x01, 0x4a,
+
3300 0x46, 0x46, 0xd0, 0x46, 0x46, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x2b,
+
3301 0x01, 0xd4, 0x02, 0x3c, 0x00, 0x06, 0x00, 0x12, 0xb7, 0x06, 0x02, 0x05,
+
3302 0x03, 0x03, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39,
+
3303 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x27, 0x01, 0x52,
+
3304 0xfe, 0xb0, 0x01, 0xab, 0x2b, 0x57, 0xbe, 0xaa, 0x52, 0xe1, 0x34, 0x00,
+
3305 0x00, 0x01, 0x00, 0x22, 0x00, 0x2b, 0x01, 0xcf, 0x02, 0x3c, 0x00, 0x06,
+
3306 0x00, 0x12, 0xb7, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x06, 0x00, 0x00,
+
3307 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25,
+
3308 0x15, 0x05, 0x05, 0x01, 0xcf, 0xfe, 0x53, 0x01, 0xaa, 0xfe, 0xb0, 0x01,
+
3309 0x53, 0x2b, 0xfc, 0x34, 0xe1, 0x52, 0xaa, 0xbd, 0x00, 0x02, 0x00, 0x1f,
+
3310 0x00, 0x13, 0x01, 0xcb, 0x02, 0x25, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b,
+
3311 0x40, 0x0c, 0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x01, 0x00, 0x80,
+
3312 0x09, 0x08, 0x00, 0x2f, 0x33, 0x1a, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x17,
+
3313 0x39, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x03, 0x21,
+
3314 0x35, 0x21, 0x1f, 0x01, 0x50, 0xfe, 0xb0, 0x01, 0xac, 0x0c, 0xfe, 0x61,
+
3315 0x01, 0x9f, 0x76, 0x4d, 0x91, 0x80, 0x51, 0xb6, 0x33, 0xfe, 0xd7, 0x45,
+
3316 0x00, 0x02, 0x00, 0x22, 0x00, 0x13, 0x01, 0xcd, 0x02, 0x25, 0x00, 0x06,
+
3317 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03,
+
3318 0x03, 0x06, 0x00, 0x80, 0x08, 0x07, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32,
+
3319 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15,
+
3320 0x0d, 0x02, 0x35, 0x21, 0x15, 0x01, 0xcd, 0xfe, 0x55, 0x01, 0xab, 0xfe,
+
3321 0xb0, 0x01, 0x50, 0xfe, 0x60, 0x01, 0xa0, 0x76, 0xc6, 0x33, 0xb6, 0x51,
+
3322 0x80, 0x91, 0xb0, 0x45, 0x45, 0x00, 0x00, 0x02, 0x00, 0x2b, 0x00, 0x0c,
+
3323 0x01, 0xcb, 0x02, 0x40, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
+
3324 0x07, 0x05, 0x04, 0x04, 0x01, 0x0c, 0x0d, 0x0d, 0x00, 0xc0, 0x0a, 0x01,
+
3325 0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x32, 0x2f, 0x33, 0x11, 0x33, 0x10, 0xcd,
+
3326 0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33,
+
3327 0x15, 0x23, 0x15, 0x07, 0x35, 0x21, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8,
+
3328 0xa8, 0xf7, 0x01, 0x9f, 0x9a, 0xb8, 0x46, 0xa8, 0xa8, 0x46, 0xb8, 0x8e,
+
3329 0x49, 0x49, 0xff, 0xff, 0x00, 0x3f, 0x00, 0xae, 0x01, 0xd0, 0x01, 0xd1,
+
3330 0x06, 0x26, 0x02, 0x78, 0x00, 0x54, 0x02, 0x06, 0x02, 0x78, 0x00, 0xaa,
+
3331 0x00, 0x01, 0x00, 0x3f, 0x01, 0x04, 0x01, 0xd0, 0x01, 0x7d, 0x00, 0x19,
+
3332 0x00, 0x1c, 0x40, 0x0c, 0x16, 0x15, 0x15, 0x05, 0x0d, 0x80, 0x09, 0x08,
+
3333 0x08, 0x12, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x32, 0x11, 0x33, 0x1a, 0xcd,
+
3334 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x22, 0x2e, 0x02, 0x23, 0x22,
+
3335 0x06, 0x07, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36,
+
3336 0x37, 0x17, 0x0e, 0x02, 0x01, 0x5b, 0x1a, 0x28, 0x21, 0x20, 0x14, 0x18,
+
3337 0x24, 0x11, 0x38, 0x0c, 0x24, 0x31, 0x1f, 0x1a, 0x26, 0x21, 0x21, 0x14,
+
3338 0x16, 0x20, 0x12, 0x33, 0x11, 0x24, 0x28, 0x01, 0x04, 0x10, 0x16, 0x10,
+
3339 0x14, 0x1a, 0x21, 0x17, 0x24, 0x15, 0x10, 0x16, 0x10, 0x17, 0x1b, 0x28,
+
3340 0x1b, 0x22, 0x10, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x9c, 0x01, 0xa1,
+
3341 0x01, 0x61, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x02, 0x00, 0x03, 0x00, 0x2f,
+
3342 0xcc, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23, 0x35, 0x21, 0x15, 0x01, 0x54,
+
3343 0xfc, 0x01, 0x49, 0x9c, 0x7c, 0x49, 0xc5, 0x00, 0x00, 0x01, 0x00, 0x56,
+
3344 0x01, 0x53, 0x01, 0x99, 0x02, 0x6f, 0x00, 0x06, 0x00, 0x17, 0x40, 0x0a,
+
3345 0x06, 0x00, 0x02, 0x02, 0x72, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f,
+
3346 0x32, 0x32, 0x11, 0x33, 0x2b, 0x12, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37,
+
3347 0x33, 0x17, 0x07, 0x27, 0x94, 0x3e, 0x99, 0x21, 0x89, 0x40, 0x5d, 0x01,
+
3348 0x53, 0x1e, 0xfe, 0xfd, 0x1f, 0xa8, 0x00, 0x03, 0x00, 0x0c, 0x00, 0xac,
+
3349 0x01, 0xea, 0x01, 0xaf, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x27,
+
3350 0x40, 0x12, 0x2f, 0x18, 0x18, 0x07, 0x33, 0x1c, 0x15, 0x04, 0x0a, 0x1f,
+
3351 0x12, 0x12, 0x0a, 0x37, 0x04, 0x04, 0x27, 0x0a, 0x00, 0x2f, 0x33, 0x33,
+
3352 0x11, 0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x12, 0x17, 0x39, 0x33, 0x11,
+
3353 0x33, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06,
+
3354 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
+
3355 0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x05, 0x26, 0x26, 0x23, 0x22,
+
3356 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x34,
+
3357 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x33, 0x32, 0x36,
+
3358 0x36, 0x01, 0xea, 0x1f, 0x37, 0x24, 0x23, 0x3a, 0x19, 0x19, 0x39, 0x21,
+
3359 0x23, 0x37, 0x21, 0x20, 0x38, 0x23, 0x22, 0x3b, 0x18, 0x18, 0x38, 0x25,
+
3360 0x23, 0x37, 0x1f, 0xfe, 0xec, 0x12, 0x25, 0x15, 0x12, 0x1a, 0x0e, 0x0e,
+
3361 0x1a, 0x12, 0x11, 0x1a, 0x16, 0xdc, 0x0f, 0x19, 0x11, 0x0f, 0x1b, 0x17,
+
3362 0x0d, 0x0c, 0x19, 0x1a, 0x0e, 0x12, 0x1a, 0x0e, 0x01, 0x2d, 0x24, 0x3a,
+
3363 0x23, 0x24, 0x26, 0x24, 0x25, 0x21, 0x3a, 0x26, 0x25, 0x3a, 0x22, 0x20,
+
3364 0x29, 0x25, 0x24, 0x20, 0x3b, 0x26, 0x23, 0x1c, 0x10, 0x1c, 0x13, 0x11,
+
3365 0x1d, 0x10, 0x0f, 0x1c, 0x13, 0x12, 0x1d, 0x0f, 0x0d, 0x1c, 0x15, 0x15,
+
3366 0x1d, 0x0e, 0x11, 0x1d, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x68, 0x01, 0xe8,
+
3367 0x02, 0x25, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09,
+
3368 0x03, 0x02, 0x02, 0x22, 0x0e, 0x01, 0x00, 0x18, 0x04, 0x00, 0x2f, 0x33,
+
3369 0x33, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27, 0x01,
+
3370 0x17, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
+
3371 0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
+
3372 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x2f, 0x21, 0x01,
+
3373 0xba, 0x20, 0xee, 0x2d, 0x4f, 0x3d, 0x22, 0x22, 0x3d, 0x4f, 0x2d, 0x2d,
+
3374 0x50, 0x3d, 0x23, 0x23, 0x3d, 0x50, 0x2d, 0x21, 0x39, 0x2a, 0x19, 0x19,
+
3375 0x2a, 0x39, 0x21, 0x20, 0x39, 0x2a, 0x18, 0x18, 0x2a, 0x39, 0x68, 0x24,
+
3376 0x01, 0x99, 0x24, 0xfe, 0x69, 0x22, 0x3d, 0x50, 0x2d, 0x2d, 0x50, 0x3c,
+
3377 0x22, 0x22, 0x3c, 0x50, 0x2d, 0x2d, 0x50, 0x3d, 0x22, 0x3f, 0x19, 0x2b,
+
3378 0x39, 0x20, 0x20, 0x38, 0x2a, 0x19, 0x19, 0x2a, 0x38, 0x20, 0x20, 0x39,
+
3379 0x2b, 0x19, 0x00, 0x01, 0x00, 0x42, 0xff, 0x10, 0x01, 0xb6, 0x02, 0xf8,
+
3380 0x00, 0x1f, 0x00, 0x0c, 0xb3, 0x17, 0x10, 0x07, 0x00, 0x00, 0x2f, 0x32,
+
3381 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33,
+
3382 0x32, 0x36, 0x36, 0x35, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
+
3383 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06,
+
3384 0x8e, 0x15, 0x25, 0x12, 0x0f, 0x20, 0x11, 0x19, 0x24, 0x13, 0x25, 0x46,
+
3385 0x32, 0x16, 0x23, 0x0e, 0x0e, 0x21, 0x0f, 0x19, 0x24, 0x13, 0x26, 0x46,
+
3386 0xf0, 0x07, 0x08, 0x48, 0x06, 0x08, 0x17, 0x33, 0x28, 0x02, 0x73, 0x40,
+
3387 0x52, 0x28, 0x08, 0x06, 0x48, 0x06, 0x07, 0x16, 0x35, 0x30, 0xfd, 0x8f,
+
3388 0x3d, 0x50, 0x26, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x01, 0xe7,
+
3389 0x02, 0xa3, 0x00, 0x29, 0x00, 0x1f, 0x40, 0x0f, 0x00, 0x16, 0x01, 0x72,
+
3390 0x09, 0x22, 0x22, 0x1e, 0x1e, 0x21, 0x21, 0x0c, 0x0b, 0x12, 0x72, 0x00,
+
3391 0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x32, 0x30,
+
3392 0x31, 0x53, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x15, 0x23,
+
3393 0x35, 0x33, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
+
3394 0x15, 0x14, 0x06, 0x06, 0x07, 0x33, 0x15, 0x23, 0x35, 0x3e, 0x02, 0x35,
+
3395 0x34, 0x26, 0x26, 0xff, 0x2f, 0x44, 0x25, 0x12, 0x21, 0x2b, 0x19, 0xbd,
+
3396 0x70, 0x1b, 0x2e, 0x21, 0x13, 0x39, 0x69, 0x49, 0x46, 0x68, 0x3a, 0x1f,
+
3397 0x38, 0x27, 0x71, 0xbe, 0x29, 0x35, 0x1a, 0x23, 0x43, 0x02, 0x50, 0x37,
+
3398 0x6a, 0x4f, 0x2e, 0x52, 0x45, 0x32, 0x10, 0x59, 0x4d, 0x15, 0x38, 0x4a,
+
3399 0x57, 0x32, 0x66, 0x8a, 0x46, 0x45, 0x8a, 0x68, 0x42, 0x6e, 0x53, 0x1c,
+
3400 0x4d, 0x59, 0x17, 0x4c, 0x67, 0x3d, 0x50, 0x6a, 0x36, 0x00, 0x00, 0x02,
+
3401 0x00, 0x1d, 0x00, 0x01, 0x01, 0xd6, 0x02, 0x9c, 0x00, 0x05, 0x00, 0x09,
+
3402 0x00, 0x19, 0x40, 0x0c, 0x04, 0x01, 0x09, 0x09, 0x07, 0x00, 0x03, 0x12,
+
3403 0x72, 0x00, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39, 0x32, 0x11, 0x33,
+
3404 0x33, 0x30, 0x31, 0x41, 0x13, 0x15, 0x21, 0x35, 0x13, 0x13, 0x03, 0x31,
+
3405 0x03, 0x01, 0x2f, 0xa7, 0xfe, 0x47, 0xa9, 0xb9, 0x84, 0x87, 0x02, 0x9c,
+
3406 0xfd, 0x98, 0x33, 0x34, 0x02, 0x67, 0xfd, 0xab, 0x02, 0x0f, 0xfd, 0xf1,
+
3407 0x00, 0x01, 0x00, 0x32, 0xff, 0x42, 0x01, 0xc4, 0x02, 0x6f, 0x00, 0x0b,
+
3408 0x00, 0x10, 0xb6, 0x08, 0x00, 0x0a, 0x01, 0x02, 0x72, 0x00, 0x00, 0x2f,
+
3409 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x14, 0x06, 0x06,
+
3410 0x07, 0x11, 0x23, 0x11, 0x23, 0x11, 0x32, 0x01, 0x92, 0x03, 0x02, 0x01,
+
3411 0x56, 0xdf, 0xbe, 0x03, 0x2d, 0x05, 0x07, 0x08, 0x06, 0xfc, 0xed, 0x02,
+
3412 0xe8, 0xfd, 0x18, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0x55, 0x01, 0xd4,
+
3413 0x02, 0x9c, 0x00, 0x0d, 0x00, 0x1d, 0x40, 0x0c, 0x08, 0x03, 0x07, 0x07,
+
3414 0x09, 0x02, 0x04, 0x0a, 0x01, 0x0b, 0x0b, 0x00, 0x00, 0x2f, 0x32, 0x11,
+
3415 0x33, 0x33, 0x2f, 0x39, 0x39, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x57,
+
3416 0x35, 0x13, 0x03, 0x35, 0x21, 0x15, 0x21, 0x37, 0x13, 0x03, 0x27, 0x21,
+
3417 0x15, 0x20, 0xc5, 0xc3, 0x01, 0xad, 0xfe, 0x96, 0x17, 0xbf, 0xc7, 0x16,
+
3418 0x01, 0x76, 0xab, 0x3d, 0x01, 0x67, 0x01, 0x62, 0x41, 0x46, 0x08, 0xfe,
+
3419 0x9d, 0xfe, 0x99, 0x07, 0x46, 0x00, 0x00, 0x01, 0x00, 0x0b, 0xff, 0xf9,
+
3420 0x01, 0xeb, 0x02, 0xa3, 0x00, 0x08, 0x00, 0x10, 0xb6, 0x03, 0x02, 0x02,
+
3421 0x06, 0x00, 0x13, 0x72, 0x00, 0x2b, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
3422 0x57, 0x03, 0x23, 0x35, 0x33, 0x17, 0x13, 0x33, 0x03, 0xc9, 0x67, 0x57,
+
3423 0x86, 0x55, 0xbc, 0x49, 0xe4, 0x07, 0x01, 0x1b, 0x41, 0xee, 0x02, 0x3c,
+
3424 0xfd, 0x56, 0x00, 0x01, 0x00, 0x15, 0xff, 0x5d, 0x01, 0xee, 0x01, 0xcc,
+
3425 0x00, 0x32, 0x00, 0x1c, 0x40, 0x0e, 0x32, 0x2d, 0x0e, 0x0e, 0x29, 0x0b,
+
3426 0x72, 0x19, 0x21, 0x0b, 0x13, 0x07, 0x06, 0x72, 0x00, 0x2b, 0x32, 0x3f,
+
3427 0x33, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x57, 0x34, 0x3e, 0x03,
+
3428 0x35, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35,
+
3429 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x17,
+
3430 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26,
+
3431 0x26, 0x27, 0x14, 0x14, 0x06, 0x06, 0x15, 0x15, 0x04, 0x05, 0x06, 0x04,
+
3432 0x51, 0x0e, 0x17, 0x1f, 0x12, 0x1d, 0x28, 0x14, 0x4f, 0x08, 0x10, 0x0c,
+
3433 0x0c, 0x1b, 0x06, 0x06, 0x20, 0x14, 0x2d, 0x1a, 0x13, 0x22, 0x16, 0x04,
+
3434 0x0a, 0x25, 0x2d, 0x18, 0x16, 0x2c, 0x22, 0x0a, 0x01, 0x01, 0xa3, 0x11,
+
3435 0x40, 0x52, 0x58, 0x52, 0x21, 0x01, 0x01, 0xfe, 0xed, 0x26, 0x33, 0x1d,
+
3436 0x0d, 0x21, 0x3c, 0x29, 0x01, 0x10, 0xfe, 0xab, 0x14, 0x1b, 0x0d, 0x16,
+
3437 0x0c, 0x0d, 0x3c, 0x1d, 0x1b, 0x13, 0x1f, 0x13, 0x17, 0x1e, 0x10, 0x0e,
+
3438 0x1d, 0x16, 0x19, 0x38, 0x38, 0x37, 0x1a, 0x00, 0x00, 0x02, 0x00, 0x1a,
+
3439 0xff, 0xf5, 0x01, 0xda, 0x02, 0x95, 0x00, 0x24, 0x00, 0x38, 0x00, 0x17,
+
3440 0x40, 0x0c, 0x14, 0x1b, 0x01, 0x72, 0x2f, 0x09, 0x06, 0x72, 0x25, 0x00,
+
3441 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57,
+
3442 0x22, 0x26, 0x26, 0x27, 0x26, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
+
3443 0x36, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36,
+
3444 0x33, 0x32, 0x16, 0x16, 0x17, 0x16, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02,
+
3445 0x37, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x17, 0x1e, 0x03, 0xe0, 0x3b,
+
3446 0x52, 0x2d, 0x06, 0x06, 0x14, 0x32, 0x55, 0x3b, 0x20, 0x33, 0x2c, 0x10,
+
3447 0x02, 0x03, 0x01, 0x05, 0x21, 0x3e, 0x32, 0x1b, 0x41, 0x19, 0x08, 0x1e,
+
3448 0x41, 0x1e, 0x4d, 0x63, 0x35, 0x08, 0x06, 0x08, 0x1e, 0x3a, 0x5b, 0x3d,
+
3449 0x28, 0x38, 0x24, 0x14, 0x03, 0x0b, 0x19, 0x1f, 0x21, 0x13, 0x29, 0x3a,
+
3450 0x22, 0x0c, 0x04, 0x03, 0x12, 0x1b, 0x24, 0x0b, 0x2f, 0x53, 0x34, 0x31,
+
3451 0x63, 0x52, 0x32, 0x12, 0x22, 0x1a, 0x0d, 0x1a, 0x0c, 0x32, 0x4f, 0x2c,
+
3452 0x0e, 0x0e, 0x43, 0x0e, 0x0b, 0x3d, 0x6f, 0x4b, 0x37, 0x76, 0x6e, 0x59,
+
3453 0x35, 0x40, 0x2c, 0x49, 0x57, 0x2c, 0x17, 0x22, 0x15, 0x0a, 0x29, 0x42,
+
3454 0x4d, 0x25, 0x1c, 0x2c, 0x1d, 0x0e, 0x00, 0x05, 0x00, 0x19, 0xff, 0xf6,
+
3455 0x01, 0xe3, 0x02, 0x7a, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33,
+
3456 0x00, 0x44, 0x00, 0x25, 0x40, 0x12, 0x34, 0x24, 0x24, 0x3d, 0x01, 0x01,
+
3457 0x2c, 0x05, 0x72, 0x1c, 0x0c, 0x0c, 0x14, 0x03, 0x03, 0x04, 0x0d, 0x72,
+
3458 0x00, 0x2b, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x2f, 0x32,
+
3459 0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x01, 0x33, 0x01, 0x05, 0x22, 0x26,
+
3460 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
+
3461 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
+
3462 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
+
3463 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
+
3464 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
+
3465 0x16, 0x2a, 0x01, 0x5b, 0x42, 0xfe, 0xa2, 0x01, 0x09, 0x1f, 0x34, 0x20,
+
3466 0x20, 0x34, 0x1f, 0x1f, 0x34, 0x1e, 0x1e, 0x34, 0x1e, 0x0d, 0x16, 0x0d,
+
3467 0x0c, 0x16, 0x10, 0x0d, 0x16, 0x0e, 0x0e, 0x18, 0xdb, 0x1e, 0x34, 0x20,
+
3468 0x20, 0x34, 0x1e, 0x20, 0x33, 0x20, 0x1e, 0x34, 0x21, 0x0d, 0x15, 0x0d,
+
3469 0x08, 0x0d, 0x12, 0x09, 0x0c, 0x15, 0x0e, 0x0e, 0x15, 0x02, 0x6f, 0xfd,
+
3470 0x91, 0x0a, 0x22, 0x3c, 0x25, 0x25, 0x3b, 0x23, 0x24, 0x3b, 0x25, 0x24,
+
3471 0x3c, 0x22, 0x38, 0x11, 0x21, 0x18, 0x15, 0x22, 0x14, 0x10, 0x20, 0x1a,
+
3472 0x19, 0x22, 0x10, 0x01, 0x45, 0x22, 0x3c, 0x26, 0x25, 0x3b, 0x23, 0x23,
+
3473 0x3c, 0x25, 0x27, 0x3b, 0x21, 0x3a, 0x0f, 0x21, 0x1a, 0x13, 0x1c, 0x12,
+
3474 0x08, 0x0f, 0x20, 0x1a, 0x1a, 0x20, 0x10, 0x00, 0x00, 0x07, 0x00, 0x14,
+
3475 0xff, 0xf5, 0x01, 0xe0, 0x02, 0x79, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23,
+
3476 0x00, 0x33, 0x00, 0x43, 0x00, 0x53, 0x00, 0x63, 0x00, 0x35, 0x40, 0x1b,
+
3477 0x54, 0x44, 0x44, 0x03, 0x02, 0x02, 0x5c, 0x4c, 0x05, 0x72, 0x3c, 0x2c,
+
3478 0x2c, 0x34, 0x24, 0x0d, 0x72, 0x01, 0x00, 0x00, 0x1c, 0x0c, 0x0c, 0x14,
+
3479 0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33,
+
3480 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x32, 0x2f,
+
3481 0x33, 0x30, 0x31, 0x77, 0x35, 0x01, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35,
+
3482 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
+
3483 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
+
3484 0x14, 0x16, 0x16, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
+
3485 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
+
3486 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03,
+
3487 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15,
+
3488 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
+
3489 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x14, 0x01, 0xcc, 0xfe, 0xa1,
+
3490 0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
+
3491 0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xfe,
+
3492 0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1d, 0x2f, 0x1c, 0x1c, 0x2f, 0x1d,
+
3493 0x0b, 0x13, 0x0c, 0x0c, 0x14, 0x0c, 0x0a, 0x14, 0x0c, 0x0d, 0x14, 0xe9,
+
3494 0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
+
3495 0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xe1,
+
3496 0x3b, 0x01, 0x01, 0x3c, 0xfe, 0x14, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20,
+
3497 0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17, 0x17, 0x1c,
+
3498 0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x38, 0x20, 0x37, 0x23, 0x22,
+
3499 0x37, 0x20, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17,
+
3500 0x17, 0x1c, 0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x01, 0x59, 0x20,
+
3501 0x37, 0x23, 0x22, 0x37, 0x20, 0x21, 0x37, 0x22, 0x23, 0x37, 0x1f, 0x38,
+
3502 0x0d, 0x1d, 0x17, 0x17, 0x1d, 0x0e, 0x0d, 0x1c, 0x18, 0x18, 0x1d, 0x0d,
+
3503 0x00, 0x03, 0x00, 0x25, 0x00, 0x5f, 0x01, 0xce, 0x02, 0x09, 0x00, 0x13,
+
3504 0x00, 0x27, 0x00, 0x33, 0x00, 0x1a, 0x40, 0x0d, 0x33, 0x32, 0x29, 0x2c,
+
3505 0x2f, 0x2d, 0x06, 0x0a, 0x14, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
+
3506 0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
+
3507 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
+
3508 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02,
+
3509 0x15, 0x14, 0x1e, 0x02, 0x37, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
+
3510 0x33, 0x15, 0x23, 0x15, 0xf9, 0x2c, 0x4d, 0x3b, 0x20, 0x20, 0x3b, 0x4d,
+
3511 0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x22, 0x3c, 0x2e,
+
3512 0x1a, 0x1a, 0x2e, 0x3c, 0x22, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2e, 0x3c,
+
3513 0x0b, 0x6d, 0x6d, 0x31, 0x6a, 0x6a, 0x5f, 0x21, 0x3b, 0x4d, 0x2c, 0x2c,
+
3514 0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x2f,
+
3515 0x1a, 0x2e, 0x3d, 0x21, 0x22, 0x3b, 0x2e, 0x1a, 0x1a, 0x2e, 0x3b, 0x22,
+
3516 0x21, 0x3d, 0x2e, 0x1a, 0x1e, 0x73, 0x30, 0x69, 0x69, 0x30, 0x73, 0x00,
+
3517 0xff, 0xff, 0x00, 0x3f, 0x01, 0xcc, 0x01, 0xd0, 0x02, 0x45, 0x06, 0x07,
+
3518 0x02, 0x78, 0x00, 0x00, 0x00, 0xc8, 0xff, 0xff, 0x00, 0x58, 0x01, 0x77,
+
3519 0x01, 0x9c, 0x02, 0x93, 0x04, 0x06, 0x02, 0x7a, 0x02, 0x24, 0x00, 0x01,
+
3520 0x00, 0x30, 0x00, 0x05, 0x01, 0xc4, 0x02, 0x50, 0x00, 0x09, 0x00, 0x1d,
+
3521 0x40, 0x0c, 0x09, 0x06, 0x07, 0x07, 0x03, 0x02, 0x02, 0x04, 0x08, 0x01,
+
3522 0x01, 0x04, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
+
3523 0x11, 0x33, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x17,
+
3524 0x07, 0x27, 0x11, 0xd3, 0x6b, 0x38, 0xbe, 0x22, 0xb4, 0x3c, 0x64, 0x05,
+
3525 0x01, 0xb6, 0x86, 0x2f, 0xec, 0xee, 0x2d, 0x85, 0xfe, 0x4b, 0x00, 0x01,
+
3526 0x00, 0x0f, 0x00, 0x70, 0x01, 0xdb, 0x02, 0x37, 0x00, 0x09, 0x00, 0x16,
+
3527 0x40, 0x0c, 0x00, 0x07, 0x06, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
+
3528 0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x01,
+
3529 0x07, 0x27, 0x25, 0x17, 0x03, 0x27, 0x37, 0x01, 0x0f, 0x01, 0x37, 0xaa,
+
3530 0x07, 0x01, 0x2d, 0x19, 0x29, 0x4b, 0x17, 0xfe, 0xcb, 0xaa, 0x01, 0x37,
+
3531 0x13, 0x48, 0x21, 0x18, 0xfe, 0xd8, 0x0b, 0xa5, 0xfe, 0xc9, 0x00, 0x01,
+
3532 0x00, 0x0f, 0x00, 0x5e, 0x01, 0xdb, 0x01, 0xf2, 0x00, 0x09, 0x00, 0x1b,
+
3533 0x40, 0x0b, 0x06, 0x07, 0x07, 0x09, 0x03, 0x02, 0x02, 0x04, 0x00, 0x05,
+
3534 0x09, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11,
+
3535 0x33, 0x30, 0x31, 0x53, 0x21, 0x27, 0x37, 0x17, 0x15, 0x07, 0x27, 0x37,
+
3536 0x21, 0x0f, 0x01, 0x37, 0x86, 0x2e, 0xed, 0xee, 0x2d, 0x85, 0xfe, 0xca,
+
3537 0x01, 0x4f, 0x6c, 0x37, 0xbd, 0x23, 0xb4, 0x3c, 0x65, 0x00, 0x00, 0x01,
+
3538 0x00, 0x0f, 0x00, 0x20, 0x01, 0xdb, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
+
3539 0x40, 0x0c, 0x00, 0x03, 0x04, 0x07, 0x08, 0x09, 0x02, 0x05, 0x08, 0x01,
+
3540 0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37,
+
3541 0x01, 0x27, 0x37, 0x13, 0x07, 0x25, 0x37, 0x17, 0x0f, 0x3a, 0x01, 0x35,
+
3542 0x17, 0x4b, 0x29, 0x19, 0xfe, 0xd3, 0x07, 0xaa, 0x01, 0xad, 0x3a, 0xfe,
+
3543 0xc9, 0xa5, 0x0b, 0xfe, 0xd8, 0x18, 0x21, 0x48, 0x13, 0x00, 0x00, 0x01,
+
3544 0x00, 0x30, 0x00, 0x12, 0x01, 0xc4, 0x02, 0x5d, 0x00, 0x09, 0x00, 0x1d,
+
3545 0x40, 0x0c, 0x02, 0x09, 0x09, 0x05, 0x07, 0x08, 0x08, 0x04, 0x03, 0x03,
+
3546 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11,
+
3547 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x37, 0x17, 0x07, 0x23,
+
3548 0x27, 0x37, 0x17, 0xd3, 0x51, 0x64, 0x3c, 0xb4, 0x22, 0xbe, 0x38, 0x6b,
+
3549 0x02, 0x5d, 0xfe, 0x4b, 0x85, 0x2d, 0xee, 0xec, 0x2f, 0x86, 0x00, 0x01,
+
3550 0x00, 0x0d, 0x00, 0x20, 0x01, 0xd9, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
+
3551 0x40, 0x0c, 0x00, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
+
3552 0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x01,
+
3553 0x37, 0x17, 0x05, 0x27, 0x13, 0x17, 0x07, 0x01, 0x01, 0xd9, 0xfe, 0xc9,
+
3554 0xaa, 0x07, 0xfe, 0xd3, 0x19, 0x29, 0x4b, 0x17, 0x01, 0x35, 0x01, 0xad,
+
3555 0xfe, 0xc9, 0x13, 0x48, 0x21, 0x18, 0x01, 0x28, 0x0b, 0xa5, 0x01, 0x37,
+
3556 0x00, 0x01, 0x00, 0x15, 0x00, 0x5e, 0x01, 0xe1, 0x01, 0xf2, 0x00, 0x09,
+
3557 0x00, 0x1b, 0x40, 0x0b, 0x04, 0x03, 0x03, 0x01, 0x07, 0x08, 0x08, 0x06,
+
3558 0x00, 0x05, 0x01, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11,
+
3559 0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x21, 0x17, 0x07, 0x27, 0x35,
+
3560 0x37, 0x17, 0x07, 0x01, 0xe1, 0xfe, 0xca, 0x85, 0x2d, 0xee, 0xed, 0x2e,
+
3561 0x86, 0x01, 0x4f, 0x50, 0x65, 0x3c, 0xb4, 0x23, 0xbd, 0x37, 0x6c, 0x00,
+
3562 0x00, 0x01, 0x00, 0x0d, 0x00, 0x71, 0x01, 0xd9, 0x02, 0x38, 0x00, 0x09,
+
3563 0x00, 0x16, 0x40, 0x0c, 0x00, 0x04, 0x03, 0x02, 0x09, 0x08, 0x07, 0x05,
+
3564 0x08, 0x01, 0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31,
+
3565 0x65, 0x07, 0x01, 0x17, 0x07, 0x03, 0x37, 0x05, 0x07, 0x27, 0x01, 0xd9,
+
3566 0x3a, 0xfe, 0xcb, 0x17, 0x4b, 0x29, 0x19, 0x01, 0x2d, 0x07, 0xaa, 0xab,
+
3567 0x3a, 0x01, 0x37, 0xa5, 0x0b, 0x01, 0x28, 0x18, 0x21, 0x48, 0x13, 0x00,
+
3568 0x00, 0x01, 0x00, 0x0a, 0x00, 0x69, 0x01, 0xea, 0x01, 0xe9, 0x00, 0x0f,
+
3569 0x00, 0x2e, 0x40, 0x15, 0x00, 0x0f, 0x0f, 0x0b, 0x0c, 0x0c, 0x0a, 0x01,
+
3570 0x0d, 0x0d, 0x06, 0x03, 0x04, 0x04, 0x08, 0x07, 0x07, 0x09, 0x02, 0x06,
+
3571 0x12, 0x00, 0x3f, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11,
+
3572 0x33, 0x11, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
+
3573 0x41, 0x17, 0x15, 0x07, 0x27, 0x37, 0x23, 0x17, 0x07, 0x27, 0x35, 0x37,
+
3574 0x17, 0x07, 0x33, 0x27, 0x01, 0x4a, 0xa0, 0xa2, 0x33, 0x5a, 0xee, 0x5d,
+
3575 0x33, 0xa1, 0xa0, 0x35, 0x5f, 0xf0, 0x5b, 0x01, 0xe9, 0xb3, 0x1e, 0xaf,
+
3576 0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f, 0x00, 0x01,
+
3577 0x00, 0x3a, 0x00, 0x38, 0x01, 0xba, 0x02, 0x20, 0x00, 0x0f, 0x00, 0x11,
+
3578 0xb7, 0x0e, 0x05, 0x06, 0x0d, 0x04, 0x01, 0x09, 0x01, 0x00, 0x2f, 0x2f,
+
3579 0x12, 0x17, 0x39, 0x30, 0x31, 0x65, 0x07, 0x23, 0x27, 0x37, 0x17, 0x35,
+
3580 0x07, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x15, 0x37, 0x01, 0xba, 0xb3,
+
3581 0x1e, 0xaf, 0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f,
+
3582 0xd8, 0xa0, 0xa2, 0x33, 0x5a, 0xf6, 0x5d, 0x33, 0xa1, 0xa0, 0x35, 0x5f,
+
3583 0xf8, 0x5b, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c,
+
3584 0x00, 0x09, 0x00, 0x12, 0x00, 0x21, 0x40, 0x0e, 0x08, 0x06, 0x0c, 0x03,
+
3585 0x02, 0x11, 0x0c, 0x11, 0x0c, 0x11, 0x0f, 0x04, 0x0a, 0x00, 0x00, 0x2f,
+
3586 0x32, 0x2f, 0x33, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33,
+
3587 0x33, 0x30, 0x31, 0x73, 0x11, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23,
+
3588 0x11, 0x27, 0x33, 0x11, 0x33, 0x07, 0x27, 0x07, 0x27, 0x33, 0x8c, 0x6a,
+
3589 0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x06, 0xb6, 0xb4, 0x16, 0x87,
+
3590 0x01, 0x6d, 0x2c, 0xe3, 0xe3, 0x2c, 0xfe, 0x93, 0x2c, 0x01, 0x6e, 0x1c,
+
3591 0xcb, 0xcb, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
+
3592 0x01, 0xf5, 0x00, 0x09, 0x00, 0x12, 0x00, 0x2d, 0x40, 0x15, 0x05, 0x0f,
+
3593 0x04, 0x03, 0x0a, 0x0b, 0x0b, 0x09, 0x0d, 0x0e, 0x0e, 0x07, 0x07, 0x09,
+
3594 0x0a, 0x10, 0x11, 0x11, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
+
3595 0x11, 0x33, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
3596 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07,
+
3597 0x23, 0x35, 0x23, 0x37, 0x15, 0x33, 0x15, 0x27, 0x37, 0x27, 0x37, 0x15,
+
3598 0x0a, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xd1, 0x2c, 0xd2, 0x1f, 0xce, 0xce,
+
3599 0x1f, 0x01, 0x8b, 0x6a, 0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x05,
+
3600 0xb7, 0xb7, 0x13, 0x87, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4,
+
3601 0x02, 0x7c, 0x00, 0x09, 0x00, 0x12, 0x00, 0x27, 0x40, 0x11, 0x07, 0x0d,
+
3602 0x0d, 0x09, 0x04, 0x0f, 0x0f, 0x11, 0x02, 0x02, 0x0b, 0x09, 0x09, 0x0e,
+
3603 0x06, 0x0a, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33,
+
3604 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53,
+
3605 0x33, 0x11, 0x33, 0x15, 0x07, 0x23, 0x27, 0x35, 0x33, 0x13, 0x11, 0x23,
+
3606 0x37, 0x17, 0x37, 0x17, 0x23, 0x11, 0x8c, 0xdf, 0x69, 0xcb, 0x1b, 0xcc,
+
3607 0x6a, 0x2c, 0x87, 0x16, 0xb4, 0xb6, 0x06, 0x78, 0x02, 0x7c, 0xfe, 0x93,
+
3608 0x2c, 0xe3, 0xe3, 0x2c, 0x01, 0x41, 0xfe, 0x92, 0x1c, 0xcb, 0xcb, 0x1c,
+
3609 0x01, 0x6e, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5,
+
3610 0x00, 0x09, 0x00, 0x12, 0x00, 0x2f, 0x40, 0x16, 0x05, 0x0e, 0x06, 0x03,
+
3611 0x0b, 0x11, 0x0b, 0x09, 0x0d, 0x0c, 0x0c, 0x08, 0x08, 0x09, 0x11, 0x02,
+
3612 0x10, 0x0f, 0x0f, 0x03, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
+
3613 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
3614 0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x15, 0x23, 0x15, 0x23, 0x27, 0x35,
+
3615 0x37, 0x33, 0x15, 0x17, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07, 0x35, 0x33,
+
3616 0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xa5, 0xd2, 0x1f, 0xce, 0xce,
+
3617 0x1f, 0xd2, 0x01, 0x8b, 0xdf, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x2c, 0x87,
+
3618 0x13, 0xb7, 0xb7, 0x05, 0x78, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00,
+
3619 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09, 0x00, 0x17, 0x40, 0x09, 0x00, 0x07,
+
3620 0x07, 0x02, 0x05, 0x05, 0x04, 0x08, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x39,
+
3621 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x23, 0x11, 0x23,
+
3622 0x11, 0x23, 0x35, 0x37, 0x33, 0x01, 0xd4, 0x69, 0xdf, 0x6a, 0xcc, 0x1b,
+
3623 0x01, 0x99, 0x2c, 0xfe, 0x93, 0x01, 0x6d, 0x2c, 0xe3, 0x00, 0x00, 0x01,
+
3624 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5, 0x00, 0x09, 0x00, 0x19,
+
3625 0x40, 0x0a, 0x05, 0x06, 0x01, 0x03, 0x03, 0x01, 0x01, 0x08, 0x08, 0x00,
+
3626 0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x11, 0x39, 0x39, 0x30,
+
3627 0x31, 0x77, 0x35, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07, 0x23, 0x35, 0x0a,
+
3628 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xac, 0xdf, 0x6a, 0xcc, 0x1b, 0xcb, 0x69,
+
3629 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09,
+
3630 0x00, 0x17, 0x40, 0x09, 0x00, 0x08, 0x08, 0x03, 0x05, 0x05, 0x01, 0x06,
+
3631 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
+
3632 0x31, 0x65, 0x07, 0x23, 0x27, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01,
+
3633 0xd4, 0xcb, 0x1b, 0xcc, 0x6a, 0xdf, 0x69, 0xe3, 0xe3, 0xe3, 0x2c, 0x01,
+
3634 0x6d, 0xfe, 0x93, 0x00, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
+
3635 0x01, 0xf5, 0x00, 0x09, 0x00, 0x19, 0x40, 0x0a, 0x05, 0x04, 0x09, 0x07,
+
3636 0x07, 0x09, 0x09, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11,
+
3637 0x33, 0x2f, 0x11, 0x39, 0x39, 0x30, 0x31, 0x65, 0x23, 0x15, 0x23, 0x27,
+
3638 0x35, 0x37, 0x33, 0x15, 0x33, 0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c,
+
3639 0xd1, 0xac, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00,
+
3640 0xfe, 0x70, 0x01, 0xf4, 0xff, 0x1f, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
3641 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x51, 0x35, 0x21, 0x15, 0x01, 0xf4,
+
3642 0xfe, 0x70, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
+
3643 0xff, 0xce, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3644 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x01, 0x5e,
+
3645 0xfe, 0xa2, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x00, 0x7d,
+
3646 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
3647 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0x0d, 0xfd, 0xf3,
+
3648 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c, 0x00, 0x03,
+
3649 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
+
3650 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x01,
+
3651 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0xdb, 0x00, 0x03, 0x00, 0x08,
+
3652 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
+
3653 0x01, 0xf4, 0xfe, 0x70, 0x03, 0x6b, 0xfc, 0x95, 0x00, 0x01, 0x00, 0x00,
+
3654 0xfe, 0x70, 0x01, 0xf4, 0x02, 0x8a, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
3655 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4,
+
3656 0xfe, 0x70, 0x04, 0x1a, 0xfb, 0xe6, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
+
3657 0x01, 0xf4, 0x03, 0x39, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
+
3658 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70,
+
3659 0x04, 0xc9, 0xfb, 0x37, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
+
3660 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3661 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x05, 0x78,
+
3662 0xfa, 0x88, 0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x01, 0xf4, 0x03, 0xe8,
+
3663 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
3664 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44,
+
3665 0x00, 0x01, 0x00, 0x00, 0x03, 0x39, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03,
+
3666 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x35,
+
3667 0x21, 0x15, 0x01, 0xf4, 0x03, 0x39, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00,
+
3668 0xfe, 0x70, 0x00, 0x3f, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
3669 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x3f, 0xfe,
+
3670 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
+
3671 0x00, 0x7d, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
+
3672 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x7d, 0xfe, 0x70, 0x05,
+
3673 0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xbc,
+
3674 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3675 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xbc, 0xfe, 0x70, 0x05, 0x78, 0xfa,
+
3676 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa, 0x03, 0xe8,
+
3677 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
3678 0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
+
3679 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0x39, 0x03, 0xe8, 0x00, 0x03,
+
3680 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
+
3681 0x21, 0x11, 0x01, 0x39, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01,
+
3682 0x00, 0x00, 0xfe, 0x70, 0x01, 0x77, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
+
3683 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
+
3684 0x01, 0x77, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0x00,
+
3685 0xfe, 0x70, 0x01, 0xb6, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
3686 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xb6,
+
3687 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70,
+
3688 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
+
3689 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70,
+
3690 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x01, 0xb6, 0xfe, 0x70, 0x01, 0xf4,
+
3691 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3692 0x30, 0x31, 0x41, 0x11, 0x33, 0x11, 0x01, 0xb6, 0x3e, 0xfe, 0x70, 0x05,
+
3693 0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa,
+
3694 0x01, 0x2c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3695 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd,
+
3696 0x44, 0x00, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c,
+
3697 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
3698 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44,
+
3699 0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x00, 0xfa, 0x03, 0xe8, 0x00, 0x03,
+
3700 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
+
3701 0x33, 0x11, 0xfa, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01,
+
3702 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08,
+
3703 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11,
+
3704 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44,
+
3705 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x07,
+
3706 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
+
3707 0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0x70,
+
3708 0x02, 0xbc, 0x02, 0xbc, 0xfd, 0x44, 0xfd, 0x44, 0x00, 0x01, 0x00, 0x00,
+
3709 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x01,
+
3710 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x23, 0x11,
+
3711 0x01, 0xf4, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44, 0x00,
+
3712 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05,
+
3713 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
+
3714 0x23, 0x11, 0x21, 0x11, 0xfa, 0xfa, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc,
+
3715 0x02, 0xbc, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0x01, 0x2c, 0x01, 0xf4,
+
3716 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3717 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0x01, 0x2c, 0x02, 0xbc,
+
3718 0xfd, 0x44, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8,
+
3719 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x01, 0x04, 0x04, 0x05, 0x00,
+
3720 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x51, 0x11, 0x33, 0x19,
+
3721 0x02, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x02,
+
3722 0xbc, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
+
3723 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
+
3724 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa,
+
3725 0xfe, 0x70, 0x02, 0xbc, 0x02, 0xbc, 0xfa, 0x88, 0x00, 0x2a, 0x00, 0x0f,
+
3726 0xfe, 0x87, 0x01, 0xe5, 0x03, 0xd1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
+
3727 0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x23,
+
3728 0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3b,
+
3729 0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53,
+
3730 0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b,
+
3731 0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83,
+
3732 0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b,
+
3733 0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15,
+
3734 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3735 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3736 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3737 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3738 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3739 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3740 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3741 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3742 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3743 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3744 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3745 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3746 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
+
3747 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x0f, 0x36, 0x70, 0x36,
+
3748 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36,
+
3749 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe,
+
3750 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70,
+
3751 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71,
+
3752 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0,
+
3753 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36,
+
3754 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36,
+
3755 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x87, 0x36,
+
3756 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
+
3757 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36,
+
3758 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36,
+
3759 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64,
+
3760 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36,
+
3761 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36,
+
3762 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36,
+
3763 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
+
3764 0x00, 0x2a, 0x00, 0x02, 0xfe, 0x79, 0x01, 0xf2, 0x03, 0xdf, 0x00, 0x03,
+
3765 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b,
+
3766 0x00, 0x1f, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33,
+
3767 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b,
+
3768 0x00, 0x4f, 0x00, 0x53, 0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63,
+
3769 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b,
+
3770 0x00, 0x7f, 0x00, 0x83, 0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93,
+
3771 0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00,
+
3772 0x53, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3773 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3774 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3775 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3776 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3777 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3778 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3779 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3780 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3781 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3782 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3783 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3784 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3785 0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
+
3786 0x02, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
+
3787 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55,
+
3788 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4,
+
3789 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52,
+
3790 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52,
+
3791 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51,
+
3792 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe,
+
3793 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
+
3794 0x51, 0xfe, 0x79, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
+
3795 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64,
+
3796 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52,
+
3797 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52,
+
3798 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52,
+
3799 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52,
+
3800 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52,
+
3801 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
+
3802 0x52, 0x52, 0x52, 0x52, 0x00, 0x19, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
+
3803 0x03, 0xe8, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53, 0x00, 0x57,
+
3804 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f,
+
3805 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x87,
+
3806 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f,
+
3807 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x51, 0x35, 0x33, 0x35, 0x23, 0x35,
+
3808 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35,
+
3809 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
+
3810 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
+
3811 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
+
3812 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35,
+
3813 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x37, 0x35, 0x23, 0x15, 0x33, 0x35,
+
3814 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
+
3815 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
+
3816 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
+
3817 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
+
3818 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
+
3819 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
+
3820 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
+
3821 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
+
3822 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x67,
+
3823 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
+
3824 0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x80, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
+
3825 0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
+
3826 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
+
3827 0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
+
3828 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0xfe, 0x70, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a,
+
3829 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59,
+
3830 0x59, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a,
+
3831 0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x6f, 0x4e, 0x4e, 0x4e, 0x4e,
+
3832 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e,
+
3833 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e,
+
3834 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64,
+
3835 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e,
+
3836 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x00, 0x00, 0x01, 0x00, 0x29,
+
3837 0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x08, 0xb1, 0x0a,
+
3838 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34,
+
3839 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0xf9, 0x2b,
+
3840 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
+
3841 0x39, 0x4c, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
+
3842 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x00, 0x00, 0x02, 0x00, 0x29,
+
3843 0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x0c,
+
3844 0xb3, 0x14, 0x1e, 0x0a, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31,
+
3845 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
+
3846 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
+
3847 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0xf9, 0x2b, 0x4c, 0x39,
+
3848 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
+
3849 0x2b, 0x21, 0x39, 0x2c, 0x19, 0x19, 0x2c, 0x39, 0x21, 0x20, 0x39, 0x2c,
+
3850 0x19, 0x19, 0x2c, 0x39, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
+
3851 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x32, 0x1a, 0x2b,
+
3852 0x3a, 0x20, 0x21, 0x38, 0x2c, 0x19, 0x19, 0x2c, 0x38, 0x21, 0x20, 0x3a,
+
3853 0x2b, 0x1a, 0x00, 0x01, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
+
3854 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
3855 0x53, 0x17, 0x07, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x01, 0xf7, 0xe1, 0xe1,
+
3856 0xe1, 0x00, 0x00, 0x02, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
+
3857 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x02, 0x07, 0x00, 0x02,
+
3858 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x07, 0x27,
+
3859 0x33, 0x17, 0x37, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x43, 0x9e, 0x9e, 0x9e,
+
3860 0x01, 0xf7, 0xe1, 0xe1, 0xe1, 0x9e, 0x9e, 0x9e, 0x00, 0x02, 0x00, 0x2f,
+
3861 0x00, 0x00, 0x01, 0xd8, 0x02, 0x81, 0x00, 0x05, 0x00, 0x09, 0x00, 0x13,
+
3862 0x40, 0x09, 0x06, 0x00, 0x08, 0x02, 0x03, 0x72, 0x00, 0x12, 0x72, 0x00,
+
3863 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x03, 0x13, 0x33, 0x13,
+
3864 0x03, 0x27, 0x37, 0x27, 0x07, 0xf3, 0xc4, 0xc4, 0x21, 0xc4, 0xc4, 0x10,
+
3865 0x80, 0x80, 0x81, 0x01, 0x40, 0x01, 0x41, 0xfe, 0xbf, 0xfe, 0xc0, 0x6c,
+
3866 0xd4, 0xd6, 0xd6, 0x00, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
3867 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1b, 0x40, 0x0b,
+
3868 0x0b, 0x02, 0x03, 0x03, 0x0d, 0x0a, 0x07, 0x07, 0x0c, 0x0d, 0x00, 0x00,
+
3869 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x30,
+
3870 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
+
3871 0x11, 0x01, 0x35, 0x21, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14,
+
3872 0x90, 0xfd, 0xfc, 0x02, 0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
+
3873 0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x84, 0x00, 0x00, 0x02,
+
3874 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b,
+
3875 0x00, 0x12, 0xb6, 0x0b, 0x02, 0x03, 0x03, 0x08, 0x09, 0x00, 0x00, 0x2f,
+
3876 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
+
3877 0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, 0x40, 0x90, 0x01, 0x14,
+
3878 0x6c, 0xfe, 0x80, 0x02, 0x04, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
+
3879 0x02, 0xf2, 0x84, 0xfc, 0x8a, 0x00, 0x00, 0x02, 0x00, 0x40, 0xfe, 0x70,
+
3880 0x02, 0x44, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x12, 0xb6, 0x0b,
+
3881 0x0a, 0x07, 0x07, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f,
+
3882 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11,
+
3883 0x21, 0x15, 0x23, 0x11, 0x40, 0x02, 0x04, 0xfe, 0x80, 0x6c, 0x01, 0x14,
+
3884 0x90, 0xfe, 0x70, 0x03, 0x76, 0x84, 0xfd, 0x0e, 0x02, 0x86, 0x84, 0xfd,
+
3885 0xfe, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x01, 0xe6,
+
3886 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x01, 0x04, 0x05, 0x00, 0x00,
+
3887 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35,
+
3888 0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x02, 0x94, 0x72, 0x84, 0x84,
+
3889 0xf0, 0x84, 0x84, 0x00, 0x00, 0x03, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44,
+
3890 0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
+
3891 0x0c, 0x07, 0x01, 0x05, 0x04, 0x04, 0x07, 0x0d, 0x0a, 0x0a, 0x07, 0x00,
+
3892 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
+
3893 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x33, 0x11, 0x33,
+
3894 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c,
+
3895 0x90, 0x84, 0x6c, 0x84, 0x90, 0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02,
+
3896 0xfd, 0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x00, 0x02, 0xff, 0xb0,
+
3897 0x00, 0x72, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14,
+
3898 0xb7, 0x0a, 0x03, 0x01, 0x07, 0x06, 0x06, 0x03, 0x00, 0x00, 0x2f, 0x2f,
+
3899 0x39, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
+
3900 0x33, 0x11, 0x25, 0x35, 0x33, 0x11, 0x33, 0x11, 0x50, 0x01, 0x80, 0x84,
+
3901 0xfd, 0xfc, 0x90, 0x84, 0x72, 0x84, 0x02, 0xf2, 0xfc, 0x8a, 0xf0, 0x84,
+
3902 0x02, 0x02, 0xfd, 0x7a, 0x00, 0x02, 0x00, 0x40, 0x00, 0x72, 0x02, 0x44,
+
3903 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x01, 0x03,
+
3904 0x09, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32,
+
3905 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x25, 0x11,
+
3906 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x01, 0x80, 0xfe, 0xec, 0x84, 0x90,
+
3907 0x72, 0x03, 0x76, 0xfd, 0x0e, 0x84, 0xf0, 0x02, 0x86, 0xfd, 0xfe, 0x84,
+
3908 0x00, 0x02, 0x00, 0x40, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x03,
+
3909 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3910 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
3911 0x40, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
+
3912 0xfa, 0x88, 0x00, 0x04, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
+
3913 0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1d, 0x40, 0x0c,
+
3914 0x13, 0x0f, 0x15, 0x0d, 0x0d, 0x12, 0x0c, 0x07, 0x02, 0x03, 0x06, 0x00,
+
3915 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f,
+
3916 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21,
+
3917 0x15, 0x23, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
+
3918 0x11, 0x33, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14, 0x90, 0xfd,
+
3919 0xfc, 0x90, 0x84, 0x6c, 0x84, 0x90, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd,
+
3920 0x7a, 0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x02, 0x02, 0xfd,
+
3921 0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70,
+
3922 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x14,
+
3923 0xb7, 0x07, 0x0d, 0x0b, 0x0a, 0x02, 0x03, 0x06, 0x00, 0x00, 0x2f, 0x32,
+
3924 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
+
3925 0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11,
+
3926 0x40, 0x90, 0x01, 0x14, 0x6c, 0x84, 0xfd, 0xfc, 0x90, 0x84, 0xfe, 0x70,
+
3927 0x02, 0x02, 0x84, 0xfd, 0x7a, 0x05, 0x78, 0xfa, 0x88, 0x02, 0xf2, 0x84,
+
3928 0x02, 0x02, 0xfd, 0x7a, 0x00, 0x03, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44,
+
3929 0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
+
3930 0x0c, 0x01, 0x09, 0x05, 0x08, 0x08, 0x01, 0x0a, 0x0d, 0x0d, 0x01, 0x00,
+
3931 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
+
3932 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
+
3933 0x11, 0x03, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x01, 0x14,
+
3934 0x90, 0x84, 0x84, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x02, 0x86,
+
3935 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x01,
+
3936 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x0b, 0x00, 0x12,
+
3937 0xb6, 0x08, 0x06, 0x0a, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33,
+
3938 0x11, 0x33, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15,
+
3939 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x94, 0x90, 0x84,
+
3940 0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
+
3941 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0x6e,
+
3942 0x00, 0x09, 0x00, 0x10, 0xb5, 0x06, 0x08, 0x02, 0x02, 0x03, 0x00, 0x00,
+
3943 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
+
3944 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x04, 0x84, 0x6c,
+
3945 0xfe, 0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x02, 0x7a, 0xfd, 0x86, 0x00,
+
3946 0x00, 0x01, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x09,
+
3947 0x00, 0x10, 0xb5, 0x06, 0x04, 0x08, 0x08, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
3948 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
+
3949 0x23, 0x11, 0x23, 0x11, 0x40, 0x02, 0x04, 0x90, 0x84, 0x6c, 0xfe, 0x70,
+
3950 0x02, 0xfe, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x00, 0x00, 0x01,
+
3951 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e,
+
3952 0xb4, 0x06, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33,
+
3953 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
+
3954 0x02, 0x94, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
+
3955 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0x6e, 0x00, 0x05,
+
3956 0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
+
3957 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70,
+
3958 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
3959 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x12, 0xb6, 0x07, 0x03, 0x03,
+
3960 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33,
+
3961 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11,
+
3962 0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
+
3963 0x7a, 0xfd, 0x86, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
+
3964 0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
+
3965 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
+
3966 0x76, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86, 0x00,
+
3967 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
+
3968 0x00, 0x12, 0xb6, 0x01, 0x05, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f,
+
3969 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
+
3970 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6,
+
3971 0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
+
3972 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
+
3973 0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
+
3974 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
+
3975 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
+
3976 0x01, 0x08, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
+
3977 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
3978 0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x02, 0x02,
+
3979 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
+
3980 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe,
+
3981 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00,
+
3982 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x05,
+
3983 0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
+
3984 0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
+
3985 0x70, 0x02, 0x38, 0x01, 0x08, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0xff, 0xb0,
+
3986 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08,
+
3987 0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
+
3988 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11,
+
3989 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x38, 0x01,
+
3990 0x08, 0x02, 0x38, 0xfc, 0xc0, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0xb8,
+
3991 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04,
+
3992 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
+
3993 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x03, 0x40, 0xfe,
+
3994 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
+
3995 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x01, 0x08, 0x08, 0x03,
+
3996 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31, 0x53, 0x11,
+
3997 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42, 0x01, 0x08,
+
3998 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
+
3999 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
4000 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x04, 0x04, 0x0a, 0x01,
+
4001 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
+
4002 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
+
4003 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe,
+
4004 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd,
+
4005 0xc8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6,
+
4006 0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x06, 0x02, 0x02, 0x03, 0x03,
+
4007 0x08, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33,
+
4008 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x01, 0x35,
+
4009 0x21, 0x15, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe, 0xf8, 0xfe, 0x74, 0x02,
+
4010 0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84,
+
4011 0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xe6,
+
4012 0x00, 0x09, 0x00, 0x10, 0xb5, 0x02, 0x03, 0x03, 0x06, 0x07, 0x00, 0x00,
+
4013 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
+
4014 0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
+
4015 0xf8, 0x01, 0x8c, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0xfc, 0x8a,
+
4016 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6, 0x00, 0x09,
+
4017 0x00, 0x10, 0xb5, 0x08, 0x05, 0x05, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f,
+
4018 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x15,
+
4019 0x21, 0x15, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
+
4020 0xf8, 0xfe, 0x70, 0x03, 0x76, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00, 0x02,
+
4021 0x00, 0x3f, 0x00, 0xa8, 0x01, 0xb6, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07,
+
4022 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
+
4023 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x3f, 0x7d,
+
4024 0x7d, 0x7d, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00,
+
4025 0x00, 0x02, 0x00, 0x76, 0xff, 0x1f, 0x01, 0x7e, 0x03, 0x39, 0x00, 0x03,
+
4026 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
4027 0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11,
+
4028 0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xe1, 0x01, 0x5e, 0xfe, 0xa2,
+
4029 0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
+
4030 0x01, 0x7e, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
+
4031 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
+
4032 0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
4033 0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x01,
+
4034 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4035 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x02, 0x94, 0xc6, 0xfe,
+
4036 0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
+
4037 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a,
+
4038 0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4039 0x23, 0x11, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70, 0x02, 0x38,
+
4040 0x01, 0x08, 0xfc, 0xc0, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
+
4041 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00, 0x00, 0x2f,
+
4042 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0x01,
+
4043 0xce, 0xc6, 0xfe, 0x70, 0x03, 0x40, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
+
4044 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08,
+
4045 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11,
+
4046 0x50, 0x02, 0x94, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0,
+
4047 0x00, 0xa8, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
4048 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x50, 0x01,
+
4049 0x8c, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
+
4050 0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x01,
+
4051 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x67, 0x11,
+
4052 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x50, 0x01, 0x8c, 0x01, 0x08, 0xfe,
+
4053 0xf8, 0xa8, 0x01, 0x08, 0x42, 0x84, 0x42, 0x00, 0x00, 0x04, 0x00, 0x10,
+
4054 0x00, 0xa8, 0x01, 0xe4, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
+
4055 0x00, 0x0f, 0x00, 0x14, 0xb7, 0x0c, 0x0d, 0x08, 0x09, 0x04, 0x05, 0x01,
+
4056 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x33, 0x32, 0x33, 0x32, 0x30, 0x31,
+
4057 0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4058 0x33, 0x11, 0x33, 0x11, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d,
+
4059 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
+
4060 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x76, 0xfe, 0x9c,
+
4061 0x01, 0x7e, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
+
4062 0x00, 0x1f, 0x40, 0x0d, 0x0d, 0x0c, 0x0c, 0x09, 0x09, 0x08, 0x01, 0x01,
+
4063 0x04, 0x04, 0x05, 0x05, 0x08, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33,
+
4064 0x2f, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21,
+
4065 0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21,
+
4066 0x11, 0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
+
4067 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
+
4068 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
+
4069 0x01, 0x06, 0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xa8, 0x02, 0x44,
+
4070 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
4071 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xa8, 0x01, 0x08,
+
4072 0xfe, 0xf8, 0x00, 0x03, 0x00, 0x1c, 0x00, 0xa8, 0x01, 0xd8, 0x01, 0xb0,
+
4073 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04,
+
4074 0x04, 0x09, 0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33,
+
4075 0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33,
+
4076 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x1c, 0x6f, 0x37, 0x70, 0x37,
+
4077 0x6f, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
+
4078 0xfe, 0xf8, 0x00, 0x03, 0x00, 0x76, 0xfe, 0xbe, 0x01, 0x7e, 0x03, 0x9a,
+
4079 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x09,
+
4080 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
+
4081 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
+
4082 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xbe, 0x01, 0x37, 0xfe,
+
4083 0xc9, 0x01, 0xd2, 0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe,
+
4084 0xc9, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea, 0x01, 0x7e, 0x03, 0xe8,
+
4085 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
4086 0x77, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd, 0x02,
+
4087 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
+
4088 0x00, 0x0e, 0xb4, 0x03, 0x05, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x11,
+
4089 0x33, 0x2f, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
+
4090 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8,
+
4091 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x7e, 0x03, 0xe8,
+
4092 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f,
+
4093 0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6, 0x01, 0x08,
+
4094 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76,
+
4095 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
+
4096 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11,
+
4097 0x23, 0x11, 0xb8, 0x42, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x02,
+
4098 0xfe, 0xfd, 0x02, 0xfd, 0x86, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xa8,
+
4099 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
+
4100 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x11,
+
4101 0x76, 0x01, 0x08, 0xc6, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe, 0xf8, 0x00,
+
4102 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x03,
+
4103 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
+
4104 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
+
4105 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
+
4106 0x00, 0x14, 0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00,
+
4107 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4108 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x76, 0xc6,
+
4109 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02,
+
4110 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0,
+
4111 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04,
+
4112 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
4113 0x53, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x76, 0xc6, 0xc6, 0x01,
+
4114 0x08, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88, 0x00,
+
4115 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
+
4116 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
+
4117 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11,
+
4118 0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe,
+
4119 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
4120 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x10, 0xb7, 0x01, 0x0c, 0x09, 0x07, 0x04,
+
4121 0x05, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x53, 0x11,
+
4122 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
+
4123 0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38,
+
4124 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x01,
+
4125 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10,
+
4126 0xb5, 0x08, 0x05, 0x05, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39,
+
4127 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x15,
+
4128 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0x01, 0x08, 0xfe, 0xf8, 0xfe,
+
4129 0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
+
4130 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e,
+
4131 0xb4, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
+
4132 0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15,
+
4133 0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xa8, 0x01, 0x08, 0x02,
+
4134 0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
4135 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x07, 0x0a, 0x0a,
+
4136 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4137 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
+
4138 0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38,
+
4139 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
+
4140 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e,
+
4141 0xb4, 0x02, 0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
+
4142 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x35, 0x21, 0x11, 0x23, 0x11,
+
4143 0x76, 0xc6, 0xc6, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
+
4144 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
+
4145 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00,
+
4146 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35,
+
4147 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6,
+
4148 0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
+
4149 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e,
+
4150 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
+
4151 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
+
4152 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02,
+
4153 0x7a, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
+
4154 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e,
+
4155 0xb4, 0x07, 0x0a, 0x0a, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
+
4156 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15,
+
4157 0x23, 0x15, 0x23, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
+
4158 0x42, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84,
+
4159 0x42, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c,
+
4160 0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x06, 0x07, 0x0f, 0x00, 0x2f,
+
4161 0x2f, 0x33, 0x30, 0x31, 0x77, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, 0x33,
+
4162 0x32, 0x1e, 0x03, 0x15, 0x11, 0x23, 0xb8, 0x1d, 0x32, 0x43, 0x26, 0x50,
+
4163 0x50, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x32, 0x26, 0x43, 0x32, 0x1d,
+
4164 0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0xfe, 0x3e, 0x00, 0x01, 0x00, 0xb8,
+
4165 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x0b,
+
4166 0x08, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x41, 0x23, 0x11, 0x34,
+
4167 0x3e, 0x03, 0x33, 0x33, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x01, 0x3c,
+
4168 0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d,
+
4169 0xfe, 0x70, 0x01, 0xc2, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32,
+
4170 0x43, 0x26, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8,
+
4171 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x0a, 0x09, 0x00, 0x09, 0x00, 0x2f, 0x2f,
+
4172 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x14, 0x0e, 0x03, 0x23, 0x23,
+
4173 0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0xb8, 0x84, 0x20, 0x3a, 0x4f, 0x5f,
+
4174 0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d, 0x03, 0xe8, 0xfe, 0x3e, 0x34,
+
4175 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32, 0x43, 0x26, 0x00, 0x00, 0x01,
+
4176 0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x10, 0x00, 0x0c,
+
4177 0xb3, 0x05, 0x08, 0x0f, 0x08, 0x00, 0x2f, 0x2f, 0x11, 0x33, 0x30, 0x31,
+
4178 0x41, 0x14, 0x1e, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x2e, 0x03, 0x35,
+
4179 0x11, 0x33, 0x01, 0x3c, 0x1d, 0x32, 0x43, 0x26, 0x50, 0x50, 0x34, 0x5f,
+
4180 0x4f, 0x3a, 0x20, 0x84, 0x02, 0x26, 0x26, 0x43, 0x32, 0x1d, 0x84, 0x20,
+
4181 0x3a, 0x4f, 0x5f, 0x34, 0x01, 0xc2, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xea,
+
4182 0x01, 0xb6, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05,
+
4183 0x01, 0x01, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
+
4184 0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x3f, 0x7d, 0x7d, 0x7d,
+
4185 0xea, 0x84, 0x84, 0x84, 0x84, 0x00, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x1f,
+
4186 0x01, 0x3c, 0x03, 0x39, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04,
+
4187 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x11,
+
4188 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0xe1, 0x01,
+
4189 0x5e, 0xfe, 0xa2, 0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x00, 0x02,
+
4190 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05, 0x00, 0x0b,
+
4191 0x00, 0x14, 0x40, 0x09, 0x04, 0x07, 0x0a, 0x01, 0x04, 0x08, 0x02, 0x06,
+
4192 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x51, 0x35,
+
4193 0x01, 0x33, 0x15, 0x01, 0x21, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac,
+
4194 0x48, 0xfe, 0x54, 0x01, 0x64, 0xfe, 0x54, 0x48, 0x01, 0xac, 0xfe, 0xd4,
+
4195 0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac,
+
4196 0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
+
4197 0x00, 0x0c, 0xb3, 0x01, 0x02, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
+
4198 0x30, 0x31, 0x41, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac, 0xfe, 0x54,
+
4199 0x48, 0x01, 0xac, 0xfe, 0xd4, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac, 0x00,
+
4200 0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
+
4201 0x00, 0x0c, 0xb3, 0x04, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
+
4202 0x30, 0x31, 0x51, 0x35, 0x01, 0x33, 0x15, 0x01, 0x01, 0xac, 0x48, 0xfe,
+
4203 0x54, 0xfe, 0xd4, 0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x00, 0x00, 0x01,
+
4204 0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08,
+
4205 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
+
4206 0xb8, 0x84, 0xfe, 0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0,
+
4207 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06,
+
4208 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31,
+
4209 0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02,
+
4210 0x94, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
+
4211 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x05,
+
4212 0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
+
4213 0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
+
4214 0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70,
+
4215 0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
+
4216 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11,
+
4217 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86,
+
4218 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x03,
+
4219 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35,
+
4220 0x21, 0x15, 0x50, 0x02, 0x94, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0,
+
4221 0x00, 0xea, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
4222 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x50, 0x01,
+
4223 0x8c, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
+
4224 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04, 0x01, 0x05, 0x05, 0x00,
+
4225 0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x77, 0x35, 0x21, 0x35,
+
4226 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x01, 0x8c, 0xa8,
+
4227 0x42, 0x84, 0x42, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0xea,
+
4228 0x01, 0xe4, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
+
4229 0x00, 0x1f, 0x40, 0x0d, 0x0c, 0x08, 0x08, 0x04, 0x04, 0x0d, 0x09, 0x09,
+
4230 0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33,
+
4231 0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x35, 0x33,
+
4232 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33,
+
4233 0x15, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0xea, 0x84, 0x84,
+
4234 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x00, 0x04, 0x00, 0xb8, 0xfe, 0x9c,
+
4235 0x01, 0x3c, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
+
4236 0x00, 0x18, 0x40, 0x0a, 0x0d, 0x0c, 0x09, 0x08, 0x05, 0x00, 0x01, 0x04,
+
4237 0x05, 0x12, 0x00, 0x3f, 0xdd, 0xde, 0xcd, 0x10, 0xde, 0xdd, 0xde, 0xcd,
+
4238 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11,
+
4239 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0x84, 0x84,
+
4240 0x84, 0x84, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
+
4241 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
+
4242 0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e,
+
4243 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
+
4244 0x77, 0x35, 0x21, 0x15, 0xb8, 0x01, 0x8c, 0xea, 0x84, 0x84, 0x00, 0x03,
+
4245 0x00, 0x1c, 0x00, 0xea, 0x01, 0xd8, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07,
+
4246 0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04, 0x04, 0x09, 0x05, 0x05,
+
4247 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
+
4248 0x33, 0x30, 0x31, 0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33,
+
4249 0x35, 0x33, 0x15, 0x1c, 0x6f, 0x37, 0x70, 0x37, 0x6f, 0xea, 0x84, 0x84,
+
4250 0x84, 0x84, 0x84, 0x84, 0x00, 0x03, 0x00, 0xb8, 0xfe, 0xbe, 0x01, 0x3c,
+
4251 0x03, 0x9a, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04,
+
4252 0x05, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
+
4253 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84,
+
4254 0x84, 0x84, 0x84, 0x84, 0xfe, 0xbe, 0x01, 0x37, 0xfe, 0xc9, 0x01, 0xd2,
+
4255 0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe, 0xc9, 0x00, 0x01,
+
4256 0x00, 0xb8, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
+
4257 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
+
4258 0xb8, 0x84, 0xea, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76,
+
4259 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
+
4260 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4261 0x33, 0x11, 0x76, 0x42, 0x84, 0x42, 0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a,
+
4262 0xfd, 0x86, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44,
+
4263 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01, 0x03, 0x00,
+
4264 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
+
4265 0x33, 0x11, 0x21, 0x15, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xea, 0x84,
+
4266 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
+
4267 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
+
4268 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11, 0x33, 0x11,
+
4269 0x50, 0x01, 0x08, 0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01,
+
4270 0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a,
+
4271 0xb2, 0x03, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11,
+
4272 0x33, 0x11, 0x21, 0x15, 0xb8, 0x84, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd,
+
4273 0x86, 0x84, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
+
4274 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
4275 0x53, 0x11, 0x33, 0x11, 0xb8, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88,
+
4276 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
+
4277 0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
+
4278 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4279 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
+
4280 0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a,
+
4281 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0,
+
4282 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03,
+
4283 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
4284 0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
+
4285 0x08, 0x84, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfa, 0x88, 0x00,
+
4286 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
+
4287 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
+
4288 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11,
+
4289 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x86,
+
4290 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
4291 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x07, 0x00,
+
4292 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
+
4293 0x33, 0x35, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6,
+
4294 0xc6, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
+
4295 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0,
+
4296 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x02,
+
4297 0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
4298 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe,
+
4299 0xf8, 0x01, 0x08, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84,
+
4300 0x42, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
+
4301 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02,
+
4302 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35,
+
4303 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
+
4304 0x08, 0x84, 0x01, 0x08, 0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe,
+
4305 0xf8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
+
4306 0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f,
+
4307 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x11,
+
4308 0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84,
+
4309 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd,
+
4310 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
4311 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x05, 0x05,
+
4312 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31,
+
4313 0x53, 0x11, 0x23, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6,
+
4314 0x01, 0xce, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84,
+
4315 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8,
+
4316 0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x08, 0x08, 0x03, 0x01, 0x00, 0x00,
+
4317 0x2f, 0x32, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11,
+
4318 0x21, 0x11, 0x33, 0x15, 0x23, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
+
4319 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01,
+
4320 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
+
4321 0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f,
+
4322 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
+
4323 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01,
+
4324 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd,
+
4325 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
4326 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x05, 0x04, 0x04, 0x07, 0x00,
+
4327 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
+
4328 0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42,
+
4329 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x42,
+
4330 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
+
4331 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
+
4332 0xb7, 0x08, 0x03, 0x09, 0x05, 0x01, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f,
+
4333 0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11,
+
4334 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x90, 0x84, 0x6c,
+
4335 0x84, 0x90, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86,
+
4336 0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0xb4, 0x03, 0xe8,
+
4337 0x00, 0x09, 0x00, 0x12, 0xb6, 0x08, 0x03, 0x05, 0x01, 0x01, 0x03, 0x00,
+
4338 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
+
4339 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x50, 0x90, 0x84, 0x6c,
+
4340 0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x02, 0x00,
+
4341 0x00, 0x01, 0x00, 0x40, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
+
4342 0x00, 0x12, 0xb6, 0x06, 0x01, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x2f,
+
4343 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
+
4344 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x84, 0x90, 0xea,
+
4345 0x02, 0xfe, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01,
+
4346 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
+
4347 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f,
+
4348 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
+
4349 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6,
+
4350 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
+
4351 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
+
4352 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01,
+
4353 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
+
4354 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xea,
+
4355 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
4356 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x03, 0x02,
+
4357 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31,
+
4358 0x53, 0x11, 0x21, 0x35, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0xb8, 0xfe,
+
4359 0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
+
4360 0xfd, 0x02, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x7e,
+
4361 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f,
+
4362 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6,
+
4363 0x01, 0x08, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01, 0x00, 0x76,
+
4364 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x02,
+
4365 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
+
4366 0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11,
+
4367 0xb8, 0x42, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x02,
+
4368 0xfe, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea,
+
4369 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x01, 0x00,
+
4370 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x15,
+
4371 0x76, 0x01, 0x08, 0xc6, 0xea, 0x02, 0xfe, 0xfd, 0x86, 0x84, 0x00, 0x01,
+
4372 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08,
+
4373 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
+
4374 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x01, 0x08,
+
4375 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38,
+
4376 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
+
4377 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x05, 0x01,
+
4378 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x67, 0x11,
+
4379 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08,
+
4380 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
+
4381 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08,
+
4382 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
+
4383 0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x76, 0xc6, 0x01, 0x08, 0x84, 0x42,
+
4384 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfc, 0xc0,
+
4385 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05,
+
4386 0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31,
+
4387 0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x50, 0x01, 0x08, 0x84, 0xa8, 0x01,
+
4388 0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
+
4389 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
+
4390 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11,
+
4391 0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x03, 0x40,
+
4392 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0x00, 0xb8,
+
4393 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01,
+
4394 0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
+
4395 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
+
4396 0xf8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x03, 0xe8,
+
4397 0x00, 0x03, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x01, 0x09, 0x05, 0x05, 0x04,
+
4398 0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
+
4399 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x11, 0x33, 0x11,
+
4400 0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x01, 0x08, 0x84, 0x01, 0x08,
+
4401 0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x00, 0x01,
+
4402 0xff, 0xb0, 0x00, 0x72, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10,
+
4403 0xb5, 0x01, 0x05, 0x04, 0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
+
4404 0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11,
+
4405 0x33, 0x11, 0x50, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x72, 0x84,
+
4406 0x6c, 0x84, 0x02, 0x02, 0xfc, 0x8a, 0x00, 0x01, 0x00, 0xb8, 0x00, 0x72,
+
4407 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x07, 0x03, 0x06,
+
4408 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31,
+
4409 0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0xb8, 0x84,
+
4410 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x72, 0x03, 0x76, 0xfd, 0xfe, 0x84,
+
4411 0x6c, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
+
4412 0x00, 0x13, 0x00, 0x1f, 0x40, 0x0d, 0x10, 0x0a, 0x05, 0x0b, 0x07, 0x03,
+
4413 0x0e, 0x12, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
+
4414 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53,
+
4415 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
+
4416 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c,
+
4417 0x84, 0x90, 0x90, 0x84, 0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
+
4418 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
+
4419 0x86, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8,
+
4420 0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x09, 0x05, 0x03, 0x02,
+
4421 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
+
4422 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4423 0x33, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x02, 0x7a,
+
4424 0x84, 0x02, 0x7a, 0xfa, 0x88, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x02,
+
4425 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x0b,
+
4426 0x00, 0x14, 0xb7, 0x0b, 0x06, 0x01, 0x07, 0x0a, 0x0a, 0x01, 0x00, 0x00,
+
4427 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
+
4428 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x11, 0x40, 0x84,
+
4429 0x6c, 0x84, 0x90, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
+
4430 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
+
4431 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a,
+
4432 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
+
4433 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
+
4434 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe,
+
4435 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
+
4436 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07,
+
4437 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39,
+
4438 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
+
4439 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
+
4440 0xfa, 0x88, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
+
4441 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f,
+
4442 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x15,
+
4443 0x23, 0x11, 0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd,
+
4444 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
+
4445 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f,
+
4446 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11,
+
4447 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8,
+
4448 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8,
+
4449 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
+
4450 0x00, 0x07, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
4451 0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
+
4452 0x08, 0x84, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88,
+
4453 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
+
4454 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
+
4455 0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8,
+
4456 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
+
4457 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x13, 0x00, 0x1d,
+
4458 0x40, 0x0c, 0x09, 0x0b, 0x08, 0x08, 0x0e, 0x05, 0x12, 0x01, 0x01, 0x0f,
+
4459 0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
+
4460 0x11, 0x33, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21,
+
4461 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21,
+
4462 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01,
+
4463 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x02, 0x84,
+
4464 0x6c, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00,
+
4465 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x0b,
+
4466 0x00, 0x19, 0x40, 0x0a, 0x08, 0x05, 0x01, 0x04, 0x05, 0x04, 0x05, 0x04,
+
4467 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
+
4468 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21,
+
4469 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
+
4470 0x84, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0x02, 0x02, 0xfa, 0x88,
+
4471 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
+
4472 0x00, 0x19, 0x40, 0x0a, 0x03, 0x06, 0x0a, 0x07, 0x06, 0x07, 0x06, 0x07,
+
4473 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
+
4474 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21,
+
4475 0x15, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
+
4476 0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe,
+
4477 0x00, 0x05, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13,
+
4478 0x00, 0x27, 0x00, 0x36, 0x00, 0x42, 0x00, 0x4e, 0x00, 0x1b, 0x40, 0x09,
+
4479 0x2f, 0x28, 0x43, 0x37, 0x3d, 0x49, 0x06, 0x14, 0x00, 0xb8, 0x01, 0x40,
+
4480 0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30,
+
4481 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
+
4482 0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
+
4483 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x37, 0x32, 0x16,
+
4484 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36,
+
4485 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
4486 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
4487 0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
+
4488 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b,
+
4489 0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x1e, 0x38, 0x12,
+
4490 0x15, 0x13, 0x2a, 0x16, 0x10, 0x1e, 0x18, 0x09, 0x1b, 0x16, 0x36, 0x25,
+
4491 0x0d, 0x14, 0x14, 0x0d, 0x0c, 0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c,
+
4492 0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
+
4493 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c,
+
4494 0x21, 0x22, 0x3a, 0x2d, 0x19, 0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c,
+
4495 0x1a, 0x90, 0x1f, 0x1a, 0x20, 0x1a, 0x18, 0x0d, 0x16, 0x0f, 0x22, 0x1b,
+
4496 0x1c, 0x1c, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
+
4497 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x00, 0x05, 0x00, 0x29, 0x00, 0x63,
+
4498 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x37, 0x00, 0x43,
+
4499 0x00, 0x4f, 0x00, 0x1b, 0x40, 0x09, 0x28, 0x30, 0x44, 0x38, 0x4a, 0x3e,
+
4500 0x06, 0x14, 0x00, 0xb8, 0x01, 0x40, 0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
+
4501 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35,
+
4502 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x27,
+
4503 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15,
+
4504 0x14, 0x1e, 0x02, 0x37, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x33, 0x32,
+
4505 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36,
+
4506 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36,
+
4507 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20,
+
4508 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22,
+
4509 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19,
+
4510 0x2d, 0x3b, 0x22, 0x1e, 0x37, 0x15, 0x1a, 0x09, 0x19, 0x1d, 0x11, 0x0f,
+
4511 0x1c, 0x1b, 0x0c, 0x16, 0x13, 0x38, 0x60, 0x0d, 0x14, 0x14, 0x0d, 0x0c,
+
4512 0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x14, 0x14, 0x63, 0x21,
+
4513 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b,
+
4514 0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c, 0x21, 0x22, 0x3a, 0x2d, 0x19,
+
4515 0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c, 0x1a, 0x2d, 0x1d, 0x1a, 0x22,
+
4516 0x0e, 0x17, 0x0c, 0x0b, 0x16, 0x10, 0x20, 0x19, 0x20, 0x7f, 0x14, 0x0c,
+
4517 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
+
4518 0x0c, 0x14, 0x00, 0x04, 0x00, 0x28, 0x00, 0x63, 0x01, 0xc9, 0x02, 0x05,
+
4519 0x00, 0x13, 0x00, 0x23, 0x00, 0x2f, 0x00, 0x3b, 0x00, 0x16, 0xb7, 0x14,
+
4520 0x1c, 0x30, 0x24, 0x2a, 0x36, 0x06, 0x00, 0xb8, 0x01, 0x40, 0xb0, 0x0a,
+
4521 0x00, 0x2f, 0x1a, 0xcc, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
+
4522 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
+
4523 0x27, 0x32, 0x36, 0x37, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27,
+
4524 0x07, 0x16, 0x16, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
+
4525 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
+
4526 0x15, 0x14, 0x16, 0xf8, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b,
+
4527 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2a, 0x1e, 0x37, 0x14, 0x17,
+
4528 0x0c, 0x1a, 0x1d, 0x0f, 0x10, 0x1e, 0x19, 0x09, 0x1a, 0x15, 0x37, 0x25,
+
4529 0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x13, 0x13, 0x94, 0x0c, 0x14, 0x14, 0x0c,
+
4530 0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
+
4531 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x5b, 0x20, 0x19, 0x20,
+
4532 0x10, 0x16, 0x0b, 0x0c, 0x17, 0x0e, 0x22, 0x1a, 0x1d, 0x7f, 0x14, 0x0c,
+
4533 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
+
4534 0x0c, 0x14, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xe7, 0x02, 0x59,
+
4535 0x00, 0x0b, 0x00, 0x29, 0x00, 0x17, 0x40, 0x09, 0x1b, 0x18, 0x0b, 0x1d,
+
4536 0x1d, 0x06, 0x0c, 0x07, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
+
4537 0x33, 0x33, 0x33, 0x30, 0x31, 0x65, 0x1e, 0x02, 0x17, 0x17, 0x21, 0x37,
+
4538 0x3e, 0x02, 0x35, 0x13, 0x1e, 0x06, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22,
+
4539 0x27, 0x23, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x05, 0x35,
+
4540 0x01, 0x09, 0x01, 0x1d, 0x3f, 0x34, 0x03, 0xfe, 0xba, 0x03, 0x37, 0x40,
+
4541 0x1c, 0x21, 0x02, 0x1a, 0x27, 0x2d, 0x2d, 0x25, 0x17, 0x1d, 0x30, 0x1e,
+
4542 0x55, 0x2b, 0x04, 0x2b, 0x55, 0x1d, 0x31, 0x1d, 0x18, 0x26, 0x2f, 0x2e,
+
4543 0x26, 0x18, 0xfa, 0x4e, 0x64, 0x32, 0x04, 0x12, 0x12, 0x03, 0x31, 0x65,
+
4544 0x4f, 0x01, 0x5f, 0x24, 0x35, 0x2a, 0x25, 0x27, 0x2d, 0x3b, 0x27, 0x23,
+
4545 0x35, 0x1d, 0x37, 0x37, 0x1d, 0x35, 0x23, 0x27, 0x3b, 0x2d, 0x27, 0x25,
+
4546 0x2a, 0x35, 0x24, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x01, 0xef,
+
4547 0x02, 0x49, 0x00, 0x06, 0x00, 0x2a, 0x00, 0x31, 0x00, 0x25, 0x40, 0x10,
+
4548 0x2c, 0x12, 0x0f, 0x0f, 0x06, 0x15, 0x15, 0x24, 0x2f, 0x30, 0x30, 0x01,
+
4549 0x03, 0x02, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4550 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x77,
+
4551 0x15, 0x23, 0x37, 0x36, 0x36, 0x35, 0x37, 0x32, 0x16, 0x16, 0x15, 0x14,
+
4552 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26,
+
4553 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
+
4554 0x32, 0x16, 0x16, 0x15, 0x14, 0x07, 0x07, 0x33, 0x14, 0x16, 0x17, 0x17,
+
4555 0x23, 0xfa, 0x5e, 0x03, 0x20, 0x19, 0x98, 0x23, 0x3a, 0x22, 0x22, 0x3a,
+
4556 0x23, 0x28, 0x40, 0x0e, 0x0e, 0x3f, 0x28, 0x23, 0x3b, 0x22, 0x22, 0x3b,
+
4557 0x23, 0x05, 0x10, 0x22, 0x3b, 0x23, 0x23, 0x3a, 0x22, 0x10, 0x6f, 0x22,
+
4558 0x19, 0x20, 0x03, 0x5e, 0xfa, 0xfa, 0x12, 0x04, 0x6d, 0x77, 0x91, 0x22,
+
4559 0x3a, 0x23, 0x23, 0x3b, 0x22, 0x2c, 0x22, 0x22, 0x2c, 0x22, 0x3b, 0x23,
+
4560 0x23, 0x3a, 0x22, 0x1d, 0x22, 0x23, 0x3a, 0x22, 0x22, 0x3a, 0x23, 0x22,
+
4561 0x1d, 0x91, 0x77, 0x6d, 0x04, 0x12, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x00,
+
4562 0x01, 0xe8, 0x02, 0x4f, 0x00, 0x21, 0x00, 0x13, 0xb2, 0x1d, 0x19, 0x0d,
+
4563 0xb8, 0xff, 0xff, 0xb2, 0x72, 0x19, 0x00, 0x00, 0x2f, 0x32, 0x2b, 0x11,
+
4564 0x39, 0x30, 0x31, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x05, 0x15,
+
4565 0x23, 0x34, 0x2e, 0x05, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
+
4566 0x15, 0x33, 0x34, 0x36, 0x36, 0x01, 0x76, 0x20, 0x33, 0x1f, 0x18, 0x26,
+
4567 0x2f, 0x2f, 0x26, 0x18, 0x28, 0x18, 0x26, 0x2f, 0x2f, 0x26, 0x18, 0x1f,
+
4568 0x34, 0x1f, 0x22, 0x36, 0x1f, 0x0a, 0x23, 0x37, 0x02, 0x4f, 0x20, 0x38,
+
4569 0x24, 0x30, 0x4b, 0x3d, 0x36, 0x36, 0x3b, 0x47, 0x2d, 0x2d, 0x47, 0x3b,
+
4570 0x36, 0x36, 0x3d, 0x4b, 0x30, 0x24, 0x38, 0x20, 0x1a, 0x33, 0x25, 0x25,
+
4571 0x32, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x01, 0xe5, 0x02, 0x5c,
+
4572 0x00, 0x07, 0x00, 0x08, 0xb1, 0x00, 0x04, 0x00, 0x2f, 0x2f, 0x30, 0x31,
+
4573 0x53, 0x33, 0x13, 0x15, 0x03, 0x23, 0x03, 0x35, 0xf0, 0x1e, 0xd7, 0xd7,
+
4574 0x1e, 0xe1, 0x02, 0x5c, 0xfe, 0xe6, 0x1e, 0xfe, 0xdd, 0x01, 0x23, 0x1e,
+
4575 0x00, 0x01, 0x00, 0x09, 0xff, 0xf0, 0x01, 0xd6, 0x02, 0x77, 0x00, 0x0d,
+
4576 0x00, 0x0f, 0xb6, 0x09, 0x07, 0x08, 0x01, 0x04, 0x06, 0x00, 0x00, 0x2f,
+
4577 0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x03, 0x07, 0x27, 0x37,
+
4578 0x17, 0x3e, 0x03, 0x01, 0x72, 0x64, 0x16, 0x44, 0x54, 0x5a, 0x2d, 0x98,
+
4579 0x41, 0x57, 0x21, 0x3d, 0x35, 0x2c, 0x02, 0x77, 0x1e, 0x64, 0xb4, 0x9c,
+
4580 0x82, 0x33, 0xa9, 0x38, 0x6b, 0x2f, 0x6c, 0x7f, 0x9a, 0x00, 0x00, 0x01,
+
4581 0x00, 0x00, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x79, 0x00, 0x0e, 0x00, 0x12,
+
4582 0x40, 0x09, 0x06, 0x09, 0x0a, 0x07, 0x08, 0x01, 0x06, 0x05, 0x00, 0x00,
+
4583 0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x07, 0x27,
+
4584 0x27, 0x37, 0x17, 0x27, 0x3e, 0x03, 0x01, 0x7e, 0x74, 0x27, 0x72, 0x87,
+
4585 0x47, 0x5a, 0x31, 0x71, 0x31, 0x4c, 0x21, 0x4f, 0x52, 0x4a, 0x02, 0x79,
+
4586 0x27, 0x85, 0xdc, 0xaf, 0x42, 0x30, 0xf3, 0x19, 0xfd, 0x1f, 0x22, 0x67,
+
4587 0x88, 0xa7, 0xff, 0xff, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
+
4588 0x06, 0x06, 0x02, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0c,
+
4589 0x01, 0xf4, 0x02, 0x75, 0x00, 0x09, 0x00, 0x12, 0x00, 0x0a, 0xb2, 0x0a,
+
4590 0x0e, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x27, 0x3e, 0x02,
+
4591 0x37, 0x17, 0x0e, 0x02, 0x17, 0x26, 0x02, 0x27, 0x37, 0x1e, 0x02, 0x17,
+
4592 0x45, 0x45, 0x40, 0x8a, 0x9e, 0x5a, 0x32, 0x58, 0x96, 0x83, 0xf1, 0x4f,
+
4593 0x71, 0x23, 0x54, 0x16, 0x3b, 0x4f, 0x34, 0x0c, 0x39, 0x60, 0xac, 0xa6,
+
4594 0x58, 0x3c, 0x51, 0xa7, 0xb0, 0x5d, 0x76, 0x01, 0x26, 0xb2, 0x19, 0x6f,
+
4595 0xc4, 0xa8, 0x48, 0x00, 0x00, 0x02, 0x00, 0x04, 0xff, 0xfd, 0x02, 0x0b,
+
4596 0x02, 0x91, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x0e, 0xb4, 0x00, 0x0e, 0x06,
+
4597 0x14, 0x0e, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27,
+
4598 0x3e, 0x03, 0x37, 0x17, 0x0e, 0x05, 0x17, 0x2e, 0x03, 0x27, 0x37, 0x16,
+
4599 0x12, 0x17, 0x6a, 0x66, 0x37, 0x66, 0x66, 0x70, 0x43, 0x51, 0x31, 0x51,
+
4600 0x46, 0x3e, 0x3c, 0x3d, 0xea, 0x2e, 0x4e, 0x42, 0x33, 0x12, 0x77, 0x20,
+
4601 0x6f, 0x56, 0x06, 0x53, 0x50, 0x8c, 0x7d, 0x76, 0x3b, 0x4e, 0x2c, 0x54,
+
4602 0x52, 0x53, 0x57, 0x5e, 0x3e, 0x39, 0x86, 0x9b, 0xae, 0x61, 0x2b, 0xa6,
+
4603 0xfe, 0xe0, 0x80, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xf5, 0x01, 0xd4,
+
4604 0x02, 0x79, 0x00, 0x32, 0x00, 0x3e, 0x00, 0x29, 0x40, 0x14, 0x38, 0x1e,
+
4605 0x33, 0x15, 0x11, 0x11, 0x15, 0x1e, 0x15, 0x1e, 0x15, 0x00, 0x22, 0x0a,
+
4606 0x03, 0x72, 0x2c, 0x00, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
+
4607 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30,
+
4608 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
+
4609 0x02, 0x15, 0x15, 0x23, 0x35, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35,
+
4610 0x34, 0x3e, 0x02, 0x17, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
+
4611 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x32,
+
4612 0x3e, 0x02, 0x35, 0x26, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x27, 0x32,
+
4613 0x60, 0x4b, 0x2d, 0x2a, 0x46, 0x56, 0x2c, 0x28, 0x48, 0x36, 0x1f, 0x46,
+
4614 0x11, 0x2e, 0x1d, 0x26, 0x3c, 0x22, 0x1a, 0x37, 0x54, 0x38, 0x1f, 0x38,
+
4615 0x28, 0x22, 0x3e, 0x30, 0x1c, 0x22, 0x3b, 0x49, 0x27, 0x1c, 0x36, 0x19,
+
4616 0x20, 0x20, 0x4a, 0x11, 0x15, 0x1f, 0x14, 0x0a, 0x35, 0x44, 0x22, 0x24,
+
4617 0x0b, 0x27, 0x50, 0x7a, 0x54, 0x52, 0x79, 0x4e, 0x26, 0x1c, 0x39, 0x58,
+
4618 0x3a, 0xe5, 0x23, 0x15, 0x16, 0x22, 0x3d, 0x26, 0x23, 0x39, 0x29, 0x14,
+
4619 0x03, 0x25, 0x38, 0x20, 0x1d, 0x3e, 0x5e, 0x41, 0x46, 0x65, 0x42, 0x20,
+
4620 0x11, 0x12, 0x38, 0x15, 0x17, 0xee, 0x11, 0x26, 0x3e, 0x2d, 0x04, 0x14,
+
4621 0x29, 0x1d, 0x24, 0x28, 0x00, 0x03, 0x00, 0x22, 0xff, 0xf3, 0x01, 0xe3,
+
4622 0x02, 0x76, 0x00, 0x2e, 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x23, 0x40, 0x15,
+
4623 0x01, 0x33, 0x2d, 0x20, 0x34, 0x1f, 0x0e, 0x3e, 0x08, 0x05, 0x46, 0x16,
+
4624 0x03, 0x72, 0x2f, 0x05, 0x09, 0x72, 0x2e, 0x00, 0x09, 0x00, 0x3f, 0x32,
+
4625 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x45, 0x27, 0x0e,
+
4626 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x26, 0x26,
+
4627 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02,
+
4628 0x07, 0x17, 0x3e, 0x03, 0x37, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x07,
+
4629 0x17, 0x25, 0x32, 0x36, 0x36, 0x37, 0x27, 0x0e, 0x03, 0x15, 0x14, 0x1e,
+
4630 0x02, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
+
4631 0x14, 0x16, 0x16, 0x01, 0x9b, 0x35, 0x14, 0x35, 0x3c, 0x20, 0x2f, 0x48,
+
4632 0x28, 0x11, 0x1f, 0x2e, 0x1c, 0x23, 0x21, 0x16, 0x27, 0x33, 0x1d, 0x29,
+
4633 0x3d, 0x23, 0x10, 0x1c, 0x26, 0x17, 0x69, 0x0b, 0x0f, 0x0a, 0x05, 0x01,
+
4634 0x02, 0x03, 0x46, 0x0b, 0x18, 0x19, 0x0e, 0x42, 0xfe, 0xee, 0x16, 0x27,
+
4635 0x25, 0x10, 0x76, 0x13, 0x1c, 0x14, 0x0b, 0x0d, 0x16, 0x1d, 0x26, 0x11,
+
4636 0x1a, 0x12, 0x09, 0x23, 0x1a, 0x12, 0x1d, 0x11, 0x0b, 0x1a, 0x0d, 0x54,
+
4637 0x19, 0x25, 0x13, 0x29, 0x46, 0x2a, 0x20, 0x39, 0x33, 0x2c, 0x10, 0x2a,
+
4638 0x4d, 0x23, 0x1c, 0x31, 0x24, 0x14, 0x27, 0x3c, 0x22, 0x1a, 0x33, 0x2c,
+
4639 0x25, 0x0c, 0x92, 0x0d, 0x18, 0x17, 0x17, 0x0c, 0x03, 0x06, 0x03, 0x30,
+
4640 0x15, 0x27, 0x25, 0x13, 0x55, 0x17, 0x0f, 0x1c, 0x13, 0xa3, 0x0b, 0x1f,
+
4641 0x23, 0x25, 0x13, 0x14, 0x21, 0x19, 0x0e, 0x01, 0x3d, 0x09, 0x18, 0x1f,
+
4642 0x21, 0x0f, 0x1e, 0x29, 0x11, 0x1e, 0x14, 0x0f, 0x24, 0x29, 0x00, 0x01,
+
4643 0x00, 0x38, 0xff, 0xbc, 0x01, 0xbd, 0x02, 0x99, 0x00, 0x10, 0x00, 0x10,
+
4644 0xb6, 0x0d, 0x00, 0x0f, 0x0a, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b, 0x32,
+
4645 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36,
+
4646 0x33, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0xe6, 0x24, 0x41, 0x2e, 0x1b,
+
4647 0x2f, 0x6c, 0x5d, 0x8d, 0x48, 0x46, 0x44, 0x01, 0x84, 0x04, 0x1d, 0x31,
+
4648 0x3f, 0x24, 0x2b, 0x4b, 0x2e, 0xfd, 0x23, 0x02, 0x9a, 0xfd, 0x66, 0x00,
+
4649 0x00, 0x02, 0x00, 0x3c, 0xff, 0xc9, 0x01, 0xa5, 0x02, 0xa2, 0x00, 0x4c,
+
4650 0x00, 0x63, 0x00, 0x1e, 0x40, 0x12, 0x12, 0x48, 0x45, 0x4d, 0x51, 0x1a,
+
4651 0x57, 0x1f, 0x22, 0x37, 0x0a, 0x00, 0x33, 0x26, 0x01, 0x72, 0x0d, 0x00,
+
4652 0x00, 0x2f, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22,
+
4653 0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
+
4654 0x35, 0x34, 0x26, 0x26, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37,
+
4655 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07,
+
4656 0x26, 0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e,
+
4657 0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x06, 0x06, 0x07, 0x16, 0x16, 0x15,
+
4658 0x14, 0x0e, 0x02, 0x13, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x27,
+
4659 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x16, 0x16, 0xee, 0x34, 0x5e,
+
4660 0x20, 0x39, 0x06, 0x02, 0x02, 0x0a, 0x0e, 0x0b, 0x18, 0x1e, 0x11, 0x16,
+
4661 0x24, 0x17, 0x0d, 0x13, 0x2f, 0x2b, 0x33, 0x3f, 0x1c, 0x0b, 0x15, 0x1d,
+
4662 0x12, 0x20, 0x21, 0x2c, 0x4b, 0x30, 0x22, 0x3d, 0x31, 0x11, 0x40, 0x02,
+
4663 0x04, 0x01, 0x02, 0x10, 0x17, 0x1e, 0x12, 0x16, 0x26, 0x15, 0x10, 0x23,
+
4664 0x36, 0x25, 0x17, 0x24, 0x1c, 0x0f, 0x12, 0x20, 0x15, 0x1e, 0x1f, 0x1a,
+
4665 0x2e, 0x40, 0x1f, 0x0b, 0x0d, 0x07, 0x0c, 0x19, 0x25, 0x19, 0x27, 0x09,
+
4666 0x0e, 0x0b, 0x05, 0x0b, 0x17, 0x25, 0x19, 0x10, 0x19, 0x37, 0x2b, 0x2c,
+
4667 0x49, 0x01, 0x07, 0x0b, 0x13, 0x0d, 0x0b, 0x0d, 0x08, 0x0b, 0x14, 0x1a,
+
4668 0x0f, 0x15, 0x1e, 0x1a, 0x0c, 0x11, 0x26, 0x30, 0x1e, 0x11, 0x1d, 0x1c,
+
4669 0x15, 0x06, 0x13, 0x37, 0x25, 0x27, 0x42, 0x29, 0x16, 0x2a, 0x1e, 0x38,
+
4670 0x03, 0x06, 0x04, 0x0d, 0x18, 0x13, 0x0b, 0x13, 0x1f, 0x14, 0x14, 0x1c,
+
4671 0x16, 0x17, 0x0e, 0x09, 0x19, 0x1e, 0x24, 0x15, 0x14, 0x27, 0x1d, 0x09,
+
4672 0x16, 0x36, 0x20, 0x22, 0x39, 0x29, 0x18, 0x01, 0x1f, 0x07, 0x11, 0x16,
+
4673 0x0d, 0x10, 0x18, 0x15, 0x12, 0x09, 0x0e, 0x03, 0x0c, 0x0f, 0x12, 0x0a,
+
4674 0x0f, 0x19, 0x14, 0x11, 0x08, 0x05, 0x08, 0x00, 0x00, 0x03, 0x00, 0x0b,
+
4675 0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x25, 0x00, 0x3a, 0x00, 0x4e,
+
4676 0x00, 0x18, 0xb6, 0x00, 0x1e, 0x15, 0x09, 0x04, 0x45, 0x30, 0xb8, 0x01,
+
4677 0xc0, 0xb1, 0x3b, 0x26, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39,
+
4678 0x30, 0x31, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
+
4679 0x16, 0x17, 0x07, 0x26, 0x34, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22,
+
4680 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17,
+
4681 0x06, 0x06, 0x07, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
+
4682 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34,
+
4683 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x02,
+
4684 0x29, 0x40, 0x26, 0x17, 0x27, 0x31, 0x1a, 0x37, 0x44, 0x0b, 0x3b, 0x04,
+
4685 0x01, 0x09, 0x0e, 0x07, 0x15, 0x0b, 0x0c, 0x1b, 0x19, 0x10, 0x16, 0x26,
+
4686 0x18, 0x0e, 0x1b, 0x14, 0x06, 0x33, 0x14, 0x42, 0x2c, 0x32, 0x57, 0x43,
+
4687 0x25, 0x26, 0x43, 0x58, 0x32, 0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d,
+
4688 0x4a, 0x26, 0x28, 0x47, 0x35, 0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46,
+
4689 0x35, 0x1f, 0x1f, 0x35, 0x46, 0x7c, 0x29, 0x47, 0x28, 0x20, 0x34, 0x28,
+
4690 0x16, 0x35, 0x2b, 0x13, 0x06, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x06, 0x0a,
+
4691 0x14, 0x21, 0x16, 0x1c, 0x2c, 0x1b, 0x0a, 0x13, 0x0d, 0x1e, 0x21, 0x25,
+
4692 0x69, 0x28, 0x46, 0x5d, 0x34, 0x35, 0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c,
+
4693 0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a, 0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a,
+
4694 0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d, 0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00,
+
4695 0x00, 0x04, 0x00, 0x0b, 0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x0e,
+
4696 0x00, 0x17, 0x00, 0x2c, 0x00, 0x40, 0x00, 0x1c, 0x40, 0x0a, 0x00, 0x03,
+
4697 0x02, 0x0d, 0x0f, 0x17, 0x05, 0x07, 0x37, 0x22, 0xb8, 0x01, 0xc0, 0xb1,
+
4698 0x2d, 0x18, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31,
+
4699 0x65, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
+
4700 0x06, 0x07, 0x17, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23,
+
4701 0x13, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
+
4702 0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
+
4703 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x3f, 0x39, 0x37,
+
4704 0x33, 0x5b, 0x2b, 0x34, 0x18, 0x1b, 0x1b, 0x3c, 0xa5, 0x2d, 0x1f, 0x1f,
+
4705 0x20, 0x21, 0x2a, 0x2d, 0x32, 0x57, 0x43, 0x25, 0x26, 0x43, 0x58, 0x32,
+
4706 0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d, 0x4a, 0x26, 0x28, 0x47, 0x35,
+
4707 0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46, 0x35, 0x1f, 0x1f, 0x35, 0x46,
+
4708 0x87, 0x77, 0x74, 0x01, 0x19, 0x15, 0x25, 0x19, 0x18, 0x2a, 0x08, 0x77,
+
4709 0x99, 0x14, 0x13, 0x13, 0x14, 0xfe, 0x9d, 0x28, 0x46, 0x5d, 0x34, 0x35,
+
4710 0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c, 0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a,
+
4711 0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a, 0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d,
+
4712 0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00, 0x00, 0x02, 0x00, 0x12, 0x01, 0x40,
+
4713 0x01, 0xe3, 0x02, 0x7b, 0x00, 0x07, 0x00, 0x14, 0x00, 0x2b, 0x40, 0x15,
+
4714 0x0c, 0x09, 0x09, 0x06, 0x02, 0x02, 0x0b, 0x13, 0x10, 0x03, 0x12, 0x12,
+
4715 0x00, 0x0f, 0x08, 0x08, 0x00, 0x00, 0x03, 0x03, 0x72, 0x00, 0x2b, 0x32,
+
4716 0x2f, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x17, 0x39, 0x32, 0x11, 0x33,
+
4717 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x15, 0x23,
+
4718 0x11, 0x33, 0x11, 0x33, 0x17, 0x37, 0x33, 0x11, 0x23, 0x35, 0x07, 0x23,
+
4719 0x27, 0x15, 0x64, 0x52, 0xdc, 0x54, 0x6d, 0x2a, 0x43, 0x47, 0x28, 0x34,
+
4720 0x33, 0x14, 0x2e, 0x01, 0x40, 0x01, 0x0b, 0x30, 0x30, 0xfe, 0xf5, 0x01,
+
4721 0x3b, 0x8b, 0x8b, 0xfe, 0xc5, 0xc9, 0x5f, 0x5e, 0xc8, 0x00, 0x00, 0x02,
+
4722 0x00, 0x75, 0x01, 0x76, 0x01, 0x8b, 0x02, 0x88, 0x00, 0x10, 0x00, 0x20,
+
4723 0x00, 0x10, 0xb6, 0x11, 0x00, 0xc0, 0x19, 0x09, 0x03, 0x72, 0x00, 0x2b,
+
4724 0x32, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34,
+
4725 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
+
4726 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
+
4727 0x16, 0x16, 0x01, 0x00, 0x26, 0x40, 0x25, 0x17, 0x26, 0x32, 0x1c, 0x26,
+
4728 0x3f, 0x26, 0x25, 0x3f, 0x27, 0x14, 0x1e, 0x12, 0x12, 0x1d, 0x14, 0x13,
+
4729 0x1f, 0x12, 0x12, 0x1f, 0x01, 0x76, 0x25, 0x3e, 0x26, 0x1d, 0x32, 0x25,
+
4730 0x15, 0x26, 0x3e, 0x25, 0x25, 0x3e, 0x26, 0x40, 0x14, 0x22, 0x14, 0x14,
+
4731 0x22, 0x15, 0x15, 0x22, 0x14, 0x14, 0x22, 0x14, 0x00, 0x01, 0x00, 0xca,
+
4732 0x02, 0x05, 0x01, 0x30, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
+
4733 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xfc, 0x32,
+
4734 0x17, 0x4f, 0x02, 0x05, 0xb8, 0x00, 0xff, 0xff, 0x00, 0x8c, 0x02, 0x05,
+
4735 0x01, 0x76, 0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x46, 0x00, 0x00, 0x06,
+
4736 0x03, 0x55, 0xc2, 0x00, 0x00, 0x01, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
+
4737 0x02, 0x8c, 0x00, 0x03, 0x00, 0x0a, 0xb3, 0x01, 0x03, 0x72, 0x00, 0x00,
+
4738 0x2f, 0x2b, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x97, 0x03,
+
4739 0x23, 0xfc, 0xdd, 0x00, 0x00, 0x02, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
+
4740 0x02, 0x8c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb5, 0x05, 0x04, 0x00,
+
4741 0x01, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
+
4742 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x4f, 0x4f, 0x01, 0x23,
+
4743 0x01, 0x69, 0xfe, 0x97, 0xfe, 0x46, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01,
+
4744 0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x0b, 0x00, 0x18,
+
4745 0x40, 0x0a, 0x07, 0x03, 0x0a, 0x02, 0x02, 0x03, 0x03, 0x05, 0x01, 0x00,
+
4746 0x00, 0x2f, 0x3f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31,
+
4747 0x57, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
+
4748 0xd2, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0x97, 0x02, 0x1f, 0x46, 0xbe, 0xbe,
+
4749 0x46, 0xfd, 0xe1, 0x00, 0x00, 0x02, 0x00, 0x12, 0xff, 0xf8, 0x01, 0xb8,
+
4750 0x02, 0xac, 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x20, 0x40, 0x11, 0x11, 0x28,
+
4751 0x1a, 0x37, 0x04, 0x1f, 0x05, 0x05, 0x0b, 0x32, 0x1f, 0x01, 0x72, 0x00,
+
4752 0x0b, 0x13, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x12,
+
4753 0x17, 0x39, 0x30, 0x31, 0x65, 0x32, 0x3e, 0x02, 0x37, 0x33, 0x0e, 0x03,
+
4754 0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, 0x0e, 0x02, 0x07, 0x35, 0x3e, 0x02,
+
4755 0x37, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06,
+
4756 0x06, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x13, 0x34, 0x26, 0x26, 0x23, 0x22,
+
4757 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x01, 0x1b, 0x13, 0x1d, 0x12, 0x0a,
+
4758 0x01, 0x50, 0x02, 0x14, 0x29, 0x3f, 0x2e, 0x28, 0x3b, 0x27, 0x13, 0x11,
+
4759 0x20, 0x1d, 0x0f, 0x10, 0x20, 0x1e, 0x0f, 0x24, 0x47, 0x33, 0x26, 0x38,
+
4760 0x26, 0x13, 0x2e, 0x5e, 0x4c, 0x0b, 0x15, 0x1c, 0x45, 0x0e, 0x1c, 0x16,
+
4761 0x12, 0x1e, 0x11, 0x29, 0x39, 0x1f, 0x3e, 0x0f, 0x1d, 0x29, 0x19, 0x29,
+
4762 0x43, 0x2f, 0x19, 0x1a, 0x2f, 0x42, 0x2a, 0x3a, 0x06, 0x0a, 0x08, 0x04,
+
4763 0x46, 0x04, 0x09, 0x0a, 0x06, 0xd5, 0x36, 0x4c, 0x27, 0x15, 0x2b, 0x3c,
+
4764 0x26, 0x38, 0x62, 0x50, 0x1d, 0x55, 0x1e, 0x2b, 0x1b, 0x0c, 0x01, 0xcf,
+
4765 0x1d, 0x2a, 0x16, 0x11, 0x27, 0x20, 0xc5, 0x14, 0x37, 0x48, 0x00, 0x01,
+
4766 0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x13, 0x00, 0x29,
+
4767 0x40, 0x13, 0x0f, 0x03, 0x12, 0x03, 0x02, 0x02, 0x00, 0x0b, 0x07, 0x0e,
+
4768 0x06, 0x06, 0x07, 0x07, 0x00, 0x09, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b,
+
4769 0x11, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33,
+
4770 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x23, 0x35, 0x33, 0x11, 0x23,
+
4771 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23,
+
4772 0x15, 0xd2, 0xa4, 0xa4, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0xa3, 0xa3, 0x97,
+
4773 0xcf, 0x46, 0x01, 0x0a, 0x46, 0xbe, 0xbe, 0x46, 0xfe, 0xf6, 0x46, 0xcf,
+
4774 0x00, 0x04, 0x00, 0x2a, 0x00, 0x00, 0x01, 0xd5, 0x02, 0x7a, 0x00, 0x0e,
+
4775 0x00, 0x12, 0x00, 0x22, 0x00, 0x32, 0x00, 0x27, 0x40, 0x14, 0x0f, 0x10,
+
4776 0x23, 0x13, 0x2b, 0x1b, 0x1b, 0x04, 0x03, 0x0c, 0x0d, 0x04, 0x00, 0x05,
+
4777 0x01, 0x04, 0x72, 0x0b, 0x00, 0x0c, 0x00, 0x3f, 0x32, 0x2b, 0x32, 0x12,
+
4778 0x17, 0x39, 0x33, 0x2f, 0x33, 0xdc, 0x32, 0xce, 0x32, 0x30, 0x31, 0x73,
+
4779 0x11, 0x33, 0x13, 0x07, 0x11, 0x33, 0x14, 0x06, 0x15, 0x11, 0x23, 0x03,
+
4780 0x37, 0x11, 0x13, 0x35, 0x33, 0x15, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34,
+
4781 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
+
4782 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
+
4783 0x16, 0x16, 0x2a, 0x47, 0x71, 0x19, 0x4a, 0x07, 0x38, 0x7e, 0x19, 0xbe,
+
4784 0xa8, 0x55, 0x17, 0x26, 0x16, 0x18, 0x27, 0x17, 0x16, 0x26, 0x16, 0x18,
+
4785 0x26, 0x16, 0x0b, 0x11, 0x0b, 0x0a, 0x11, 0x0b, 0x0b, 0x12, 0x0c, 0x0b,
+
4786 0x13, 0x02, 0x6f, 0xfe, 0x11, 0x05, 0x01, 0xf4, 0x08, 0x0a, 0x0c, 0xfd,
+
4787 0xaf, 0x02, 0x0a, 0x05, 0xfd, 0xf1, 0x01, 0x64, 0x2f, 0x2f, 0x4d, 0x19,
+
4788 0x2c, 0x1d, 0x1e, 0x2e, 0x1b, 0x17, 0x2c, 0x20, 0x20, 0x2d, 0x19, 0x2c,
+
4789 0x0d, 0x19, 0x12, 0x13, 0x19, 0x0e, 0x0e, 0x19, 0x13, 0x11, 0x1a, 0x0d,
+
4790 0x00, 0x02, 0x00, 0x19, 0xff, 0xf9, 0x01, 0xdf, 0x01, 0xdd, 0x00, 0x19,
+
4791 0x00, 0x22, 0x00, 0x12, 0xb6, 0x22, 0x0e, 0x0e, 0x1e, 0x09, 0x12, 0x00,
+
4792 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22,
+
4793 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x21,
+
4794 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x13, 0x35,
+
4795 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0xfc, 0x4a, 0x65, 0x34, 0x28,
+
4796 0x42, 0x51, 0x28, 0x41, 0x66, 0x3c, 0xfe, 0x9e, 0x14, 0x44, 0x27, 0x40,
+
4797 0x4c, 0x1e, 0x1e, 0x14, 0x34, 0x49, 0x49, 0x10, 0x43, 0x2e, 0x2b, 0x3f,
+
4798 0x14, 0x07, 0x44, 0x6f, 0x3f, 0x3f, 0x5b, 0x3c, 0x1c, 0x3b, 0x6c, 0x4b,
+
4799 0x99, 0x14, 0x21, 0x35, 0x2f, 0x11, 0x20, 0x37, 0x20, 0x01, 0x16, 0x77,
+
4800 0x11, 0x22, 0x1e, 0x14, 0x78, 0x00, 0x00, 0x01, 0x00, 0x2e, 0xff, 0xb6,
+
4801 0x01, 0xc6, 0x00, 0x46, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x80,
+
4802 0x03, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x57, 0x35,
+
4803 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x2e, 0x3d, 0x01, 0x1d, 0x3e, 0x4a,
+
4804 0x90, 0x58, 0x58, 0x90, 0x00, 0x03, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca,
+
4805 0x02, 0x05, 0x00, 0x1f, 0x00, 0x26, 0x00, 0x2a, 0x00, 0x1d, 0x40, 0x0c,
+
4806 0x28, 0x29, 0x29, 0x0a, 0x21, 0x23, 0x23, 0x15, 0x0a, 0x27, 0x1f, 0x00,
+
4807 0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11,
+
4808 0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23,
+
4809 0x22, 0x2e, 0x02, 0x35, 0x33, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
+
4810 0x35, 0x34, 0x2e, 0x02, 0x23, 0x07, 0x23, 0x35, 0x37, 0x33, 0x15, 0x23,
+
4811 0x37, 0x17, 0x07, 0x27, 0xf9, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
+
4812 0x2b, 0x2b, 0x4c, 0x39, 0x20, 0x2c, 0x19, 0x2e, 0x3b, 0x22, 0x22, 0x3c,
+
4813 0x2e, 0x19, 0x19, 0x2e, 0x3c, 0x22, 0xa9, 0x27, 0x0b, 0x66, 0x4a, 0x01,
+
4814 0xb7, 0x1c, 0xb7, 0x02, 0x05, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
+
4815 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2d, 0x3d,
+
4816 0x21, 0x22, 0x3b, 0x2e, 0x19, 0x42, 0x65, 0x0a, 0x27, 0x1c, 0xb9, 0x1b,
+
4817 0xb9, 0x00, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd8, 0x01, 0xcf,
+
4818 0x00, 0x04, 0x00, 0x09, 0x00, 0x1d, 0x40, 0x0c, 0x00, 0x08, 0x08, 0x09,
+
4819 0x03, 0x05, 0x05, 0x09, 0x09, 0x04, 0x06, 0x02, 0x00, 0x2f, 0x33, 0x2f,
+
4820 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41,
+
4821 0x11, 0x21, 0x11, 0x37, 0x07, 0x11, 0x21, 0x11, 0x27, 0x01, 0xd8, 0xfe,
+
4822 0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x01, 0x48, 0xfe, 0xb8, 0x01, 0x48,
+
4823 0x87, 0xa1, 0xfe, 0xfe, 0x01, 0x02, 0x6b, 0x00, 0x00, 0x04, 0x00, 0x22,
+
4824 0xff, 0xd4, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x11,
+
4825 0x00, 0x1a, 0x00, 0x31, 0x40, 0x16, 0x0e, 0x14, 0x14, 0x0b, 0x1a, 0x1a,
+
4826 0x10, 0x09, 0x09, 0x17, 0x0c, 0x0c, 0x12, 0x08, 0x01, 0x40, 0x04, 0x00,
+
4827 0x00, 0xc0, 0x07, 0x01, 0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x2f, 0x32, 0x1a,
+
4828 0x10, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
+
4829 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x33, 0x15, 0x27, 0x33, 0x35,
+
4830 0x23, 0x27, 0x35, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23, 0x15, 0x27,
+
4831 0x33, 0x35, 0x33, 0x17, 0x27, 0x07, 0x27, 0x33, 0x8c, 0xdf, 0xb3, 0x87,
+
4832 0x87, 0x2c, 0x6a, 0xca, 0x1f, 0xc9, 0x69, 0xb3, 0x87, 0x78, 0x02, 0xbe,
+
4833 0xbf, 0x0d, 0x89, 0x2c, 0x9f, 0x9f, 0x2c, 0x47, 0x85, 0x9d, 0x30, 0xe3,
+
4834 0xe3, 0x30, 0x9d, 0x2c, 0x9e, 0x21, 0xd6, 0xd6, 0x21, 0x00, 0x00, 0x03,
+
4835 0x00, 0x3d, 0x00, 0x4e, 0x01, 0xb7, 0x02, 0x0a, 0x00, 0x03, 0x00, 0x07,
+
4836 0x00, 0x13, 0x00, 0x1c, 0x40, 0x0f, 0x10, 0x12, 0x11, 0x0e, 0x08, 0x0b,
+
4837 0x0c, 0x0a, 0x08, 0x07, 0x04, 0x07, 0x04, 0x03, 0x00, 0x00, 0x2f, 0xcd,
+
4838 0x32, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x21, 0x11, 0x21,
+
4839 0x37, 0x21, 0x11, 0x21, 0x17, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17,
+
4840 0x07, 0x27, 0x07, 0x27, 0x3d, 0x01, 0x7a, 0xfe, 0x86, 0x2c, 0x01, 0x22,
+
4841 0xfe, 0xde, 0x76, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50,
+
4842 0x50, 0x1b, 0x02, 0x0a, 0xfe, 0x44, 0x2c, 0x01, 0x64, 0xb2, 0x50, 0x1b,
+
4843 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x00, 0x03,
+
4844 0x00, 0x02, 0x00, 0x4e, 0x01, 0xce, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09,
+
4845 0x00, 0x15, 0x00, 0x22, 0x40, 0x15, 0x12, 0x14, 0x15, 0x11, 0x13, 0x04,
+
4846 0x10, 0x0a, 0x09, 0x0d, 0x0f, 0x0b, 0x0e, 0x0c, 0x0e, 0x08, 0x05, 0x05,
+
4847 0x03, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39,
+
4848 0x30, 0x31, 0x53, 0x21, 0x11, 0x21, 0x27, 0x17, 0x21, 0x11, 0x21, 0x07,
+
4849 0x33, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x07, 0x27,
+
4850 0x86, 0x01, 0x48, 0xfe, 0xb8, 0x84, 0x9d, 0x01, 0x03, 0xfe, 0xfd, 0x6a,
+
4851 0xc0, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b,
+
4852 0x02, 0x0a, 0xfe, 0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x50, 0x1b, 0x50,
+
4853 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x03, 0x00, 0x16,
+
4854 0x00, 0x4e, 0x01, 0xe2, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09, 0x00, 0x15,
+
4855 0x00, 0x22, 0x40, 0x15, 0x0e, 0x0c, 0x0b, 0x0f, 0x0d, 0x01, 0x0a, 0x10,
+
4856 0x06, 0x13, 0x15, 0x11, 0x12, 0x14, 0x0e, 0x08, 0x09, 0x08, 0x04, 0x09,
+
4857 0x03, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31,
+
4858 0x41, 0x17, 0x07, 0x21, 0x11, 0x01, 0x37, 0x27, 0x21, 0x11, 0x37, 0x17,
+
4859 0x07, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17, 0x01, 0x5e,
+
4860 0x84, 0x84, 0xfe, 0xb8, 0x01, 0x2f, 0x6a, 0x6a, 0xfe, 0xfd, 0xad, 0x50,
+
4861 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x02, 0x0a,
+
4862 0xde, 0xde, 0x01, 0xbc, 0xfe, 0x70, 0xb2, 0xb2, 0xfe, 0x9c, 0xb2, 0x50,
+
4863 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x02,
+
4864 0x00, 0x00, 0xff, 0xff, 0x01, 0xf4, 0x01, 0xcb, 0x00, 0x07, 0x00, 0x0b,
+
4865 0x00, 0x13, 0xb7, 0x08, 0x09, 0x09, 0x02, 0x03, 0x06, 0x05, 0x00, 0x00,
+
4866 0x2f, 0x32, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x03, 0x23,
+
4867 0x35, 0x33, 0x13, 0x33, 0x15, 0x03, 0x35, 0x33, 0x15, 0x01, 0x56, 0xd6,
+
4868 0x80, 0x9d, 0xd6, 0x81, 0xb1, 0xb1, 0x01, 0x01, 0x9e, 0x2e, 0xfe, 0x62,
+
4869 0x2e, 0x01, 0x9e, 0x2e, 0x2e, 0x00, 0x00, 0x06, 0x00, 0x16, 0x00, 0x06,
+
4870 0x01, 0xde, 0x01, 0xcd, 0x00, 0x33, 0x00, 0x41, 0x00, 0x4f, 0x00, 0x53,
+
4871 0x00, 0x61, 0x00, 0x6f, 0x00, 0x47, 0x40, 0x21, 0x22, 0x53, 0x53, 0x09,
+
4872 0x62, 0x15, 0x15, 0x43, 0x43, 0x09, 0x6b, 0x1a, 0x1a, 0x48, 0x11, 0x11,
+
4873 0x09, 0x23, 0x50, 0x50, 0x5d, 0x30, 0x30, 0x39, 0x39, 0x54, 0x2b, 0x2b,
+
4874 0x34, 0x00, 0x00, 0x08, 0x09, 0x00, 0x2f, 0xce, 0x32, 0x2f, 0x33, 0x33,
+
4875 0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33,
+
4876 0x2f, 0x33, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4877 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36,
+
4878 0x33, 0x33, 0x35, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
+
4879 0x16, 0x15, 0x15, 0x33, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
4880 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
+
4881 0x23, 0x22, 0x26, 0x35, 0x35, 0x23, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36,
+
4882 0x36, 0x35, 0x35, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13,
+
4883 0x33, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
+
4884 0x16, 0x17, 0x33, 0x35, 0x23, 0x17, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
+
4885 0x26, 0x23, 0x23, 0x15, 0x14, 0x16, 0x16, 0x03, 0x33, 0x32, 0x36, 0x36,
+
4886 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x75, 0x27, 0x38,
+
4887 0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b, 0x1a, 0x38, 0x27, 0x27, 0x37,
+
4888 0x4e, 0x37, 0x27, 0x27, 0x38, 0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b,
+
4889 0x1a, 0x38, 0x27, 0x27, 0x37, 0x4e, 0x37, 0x27, 0x0f, 0x16, 0x0d, 0x32,
+
4890 0x0e, 0x18, 0x0d, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
+
4891 0x0d, 0x0d, 0x18, 0x6c, 0x4e, 0x4e, 0xac, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
+
4892 0x0f, 0x32, 0x0d, 0x17, 0x24, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f,
+
4893 0x0e, 0x17, 0x0d, 0x06, 0x38, 0x27, 0x1a, 0x2a, 0x1a, 0x4d, 0x1a, 0x2a,
+
4894 0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32, 0x27, 0x38, 0x38, 0x27, 0x1a,
+
4895 0x2a, 0x1a, 0x4d, 0x1a, 0x2a, 0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32,
+
4896 0x27, 0x38, 0x2c, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
+
4897 0x0d, 0x01, 0x0a, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f, 0x0e, 0x17,
+
4898 0x0d, 0x79, 0x4d, 0xde, 0x0d, 0x18, 0x0e, 0x0f, 0x16, 0x0d, 0x32, 0x0e,
+
4899 0x18, 0x0d, 0x01, 0x0a, 0x0d, 0x17, 0x0e, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
+
4900 0x0f, 0x00, 0x00, 0x02, 0x00, 0x1f, 0x00, 0x21, 0x01, 0xce, 0x01, 0xc9,
+
4901 0x00, 0x0b, 0x00, 0x16, 0x00, 0x3a, 0x40, 0x1a, 0x13, 0x12, 0x12, 0x06,
+
4902 0x11, 0x07, 0x03, 0x09, 0x04, 0x04, 0x03, 0x03, 0x14, 0x0e, 0x0f, 0x10,
+
4903 0x10, 0x09, 0x0c, 0x00, 0x00, 0x09, 0x09, 0x0a, 0x0a, 0x0e, 0x00, 0x2f,
+
4904 0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x18, 0x2f, 0x32, 0x11, 0x33, 0x11,
+
4905 0x33, 0x10, 0xce, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x12, 0x17, 0x39, 0x33,
+
4906 0x11, 0x33, 0x30, 0x31, 0x41, 0x33, 0x11, 0x21, 0x15, 0x23, 0x27, 0x35,
+
4907 0x37, 0x33, 0x15, 0x33, 0x37, 0x15, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07,
+
4908 0x35, 0x21, 0x35, 0x01, 0x3e, 0x90, 0xfe, 0xee, 0x12, 0x8b, 0x8b, 0x14,
+
4909 0x80, 0x2c, 0xd1, 0x1d, 0x66, 0x63, 0x1c, 0x01, 0x0b, 0x01, 0xc9, 0xfe,
+
4910 0xb2, 0x5a, 0x9b, 0x1a, 0x8d, 0x58, 0x92, 0xbe, 0x61, 0x0f, 0x6a, 0x70,
+
4911 0x0d, 0x5d, 0xf6, 0x00, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x02, 0x01, 0xe5,
+
4912 0x02, 0x59, 0x00, 0x07, 0x00, 0x14, 0x00, 0x37, 0x00, 0x13, 0x40, 0x09,
+
4913 0x08, 0x0e, 0x37, 0x2c, 0x1f, 0x05, 0x02, 0x07, 0x02, 0x00, 0x2f, 0x2f,
+
4914 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x35, 0x13, 0x33, 0x13, 0x15, 0x03,
+
4915 0x23, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14,
+
4916 0x16, 0x33, 0x37, 0x35, 0x34, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22,
+
4917 0x06, 0x06, 0x07, 0x17, 0x17, 0x37, 0x26, 0x36, 0x37, 0x36, 0x36, 0x33,
+
4918 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x15, 0x15, 0x0f, 0xe1, 0x1e,
+
4919 0xd7, 0xd7, 0x1e, 0x10, 0x0e, 0x16, 0x16, 0x0e, 0x0f, 0x14, 0x14, 0x0f,
+
4920 0x0f, 0x13, 0x1c, 0x1b, 0x13, 0x3c, 0x2f, 0x1d, 0x2c, 0x22, 0x10, 0x1c,
+
4921 0x08, 0x05, 0x01, 0x09, 0x0b, 0x0d, 0x1e, 0x11, 0x12, 0x1e, 0x13, 0x12,
+
4922 0x1c, 0x1b, 0x12, 0x01, 0x23, 0x1e, 0x01, 0x18, 0xfe, 0xe8, 0x1e, 0xfe,
+
4923 0xdf, 0x37, 0x15, 0x0e, 0x0f, 0x15, 0x15, 0x0f, 0x0e, 0x15, 0x7a, 0x19,
+
4924 0x1b, 0x22, 0x1a, 0x19, 0x23, 0x1a, 0x2e, 0x36, 0x10, 0x1d, 0x14, 0x16,
+
4925 0x07, 0x06, 0x08, 0x0c, 0x0c, 0x08, 0x0a, 0x0b, 0x1c, 0x18, 0x16, 0x1f,
+
4926 0x1a, 0x1c, 0x26, 0x1b, 0x19, 0x00, 0x00, 0x03, 0x00, 0x2d, 0x00, 0x05,
+
4927 0x05, 0xaf, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x13,
+
4928 0xb7, 0x08, 0x09, 0x80, 0x01, 0x00, 0x04, 0x05, 0x12, 0x00, 0x3f, 0x33,
+
4929 0xce, 0x32, 0x1a, 0xce, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05,
+
4930 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2d, 0x05, 0x82, 0xfb, 0x28,
+
4931 0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x01, 0x82, 0x45, 0x45, 0xbf, 0x45,
+
4932 0x45, 0xbe, 0x45, 0x45, 0x00, 0x05, 0x00, 0x2c, 0x00, 0x16, 0x03, 0xa8,
+
4933 0x02, 0x6a, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x16,
+
4934 0x00, 0x34, 0x40, 0x18, 0x0d, 0x14, 0x14, 0x02, 0x05, 0x01, 0x03, 0x15,
+
4935 0x10, 0x0c, 0x06, 0x06, 0x00, 0x15, 0x08, 0x11, 0x11, 0x10, 0x09, 0x04,
+
4936 0x04, 0x03, 0x03, 0x10, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
+
4937 0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x11, 0x12, 0x17,
+
4938 0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x01, 0x15, 0x01, 0x35, 0x25,
+
4939 0x25, 0x11, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x23, 0x15, 0x21, 0x35,
+
4940 0x21, 0x35, 0x21, 0x35, 0x21, 0x01, 0xad, 0x01, 0xfb, 0xfe, 0x05, 0x01,
+
4941 0x9a, 0xfe, 0x66, 0x45, 0x45, 0x45, 0x45, 0xfe, 0x7f, 0x01, 0x81, 0xfe,
+
4942 0x7f, 0x01, 0x81, 0x02, 0x6a, 0xfe, 0xf2, 0x38, 0xfe, 0xf2, 0x4e, 0xdc,
+
4943 0xdc, 0xfe, 0xd9, 0xba, 0x25, 0x02, 0x54, 0x25, 0xb6, 0xdf, 0x45, 0x9a,
+
4944 0x45, 0x00, 0x00, 0x02, 0x00, 0x93, 0xff, 0xb9, 0x03, 0x53, 0x02, 0x99,
+
4945 0x00, 0x06, 0x00, 0x0a, 0x00, 0x21, 0x40, 0x0f, 0x0a, 0x09, 0x08, 0x06,
+
4946 0x02, 0x05, 0x03, 0x03, 0x04, 0x40, 0x01, 0x00, 0x80, 0x07, 0x08, 0x00,
+
4947 0x2f, 0x33, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x10, 0xcd,
+
4948 0x32, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x01, 0x35,
+
4949 0x01, 0x15, 0x93, 0x01, 0xa8, 0xfe, 0x5a, 0x02, 0x02, 0xfd, 0xfc, 0x02,
+
4950 0xc0, 0x89, 0x57, 0xbc, 0xab, 0x52, 0xe1, 0x33, 0xfe, 0x34, 0x54, 0x01,
+
4951 0x5c, 0x54, 0x00, 0x02, 0x00, 0x3c, 0x00, 0x17, 0x03, 0xbf, 0x02, 0x65,
+
4952 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03,
+
4953 0x04, 0x03, 0x03, 0x09, 0x09, 0x06, 0x00, 0x08, 0x00, 0x2f, 0x33, 0x32,
+
4954 0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x01, 0x35,
+
4955 0x01, 0x15, 0x05, 0x05, 0x25, 0x21, 0x35, 0x21, 0x02, 0x3d, 0xfd, 0xff,
+
4956 0x02, 0x01, 0xfe, 0x66, 0x01, 0x9a, 0x01, 0x82, 0xfd, 0xa9, 0x02, 0x57,
+
4957 0x17, 0x01, 0x0c, 0x3b, 0x01, 0x07, 0x52, 0xd2, 0xd7, 0xb3, 0x47, 0x00,
+
4958 0x00, 0x02, 0x00, 0x95, 0xff, 0xb9, 0x03, 0x55, 0x02, 0x99, 0x00, 0x06,
+
4959 0x00, 0x0a, 0x00, 0x25, 0x40, 0x11, 0x09, 0x08, 0x08, 0x07, 0x07, 0x0a,
+
4960 0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x40, 0x06, 0x00, 0x80, 0x0a, 0x00,
+
4961 0x2f, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x11, 0x33, 0x11,
+
4962 0x33, 0x2f, 0x33, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15, 0x05, 0x05,
+
4963 0x11, 0x01, 0x35, 0x01, 0x03, 0x55, 0xfd, 0xfc, 0x02, 0x02, 0xfe, 0x5a,
+
4964 0x01, 0xa8, 0xfd, 0x40, 0x02, 0xc0, 0x89, 0xfc, 0x33, 0xe1, 0x52, 0xab,
+
4965 0xbc, 0xfe, 0xd9, 0x01, 0x5c, 0x54, 0xfe, 0xa4, 0x00, 0x01, 0x00, 0xad,
+
4966 0xff, 0xb4, 0x01, 0x3b, 0x00, 0x6c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
+
4967 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x57, 0x23, 0x37, 0x33, 0xdf, 0x32,
+
4968 0x3f, 0x4f, 0x4c, 0xb8, 0x00, 0x01, 0x00, 0xb0, 0x01, 0xc1, 0x01, 0x30,
+
4969 0x02, 0xa3, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0, 0x0d, 0x03,
+
4970 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x3e, 0x02,
+
4971 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
+
4972 0x06, 0x06, 0xd6, 0x26, 0x10, 0x18, 0x0d, 0x0c, 0x10, 0x0c, 0x1f, 0x18,
+
4973 0x17, 0x25, 0x14, 0x27, 0x01, 0xc1, 0x20, 0x0f, 0x1e, 0x1b, 0x0a, 0x07,
+
4974 0x0d, 0x0d, 0x11, 0x0b, 0x16, 0x1d, 0x27, 0x1f, 0x15, 0x32, 0x37, 0x00,
+
4975 0x00, 0x01, 0x00, 0xac, 0x01, 0x82, 0x01, 0x35, 0x02, 0x82, 0x00, 0x11,
+
4976 0x00, 0x0e, 0xb5, 0x0b, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32,
+
4977 0x1a, 0xcc, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
+
4978 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x0e,
+
4979 0x27, 0x19, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c, 0x02,
+
4980 0x82, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20, 0x2d,
+
4981 0x24, 0x19, 0x37, 0x3d, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x05, 0x01, 0x76,
+
4982 0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x45, 0x00, 0x00, 0x06, 0x03, 0x55,
+
4983 0xc3, 0x00, 0x00, 0x01, 0x00, 0x76, 0x02, 0x31, 0x01, 0x7d, 0x02, 0x74,
+
4984 0x00, 0x03, 0x00, 0x0a, 0xb3, 0x00, 0x01, 0x02, 0x72, 0x00, 0x2b, 0x32,
+
4985 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x76, 0x01, 0x07, 0x02, 0x31, 0x43,
+
4986 0x43, 0x00, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x08, 0x01, 0x4c, 0x02, 0xc0,
+
4987 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
+
4988 0x41, 0x27, 0x37, 0x17, 0x01, 0x18, 0x66, 0x45, 0x55, 0x02, 0x08, 0x89,
+
4989 0x2f, 0x99, 0xff, 0xff, 0x00, 0xca, 0x02, 0x05, 0x01, 0x30, 0x02, 0xbd,
+
4990 0x06, 0x06, 0x03, 0x55, 0x00, 0x00, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5,
+
4991 0x01, 0x32, 0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x10, 0x00, 0x09,
+
4992 0x08, 0x00, 0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26,
+
4993 0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16,
+
4994 0x33, 0x01, 0x32, 0x1f, 0x33, 0x1e, 0x1f, 0x33, 0x1e, 0x15, 0x1f, 0x0e,
+
4995 0x18, 0x0e, 0x01, 0xc5, 0x1d, 0x32, 0x1e, 0x20, 0x31, 0x1d, 0x33, 0x22,
+
4996 0x18, 0x0f, 0x1a, 0x0f, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5, 0x01, 0x32,
+
4997 0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x08, 0x09, 0x00,
+
4998 0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x32, 0x36, 0x36, 0x35,
+
4999 0x34, 0x26, 0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc2,
+
5000 0x0f, 0x17, 0x0e, 0x1f, 0x15, 0x1e, 0x33, 0x1f, 0x1e, 0x33, 0x01, 0xc5,
+
5001 0x36, 0x0f, 0x1a, 0x0f, 0x18, 0x22, 0x33, 0x1d, 0x31, 0x20, 0x1e, 0x32,
+
5002 0x1d, 0x00, 0x00, 0x01, 0x00, 0xb8, 0x02, 0x2c, 0x01, 0x69, 0x02, 0xc0,
+
5003 0x00, 0x03, 0x00, 0x0a, 0xb2, 0x01, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd,
+
5004 0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xf6, 0x3e, 0x5c, 0x55, 0x02, 0x2c,
+
5005 0x94, 0x00, 0x00, 0x01, 0x00, 0xd1, 0xff, 0x42, 0x01, 0x24, 0x00, 0x1e,
+
5006 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
+
5007 0x45, 0x23, 0x35, 0x33, 0x01, 0x24, 0x53, 0x53, 0xbe, 0xdc, 0x00, 0x01,
+
5008 0x00, 0xdb, 0x01, 0xbd, 0x01, 0x2c, 0x02, 0x99, 0x00, 0x03, 0x00, 0x08,
+
5009 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x41, 0x23, 0x35, 0x33,
+
5010 0x01, 0x2c, 0x51, 0x51, 0x01, 0xbd, 0xdc, 0x00, 0xff, 0xff, 0x00, 0x69,
+
5011 0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x04, 0x06, 0x03, 0x93, 0x00, 0x00,
+
5012 0xff, 0xff, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97, 0x04, 0x06,
+
5013 0x03, 0x94, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0x01, 0xfa, 0x01, 0x29,
+
5014 0x02, 0xb1, 0x04, 0x06, 0x03, 0x95, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd4,
+
5015 0x01, 0xfa, 0x01, 0x67, 0x02, 0xb1, 0x04, 0x06, 0x03, 0x96, 0x00, 0xf4,
+
5016 0xff, 0xff, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2, 0x02, 0xc0, 0x04, 0x06,
+
5017 0x03, 0x97, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5e, 0x01, 0xfc, 0x01, 0x94,
+
5018 0x02, 0xae, 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05,
+
5019 0x05, 0x01, 0x00, 0x00, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x32, 0x11,
+
5020 0x33, 0x11, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27,
+
5021 0x8a, 0x2c, 0x8d, 0x1c, 0x8d, 0x2c, 0x6f, 0x01, 0xfc, 0x26, 0x8c, 0x8c,
+
5022 0x26, 0x6b, 0x00, 0x01, 0x00, 0x63, 0x02, 0x03, 0x01, 0x99, 0x02, 0xb5,
+
5023 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02, 0x02, 0x01, 0x05, 0x06,
+
5024 0x00, 0x00, 0x05, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x12, 0x39, 0x33, 0x11,
+
5025 0x33, 0x30, 0x31, 0x53, 0x17, 0x37, 0x17, 0x07, 0x23, 0x27, 0x8f, 0x6f,
+
5026 0x6f, 0x2c, 0x8d, 0x1c, 0x8d, 0x02, 0xb5, 0x6b, 0x6b, 0x27, 0x8b, 0x8b,
+
5027 0x00, 0x01, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x02, 0x93, 0x00, 0x0e,
+
5028 0x00, 0x14, 0xb7, 0x01, 0x00, 0x00, 0x07, 0x08, 0x80, 0x0b, 0x04, 0x00,
+
5029 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
+
5030 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36,
+
5031 0x36, 0x01, 0x59, 0x3a, 0x17, 0x4a, 0x30, 0x2f, 0x4b, 0x17, 0x3a, 0x11,
+
5032 0x29, 0x1d, 0x13, 0x20, 0x1a, 0x02, 0x93, 0x1b, 0x2e, 0x33, 0x33, 0x2e,
+
5033 0x1b, 0x24, 0x22, 0x0f, 0x1f, 0x00, 0xff, 0xff, 0x00, 0x9f, 0x02, 0x03,
+
5034 0x01, 0x5e, 0x02, 0xbb, 0x04, 0x06, 0x03, 0x9b, 0x00, 0x00, 0x00, 0x01,
+
5035 0x00, 0x5f, 0x02, 0x38, 0x01, 0xae, 0x02, 0xac, 0x00, 0x17, 0x00, 0x1b,
+
5036 0x40, 0x0b, 0x01, 0x00, 0x00, 0x09, 0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15,
+
5037 0x04, 0x00, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11,
+
5038 0x33, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23,
+
5039 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32,
+
5040 0x36, 0x01, 0x7c, 0x32, 0x15, 0x2b, 0x1e, 0x19, 0x24, 0x1c, 0x1b, 0x10,
+
5041 0x11, 0x1b, 0x0b, 0x36, 0x0f, 0x34, 0x27, 0x17, 0x22, 0x1c, 0x1c, 0x11,
+
5042 0x10, 0x14, 0x02, 0xa2, 0x1d, 0x2a, 0x23, 0x11, 0x17, 0x11, 0x16, 0x1a,
+
5043 0x19, 0x25, 0x2d, 0x11, 0x16, 0x11, 0x14, 0x00, 0xff, 0xff, 0x00, 0x76,
+
5044 0x02, 0x35, 0x01, 0x7d, 0x02, 0x73, 0x04, 0x06, 0x03, 0x9d, 0x00, 0xff,
+
5045 0x00, 0x01, 0x00, 0x98, 0x02, 0x0a, 0x01, 0x4b, 0x02, 0xc9, 0x00, 0x1a,
+
5046 0x00, 0x0c, 0xb3, 0x10, 0x06, 0x80, 0x17, 0x00, 0x2f, 0x1a, 0xcc, 0x33,
+
5047 0x30, 0x31, 0x41, 0x14, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x34, 0x3e,
+
5048 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
+
5049 0x1e, 0x02, 0x01, 0x4b, 0x12, 0x17, 0x13, 0x39, 0x11, 0x16, 0x11, 0x12,
+
5050 0x0e, 0x0f, 0x1a, 0x07, 0x26, 0x12, 0x2e, 0x1b, 0x19, 0x28, 0x17, 0x02,
+
5051 0x7a, 0x15, 0x19, 0x12, 0x16, 0x12, 0x08, 0x1c, 0x0e, 0x16, 0x12, 0x12,
+
5052 0x09, 0x0e, 0x0f, 0x0d, 0x15, 0x2b, 0x18, 0x14, 0x01, 0x13, 0x23, 0x00,
+
5053 0xff, 0xff, 0x00, 0x5b, 0x01, 0xfa, 0x01, 0x8e, 0x02, 0xb1, 0x04, 0x26,
+
5054 0x03, 0x7c, 0xc5, 0x00, 0x00, 0x06, 0x03, 0x7c, 0x65, 0x00, 0x00, 0x01,
+
5055 0x00, 0x6f, 0x02, 0x0d, 0x01, 0x91, 0x02, 0x89, 0x00, 0x0e, 0x00, 0x14,
+
5056 0xb7, 0x07, 0x08, 0x08, 0x0b, 0x04, 0x80, 0x01, 0x00, 0x00, 0x2f, 0x32,
+
5057 0x1a, 0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36,
+
5058 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0xa9,
+
5059 0x3a, 0x18, 0x4a, 0x2f, 0x30, 0x4b, 0x16, 0x3a, 0x10, 0x2a, 0x1d, 0x13,
+
5060 0x1f, 0x1a, 0x02, 0x0d, 0x1b, 0x2e, 0x33, 0x33, 0x2e, 0x1b, 0x24, 0x22,
+
5061 0x0f, 0x1e, 0x00, 0x01, 0x00, 0xa0, 0x02, 0x1a, 0x01, 0x37, 0x03, 0x36,
+
5062 0x00, 0x13, 0x00, 0x08, 0xb1, 0x0c, 0x00, 0x00, 0x2f, 0xcc, 0x30, 0x31,
+
5063 0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23,
+
5064 0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x01, 0x0c, 0x2b, 0x1c, 0x22, 0x0e,
+
5065 0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29, 0x03, 0x36, 0x25,
+
5066 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x16, 0x0f, 0x1c, 0x23, 0x32, 0x27,
+
5067 0x15, 0x2d, 0x31, 0x34, 0x00, 0x01, 0x01, 0x85, 0x01, 0x94, 0x01, 0xe8,
+
5068 0x02, 0x24, 0x00, 0x08, 0x00, 0x0c, 0xb3, 0x05, 0x04, 0x80, 0x00, 0x00,
+
5069 0x2f, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x35,
+
5070 0x32, 0x36, 0x35, 0x01, 0xe8, 0x11, 0x2b, 0x27, 0x0f, 0x0d, 0x02, 0x24,
+
5071 0x35, 0x40, 0x1b, 0x38, 0x24, 0x34, 0xff, 0xff, 0x00, 0xb6, 0xff, 0x65,
+
5072 0x01, 0x2a, 0xff, 0xd7, 0x04, 0x07, 0x03, 0x7b, 0xff, 0xf1, 0xfd, 0x40,
+
5073 0xff, 0xff, 0x00, 0x69, 0xff, 0x55, 0x01, 0x8d, 0xff, 0xc3, 0x06, 0x07,
+
5074 0x03, 0x7a, 0x00, 0x00, 0xfd, 0x26, 0x00, 0x01, 0x00, 0xad, 0xfe, 0xe6,
+
5075 0x01, 0x35, 0xff, 0xe6, 0x00, 0x11, 0x00, 0x0a, 0xb2, 0x01, 0x00, 0x0b,
+
5076 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36, 0x35, 0x34,
+
5077 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
+
5078 0xd3, 0x26, 0x18, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c,
+
5079 0xfe, 0xe6, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20,
+
5080 0x2d, 0x24, 0x19, 0x37, 0x3d, 0x00, 0xff, 0xff, 0x00, 0xa1, 0xff, 0x38,
+
5081 0x01, 0x85, 0x00, 0x00, 0x04, 0x06, 0x03, 0x9e, 0x00, 0x00, 0x00, 0x01,
+
5082 0x00, 0x8b, 0xff, 0x19, 0x01, 0x29, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a,
+
5083 0xb2, 0x00, 0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07,
+
5084 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14,
+
5085 0x16, 0x01, 0x1b, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18,
+
5086 0x23, 0x12, 0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33,
+
5087 0x17, 0x14, 0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x71,
+
5088 0xff, 0x4c, 0x01, 0x93, 0xff, 0xc8, 0x06, 0x07, 0x03, 0x81, 0x00, 0x00,
+
5089 0xfd, 0x35, 0xff, 0xff, 0x00, 0x76, 0xff, 0x65, 0x01, 0x7d, 0xff, 0xa3,
+
5090 0x06, 0x07, 0x03, 0x84, 0x00, 0x00, 0xfd, 0x30, 0x00, 0x01, 0x00, 0x77,
+
5091 0x01, 0x1e, 0x01, 0x86, 0x01, 0x5b, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
+
5092 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x77, 0x01,
+
5093 0x0f, 0x01, 0x1e, 0x3d, 0x3d, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
+
5094 0x01, 0x89, 0x01, 0x62, 0x04, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x02,
+
5095 0x00, 0x69, 0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x00, 0x0b, 0x00, 0x17,
+
5096 0x00, 0x0e, 0xb4, 0x12, 0x0c, 0x0c, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x32,
+
5097 0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
+
5098 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
+
5099 0x16, 0x15, 0x14, 0x06, 0xa2, 0x17, 0x22, 0x22, 0x17, 0x17, 0x21, 0x22,
+
5100 0x9e, 0x17, 0x21, 0x21, 0x17, 0x17, 0x20, 0x21, 0x02, 0x2f, 0x20, 0x16,
+
5101 0x16, 0x22, 0x21, 0x17, 0x16, 0x20, 0x1f, 0x17, 0x17, 0x21, 0x22, 0x16,
+
5102 0x16, 0x20, 0x00, 0x01, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97,
+
5103 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
+
5104 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
+
5105 0xfe, 0x18, 0x22, 0x21, 0x19, 0x17, 0x23, 0x23, 0x02, 0x25, 0x22, 0x17,
+
5106 0x19, 0x20, 0x22, 0x17, 0x17, 0x22, 0x00, 0x01, 0x00, 0x96, 0x01, 0xfa,
+
5107 0x01, 0x29, 0x02, 0xb1, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x01, 0x03, 0x02,
+
5108 0x00, 0x00, 0x2f, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17,
+
5109 0xfe, 0x68, 0x3f, 0x54, 0x01, 0xfa, 0x89, 0x2e, 0x9b, 0x00, 0x00, 0x01,
+
5110 0x00, 0xd4, 0x02, 0x06, 0x01, 0x67, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x0e,
+
5111 0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39,
+
5112 0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xff, 0x2b, 0x54, 0x3f, 0x02, 0x06,
+
5113 0x1c, 0x9b, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2,
+
5114 0x02, 0xc0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02,
+
5115 0x02, 0x07, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f, 0x33, 0x33, 0x32,
+
5116 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x27, 0x37, 0x17, 0x05,
+
5117 0x27, 0x37, 0x17, 0x01, 0x4b, 0x35, 0x57, 0x45, 0xfe, 0xfe, 0x35, 0x57,
+
5118 0x45, 0x02, 0x08, 0x20, 0x98, 0x2f, 0x89, 0x20, 0x98, 0x2f, 0x00, 0x01,
+
5119 0x00, 0x75, 0x02, 0x02, 0x01, 0x87, 0x02, 0xb1, 0x00, 0x06, 0x00, 0x10,
+
5120 0xb5, 0x01, 0x04, 0x06, 0x00, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x33, 0x32,
+
5121 0xcd, 0x39, 0x30, 0x31, 0x41, 0x27, 0x07, 0x27, 0x37, 0x33, 0x17, 0x01,
+
5122 0x59, 0x5a, 0x61, 0x29, 0x7e, 0x19, 0x7b, 0x02, 0x04, 0x65, 0x67, 0x22,
+
5123 0x8d, 0x8d, 0x00, 0x01, 0x00, 0x83, 0x02, 0x04, 0x01, 0x7c, 0x02, 0xb9,
+
5124 0x00, 0x06, 0x00, 0x12, 0xb6, 0x05, 0x04, 0x04, 0x03, 0x01, 0x02, 0x00,
+
5125 0x00, 0x2f, 0xcd, 0x32, 0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27,
+
5126 0x37, 0x17, 0x37, 0x17, 0x07, 0xf2, 0x6f, 0x31, 0x4e, 0x51, 0x29, 0x70,
+
5127 0x02, 0x04, 0x8e, 0x27, 0x64, 0x63, 0x27, 0x8d, 0x00, 0x01, 0x00, 0x60,
+
5128 0x02, 0x0a, 0x01, 0x92, 0x02, 0x90, 0x00, 0x0e, 0x00, 0x14, 0xb7, 0x0b,
+
5129 0x0a, 0x0a, 0x03, 0x04, 0x80, 0x07, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcc,
+
5130 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16,
+
5131 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0xfb, 0x2a, 0x4e, 0x23,
+
5132 0x2c, 0x14, 0x3a, 0x21, 0x1e, 0x3b, 0x1b, 0x23, 0x14, 0x31, 0x36, 0x02,
+
5133 0x0a, 0x27, 0x28, 0x37, 0x21, 0x26, 0x22, 0x25, 0x34, 0x19, 0x25, 0x14,
+
5134 0x00, 0x02, 0x00, 0x9f, 0x02, 0x03, 0x01, 0x5e, 0x02, 0xbb, 0x00, 0x0f,
+
5135 0x00, 0x1b, 0x00, 0x0f, 0xb4, 0x16, 0x08, 0x80, 0x10, 0x00, 0x00, 0x2f,
+
5136 0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26, 0x35,
+
5137 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
+
5138 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xfe,
+
5139 0x1a, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x19,
+
5140 0x0f, 0x17, 0x17, 0x0f, 0x10, 0x16, 0x16, 0x02, 0x03, 0x19, 0x2a, 0x19,
+
5141 0x19, 0x2a, 0x19, 0x19, 0x29, 0x1a, 0x19, 0x2a, 0x19, 0x32, 0x19, 0x12,
+
5142 0x12, 0x1a, 0x1a, 0x12, 0x12, 0x19, 0xff, 0xff, 0x00, 0x5f, 0x02, 0x38,
+
5143 0x01, 0xae, 0x02, 0xac, 0x04, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x01,
+
5144 0x00, 0x76, 0x02, 0x35, 0x01, 0x7d, 0x02, 0x74, 0x00, 0x03, 0x00, 0x08,
+
5145 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15,
+
5146 0x76, 0x01, 0x07, 0x02, 0x35, 0x3f, 0x3f, 0x00, 0x00, 0x01, 0x00, 0xa1,
+
5147 0xff, 0x38, 0x01, 0x85, 0x00, 0x00, 0x00, 0x17, 0x00, 0x13, 0xb6, 0x11,
+
5148 0x0e, 0x0e, 0x07, 0x00, 0x80, 0x0f, 0x00, 0x2f, 0x1a, 0x7c, 0xcc, 0x32,
+
5149 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16,
+
5150 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, 0x07, 0x1e,
+
5151 0x02, 0x15, 0x14, 0x06, 0x01, 0x0d, 0x1c, 0x36, 0x1a, 0x1d, 0x16, 0x2c,
+
5152 0x19, 0x18, 0x19, 0x1b, 0x17, 0x24, 0x0b, 0x38, 0x05, 0x1c, 0x25, 0x12,
+
5153 0x3d, 0xc8, 0x10, 0x13, 0x32, 0x12, 0x0f, 0x11, 0x0f, 0x0f, 0x0f, 0x56,
+
5154 0x2a, 0x02, 0x14, 0x1d, 0x10, 0x25, 0x36, 0x00, 0x00, 0x01, 0x00, 0xef,
+
5155 0xff, 0x19, 0x01, 0x8d, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x00,
+
5156 0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07, 0x2e, 0x02,
+
5157 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x01,
+
5158 0x7f, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18, 0x23, 0x12,
+
5159 0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33, 0x17, 0x14,
+
5160 0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x68, 0x02, 0xae,
+
5161 0x01, 0x8c, 0x03, 0x1d, 0x04, 0x06, 0x03, 0xab, 0x03, 0x00, 0xff, 0xff,
+
5162 0x00, 0xc0, 0x02, 0xb1, 0x01, 0x34, 0x03, 0x23, 0x04, 0x06, 0x03, 0xac,
+
5163 0xf4, 0x00, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x92, 0x01, 0x54, 0x03, 0x1b,
+
5164 0x04, 0x06, 0x03, 0xad, 0xdc, 0x00, 0xff, 0xff, 0x00, 0xab, 0x02, 0x92,
+
5165 0x01, 0x70, 0x03, 0x1b, 0x04, 0x06, 0x03, 0xae, 0x00, 0x00, 0xff, 0xff,
+
5166 0x00, 0x6a, 0x02, 0x84, 0x01, 0xd3, 0x03, 0x2b, 0x04, 0x06, 0x03, 0xaf,
+
5167 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0x1a,
+
5168 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05, 0x05, 0x01,
+
5169 0x00, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
+
5170 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x78, 0x22,
+
5171 0x95, 0x19, 0x9a, 0x21, 0x84, 0x02, 0x8d, 0x2c, 0x61, 0x61, 0x2b, 0x44,
+
5172 0xff, 0xff, 0x00, 0x54, 0x02, 0x92, 0x01, 0x9b, 0x03, 0x1f, 0x04, 0x06,
+
5173 0x03, 0xb0, 0x0a, 0x04, 0xff, 0xff, 0x00, 0x69, 0x02, 0x9d, 0x01, 0x8b,
+
5174 0x03, 0x18, 0x04, 0x06, 0x03, 0xb1, 0xfb, 0x07, 0xff, 0xff, 0x00, 0x9a,
+
5175 0x02, 0x6a, 0x01, 0x59, 0x03, 0x22, 0x04, 0x06, 0x03, 0xb2, 0xff, 0x00,
+
5176 0xff, 0xff, 0x00, 0x5a, 0x02, 0xac, 0x01, 0xa9, 0x03, 0x20, 0x04, 0x06,
+
5177 0x03, 0x83, 0xfb, 0x74, 0x00, 0x01, 0x01, 0x8e, 0x02, 0x36, 0x01, 0xf1,
+
5178 0x02, 0xcd, 0x00, 0x09, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x80, 0x05, 0x00,
+
5179 0x2f, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x27, 0x32, 0x36, 0x36, 0x35,
+
5180 0x33, 0x14, 0x06, 0x06, 0x01, 0x98, 0x0a, 0x11, 0x10, 0x04, 0x3e, 0x0c,
+
5181 0x25, 0x02, 0x36, 0x39, 0x10, 0x29, 0x25, 0x34, 0x43, 0x20, 0x00, 0x02,
+
5182 0x00, 0x65, 0x02, 0xae, 0x01, 0x89, 0x03, 0x1d, 0x00, 0x0b, 0x00, 0x17,
+
5183 0x00, 0x0c, 0xb3, 0x06, 0x00, 0x12, 0x0c, 0x00, 0x2f, 0x33, 0x33, 0x32,
+
5184 0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
+
5185 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
+
5186 0x14, 0x06, 0x9d, 0x16, 0x22, 0x22, 0x16, 0x18, 0x21, 0x22, 0x9d, 0x16,
+
5187 0x21, 0x21, 0x16, 0x18, 0x20, 0x21, 0x02, 0xae, 0x21, 0x16, 0x16, 0x22,
+
5188 0x22, 0x16, 0x16, 0x21, 0x20, 0x17, 0x17, 0x21, 0x22, 0x16, 0x16, 0x21,
+
5189 0xff, 0xff, 0x00, 0xcc, 0x02, 0xb1, 0x01, 0x40, 0x03, 0x23, 0x04, 0x07,
+
5190 0x03, 0x94, 0x00, 0x08, 0x00, 0x8c, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x92,
+
5191 0x01, 0x78, 0x03, 0x1b, 0x00, 0x03, 0x00, 0x0e, 0xb4, 0x01, 0x03, 0x02,
+
5192 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x41, 0x27,
+
5193 0x37, 0x17, 0x01, 0x5f, 0xad, 0x2a, 0x9c, 0x02, 0x92, 0x3e, 0x4b, 0x5b,
+
5194 0x00, 0x01, 0x00, 0xab, 0x02, 0x92, 0x01, 0x70, 0x03, 0x1b, 0x00, 0x03,
+
5195 0x00, 0x0e, 0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd,
+
5196 0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xc3, 0x18, 0x9b, 0x2a,
+
5197 0x02, 0x92, 0x2e, 0x5b, 0x4b, 0x00, 0x00, 0x02, 0x00, 0x6a, 0x02, 0x84,
+
5198 0x01, 0xd3, 0x03, 0x2b, 0x00, 0x03, 0x00, 0x07, 0x00, 0x19, 0x40, 0x0a,
+
5199 0x03, 0x02, 0x02, 0x07, 0x06, 0x80, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f,
+
5200 0x33, 0x33, 0x32, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41,
+
5201 0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x01, 0x3f, 0x22, 0x85, 0x31,
+
5202 0xfe, 0xb9, 0x22, 0x86, 0x31, 0x02, 0x84, 0x2b, 0x7c, 0x42, 0x65, 0x2b,
+
5203 0x7c, 0x42, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x8e, 0x01, 0x91, 0x03, 0x1b,
+
5204 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x01, 0x00, 0x00, 0x04,
+
5205 0x05, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
+
5206 0x39, 0x30, 0x31, 0x41, 0x17, 0x07, 0x23, 0x27, 0x37, 0x17, 0x01, 0x6f,
+
5207 0x22, 0x95, 0x19, 0x99, 0x20, 0x84, 0x03, 0x1b, 0x2b, 0x62, 0x62, 0x2b,
+
5208 0x45, 0x00, 0xff, 0xff, 0x00, 0x6e, 0x02, 0x96, 0x01, 0x90, 0x03, 0x11,
+
5209 0x04, 0x06, 0x03, 0x81, 0xfd, 0x7e, 0x00, 0x02, 0x00, 0x9b, 0x02, 0x6a,
+
5210 0x01, 0x5a, 0x03, 0x22, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x0c, 0xb3, 0x16,
+
5211 0x08, 0x10, 0x00, 0x00, 0x2f, 0x32, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22,
+
5212 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
+
5213 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15,
+
5214 0x14, 0x16, 0xfb, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a,
+
5215 0x19, 0x2b, 0x1a, 0x0f, 0x17, 0x17, 0x0f, 0x10, 0x17, 0x17, 0x02, 0x6a,
+
5216 0x19, 0x2a, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2a, 0x1a, 0x18, 0x2a, 0x19,
+
5217 0x32, 0x18, 0x12, 0x13, 0x19, 0x19, 0x13, 0x12, 0x18, 0x00, 0xff, 0xff,
+
5218 0x00, 0x5f, 0x02, 0xba, 0x01, 0xae, 0x03, 0x2e, 0x04, 0x07, 0x03, 0x83,
+
5219 0x00, 0x00, 0x00, 0x82, 0x00, 0x01, 0x00, 0x73, 0x02, 0x3d, 0x01, 0x95,
+
5220 0x02, 0xad, 0x00, 0x17, 0x00, 0x1c, 0x40, 0x0c, 0x01, 0x00, 0x00, 0x09,
+
5221 0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15, 0x04, 0x10, 0x00, 0x3f, 0x33, 0x33,
+
5222 0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
+
5223 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36,
+
5224 0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x01, 0x63, 0x32, 0x13,
+
5225 0x29, 0x1a, 0x13, 0x1f, 0x19, 0x17, 0x0c, 0x0d, 0x17, 0x08, 0x32, 0x0c,
+
5226 0x32, 0x19, 0x13, 0x21, 0x1c, 0x18, 0x0b, 0x0b, 0x12, 0x02, 0xa0, 0x18,
+
5227 0x29, 0x22, 0x10, 0x15, 0x10, 0x15, 0x14, 0x18, 0x22, 0x2a, 0x10, 0x16,
+
5228 0x10, 0x13, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
+
5229 0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x08,
+
5230 0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
+
5231 0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x08,
+
5232 0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x50,
+
5233 0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x10,
+
5234 0x00, 0x87, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x94, 0x03, 0x29,
+
5235 0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x06, 0x03, 0xb4, 0xff, 0x7d,
+
5236 0xff, 0xff, 0x00, 0x64, 0x01, 0xfc, 0x01, 0xf2, 0x03, 0x2d, 0x04, 0x26,
+
5237 0x03, 0x7f, 0x07, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x8b, 0x00, 0x7c,
+
5238 0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0xaa, 0x03, 0x43, 0x04, 0x26,
+
5239 0x03, 0x7f, 0x08, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x81, 0x00, 0x92,
+
5240 0xff, 0xff, 0x00, 0x5f, 0x01, 0xfc, 0x01, 0xd4, 0x03, 0x2f, 0x04, 0x26,
+
5241 0x03, 0x7f, 0x01, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0x66,
+
5242 0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0x9d, 0x03, 0x3d, 0x04, 0x26,
+
5243 0x03, 0x7f, 0x09, 0x00, 0x02, 0x07, 0x03, 0xb4, 0xff, 0xfa, 0x00, 0x90,
+
5244 0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x02, 0x20, 0x03, 0x88, 0x06, 0x26,
+
5245 0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa3, 0x00, 0xb1, 0x00, 0x6d,
+
5246 0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xaa, 0x06, 0x26,
+
5247 0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa2, 0x00, 0x04, 0x00, 0x8f,
+
5248 0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0xd5, 0x03, 0xac, 0x06, 0x26,
+
5249 0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0xe4,
+
5250 0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xa9, 0x06, 0x26,
+
5251 0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xb4, 0xff, 0xf2, 0x00, 0xfd,
+
5252 0x00, 0x01, 0x00, 0x00, 0x03, 0xc2, 0x00, 0xa8, 0x00, 0x2a, 0x00, 0x73,
+
5253 0x00, 0x05, 0x00, 0x02, 0x00, 0x10, 0x00, 0x2f, 0x00, 0x9a, 0x00, 0x00,
+
5254 0x02, 0xdb, 0x0f, 0x83, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
+
5255 0x00, 0x26, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x9a,
+
5256 0x00, 0xb5, 0x00, 0xd0, 0x00, 0xe2, 0x00, 0xf9, 0x01, 0x14, 0x01, 0x2b,
+
5257 0x01, 0x42, 0x01, 0x59, 0x01, 0x6d, 0x01, 0x80, 0x01, 0x93, 0x01, 0xa5,
+
5258 0x01, 0xb8, 0x01, 0xcb, 0x01, 0xde, 0x01, 0xf1, 0x02, 0x05, 0x02, 0x22,
+
5259 0x02, 0x34, 0x02, 0x69, 0x02, 0x7b, 0x02, 0xc9, 0x03, 0x18, 0x03, 0x2a,
+
5260 0x03, 0x3c, 0x03, 0x4e, 0x03, 0x68, 0x03, 0x7a, 0x03, 0x8c, 0x03, 0xbf,
+
5261 0x04, 0x03, 0x04, 0x15, 0x04, 0x1d, 0x04, 0x30, 0x04, 0x43, 0x04, 0x65,
+
5262 0x04, 0x77, 0x04, 0x89, 0x04, 0x9b, 0x04, 0xb5, 0x04, 0xc7, 0x04, 0xde,
+
5263 0x04, 0xf9, 0x05, 0x10, 0x05, 0x27, 0x05, 0x3e, 0x05, 0x52, 0x05, 0x65,
+
5264 0x05, 0x77, 0x05, 0x8a, 0x05, 0x9c, 0x05, 0xaf, 0x05, 0xc2, 0x05, 0xd5,
+
5265 0x05, 0xf1, 0x06, 0x0d, 0x06, 0x1f, 0x06, 0x31, 0x06, 0x7f, 0x06, 0x9e,
+
5266 0x06, 0xf4, 0x07, 0x06, 0x07, 0x18, 0x07, 0x2a, 0x07, 0x3d, 0x07, 0x4f,
+
5267 0x07, 0x62, 0x07, 0x91, 0x07, 0xca, 0x07, 0xdd, 0x07, 0xef, 0x08, 0x02,
+
5268 0x08, 0x23, 0x08, 0x35, 0x08, 0x47, 0x08, 0x59, 0x08, 0x6d, 0x08, 0x80,
+
5269 0x08, 0x9c, 0x08, 0xae, 0x08, 0xc1, 0x08, 0xd3, 0x08, 0xe6, 0x08, 0xf9,
+
5270 0x09, 0x0c, 0x09, 0x1e, 0x09, 0x30, 0x09, 0x68, 0x09, 0x7a, 0x09, 0xac,
+
5271 0x09, 0xbf, 0x0a, 0x06, 0x0a, 0x23, 0x0a, 0x6b, 0x0a, 0x7d, 0x0a, 0xb6,
+
5272 0x0a, 0xc9, 0x0a, 0xdc, 0x0a, 0xef, 0x0b, 0x46, 0x0b, 0x59, 0x0b, 0x89,
+
5273 0x0b, 0xaf, 0x0b, 0xc2, 0x0b, 0xea, 0x0b, 0xfc, 0x0c, 0x0e, 0x0c, 0x21,
+
5274 0x0c, 0x33, 0x0c, 0x46, 0x0c, 0x82, 0x0c, 0x95, 0x0c, 0xa7, 0x0c, 0xe0,
+
5275 0x0c, 0xf2, 0x0d, 0x04, 0x0d, 0x16, 0x0d, 0x2d, 0x0d, 0x48, 0x0d, 0x5f,
+
5276 0x0d, 0x76, 0x0d, 0x8d, 0x0d, 0xa1, 0x0d, 0xb4, 0x0d, 0xd0, 0x0d, 0xeb,
+
5277 0x0d, 0xfe, 0x0e, 0x10, 0x0e, 0x23, 0x0e, 0x36, 0x0e, 0x48, 0x0e, 0x5b,
+
5278 0x0e, 0x6d, 0x0e, 0x80, 0x0e, 0x92, 0x0e, 0xa5, 0x0e, 0xb8, 0x0e, 0xcb,
+
5279 0x0e, 0xe7, 0x0f, 0x03, 0x0f, 0x15, 0x0f, 0x5e, 0x0f, 0x70, 0x0f, 0x82,
+
5280 0x0f, 0x9d, 0x0f, 0xb9, 0x0f, 0xd5, 0x10, 0x29, 0x10, 0x5b, 0x10, 0x99,
+
5281 0x10, 0xee, 0x11, 0x26, 0x11, 0x38, 0x11, 0x4a, 0x11, 0x5d, 0x11, 0x71,
+
5282 0x11, 0x84, 0x11, 0x97, 0x11, 0xaa, 0x12, 0x12, 0x12, 0x24, 0x12, 0x3e,
+
5283 0x12, 0x50, 0x12, 0x6b, 0x12, 0x7d, 0x12, 0x8f, 0x12, 0xa2, 0x12, 0xb4,
+
5284 0x12, 0xc7, 0x12, 0xe2, 0x13, 0x3c, 0x13, 0x44, 0x13, 0x5e, 0x13, 0x82,
+
5285 0x13, 0x94, 0x13, 0xa6, 0x13, 0xb9, 0x13, 0xcc, 0x13, 0xdf, 0x14, 0x0d,
+
5286 0x14, 0x1f, 0x14, 0x31, 0x14, 0x43, 0x14, 0x57, 0x14, 0x6a, 0x14, 0x7d,
+
5287 0x14, 0x8f, 0x14, 0xa2, 0x14, 0xb5, 0x14, 0xc7, 0x14, 0xda, 0x14, 0xec,
+
5288 0x14, 0xff, 0x15, 0x11, 0x15, 0x24, 0x15, 0x37, 0x15, 0x4a, 0x15, 0x67,
+
5289 0x15, 0x79, 0x15, 0x8d, 0x15, 0x9f, 0x15, 0xba, 0x15, 0xd6, 0x16, 0x01,
+
5290 0x16, 0x13, 0x16, 0x25, 0x16, 0x38, 0x16, 0x4a, 0x16, 0x71, 0x16, 0x92,
+
5291 0x16, 0xa4, 0x16, 0xb6, 0x16, 0xc9, 0x16, 0xdb, 0x16, 0xee, 0x17, 0x00,
+
5292 0x17, 0x13, 0x17, 0x26, 0x17, 0x38, 0x17, 0x61, 0x17, 0x73, 0x17, 0x85,
+
5293 0x17, 0x97, 0x17, 0xaa, 0x17, 0xd8, 0x18, 0x38, 0x18, 0x4a, 0x18, 0x5c,
+
5294 0x18, 0x73, 0x18, 0x8e, 0x18, 0xa5, 0x18, 0xbc, 0x18, 0xd3, 0x18, 0xe5,
+
5295 0x18, 0xfc, 0x19, 0x17, 0x19, 0x2e, 0x19, 0x45, 0x19, 0x5c, 0x19, 0x6f,
+
5296 0x19, 0x82, 0x19, 0x95, 0x19, 0xa7, 0x19, 0xb9, 0x19, 0xcb, 0x19, 0xdd,
+
5297 0x19, 0xef, 0x1a, 0x02, 0x1a, 0x1e, 0x1a, 0x30, 0x1a, 0xba, 0x1a, 0xcc,
+
5298 0x1b, 0x23, 0x1b, 0x70, 0x1b, 0xb6, 0x1b, 0xc8, 0x1b, 0xda, 0x1b, 0xec,
+
5299 0x1c, 0x06, 0x1c, 0x18, 0x1c, 0x2a, 0x1c, 0x87, 0x1c, 0xef, 0x1d, 0x65,
+
5300 0x1d, 0x78, 0x1d, 0x8b, 0x1d, 0x9e, 0x1d, 0xec, 0x1d, 0xfe, 0x1e, 0x10,
+
5301 0x1e, 0x22, 0x1e, 0x3c, 0x1e, 0x4e, 0x1e, 0x65, 0x1e, 0x80, 0x1e, 0x97,
+
5302 0x1e, 0xae, 0x1e, 0xc5, 0x1e, 0xd8, 0x1e, 0xeb, 0x1e, 0xfd, 0x1f, 0x10,
+
5303 0x1f, 0x22, 0x1f, 0x34, 0x1f, 0x46, 0x1f, 0x58, 0x1f, 0x73, 0x1f, 0x8e,
+
5304 0x1f, 0xa0, 0x1f, 0xfe, 0x20, 0x10, 0x20, 0x5d, 0x20, 0x66, 0x20, 0xa2,
+
5305 0x21, 0x45, 0x21, 0x57, 0x21, 0x69, 0x21, 0x7b, 0x21, 0x8d, 0x21, 0x9f,
+
5306 0x21, 0xb1, 0x21, 0xeb, 0x21, 0xfe, 0x22, 0x11, 0x22, 0x24, 0x22, 0x37,
+
5307 0x22, 0x49, 0x22, 0x67, 0x22, 0x79, 0x22, 0x8b, 0x22, 0x9d, 0x22, 0xb0,
+
5308 0x22, 0xc3, 0x22, 0xe0, 0x22, 0xf2, 0x23, 0x05, 0x23, 0x17, 0x23, 0x29,
+
5309 0x23, 0x3b, 0x23, 0x4d, 0x23, 0x67, 0x23, 0x79, 0x23, 0x8b, 0x23, 0xbe,
+
5310 0x23, 0xd0, 0x24, 0x02, 0x24, 0x15, 0x24, 0x49, 0x24, 0x66, 0x24, 0x78,
+
5311 0x24, 0x8b, 0x24, 0x9e, 0x24, 0xcf, 0x24, 0xe2, 0x25, 0x3a, 0x25, 0x4d,
+
5312 0x25, 0x78, 0x25, 0xc9, 0x25, 0xdc, 0x26, 0x0f, 0x26, 0x21, 0x26, 0x33,
+
5313 0x26, 0x46, 0x26, 0x58, 0x26, 0x6b, 0x26, 0xb9, 0x26, 0xcc, 0x26, 0xde,
+
5314 0x27, 0x19, 0x27, 0x2b, 0x27, 0x3d, 0x27, 0x4f, 0x27, 0x66, 0x27, 0x81,
+
5315 0x27, 0x98, 0x27, 0xaf, 0x27, 0xc6, 0x27, 0xd9, 0x27, 0xec, 0x28, 0x08,
+
5316 0x28, 0x23, 0x28, 0x36, 0x28, 0x48, 0x28, 0x5a, 0x28, 0x6d, 0x28, 0x7f,
+
5317 0x28, 0x92, 0x28, 0xa4, 0x28, 0xb6, 0x28, 0xc8, 0x28, 0xdb, 0x28, 0xed,
+
5318 0x28, 0xff, 0x29, 0x1a, 0x29, 0x35, 0x29, 0x40, 0x29, 0x89, 0x29, 0x9b,
+
5319 0x29, 0xad, 0x29, 0xc8, 0x29, 0xe4, 0x29, 0xff, 0x2a, 0x81, 0x2a, 0xd0,
+
5320 0x2b, 0x26, 0x2b, 0x75, 0x2b, 0xaf, 0x2b, 0xc1, 0x2b, 0xd3, 0x2b, 0xe6,
+
5321 0x2b, 0xf9, 0x2c, 0x0c, 0x2c, 0x5f, 0x2c, 0x71, 0x2c, 0x84, 0x2c, 0xc6,
+
5322 0x2d, 0x2a, 0x2d, 0x3c, 0x2d, 0x57, 0x2d, 0x69, 0x2d, 0x84, 0x2d, 0x96,
+
5323 0x2d, 0xa8, 0x2d, 0xbb, 0x2d, 0xcd, 0x2d, 0xe0, 0x2d, 0xfb, 0x2e, 0x5d,
+
5324 0x2e, 0x9f, 0x2e, 0xea, 0x2e, 0xfe, 0x2f, 0x10, 0x2f, 0x23, 0x2f, 0x36,
+
5325 0x2f, 0x49, 0x2f, 0x5c, 0x2f, 0x9c, 0x2f, 0xae, 0x2f, 0xc0, 0x2f, 0xd2,
+
5326 0x2f, 0xe5, 0x2f, 0xf8, 0x30, 0x0b, 0x30, 0x1d, 0x30, 0x2f, 0x30, 0x42,
+
5327 0x30, 0x54, 0x30, 0x67, 0x30, 0x79, 0x30, 0x8b, 0x30, 0x9d, 0x30, 0xb0,
+
5328 0x30, 0xc2, 0x30, 0xd4, 0x30, 0xf0, 0x31, 0x03, 0x31, 0x16, 0x31, 0x28,
+
5329 0x31, 0x43, 0x31, 0x69, 0x31, 0x9c, 0x31, 0xae, 0x31, 0xc0, 0x31, 0xd3,
+
5330 0x31, 0xe5, 0x32, 0x09, 0x32, 0x4f, 0x32, 0x61, 0x32, 0x73, 0x32, 0x86,
+
5331 0x32, 0x98, 0x32, 0xab, 0x32, 0xbd, 0x32, 0xcf, 0x32, 0xe1, 0x32, 0xf3,
+
5332 0x33, 0x1b, 0x33, 0x2d, 0x33, 0x3f, 0x33, 0x51, 0x33, 0x64, 0x33, 0xa3,
+
5333 0x34, 0x09, 0x34, 0x4d, 0x34, 0x55, 0x34, 0x8b, 0x34, 0xd4, 0x34, 0xf0,
+
5334 0x35, 0x3a, 0x35, 0x9b, 0x35, 0xc6, 0x36, 0x18, 0x36, 0x7f, 0x36, 0xa2,
+
5335 0x37, 0x12, 0x37, 0x72, 0x37, 0xc0, 0x37, 0xf9, 0x38, 0x02, 0x38, 0x0b,
+
5336 0x38, 0x14, 0x38, 0x1d, 0x38, 0x26, 0x38, 0x2f, 0x38, 0x38, 0x38, 0x41,
+
5337 0x38, 0x4a, 0x38, 0x53, 0x38, 0x5b, 0x38, 0x63, 0x38, 0x6c, 0x38, 0x75,
+
5338 0x38, 0x7e, 0x38, 0x86, 0x38, 0x8e, 0x38, 0x96, 0x38, 0x9e, 0x38, 0xa6,
+
5339 0x38, 0xae, 0x38, 0xb6, 0x38, 0xbe, 0x38, 0xc6, 0x38, 0xce, 0x38, 0xd6,
+
5340 0x38, 0xde, 0x38, 0xe6, 0x38, 0xee, 0x38, 0xf6, 0x39, 0x37, 0x39, 0x53,
+
5341 0x39, 0x97, 0x39, 0xef, 0x3a, 0x17, 0x3a, 0x62, 0x3a, 0xbe, 0x3a, 0xde,
+
5342 0x3b, 0x41, 0x3b, 0x95, 0x3b, 0xa9, 0x3c, 0x06, 0x3c, 0x52, 0x3c, 0xd3,
+
5343 0x3c, 0xdc, 0x3c, 0xe5, 0x3c, 0xed, 0x3d, 0x23, 0x3d, 0x2c, 0x3d, 0x34,
+
5344 0x3d, 0x3c, 0x3d, 0x85, 0x3d, 0xa0, 0x3d, 0xc5, 0x3d, 0xf2, 0x3e, 0x2a,
+
5345 0x3e, 0x6a, 0x3e, 0x9a, 0x3e, 0xc8, 0x3f, 0x1b, 0x3f, 0x6d, 0x3f, 0x87,
+
5346 0x3f, 0xa7, 0x3f, 0xd2, 0x3f, 0xf5, 0x40, 0x48, 0x40, 0x5c, 0x40, 0x72,
+
5347 0x40, 0x7a, 0x40, 0xa5, 0x40, 0xcd, 0x40, 0xf4, 0x41, 0x3e, 0x41, 0x89,
+
5348 0x41, 0xa0, 0x41, 0xb8, 0x41, 0xc9, 0x41, 0xd1, 0x41, 0xe2, 0x41, 0xf3,
+
5349 0x41, 0xfb, 0x42, 0x03, 0x42, 0x0b, 0x42, 0x1b, 0x42, 0x24, 0x42, 0x68,
+
5350 0x42, 0xae, 0x42, 0xf5, 0x43, 0x1d, 0x43, 0x45, 0x43, 0x67, 0x43, 0x8a,
+
5351 0x43, 0xa0, 0x43, 0xb5, 0x43, 0xc0, 0x43, 0xdb, 0x43, 0xe6, 0x44, 0x07,
+
5352 0x44, 0x2e, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65,
+
5353 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0xb4, 0x45, 0x04,
+
5354 0x45, 0x5d, 0x45, 0xb2, 0x46, 0x3c, 0x46, 0xa5, 0x47, 0x0b, 0x47, 0x5f,
+
5355 0x47, 0x72, 0x47, 0xc5, 0x48, 0x09, 0x48, 0x11, 0x48, 0x58, 0x48, 0x93,
+
5356 0x48, 0xc7, 0x49, 0x80, 0x49, 0xd2, 0x4a, 0x15, 0x4a, 0x5a, 0x4a, 0xc6,
+
5357 0x4a, 0xfd, 0x4b, 0x40, 0x4b, 0x6b, 0x4b, 0x8b, 0x4b, 0x9f, 0x4b, 0xd2,
+
5358 0x4b, 0xda, 0x4b, 0xf8, 0x4c, 0x09, 0x4c, 0x2e, 0x4c, 0x66, 0x4c, 0x80,
+
5359 0x4c, 0xad, 0x4c, 0xc8, 0x4c, 0xe4, 0x4d, 0x0a, 0x4d, 0x31, 0x4d, 0x59,
+
5360 0x4d, 0x64, 0x4d, 0x9c, 0x4d, 0xb0, 0x4d, 0xcd, 0x4e, 0x38, 0x4e, 0x85,
+
5361 0x4e, 0xbc, 0x4f, 0x07, 0x4f, 0x2c, 0x4f, 0x4c, 0x4f, 0x77, 0x4f, 0x93,
+
5362 0x4f, 0xea, 0x50, 0x49, 0x50, 0xc2, 0x51, 0x6c, 0x51, 0xc0, 0x51, 0xc9,
+
5363 0x51, 0xd1, 0x51, 0xf5, 0x52, 0x19, 0x52, 0x3d, 0x52, 0x61, 0x52, 0x85,
+
5364 0x52, 0xaa, 0x52, 0xce, 0x52, 0xf2, 0x53, 0x27, 0x53, 0x4d, 0x53, 0x7e,
+
5365 0x53, 0xb4, 0x53, 0xe9, 0x54, 0x21, 0x54, 0x41, 0x54, 0x60, 0x54, 0x80,
+
5366 0x54, 0xa0, 0x54, 0xb0, 0x54, 0xc1, 0x54, 0xd2, 0x54, 0xe3, 0x54, 0xf4,
+
5367 0x55, 0x05, 0x55, 0x16, 0x55, 0x27, 0x55, 0x38, 0x55, 0x48, 0x55, 0x59,
+
5368 0x55, 0x6a, 0x55, 0x7b, 0x55, 0x8c, 0x55, 0x9d, 0x55, 0xae, 0x55, 0xbf,
+
5369 0x55, 0xd0, 0x55, 0xe2, 0x55, 0xf3, 0x56, 0x04, 0x56, 0x15, 0x56, 0x28,
+
5370 0x56, 0x3e, 0x56, 0x52, 0x56, 0x66, 0x56, 0x77, 0x56, 0x91, 0x56, 0xa4,
+
5371 0x57, 0x8a, 0x58, 0x70, 0x59, 0x3e, 0x59, 0x62, 0x59, 0xa1, 0x59, 0xb3,
+
5372 0x59, 0xce, 0x59, 0xf0, 0x5a, 0x1d, 0x5a, 0x3f, 0x5a, 0x61, 0x5a, 0x7a,
+
5373 0x5a, 0xa6, 0x5a, 0xc8, 0x5a, 0xea, 0x5b, 0x03, 0x5b, 0x3b, 0x5b, 0x64,
+
5374 0x5b, 0x91, 0x5b, 0xb1, 0x5b, 0xce, 0x5b, 0xeb, 0x5c, 0x04, 0x5c, 0x19,
+
5375 0x5c, 0x37, 0x5c, 0x4c, 0x5c, 0x6a, 0x5c, 0x8b, 0x5c, 0xa6, 0x5c, 0xbc,
+
5376 0x5c, 0xda, 0x5c, 0xf0, 0x5d, 0x0e, 0x5d, 0x31, 0x5d, 0x55, 0x5d, 0x72,
+
5377 0x5d, 0x8f, 0x5d, 0xa8, 0x5d, 0xc3, 0x5d, 0xd5, 0x5d, 0xef, 0x5e, 0x04,
+
5378 0x5e, 0x19, 0x5e, 0x2a, 0x5e, 0x3b, 0x5e, 0x54, 0x5e, 0x7d, 0x5e, 0xb2,
+
5379 0x5e, 0xc3, 0x5e, 0xe7, 0x5f, 0x0b, 0x5f, 0x1c, 0x5f, 0x35, 0x5f, 0x4a,
+
5380 0x5f, 0x61, 0x5f, 0x76, 0x5f, 0x88, 0x5f, 0xaa, 0x5f, 0xc4, 0x5f, 0xde,
+
5381 0x5f, 0xff, 0x60, 0x1d, 0x60, 0x39, 0x60, 0x59, 0x60, 0x74, 0x60, 0x8f,
+
5382 0x60, 0xad, 0x60, 0xce, 0x60, 0xee, 0x61, 0x0f, 0x61, 0x31, 0x61, 0x53,
+
5383 0x61, 0x6b, 0x61, 0x85, 0x61, 0xaa, 0x61, 0xc2, 0x61, 0xd9, 0x61, 0xea,
+
5384 0x62, 0x04, 0x62, 0x19, 0x62, 0x2e, 0x62, 0x3e, 0x62, 0x4e, 0x62, 0x67,
+
5385 0x62, 0x91, 0x62, 0xbf, 0x62, 0xcf, 0x62, 0xf0, 0x63, 0x11, 0x63, 0x22,
+
5386 0x63, 0x38, 0x63, 0x51, 0x63, 0x65, 0x63, 0x79, 0x63, 0x8a, 0x63, 0xac,
+
5387 0x63, 0xc6, 0x63, 0xe0, 0x64, 0x00, 0x64, 0x1d, 0x64, 0x39, 0x64, 0x59,
+
5388 0x64, 0x75, 0x64, 0x91, 0x64, 0xb2, 0x64, 0xd3, 0x64, 0xf3, 0x65, 0x10,
+
5389 0x65, 0x2d, 0x65, 0x4f, 0x65, 0x67, 0x65, 0x84, 0x65, 0x98, 0x65, 0xb5,
+
5390 0x65, 0xc9, 0x65, 0xe5, 0x65, 0xff, 0x66, 0x18, 0x66, 0x2d, 0x66, 0x46,
+
5391 0x66, 0x5b, 0x66, 0x7d, 0x66, 0x99, 0x66, 0xb5, 0x66, 0xe5, 0x67, 0x07,
+
5392 0x67, 0x29, 0x67, 0x4a, 0x67, 0x63, 0x67, 0x7c, 0x67, 0x99, 0x67, 0xb0,
+
5393 0x67, 0xc7, 0x67, 0xf8, 0x68, 0x1c, 0x68, 0x40, 0x68, 0xbb, 0x69, 0x37,
+
5394 0x69, 0x97, 0x69, 0xe0, 0x6a, 0x3b, 0x6a, 0x75, 0x6a, 0x8c, 0x6a, 0xaf,
+
5395 0x6a, 0xd5, 0x6a, 0xdd, 0x6b, 0x06, 0x6b, 0x36, 0x6b, 0xa2, 0x6c, 0x23,
+
5396 0x6c, 0x48, 0x6c, 0xe2, 0x6d, 0x5c, 0x6d, 0xc5, 0x6d, 0xfd, 0x6e, 0x38,
+
5397 0x6e, 0x49, 0x6e, 0x54, 0x6e, 0x66, 0x6e, 0x81, 0x6e, 0xa2, 0x6f, 0x05,
+
5398 0x6f, 0x36, 0x6f, 0x96, 0x6f, 0xd5, 0x6f, 0xec, 0x70, 0x39, 0x70, 0x60,
+
5399 0x70, 0xa3, 0x70, 0xd9, 0x71, 0x14, 0x71, 0x51, 0x71, 0x73, 0x72, 0x2b,
+
5400 0x72, 0x6e, 0x72, 0xc9, 0x72, 0xec, 0x73, 0x33, 0x73, 0x5d, 0x73, 0x86,
+
5401 0x73, 0xb4, 0x73, 0xc4, 0x73, 0xec, 0x74, 0x12, 0x74, 0x1d, 0x74, 0x2f,
+
5402 0x74, 0x41, 0x74, 0x49, 0x74, 0x6c, 0x74, 0x8f, 0x74, 0xa1, 0x74, 0xb1,
+
5403 0x74, 0xc2, 0x74, 0xca, 0x74, 0xd2, 0x74, 0xda, 0x74, 0xe2, 0x74, 0xea,
+
5404 0x75, 0x07, 0x75, 0x24, 0x75, 0x4b, 0x75, 0x53, 0x75, 0x88, 0x75, 0x90,
+
5405 0x75, 0xc0, 0x75, 0xcb, 0x75, 0xf1, 0x76, 0x16, 0x76, 0x2f, 0x76, 0x38,
+
5406 0x76, 0x41, 0x76, 0x65, 0x76, 0x6d, 0x76, 0x90, 0x76, 0x99, 0x76, 0xa2,
+
5407 0x76, 0xb3, 0x76, 0xbb, 0x76, 0xe7, 0x77, 0x01, 0x77, 0x15, 0x77, 0x2a,
+
5408 0x77, 0x4b, 0x77, 0x65, 0x77, 0x80, 0x77, 0xa6, 0x77, 0xd9, 0x77, 0xe1,
+
5409 0x77, 0xf2, 0x78, 0x22, 0x78, 0x45, 0x78, 0x4d, 0x78, 0x55, 0x78, 0x5d,
+
5410 0x78, 0x65, 0x78, 0x6d, 0x78, 0x8a, 0x78, 0x92, 0x78, 0x9a, 0x78, 0xa2,
+
5411 0x78, 0xaa, 0x78, 0xc5, 0x78, 0xf0, 0x78, 0xf9, 0x79, 0x0e, 0x79, 0x23,
+
5412 0x79, 0x45, 0x79, 0x63, 0x79, 0x6b, 0x79, 0x9d, 0x79, 0xa6, 0x79, 0xdb,
+
5413 0x79, 0xe7, 0x79, 0xf3, 0x79, 0xff, 0x7a, 0x0a, 0x7a, 0x16, 0x7a, 0x22,
+
5414 0x7a, 0x2e, 0x7a, 0x3a, 0x7a, 0x46, 0x7a, 0x52, 0x7a, 0x5e, 0x7a, 0x6a,
+
5415 0x7a, 0x6a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x42,
+
5416 0x1c, 0xaf, 0x64, 0x2c, 0x5f, 0x0f, 0x3c, 0xf5, 0x00, 0x0b, 0x03, 0xe8,
+
5417 0x00, 0x00, 0x00, 0x00, 0xda, 0x17, 0x06, 0x51, 0x00, 0x00, 0x00, 0x00,
+
5418 0xda, 0xaa, 0x43, 0x42, 0xff, 0xb0, 0xfe, 0x70, 0x05, 0xaf, 0x03, 0xe8,
+
5419 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5420 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5421 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5422 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5423 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5424 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5425 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5426 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5427 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5428 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0a,
+
5429 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x26,
+
5430 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
+
5431 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
+
5432 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32,
+
5433 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
+
5434 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5435 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5436 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5437 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5438 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5439 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5440 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
+
5441 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3f,
+
5442 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
+
5443 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
+
5444 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x2e,
+
5445 0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5446 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
+
5447 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x41,
+
5448 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
+
5449 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
+
5450 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
+
5451 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
+
5452 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x29,
+
5453 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3c, 0x01, 0xf4, 0x00, 0x3f,
+
5454 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
+
5455 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x3f,
+
5456 0x01, 0xf4, 0x00, 0x11, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
+
5457 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5458 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5459 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5460 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5461 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5462 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5463 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5464 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5465 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5466 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5467 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5468 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5469 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5470 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5471 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x37,
+
5472 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x1a, 0x01, 0xf4, 0x00, 0x34,
+
5473 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
+
5474 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
+
5475 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5476 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5477 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5478 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5479 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x1c,
+
5480 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
+
5481 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
+
5482 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5483 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5484 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5485 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
+
5486 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
+
5487 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5488 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5489 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x16,
+
5490 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5491 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x25,
+
5492 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5493 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5494 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
+
5495 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5496 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5497 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5498 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5499 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5500 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5501 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5502 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5503 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5504 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
+
5505 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x07,
+
5506 0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x18,
+
5507 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
+
5508 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
+
5509 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x26,
+
5510 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
+
5511 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5512 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5513 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5514 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5515 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5516 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5517 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
+
5518 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x28,
+
5519 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x33, 0x01, 0xf4, 0x00, 0x4e,
+
5520 0x01, 0xf4, 0x00, 0x37, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5521 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5522 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x43,
+
5523 0x01, 0xf4, 0xff, 0xff, 0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0xff, 0xd2,
+
5524 0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
+
5525 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5e,
+
5526 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
+
5527 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
+
5528 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
+
5529 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x2c,
+
5530 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x3d,
+
5531 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x4a,
+
5532 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
+
5533 0x01, 0xf4, 0x00, 0x41, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x15,
+
5534 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4b, 0x01, 0xf4, 0x00, 0x23,
+
5535 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
+
5536 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
+
5537 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x42,
+
5538 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5539 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5540 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5541 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5542 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5543 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5544 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5545 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5546 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5547 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5548 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5549 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x06,
+
5550 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x25,
+
5551 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
+
5552 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
+
5553 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
+
5554 0x01, 0xf4, 0x00, 0x21, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
+
5555 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
+
5556 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
+
5557 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
+
5558 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3a,
+
5559 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
+
5560 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
+
5561 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
+
5562 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
+
5563 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
+
5564 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5565 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
+
5566 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
+
5567 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
+
5568 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x24,
+
5569 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e,
+
5570 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x29,
+
5571 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
+
5572 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
+
5573 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
+
5574 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
+
5575 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
+
5576 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
+
5577 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
+
5578 0x01, 0xf4, 0x00, 0x52, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x3d,
+
5579 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3e,
+
5580 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x3d,
+
5581 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x6e,
+
5582 0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
+
5583 0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
+
5584 0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
+
5585 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70,
+
5586 0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77,
+
5587 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72,
+
5588 0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85,
+
5589 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c,
+
5590 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f,
+
5591 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e,
+
5592 0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
+
5593 0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
+
5594 0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
+
5595 0x01, 0xf4, 0x00, 0x47, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5596 0x01, 0xf4, 0x00, 0x01, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
+
5597 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
+
5598 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
+
5599 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0xa1, 0x01, 0xf4, 0x00, 0xad,
+
5600 0x01, 0xf4, 0x00, 0xa0, 0x01, 0xf4, 0x00, 0x06, 0x01, 0xf4, 0x00, 0xad,
+
5601 0x01, 0xf4, 0x00, 0xad, 0x01, 0xf4, 0x00, 0x3e, 0x01, 0xf4, 0x00, 0x3c,
+
5602 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9d, 0x01, 0xf4, 0x00, 0x26,
+
5603 0x01, 0xf4, 0x00, 0xc8, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x3a,
+
5604 0x01, 0xf4, 0x00, 0x3a, 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x26,
+
5605 0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x2f,
+
5606 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x7e, 0x01, 0xf4, 0x00, 0x7f,
+
5607 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x45,
+
5608 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x45, 0x01, 0xf4, 0x00, 0x0a,
+
5609 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x9f,
+
5610 0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4d,
+
5611 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9f, 0x01, 0xf4, 0x00, 0x40,
+
5612 0x01, 0xf4, 0x00, 0x46, 0x01, 0xf4, 0x00, 0x89, 0x01, 0xf4, 0x00, 0x8a,
+
5613 0x01, 0xf4, 0x00, 0x82, 0x01, 0xf4, 0x00, 0xce, 0x01, 0xf4, 0x00, 0x6b,
+
5614 0x01, 0xf4, 0x00, 0xc7, 0x03, 0xe8, 0x00, 0x29, 0x05, 0xdc, 0x00, 0x2d,
+
5615 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5616 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5617 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x26,
+
5618 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x3f,
+
5619 0x01, 0xf4, 0x00, 0x39, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x1c,
+
5620 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x13, 0x01, 0xf4, 0x00, 0x1d,
+
5621 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x19,
+
5622 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x2f,
+
5623 0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x34,
+
5624 0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x1e,
+
5625 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x84, 0x01, 0xf4, 0x00, 0x33,
+
5626 0x01, 0xf4, 0x00, 0x27, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
+
5627 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x44,
+
5628 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x27,
+
5629 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x22,
+
5630 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
+
5631 0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x0c,
+
5632 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x14,
+
5633 0x01, 0xf4, 0x00, 0x1d, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x20,
+
5634 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x15, 0x01, 0xf4, 0x00, 0x1a,
+
5635 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x25,
+
5636 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x30,
+
5637 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
+
5638 0x01, 0xf4, 0x00, 0x30, 0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x15,
+
5639 0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x3a,
+
5640 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22,
+
5641 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a,
+
5642 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x00,
+
5643 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5644 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5645 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5646 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5647 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5648 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x01, 0xb6,
+
5649 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
+
5650 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5651 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
+
5652 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x02,
+
5653 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
+
5654 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2f,
+
5655 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40,
+
5656 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5657 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
+
5658 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
+
5659 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
+
5660 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76,
+
5661 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5662 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
+
5663 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5664 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f,
+
5665 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5666 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5667 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10,
+
5668 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c,
+
5669 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5670 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76,
+
5671 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5672 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5673 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5674 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5675 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
+
5676 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0xb8,
+
5677 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
+
5678 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5679 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5680 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10, 0x01, 0xf4, 0x00, 0xb8,
+
5681 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0xb8,
+
5682 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5683 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0xb8,
+
5684 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
+
5685 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5686 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5687 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5688 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
+
5689 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5690 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5691 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
+
5692 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
+
5693 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
+
5694 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
+
5695 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
+
5696 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
+
5697 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x29,
+
5698 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x0d,
+
5699 0x01, 0xf4, 0x00, 0x05, 0x01, 0xf4, 0x00, 0x0c, 0x01, 0xf4, 0x00, 0x0f,
+
5700 0x01, 0xf4, 0x00, 0x09, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x50,
+
5701 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, 0x01, 0xf4, 0x00, 0x1d,
+
5702 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3c,
+
5703 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x12,
+
5704 0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0xca, 0x01, 0xf4, 0x00, 0x8c,
+
5705 0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0x2e,
+
5706 0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2a,
+
5707 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x29,
+
5708 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x3d,
+
5709 0x01, 0xf4, 0x00, 0x02, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x00,
+
5710 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x0f,
+
5711 0x05, 0xdc, 0x00, 0x2d, 0x03, 0xe8, 0x00, 0x2c, 0x03, 0xe8, 0x00, 0x93,
+
5712 0x03, 0xe8, 0x00, 0x3c, 0x03, 0xe8, 0x00, 0x95, 0x01, 0xf4, 0x00, 0xad,
+
5713 0x01, 0xf4, 0x00, 0xb0, 0x01, 0xf4, 0x00, 0xac, 0x01, 0xf4, 0x00, 0x8e,
+
5714 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb2, 0x01, 0xf4, 0x00, 0xca,
+
5715 0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xb8,
+
5716 0x01, 0xf4, 0x00, 0xd1, 0x01, 0xf4, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x69,
+
5717 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xd4,
+
5718 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x63,
+
5719 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x5f,
+
5720 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x5b,
+
5721 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x01, 0x85,
+
5722 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0xad,
+
5723 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x71,
+
5724 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x6d,
+
5725 0x01, 0xf4, 0x00, 0x69, 0x01, 0xf4, 0x00, 0xc4, 0x01, 0xf4, 0x00, 0x96,
+
5726 0x01, 0xf4, 0x00, 0xd4, 0x01, 0xf4, 0x00, 0x7b, 0x01, 0xf4, 0x00, 0x75,
+
5727 0x01, 0xf4, 0x00, 0x83, 0x01, 0xf4, 0x00, 0x60, 0x01, 0xf4, 0x00, 0x9f,
+
5728 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xa1,
+
5729 0x01, 0xf4, 0x00, 0xef, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0xc0,
+
5730 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x6a,
+
5731 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x69,
+
5732 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x01, 0x8e,
+
5733 0x01, 0xf4, 0x00, 0x65, 0x01, 0xf4, 0x00, 0xcc, 0x01, 0xf4, 0x00, 0xb2,
+
5734 0x01, 0xf4, 0x00, 0xab, 0x01, 0xf4, 0x00, 0x6a, 0x01, 0xf4, 0x00, 0x4a,
+
5735 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x9b, 0x01, 0xf4, 0x00, 0x5f,
+
5736 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71,
+
5737 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x64,
+
5738 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x66,
+
5739 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56,
+
5740 0x00, 0x00, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
+
5741 0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x05, 0xdc, 0xff, 0xb0, 0xfd, 0xe5,
+
5742 0x05, 0xaf, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5743 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc2, 0x00, 0x04, 0x01, 0xf9,
+
5744 0x01, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00,
+
5745 0x00, 0x4b, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x32,
+
5746 0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x05, 0x09, 0x00, 0x00, 0x00, 0x00,
+
5747 0x00, 0x00, 0xa0, 0x00, 0x00, 0xff, 0x00, 0x00, 0xf9, 0xeb, 0x00, 0x00,
+
5748 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x43, 0x59, 0x52, 0x45, 0x00, 0xc0,
+
5749 0x00, 0x00, 0xff, 0xfd, 0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x03, 0xec,
+
5750 0x01, 0xc6, 0x60, 0x00, 0x01, 0x93, 0xcd, 0xd4, 0x00, 0x00, 0x01, 0xc9,
+
5751 0x02, 0x6f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02,
+
5752 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01,
+
5753 0x00, 0x00, 0x00, 0x14, 0x00, 0x04, 0x0a, 0x2c, 0x00, 0x00, 0x01, 0x0a,
+
5754 0x01, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x2f,
+
5755 0x00, 0x39, 0x00, 0x7e, 0x01, 0x31, 0x01, 0x48, 0x01, 0x7e, 0x01, 0x8f,
+
5756 0x01, 0x92, 0x01, 0x98, 0x01, 0xa1, 0x01, 0xb0, 0x01, 0xb9, 0x01, 0xc9,
+
5757 0x01, 0xe7, 0x01, 0xeb, 0x02, 0x1b, 0x02, 0x2d, 0x02, 0x33, 0x02, 0x37,
+
5758 0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98, 0x02, 0x9a, 0x02, 0xbc,
+
5759 0x02, 0xbf, 0x02, 0xcc, 0x02, 0xdd, 0x03, 0x04, 0x03, 0x0c, 0x03, 0x0f,
+
5760 0x03, 0x12, 0x03, 0x1b, 0x03, 0x24, 0x03, 0x28, 0x03, 0x2e, 0x03, 0x31,
+
5761 0x03, 0x36, 0x03, 0x75, 0x1e, 0x09, 0x1e, 0x0f, 0x1e, 0x17, 0x1e, 0x1d,
+
5762 0x1e, 0x21, 0x1e, 0x25, 0x1e, 0x2b, 0x1e, 0x2f, 0x1e, 0x37, 0x1e, 0x3b,
+
5763 0x1e, 0x49, 0x1e, 0x53, 0x1e, 0x5b, 0x1e, 0x69, 0x1e, 0x6f, 0x1e, 0x7b,
+
5764 0x1e, 0x85, 0x1e, 0x8f, 0x1e, 0x93, 0x1e, 0x97, 0x1e, 0x9e, 0x1e, 0xf9,
+
5765 0x20, 0x0b, 0x20, 0x10, 0x20, 0x15, 0x20, 0x1a, 0x20, 0x1e, 0x20, 0x22,
+
5766 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3a, 0x20, 0x44, 0x20, 0x70,
+
5767 0x20, 0x79, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x89, 0x20, 0xa1, 0x20, 0xa4,
+
5768 0x20, 0xa7, 0x20, 0xa9, 0x20, 0xad, 0x20, 0xb2, 0x20, 0xb5, 0x20, 0xba,
+
5769 0x20, 0xbd, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x24, 0x21, 0x26,
+
5770 0x21, 0x2e, 0x21, 0x99, 0x21, 0xea, 0x22, 0x02, 0x22, 0x06, 0x22, 0x08,
+
5771 0x22, 0x0f, 0x22, 0x12, 0x22, 0x15, 0x22, 0x17, 0x22, 0x1a, 0x22, 0x1e,
+
5772 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x22, 0x95, 0x23, 0x02,
+
5773 0x23, 0x18, 0x23, 0x27, 0x23, 0x2b, 0x23, 0x8b, 0x23, 0xce, 0x24, 0x23,
+
5774 0x25, 0x94, 0x25, 0x9f, 0x25, 0xc7, 0x25, 0xcb, 0x25, 0xcf, 0x26, 0x3b,
+
5775 0x26, 0x60, 0x26, 0x63, 0x26, 0x66, 0x27, 0x15, 0x27, 0x18, 0x2b, 0x07,
+
5776 0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+
5777 0x00, 0x0d, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3a, 0x00, 0xa0, 0x01, 0x34,
+
5778 0x01, 0x4a, 0x01, 0x8f, 0x01, 0x92, 0x01, 0x98, 0x01, 0xa0, 0x01, 0xaf,
+
5779 0x01, 0xb8, 0x01, 0xc7, 0x01, 0xe6, 0x01, 0xea, 0x01, 0xfa, 0x02, 0x2a,
+
5780 0x02, 0x30, 0x02, 0x37, 0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98,
+
5781 0x02, 0x9a, 0x02, 0xb9, 0x02, 0xbe, 0x02, 0xc6, 0x02, 0xd8, 0x03, 0x00,
+
5782 0x03, 0x06, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x1b, 0x03, 0x23, 0x03, 0x26,
+
5783 0x03, 0x2e, 0x03, 0x31, 0x03, 0x35, 0x03, 0x75, 0x1e, 0x08, 0x1e, 0x0c,
+
5784 0x1e, 0x14, 0x1e, 0x1c, 0x1e, 0x20, 0x1e, 0x24, 0x1e, 0x2a, 0x1e, 0x2e,
+
5785 0x1e, 0x36, 0x1e, 0x3a, 0x1e, 0x42, 0x1e, 0x4c, 0x1e, 0x5a, 0x1e, 0x5e,
+
5786 0x1e, 0x6c, 0x1e, 0x78, 0x1e, 0x80, 0x1e, 0x8e, 0x1e, 0x92, 0x1e, 0x97,
+
5787 0x1e, 0x9e, 0x1e, 0xa0, 0x20, 0x07, 0x20, 0x10, 0x20, 0x12, 0x20, 0x18,
+
5788 0x20, 0x1c, 0x20, 0x20, 0x20, 0x26, 0x20, 0x30, 0x20, 0x32, 0x20, 0x39,
+
5789 0x20, 0x44, 0x20, 0x70, 0x20, 0x74, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x80,
+
5790 0x20, 0xa1, 0x20, 0xa3, 0x20, 0xa6, 0x20, 0xa9, 0x20, 0xab, 0x20, 0xb1,
+
5791 0x20, 0xb5, 0x20, 0xb9, 0x20, 0xbc, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22,
+
5792 0x21, 0x24, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x90, 0x21, 0xe6, 0x22, 0x02,
+
5793 0x22, 0x05, 0x22, 0x08, 0x22, 0x0f, 0x22, 0x11, 0x22, 0x15, 0x22, 0x17,
+
5794 0x22, 0x19, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64,
+
5795 0x22, 0x95, 0x23, 0x02, 0x23, 0x18, 0x23, 0x25, 0x23, 0x2b, 0x23, 0x8b,
+
5796 0x23, 0xce, 0x24, 0x23, 0x25, 0x00, 0x25, 0x95, 0x25, 0xc6, 0x25, 0xca,
+
5797 0x25, 0xcf, 0x26, 0x39, 0x26, 0x60, 0x26, 0x63, 0x26, 0x65, 0x27, 0x13,
+
5798 0x27, 0x17, 0x2b, 0x05, 0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff,
+
5799 0x03, 0xc1, 0x02, 0x43, 0x00, 0x00, 0x01, 0xa9, 0x00, 0x00, 0x00, 0x00,
+
5800 0x00, 0x00, 0x00, 0x00, 0xff, 0x23, 0x00, 0xc6, 0xfe, 0xca, 0x00, 0x00,
+
5801 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5802 0x00, 0x00, 0x00, 0x00, 0xff, 0x13, 0xff, 0x45, 0xfe, 0xd1, 0xff, 0x14,
+
5803 0xfe, 0x6c, 0xfe, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5804 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x67,
+
5805 0x00, 0x66, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5c, 0xff, 0xf9, 0x00, 0x00,
+
5806 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5807 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5808 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5809 0xe3, 0x0d, 0xe2, 0x13, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x27, 0x00, 0x00,
+
5810 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xf7, 0xe2, 0x56, 0xe3, 0x23,
+
5811 0xe2, 0x08, 0xe1, 0xc9, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0xf0, 0xe1, 0x58,
+
5812 0xe1, 0x65, 0xe1, 0xb2, 0x00, 0x00, 0xe1, 0xb9, 0xe1, 0xbc, 0x00, 0x00,
+
5813 0x00, 0x00, 0xe1, 0x9c, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x47, 0xe2, 0x46,
+
5814 0xe2, 0x31, 0xe0, 0xb4, 0xe1, 0x58, 0xe2, 0x2f, 0x00, 0x00, 0x00, 0x00,
+
5815 0xe0, 0x82, 0x00, 0x00, 0xe0, 0x62, 0xe0, 0x71, 0x00, 0x00, 0xe0, 0x54,
+
5816 0xe0, 0x50, 0x00, 0x00, 0xe0, 0x5d, 0xe0, 0x52, 0xe0, 0x2f, 0xe0, 0x11,
+
5817 0x00, 0x00, 0xdf, 0xf2, 0xe0, 0x5e, 0xe0, 0x4e, 0x00, 0x00, 0xe0, 0x38,
+
5818 0xdf, 0xd4, 0xdf, 0x99, 0xdf, 0x3b, 0x00, 0x00, 0xdd, 0x19, 0xdc, 0xf8,
+
5819 0x00, 0x00, 0xdc, 0xed, 0xdd, 0x08, 0xdc, 0xe4, 0xdc, 0xe2, 0xdc, 0xe1,
+
5820 0xdc, 0x35, 0xdc, 0x34, 0x00, 0x00, 0xd7, 0x04, 0xd4, 0x13, 0x03, 0x6b,
+
5821 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x22,
+
5822 0x01, 0xaa, 0x02, 0xcc, 0x02, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5823 0x03, 0x56, 0x03, 0x58, 0x03, 0x5a, 0x03, 0x5c, 0x03, 0x60, 0x03, 0x62,
+
5824 0x03, 0x64, 0x03, 0xa6, 0x03, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5825 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xa6, 0x03, 0xac, 0x03, 0xae,
+
5826 0x03, 0xba, 0x03, 0xc4, 0x03, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5827 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5828 0x03, 0xc6, 0x03, 0xc8, 0x03, 0xce, 0x03, 0xd4, 0x03, 0xd6, 0x03, 0xd8,
+
5829 0x03, 0xda, 0x03, 0xdc, 0x03, 0xde, 0x03, 0xe0, 0x03, 0xe2, 0x03, 0xf0,
+
5830 0x03, 0xfe, 0x04, 0x00, 0x04, 0x16, 0x04, 0x1c, 0x04, 0x22, 0x04, 0x2c,
+
5831 0x04, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x04, 0x2c, 0x04, 0xde, 0x00, 0x00,
+
5832 0x04, 0xe4, 0x04, 0xea, 0x04, 0xee, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00,
+
5833 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5834 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00, 0x00, 0x00,
+
5835 0x04, 0xde, 0x04, 0xe2, 0x00, 0x00, 0x04, 0xe2, 0x04, 0xe4, 0x00, 0x00,
+
5836 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xda,
+
5837 0x04, 0xec, 0x00, 0x00, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x04, 0xf0,
+
5838 0x00, 0x00, 0x00, 0x00, 0x04, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5839 0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe4,
+
5840 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00,
+
5841 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
5842 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0xf8, 0x00, 0x00, 0x00, 0x00,
+
5843 0x00, 0x00, 0x00, 0x00, 0x02, 0x4c, 0x02, 0x1e, 0x02, 0x43, 0x02, 0x26,
+
5844 0x02, 0x55, 0x02, 0x85, 0x03, 0x4e, 0x02, 0x44, 0x02, 0x2b, 0x02, 0x2c,
+
5845 0x02, 0x24, 0x02, 0x6c, 0x02, 0x1a, 0x02, 0x31, 0x02, 0x19, 0x02, 0x27,
+
5846 0x02, 0x1b, 0x02, 0x1c, 0x02, 0x73, 0x02, 0x70, 0x02, 0x72, 0x02, 0x20,
+
5847 0x03, 0x4d, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x24, 0x00, 0x2a,
+
5848 0x00, 0x42, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x5e, 0x00, 0x60,
+
5849 0x00, 0x63, 0x00, 0x6d, 0x00, 0x6f, 0x00, 0x78, 0x00, 0x9b, 0x00, 0x9d,
+
5850 0x00, 0x9e, 0x00, 0xa6, 0x00, 0xb3, 0x00, 0xba, 0x00, 0xd1, 0x00, 0xd2,
+
5851 0x00, 0xd7, 0x00, 0xd8, 0x00, 0xe2, 0x02, 0x2f, 0x02, 0x28, 0x02, 0x30,
+
5852 0x02, 0x7a, 0x02, 0x38, 0x03, 0x95, 0x00, 0xe8, 0x01, 0x03, 0x01, 0x05,
+
5853 0x01, 0x0c, 0x01, 0x12, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x34, 0x01, 0x39,
+
5854 0x01, 0x49, 0x01, 0x4c, 0x01, 0x4f, 0x01, 0x58, 0x01, 0x5a, 0x01, 0x63,
+
5855 0x01, 0x86, 0x01, 0x88, 0x01, 0x89, 0x01, 0x93, 0x01, 0x9f, 0x01, 0xa7,
+
5856 0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xcf, 0x02, 0x2d,
+
5857 0x03, 0x57, 0x02, 0x2e, 0x02, 0x78, 0x02, 0x4d, 0x02, 0x1f, 0x02, 0x52,
+
5858 0x02, 0x64, 0x02, 0x54, 0x02, 0x66, 0x03, 0x58, 0x03, 0x50, 0x03, 0x93,
+
5859 0x03, 0x51, 0x01, 0xd5, 0x02, 0x3f, 0x02, 0x79, 0x02, 0x32, 0x03, 0x52,
+
5860 0x03, 0x9d, 0x03, 0x54, 0x02, 0x76, 0x02, 0x05, 0x02, 0x06, 0x03, 0x96,
+
5861 0x02, 0x83, 0x03, 0x4f, 0x02, 0x22, 0x03, 0x9e, 0x02, 0x04, 0x01, 0xd6,
+
5862 0x02, 0x40, 0x02, 0x0f, 0x02, 0x0e, 0x02, 0x10, 0x02, 0x21, 0x00, 0x12,
+
5863 0x00, 0x02, 0x00, 0x09, 0x00, 0x19, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1a,
+
5864 0x00, 0x20, 0x00, 0x39, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x58,
+
5865 0x00, 0x50, 0x00, 0x52, 0x00, 0x54, 0x00, 0x25, 0x00, 0x77, 0x00, 0x86,
+
5866 0x00, 0x79, 0x00, 0x7b, 0x00, 0x96, 0x00, 0x82, 0x02, 0x6e, 0x00, 0x94,
+
5867 0x00, 0xc1, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xbf, 0x00, 0xd9, 0x00, 0x9c,
+
5868 0x01, 0x9e, 0x00, 0xf9, 0x00, 0xe9, 0x00, 0xf0, 0x01, 0x00, 0x00, 0xf7,
+
5869 0x00, 0xfe, 0x01, 0x01, 0x01, 0x08, 0x01, 0x21, 0x01, 0x13, 0x01, 0x17,
+
5870 0x01, 0x1e, 0x01, 0x43, 0x01, 0x3b, 0x01, 0x3d, 0x01, 0x3f, 0x01, 0x0d,
+
5871 0x01, 0x62, 0x01, 0x71, 0x01, 0x64, 0x01, 0x66, 0x01, 0x81, 0x01, 0x6d,
+
5872 0x02, 0x6f, 0x01, 0x7f, 0x01, 0xae, 0x01, 0xa8, 0x01, 0xaa, 0x01, 0xac,
+
5873 0x01, 0xc6, 0x01, 0x87, 0x01, 0xc8, 0x00, 0x15, 0x00, 0xfc, 0x00, 0x03,
+
5874 0x00, 0xea, 0x00, 0x16, 0x00, 0xfd, 0x00, 0x1e, 0x01, 0x06, 0x00, 0x22,
+
5875 0x01, 0x0a, 0x00, 0x23, 0x01, 0x0b, 0x00, 0x1f, 0x01, 0x07, 0x00, 0x26,
+
5876 0x01, 0x0e, 0x00, 0x27, 0x01, 0x0f, 0x00, 0x3c, 0x01, 0x24, 0x00, 0x2c,
+
5877 0x01, 0x14, 0x00, 0x37, 0x01, 0x1f, 0x00, 0x3f, 0x01, 0x27, 0x00, 0x2d,
+
5878 0x01, 0x15, 0x00, 0x46, 0x01, 0x30, 0x00, 0x44, 0x01, 0x2e, 0x00, 0x48,
+
5879 0x01, 0x32, 0x00, 0x47, 0x01, 0x31, 0x00, 0x4d, 0x01, 0x37, 0x00, 0x4b,
+
5880 0x01, 0x35, 0x00, 0x5d, 0x01, 0x48, 0x00, 0x5b, 0x01, 0x46, 0x00, 0x51,
+
5881 0x01, 0x3c, 0x00, 0x5c, 0x01, 0x47, 0x00, 0x56, 0x01, 0x3a, 0x00, 0x5f,
+
5882 0x01, 0x4b, 0x00, 0x61, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0x65, 0x01, 0x50,
+
5883 0x00, 0x67, 0x01, 0x52, 0x00, 0x66, 0x01, 0x51, 0x00, 0x68, 0x01, 0x53,
+
5884 0x00, 0x6c, 0x01, 0x57, 0x00, 0x70, 0x01, 0x5b, 0x00, 0x72, 0x01, 0x5d,
+
5885 0x00, 0x71, 0x01, 0x5c, 0x00, 0x75, 0x01, 0x60, 0x00, 0x90, 0x01, 0x7b,
+
5886 0x00, 0x7a, 0x01, 0x65, 0x00, 0x8e, 0x01, 0x79, 0x00, 0x9a, 0x01, 0x85,
+
5887 0x00, 0x9f, 0x01, 0x8a, 0x00, 0xa1, 0x01, 0x8c, 0x00, 0xa0, 0x01, 0x8b,
+
5888 0x00, 0xa7, 0x01, 0x94, 0x00, 0xac, 0x01, 0x99, 0x00, 0xab, 0x01, 0x98,
+
5889 0x00, 0xa9, 0x01, 0x96, 0x00, 0xb6, 0x01, 0xa2, 0x00, 0xb5, 0x01, 0xa1,
+
5890 0x00, 0xb4, 0x01, 0xa0, 0x00, 0xcf, 0x01, 0xbc, 0x00, 0xcb, 0x01, 0xb8,
+
5891 0x00, 0xbc, 0x01, 0xa9, 0x00, 0xce, 0x01, 0xbb, 0x00, 0xc9, 0x01, 0xb6,
+
5892 0x00, 0xcd, 0x01, 0xba, 0x00, 0xd4, 0x01, 0xc1, 0x00, 0xda, 0x01, 0xc7,
+
5893 0x00, 0xdb, 0x00, 0xe3, 0x01, 0xd0, 0x00, 0xe5, 0x01, 0xd2, 0x00, 0xe4,
+
5894 0x01, 0xd1, 0x00, 0x88, 0x01, 0x73, 0x00, 0xc3, 0x01, 0xb0, 0x00, 0x41,
+
5895 0x01, 0x2b, 0x00, 0x64, 0x00, 0x6a, 0x01, 0x55, 0x00, 0x45, 0x01, 0x2f,
+
5896 0x00, 0x93, 0x01, 0x7e, 0x00, 0x18, 0x00, 0xff, 0x00, 0x1b, 0x01, 0x02,
+
5897 0x00, 0x95, 0x01, 0x80, 0x00, 0x0f, 0x00, 0xf6, 0x00, 0x14, 0x00, 0xfb,
+
5898 0x00, 0x35, 0x01, 0x1d, 0x00, 0x3b, 0x01, 0x23, 0x00, 0x53, 0x01, 0x3e,
+
5899 0x00, 0x5a, 0x01, 0x45, 0x00, 0x81, 0x01, 0x6c, 0x00, 0x8f, 0x01, 0x7a,
+
5900 0x00, 0xa2, 0x01, 0x8d, 0x00, 0xa4, 0x01, 0x90, 0x00, 0xbe, 0x01, 0xab,
+
5901 0x00, 0xca, 0x01, 0xb7, 0x00, 0xad, 0x01, 0x9a, 0x00, 0xb7, 0x01, 0xa3,
+
5902 0x00, 0x83, 0x01, 0x6e, 0x00, 0x99, 0x01, 0x84, 0x00, 0x84, 0x01, 0x6f,
+
5903 0x00, 0xe0, 0x01, 0xcd, 0x03, 0x74, 0x03, 0x71, 0x03, 0x70, 0x03, 0x6f,
+
5904 0x03, 0x76, 0x03, 0x75, 0x03, 0x98, 0x03, 0x99, 0x03, 0x79, 0x03, 0x72,
+
5905 0x03, 0x77, 0x03, 0x73, 0x03, 0x78, 0x03, 0x9a, 0x03, 0x94, 0x03, 0x9b,
+
5906 0x03, 0x9f, 0x03, 0x9c, 0x03, 0x97, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7f,
+
5907 0x03, 0x83, 0x03, 0x84, 0x03, 0x81, 0x03, 0x7b, 0x03, 0x7a, 0x03, 0x85,
+
5908 0x03, 0x82, 0x03, 0x7e, 0x03, 0x80, 0x00, 0x21, 0x01, 0x09, 0x00, 0x28,
+
5909 0x01, 0x10, 0x00, 0x29, 0x01, 0x11, 0x00, 0x3e, 0x01, 0x26, 0x00, 0x3d,
+
5910 0x01, 0x25, 0x00, 0x2e, 0x01, 0x16, 0x00, 0x49, 0x01, 0x33, 0x00, 0x4e,
+
5911 0x01, 0x38, 0x00, 0x4c, 0x01, 0x36, 0x00, 0x55, 0x01, 0x40, 0x00, 0x69,
+
5912 0x01, 0x54, 0x00, 0x6b, 0x01, 0x56, 0x00, 0x6e, 0x01, 0x59, 0x00, 0x73,
+
5913 0x01, 0x5e, 0x00, 0x74, 0x01, 0x5f, 0x00, 0x76, 0x01, 0x61, 0x00, 0x97,
+
5914 0x01, 0x82, 0x00, 0x98, 0x01, 0x83, 0x00, 0x92, 0x01, 0x7d, 0x00, 0x91,
+
5915 0x01, 0x7c, 0x00, 0xa3, 0x01, 0x8e, 0x00, 0xa5, 0x01, 0x91, 0x00, 0xae,
+
5916 0x01, 0x9b, 0x00, 0xaf, 0x01, 0x9c, 0x00, 0xa8, 0x01, 0x95, 0x00, 0xaa,
+
5917 0x01, 0x97, 0x00, 0xb0, 0x01, 0x9d, 0x00, 0xb8, 0x01, 0xa5, 0x00, 0xb9,
+
5918 0x01, 0xa6, 0x00, 0xd0, 0x01, 0xbd, 0x00, 0xcc, 0x01, 0xb9, 0x00, 0xd6,
+
5919 0x01, 0xc3, 0x00, 0xd3, 0x01, 0xc0, 0x00, 0xd5, 0x01, 0xc2, 0x00, 0xdc,
+
5920 0x01, 0xc9, 0x00, 0xe6, 0x01, 0xd3, 0x00, 0x11, 0x00, 0xf8, 0x00, 0x13,
+
5921 0x00, 0xfa, 0x00, 0x0a, 0x00, 0xf1, 0x00, 0x0c, 0x00, 0xf3, 0x00, 0x0d,
+
5922 0x00, 0xf4, 0x00, 0x0e, 0x00, 0xf5, 0x00, 0x0b, 0x00, 0xf2, 0x00, 0x04,
+
5923 0x00, 0xeb, 0x00, 0x06, 0x00, 0xed, 0x00, 0x07, 0x00, 0xee, 0x00, 0x08,
+
5924 0x00, 0xef, 0x00, 0x05, 0x00, 0xec, 0x00, 0x38, 0x01, 0x20, 0x00, 0x3a,
+
5925 0x01, 0x22, 0x00, 0x40, 0x01, 0x29, 0x00, 0x30, 0x01, 0x18, 0x00, 0x32,
+
5926 0x01, 0x1a, 0x00, 0x33, 0x01, 0x1b, 0x00, 0x34, 0x01, 0x1c, 0x00, 0x31,
+
5927 0x01, 0x19, 0x00, 0x59, 0x01, 0x44, 0x00, 0x57, 0x01, 0x42, 0x00, 0x85,
+
5928 0x01, 0x70, 0x00, 0x87, 0x01, 0x72, 0x00, 0x7c, 0x01, 0x67, 0x00, 0x7e,
+
5929 0x01, 0x69, 0x00, 0x7f, 0x01, 0x6a, 0x00, 0x80, 0x01, 0x6b, 0x00, 0x7d,
+
5930 0x01, 0x68, 0x00, 0x89, 0x01, 0x74, 0x00, 0x8b, 0x01, 0x76, 0x00, 0x8c,
+
5931 0x01, 0x77, 0x00, 0x8d, 0x01, 0x78, 0x00, 0x8a, 0x01, 0x75, 0x00, 0xc0,
+
5932 0x01, 0xad, 0x00, 0xc2, 0x01, 0xaf, 0x00, 0xc4, 0x01, 0xb1, 0x00, 0xc6,
+
5933 0x01, 0xb3, 0x00, 0xc7, 0x01, 0xb4, 0x00, 0xc8, 0x01, 0xb5, 0x00, 0xc5,
+
5934 0x01, 0xb2, 0x00, 0xde, 0x01, 0xcb, 0x00, 0xdd, 0x01, 0xca, 0x00, 0xdf,
+
5935 0x01, 0xcc, 0x00, 0xe1, 0x01, 0xce, 0x02, 0x49, 0x02, 0x4b, 0x02, 0x4e,
+
5936 0x02, 0x4a, 0x02, 0x4f, 0x02, 0x35, 0x02, 0x33, 0x02, 0x34, 0x02, 0x36,
+
5937 0x02, 0x3d, 0x02, 0x3e, 0x02, 0x39, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3a,
+
5938 0x03, 0x59, 0x03, 0x5b, 0x02, 0x23, 0x02, 0x59, 0x02, 0x5c, 0x02, 0x56,
+
5939 0x02, 0x57, 0x02, 0x5b, 0x02, 0x61, 0x02, 0x5a, 0x02, 0x63, 0x02, 0x5d,
+
5940 0x02, 0x5e, 0x02, 0x62, 0x02, 0x90, 0x02, 0x8a, 0x02, 0x8c, 0x02, 0x8e,
+
5941 0x02, 0x92, 0x02, 0x93, 0x02, 0x91, 0x02, 0x8b, 0x02, 0x8d, 0x02, 0x8f,
+
5942 0x02, 0x97, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x03, 0x61, 0x02, 0x7c,
+
5943 0x02, 0x7f, 0x02, 0x81, 0x02, 0x6d, 0x02, 0x68, 0x02, 0x82, 0x02, 0x75,
+
5944 0x02, 0x74, 0x03, 0x65, 0x03, 0x64, 0x03, 0x62, 0x03, 0x0a, 0x02, 0xe4,
+
5945 0x03, 0x17, 0x02, 0xf1, 0x03, 0x10, 0x02, 0xea, 0x03, 0x11, 0x02, 0xeb,
+
5946 0x03, 0x0d, 0x02, 0xe7, 0x03, 0x0e, 0x02, 0xe8, 0x03, 0x09, 0x02, 0xd8,
+
5947 0x02, 0xd2, 0x02, 0xe3, 0x03, 0x08, 0x02, 0xd6, 0x02, 0xd0, 0x02, 0xe2,
+
5948 0x03, 0x16, 0x03, 0x31, 0x03, 0x2b, 0x02, 0xf0, 0x03, 0x15, 0x03, 0x2f,
+
5949 0x03, 0x29, 0x02, 0xee, 0x03, 0x1a, 0x03, 0x3d, 0x03, 0x2a, 0x02, 0xd3,
+
5950 0x03, 0x3a, 0x02, 0xd9, 0x03, 0x30, 0x02, 0xf4, 0x03, 0x19, 0x03, 0x3c,
+
5951 0x03, 0x28, 0x02, 0xd1, 0x03, 0x39, 0x02, 0xd7, 0x03, 0x2e, 0x02, 0xf3,
+
5952 0x03, 0x07, 0x02, 0xf6, 0x03, 0x1c, 0x02, 0xd5, 0x02, 0xcf, 0x03, 0x1f,
+
5953 0x02, 0xf9, 0x02, 0xe1, 0x03, 0x14, 0x02, 0xf7, 0x03, 0x1d, 0x03, 0x2d,
+
5954 0x03, 0x27, 0x03, 0x20, 0x02, 0xfa, 0x02, 0xed, 0x03, 0x18, 0x02, 0xf8,
+
5955 0x03, 0x1e, 0x03, 0x3b, 0x03, 0x26, 0x02, 0xd4, 0x03, 0x38, 0x02, 0xfc,
+
5956 0x03, 0x22, 0x02, 0xf5, 0x03, 0x1b, 0x02, 0xda, 0x03, 0x2c, 0x03, 0x21,
+
5957 0x02, 0xfb, 0x02, 0xf2, 0x03, 0x01, 0x02, 0xde, 0x03, 0x02, 0x02, 0xdf,
+
5958 0x02, 0xc4, 0x02, 0xc8, 0x02, 0xdd, 0x02, 0xce, 0x02, 0xc3, 0x02, 0xdc,
+
5959 0x02, 0xcd, 0x02, 0xc2, 0x03, 0x34, 0x03, 0x25, 0x02, 0xc7, 0x03, 0x33,
+
5960 0x03, 0x24, 0x02, 0xc6, 0x03, 0x40, 0x03, 0x37, 0x02, 0xcb, 0x03, 0x3f,
+
5961 0x03, 0x36, 0x02, 0xca, 0x02, 0xdb, 0x02, 0xcc, 0x02, 0xc1, 0x03, 0x32,
+
5962 0x03, 0x23, 0x02, 0xc5, 0x03, 0x3e, 0x03, 0x35, 0x02, 0xc9, 0x02, 0xfe,
+
5963 0x02, 0xfd, 0x02, 0xff, 0x03, 0x00, 0x03, 0x05, 0x03, 0x04, 0x03, 0x03,
+
5964 0x03, 0x0b, 0x03, 0x12, 0x03, 0x0f, 0x03, 0x06, 0x02, 0xe5, 0x02, 0xec,
+
5965 0x02, 0xe9, 0x02, 0xe0, 0x03, 0x0c, 0x03, 0x13, 0x02, 0xe6, 0x02, 0xef,
+
5966 0x02, 0xa4, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0,
+
5967 0x02, 0xa1, 0x02, 0xa2, 0x02, 0xa3, 0x02, 0xac, 0x02, 0xab, 0x02, 0xaa,
+
5968 0x02, 0xa9, 0x02, 0xa8, 0x02, 0xa7, 0x02, 0xa6, 0x02, 0xad, 0x02, 0xb9,
+
5969 0x02, 0xba, 0x02, 0xbb, 0x02, 0xa5, 0x02, 0xc0, 0x02, 0xbd, 0x02, 0x9b,
+
5970 0x02, 0x98, 0x02, 0x9a, 0x40, 0x4a, 0x99, 0x98, 0x97, 0x96, 0x87, 0x86,
+
5971 0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,
+
5972 0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e,
+
5973 0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x62,
+
5974 0x61, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56,
+
5975 0x55, 0x54, 0x53, 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49,
+
5976 0x48, 0x47, 0x46, 0x28, 0x1f, 0x10, 0x0a, 0x09, 0x2c, 0x01, 0xb1, 0x0b,
+
5977 0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0x00, 0xb1, 0x0a, 0x0b,
+
5978 0x43, 0x23, 0x43, 0x0b, 0x2d, 0x2c, 0x01, 0xb0, 0x06, 0x43, 0xb0, 0x07,
+
5979 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51,
+
5980 0x58, 0x21, 0x4b, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x1b,
+
5981 0x23, 0x21, 0xb0, 0x40, 0xb0, 0x04, 0x25, 0x45, 0xb0, 0x04, 0x25, 0x45,
+
5982 0x61, 0x64, 0x8a, 0x63, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59,
+
5983 0x59, 0x2d, 0x2c, 0x00, 0xb0, 0x07, 0x43, 0xb0, 0x06, 0x43, 0x0b, 0x2d,
+
5984 0x2c, 0x4b, 0x53, 0x23, 0x4b, 0x51, 0x5a, 0x58, 0x20, 0x45, 0x8a, 0x60,
+
5985 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x54, 0x58, 0x20, 0x45,
+
5986 0x8a, 0x60, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x53, 0x23,
+
5987 0x4b, 0x51, 0x5a, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b,
+
5988 0x54, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43,
+
5989 0x54, 0x58, 0xb0, 0x46, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
+
5990 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x47, 0x2b, 0x1b, 0x21, 0x21,
+
5991 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x48, 0x2b,
+
5992 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54,
+
5993 0x58, 0xb0, 0x49, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x23,
+
5994 0x20, 0xb0, 0x00, 0x50, 0x8a, 0x8a, 0x64, 0xb1, 0x00, 0x03, 0x25, 0x54,
+
5995 0x58, 0xb0, 0x40, 0x1b, 0xb1, 0x01, 0x03, 0x25, 0x54, 0x58, 0xb0, 0x05,
+
5996 0x43, 0x8b, 0x59, 0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb0, 0x62, 0x2b, 0x23,
+
5997 0x21, 0x23, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0xb1, 0x08, 0x00, 0x0c, 0x21,
+
5998 0x54, 0x60, 0x43, 0x2d, 0x2c, 0xb1, 0x0c, 0x00, 0x0c, 0x21, 0x54, 0x60,
+
5999 0x43, 0x2d, 0x2c, 0x01, 0x20, 0x47, 0xb0, 0x02, 0x43, 0x20, 0xb8, 0x10,
+
6000 0x00, 0x62, 0xb8, 0x10, 0x00, 0x63, 0x57, 0x23, 0xb8, 0x01, 0x00, 0x62,
+
6001 0xb8, 0x10, 0x00, 0x63, 0x57, 0x5a, 0x58, 0xb0, 0x20, 0x60, 0x66, 0x59,
+
6002 0x48, 0x2d, 0x2c, 0xb1, 0x00, 0x02, 0x25, 0xb0, 0x02, 0x25, 0xb0, 0x02,
+
6003 0x25, 0x53, 0xb8, 0x00, 0x35, 0x23, 0x78, 0xb0, 0x02, 0x25, 0xb0, 0x02,
+
6004 0x25, 0x60, 0xb0, 0x20, 0x63, 0x20, 0x20, 0xb0, 0x06, 0x25, 0x23, 0x62,
+
6005 0x50, 0x58, 0x8a, 0x21, 0xb0, 0x01, 0x60, 0x23, 0x1b, 0x20, 0x20, 0xb0,
+
6006 0x06, 0x25, 0x23, 0x62, 0x52, 0x58, 0x23, 0x21, 0xb0, 0x01, 0x61, 0x1b,
+
6007 0x8a, 0x21, 0x23, 0x21, 0x20, 0x59, 0x59, 0xb8, 0xff, 0xc1, 0x1c, 0x60,
+
6008 0xb0, 0x20, 0x63, 0x23, 0x21, 0x2d, 0x2c, 0xb1, 0x02, 0x00, 0x42, 0xb1,
+
6009 0x23, 0x01, 0x88, 0x51, 0xb1, 0x40, 0x01, 0x88, 0x53, 0x5a, 0x58, 0xb8,
+
6010 0x10, 0x00, 0xb0, 0x20, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x01, 0x02, 0x43,
+
6011 0x60, 0x42, 0x59, 0xb1, 0x24, 0x01, 0x88, 0x51, 0x58, 0xb8, 0x20, 0x00,
+
6012 0xb0, 0x40, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x02, 0x02, 0x43, 0x60, 0x42,
+
6013 0xb1, 0x24, 0x01, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x20, 0x02, 0x43, 0x60,
+
6014 0x42, 0x00, 0x4b, 0x01, 0x4b, 0x52, 0x58, 0xb2, 0x02, 0x08, 0x02, 0x43,
+
6015 0x60, 0x42, 0x59, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x54, 0x58,
+
6016 0xb2, 0x02, 0x04, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb8, 0x40, 0x00, 0xb0,
+
6017 0x80, 0x63, 0xb8, 0x01, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x08, 0x02,
+
6018 0x43, 0x60, 0x42, 0x59, 0xb9, 0x40, 0x00, 0x01, 0x00, 0x63, 0xb8, 0x02,
+
6019 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x10, 0x02, 0x43, 0x60, 0x42, 0x59,
+
6020 0xb1, 0x26, 0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x02, 0x00, 0x63,
+
6021 0xb8, 0x04, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x40, 0x02, 0x43, 0x60,
+
6022 0x42, 0x59, 0xb9, 0x40, 0x00, 0x04, 0x00, 0x63, 0xb8, 0x08, 0x00, 0x88,
+
6023 0x54, 0x58, 0xb2, 0x02, 0x80, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb1, 0x28,
+
6024 0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x08, 0x00, 0x63, 0xb8, 0x10,
+
6025 0x00, 0x88, 0x54, 0x58, 0xb9, 0x00, 0x02, 0x01, 0x00, 0xb0, 0x02, 0x43,
+
6026 0x60, 0x42, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0xb1, 0x00, 0x02,
+
6027 0x43, 0x54, 0x58, 0x40, 0x0a, 0x05, 0x40, 0x08, 0x40, 0x09, 0x40, 0x0c,
+
6028 0x02, 0x0d, 0x02, 0x1b, 0xb1, 0x01, 0x02, 0x43, 0x54, 0x58, 0xb2, 0x05,
+
6029 0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0xb3, 0x0c, 0x01,
+
6030 0x0d, 0x01, 0x1b, 0xb1, 0x80, 0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40,
+
6031 0x08, 0xb8, 0x01, 0x80, 0xb1, 0x09, 0x40, 0x1b, 0xb8, 0x01, 0x00, 0xb0,
+
6032 0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40, 0x08, 0xba, 0x01, 0x80, 0x00,
+
6033 0x09, 0x01, 0x40, 0x1b, 0xb8, 0x01, 0x80, 0xb0, 0x02, 0x43, 0x52, 0x58,
+
6034 0xb2, 0x05, 0x40, 0x08, 0xb8, 0x02, 0x00, 0xb1, 0x09, 0x40, 0x1b, 0xb2,
+
6035 0x05, 0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0x59, 0x59,
+
6036 0x59, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x55, 0xb9, 0x40, 0x00, 0x02,
+
6037 0x00, 0x63, 0xb8, 0x04, 0x00, 0x88, 0x55, 0x5a, 0x58, 0xb3, 0x0c, 0x00,
+
6038 0x0d, 0x01, 0x1b, 0xb3, 0x0c, 0x00, 0x0d, 0x01, 0x59, 0x59, 0x59, 0x42,
+
6039 0x42, 0x42, 0x42, 0x42, 0x2d, 0x2c, 0x45, 0xb1, 0x02, 0x4e, 0x2b, 0x23,
+
6040 0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51, 0x58, 0x21, 0x4b, 0x51, 0x58,
+
6041 0xb0, 0x02, 0x25, 0x45, 0xb1, 0x01, 0x4e, 0x2b, 0x60, 0x59, 0x1b, 0x23,
+
6042 0x4b, 0x51, 0x58, 0xb0, 0x03, 0x25, 0x45, 0x20, 0x64, 0x8a, 0x63, 0xb0,
+
6043 0x40, 0x53, 0x58, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x1b, 0x21, 0x59, 0x1b,
+
6044 0x21, 0x59, 0x59, 0x44, 0x2d, 0x2c, 0x20, 0xb0, 0x00, 0x50, 0x20, 0x58,
+
6045 0x23, 0x65, 0x1b, 0x23, 0x59, 0xb1, 0x14, 0x14, 0x8a, 0x70, 0x45, 0xb1,
+
6046 0x10, 0x10, 0x43, 0x4b, 0x8a, 0x43, 0x51, 0x5a, 0x58, 0xb0, 0x40, 0x1b,
+
6047 0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb1, 0x61, 0x06, 0x26, 0x60, 0x2b, 0x8a,
+
6048 0x58, 0xb0, 0x05, 0x43, 0x8b, 0x59, 0x23, 0x58, 0x65, 0x59, 0x23, 0x10,
+
6049 0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x49, 0x63, 0x23, 0x46, 0x60, 0xb0,
+
6050 0x4f, 0x2b, 0x23, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0xb0, 0x03,
+
6051 0x25, 0x63, 0x56, 0x20, 0x60, 0xb0, 0x62, 0x60, 0x2b, 0xb0, 0x03, 0x25,
+
6052 0x20, 0x10, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61, 0x3a, 0x2d,
+
6053 0x2c, 0xb0, 0x00, 0x16, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01, 0x04, 0x25,
+
6054 0x01, 0x3e, 0x00, 0x3e, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0, 0x0a, 0x23,
+
6055 0x65, 0x42, 0xb0, 0x0b, 0x23, 0x42, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01,
+
6056 0x04, 0x25, 0x01, 0x3f, 0x00, 0x3f, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0,
+
6057 0x06, 0x23, 0x65, 0x42, 0xb0, 0x07, 0x23, 0x42, 0xb0, 0x01, 0x16, 0xb1,
+
6058 0x00, 0x02, 0x43, 0x54, 0x58, 0x45, 0x23, 0x45, 0x20, 0x18, 0x69, 0x8a,
+
6059 0x63, 0x23, 0x62, 0x20, 0x20, 0xb0, 0x40, 0x50, 0x58, 0x67, 0x1b, 0x66,
+
6060 0x59, 0x61, 0xb0, 0x20, 0x63, 0xb0, 0x40, 0x23, 0x61, 0xb0, 0x04, 0x23,
+
6061 0x42, 0x1b, 0xb1, 0x04, 0x00, 0x42, 0x21, 0x21, 0x59, 0x18, 0x01, 0x2d,
+
6062 0x2c, 0x20, 0x45, 0xb1, 0x00, 0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x4b, 0x51,
+
6063 0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x20, 0x45, 0xb1, 0x01, 0x4e,
+
6064 0x2b, 0x20, 0x8a, 0x8a, 0x44, 0x20, 0xb1, 0x40, 0x04, 0x26, 0x61, 0x63,
+
6065 0x61, 0xb1, 0x01, 0x4e, 0x2b, 0x44, 0x21, 0x1b, 0x23, 0x21, 0x8a, 0x45,
+
6066 0xb1, 0x01, 0x4e, 0x2b, 0x20, 0x8a, 0x23, 0x44, 0x44, 0x59, 0x2d, 0x2c,
+
6067 0x4b, 0x51, 0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x45, 0x20, 0x8a,
+
6068 0xb0, 0x40, 0x61, 0x63, 0x60, 0x1b, 0x23, 0x21, 0x45, 0x59, 0xb1, 0x01,
+
6069 0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x23, 0x45, 0x20, 0x8a, 0x45, 0x23, 0x61,
+
6070 0x20, 0x64, 0xb0, 0x40, 0x51, 0xb0, 0x04, 0x25, 0x20, 0xb0, 0x00, 0x53,
+
6071 0x23, 0xb0, 0x40, 0x51, 0x5a, 0x5a, 0xb1, 0x40, 0x4f, 0x2b, 0x54, 0x5a,
+
6072 0x58, 0x8a, 0x0c, 0x64, 0x23, 0x64, 0x23, 0x53, 0x58, 0xb1, 0x40, 0x40,
+
6073 0x8a, 0x61, 0x20, 0x63, 0x61, 0x1b, 0x20, 0x63, 0x59, 0x1b, 0x8a, 0x59,
+
6074 0x63, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x44, 0x2d, 0x2c, 0x01, 0x2d, 0x2c,
+
6075 0x00, 0x2d, 0x2c, 0x05, 0xb1, 0x0b, 0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a,
+
6076 0x2d, 0x2c, 0xb1, 0x0a, 0x0b, 0x43, 0x23, 0x43, 0x0b, 0x02, 0x2d, 0x2c,
+
6077 0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62,
+
6078 0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0xb0, 0x20, 0x60,
+
6079 0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62, 0x2d,
+
6080 0x2c, 0xb0, 0x02, 0x25, 0x63, 0x67, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00,
+
6081 0x62, 0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0,
+
6082 0x20, 0x60, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62,
+
6083 0x2d, 0x2c, 0x23, 0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x4a,
+
6084 0xb1, 0x01, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45, 0x64,
+
6085 0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03, 0x43,
+
6086 0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0xb0,
+
6087 0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45,
+
6088 0x64, 0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03,
+
6089 0x43, 0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x01, 0x4e, 0x2b, 0x23,
+
6090 0xb0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x03, 0x25,
+
6091 0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0x20, 0xb0,
+
6092 0x03, 0x25, 0x4a, 0xb1, 0x01, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c,
+
6093 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x67, 0x2b, 0x8a, 0x10,
+
6094 0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x68,
+
6095 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03,
+
6096 0x25, 0x46, 0x60, 0xb0, 0x04, 0x25, 0x2e, 0xb0, 0x04, 0x25, 0xb0, 0x04,
+
6097 0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a,
+
6098 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03, 0x25,
+
6099 0x46, 0x60, 0x61, 0xb0, 0x80, 0x62, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a,
+
6100 0x23, 0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x47, 0xb0,
+
6101 0x03, 0x25, 0x47, 0x60, 0xb0, 0x05, 0x25, 0x47, 0xb0, 0x80, 0x63, 0x61,
+
6102 0xb0, 0x02, 0x25, 0xb0, 0x06, 0x25, 0x49, 0x63, 0x23, 0xb0, 0x05, 0x25,
+
6103 0x4a, 0xb0, 0x80, 0x63, 0x20, 0x58, 0x62, 0x1b, 0x21, 0x59, 0xb0, 0x04,
+
6104 0x26, 0x46, 0x60, 0x8a, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61,
+
6105 0x2d, 0x2c, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0,
+
6106 0x04, 0x26, 0xb0, 0x6e, 0x2b, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a, 0x23,
+
6107 0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0x20, 0xb0, 0x01, 0x54, 0x58,
+
6108 0x21, 0xb0, 0x02, 0x25, 0xb1, 0x02, 0x4e, 0x2b, 0xb0, 0x80, 0x50, 0x20,
+
6109 0x60, 0x59, 0x20, 0x60, 0x60, 0x20, 0xb0, 0x01, 0x51, 0x58, 0x21, 0x21,
+
6110 0x1b, 0x20, 0xb0, 0x05, 0x51, 0x58, 0x21, 0x20, 0x66, 0x61, 0xb0, 0x40,
+
6111 0x23, 0x61, 0xb1, 0x00, 0x03, 0x25, 0x50, 0xb0, 0x03, 0x25, 0xb0, 0x03,
+
6112 0x25, 0x50, 0x5a, 0x58, 0x20, 0xb0, 0x03, 0x25, 0x61, 0x8a, 0x53, 0x58,
+
6113 0x21, 0xb0, 0x00, 0x59, 0x1b, 0x21, 0x59, 0x1b, 0xb0, 0x07, 0x54, 0x58,
+
6114 0x20, 0x66, 0x61, 0x65, 0x23, 0x21, 0x1b, 0x21, 0x21, 0xb0, 0x00, 0x59,
+
6115 0x59, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0xb0,
+
6116 0x04, 0x25, 0x4a, 0xb0, 0x00, 0x53, 0x58, 0xb0, 0x00, 0x1b, 0x8a, 0x8a,
+
6117 0x23, 0x8a, 0xb0, 0x01, 0x59, 0xb0, 0x04, 0x25, 0x46, 0x20, 0x66, 0x61,
+
6118 0x20, 0xb0, 0x05, 0x26, 0xb0, 0x06, 0x26, 0x49, 0xb0, 0x05, 0x26, 0xb0,
+
6119 0x05, 0x26, 0xb0, 0x70, 0x2b, 0x23, 0x61, 0x65, 0xb0, 0x20, 0x60, 0x20,
+
6120 0x66, 0x61, 0xb0, 0x20, 0x61, 0x65, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x46,
+
6121 0x20, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb1, 0x02, 0x4e, 0x2b,
+
6122 0x1b, 0x45, 0x23, 0x21, 0x59, 0x61, 0x65, 0xb0, 0x02, 0x25, 0x10, 0x3b,
+
6123 0x2d, 0x2c, 0xb0, 0x04, 0x26, 0x20, 0xb8, 0x02, 0x00, 0x62, 0x20, 0xb8,
+
6124 0x02, 0x00, 0x63, 0x8a, 0x23, 0x61, 0x20, 0xb0, 0x5d, 0x60, 0x2b, 0xb0,
+
6125 0x05, 0x25, 0x11, 0x8a, 0x12, 0x8a, 0x20, 0x39, 0x8a, 0x58, 0xb9, 0x00,
+
6126 0x5d, 0x10, 0x00, 0xb0, 0x04, 0x26, 0x63, 0x56, 0x60, 0x2b, 0x23, 0x21,
+
6127 0x20, 0x10, 0x20, 0x46, 0x20, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0x61, 0x1b,
+
6128 0x23, 0x21, 0x20, 0x8a, 0x20, 0x10, 0x49, 0xb1, 0x02, 0x4e, 0x2b, 0x59,
+
6129 0x3b, 0x2d, 0x2c, 0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x09, 0x25, 0x63,
+
6130 0x56, 0x60, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26,
+
6131 0xb0, 0x6d, 0x2b, 0xb1, 0x5d, 0x07, 0x25, 0x60, 0x2b, 0xb0, 0x05, 0x25,
+
6132 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x6f, 0x2b,
+
6133 0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x08, 0x26, 0x63, 0x56, 0x60, 0x2b,
+
6134 0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x50, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
+
6135 0x05, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x05, 0x25, 0xb0,
+
6136 0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0xb0, 0x00, 0x52, 0xb0, 0x02, 0x25,
+
6137 0xb0, 0x01, 0x52, 0x5a, 0x58, 0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49,
+
6138 0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20, 0xb0, 0x40, 0x52,
+
6139 0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0x20, 0xb0, 0x02, 0x54, 0x58,
+
6140 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
+
6141 0x49, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
+
6142 0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49, 0xb0, 0x02, 0x17, 0x38, 0x59,
+
6143 0x59, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb9,
+
6144 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x0b, 0x25, 0x63, 0x56, 0x60, 0x2b, 0xb0,
+
6145 0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0,
+
6146 0x0c, 0x25, 0xb0, 0x0c, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x08, 0x25, 0xb0,
+
6147 0x6e, 0x2b, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
+
6148 0xb0, 0x07, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
+
6149 0xb0, 0x04, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x50, 0x2b, 0xb0, 0x06, 0x25,
+
6150 0xb0, 0x06, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x05, 0x25,
+
6151 0xb0, 0x05, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x02, 0x17, 0x38, 0x20, 0xb0,
+
6152 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0x60,
+
6153 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x04, 0x25, 0x65, 0xb0, 0x02,
+
6154 0x17, 0x38, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x60, 0x20, 0xb0, 0x40,
+
6155 0x53, 0x58, 0x21, 0xb0, 0x40, 0x61, 0x23, 0xb0, 0x40, 0x61, 0x23, 0x1b,
+
6156 0xb8, 0xff, 0xc0, 0x50, 0x58, 0xb0, 0x40, 0x60, 0x23, 0xb0, 0x40, 0x60,
+
6157 0x23, 0x59, 0x59, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x04, 0x26,
+
6158 0xb0, 0x02, 0x17, 0x38, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0x8a, 0xb0,
+
6159 0x02, 0x17, 0x38, 0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06, 0x25, 0xb0,
+
6160 0x08, 0x25, 0x49, 0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20,
+
6161 0xb0, 0x40, 0x52, 0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06,
+
6162 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0b,
+
6163 0x25, 0xb0, 0x0b, 0x25, 0x49, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x06, 0x25,
+
6164 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25,
+
6165 0xb0, 0x0a, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x04, 0x17,
+
6166 0x38, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x07,
+
6167 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0x1b,
+
6168 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb8, 0xff, 0xc0, 0xb0, 0x02, 0x17,
+
6169 0x38, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,
+
6170 0x2d, 0x2c, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x87, 0xb0, 0x03, 0x25,
+
6171 0xb0, 0x03, 0x25, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x65,
+
6172 0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x64, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
+
6173 0x06, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0x20, 0x20, 0x63, 0xb0,
+
6174 0x03, 0x25, 0x20, 0x63, 0x51, 0xb1, 0x00, 0x03, 0x25, 0x54, 0x5b, 0x58,
+
6175 0x21, 0x21, 0x23, 0x21, 0x07, 0x1b, 0x20, 0x63, 0xb0, 0x02, 0x25, 0x20,
+
6176 0x63, 0x61, 0x20, 0xb0, 0x53, 0x2b, 0x8a, 0x63, 0xb0, 0x05, 0x25, 0xb0,
+
6177 0x05, 0x25, 0x87, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x4a, 0xb0, 0x00,
+
6178 0x50, 0x58, 0x65, 0x59, 0xb0, 0x04, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00,
+
6179 0x46, 0xb0, 0x05, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00, 0x46, 0xb0, 0x00,
+
6180 0x16, 0x00, 0xb0, 0x00, 0x23, 0x48, 0x01, 0xb0, 0x00, 0x23, 0x48, 0x00,
+
6181 0x20, 0xb0, 0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x01, 0x20, 0xb0,
+
6182 0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x23, 0xb2, 0x02, 0x00, 0x01,
+
6183 0x08, 0x23, 0x38, 0xb2, 0x02, 0x00, 0x01, 0x09, 0x23, 0x38, 0xb1, 0x02,
+
6184 0x01, 0x07, 0xb0, 0x01, 0x16, 0x59, 0x2d, 0x2c, 0x23, 0x10, 0x0d, 0x0c,
+
6185 0x8a, 0x63, 0x23, 0x8a, 0x63, 0x60, 0x64, 0xb9, 0x40, 0x00, 0x04, 0x00,
+
6186 0x63, 0x50, 0x58, 0xb0, 0x00, 0x38, 0x1b, 0x3c, 0x59, 0x2d, 0x2c, 0xb0,
+
6187 0x06, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x07, 0x26, 0xb0,
+
6188 0x76, 0x2b, 0x23, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0,
+
6189 0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
+
6190 0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b, 0xb0,
+
6191 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d, 0x2c,
+
6192 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26,
+
6193 0xb0, 0x76, 0x2b, 0x8a, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59,
+
6194 0xb0, 0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25,
+
6195 0xb0, 0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b,
+
6196 0x08, 0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25,
+
6197 0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26, 0xb0, 0x76, 0x2b, 0x8a, 0x8a, 0x08,
+
6198 0xb0, 0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25,
+
6199 0xb0, 0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b,
+
6200 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d,
+
6201 0x2c, 0xb0, 0x08, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x09,
+
6202 0x26, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0x08, 0xb0,
+
6203 0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25, 0xb0,
+
6204 0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b, 0x08,
+
6205 0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0x03, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25,
+
6206 0x4a, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x4a, 0x02, 0xb0, 0x05, 0x25,
+
6207 0xb0, 0x05, 0x26, 0x4a, 0xb0, 0x05, 0x26, 0xb0, 0x05, 0x26, 0x4a, 0xb0,
+
6208 0x04, 0x26, 0x63, 0x8a, 0x8a, 0x63, 0x61, 0x2d, 0x2c, 0xb1, 0x5d, 0x0e,
+
6209 0x25, 0x60, 0x2b, 0xb0, 0x0c, 0x26, 0x11, 0xb0, 0x05, 0x26, 0x12, 0xb0,
+
6210 0x0a, 0x25, 0x39, 0xb0, 0x07, 0x25, 0x39, 0xb0, 0x0a, 0x25, 0xb0, 0x0a,
+
6211 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00, 0x50, 0xb0, 0x0b,
+
6212 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00,
+
6213 0x50, 0x54, 0x58, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0x87, 0xb0, 0x04,
+
6214 0x25, 0xb0, 0x04, 0x25, 0x0b, 0xb0, 0x0a, 0x25, 0x10, 0xb0, 0x09, 0x25,
+
6215 0xc1, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0x10,
+
6216 0xb0, 0x06, 0x25, 0xc1, 0x1b, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0xb0,
+
6217 0x0b, 0x25, 0xb8, 0xff, 0xff, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x25, 0xb0,
+
6218 0x04, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x77, 0x2b,
+
6219 0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb8, 0xff, 0xff,
+
6220 0xb0, 0x76, 0x2b, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x0a,
+
6221 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x77, 0x2b, 0x59, 0xb0, 0x0a, 0x25, 0x46,
+
6222 0xb0, 0x0a, 0x25, 0x46, 0x60, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25,
+
6223 0x46, 0x60, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0x0b, 0xb0, 0x0c, 0x25,
+
6224 0xb0, 0x0c, 0x25, 0xb0, 0x0c, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21,
+
6225 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04,
+
6226 0x25, 0x0b, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x26, 0x20,
+
6227 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
+
6228 0x23, 0xb0, 0x0a, 0x25, 0x46, 0xb0, 0x0a, 0x25, 0x46, 0x60, 0x61, 0xb0,
+
6229 0x20, 0x63, 0x23, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25, 0x46, 0x60,
+
6230 0x61, 0xb0, 0x20, 0x63, 0xb1, 0x01, 0x0c, 0x25, 0x54, 0x58, 0x04, 0x1b,
+
6231 0x05, 0x59, 0xb0, 0x0a, 0x26, 0x20, 0x10, 0xb0, 0x03, 0x25, 0x3a, 0xb0,
+
6232 0x06, 0x26, 0xb0, 0x06, 0x26, 0x0b, 0xb0, 0x07, 0x26, 0x20, 0x10, 0x8a,
+
6233 0x3a, 0xb1, 0x01, 0x07, 0x26, 0x54, 0x58, 0x04, 0x1b, 0x05, 0x59, 0xb0,
+
6234 0x05, 0x26, 0x20, 0x10, 0xb0, 0x02, 0x25, 0x3a, 0x8a, 0x8a, 0x0b, 0x23,
+
6235 0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0xb0, 0x01, 0x54, 0x58, 0xb9,
+
6236 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0x8a,
+
6237 0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
+
6238 0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x8a, 0x8a, 0x08,
+
6239 0x0d, 0x8a, 0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b,
+
6240 0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x08,
+
6241 0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
+
6242 0x00, 0xb0, 0x00, 0x59, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0xb0, 0x04,
+
6243 0x26, 0xb0, 0x04, 0x26, 0x08, 0x0d, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
+
6244 0x08, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x20, 0x01, 0x46, 0x23, 0x00,
+
6245 0x46, 0xb0, 0x0a, 0x43, 0xb0, 0x0b, 0x43, 0x8a, 0x63, 0x23, 0x62, 0x61,
+
6246 0x2d, 0x2c, 0xb0, 0x09, 0x2b, 0xb0, 0x06, 0x25, 0x2e, 0xb0, 0x05, 0x25,
+
6247 0x7d, 0xc5, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0x20,
+
6248 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
+
6249 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x20, 0xb0, 0x00,
+
6250 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0x18, 0xb0,
+
6251 0x08, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25, 0xb0,
+
6252 0x6f, 0x2b, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x26, 0x20,
+
6253 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b,
+
6254 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00,
+
6255 0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x54, 0x58,
+
6256 0x7d, 0xb0, 0x04, 0x25, 0x10, 0xb0, 0x03, 0x25, 0xc5, 0xb0, 0x02, 0x25,
+
6257 0x10, 0xb0, 0x01, 0x25, 0xc5, 0xb0, 0x05, 0x26, 0x21, 0xb0, 0x05, 0x26,
+
6258 0x21, 0x1b, 0xb0, 0x06, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0xb0,
+
6259 0x08, 0x26, 0xb0, 0x6f, 0x2b, 0x59, 0xb1, 0x00, 0x02, 0x43, 0x54, 0x58,
+
6260 0x7d, 0xb0, 0x02, 0x25, 0xb0, 0x82, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x82,
+
6261 0x2b, 0x20, 0x20, 0x69, 0x61, 0xb0, 0x04, 0x43, 0x01, 0x23, 0x61, 0xb0,
+
6262 0x60, 0x60, 0x20, 0x69, 0x61, 0xb0, 0x20, 0x61, 0x20, 0xb0, 0x08, 0x26,
+
6263 0xb0, 0x08, 0x26, 0x8a, 0xb0, 0x02, 0x17, 0x38, 0x8a, 0x8a, 0x61, 0x20,
+
6264 0x69, 0x61, 0x61, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0x21, 0x21, 0x21, 0x21,
+
6265 0x59, 0x18, 0x2d, 0x2c, 0x4b, 0x52, 0xb1, 0x01, 0x02, 0x43, 0x53, 0x5a,
+
6266 0x58, 0x23, 0x10, 0x20, 0x01, 0x3c, 0x00, 0x3c, 0x1b, 0x21, 0x21, 0x59,
+
6267 0x2d, 0x2c, 0x23, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x53, 0x58, 0x20,
+
6268 0xb0, 0x04, 0x25, 0x58, 0x3c, 0x1b, 0x39, 0x59, 0xb0, 0x01, 0x60, 0xb8,
+
6269 0xff, 0xe9, 0x1c, 0x59, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb0, 0x02, 0x25,
+
6270 0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x8a, 0x20, 0x20, 0x10, 0x11, 0xb0,
+
6271 0x01, 0x60, 0x8a, 0x20, 0x12, 0xb0, 0x01, 0x61, 0xb0, 0x85, 0x2b, 0x2d,
+
6272 0x2c, 0xb0, 0x04, 0x25, 0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x23, 0x20,
+
6273 0x12, 0xb0, 0x01, 0x61, 0x23, 0x20, 0xb0, 0x06, 0x26, 0x20, 0x20, 0x10,
+
6274 0x11, 0xb0, 0x01, 0x60, 0xb0, 0x06, 0x26, 0xb0, 0x85, 0x2b, 0x8a, 0x8a,
+
6275 0xb0, 0x85, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0x0c, 0x02,
+
6276 0x8a, 0x4b, 0x53, 0xb0, 0x04, 0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38,
+
6277 0x1b, 0x0a, 0x21, 0x21, 0x59, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
+
6278 0x2c, 0xb0, 0x98, 0x2b, 0x58, 0x0c, 0x02, 0x8a, 0x4b, 0x53, 0xb0, 0x04,
+
6279 0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38, 0x1b, 0x0a, 0x21, 0x21, 0x59,
+
6280 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
+
6281 0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x68, 0x23, 0x78, 0x21, 0xb1, 0x00,
+
6282 0x02, 0x43, 0xb8, 0x00, 0x5e, 0x23, 0x79, 0x21, 0xb0, 0x02, 0x43, 0x23,
+
6283 0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
+
6284 0x4d, 0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10,
+
6285 0x00, 0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0x21, 0x21,
+
6286 0x21, 0xb0, 0x01, 0xb8, 0x00, 0x30, 0x1c, 0x59, 0x1b, 0x21, 0x59, 0xb0,
+
6287 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
+
6288 0x1d, 0x1c, 0x59, 0x23, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
+
6289 0x21, 0xb0, 0x00, 0xb8, 0x00, 0x0c, 0x1c, 0x59, 0x8a, 0xb0, 0x01, 0x61,
+
6290 0xb8, 0xff, 0xab, 0x1c, 0x23, 0x21, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
+
6291 0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x81, 0x23, 0x78, 0x21, 0xb1, 0x00,
+
6292 0x02, 0x43, 0xb8, 0x00, 0x77, 0x23, 0x79, 0x21, 0xb1, 0x00, 0x02, 0x43,
+
6293 0x8a, 0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x67,
+
6294 0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10, 0x00,
+
6295 0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0xb0, 0x04, 0x26,
+
6296 0xb0, 0x01, 0x5b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
+
6297 0x1b, 0x21, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x38, 0xb0, 0x00, 0x23, 0x1c,
+
6298 0x59, 0x1b, 0x21, 0x59, 0xb0, 0x04, 0x26, 0x23, 0xb0, 0x80, 0x62, 0x20,
+
6299 0x5c, 0x58, 0x8a, 0x5c, 0x8a, 0x5a, 0x23, 0x21, 0x23, 0x21, 0xb8, 0x00,
+
6300 0x1e, 0x1c, 0x59, 0x8a, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
+
6301 0x23, 0x21, 0xb8, 0x00, 0x0e, 0x1c, 0x59, 0xb0, 0x04, 0x26, 0xb0, 0x01,
+
6302 0x61, 0xb8, 0xff, 0x93, 0x1c, 0x23, 0x21, 0x2d, 0x40, 0xff, 0x76, 0x34,
+
6303 0x22, 0x1f, 0x75, 0x34, 0x48, 0x1f, 0x74, 0x34, 0x64, 0x1f, 0x73, 0x34,
+
6304 0xfa, 0x1f, 0x72, 0x34, 0xff, 0x1f, 0x71, 0x34, 0xa7, 0x1f, 0x70, 0x33,
+
6305 0xff, 0x1f, 0x6f, 0x33, 0xfa, 0x1f, 0x6e, 0x32, 0x48, 0x1f, 0x6d, 0x32,
+
6306 0xa7, 0x1f, 0x6c, 0x32, 0xff, 0x1f, 0x6b, 0x31, 0xff, 0x1f, 0x6a, 0x30,
+
6307 0xff, 0x1f, 0x69, 0x2f, 0xff, 0x1f, 0x68, 0x2f, 0xfa, 0x1f, 0x67, 0x2e,
+
6308 0x7d, 0x1f, 0x66, 0x2e, 0xfa, 0x1f, 0x65, 0x2e, 0xff, 0x1f, 0x64, 0x2e,
+
6309 0x7d, 0x1f, 0x63, 0x2e, 0x3f, 0x1f, 0x62, 0x2d, 0xff, 0x1f, 0x61, 0x2c,
+
6310 0xff, 0x1f, 0x60, 0x2c, 0x64, 0x1f, 0x5f, 0x2b, 0x64, 0x1f, 0x5e, 0x2b,
+
6311 0xfa, 0x1f, 0x5d, 0x2b, 0xff, 0x1f, 0x5c, 0x2b, 0xfa, 0x1f, 0x5b, 0x2a,
+
6312 0xfa, 0x1f, 0x5a, 0x2a, 0xff, 0x1f, 0x59, 0x2a, 0xa7, 0x1f, 0x58, 0x29,
+
6313 0xff, 0x1f, 0x57, 0x26, 0x32, 0x1f, 0x56, 0x28, 0x7d, 0x1f, 0x55, 0x28,
+
6314 0xff, 0x1f, 0x54, 0x26, 0xff, 0x1f, 0x53, 0x26, 0xfa, 0x1f, 0x52, 0x27,
+
6315 0xff, 0x1f, 0x51, 0x27, 0xfa, 0x1f, 0x50, 0x26, 0x38, 0x1f, 0x4f, 0x25,
+
6316 0xff, 0x1f, 0x4e, 0x25, 0x54, 0x1f, 0x4d, 0x24, 0x7d, 0x1f, 0x4c, 0x24,
+
6317 0xff, 0x1f, 0x4b, 0x24, 0x7d, 0x1f, 0x4a, 0x23, 0xa7, 0x1f, 0x49, 0x23,
+
6318 0xff, 0x1f, 0x48, 0x23, 0xfa, 0x1f, 0x47, 0x23, 0x54, 0x1f, 0x46, 0x22,
+
6319 0xff, 0x1f, 0x45, 0x1f, 0x20, 0x1f, 0x44, 0x21, 0xff, 0x1f, 0x43, 0x1f,
+
6320 0xa7, 0x1f, 0x42, 0x1f, 0xff, 0x1f, 0x41, 0x1f, 0xa7, 0x1f, 0x40, 0x20,
+
6321 0xfa, 0x1f, 0x3f, 0x20, 0xff, 0x1f, 0x3e, 0x20, 0x7d, 0x1f, 0x3d, 0x20,
+
6322 0x54, 0x1f, 0x3c, 0x1e, 0xff, 0x1f, 0x3b, 0x1d, 0x64, 0x1f, 0x3a, 0x1d,
+
6323 0xff, 0x1f, 0x39, 0x1d, 0xfa, 0x1f, 0x38, 0x1d, 0x54, 0x1f, 0x37, 0x1c,
+
6324 0xfa, 0x40, 0xdf, 0x1f, 0x36, 0x1c, 0xff, 0x1f, 0x35, 0x1c, 0xfa, 0x1f,
+
6325 0x32, 0x31, 0x7d, 0x1f, 0x28, 0x26, 0xa7, 0x1f, 0x27, 0x26, 0x64, 0x1f,
+
6326 0x26, 0x1b, 0x1b, 0x19, 0x5c, 0x25, 0x1b, 0x38, 0x1f, 0x24, 0x04, 0x1a,
+
6327 0x19, 0x5c, 0x23, 0x19, 0xff, 0x1f, 0x22, 0x09, 0x1a, 0x19, 0x5c, 0x21,
+
6328 0x1f, 0x3f, 0x1f, 0x20, 0x1f, 0x3f, 0x1f, 0x1f, 0x35, 0x18, 0x16, 0x5c,
+
6329 0x1e, 0x18, 0x2a, 0x1f, 0x1d, 0x17, 0xff, 0x1f, 0x1c, 0x16, 0xa7, 0x1f,
+
6330 0x1b, 0x33, 0x19, 0x24, 0x5b, 0x18, 0x3a, 0x16, 0x4f, 0x5b, 0x1a, 0x33,
+
6331 0x19, 0x24, 0x5b, 0x17, 0x3a, 0x16, 0x4f, 0x5b, 0x15, 0x19, 0x45, 0x16,
+
6332 0x61, 0x5a, 0x13, 0x32, 0x12, 0x55, 0x11, 0x32, 0x10, 0x55, 0x12, 0x59,
+
6333 0x10, 0x59, 0x0d, 0x2e, 0x0c, 0x55, 0x05, 0x7d, 0x04, 0x55, 0x0c, 0x59,
+
6334 0x04, 0x59, 0x0f, 0x04, 0x1f, 0x04, 0x3f, 0x04, 0x4f, 0x04, 0x7f, 0x04,
+
6335 0x9f, 0x04, 0xef, 0x04, 0x07, 0x0f, 0x64, 0x0e, 0x55, 0x0b, 0x3f, 0x0a,
+
6336 0x55, 0x07, 0x32, 0x06, 0x55, 0x01, 0x54, 0x00, 0x55, 0x0e, 0x59, 0x6f,
+
6337 0x0e, 0x01, 0x0a, 0x59, 0x06, 0x59, 0x0f, 0x06, 0x3f, 0x06, 0x4f, 0x06,
+
6338 0x5f, 0x06, 0x7f, 0x06, 0x9f, 0x06, 0x06, 0x00, 0x59, 0x0f, 0x00, 0x4f,
+
6339 0x00, 0x5f, 0x00, 0x9f, 0x00, 0xef, 0x00, 0x05, 0x09, 0x2e, 0x08, 0x55,
+
6340 0x03, 0x7d, 0x02, 0x55, 0x08, 0x59, 0x02, 0x59, 0xef, 0x02, 0x01, 0xd0,
+
6341 0x02, 0x01, 0x0f, 0x02, 0x1f, 0x02, 0x3f, 0x02, 0x4f, 0x02, 0x7f, 0x02,
+
6342 0x9f, 0x02, 0x06, 0x10, 0x00, 0x03, 0x40, 0x40, 0x05, 0x01, 0xb8, 0x01,
+
6343 0x90, 0xb0, 0x54, 0x2b, 0x4b, 0xb8, 0x07, 0xff, 0x52, 0x4b, 0xb0, 0x09,
+
6344 0x50, 0x5b, 0xb0, 0x01, 0x88, 0xb0, 0x25, 0x53, 0xb0, 0x01, 0x88, 0xb0,
+
6345 0x40, 0x51, 0x5a, 0xb0, 0x06, 0x88, 0xb0, 0x00, 0x55, 0x5a, 0x5b, 0x58,
+
6346 0xb1, 0x01, 0x01, 0x8e, 0x59, 0x85, 0x8d, 0x8d, 0x00, 0x1d, 0x42, 0x4b,
+
6347 0xb0, 0x90, 0x53, 0x58, 0xb2, 0x03, 0x00, 0x00, 0x1d, 0x42, 0x59, 0xb1,
+
6348 0x02, 0x02, 0x43, 0x51, 0x58, 0xb1, 0x04, 0x03, 0x8e, 0x59, 0x42, 0x73,
+
6349 0x73, 0x73, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x73, 0x00, 0x2b, 0x73,
+
6350 0x00, 0x2b, 0x00, 0x2b, 0x73, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x73,
+
6351 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
+
6352 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b,
+
6353 0x00, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x00,
+
6354 0x2b, 0x00, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b,
+
6355 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
+
6356 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b,
+
6357 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x01,
+
6358 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
+
6359 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
+
6360 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x18, 0x00,
+
6361 0x02, 0x99, 0x00, 0x06, 0x02, 0x6f, 0x00, 0x04, 0x02, 0x6f, 0x00, 0x04,
+
6362 0x01, 0xc9, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xf5, 0x00, 0x00, 0xff, 0xf8,
+
6363 0x00, 0x00, 0xff, 0xf5, 0xff, 0x59, 0xff, 0xfb, 0x02, 0x70, 0x00, 0x0a,
+
6364 0x00, 0x00, 0xff, 0xf6, 0x00, 0x00, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3d,
+
6365 0x00, 0x3d, 0x00, 0x48, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x3d,
+
6366 0x00, 0x31, 0x00, 0x42, 0x00, 0x3b, 0x00, 0x4b, 0x00, 0x3c, 0x00, 0x48,
+
6367 0x00, 0x3b, 0x00, 0x31, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x3a,
+
6368 0x00, 0x47, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x4a, 0x00, 0x43, 0x00, 0x4c,
+
6369 0x00, 0x2d, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43,
+
6370 0x00, 0x45, 0x00, 0x48, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x42,
+
6371 0x00, 0x31, 0x00, 0x35, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x40,
+
6372 0x00, 0x44, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x3c, 0x00, 0x42,
+
6373 0x00, 0x46, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f,
+
6374 0x00, 0x2b, 0x00, 0x31, 0x00, 0x37, 0x00, 0x39, 0x00, 0x3b, 0x00, 0x3e,
+
6375 0x00, 0x40, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x3a, 0x00, 0x44,
+
6376 0x00, 0x48, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x42,
+
6377 0x00, 0x3a, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43,
+
6378 0x00, 0x45, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x2d, 0x00, 0x38,
+
6379 0x00, 0x3d, 0x00, 0x40, 0x00, 0x43, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x37,
+
6380 0x00, 0x3a, 0x00, 0x3c, 0x00, 0x3f, 0x00, 0x42, 0x00, 0x4a, 0x01, 0x8b,
+
6381 0x00, 0x00, 0x00, 0x13, 0x00, 0xea, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6382 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6383 0x00, 0x01, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6384 0x00, 0x02, 0x00, 0x0e, 0x00, 0xd8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6385 0x00, 0x03, 0x00, 0x3a, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6386 0x00, 0x04, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6387 0x00, 0x05, 0x00, 0x1a, 0x01, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6388 0x00, 0x06, 0x00, 0x24, 0x01, 0x3a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6389 0x00, 0x08, 0x00, 0x36, 0x01, 0x5e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6390 0x00, 0x09, 0x00, 0x48, 0x01, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6391 0x00, 0x0b, 0x00, 0x8e, 0x01, 0xdc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6392 0x00, 0x0c, 0x00, 0x92, 0x02, 0x6a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6393 0x00, 0x0d, 0x01, 0x20, 0x02, 0xfc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6394 0x00, 0x0e, 0x00, 0x34, 0x04, 0x1c, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6395 0x00, 0x10, 0x00, 0x16, 0x04, 0x50, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6396 0x00, 0x11, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6397 0x01, 0x00, 0x00, 0x0c, 0x04, 0x72, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6398 0x01, 0x01, 0x00, 0x0a, 0x04, 0x7e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6399 0x01, 0x50, 0x00, 0x0c, 0x04, 0x88, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
+
6400 0x01, 0x58, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x70,
+
6401 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74,
+
6402 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x36, 0x00, 0x20,
+
6403 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6e,
+
6404 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
+
6405 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x50, 0x00, 0x72,
+
6406 0x00, 0x6f, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20,
+
6407 0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6f, 0x00, 0x72,
+
6408 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74,
+
6409 0x00, 0x70, 0x00, 0x73, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x67,
+
6410 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2e,
+
6411 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, 0x00, 0x63, 0x00, 0x79,
+
6412 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x74, 0x00, 0x79,
+
6413 0x00, 0x70, 0x00, 0x65, 0x00, 0x2f, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
+
6414 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
+
6415 0x00, 0x74, 0x00, 0x61, 0x00, 0x29, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
+
6416 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
+
6417 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
+
6418 0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67,
+
6419 0x00, 0x75, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x33, 0x00, 0x2e,
+
6420 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x59,
+
6421 0x00, 0x52, 0x00, 0x45, 0x00, 0x3b, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
+
6422 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
+
6423 0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
+
6424 0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72,
+
6425 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x33,
+
6426 0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x49, 0x00, 0x6e,
+
6427 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
+
6428 0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65,
+
6429 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x61,
+
6430 0x00, 0x70, 0x00, 0x68, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x65, 0x00, 0x76,
+
6431 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x43,
+
6432 0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c,
+
6433 0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c,
+
6434 0x00, 0x65, 0x00, 0x52, 0x00, 0x61, 0x00, 0x70, 0x00, 0x68, 0x00, 0x20,
+
6435 0x00, 0x4c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
+
6436 0x00, 0x2c, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65,
+
6437 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x42, 0x00, 0x72,
+
6438 0x00, 0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20,
+
6439 0x00, 0x53, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x73, 0x00, 0x6f,
+
6440 0x00, 0x6e, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
+
6441 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
+
6442 0x00, 0x6c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
+
6443 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c,
+
6444 0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
+
6445 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
+
6446 0x00, 0x63, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c,
+
6447 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c,
+
6448 0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
+
6449 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74,
+
6450 0x00, 0x73, 0x00, 0x2e, 0x00, 0x67, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67,
+
6451 0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d,
+
6452 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
+
6453 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x6c,
+
6454 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2e,
+
6455 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
+
6456 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
+
6457 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x63,
+
6458 0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2e,
+
6459 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
+
6460 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
+
6461 0x00, 0x2f, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x73, 0x00, 0x66,
+
6462 0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69,
+
6463 0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f,
+
6464 0x00, 0x6d, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20,
+
6465 0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53,
+
6466 0x00, 0x6f, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72,
+
6467 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
+
6468 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
+
6469 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65,
+
6470 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20,
+
6471 0x00, 0x53, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x20, 0x00, 0x4f, 0x00, 0x70,
+
6472 0x00, 0x65, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e,
+
6473 0x00, 0x74, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65,
+
6474 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56,
+
6475 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e,
+
6476 0x00, 0x20, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x20,
+
6477 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
+
6478 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
+
6479 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76,
+
6480 0x00, 0x61, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6c,
+
6481 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68,
+
6482 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51,
+
6483 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3a, 0x00, 0x20, 0x00, 0x68,
+
6484 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f,
+
6485 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74,
+
6486 0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x2e,
+
6487 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f, 0x00, 0x4f, 0x00, 0x46,
+
6488 0x00, 0x4c, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
+
6489 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69,
+
6490 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69,
+
6491 0x00, 0x6c, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f,
+
6492 0x00, 0x4f, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
+
6493 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
+
6494 0x00, 0x74, 0x00, 0x61, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69,
+
6495 0x00, 0x75, 0x00, 0x6d, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67,
+
6496 0x00, 0x68, 0x00, 0x74, 0x00, 0x57, 0x00, 0x69, 0x00, 0x64, 0x00, 0x74,
+
6497 0x00, 0x68, 0x00, 0x4e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6d, 0x00, 0x61,
+
6498 0x00, 0x6c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
6499 0xff, 0x38, 0x00, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
+
6500 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
6501 0x03, 0xc2, 0x00, 0x00, 0x00, 0x24, 0x00, 0xc9, 0x01, 0x02, 0x01, 0x03,
+
6502 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x00, 0xc7, 0x01, 0x08,
+
6503 0x01, 0x09, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x0c, 0x01, 0x0d, 0x00, 0x62,
+
6504 0x01, 0x0e, 0x00, 0xad, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12,
+
6505 0x00, 0x63, 0x01, 0x13, 0x00, 0xae, 0x00, 0x90, 0x01, 0x14, 0x00, 0x25,
+
6506 0x00, 0x26, 0x00, 0xfd, 0x00, 0xff, 0x00, 0x64, 0x01, 0x15, 0x01, 0x16,
+
6507 0x01, 0x17, 0x00, 0x27, 0x00, 0xe9, 0x01, 0x18, 0x01, 0x19, 0x01, 0x1a,
+
6508 0x01, 0x1b, 0x00, 0x28, 0x00, 0x65, 0x01, 0x1c, 0x01, 0x1d, 0x01, 0x1e,
+
6509 0x00, 0xc8, 0x01, 0x1f, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23,
+
6510 0x01, 0x24, 0x00, 0xca, 0x01, 0x25, 0x01, 0x26, 0x00, 0xcb, 0x01, 0x27,
+
6511 0x01, 0x28, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x2b, 0x01, 0x2c, 0x01, 0x2d,
+
6512 0x01, 0x2e, 0x00, 0x29, 0x00, 0x2a, 0x00, 0xf8, 0x01, 0x2f, 0x01, 0x30,
+
6513 0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x00, 0x2b, 0x01, 0x34, 0x01, 0x35,
+
6514 0x01, 0x36, 0x01, 0x37, 0x00, 0x2c, 0x00, 0xcc, 0x01, 0x38, 0x00, 0xcd,
+
6515 0x01, 0x39, 0x00, 0xce, 0x01, 0x3a, 0x00, 0xfa, 0x01, 0x3b, 0x00, 0xcf,
+
6516 0x01, 0x3c, 0x01, 0x3d, 0x01, 0x3e, 0x01, 0x3f, 0x01, 0x40, 0x00, 0x2d,
+
6517 0x01, 0x41, 0x00, 0x2e, 0x01, 0x42, 0x01, 0x43, 0x00, 0x2f, 0x01, 0x44,
+
6518 0x01, 0x45, 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4a,
+
6519 0x01, 0x4b, 0x00, 0xe2, 0x00, 0x30, 0x01, 0x4c, 0x00, 0x31, 0x01, 0x4d,
+
6520 0x01, 0x4e, 0x01, 0x4f, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53,
+
6521 0x00, 0x66, 0x00, 0x32, 0x00, 0xd0, 0x01, 0x54, 0x00, 0xd1, 0x01, 0x55,
+
6522 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5a, 0x00, 0x67,
+
6523 0x01, 0x5b, 0x01, 0x5c, 0x01, 0x5d, 0x00, 0xd3, 0x01, 0x5e, 0x01, 0x5f,
+
6524 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65,
+
6525 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6a, 0x00, 0x91,
+
6526 0x01, 0x6b, 0x00, 0xaf, 0x01, 0x6c, 0x01, 0x6d, 0x01, 0x6e, 0x00, 0xb0,
+
6527 0x00, 0x33, 0x00, 0xed, 0x00, 0x34, 0x00, 0x35, 0x01, 0x6f, 0x01, 0x70,
+
6528 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x00, 0x36,
+
6529 0x01, 0x76, 0x01, 0x77, 0x00, 0xe4, 0x01, 0x78, 0x00, 0xfb, 0x01, 0x79,
+
6530 0x01, 0x7a, 0x01, 0x7b, 0x01, 0x7c, 0x01, 0x7d, 0x01, 0x7e, 0x01, 0x7f,
+
6531 0x00, 0x37, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84,
+
6532 0x01, 0x85, 0x00, 0x38, 0x00, 0xd4, 0x01, 0x86, 0x00, 0xd5, 0x01, 0x87,
+
6533 0x00, 0x68, 0x01, 0x88, 0x00, 0xd6, 0x01, 0x89, 0x01, 0x8a, 0x01, 0x8b,
+
6534 0x01, 0x8c, 0x01, 0x8d, 0x01, 0x8e, 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91,
+
6535 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97,
+
6536 0x00, 0x39, 0x00, 0x3a, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9a, 0x01, 0x9b,
+
6537 0x00, 0x3b, 0x00, 0x3c, 0x00, 0xeb, 0x01, 0x9c, 0x00, 0xbb, 0x01, 0x9d,
+
6538 0x01, 0x9e, 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x00, 0x3d,
+
6539 0x01, 0xa3, 0x00, 0xe6, 0x01, 0xa4, 0x01, 0xa5, 0x01, 0xa6, 0x00, 0x44,
+
6540 0x00, 0x69, 0x01, 0xa7, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xaa, 0x01, 0xab,
+
6541 0x01, 0xac, 0x00, 0x6b, 0x01, 0xad, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xb0,
+
6542 0x01, 0xb1, 0x01, 0xb2, 0x00, 0x6c, 0x01, 0xb3, 0x00, 0x6a, 0x01, 0xb4,
+
6543 0x01, 0xb5, 0x01, 0xb6, 0x01, 0xb7, 0x00, 0x6e, 0x01, 0xb8, 0x00, 0x6d,
+
6544 0x00, 0xa0, 0x01, 0xb9, 0x00, 0x45, 0x01, 0xba, 0x00, 0x46, 0x00, 0xfe,
+
6545 0x01, 0x00, 0x00, 0x6f, 0x01, 0xbb, 0x01, 0xbc, 0x01, 0xbd, 0x00, 0x47,
+
6546 0x00, 0xea, 0x01, 0xbe, 0x01, 0x01, 0x01, 0xbf, 0x01, 0xc0, 0x00, 0x48,
+
6547 0x00, 0x70, 0x01, 0xc1, 0x01, 0xc2, 0x01, 0xc3, 0x00, 0x72, 0x01, 0xc4,
+
6548 0x01, 0xc5, 0x01, 0xc6, 0x01, 0xc7, 0x01, 0xc8, 0x01, 0xc9, 0x00, 0x73,
+
6549 0x01, 0xca, 0x01, 0xcb, 0x00, 0x71, 0x01, 0xcc, 0x01, 0xcd, 0x01, 0xce,
+
6550 0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd4,
+
6551 0x01, 0xd5, 0x00, 0x49, 0x00, 0x4a, 0x00, 0xf9, 0x01, 0xd6, 0x01, 0xd7,
+
6552 0x01, 0xd8, 0x01, 0xd9, 0x01, 0xda, 0x00, 0x4b, 0x01, 0xdb, 0x01, 0xdc,
+
6553 0x01, 0xdd, 0x01, 0xde, 0x00, 0x4c, 0x00, 0xd7, 0x00, 0x74, 0x01, 0xdf,
+
6554 0x00, 0x76, 0x01, 0xe0, 0x00, 0x77, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3,
+
6555 0x00, 0x75, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe6, 0x01, 0xe7, 0x01, 0xe8,
+
6556 0x00, 0x4d, 0x01, 0xe9, 0x01, 0xea, 0x00, 0x4e, 0x01, 0xeb, 0x01, 0xec,
+
6557 0x00, 0x4f, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1,
+
6558 0x01, 0xf2, 0x01, 0xf3, 0x00, 0xe3, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x51,
+
6559 0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, 0x01, 0xf9, 0x01, 0xfa,
+
6560 0x01, 0xfb, 0x00, 0x78, 0x00, 0x52, 0x00, 0x79, 0x01, 0xfc, 0x00, 0x7b,
+
6561 0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
+
6562 0x00, 0x7c, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x00, 0x7a, 0x02, 0x06,
+
6563 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c,
+
6564 0x02, 0x0d, 0x02, 0x0e, 0x02, 0x0f, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12,
+
6565 0x00, 0xa1, 0x02, 0x13, 0x00, 0x7d, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16,
+
6566 0x00, 0xb1, 0x00, 0x53, 0x00, 0xee, 0x00, 0x54, 0x00, 0x55, 0x02, 0x17,
+
6567 0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, 0x02, 0x1b, 0x02, 0x1c, 0x02, 0x1d,
+
6568 0x02, 0x1e, 0x02, 0x1f, 0x00, 0x56, 0x02, 0x20, 0x02, 0x21, 0x00, 0xe5,
+
6569 0x02, 0x22, 0x00, 0xfc, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26,
+
6570 0x02, 0x27, 0x00, 0x89, 0x00, 0x57, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2a,
+
6571 0x02, 0x2b, 0x02, 0x2c, 0x02, 0x2d, 0x02, 0x2e, 0x00, 0x58, 0x00, 0x7e,
+
6572 0x02, 0x2f, 0x00, 0x80, 0x02, 0x30, 0x00, 0x81, 0x02, 0x31, 0x00, 0x7f,
+
6573 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37,
+
6574 0x02, 0x38, 0x02, 0x39, 0x02, 0x3a, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3d,
+
6575 0x02, 0x3e, 0x02, 0x3f, 0x02, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x02, 0x41,
+
6576 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0xec,
+
6577 0x02, 0x45, 0x00, 0xba, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49,
+
6578 0x02, 0x4a, 0x02, 0x4b, 0x00, 0x5d, 0x02, 0x4c, 0x00, 0xe7, 0x02, 0x4d,
+
6579 0x02, 0x4e, 0x02, 0x4f, 0x00, 0x9d, 0x00, 0x9e, 0x02, 0x50, 0x02, 0x51,
+
6580 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18,
+
6581 0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x02, 0x52, 0x02, 0x53,
+
6582 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59,
+
6583 0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x5e, 0x02, 0x5f,
+
6584 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65,
+
6585 0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, 0x02, 0x6a, 0x02, 0x6b,
+
6586 0x02, 0x6c, 0x02, 0x6d, 0x02, 0x6e, 0x02, 0x6f, 0x02, 0x70, 0x02, 0x71,
+
6587 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77,
+
6588 0x02, 0x78, 0x02, 0x79, 0x02, 0x7a, 0x02, 0x7b, 0x00, 0xbc, 0x00, 0xf4,
+
6589 0x00, 0xf5, 0x00, 0xf6, 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, 0x02, 0x7f,
+
6590 0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x00, 0x11, 0x00, 0x0f,
+
6591 0x00, 0x1d, 0x00, 0x1e, 0x00, 0xab, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x22,
+
6592 0x00, 0xa2, 0x00, 0xc3, 0x00, 0x87, 0x00, 0x0d, 0x02, 0x84, 0x00, 0x06,
+
6593 0x00, 0x12, 0x00, 0x3f, 0x02, 0x85, 0x02, 0x86, 0x00, 0x0b, 0x00, 0x0c,
+
6594 0x00, 0x5e, 0x00, 0x60, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x10, 0x02, 0x87,
+
6595 0x00, 0xb2, 0x00, 0xb3, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, 0x00, 0x42,
+
6596 0x00, 0xc4, 0x00, 0xc5, 0x00, 0xb4, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb7,
+
6597 0x00, 0xa9, 0x00, 0xaa, 0x00, 0xbe, 0x00, 0xbf, 0x00, 0x05, 0x00, 0x0a,
+
6598 0x02, 0x8b, 0x02, 0x8c, 0x02, 0x8d, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90,
+
6599 0x02, 0x91, 0x00, 0x03, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95,
+
6600 0x02, 0x96, 0x00, 0x84, 0x02, 0x97, 0x00, 0xbd, 0x00, 0x07, 0x02, 0x98,
+
6601 0x02, 0x99, 0x00, 0xa6, 0x00, 0xf7, 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c,
+
6602 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2,
+
6603 0x02, 0xa3, 0x00, 0x85, 0x02, 0xa4, 0x00, 0x96, 0x02, 0xa5, 0x02, 0xa6,
+
6604 0x02, 0xa7, 0x02, 0xa8, 0x02, 0xa9, 0x00, 0x0e, 0x00, 0xef, 0x00, 0xf0,
+
6605 0x00, 0xb8, 0x00, 0x20, 0x00, 0x8f, 0x00, 0x21, 0x00, 0x1f, 0x00, 0x95,
+
6606 0x00, 0x94, 0x00, 0x93, 0x00, 0xa7, 0x00, 0x61, 0x00, 0xa4, 0x00, 0x41,
+
6607 0x00, 0x92, 0x02, 0xaa, 0x00, 0x9c, 0x02, 0xab, 0x02, 0xac, 0x00, 0x9a,
+
6608 0x00, 0x99, 0x00, 0xa5, 0x02, 0xad, 0x00, 0x98, 0x00, 0x08, 0x00, 0xc6,
+
6609 0x02, 0xae, 0x02, 0xaf, 0x02, 0xb0, 0x02, 0xb1, 0x02, 0xb2, 0x02, 0xb3,
+
6610 0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb7, 0x02, 0xb8, 0x02, 0xb9,
+
6611 0x02, 0xba, 0x02, 0xbb, 0x02, 0xbc, 0x02, 0xbd, 0x02, 0xbe, 0x02, 0xbf,
+
6612 0x02, 0xc0, 0x02, 0xc1, 0x02, 0xc2, 0x02, 0xc3, 0x02, 0xc4, 0x02, 0xc5,
+
6613 0x02, 0xc6, 0x02, 0xc7, 0x02, 0xc8, 0x02, 0xc9, 0x02, 0xca, 0x02, 0xcb,
+
6614 0x02, 0xcc, 0x02, 0xcd, 0x02, 0xce, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1,
+
6615 0x02, 0xd2, 0x02, 0xd3, 0x02, 0xd4, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7,
+
6616 0x02, 0xd8, 0x02, 0xd9, 0x02, 0xda, 0x02, 0xdb, 0x02, 0xdc, 0x02, 0xdd,
+
6617 0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x02, 0xe1, 0x02, 0xe2, 0x02, 0xe3,
+
6618 0x02, 0xe4, 0x02, 0xe5, 0x02, 0xe6, 0x00, 0xb9, 0x02, 0xe7, 0x02, 0xe8,
+
6619 0x02, 0xe9, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, 0x02, 0xee,
+
6620 0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x02, 0xf2, 0x02, 0xf3, 0x02, 0xf4,
+
6621 0x02, 0xf5, 0x02, 0xf6, 0x02, 0xf7, 0x02, 0xf8, 0x02, 0xf9, 0x02, 0xfa,
+
6622 0x02, 0xfb, 0x02, 0xfc, 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00,
+
6623 0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, 0x03, 0x06,
+
6624 0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c,
+
6625 0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12,
+
6626 0x03, 0x13, 0x03, 0x14, 0x03, 0x15, 0x03, 0x16, 0x03, 0x17, 0x03, 0x18,
+
6627 0x03, 0x19, 0x03, 0x1a, 0x03, 0x1b, 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e,
+
6628 0x03, 0x1f, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24,
+
6629 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2a,
+
6630 0x03, 0x2b, 0x03, 0x2c, 0x03, 0x2d, 0x03, 0x2e, 0x03, 0x2f, 0x03, 0x30,
+
6631 0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36,
+
6632 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x03, 0x3b, 0x03, 0x3c,
+
6633 0x03, 0x3d, 0x03, 0x3e, 0x03, 0x3f, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42,
+
6634 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48,
+
6635 0x03, 0x49, 0x03, 0x4a, 0x03, 0x4b, 0x03, 0x4c, 0x03, 0x4d, 0x03, 0x4e,
+
6636 0x03, 0x4f, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54,
+
6637 0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x03, 0x58, 0x03, 0x59, 0x03, 0x5a,
+
6638 0x03, 0x5b, 0x03, 0x5c, 0x03, 0x5d, 0x03, 0x5e, 0x03, 0x5f, 0x03, 0x60,
+
6639 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, 0x03, 0x66,
+
6640 0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6a, 0x03, 0x6b, 0x03, 0x6c,
+
6641 0x03, 0x6d, 0x03, 0x6e, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72,
+
6642 0x00, 0x23, 0x00, 0x09, 0x00, 0x88, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8a,
+
6643 0x00, 0x8c, 0x00, 0x83, 0x03, 0x73, 0x03, 0x74, 0x00, 0x5f, 0x00, 0xe8,
+
6644 0x00, 0x82, 0x03, 0x75, 0x00, 0xc2, 0x03, 0x76, 0x03, 0x77, 0x03, 0x78,
+
6645 0x03, 0x79, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7e,
+
6646 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84,
+
6647 0x03, 0x85, 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8a,
+
6648 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8e, 0x03, 0x8f, 0x03, 0x90,
+
6649 0x03, 0x91, 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96,
+
6650 0x03, 0x97, 0x03, 0x98, 0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c,
+
6651 0x03, 0x9d, 0x03, 0x9e, 0x03, 0x9f, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2,
+
6652 0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8,
+
6653 0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x00, 0x8e, 0x00, 0xdc,
+
6654 0x00, 0x43, 0x00, 0x8d, 0x00, 0xdf, 0x00, 0xd8, 0x00, 0xe1, 0x00, 0xdb,
+
6655 0x00, 0xdd, 0x00, 0xd9, 0x00, 0xda, 0x00, 0xde, 0x00, 0xe0, 0x03, 0xad,
+
6656 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
+
6657 0x03, 0xb4, 0x03, 0xb5, 0x03, 0xb6, 0x03, 0xb7, 0x03, 0xb8, 0x03, 0xb9,
+
6658 0x03, 0xba, 0x03, 0xbb, 0x03, 0xbc, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
+
6659 0x03, 0xc0, 0x03, 0xc1, 0x03, 0xc2, 0x03, 0xc3, 0x03, 0xc4, 0x03, 0xc5,
+
6660 0x03, 0xc6, 0x03, 0xc7, 0x03, 0xc8, 0x03, 0xc9, 0x03, 0xca, 0x03, 0xcb,
+
6661 0x03, 0xcc, 0x03, 0xcd, 0x03, 0xce, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76,
+
6662 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6e,
+
6663 0x69, 0x31, 0x45, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42,
+
6664 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e,
+
6665 0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
+
6666 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e,
+
6667 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
+
6668 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6e,
+
6669 0x69, 0x30, 0x32, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
+
6670 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6e,
+
6671 0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f,
+
6672 0x6e, 0x07, 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0a, 0x41, 0x72,
+
6673 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61,
+
6674 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x38,
+
6675 0x0b, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78,
+
6676 0x0a, 0x43, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06,
+
6677 0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61,
+
6678 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x43, 0x07, 0x75, 0x6e,
+
6679 0x69, 0x31, 0x45, 0x30, 0x45, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, 0x65,
+
6680 0x06, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6681 0x45, 0x31, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07,
+
6682 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6683 0x45, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x32, 0x07,
+
6684 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6685 0x32, 0x30, 0x34, 0x0a, 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65,
+
6686 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x38, 0x07, 0x75,
+
6687 0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6688 0x30, 0x36, 0x07, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
+
6689 0x6e, 0x69, 0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
+
6690 0x31, 0x34, 0x07, 0x45, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x75,
+
6691 0x6e, 0x69, 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
+
6692 0x42, 0x38, 0x06, 0x47, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x47, 0x63,
+
6693 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
+
6694 0x69, 0x30, 0x31, 0x32, 0x32, 0x0a, 0x47, 0x64, 0x6f, 0x74, 0x61, 0x63,
+
6695 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x30,
+
6696 0x04, 0x48, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32,
+
6697 0x41, 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65,
+
6698 0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x34, 0x06, 0x49, 0x62,
+
6699 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x38,
+
6700 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, 0x6e, 0x69,
+
6701 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x38,
+
6702 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x49, 0x6d, 0x61,
+
6703 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x49, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
+
6704 0x06, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x4a, 0x63, 0x69, 0x72,
+
6705 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6706 0x31, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x39, 0x38, 0x07,
+
6707 0x75, 0x6e, 0x69, 0x30, 0x31, 0x43, 0x37, 0x06, 0x4c, 0x61, 0x63, 0x75,
+
6708 0x74, 0x65, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e,
+
6709 0x69, 0x30, 0x31, 0x33, 0x42, 0x04, 0x4c, 0x64, 0x6f, 0x74, 0x07, 0x75,
+
6710 0x6e, 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
+
6711 0x43, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75,
+
6712 0x6e, 0x69, 0x31, 0x45, 0x34, 0x32, 0x06, 0x4e, 0x61, 0x63, 0x75, 0x74,
+
6713 0x65, 0x06, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
+
6714 0x30, 0x31, 0x34, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x34,
+
6715 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x36, 0x03, 0x45, 0x6e, 0x67,
+
6716 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x38, 0x06, 0x4f, 0x62, 0x72,
+
6717 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x30, 0x07,
+
6718 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6719 0x45, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07,
+
6720 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6721 0x32, 0x30, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x41, 0x07,
+
6722 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6723 0x45, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x45, 0x05,
+
6724 0x4f, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
+
6725 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e,
+
6726 0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
+
6727 0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x30, 0x0d, 0x4f, 0x68,
+
6728 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
+
6729 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x45, 0x07, 0x4f, 0x6d, 0x61, 0x63,
+
6730 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x32, 0x07,
+
6731 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6732 0x31, 0x45, 0x41, 0x0b, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63,
+
6733 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x43, 0x07,
+
6734 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6735 0x32, 0x32, 0x43, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52,
+
6736 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35,
+
6737 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x30, 0x07, 0x75, 0x6e,
+
6738 0x69, 0x31, 0x45, 0x35, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31,
+
6739 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x45, 0x06, 0x53, 0x61,
+
6740 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x34,
+
6741 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x36, 0x0b, 0x53, 0x63, 0x69,
+
6742 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69,
+
6743 0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x30,
+
6744 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69,
+
6745 0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x45,
+
6746 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x38, 0x46, 0x04, 0x54, 0x62, 0x61,
+
6747 0x72, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
+
6748 0x30, 0x31, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x41,
+
6749 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x43, 0x07, 0x75, 0x6e, 0x69,
+
6750 0x31, 0x45, 0x36, 0x45, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07,
+
6751 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6752 0x45, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x36, 0x05,
+
6753 0x55, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
+
6754 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6e,
+
6755 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
+
6756 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x45, 0x0d, 0x55, 0x68,
+
6757 0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
+
6758 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x36, 0x07, 0x55, 0x6d, 0x61, 0x63,
+
6759 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x41, 0x07,
+
6760 0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x05, 0x55, 0x72, 0x69, 0x6e,
+
6761 0x67, 0x06, 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
+
6762 0x31, 0x45, 0x37, 0x38, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b,
+
6763 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09,
+
6764 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, 0x67,
+
6765 0x72, 0x61, 0x76, 0x65, 0x0b, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d,
+
6766 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x45,
+
6767 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x34, 0x06, 0x59, 0x67, 0x72,
+
6768 0x61, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x36, 0x07,
+
6769 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6770 0x45, 0x46, 0x38, 0x06, 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x5a,
+
6771 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e,
+
6772 0x69, 0x31, 0x45, 0x39, 0x32, 0x03, 0x55, 0x2e, 0x69, 0x06, 0x61, 0x62,
+
6773 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x46,
+
6774 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69,
+
6775 0x31, 0x45, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x33,
+
6776 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69,
+
6777 0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x44,
+
6778 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69,
+
6779 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42,
+
6780 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69,
+
6781 0x31, 0x45, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x33,
+
6782 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x33, 0x07, 0x61, 0x6d, 0x61,
+
6783 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x61, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
+
6784 0x0a, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07,
+
6785 0x61, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6786 0x32, 0x39, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x39, 0x0b,
+
6787 0x63, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0a,
+
6788 0x63, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x64,
+
6789 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30,
+
6790 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x46, 0x06, 0x65, 0x62,
+
6791 0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07,
+
6792 0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6793 0x45, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07,
+
6794 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6795 0x45, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x35, 0x07,
+
6796 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x35, 0x0a, 0x65, 0x64, 0x6f, 0x74,
+
6797 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
+
6798 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75,
+
6799 0x6e, 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72,
+
6800 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75,
+
6801 0x6e, 0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e,
+
6802 0x65, 0x6b, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x39, 0x41, 0x07, 0x75,
+
6803 0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6804 0x35, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x42, 0x39, 0x06, 0x67,
+
6805 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75,
+
6806 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32,
+
6807 0x33, 0x0a, 0x67, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74,
+
6808 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x31, 0x04, 0x68, 0x62, 0x61,
+
6809 0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x42, 0x0b, 0x68, 0x63,
+
6810 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
+
6811 0x69, 0x31, 0x45, 0x32, 0x35, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65,
+
6812 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69,
+
6813 0x31, 0x45, 0x32, 0x46, 0x09, 0x69, 0x2e, 0x6c, 0x6f, 0x63, 0x6c, 0x54,
+
6814 0x52, 0x4b, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x42, 0x07, 0x75,
+
6815 0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6816 0x30, 0x42, 0x07, 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x69,
+
6817 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x06, 0x69, 0x74, 0x69, 0x6c, 0x64,
+
6818 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0b, 0x6a, 0x63,
+
6819 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
+
6820 0x69, 0x30, 0x31, 0x33, 0x37, 0x0c, 0x6b, 0x67, 0x72, 0x65, 0x65, 0x6e,
+
6821 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x63, 0x06, 0x6c, 0x61, 0x63, 0x75, 0x74,
+
6822 0x65, 0x06, 0x6c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
+
6823 0x30, 0x31, 0x33, 0x43, 0x04, 0x6c, 0x64, 0x6f, 0x74, 0x07, 0x75, 0x6e,
+
6824 0x69, 0x31, 0x45, 0x33, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x43,
+
6825 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x42, 0x07, 0x75, 0x6e,
+
6826 0x69, 0x31, 0x45, 0x34, 0x33, 0x06, 0x6e, 0x61, 0x63, 0x75, 0x74, 0x65,
+
6827 0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6828 0x31, 0x34, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x35, 0x07,
+
6829 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x37, 0x03, 0x65, 0x6e, 0x67, 0x07,
+
6830 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x39, 0x06, 0x6f, 0x62, 0x72, 0x65,
+
6831 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x31, 0x07, 0x75,
+
6832 0x6e, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
+
6833 0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75,
+
6834 0x6e, 0x69, 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6835 0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x42, 0x07, 0x75,
+
6836 0x6e, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
+
6837 0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, 0x05, 0x6f,
+
6838 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42,
+
6839 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69,
+
6840 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x46,
+
6841 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, 0x0d, 0x6f, 0x68, 0x75,
+
6842 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75,
+
6843 0x6e, 0x69, 0x30, 0x32, 0x30, 0x46, 0x07, 0x6f, 0x6d, 0x61, 0x63, 0x72,
+
6844 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x33, 0x07, 0x75,
+
6845 0x6e, 0x69, 0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
+
6846 0x45, 0x42, 0x0b, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75,
+
6847 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x44, 0x07, 0x75,
+
6848 0x6e, 0x69, 0x31, 0x45, 0x34, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6849 0x32, 0x44, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63,
+
6850 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35, 0x37,
+
6851 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69,
+
6852 0x31, 0x45, 0x35, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x37, 0x42,
+
6853 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69,
+
6854 0x31, 0x45, 0x35, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x34, 0x44,
+
6855 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6856 0x45, 0x36, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x37, 0x0b,
+
6857 0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
+
6858 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6859 0x45, 0x36, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x33, 0x07,
+
6860 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x39, 0x04, 0x74, 0x62, 0x61, 0x72,
+
6861 0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6862 0x31, 0x36, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x42, 0x07,
+
6863 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6864 0x45, 0x36, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x46, 0x06,
+
6865 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6866 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75,
+
6867 0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e,
+
6868 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69,
+
6869 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x42,
+
6870 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69,
+
6871 0x31, 0x45, 0x45, 0x46, 0x0d, 0x75, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72,
+
6872 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6873 0x31, 0x37, 0x07, 0x75, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
+
6874 0x6e, 0x69, 0x31, 0x45, 0x37, 0x42, 0x07, 0x75, 0x6f, 0x67, 0x6f, 0x6e,
+
6875 0x65, 0x6b, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, 0x06, 0x75, 0x74, 0x69,
+
6876 0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x39, 0x06,
+
6877 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x77, 0x63, 0x69, 0x72, 0x63,
+
6878 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72,
+
6879 0x65, 0x73, 0x69, 0x73, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0b,
+
6880 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
+
6881 0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31,
+
6882 0x45, 0x46, 0x35, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75,
+
6883 0x6e, 0x69, 0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
+
6884 0x33, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x39, 0x06, 0x7a,
+
6885 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x7a, 0x64, 0x6f, 0x74, 0x61, 0x63,
+
6886 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x33,
+
6887 0x03, 0x75, 0x2e, 0x69, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x46,
+
6888 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x34, 0x09, 0x7a, 0x65, 0x72,
+
6889 0x6f, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e,
+
6890 0x73, 0x73, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
+
6891 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x31, 0x07, 0x75, 0x6e, 0x69,
+
6892 0x32, 0x30, 0x38, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x33,
+
6893 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x34, 0x07, 0x75, 0x6e, 0x69,
+
6894 0x32, 0x30, 0x38, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x36,
+
6895 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x37, 0x07, 0x75, 0x6e, 0x69,
+
6896 0x32, 0x30, 0x38, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x39,
+
6897 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x6f,
+
6898 0x6e, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x74, 0x77, 0x6f, 0x2e,
+
6899 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2e, 0x64,
+
6900 0x6e, 0x6f, 0x6d, 0x09, 0x66, 0x6f, 0x75, 0x72, 0x2e, 0x64, 0x6e, 0x6f,
+
6901 0x6d, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08,
+
6902 0x73, 0x69, 0x78, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x73, 0x65, 0x76,
+
6903 0x65, 0x6e, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x65, 0x69, 0x67, 0x68,
+
6904 0x74, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x6e, 0x69, 0x6e, 0x65, 0x2e,
+
6905 0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
+
6906 0x6d, 0x72, 0x08, 0x6f, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x08,
+
6907 0x74, 0x77, 0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a, 0x74, 0x68, 0x72,
+
6908 0x65, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x6f, 0x75, 0x72,
+
6909 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x6e,
+
6910 0x75, 0x6d, 0x72, 0x08, 0x73, 0x69, 0x78, 0x2e, 0x6e, 0x75, 0x6d, 0x72,
+
6911 0x0a, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a,
+
6912 0x65, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x6e,
+
6913 0x69, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x07, 0x75, 0x6e, 0x69,
+
6914 0x32, 0x30, 0x37, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x39,
+
6915 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69,
+
6916 0x30, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x34,
+
6917 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69,
+
6918 0x32, 0x30, 0x37, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x37,
+
6919 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x38, 0x07, 0x75, 0x6e, 0x69,
+
6920 0x32, 0x30, 0x37, 0x39, 0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
+
6921 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64,
+
6922 0x6e, 0x6f, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72,
+
6923 0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0c,
+
6924 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x30, 0x2e, 0x73, 0x73, 0x30, 0x32,
+
6925 0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30, 0x2e, 0x7a, 0x65, 0x72,
+
6926 0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x2e,
+
6927 0x7a, 0x65, 0x72, 0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
+
6928 0x6d, 0x72, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x0c, 0x75, 0x6e, 0x69, 0x32,
+
6929 0x30, 0x37, 0x30, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69,
+
6930 0x32, 0x45, 0x31, 0x32, 0x16, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63,
+
6931 0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x6f, 0x63, 0x6c,
+
6932 0x43, 0x41, 0x54, 0x0d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6b,
+
6933 0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41,
+
6934 0x44, 0x0a, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, 0x68,
+
6935 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69,
+
6936 0x32, 0x30, 0x31, 0x30, 0x0d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x62,
+
6937 0x6c, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65,
+
6938 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x13,
+
6939 0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
+
6940 0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x17, 0x65, 0x78, 0x63, 0x6c,
+
6941 0x61, 0x6d, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75,
+
6942 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6943 0x30, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07,
+
6944 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
6945 0x30, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07,
+
6946 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x42, 0x02, 0x43, 0x52, 0x07, 0x75,
+
6947 0x6e, 0x69, 0x32, 0x30, 0x42, 0x35, 0x0d, 0x63, 0x6f, 0x6c, 0x6f, 0x6e,
+
6948 0x6d, 0x6f, 0x6e, 0x65, 0x74, 0x61, 0x72, 0x79, 0x04, 0x64, 0x6f, 0x6e,
+
6949 0x67, 0x04, 0x45, 0x75, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
+
6950 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x41, 0x44, 0x04, 0x6c,
+
6951 0x69, 0x72, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07,
+
6952 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6953 0x30, 0x41, 0x36, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x07, 0x75,
+
6954 0x6e, 0x69, 0x32, 0x30, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
+
6955 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x39, 0x07, 0x75,
+
6956 0x6e, 0x69, 0x32, 0x30, 0x41, 0x39, 0x0c, 0x61, 0x73, 0x74, 0x65, 0x72,
+
6957 0x69, 0x73, 0x6b, 0x6d, 0x61, 0x74, 0x68, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6958 0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x32, 0x31, 0x35, 0x07,
+
6959 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6960 0x30, 0x37, 0x42, 0x08, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74,
+
6961 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69,
+
6962 0x32, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x35,
+
6963 0x0a, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x73, 0x0f,
+
6964 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73,
+
6965 0x73, 0x30, 0x31, 0x10, 0x61, 0x73, 0x63, 0x69, 0x69, 0x63, 0x69, 0x72,
+
6966 0x63, 0x75, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x61, 0x72, 0x72,
+
6967 0x6f, 0x77, 0x75, 0x70, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x37,
+
6968 0x0a, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07,
+
6969 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x38, 0x09, 0x61, 0x72, 0x72, 0x6f,
+
6970 0x77, 0x64, 0x6f, 0x77, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39,
+
6971 0x39, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x6c, 0x65, 0x66, 0x74, 0x07,
+
6972 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x36, 0x09, 0x61, 0x72, 0x72, 0x6f,
+
6973 0x77, 0x62, 0x6f, 0x74, 0x68, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x75,
+
6974 0x70, 0x64, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x37, 0x07,
+
6975 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6976 0x31, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x36, 0x07,
+
6977 0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
6978 0x42, 0x39, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x37, 0x07,
+
6979 0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x35, 0x0d, 0x64, 0x6e, 0x65, 0x69,
+
6980 0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e,
+
6981 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
+
6982 0x13, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68,
+
6983 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x64, 0x6e, 0x68,
+
6984 0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x64, 0x6e, 0x66,
+
6985 0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
+
6986 0x6f, 0x63, 0x6b, 0x14, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x71,
+
6987 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
+
6988 0x13, 0x64, 0x6e, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65, 0x69, 0x67, 0x68,
+
6989 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x09, 0x66, 0x75, 0x6c,
+
6990 0x6c, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x75, 0x70, 0x68, 0x61, 0x6c,
+
6991 0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0d, 0x75, 0x70, 0x65, 0x69, 0x67,
+
6992 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0f, 0x6c, 0x65, 0x66,
+
6993 0x74, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
+
6994 0x10, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72,
+
6995 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68,
+
6996 0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
+
6997 0x6f, 0x63, 0x6b, 0x0d, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x61, 0x6c, 0x66,
+
6998 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x14, 0x6c, 0x65, 0x66, 0x74, 0x66, 0x69,
+
6999 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f,
+
7000 0x63, 0x6b, 0x16, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68, 0x72, 0x65, 0x65,
+
7001 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63,
+
7002 0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65,
+
7003 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e,
+
7004 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f,
+
7005 0x63, 0x6b, 0x10, 0x72, 0x69, 0x67, 0x68, 0x74, 0x65, 0x69, 0x67, 0x68,
+
7006 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e, 0x6c, 0x65,
+
7007 0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0f, 0x64,
+
7008 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61,
+
7009 0x6e, 0x74, 0x0e, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61,
+
7010 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74,
+
7011 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68,
+
7012 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70,
+
7013 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71,
+
7014 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65,
+
7015 0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c,
+
7016 0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c,
+
7017 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68,
+
7018 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64,
+
7019 0x72, 0x61, 0x6e, 0x74, 0x0f, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7020 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70, 0x72,
+
7021 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75,
+
7022 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c, 0x75, 0x70, 0x72, 0x69, 0x67,
+
7023 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69,
+
7024 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0a,
+
7025 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x68, 0x61, 0x64, 0x65, 0x0b, 0x6d,
+
7026 0x65, 0x64, 0x69, 0x75, 0x6d, 0x73, 0x68, 0x61, 0x64, 0x65, 0x09, 0x64,
+
7027 0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
+
7028 0x32, 0x35, 0x43, 0x46, 0x06, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x07,
+
7029 0x75, 0x6e, 0x69, 0x32, 0x35, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
7030 0x35, 0x43, 0x37, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x68, 0x6f, 0x72,
+
7031 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x6c, 0x65,
+
7032 0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x72,
+
7033 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64, 0x62, 0x6c, 0x68,
+
7034 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75, 0x70,
+
7035 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75,
+
7036 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c,
+
7037 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64,
+
7038 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0e, 0x64, 0x62,
+
7039 0x6c, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
+
7040 0x0e, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74,
+
7041 0x62, 0x78, 0x64, 0x0f, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x72,
+
7042 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x64, 0x62,
+
7043 0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x0f,
+
7044 0x64, 0x6e, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
+
7045 0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x64, 0x62, 0x6c, 0x72, 0x69, 0x67,
+
7046 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68,
+
7047 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
+
7048 0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79,
+
7049 0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
+
7050 0x15, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
+
7051 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x64,
+
7052 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c,
+
7053 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x68, 0x65,
+
7054 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
+
7055 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x68, 0x65, 0x61,
+
7056 0x76, 0x79, 0x75, 0x70, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
+
7057 0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7058 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
+
7059 0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
+
7060 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c,
+
7061 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65,
+
7062 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x64, 0x6e, 0x6c, 0x69, 0x67,
+
7063 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79,
+
7064 0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
+
7065 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
+
7066 0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70,
+
7067 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
+
7068 0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a, 0x64, 0x62,
+
7069 0x6c, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x6c, 0x65,
+
7070 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x73,
+
7071 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78,
+
7072 0x64, 0x13, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61,
+
7073 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x13, 0x68, 0x65,
+
7074 0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
+
7075 0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64,
+
7076 0x6e, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e,
+
7077 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
+
7078 0x79, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x68,
+
7079 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62,
+
7080 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
+
7081 0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
+
7082 0x74, 0x62, 0x78, 0x64, 0x16, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
+
7083 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7084 0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61,
+
7085 0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
+
7086 0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61,
+
7087 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x68, 0x65,
+
7088 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14,
+
7089 0x68, 0x65, 0x61, 0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73,
+
7090 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61,
+
7091 0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
+
7092 0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75,
+
7093 0x70, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
+
7094 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
+
7095 0x79, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68,
+
7096 0x65, 0x61, 0x76, 0x79, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
+
7097 0x6e, 0x62, 0x78, 0x64, 0x0f, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
+
7098 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61,
+
7099 0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x10, 0x68, 0x65,
+
7100 0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62,
+
7101 0x78, 0x64, 0x10, 0x68, 0x65, 0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74,
+
7102 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68, 0x65, 0x61, 0x76,
+
7103 0x79, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
+
7104 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76,
+
7105 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
+
7106 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61,
+
7107 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
+
7108 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
+
7109 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
+
7110 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x68,
+
7111 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72,
+
7112 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65,
+
7113 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7114 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x18, 0x6c,
+
7115 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68,
+
7116 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a,
+
7117 0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67,
+
7118 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
+
7119 0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61,
+
7120 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
+
7121 0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61,
+
7122 0x72, 0x63, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x12,
+
7123 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x64, 0x6e, 0x72, 0x69,
+
7124 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7125 0x61, 0x72, 0x63, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64,
+
7126 0x12, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x75, 0x70, 0x72,
+
7127 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68,
+
7128 0x74, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a,
+
7129 0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
+
7130 0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x11,
+
7131 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x69, 0x61, 0x67, 0x63, 0x72, 0x6f,
+
7132 0x73, 0x73, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
+
7133 0x69, 0x61, 0x67, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72,
+
7134 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68,
+
7135 0x74, 0x64, 0x69, 0x61, 0x67, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7136 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
+
7137 0x67, 0x68, 0x74, 0x64, 0x6e, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67,
+
7138 0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e,
+
7139 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62,
+
7140 0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x72, 0x69,
+
7141 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7142 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68,
+
7143 0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x16, 0x6c, 0x69, 0x67,
+
7144 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72,
+
7145 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68,
+
7146 0x74, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72,
+
7147 0x7a, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75,
+
7148 0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
+
7149 0x64, 0x0d, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7150 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70,
+
7151 0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
+
7152 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61,
+
7153 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
+
7154 0x67, 0x68, 0x74, 0x75, 0x70, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67,
+
7155 0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x62,
+
7156 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x6f,
+
7157 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75,
+
7158 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67,
+
7159 0x68, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
+
7160 0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
+
7161 0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68,
+
7162 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7163 0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11,
+
7164 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67,
+
7165 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
+
7166 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70,
+
7167 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69, 0x67,
+
7168 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
+
7169 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69,
+
7170 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
+
7171 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72,
+
7172 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
+
7173 0x74, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
+
7174 0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7175 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
+
7176 0x78, 0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68,
+
7177 0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
+
7178 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
+
7179 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65,
+
7180 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74,
+
7181 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
+
7182 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70,
+
7183 0x64, 0x62, 0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78,
+
7184 0x64, 0x0f, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73,
+
7185 0x6e, 0x67, 0x62, 0x78, 0x64, 0x10, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x72,
+
7186 0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x75,
+
7187 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a,
+
7188 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x68,
+
7189 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
+
7190 0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
+
7191 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62,
+
7192 0x78, 0x64, 0x13, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
+
7193 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x75,
+
7194 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
+
7195 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70,
+
7196 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69,
+
7197 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x6c, 0x69, 0x67,
+
7198 0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76,
+
7199 0x79, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74,
+
7200 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
+
7201 0x15, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
+
7202 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x13, 0x75,
+
7203 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
+
7204 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x16, 0x75, 0x70, 0x6c, 0x69, 0x67,
+
7205 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61,
+
7206 0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
+
7207 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
+
7208 0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
+
7209 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67,
+
7210 0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x75,
+
7211 0x70, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
+
7212 0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x68,
+
7213 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65,
+
7214 0x72, 0x74, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
+
7215 0x62, 0x78, 0x64, 0x12, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x72,
+
7216 0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x76,
+
7217 0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
+
7218 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72,
+
7219 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69,
+
7220 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x68,
+
7221 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
+
7222 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69,
+
7223 0x67, 0x68, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79,
+
7224 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68,
+
7225 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78,
+
7226 0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
+
7227 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
+
7228 0x11, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
+
7229 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x73,
+
7230 0x6e, 0x67, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64,
+
7231 0x12, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68,
+
7232 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
7233 0x36, 0x33, 0x39, 0x09, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61, 0x63,
+
7234 0x65, 0x0c, 0x69, 0x6e, 0x76, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61,
+
7235 0x63, 0x65, 0x05, 0x73, 0x70, 0x61, 0x64, 0x65, 0x04, 0x63, 0x6c, 0x75,
+
7236 0x62, 0x05, 0x68, 0x65, 0x61, 0x72, 0x74, 0x07, 0x64, 0x69, 0x61, 0x6d,
+
7237 0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x33, 0x07,
+
7238 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
7239 0x37, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x37, 0x07,
+
7240 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x38, 0x06, 0x6d, 0x69, 0x6e, 0x75,
+
7241 0x74, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e,
+
7242 0x69, 0x32, 0x31, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31,
+
7243 0x36, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x07,
+
7244 0x75, 0x6e, 0x69, 0x32, 0x34, 0x32, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32,
+
7245 0x33, 0x38, 0x42, 0x05, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x07, 0x75, 0x6e,
+
7246 0x69, 0x32, 0x31, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
+
7247 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32, 0x42, 0x07, 0x75, 0x6e,
+
7248 0x69, 0x32, 0x33, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
+
7249 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x31, 0x38, 0x07, 0x75, 0x6e,
+
7250 0x69, 0x32, 0x33, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46,
+
7251 0x44, 0x16, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61,
+
7252 0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67,
+
7253 0x12, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
+
7254 0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x12, 0x67, 0x72, 0x65, 0x61,
+
7255 0x74, 0x65, 0x72, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c,
+
7256 0x69, 0x67, 0x10, 0x6c, 0x65, 0x73, 0x73, 0x5f, 0x68, 0x79, 0x70, 0x68,
+
7257 0x65, 0x6e, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x0f, 0x6c, 0x65, 0x73, 0x73,
+
7258 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07,
+
7259 0x75, 0x6e, 0x69, 0x30, 0x33, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7260 0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07,
+
7261 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7262 0x32, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x42, 0x07,
+
7263 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7264 0x32, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07,
+
7265 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7266 0x32, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x38, 0x07,
+
7267 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7268 0x33, 0x30, 0x37, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d,
+
7269 0x62, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
+
7270 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7271 0x33, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07,
+
7272 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7273 0x33, 0x30, 0x41, 0x09, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d,
+
7274 0x62, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x34, 0x0d, 0x68, 0x6f,
+
7275 0x6f, 0x6b, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
+
7276 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30,
+
7277 0x33, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x32, 0x07,
+
7278 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42, 0x0c, 0x64, 0x6f, 0x74, 0x62,
+
7279 0x65, 0x6c, 0x6f, 0x77, 0x63, 0x6f, 0x6d, 0x62, 0x07, 0x75, 0x6e, 0x69,
+
7280 0x30, 0x33, 0x32, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x36,
+
7281 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6e, 0x69,
+
7282 0x30, 0x33, 0x32, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x45,
+
7283 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69,
+
7284 0x30, 0x33, 0x33, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x36,
+
7285 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x2e, 0x63, 0x61, 0x73,
+
7286 0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x37, 0x2e, 0x63, 0x61,
+
7287 0x73, 0x65, 0x0e, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62,
+
7288 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63,
+
7289 0x6f, 0x6d, 0x62, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69,
+
7290 0x30, 0x33, 0x30, 0x42, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e,
+
7291 0x69, 0x30, 0x33, 0x30, 0x32, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75,
+
7292 0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c,
+
7293 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x2e, 0x63, 0x61, 0x73, 0x65,
+
7294 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x41, 0x2e, 0x63, 0x61, 0x73,
+
7295 0x65, 0x0e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e,
+
7296 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42,
+
7297 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0d, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73,
+
7298 0x69, 0x73, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x64, 0x6f, 0x74, 0x61,
+
7299 0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x67,
+
7300 0x72, 0x61, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x61, 0x63,
+
7301 0x75, 0x74, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x11, 0x68, 0x75, 0x6e,
+
7302 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x63, 0x61,
+
7303 0x73, 0x65, 0x0a, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x63, 0x61, 0x73,
+
7304 0x65, 0x0a, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65,
+
7305 0x09, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x74,
+
7306 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0b, 0x74, 0x69,
+
7307 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e, 0x69, 0x0b, 0x75, 0x6e,
+
7308 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
+
7309 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
+
7310 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
+
7311 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x33, 0x0b, 0x75, 0x6e,
+
7312 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
+
7313 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
+
7314 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
+
7315 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33, 0x10, 0x75, 0x6e,
+
7316 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x2e, 0x63, 0x61,
+
7317 0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33,
+
7318 0x30, 0x30, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30,
+
7319 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x2e, 0x63, 0x61, 0x73, 0x65,
+
7320 0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33,
+
7321 0x2e, 0x63, 0x61, 0x73, 0x65, 0x04, 0x4e, 0x55, 0x4c, 0x4c, 0x00, 0x00,
+
7322 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02,
+
7323 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x02,
+
7324 0x00, 0x26, 0x00, 0x01, 0x00, 0x19, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x24,
+
7325 0x00, 0x01, 0x00, 0x26, 0x00, 0x26, 0x00, 0x01, 0x00, 0x28, 0x00, 0x40,
+
7326 0x00, 0x01, 0x00, 0x42, 0x00, 0x5f, 0x00, 0x01, 0x00, 0x63, 0x00, 0x63,
+
7327 0x00, 0x01, 0x00, 0x65, 0x00, 0x69, 0x00, 0x01, 0x00, 0x6b, 0x00, 0x6b,
+
7328 0x00, 0x01, 0x00, 0x6d, 0x00, 0x99, 0x00, 0x01, 0x00, 0x9b, 0x00, 0x9b,
+
7329 0x00, 0x01, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0x01, 0x00, 0xb2, 0x00, 0xe6,
+
7330 0x00, 0x01, 0x00, 0xe8, 0x01, 0x00, 0x00, 0x01, 0x01, 0x03, 0x01, 0x0c,
+
7331 0x00, 0x01, 0x01, 0x0f, 0x01, 0x27, 0x00, 0x01, 0x01, 0x29, 0x01, 0x2a,
+
7332 0x00, 0x01, 0x01, 0x2d, 0x01, 0x52, 0x00, 0x01, 0x01, 0x54, 0x01, 0x54,
+
7333 0x00, 0x01, 0x01, 0x56, 0x01, 0x56, 0x00, 0x01, 0x01, 0x58, 0x01, 0x5f,
+
7334 0x00, 0x01, 0x01, 0x61, 0x01, 0x84, 0x00, 0x01, 0x01, 0x86, 0x01, 0x86,
+
7335 0x00, 0x01, 0x01, 0x89, 0x01, 0x8e, 0x00, 0x01, 0x01, 0x90, 0x01, 0x92,
+
7336 0x00, 0x01, 0x01, 0x9f, 0x01, 0xd3, 0x00, 0x01, 0x01, 0xd7, 0x01, 0xd7,
+
7337 0x00, 0x01, 0x02, 0x51, 0x02, 0x53, 0x00, 0x01, 0x02, 0x56, 0x02, 0x56,
+
7338 0x00, 0x01, 0x02, 0x59, 0x02, 0x59, 0x00, 0x01, 0x02, 0x5f, 0x02, 0x5f,
+
7339 0x00, 0x01, 0x02, 0x61, 0x02, 0x62, 0x00, 0x01, 0x02, 0x65, 0x02, 0x65,
+
7340 0x00, 0x01, 0x03, 0x70, 0x03, 0x70, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x92,
+
7341 0x00, 0x03, 0x03, 0x95, 0x03, 0x95, 0x00, 0x01, 0x03, 0xa0, 0x03, 0xaa,
+
7342 0x00, 0x03, 0x03, 0xb0, 0x03, 0xb0, 0x00, 0x01, 0x03, 0xb5, 0x03, 0xc0,
+
7343 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
+
7344 0x00, 0x20, 0x00, 0x00, 0x00, 0x36, 0x00, 0x01, 0x00, 0x06, 0x03, 0x8a,
+
7345 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f, 0x03, 0x90, 0x00, 0x02,
+
7346 0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
+
7347 0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02,
+
7348 0x03, 0x89, 0x03, 0xaa, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x26,
+
7349 0x00, 0x44, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
+
7350 0x74, 0x6e, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+
7351 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x6d, 0x61, 0x72, 0x6b,
+
7352 0x00, 0x0e, 0x6d, 0x6b, 0x6d, 0x6b, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01,
+
7353 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03,
+
7354 0x00, 0x04, 0x00, 0x0a, 0x1a, 0x40, 0x1a, 0xd0, 0x1d, 0x3a, 0x00, 0x04,
+
7355 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x22,
+
7356 0x00, 0x05, 0x00, 0xf8, 0x01, 0xc6, 0x00, 0x02, 0x00, 0x03, 0x03, 0x7a,
+
7357 0x03, 0x92, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xaa, 0x00, 0x19, 0x03, 0xb5,
+
7358 0x03, 0xc0, 0x00, 0x24, 0x00, 0x02, 0x00, 0x23, 0x00, 0x01, 0x00, 0x19,
+
7359 0x00, 0x00, 0x00, 0x1c, 0x00, 0x24, 0x00, 0x19, 0x00, 0x26, 0x00, 0x26,
+
7360 0x00, 0x22, 0x00, 0x28, 0x00, 0x40, 0x00, 0x23, 0x00, 0x42, 0x00, 0x5f,
+
7361 0x00, 0x3c, 0x00, 0x63, 0x00, 0x63, 0x00, 0x5a, 0x00, 0x65, 0x00, 0x69,
+
7362 0x00, 0x5b, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x60, 0x00, 0x6d, 0x00, 0x99,
+
7363 0x00, 0x61, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x8e, 0x00, 0x9d, 0x00, 0xb0,
+
7364 0x00, 0x8f, 0x00, 0xb2, 0x00, 0xe6, 0x00, 0xa3, 0x00, 0xe8, 0x01, 0x00,
+
7365 0x00, 0xd8, 0x01, 0x03, 0x01, 0x0c, 0x00, 0xf1, 0x01, 0x0f, 0x01, 0x27,
+
7366 0x00, 0xfb, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x14, 0x01, 0x2d, 0x01, 0x52,
+
7367 0x01, 0x16, 0x01, 0x54, 0x01, 0x54, 0x01, 0x3c, 0x01, 0x56, 0x01, 0x56,
+
7368 0x01, 0x3d, 0x01, 0x58, 0x01, 0x5f, 0x01, 0x3e, 0x01, 0x61, 0x01, 0x84,
+
7369 0x01, 0x46, 0x01, 0x86, 0x01, 0x86, 0x01, 0x6a, 0x01, 0x89, 0x01, 0x8e,
+
7370 0x01, 0x6b, 0x01, 0x90, 0x01, 0x92, 0x01, 0x71, 0x01, 0x9f, 0x01, 0xd3,
+
7371 0x01, 0x74, 0x01, 0xd7, 0x01, 0xd7, 0x01, 0xa9, 0x02, 0x51, 0x02, 0x53,
+
7372 0x01, 0xaa, 0x02, 0x56, 0x02, 0x56, 0x01, 0xad, 0x02, 0x59, 0x02, 0x59,
+
7373 0x01, 0xae, 0x02, 0x5f, 0x02, 0x5f, 0x01, 0xaf, 0x02, 0x61, 0x02, 0x62,
+
7374 0x01, 0xb0, 0x02, 0x65, 0x02, 0x65, 0x01, 0xb2, 0x03, 0x70, 0x03, 0x70,
+
7375 0x01, 0xb3, 0x03, 0x95, 0x03, 0x95, 0x01, 0xb4, 0x03, 0xb0, 0x03, 0xb0,
+
7376 0x01, 0xb5, 0x00, 0x30, 0x00, 0x00, 0x1a, 0x88, 0x00, 0x00, 0x1a, 0x8e,
+
7377 0x00, 0x00, 0x1a, 0x94, 0x00, 0x00, 0x1a, 0x9a, 0x00, 0x00, 0x1a, 0xa0,
+
7378 0x00, 0x00, 0x1a, 0xa6, 0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xd6,
+
7379 0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xac, 0x00, 0x00, 0x1a, 0xe8,
+
7380 0x00, 0x00, 0x1a, 0xb2, 0x00, 0x00, 0x1a, 0xb8, 0x00, 0x00, 0x1a, 0xe2,
+
7381 0x00, 0x00, 0x1a, 0xbe, 0x00, 0x01, 0x1c, 0x5e, 0x00, 0x02, 0x19, 0x76,
+
7382 0x00, 0x02, 0x19, 0x7c, 0x00, 0x02, 0x19, 0x82, 0x00, 0x02, 0x19, 0x88,
+
7383 0x00, 0x03, 0x00, 0xc2, 0x00, 0x02, 0x19, 0x8e, 0x00, 0x02, 0x19, 0x8e,
+
7384 0x00, 0x04, 0x00, 0xc8, 0x00, 0x04, 0x00, 0xc8, 0x00, 0x00, 0x1b, 0x06,
+
7385 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xc4, 0x00, 0x00, 0x1a, 0xca,
+
7386 0x00, 0x00, 0x1a, 0xd0, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1a, 0xfa,
+
7387 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xf4,
+
7388 0x00, 0x01, 0x1c, 0x64, 0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xd6,
+
7389 0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xdc, 0x00, 0x00, 0x1a, 0xe2,
+
7390 0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xe8, 0x00, 0x00, 0x1a, 0xee,
+
7391 0x00, 0x00, 0x1a, 0xf4, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x00,
+
7392 0x00, 0x00, 0x1b, 0x06, 0x00, 0x01, 0x00, 0xee, 0x00, 0x00, 0x00, 0x01,
+
7393 0x00, 0xfb, 0x01, 0x3c, 0x01, 0xb6, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
+
7394 0x11, 0x4e, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
+
7395 0x00, 0x00, 0x1b, 0x0e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
+
7396 0x11, 0x1e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x0e,
+
7397 0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x24, 0x00, 0x00,
+
7398 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x2a, 0x00, 0x00, 0x18, 0x50,
+
7399 0x11, 0x4e, 0x00, 0x00, 0x11, 0x30, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
+
7400 0x00, 0x00, 0x1b, 0x02, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
+
7401 0x11, 0x36, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x02,
+
7402 0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x50, 0x00, 0x00,
+
7403 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x3c, 0x00, 0x00, 0x18, 0x50,
+
7404 0x11, 0x4e, 0x00, 0x00, 0x11, 0x42, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
+
7405 0x00, 0x00, 0x13, 0x52, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
+
7406 0x1a, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c,
+
7407 0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xe8, 0x00, 0x00,
+
7408 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xee, 0x00, 0x00, 0x18, 0x50,
+
7409 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
+
7410 0x00, 0x00, 0x13, 0xf4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
+
7411 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0x94,
+
7412 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x48, 0x00, 0x00,
+
7413 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x18, 0x50,
+
7414 0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7415 0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
+
7416 0x11, 0x5a, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x11, 0x54,
+
7417 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00,
+
7418 0x11, 0x60, 0x00, 0x00, 0x00, 0x00, 0x11, 0x5a, 0x00, 0x00, 0x11, 0x60,
+
7419 0x00, 0x00, 0x00, 0x00, 0x11, 0x66, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00,
+
7420 0x00, 0x00, 0x11, 0x6c, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
+
7421 0x11, 0x7e, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x72,
+
7422 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00,
+
7423 0x11, 0x78, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00, 0x18, 0xf2,
+
7424 0x00, 0x00, 0x14, 0xc0, 0x11, 0xea, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
+
7425 0x00, 0x00, 0x11, 0x84, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
+
7426 0x11, 0x90, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x8a,
+
7427 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x90, 0x00, 0x00,
+
7428 0x13, 0x46, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x18, 0x50,
+
7429 0x11, 0xf6, 0x00, 0x00, 0x11, 0x96, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
+
7430 0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00,
+
7431 0x11, 0xa2, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xa8,
+
7432 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xae, 0x00, 0x00,
+
7433 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xb4, 0x00, 0x00, 0x18, 0x50,
+
7434 0x11, 0xf6, 0x00, 0x00, 0x11, 0xba, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
+
7435 0x00, 0x00, 0x11, 0xc0, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
+
7436 0x11, 0xea, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xc6,
+
7437 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xcc, 0x00, 0x00,
+
7438 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xd2, 0x00, 0x00, 0x18, 0x50,
+
7439 0x11, 0xf6, 0x00, 0x00, 0x11, 0xd8, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
+
7440 0x00, 0x00, 0x11, 0xde, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
+
7441 0x11, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xea,
+
7442 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xf0, 0x00, 0x00,
+
7443 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
+
7444 0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
+
7445 0x00, 0x00, 0x11, 0xfc, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00,
+
7446 0x12, 0x02, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x08,
+
7447 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00,
+
7448 0x12, 0x14, 0x00, 0x00, 0x00, 0x00, 0x12, 0x1a, 0x00, 0x00, 0x12, 0x26,
+
7449 0x00, 0x00, 0x00, 0x00, 0x12, 0x20, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
+
7450 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0,
+
7451 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c,
+
7452 0x00, 0x00, 0x15, 0xa4, 0x00, 0x00, 0x14, 0xc0, 0x1b, 0x02, 0x00, 0x00,
+
7453 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea,
+
7454 0x00, 0x00, 0x14, 0xc0, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
+
7455 0x00, 0x00, 0x12, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
+
7456 0x12, 0x32, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x38,
+
7457 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x3e, 0x00, 0x00,
+
7458 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x44, 0x00, 0x00, 0x18, 0x50,
+
7459 0x12, 0x74, 0x00, 0x00, 0x12, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
+
7460 0x00, 0x00, 0x12, 0x50, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
+
7461 0x12, 0x6e, 0x00, 0x00, 0x17, 0xea, 0x12, 0x74, 0x00, 0x00, 0x12, 0x56,
+
7462 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x5c, 0x00, 0x00,
+
7463 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x62, 0x00, 0x00, 0x18, 0x50,
+
7464 0x12, 0x74, 0x00, 0x00, 0x12, 0x68, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
+
7465 0x00, 0x00, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
+
7466 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x7a,
+
7467 0x00, 0x00, 0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x80, 0x00, 0x00,
+
7468 0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50,
+
7469 0x00, 0x00, 0x12, 0x9e, 0x12, 0x8c, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00,
+
7470 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e,
+
7471 0x12, 0x92, 0x12, 0x98, 0x15, 0xfe, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92,
+
7472 0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98,
+
7473 0x17, 0xea, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x16, 0x10,
+
7474 0x00, 0x00, 0x12, 0x9e, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7475 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
+
7476 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
+
7477 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x08, 0x00, 0x00,
+
7478 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
+
7479 0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7480 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
+
7481 0x1a, 0x26, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c,
+
7482 0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00,
+
7483 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4,
+
7484 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7485 0x14, 0xc0, 0x12, 0xa4, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7486 0x12, 0xaa, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x94,
+
7487 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xaa, 0x14, 0xae,
+
7488 0x12, 0xda, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xb0, 0x14, 0xae, 0x14, 0xb4,
+
7489 0x14, 0xba, 0x14, 0xc0, 0x12, 0xb6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7490 0x14, 0xc0, 0x12, 0xbc, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7491 0x12, 0xc2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xc8,
+
7492 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xce, 0x14, 0xae,
+
7493 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xd4, 0x14, 0xae, 0x14, 0xb4,
+
7494 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda, 0x14, 0xba,
+
7495 0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7496 0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
+
7497 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
+
7498 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda,
+
7499 0x14, 0xba, 0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7500 0x14, 0xc0, 0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7501 0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xec,
+
7502 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x88, 0x14, 0xae,
+
7503 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x16, 0x52, 0x14, 0xae, 0x14, 0xb4,
+
7504 0x14, 0xba, 0x14, 0xc0, 0x12, 0xf2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7505 0x14, 0xc0, 0x12, 0xf8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7506 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
+
7507 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
+
7508 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4,
+
7509 0x14, 0xba, 0x14, 0xc0, 0x13, 0x04, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7510 0x14, 0xc0, 0x13, 0x0a, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7511 0x13, 0x10, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1a, 0x2c,
+
7512 0x00, 0x00, 0x18, 0x38, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
+
7513 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
+
7514 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7515 0x00, 0x00, 0x1b, 0x08, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7516 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x13, 0x52,
+
7517 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
+
7518 0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50,
+
7519 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00,
+
7520 0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
+
7521 0x13, 0xb2, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x16,
+
7522 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x1c, 0x00, 0x00,
+
7523 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x22, 0x00, 0x00, 0x18, 0x2c,
+
7524 0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x13, 0x28, 0x00, 0x00,
+
7525 0x00, 0x00, 0x13, 0xb8, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
+
7526 0x13, 0xac, 0x00, 0x00, 0x13, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34,
+
7527 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00,
+
7528 0x13, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34, 0x00, 0x00, 0x13, 0x3a,
+
7529 0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
+
7530 0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c,
+
7531 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1b, 0x08,
+
7532 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00,
+
7533 0x13, 0x46, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
+
7534 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
+
7535 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x13, 0x4c,
+
7536 0x1a, 0x2c, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xd0,
+
7537 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x0e, 0x13, 0xa0,
+
7538 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x02, 0x13, 0xa0, 0x18, 0x50,
+
7539 0x13, 0xa6, 0x00, 0x00, 0x13, 0x52, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
+
7540 0x00, 0x00, 0x13, 0xd6, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
+
7541 0x1a, 0x2c, 0x13, 0xa0, 0x17, 0xea, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xe8,
+
7542 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xee, 0x13, 0xa0,
+
7543 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x7c,
+
7544 0x13, 0x82, 0x00, 0x00, 0x13, 0x58, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82,
+
7545 0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x64, 0x13, 0x82, 0x00, 0x00,
+
7546 0x13, 0x6a, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x70,
+
7547 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x76, 0x1b, 0x96,
+
7548 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x88, 0x13, 0xa0, 0x18, 0x50,
+
7549 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x3e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
+
7550 0x00, 0x00, 0x13, 0xf4, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
+
7551 0x13, 0x8e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1a, 0x2c,
+
7552 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x94, 0x13, 0xa0,
+
7553 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xfa, 0x13, 0xa0, 0x18, 0x50,
+
7554 0x13, 0xa6, 0x00, 0x00, 0x13, 0x9a, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
+
7555 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7556 0x13, 0xac, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb2,
+
7557 0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb8, 0x00, 0x00,
+
7558 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xbe, 0x00, 0x00, 0x13, 0xca,
+
7559 0x00, 0x00, 0x00, 0x00, 0x13, 0xc4, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00,
+
7560 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7561 0x1a, 0x2c, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
+
7562 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x02, 0x00, 0x00,
+
7563 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd6, 0x00, 0x00, 0x14, 0x00,
+
7564 0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+
7565 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x13, 0xe2, 0x00, 0x00, 0x00, 0x00,
+
7566 0x13, 0xe8, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xee,
+
7567 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xf4, 0x00, 0x00,
+
7568 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x14, 0x00,
+
7569 0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00,
+
7570 0x00, 0x00, 0x14, 0x06, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00,
+
7571 0x14, 0x0c, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x14, 0x12,
+
7572 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00,
+
7573 0x14, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x14, 0x84, 0x00, 0x00, 0x18, 0x50,
+
7574 0x14, 0x9c, 0x00, 0x00, 0x14, 0x24, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
+
7575 0x00, 0x00, 0x14, 0x2a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
+
7576 0x14, 0x30, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x2a,
+
7577 0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x30, 0x00, 0x00,
+
7578 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x36, 0x00, 0x00, 0x18, 0x50,
+
7579 0x14, 0x9c, 0x00, 0x00, 0x14, 0x3c, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
+
7580 0x00, 0x00, 0x14, 0x48, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
+
7581 0x14, 0x42, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x48,
+
7582 0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x4e, 0x00, 0x00,
+
7583 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x54, 0x00, 0x00, 0x18, 0x50,
+
7584 0x14, 0x9c, 0x00, 0x00, 0x14, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
+
7585 0x00, 0x00, 0x14, 0x60, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
+
7586 0x14, 0x66, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x84,
+
7587 0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x6c, 0x00, 0x00,
+
7588 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x72, 0x00, 0x00, 0x18, 0x50,
+
7589 0x14, 0x9c, 0x00, 0x00, 0x14, 0x78, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
+
7590 0x00, 0x00, 0x14, 0x7e, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
+
7591 0x14, 0x84, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x8a,
+
7592 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x90, 0x00, 0x00,
+
7593 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x96, 0x00, 0x00, 0x18, 0x50,
+
7594 0x14, 0x9c, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x14, 0xa2, 0x00, 0x00,
+
7595 0x00, 0x00, 0x14, 0xa8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
+
7596 0x14, 0xcc, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xd2,
+
7597 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xc6, 0x00, 0x00,
+
7598 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xcc, 0x00, 0x00, 0x14, 0xd8,
+
7599 0x00, 0x00, 0x00, 0x00, 0x14, 0xd2, 0x00, 0x00, 0x14, 0xd8, 0x00, 0x00,
+
7600 0x00, 0x00, 0x14, 0xde, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00,
+
7601 0x14, 0xe4, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
+
7602 0x14, 0xf0, 0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0,
+
7603 0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x17, 0xea,
+
7604 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x16, 0x10, 0x00, 0x00,
+
7605 0x14, 0xf6, 0x19, 0xde, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
+
7606 0x14, 0xfc, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08,
+
7607 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x02, 0x00, 0x00,
+
7608 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08, 0x00, 0x00, 0x15, 0x0e,
+
7609 0x15, 0x62, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
+
7610 0x00, 0x00, 0x15, 0x14, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
+
7611 0x15, 0x1a, 0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x20,
+
7612 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x26, 0x00, 0x00,
+
7613 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x2c, 0x00, 0x00, 0x16, 0xca,
+
7614 0x15, 0x62, 0x00, 0x00, 0x15, 0x32, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
+
7615 0x00, 0x00, 0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
+
7616 0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde,
+
7617 0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x3e, 0x00, 0x00,
+
7618 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x44, 0x00, 0x00, 0x16, 0xca,
+
7619 0x15, 0x62, 0x00, 0x00, 0x15, 0x4a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
+
7620 0x00, 0x00, 0x15, 0x50, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
+
7621 0x15, 0x56, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x5c,
+
7622 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde, 0x00, 0x00,
+
7623 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x1a, 0xc0, 0x00, 0x00, 0x16, 0xca,
+
7624 0x15, 0x62, 0x00, 0x00, 0x15, 0x68, 0x00, 0x00, 0x15, 0x6e, 0x15, 0x74,
+
7625 0x00, 0x00, 0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
+
7626 0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x80,
+
7627 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x86, 0x00, 0x00,
+
7628 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x8c, 0x00, 0x00, 0x15, 0x9e,
+
7629 0x00, 0x00, 0x00, 0x00, 0x15, 0x92, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00,
+
7630 0x00, 0x00, 0x15, 0x98, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
+
7631 0x15, 0xb0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0,
+
7632 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00,
+
7633 0x15, 0xa4, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xaa, 0x00, 0x00, 0x18, 0x50,
+
7634 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
+
7635 0x15, 0xb6, 0x15, 0xc2, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
+
7636 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x1a, 0x1a,
+
7637 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x06, 0x00, 0x00,
+
7638 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x90, 0x00, 0x00, 0x18, 0x50,
+
7639 0x15, 0xce, 0x00, 0x00, 0x17, 0x0c, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
+
7640 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
+
7641 0x15, 0xbc, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
+
7642 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2, 0x00, 0x00,
+
7643 0x17, 0xea, 0x15, 0xce, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
+
7644 0x15, 0xce, 0x00, 0x00, 0x17, 0x18, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
+
7645 0x00, 0x00, 0x17, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
+
7646 0x1a, 0xc6, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
+
7647 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc8, 0x00, 0x00,
+
7648 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xd4, 0x00, 0x00, 0x15, 0xe6,
+
7649 0x00, 0x00, 0x00, 0x00, 0x15, 0xda, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00,
+
7650 0x00, 0x00, 0x15, 0xe0, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00, 0x00, 0x00,
+
7651 0x15, 0xec, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x15, 0xec,
+
7652 0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x15, 0xf2, 0x00, 0x00,
+
7653 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50,
+
7654 0x00, 0x00, 0x16, 0x88, 0x15, 0xf8, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00,
+
7655 0x16, 0x88, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00, 0x16, 0x88,
+
7656 0x16, 0x04, 0x16, 0x0a, 0x15, 0xfe, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04,
+
7657 0x16, 0x0a, 0x17, 0xea, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04, 0x16, 0x0a,
+
7658 0x16, 0x10, 0x00, 0x00, 0x16, 0x88, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50,
+
7659 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
+
7660 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00,
+
7661 0x16, 0x16, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1c,
+
7662 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
+
7663 0x16, 0x22, 0x00, 0x00, 0x00, 0x00, 0x16, 0x28, 0x00, 0x00, 0x17, 0xf6,
+
7664 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x2e, 0x00, 0x00,
+
7665 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x34, 0x00, 0x00, 0x00, 0x00,
+
7666 0x16, 0x3a, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
+
7667 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x8a, 0x16, 0x7c,
+
7668 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x06, 0x16, 0x7c, 0x18, 0x50,
+
7669 0x16, 0x82, 0x16, 0x88, 0x17, 0x90, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7670 0x16, 0x88, 0x16, 0x40, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
+
7671 0x17, 0x90, 0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x16, 0x46,
+
7672 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x4c, 0x16, 0x7c,
+
7673 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x52, 0x16, 0x7c, 0x18, 0x50,
+
7674 0x16, 0x82, 0x16, 0x88, 0x17, 0x0c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7675 0x16, 0x88, 0x17, 0x96, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
+
7676 0x17, 0x60, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x58,
+
7677 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c,
+
7678 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c, 0x18, 0x50,
+
7679 0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7680 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
+
7681 0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a,
+
7682 0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c,
+
7683 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50,
+
7684 0x16, 0x82, 0x16, 0x88, 0x17, 0x6c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7685 0x16, 0x88, 0x17, 0x54, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
+
7686 0x17, 0x5a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0xc6,
+
7687 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x5e, 0x16, 0x7c,
+
7688 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x64, 0x16, 0x7c, 0x18, 0x50,
+
7689 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7690 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
+
7691 0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x6c,
+
7692 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x6a, 0x16, 0x7c,
+
7693 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x70, 0x16, 0x7c, 0x18, 0x50,
+
7694 0x16, 0x82, 0x16, 0x88, 0x16, 0x76, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
+
7695 0x16, 0x88, 0x16, 0x8e, 0x00, 0x00, 0x16, 0x94, 0x00, 0x00, 0x00, 0x00,
+
7696 0x16, 0xc4, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9a,
+
7697 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xa0, 0x00, 0x00,
+
7698 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xa6,
+
7699 0x00, 0x00, 0x00, 0x00, 0x16, 0xac, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00,
+
7700 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xb2, 0x00, 0x00, 0x00, 0x00,
+
7701 0x16, 0xb8, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4,
+
7702 0x00, 0x00, 0x16, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00,
+
7703 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2,
+
7704 0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00,
+
7705 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00, 0x17, 0x00,
+
7706 0x16, 0xee, 0x16, 0xf4, 0x16, 0xd0, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee,
+
7707 0x16, 0xf4, 0x16, 0xd6, 0x00, 0x00, 0x17, 0x00, 0x16, 0xdc, 0x16, 0xf4,
+
7708 0x16, 0xe2, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe8,
+
7709 0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xfa, 0x00, 0x00,
+
7710 0x17, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
+
7711 0x17, 0x8a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x06,
+
7712 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x90, 0x17, 0x78,
+
7713 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x0c, 0x17, 0x78, 0x17, 0x7e,
+
7714 0x17, 0x84, 0x00, 0x00, 0x17, 0x96, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
+
7715 0x00, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x12, 0x17, 0x84, 0x00, 0x00,
+
7716 0x17, 0x9c, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x18,
+
7717 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42,
+
7718 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x1e, 0x17, 0x42, 0x17, 0x48,
+
7719 0x17, 0x4e, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42, 0x17, 0x2a, 0x17, 0x4e,
+
7720 0x00, 0x00, 0x17, 0x30, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00,
+
7721 0x17, 0x36, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x3c,
+
7722 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x54, 0x17, 0x78,
+
7723 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x5a, 0x17, 0x78, 0x17, 0x7e,
+
7724 0x17, 0x84, 0x00, 0x00, 0x1a, 0xc6, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
+
7725 0x00, 0x00, 0x17, 0x60, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
+
7726 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x66,
+
7727 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x6c, 0x17, 0x78,
+
7728 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x72, 0x17, 0x78, 0x17, 0x7e,
+
7729 0x17, 0x84, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7730 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7731 0x17, 0x8a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x90,
+
7732 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x96, 0x00, 0x00,
+
7733 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
+
7734 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7735 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
+
7736 0x17, 0xa2, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xa8,
+
7737 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x90, 0x00, 0x00,
+
7738 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xae, 0x00, 0x00, 0x17, 0xd8,
+
7739 0x00, 0x00, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xba, 0x00, 0x00,
+
7740 0x00, 0x00, 0x17, 0xc0, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
+
7741 0x17, 0xc6, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xcc,
+
7742 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xd2, 0x00, 0x00,
+
7743 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba, 0x00, 0x00, 0x18, 0x50,
+
7744 0x00, 0x00, 0x00, 0x00, 0x17, 0xde, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
+
7745 0x00, 0x00, 0x17, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7746 0x19, 0xba, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba,
+
7747 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
+
7748 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e,
+
7749 0x00, 0x00, 0x00, 0x00, 0x17, 0xfc, 0x00, 0x00, 0x18, 0x02, 0x00, 0x00,
+
7750 0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
+
7751 0x18, 0x14, 0x18, 0x1a, 0x18, 0x20, 0x00, 0x00, 0x18, 0x26, 0x1a, 0x2c,
+
7752 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00,
+
7753 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00, 0x18, 0x38,
+
7754 0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x18, 0x44, 0x00, 0x00,
+
7755 0x00, 0x00, 0x18, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
+
7756 0x18, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x5c,
+
7757 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+
7758 0x18, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x18, 0x03, 0x60,
+
7759 0x00, 0x01, 0x00, 0xdd, 0x03, 0xbe, 0x00, 0x01, 0x00, 0xf8, 0x03, 0xa0,
+
7760 0x00, 0x01, 0x00, 0xf0, 0x03, 0x62, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1e,
+
7761 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1b, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x93,
+
7762 0x00, 0x01, 0x00, 0xfa, 0x03, 0x98, 0x00, 0x01, 0x01, 0x93, 0x00, 0x00,
+
7763 0x00, 0x01, 0x01, 0x0e, 0x03, 0x09, 0x00, 0x01, 0x01, 0x0e, 0x02, 0xe8,
+
7764 0x00, 0x01, 0x01, 0x16, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xaa, 0x02, 0xda,
+
7765 0x00, 0x01, 0x01, 0x0d, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xdc, 0x03, 0x09,
+
7766 0x00, 0x01, 0x00, 0xf8, 0xff, 0x51, 0x00, 0x01, 0x00, 0xdc, 0x02, 0x6f,
+
7767 0x00, 0x01, 0x01, 0x05, 0x02, 0xe8, 0x00, 0x01, 0x01, 0x05, 0x03, 0x09,
+
7768 0x00, 0x01, 0x01, 0x05, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x05, 0x03, 0x1e,
+
7769 0x00, 0x01, 0x01, 0xa1, 0x02, 0xda, 0x00, 0x01, 0x01, 0x05, 0x03, 0xa8,
+
7770 0x00, 0x01, 0x01, 0x05, 0x03, 0x1b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x93,
+
7771 0x00, 0x01, 0x00, 0xf5, 0x03, 0x20, 0x00, 0x01, 0x01, 0x04, 0x03, 0x02,
+
7772 0x00, 0x01, 0x01, 0x04, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf2, 0x03, 0x1c,
+
7773 0x00, 0x01, 0x01, 0x0d, 0x03, 0x4b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x2c,
+
7774 0x00, 0x01, 0x01, 0x05, 0x03, 0x07, 0x00, 0x01, 0x01, 0x05, 0x03, 0x80,
+
7775 0x00, 0x01, 0x00, 0xf2, 0x03, 0xb4, 0x00, 0x01, 0x01, 0x05, 0x02, 0x6f,
+
7776 0x00, 0x01, 0x01, 0x05, 0x03, 0x0d, 0x00, 0x01, 0x01, 0xb5, 0x00, 0x08,
+
7777 0x00, 0x01, 0x01, 0x11, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x11, 0x03, 0x09,
+
7778 0x00, 0x01, 0x01, 0xac, 0x02, 0xda, 0x00, 0x01, 0x01, 0x11, 0x02, 0x6f,
+
7779 0x00, 0x01, 0x01, 0x0a, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x10, 0x02, 0xe4,
+
7780 0x00, 0x01, 0x01, 0x11, 0x03, 0x07, 0x00, 0x01, 0x01, 0x0a, 0x00, 0x00,
+
7781 0x00, 0x01, 0x00, 0xf1, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x0e,
+
7782 0x00, 0x01, 0x01, 0x8d, 0x02, 0xda, 0x00, 0x01, 0x00, 0xe1, 0x03, 0x20,
+
7783 0x00, 0x01, 0x00, 0xf0, 0x03, 0x02, 0x00, 0x01, 0x00, 0xf0, 0x03, 0x7b,
+
7784 0x00, 0x01, 0x00, 0xf0, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xde, 0x03, 0x1c,
+
7785 0x00, 0x01, 0x00, 0xf9, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x2c,
+
7786 0x00, 0x01, 0x00, 0xf1, 0x03, 0x07, 0x00, 0x01, 0x00, 0xf1, 0x02, 0x6f,
+
7787 0x00, 0x01, 0x01, 0x62, 0x00, 0x00, 0x00, 0x01, 0x01, 0x46, 0x02, 0x6f,
+
7788 0x00, 0x01, 0x01, 0xe2, 0x02, 0xda, 0x00, 0x01, 0x00, 0xef, 0x00, 0x00,
+
7789 0x00, 0x01, 0x00, 0xd2, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xd2, 0x02, 0x6f,
+
7790 0x00, 0x01, 0x00, 0xbb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x38,
+
7791 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0f, 0x00, 0x01, 0x01, 0x96, 0x02, 0xdb,
+
7792 0x00, 0x01, 0x00, 0xfa, 0x03, 0xa9, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1c,
+
7793 0x00, 0x01, 0x00, 0xfa, 0x03, 0x94, 0x00, 0x01, 0x00, 0xea, 0x03, 0x21,
+
7794 0x00, 0x01, 0x00, 0xf9, 0x03, 0x03, 0x00, 0x01, 0x00, 0xf9, 0x03, 0x9c,
+
7795 0x00, 0x01, 0x00, 0xfa, 0x03, 0x7e, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x51,
+
7796 0x00, 0x01, 0x00, 0xe7, 0x03, 0x1d, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4c,
+
7797 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2e, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x81,
+
7798 0x00, 0x01, 0x00, 0xe7, 0x03, 0xb5, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe9,
+
7799 0x00, 0x01, 0x00, 0xfa, 0x03, 0x87, 0x00, 0x01, 0x00, 0xf9, 0x03, 0xa2,
+
7800 0x00, 0x01, 0x00, 0xf5, 0x03, 0x9c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x5d,
+
7801 0x00, 0x01, 0x01, 0x03, 0x03, 0x09, 0x00, 0x01, 0x01, 0x02, 0x03, 0x7e,
+
7802 0x00, 0x01, 0x00, 0xf9, 0xff, 0x4c, 0x00, 0x01, 0x00, 0xf9, 0xfe, 0xed,
+
7803 0x00, 0x01, 0x01, 0x02, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf9, 0xff, 0x51,
+
7804 0x00, 0x01, 0x00, 0xfa, 0x02, 0x70, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x4c,
+
7805 0x00, 0x01, 0x00, 0xf4, 0x01, 0x38, 0x00, 0x01, 0x00, 0xea, 0x03, 0x20,
+
7806 0x00, 0x01, 0x00, 0xe0, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xe0, 0x02, 0x6f,
+
7807 0x00, 0x01, 0x00, 0xe0, 0xff, 0x51, 0x00, 0x01, 0x00, 0xcd, 0x03, 0x1c,
+
7808 0x00, 0x01, 0x00, 0xe8, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xe0, 0x03, 0x0d,
+
7809 0x00, 0x01, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x01, 0x01, 0xa0, 0x00, 0x0f,
+
7810 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2d, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x9b,
+
7811 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x86,
+
7812 0x00, 0x01, 0x01, 0xc8, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x27, 0x00, 0x0a,
+
7813 0x00, 0x01, 0x01, 0x03, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe8,
+
7814 0x00, 0x01, 0x01, 0x9f, 0x02, 0xda, 0x00, 0x01, 0x01, 0x01, 0x03, 0x02,
+
7815 0x00, 0x01, 0x00, 0xf0, 0x03, 0x1c, 0x00, 0x01, 0x00, 0xfd, 0x00, 0x00,
+
7816 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x02,
+
7817 0x00, 0x01, 0x00, 0xf9, 0x02, 0xe4, 0x00, 0x01, 0x01, 0x03, 0xff, 0x51,
+
7818 0x00, 0x01, 0x00, 0xe7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4b,
+
7819 0x00, 0x01, 0x00, 0xfa, 0x03, 0x07, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0d,
+
7820 0x00, 0x01, 0x01, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0xe8,
+
7821 0x00, 0x01, 0x01, 0x04, 0x03, 0x09, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe4,
+
7822 0x00, 0x01, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0d, 0xff, 0x51,
+
7823 0x00, 0x01, 0x01, 0x07, 0x02, 0x6a, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x8b,
+
7824 0x00, 0x01, 0x00, 0xf8, 0x03, 0x23, 0x00, 0x01, 0x00, 0xf6, 0x03, 0x5b,
+
7825 0x00, 0x01, 0x00, 0xf8, 0x03, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb3,
+
7826 0x00, 0x01, 0x01, 0x8e, 0x02, 0x37, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xd2,
+
7827 0x00, 0x01, 0x00, 0xf8, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x08,
+
7828 0x00, 0x01, 0x00, 0xe8, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x60,
+
7829 0x00, 0x01, 0x00, 0xd2, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x00, 0x02, 0xa7,
+
7830 0x00, 0x01, 0x00, 0xf8, 0x02, 0x88, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x63,
+
7831 0x00, 0x01, 0x00, 0xf8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb9,
+
7832 0x00, 0x01, 0x01, 0x07, 0x03, 0x58, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x7f,
+
7833 0x00, 0x01, 0x01, 0x7d, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0x00, 0x00,
+
7834 0x00, 0x01, 0x00, 0xfd, 0x01, 0x3b, 0x00, 0x01, 0x01, 0x84, 0x02, 0x46,
+
7835 0x00, 0x01, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1d, 0x00, 0x0b,
+
7836 0x00, 0x01, 0x00, 0xfa, 0x01, 0x38, 0x00, 0x01, 0x01, 0x1b, 0x02, 0x5c,
+
7837 0x00, 0x01, 0x01, 0x1b, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x2a, 0x02, 0x6a,
+
7838 0x00, 0x01, 0x01, 0x1b, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xb0, 0x02, 0x37,
+
7839 0x00, 0x01, 0x01, 0x1b, 0x02, 0x60, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x00,
+
7840 0x00, 0x01, 0x01, 0xd6, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x68, 0x02, 0x28,
+
7841 0x00, 0x01, 0x01, 0x13, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x04, 0x02, 0x5c,
+
7842 0x00, 0x01, 0x01, 0x04, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x14, 0xff, 0x4c,
+
7843 0x00, 0x01, 0x01, 0x04, 0x02, 0xb3, 0x00, 0x01, 0x01, 0x99, 0x02, 0x37,
+
7844 0x00, 0x01, 0x01, 0x04, 0x02, 0xd2, 0x00, 0x01, 0x01, 0x04, 0x03, 0x2c,
+
7845 0x00, 0x01, 0x01, 0x04, 0x03, 0x08, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7c,
+
7846 0x00, 0x01, 0x01, 0x04, 0x02, 0x60, 0x00, 0x01, 0x00, 0xde, 0x02, 0xa3,
+
7847 0x00, 0x01, 0x01, 0x0b, 0x02, 0xa7, 0x00, 0x01, 0x01, 0x04, 0x02, 0x88,
+
7848 0x00, 0x01, 0x01, 0x04, 0x02, 0x63, 0x00, 0x01, 0x01, 0x13, 0x03, 0x02,
+
7849 0x00, 0x01, 0x00, 0xde, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x3b, 0x00, 0x09,
+
7850 0x00, 0x01, 0x00, 0xe0, 0x01, 0xcc, 0x00, 0x01, 0x00, 0xf0, 0x00, 0x01,
+
7851 0x00, 0x01, 0x00, 0xb9, 0x01, 0xc3, 0x00, 0x01, 0x00, 0xe4, 0x01, 0xcb,
+
7852 0x00, 0x01, 0x00, 0xe4, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x79, 0x02, 0x37,
+
7853 0x00, 0x01, 0x00, 0xe4, 0x03, 0x2a, 0x00, 0x01, 0x00, 0xe4, 0x02, 0x60,
+
7854 0x00, 0x01, 0x00, 0xe4, 0x02, 0x63, 0x00, 0x01, 0x00, 0xf0, 0xff, 0x5d,
+
7855 0x00, 0x01, 0x00, 0xfa, 0xff, 0x41, 0x00, 0x01, 0x01, 0x12, 0x03, 0x06,
+
7856 0x00, 0x01, 0x00, 0x76, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x84, 0x02, 0x26,
+
7857 0x00, 0x01, 0x01, 0x0a, 0x02, 0xff, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x60,
+
7858 0x00, 0x01, 0x00, 0xfa, 0x02, 0x61, 0x00, 0x01, 0x01, 0x59, 0x00, 0x00,
+
7859 0x00, 0x01, 0x01, 0x44, 0x02, 0x60, 0x00, 0x01, 0x01, 0x44, 0x01, 0xcb,
+
7860 0x00, 0x01, 0x01, 0xda, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x42,
+
7861 0x00, 0x01, 0x00, 0x69, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x6b, 0x01, 0xcb,
+
7862 0x00, 0x01, 0x00, 0xfa, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0xed,
+
7863 0x00, 0x01, 0x00, 0xfa, 0x02, 0x9b, 0x00, 0x01, 0x01, 0xe0, 0x01, 0xcb,
+
7864 0x00, 0x01, 0x00, 0xfa, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x17, 0x02, 0x6a,
+
7865 0x00, 0x01, 0x01, 0x08, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x04, 0xfe, 0xed,
+
7866 0x00, 0x01, 0x01, 0x08, 0x02, 0x60, 0x00, 0x01, 0x01, 0x04, 0xff, 0x51,
+
7867 0x00, 0x01, 0x01, 0x04, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x08, 0x02, 0x7f,
+
7868 0x00, 0x01, 0x00, 0xfa, 0x02, 0xb3, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xd2,
+
7869 0x00, 0x01, 0x00, 0xfb, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x08,
+
7870 0x00, 0x01, 0x00, 0xfa, 0x02, 0xf8, 0x00, 0x01, 0x01, 0x09, 0x03, 0x02,
+
7871 0x00, 0x01, 0x00, 0xd4, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x0a, 0x03, 0x1e,
+
7872 0x00, 0x01, 0x00, 0xfb, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x17,
+
7873 0x00, 0x01, 0x01, 0x68, 0x01, 0xb6, 0x00, 0x01, 0x01, 0x1f, 0x00, 0x0f,
+
7874 0x00, 0x01, 0x00, 0xfa, 0x00, 0xe6, 0x00, 0x01, 0x01, 0x0e, 0x01, 0xcb,
+
7875 0x00, 0x01, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x01, 0x01, 0x2f, 0x02, 0x6a,
+
7876 0x00, 0x01, 0x01, 0x20, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x14, 0xfe, 0xed,
+
7877 0x00, 0x01, 0x01, 0x10, 0x02, 0x7c, 0x00, 0x01, 0x01, 0x14, 0xff, 0x51,
+
7878 0x00, 0x01, 0x01, 0x20, 0x02, 0x88, 0x00, 0x01, 0x01, 0x14, 0xff, 0x5a,
+
7879 0x00, 0x01, 0x01, 0x20, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x14, 0x00, 0x00,
+
7880 0x00, 0x01, 0x01, 0x02, 0xff, 0x4c, 0x00, 0x01, 0x01, 0x02, 0xfe, 0xed,
+
7881 0x00, 0x01, 0x00, 0xed, 0x02, 0xdd, 0x00, 0x01, 0x01, 0x02, 0x00, 0x00,
+
7882 0x00, 0x01, 0x01, 0x02, 0xff, 0x51, 0x00, 0x01, 0x00, 0xec, 0x02, 0x48,
+
7883 0x00, 0x01, 0x01, 0x34, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x02, 0xff, 0x5a,
+
7884 0x00, 0x01, 0x00, 0xd4, 0x01, 0x34, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x8b,
+
7885 0x00, 0x01, 0x00, 0xea, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xe5, 0xff, 0x51,
+
7886 0x00, 0x01, 0x01, 0x02, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xf7, 0x02, 0x6a,
+
7887 0x00, 0x01, 0x00, 0xe8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xd6, 0xff, 0x51,
+
7888 0x00, 0x01, 0x00, 0xc2, 0x02, 0xa3, 0x00, 0x01, 0x00, 0xf0, 0x02, 0xa7,
+
7889 0x00, 0x01, 0x00, 0xe0, 0x02, 0x62, 0x00, 0x01, 0x01, 0x7c, 0x01, 0xcb,
+
7890 0x00, 0x01, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x01, 0x01, 0x53, 0x00, 0x00,
+
7891 0x00, 0x01, 0x01, 0x1a, 0x02, 0xbe, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x88,
+
7892 0x00, 0x01, 0x00, 0xfb, 0x02, 0xf8, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xb9,
+
7893 0x00, 0x01, 0x00, 0xfa, 0x02, 0x7f, 0x00, 0x01, 0x01, 0x09, 0x03, 0x1e,
+
7894 0x00, 0x01, 0x01, 0xb2, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xe5, 0x00, 0x00,
+
7895 0x00, 0x01, 0x01, 0x74, 0x00, 0x00, 0x00, 0x01, 0x01, 0x09, 0x02, 0x6a,
+
7896 0x00, 0x01, 0x01, 0x90, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x60,
+
7897 0x00, 0x01, 0x00, 0xd4, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x0e, 0x02, 0x6a,
+
7898 0x00, 0x01, 0x01, 0x94, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x60,
+
7899 0x00, 0x01, 0x00, 0xfe, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x77, 0xff, 0x51,
+
7900 0x00, 0x01, 0x00, 0xd8, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x06, 0x02, 0xa7,
+
7901 0x00, 0x01, 0x00, 0xfe, 0x02, 0x63, 0x00, 0x01, 0x00, 0xff, 0x02, 0x7f,
+
7902 0x00, 0x01, 0x01, 0x77, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6a,
+
7903 0x00, 0x01, 0x00, 0xfb, 0x02, 0x5c, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x51,
+
7904 0x00, 0x01, 0x01, 0x08, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x04, 0x00, 0x00,
+
7905 0x00, 0x01, 0x01, 0x1b, 0x01, 0xf6, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x2b,
+
7906 0x00, 0x01, 0x01, 0x0e, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x16, 0x00, 0x00,
+
7907 0x00, 0x01, 0x00, 0xe9, 0x01, 0xda, 0x00, 0x01, 0x01, 0x9a, 0x01, 0xda,
+
7908 0x00, 0x01, 0x00, 0xe9, 0x00, 0x6d, 0x00, 0x01, 0x01, 0x42, 0x02, 0x24,
+
7909 0x00, 0x01, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x6f,
+
7910 0x00, 0x01, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0x6f,
+
7911 0x00, 0x01, 0x00, 0x87, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0x02, 0x6f,
+
7912 0x00, 0x01, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7b,
+
7913 0x00, 0x01, 0x00, 0xe5, 0x02, 0x6a, 0x00, 0x01, 0x00, 0x51, 0x02, 0xce,
+
7914 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01,
+
7915 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x54, 0x00, 0x01,
+
7916 0x00, 0x06, 0x03, 0x8a, 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f,
+
7917 0x03, 0x90, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x20,
+
7918 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x32,
+
7919 0x00, 0x00, 0x00, 0x32, 0x00, 0x01, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x01,
+
7920 0x00, 0xfc, 0x00, 0x00, 0x00, 0x01, 0x00, 0xed, 0x00, 0x00, 0x00, 0x01,
+
7921 0x01, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x06,
+
7922 0x00, 0x0e, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2c,
+
7923 0x00, 0x01, 0x00, 0xf1, 0xff, 0x51, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x5a,
+
7924 0x00, 0x01, 0x00, 0xed, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x0f, 0xff, 0x4c,
+
7925 0x00, 0x01, 0x00, 0xf8, 0xff, 0x41, 0x00, 0x01, 0x00, 0xf8, 0xff, 0x5a,
+
7926 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x01,
+
7927 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x02,
+
7928 0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
+
7929 0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x25, 0x00, 0x00,
+
7930 0x00, 0x96, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00,
+
7931 0x00, 0xa8, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00,
+
7932 0x00, 0xf0, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
+
7933 0x00, 0xba, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00,
+
7934 0x00, 0xc6, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00,
+
7935 0x01, 0x14, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00,
+
7936 0x00, 0xd8, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00,
+
7937 0x01, 0x08, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00,
+
7938 0x01, 0x02, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00,
+
7939 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
+
7940 0x00, 0xf0, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00,
+
7941 0x01, 0x02, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x0e, 0x00, 0x00,
+
7942 0x01, 0x14, 0x00, 0x01, 0x00, 0xfb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xff,
+
7943 0x01, 0xcb, 0x00, 0x01, 0x01, 0x05, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x09,
+
7944 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf3, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf9,
+
7945 0x01, 0xcc, 0x00, 0x01, 0x01, 0x04, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xed,
+
7946 0x01, 0xcc, 0x00, 0x01, 0x01, 0x0b, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xec,
+
7947 0x01, 0xd3, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x0d,
+
7948 0x02, 0x6f, 0x00, 0x01, 0x01, 0x20, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x02,
+
7949 0x01, 0xcb, 0x00, 0x01, 0x01, 0x06, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x00,
+
7950 0x01, 0xcb, 0x00, 0x01, 0x00, 0xfa, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x01,
+
7951 0x01, 0xcb, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfa,
+
7952 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfb,
+
7953 0x02, 0x6f, 0x00, 0x25, 0x00, 0x4c, 0x00, 0x52, 0x00, 0x58, 0x00, 0x5e,
+
7954 0x00, 0x64, 0x00, 0x6a, 0x00, 0x70, 0x00, 0x76, 0x00, 0x7c, 0x00, 0x82,
+
7955 0x00, 0x88, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x9a, 0x00, 0xa0, 0x00, 0xa6,
+
7956 0x00, 0xac, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xbe, 0x00, 0xc4, 0x00, 0xca,
+
7957 0x00, 0xd0, 0x00, 0xd6, 0x00, 0xdc, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe8,
+
7958 0x00, 0xee, 0x00, 0xf4, 0x00, 0xfa, 0x01, 0x00, 0x01, 0x06, 0x01, 0x0c,
+
7959 0x01, 0x12, 0x01, 0x18, 0x01, 0x1e, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x60,
+
7960 0x00, 0x01, 0x00, 0xff, 0x02, 0x60, 0x00, 0x01, 0x00, 0xdf, 0x02, 0xa3,
+
7961 0x00, 0x01, 0x01, 0x18, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x13, 0x02, 0xbe,
+
7962 0x00, 0x01, 0x01, 0x8f, 0x02, 0x38, 0x00, 0x01, 0x01, 0x00, 0x02, 0x5c,
+
7963 0x00, 0x01, 0x01, 0x02, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb9,
+
7964 0x00, 0x01, 0x01, 0x04, 0x02, 0x7f, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x63,
+
7965 0x00, 0x01, 0x00, 0xf5, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x7c,
+
7966 0x00, 0x01, 0x01, 0x00, 0x02, 0x88, 0x00, 0x01, 0x00, 0xec, 0x03, 0x32,
+
7967 0x00, 0x01, 0x00, 0xf9, 0x03, 0x02, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe4,
+
7968 0x00, 0x01, 0x00, 0xf7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x0d, 0x02, 0xe8,
+
7969 0x00, 0x01, 0x01, 0x20, 0x03, 0x2d, 0x00, 0x01, 0x01, 0x96, 0x02, 0xda,
+
7970 0x00, 0x01, 0x00, 0xfa, 0x03, 0x09, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0e,
+
7971 0x00, 0x01, 0x00, 0xfb, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x0d,
+
7972 0x00, 0x01, 0x01, 0x02, 0x03, 0x23, 0x00, 0x01, 0x01, 0x00, 0x03, 0x5b,
+
7973 0x00, 0x01, 0x01, 0x06, 0x03, 0x0b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb3,
+
7974 0x00, 0x01, 0x01, 0x00, 0x02, 0xd2, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2c,
+
7975 0x00, 0x01, 0x01, 0x01, 0x03, 0x08, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x1e,
+
7976 0x00, 0x01, 0x00, 0xfa, 0x03, 0xa8, 0x00, 0x01, 0x00, 0xfe, 0x03, 0x1b,
+
7977 0x00, 0x01, 0x00, 0xfb, 0x03, 0x93, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01,
+
7978 0x00, 0x0a, 0x00, 0x02, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01,
+
7979 0x00, 0x14, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x02, 0x03, 0x89, 0x03, 0xaa,
+
7980 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x02,
+
7981 0x00, 0x06, 0x00, 0x0c, 0x00, 0x01, 0x01, 0x88, 0x01, 0xcc, 0x00, 0x01,
+
7982 0x01, 0x9a, 0x02, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x01, 0xc8,
+
7983 0x02, 0xf8, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
+
7984 0x74, 0x6e, 0x00, 0x36, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+
7985 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
+
7986 0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
+
7987 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x34, 0x00, 0x08,
+
7988 0x41, 0x5a, 0x45, 0x20, 0x00, 0x58, 0x43, 0x41, 0x54, 0x20, 0x00, 0x7e,
+
7989 0x43, 0x52, 0x54, 0x20, 0x00, 0xa4, 0x4b, 0x41, 0x5a, 0x20, 0x00, 0xca,
+
7990 0x4d, 0x4f, 0x4c, 0x20, 0x00, 0xf0, 0x52, 0x4f, 0x4d, 0x20, 0x01, 0x16,
+
7991 0x54, 0x41, 0x54, 0x20, 0x01, 0x3c, 0x54, 0x52, 0x4b, 0x20, 0x01, 0x62,
+
7992 0x00, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03,
+
7993 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
+
7994 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
+
7995 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
+
7996 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x10,
+
7997 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
+
7998 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
+
7999 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0f,
+
8000 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
+
8001 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00,
+
8002 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x09,
+
8003 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14,
+
8004 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10,
+
8005 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06,
+
8006 0x00, 0x0a, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
+
8007 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff,
+
8008 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
+
8009 0x00, 0x06, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12,
+
8010 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00,
+
8011 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04,
+
8012 0x00, 0x05, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
+
8013 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
+
8014 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
+
8015 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x0f, 0x00, 0x10,
+
8016 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
+
8017 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
+
8018 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x0f,
+
8019 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
+
8020 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x61, 0x61, 0x6c, 0x74, 0x00, 0x92,
+
8021 0x63, 0x61, 0x73, 0x65, 0x00, 0x9a, 0x63, 0x63, 0x6d, 0x70, 0x00, 0xa0,
+
8022 0x63, 0x63, 0x6d, 0x70, 0x00, 0xa8, 0x64, 0x6c, 0x69, 0x67, 0x00, 0xb2,
+
8023 0x64, 0x6e, 0x6f, 0x6d, 0x00, 0xb8, 0x66, 0x72, 0x61, 0x63, 0x00, 0xbe,
+
8024 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xc8, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xce,
+
8025 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xd4, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xda,
+
8026 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe0, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe6,
+
8027 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xec, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xf2,
+
8028 0x6e, 0x75, 0x6d, 0x72, 0x00, 0xf8, 0x6f, 0x72, 0x64, 0x6e, 0x00, 0xfe,
+
8029 0x73, 0x61, 0x6c, 0x74, 0x01, 0x06, 0x73, 0x73, 0x30, 0x31, 0x01, 0x0c,
+
8030 0x73, 0x73, 0x30, 0x32, 0x01, 0x12, 0x73, 0x73, 0x30, 0x33, 0x01, 0x18,
+
8031 0x73, 0x75, 0x62, 0x73, 0x01, 0x1e, 0x73, 0x75, 0x70, 0x73, 0x01, 0x24,
+
8032 0x7a, 0x65, 0x72, 0x6f, 0x01, 0x2a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
+
8033 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x02,
+
8034 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x05,
+
8035 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01,
+
8036 0x00, 0x16, 0x00, 0x00, 0x00, 0x03, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19,
+
8037 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09,
+
8038 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e,
+
8039 0x00, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0c,
+
8040 0x00, 0x00, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10,
+
8041 0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1c,
+
8042 0x00, 0x1e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01,
+
8043 0x00, 0x23, 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01,
+
8044 0x00, 0x25, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01,
+
8045 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0x00, 0x26, 0x00, 0x4e,
+
8046 0x01, 0x28, 0x01, 0xfe, 0x02, 0x88, 0x02, 0x88, 0x02, 0xf8, 0x05, 0x8e,
+
8047 0x05, 0x8e, 0x03, 0x36, 0x03, 0xb2, 0x03, 0xf0, 0x03, 0xf0, 0x04, 0x04,
+
8048 0x04, 0x04, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26,
+
8049 0x04, 0x3a, 0x04, 0x48, 0x04, 0x9e, 0x04, 0x7c, 0x04, 0x8a, 0x04, 0x9e,
+
8050 0x04, 0xac, 0x04, 0xea, 0x04, 0xea, 0x05, 0x02, 0x05, 0x4a, 0x05, 0x6c,
+
8051 0x05, 0x8e, 0x05, 0xee, 0x06, 0x5a, 0x06, 0x72, 0x06, 0x72, 0x06, 0x90,
+
8052 0x06, 0xb6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
+
8053 0x00, 0x6a, 0x00, 0x32, 0x01, 0xd5, 0x01, 0xd6, 0x00, 0xad, 0x00, 0xb7,
+
8054 0x01, 0xd5, 0x01, 0x4a, 0x01, 0xd6, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xf0,
+
8055 0x01, 0xf1, 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6,
+
8056 0x01, 0xf7, 0x01, 0xf8, 0x02, 0x29, 0x02, 0x2a, 0x02, 0x0d, 0x02, 0x45,
+
8057 0x02, 0x46, 0x02, 0x6b, 0x02, 0x88, 0x02, 0x89, 0x03, 0xa0, 0x03, 0xa1,
+
8058 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7,
+
8059 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad,
+
8060 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
+
8061 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf, 0x03, 0xc0, 0x00, 0x01, 0x00, 0x32,
+
8062 0x00, 0x01, 0x00, 0x78, 0x00, 0xab, 0x00, 0xb6, 0x00, 0xe8, 0x01, 0x49,
+
8063 0x01, 0x63, 0x01, 0x98, 0x01, 0xa2, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc,
+
8064 0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
+
8065 0x02, 0x22, 0x02, 0x24, 0x02, 0x27, 0x02, 0x43, 0x02, 0x44, 0x02, 0x6d,
+
8066 0x02, 0x78, 0x02, 0x7a, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d,
+
8067 0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83,
+
8068 0x03, 0x89, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97,
+
8069 0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c, 0x03, 0xb9, 0x03, 0xba,
+
8070 0x03, 0xbb, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
+
8071 0x00, 0x01, 0x00, 0xac, 0x00, 0x0f, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x38,
+
8072 0x00, 0x42, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x60, 0x00, 0x6a, 0x00, 0x74,
+
8073 0x00, 0x7e, 0x00, 0x88, 0x00, 0x92, 0x00, 0x98, 0x00, 0x9e, 0x00, 0xa6,
+
8074 0x00, 0x02, 0x01, 0x3a, 0x01, 0x41, 0x00, 0x06, 0x01, 0xe3, 0x01, 0xe4,
+
8075 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x04, 0x01, 0xe6,
+
8076 0x01, 0xf0, 0x01, 0xfa, 0x02, 0x04, 0x00, 0x04, 0x01, 0xe7, 0x01, 0xf1,
+
8077 0x01, 0xfb, 0x02, 0x05, 0x00, 0x04, 0x01, 0xe8, 0x01, 0xf2, 0x01, 0xfc,
+
8078 0x02, 0x06, 0x00, 0x04, 0x01, 0xe9, 0x01, 0xf3, 0x01, 0xfd, 0x02, 0x07,
+
8079 0x00, 0x04, 0x01, 0xea, 0x01, 0xf4, 0x01, 0xfe, 0x02, 0x08, 0x00, 0x04,
+
8080 0x01, 0xeb, 0x01, 0xf5, 0x01, 0xff, 0x02, 0x09, 0x00, 0x04, 0x01, 0xec,
+
8081 0x01, 0xf6, 0x02, 0x00, 0x02, 0x0a, 0x00, 0x04, 0x01, 0xed, 0x01, 0xf7,
+
8082 0x02, 0x01, 0x02, 0x0b, 0x00, 0x04, 0x01, 0xee, 0x01, 0xf8, 0x02, 0x02,
+
8083 0x02, 0x0c, 0x00, 0x02, 0x02, 0x11, 0x02, 0x15, 0x00, 0x02, 0x02, 0x12,
+
8084 0x02, 0x16, 0x00, 0x03, 0x01, 0xef, 0x02, 0x13, 0x02, 0x17, 0x00, 0x02,
+
8085 0x02, 0x14, 0x02, 0x18, 0x00, 0x01, 0x00, 0x0f, 0x01, 0x39, 0x01, 0xd9,
+
8086 0x01, 0xda, 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, 0x01, 0xdf,
+
8087 0x01, 0xe0, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9,
+
8088 0x02, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x20,
+
8089 0x00, 0x56, 0x00, 0x68, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26,
+
8090 0x00, 0x01, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
+
8091 0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x2c,
+
8092 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x01, 0x39,
+
8093 0x01, 0x49, 0x00, 0x02, 0x00, 0x02, 0x03, 0x89, 0x03, 0x8b, 0x00, 0x00,
+
8094 0x03, 0x8d, 0x03, 0x92, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x03, 0x7a,
+
8095 0x03, 0x88, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x03, 0x78, 0x00, 0x01,
+
8096 0x03, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
+
8097 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x03, 0x66, 0x00, 0x00, 0x00, 0x01,
+
8098 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xe6,
+
8099 0x00, 0x00, 0x01, 0xd8, 0x01, 0xd8, 0x00, 0xe6, 0x00, 0x01, 0x00, 0x00,
+
8100 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x3a, 0x00, 0x1a, 0x01, 0x3a,
+
8101 0x01, 0x4a, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4,
+
8102 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa,
+
8103 0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0,
+
8104 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
+
8105 0x03, 0xc0, 0x00, 0x02, 0x00, 0x07, 0x01, 0x39, 0x01, 0x39, 0x00, 0x00,
+
8106 0x01, 0x49, 0x01, 0x49, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x83, 0x00, 0x02,
+
8107 0x03, 0x89, 0x03, 0x89, 0x00, 0x0c, 0x03, 0x93, 0x03, 0x97, 0x00, 0x0d,
+
8108 0x03, 0x99, 0x03, 0x9c, 0x00, 0x12, 0x03, 0xb9, 0x03, 0xbc, 0x00, 0x16,
+
8109 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x03,
+
8110 0x00, 0x00, 0x00, 0x01, 0x02, 0xca, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01,
+
8111 0x00, 0x00, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01,
+
8112 0x02, 0xb8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02,
+
8113 0x00, 0x02, 0x03, 0xa0, 0x03, 0xb3, 0x00, 0x00, 0x03, 0xbd, 0x03, 0xc0,
+
8114 0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
+
8115 0x00, 0x6a, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x2e, 0x00, 0x50, 0x00, 0x04,
+
8116 0x00, 0x0a, 0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb9, 0x00, 0x02,
+
8117 0x03, 0x7d, 0x03, 0xba, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xbb, 0x00, 0x02,
+
8118 0x03, 0x85, 0x03, 0xbc, 0x00, 0x02, 0x03, 0x83, 0x00, 0x04, 0x00, 0x0a,
+
8119 0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb5, 0x00, 0x02, 0x03, 0x7d,
+
8120 0x03, 0xb6, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xb7, 0x00, 0x02, 0x03, 0x85,
+
8121 0x03, 0xb8, 0x00, 0x02, 0x03, 0x83, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0e,
+
8122 0x00, 0x14, 0x03, 0xbd, 0x00, 0x02, 0x03, 0xa3, 0x03, 0xbe, 0x00, 0x02,
+
8123 0x03, 0xa2, 0x03, 0xc0, 0x00, 0x02, 0x03, 0xa9, 0x00, 0x01, 0x00, 0x03,
+
8124 0x03, 0x7f, 0x03, 0x81, 0x03, 0xa5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
+
8125 0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01,
+
8126 0x00, 0x42, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a,
+
8127 0x00, 0x01, 0x00, 0x01, 0x01, 0x4f, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14,
+
8128 0x00, 0x01, 0x00, 0x28, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00,
+
8129 0x00, 0x0b, 0x00, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x01, 0x00, 0x00,
+
8130 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x07, 0x00, 0x01,
+
8131 0x00, 0x01, 0x02, 0x22, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
+
8132 0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xad, 0x00, 0xb7, 0x01, 0x9a,
+
8133 0x01, 0xa3, 0x00, 0x01, 0x00, 0x04, 0x00, 0xab, 0x00, 0xb6, 0x01, 0x98,
+
8134 0x01, 0xa2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
+
8135 0x00, 0x06, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x01, 0x39, 0x00, 0x01,
+
8136 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf6, 0x00, 0x0c,
+
8137 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1c,
+
8138 0x00, 0x0b, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07,
+
8139 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x6b,
+
8140 0x00, 0x02, 0x00, 0x02, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x02, 0x6d,
+
8141 0x02, 0x6d, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
+
8142 0x00, 0x01, 0x00, 0xb4, 0x00, 0x16, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
+
8143 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xe6, 0x00, 0x01, 0x00, 0x01,
+
8144 0x02, 0x27, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
+
8145 0x00, 0x92, 0x00, 0x20, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a,
+
8146 0x00, 0x22, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x42,
+
8147 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x01,
+
8148 0x02, 0x0d, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x2a,
+
8149 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x02, 0x00, 0x01,
+
8150 0x01, 0xef, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
+
8151 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xf6, 0x00, 0x02, 0x00, 0x01,
+
8152 0x01, 0xf9, 0x02, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
+
8153 0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x2c, 0x00, 0x01,
+
8154 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x01,
+
8155 0x00, 0x02, 0x00, 0x01, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12,
+
8156 0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d,
+
8157 0x00, 0x02, 0x00, 0x01, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x00, 0x01,
+
8158 0x00, 0x02, 0x00, 0x78, 0x01, 0x63, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
+
8159 0x00, 0x08, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x01, 0xd5, 0x01, 0xd6,
+
8160 0x01, 0xd5, 0x01, 0xd6, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x78,
+
8161 0x00, 0xe8, 0x01, 0x63, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
+
8162 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04,
+
8163 0x03, 0x5c, 0x00, 0x03, 0x01, 0x63, 0x02, 0x19, 0x00, 0x01, 0x00, 0x01,
+
8164 0x00, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
+
8165 0x00, 0x36, 0x00, 0x18, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3,
+
8166 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9,
+
8167 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf,
+
8168 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe,
+
8169 0x03, 0xbf, 0x03, 0xc0, 0x00, 0x02, 0x00, 0x05, 0x03, 0x7a, 0x03, 0x83,
+
8170 0x00, 0x00, 0x03, 0x89, 0x03, 0x89, 0x00, 0x0a, 0x03, 0x93, 0x03, 0x97,
+
8171 0x00, 0x0b, 0x03, 0x99, 0x03, 0x9c, 0x00, 0x10, 0x03, 0xb9, 0x03, 0xbc,
+
8172 0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
+
8173 0x00, 0x56, 0x00, 0x05, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x26, 0x00, 0x3a,
+
8174 0x00, 0x44, 0x00, 0x01, 0x00, 0x04, 0x02, 0x48, 0x00, 0x03, 0x02, 0x70,
+
8175 0x02, 0x70, 0x00, 0x01, 0x00, 0x04, 0x02, 0x47, 0x00, 0x02, 0x02, 0x72,
+
8176 0x00, 0x02, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x69, 0x00, 0x03, 0x02, 0x70,
+
8177 0x02, 0x70, 0x03, 0x6a, 0x00, 0x02, 0x02, 0x72, 0x00, 0x01, 0x00, 0x04,
+
8178 0x03, 0x6b, 0x00, 0x02, 0x02, 0x70, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0c,
+
8179 0x03, 0x6d, 0x00, 0x02, 0x02, 0x70, 0x03, 0x6c, 0x00, 0x02, 0x02, 0x31,
+
8180 0x00, 0x01, 0x00, 0x05, 0x02, 0x1e, 0x02, 0x31, 0x02, 0x70, 0x02, 0x72,
+
8181 0x02, 0x73, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
+
8182 0x00, 0x46, 0x00, 0x05, 0x01, 0xe3, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17,
+
8183 0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
+
8184 0x00, 0x0c, 0x00, 0x03, 0x02, 0x2a, 0x02, 0x88, 0x02, 0x89, 0x00, 0x01,
+
8185 0x00, 0x03, 0x02, 0x24, 0x02, 0x78, 0x02, 0x7a, 0x00, 0x01, 0x00, 0x00,
+
8186 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x10, 0x00, 0x05, 0x01, 0xe4,
+
8187 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x00, 0x01, 0x00, 0x05,
+
8188 0x01, 0xd9, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x01,
+
8189 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02,
+
8190 0x00, 0x01, 0x00, 0x02, 0x02, 0x43, 0x02, 0x44, 0x00, 0x01, 0x00, 0x01,
+
8191 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x14, 0x00, 0x02, 0x00, 0x00,
+
8192 0x00, 0x24, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x01,
+
8193 0x77, 0x64, 0x74, 0x68, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10,
+
8194 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x01, 0x50, 0x00, 0x64, 0x00, 0x00,
+
8195 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x58, 0x01, 0xf4, 0x00, 0x00};
diff --git a/abcg/doc/html/abcgException_8cpp.html b/abcg/doc/html/abcgException_8cpp.html index 1ebe53f18..4efed3945 100644 --- a/abcg/doc/html/abcgException_8cpp.html +++ b/abcg/doc/html/abcgException_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgException.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgException.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgException.cpp File Reference
@@ -112,7 +119,7 @@
Include dependency graph for abcgException.cpp:
-
+

Detailed Description

Definition of abcg::Exception members.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgException_8cpp__incl.map b/abcg/doc/html/abcgException_8cpp__incl.map index ccef1a209..42c589562 100644 --- a/abcg/doc/html/abcgException_8cpp__incl.map +++ b/abcg/doc/html/abcgException_8cpp__incl.map @@ -1,10 +1,18 @@ - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgException_8cpp__incl.md5 b/abcg/doc/html/abcgException_8cpp__incl.md5 index 5595dea13..37e4d6881 100644 --- a/abcg/doc/html/abcgException_8cpp__incl.md5 +++ b/abcg/doc/html/abcgException_8cpp__incl.md5 @@ -1 +1 @@ -95a461bf8e201fec34de41dc5541bed5 \ No newline at end of file +e6550ac4bdceb76e3369a02cfd07cb10 \ No newline at end of file diff --git a/abcg/doc/html/abcgException_8cpp__incl.svg b/abcg/doc/html/abcgException_8cpp__incl.svg index a6a5c98ab..6e0b47fcd 100644 --- a/abcg/doc/html/abcgException_8cpp__incl.svg +++ b/abcg/doc/html/abcgException_8cpp__incl.svg @@ -4,130 +4,154 @@ - - + + /home/harlen/dev/abcg/abcg/abcgException.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgException.cpp + + +/home/harlen/dev/abcg +/abcg/abcgException.cpp - + Node2 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node1->Node6 - - + + + + + - + Node8 - - -SDL_image.h + + +SDL_image.h - + Node1->Node8 - - + + + + + - + Node3 - - -source_location + + +source_location - + Node2->Node3 - - + + + + + - + Node4 - - -stdexcept + + +stdexcept - + Node2->Node4 - - + + + + + - + Node5 - - -string + + +string - + Node2->Node5 - - + + + + + - + Node6->Node5 - - + + + + + - + Node7 - - -functional + + +functional - + Node6->Node7 - - + + + + + diff --git a/abcg/doc/html/abcgException_8hpp.html b/abcg/doc/html/abcgException_8hpp.html index eb0593c89..3997ab1fe 100644 --- a/abcg/doc/html/abcgException_8hpp.html +++ b/abcg/doc/html/abcgException_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgException.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgException.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgException.hpp File Reference
@@ -115,17 +122,17 @@
Include dependency graph for abcgException.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -140,9 +147,9 @@

+

Classes

class  abcg::Exception
 Base class for ABCg exception objects. More...
 Represents an exception object for SDL_image errors. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -157,7 +164,7 @@ diff --git a/abcg/doc/html/abcgException_8hpp.js b/abcg/doc/html/abcgException_8hpp.js new file mode 100644 index 000000000..a6d0d1eb9 --- /dev/null +++ b/abcg/doc/html/abcgException_8hpp.js @@ -0,0 +1,7 @@ +var abcgException_8hpp = +[ + [ "abcg::Exception", "classabcg_1_1Exception.html", "classabcg_1_1Exception" ], + [ "abcg::RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], + [ "abcg::SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], + [ "abcg::SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgException_8hpp__dep__incl.map b/abcg/doc/html/abcgException_8hpp__dep__incl.map index 6c5b3db03..b907cf7a5 100644 --- a/abcg/doc/html/abcgException_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgException_8hpp__dep__incl.map @@ -1,23 +1,45 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgException_8hpp__dep__incl.md5 b/abcg/doc/html/abcgException_8hpp__dep__incl.md5 index f95940e03..72c74c894 100644 --- a/abcg/doc/html/abcgException_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgException_8hpp__dep__incl.md5 @@ -1 +1 @@ -8ed23a40da4f3934ed6a71cfa651f7bf \ No newline at end of file +243e285cb80e5c248e4f18ec8d9d156f \ No newline at end of file diff --git a/abcg/doc/html/abcgException_8hpp__dep__incl.svg b/abcg/doc/html/abcgException_8hpp__dep__incl.svg index b3b9eb96c..ff4e58e71 100644 --- a/abcg/doc/html/abcgException_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgException_8hpp__dep__incl.svg @@ -4,351 +4,417 @@ - - + + /home/harlen/dev/abcg/abcg/abcgException.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgException.hpp + + +/home/harlen/dev/abcg +/abcg/abcgException.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node1->Node5 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node1->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgException.cpp + + +/home/harlen/dev/abcg +/abcg/abcgException.cpp - + Node1->Node7 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.hpp - + Node1->Node8 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.cpp - + Node1->Node11 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.cpp - + Node1->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node1->Node13 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node1->Node14 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.hpp - + Node1->Node15 - - + + + + + - + Node17 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node17 - - + + + + + - + Node18 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node1->Node18 - - + + + + + - + Node19 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.cpp - + Node1->Node19 - - + + + + + - + Node20 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node1->Node20 - - + + + + + - + Node21 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node1->Node21 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node4->Node5 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node8->Node9 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.cpp - + Node8->Node10 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.cpp - + Node15->Node16 - - + + + + + - + Node15->Node17 - - + + + + + diff --git a/abcg/doc/html/abcgException_8hpp__incl.map b/abcg/doc/html/abcgException_8hpp__incl.map index 3b017b88f..ee0d177b7 100644 --- a/abcg/doc/html/abcgException_8hpp__incl.map +++ b/abcg/doc/html/abcgException_8hpp__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgException_8hpp__incl.md5 b/abcg/doc/html/abcgException_8hpp__incl.md5 index cc114c739..45a21c3e3 100644 --- a/abcg/doc/html/abcgException_8hpp__incl.md5 +++ b/abcg/doc/html/abcgException_8hpp__incl.md5 @@ -1 +1 @@ -5786e655ba28a30e3347e11c65530052 \ No newline at end of file +3d5a6607db36883fa39b25b373b37d8c \ No newline at end of file diff --git a/abcg/doc/html/abcgException_8hpp__incl.svg b/abcg/doc/html/abcgException_8hpp__incl.svg index ae5106844..0bcec2cec 100644 --- a/abcg/doc/html/abcgException_8hpp__incl.svg +++ b/abcg/doc/html/abcgException_8hpp__incl.svg @@ -4,64 +4,73 @@ - - + + /home/harlen/dev/abcg/abcg/abcgException.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgException.hpp + + +/home/harlen/dev/abcg +/abcg/abcgException.hpp - + Node2 - - -source_location + + +source_location - + Node1->Node2 - - + + + + + - + Node3 - - -stdexcept + + +stdexcept - + Node1->Node3 - - + + + + + - + Node4 - - -string + + +string - + Node1->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgException_8hpp_source.html b/abcg/doc/html/abcgException_8hpp_source.html index e67fd76c3..973af9ac4 100644 --- a/abcg/doc/html/abcgException_8hpp_source.html +++ b/abcg/doc/html/abcgException_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgException.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,134 +99,144 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgException.hpp
+
/home/harlen/dev/abcg/abcg/abcgException.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_EXCEPTION_HPP_
-
14 #define ABCG_EXCEPTION_HPP_
-
15 
-
16 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
-
20 // @cond Skipped by Doxygen
- -
22 // @endcond
-
23 } // namespace abcg
-
24 #else
-
25 #include <source_location>
-
26 namespace abcg {
-
27 // @cond Skipped by Doxygen
- -
29 // @endcond
-
30 } // namespace abcg
-
31 #endif
-
32 #endif
-
33 
-
34 #include <stdexcept>
-
35 #include <string>
-
36 
-
37 namespace abcg {
-
38 class Exception;
-
39 class RuntimeError;
-
40 class SDLError;
-
41 class SDLImageError;
-
42 } // namespace abcg
-
43 
-
49 class abcg::Exception : public std::exception {
-
50 public:
-
51  explicit Exception(std::string_view what);
-
52 
-
53  [[nodiscard]] char const *what() const noexcept override;
-
54 
-
55 private:
-
56  std::string m_what{};
-
57 };
-
58 
- -
68 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
69 public:
-
70  explicit RuntimeError(
-
71  std::string_view what,
-
72  source_location const &sourceLocation = source_location::current());
-
73 
-
74 private:
-
75  static std::string prettyPrint(std::string_view what,
-
76  source_location const &sourceLocation);
-
77 #else
-
78 public:
-
79  explicit RuntimeError(std::string_view what);
-
80 
-
81 private:
-
82  static std::string prettyPrint(std::string_view what);
-
83 #endif
-
84 };
-
85 
- -
96 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
97 public:
-
98  explicit SDLError(
-
99  std::string_view what,
-
100  source_location const &sourceLocation = source_location::current());
-
101 
-
102 private:
-
103  static std::string prettyPrint(std::string_view what,
-
104  source_location const &sourceLocation);
-
105 #else
-
106 public:
-
107  explicit SDLError(std::string_view what);
-
108 
-
109 private:
-
110  static std::string prettyPrint(std::string_view what);
-
111 #endif
-
112 };
-
113 
- -
124 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
125 public:
-
126  explicit SDLImageError(
-
127  std::string_view what,
-
128  source_location const &sourceLocation = source_location::current());
-
129 
-
130 private:
-
131  static std::string prettyPrint(std::string_view what,
-
132  source_location const &sourceLocation);
-
133 #else
-
134 public:
-
135  explicit SDLImageError(std::string_view what);
-
136 
-
137 private:
-
138  static std::string prettyPrint(std::string_view what);
-
139 #endif
-
140 };
-
141 
-
142 #endif
-
Base class for ABCg exception objects.
Definition: abcgException.hpp:49
-
char const * what() const noexcept override
Returns the explanatory string.
Definition: abcgException.cpp:30
-
Exception(std::string_view what)
Constructs an abcg::Exception object.
Definition: abcgException.cpp:23
-
Represents an exception object for runtime errors.
Definition: abcgException.hpp:67
-
RuntimeError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::RuntimeError object.
Definition: abcgException.cpp:42
-
Represents an exception object for SDL errors.
Definition: abcgException.hpp:95
-
SDLError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::SDLError object.
Definition: abcgException.cpp:63
-
Represents an exception object for SDL_image errors.
Definition: abcgException.hpp:123
-
SDLImageError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::SDLError object.
Definition: abcgException.cpp:84
-
Root namespace.
Definition: abcgApplication.hpp:23
-
std::source_location source_location
Definition: abcgOpenGLError.hpp:25
+Go to the documentation of this file.
1
+
13#ifndef ABCG_EXCEPTION_HPP_
+
14#define ABCG_EXCEPTION_HPP_
+
15
+
16#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
17#if defined(__clang__)
+
18#include <experimental/source_location>
+
19namespace abcg {
+
20// @cond Skipped by Doxygen
+
21using source_location = std::experimental::source_location;
+
22// @endcond
+
23} // namespace abcg
+
24#else
+
25#include <source_location>
+
26namespace abcg {
+
27// @cond Skipped by Doxygen
+
28using source_location = std::source_location;
+
29// @endcond
+
30} // namespace abcg
+
31#endif
+
32#endif
+
33
+
34#include <stdexcept>
+
35#include <string>
+
36
+
37namespace abcg {
+
38class Exception;
+
39class RuntimeError;
+
40class SDLError;
+
41class SDLImageError;
+
42} // namespace abcg
+
43
+
+
49class abcg::Exception : public std::exception {
+
50public:
+
51 explicit Exception(std::string_view what);
+
52
+
53 [[nodiscard]] char const *what() const noexcept override;
+
54
+
55private:
+
56 std::string m_what{};
+
57};
+
+
58
+
+ +
68#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
69public:
+
70 explicit RuntimeError(
+
71 std::string_view what,
+
72 source_location const &sourceLocation = source_location::current());
+
73
+
74private:
+
75 static std::string prettyPrint(std::string_view what,
+
76 source_location const &sourceLocation);
+
77#else
+
78public:
+
79 explicit RuntimeError(std::string_view what);
+
80
+
81private:
+
82 static std::string prettyPrint(std::string_view what);
+
83#endif
+
84};
+
+
85
+
+ +
96#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
97public:
+
98 explicit SDLError(
+
99 std::string_view what,
+
100 source_location const &sourceLocation = source_location::current());
+
101
+
102private:
+
103 static std::string prettyPrint(std::string_view what,
+
104 source_location const &sourceLocation);
+
105#else
+
106public:
+
107 explicit SDLError(std::string_view what);
+
108
+
109private:
+
110 static std::string prettyPrint(std::string_view what);
+
111#endif
+
112};
+
+
113
+
+ +
124#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
125public:
+
126 explicit SDLImageError(
+
127 std::string_view what,
+
128 source_location const &sourceLocation = source_location::current());
+
129
+
130private:
+
131 static std::string prettyPrint(std::string_view what,
+
132 source_location const &sourceLocation);
+
133#else
+
134public:
+
135 explicit SDLImageError(std::string_view what);
+
136
+
137private:
+
138 static std::string prettyPrint(std::string_view what);
+
139#endif
+
140};
+
+
141
+
142#endif
+
Base class for ABCg exception objects.
Definition abcgException.hpp:49
+
char const * what() const noexcept override
Returns the explanatory string.
Definition abcgException.cpp:30
+
Represents an exception object for runtime errors.
Definition abcgException.hpp:67
+
Represents an exception object for SDL errors.
Definition abcgException.hpp:95
+
Represents an exception object for SDL_image errors.
Definition abcgException.hpp:123
+
Root namespace.
Definition abcgApplication.hpp:23
+
std::source_location source_location
Definition abcgOpenGLError.hpp:25
diff --git a/abcg/doc/html/abcgExternal_8hpp.html b/abcg/doc/html/abcgExternal_8hpp.html index a146b6c81..a4fd1ddce 100644 --- a/abcg/doc/html/abcgExternal_8hpp.html +++ b/abcg/doc/html/abcgExternal_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgExternal.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgExternal.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgExternal.hpp File Reference
@@ -109,7 +116,7 @@
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgExternal_8hpp__dep__incl.map b/abcg/doc/html/abcgExternal_8hpp__dep__incl.map index 3390527d6..19347ff12 100644 --- a/abcg/doc/html/abcgExternal_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgExternal_8hpp__dep__incl.map @@ -1,18 +1,40 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgExternal_8hpp__dep__incl.md5 b/abcg/doc/html/abcgExternal_8hpp__dep__incl.md5 index fa555865f..307973a8e 100644 --- a/abcg/doc/html/abcgExternal_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgExternal_8hpp__dep__incl.md5 @@ -1 +1 @@ -d009d42d1b25fc100970bf0833593827 \ No newline at end of file +af41368aae2b82740434253c8e985df0 \ No newline at end of file diff --git a/abcg/doc/html/abcgExternal_8hpp__dep__incl.svg b/abcg/doc/html/abcgExternal_8hpp__dep__incl.svg index 573896905..80cd4ac51 100644 --- a/abcg/doc/html/abcgExternal_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgExternal_8hpp__dep__incl.svg @@ -4,301 +4,367 @@ - - + + /home/harlen/dev/abcg/abcg/abcgExternal.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgExternal.hpp + + +/home/harlen/dev/abcg +/abcg/abcgExternal.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node1->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node1->Node7 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.hpp - + Node1->Node9 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.hpp - + Node1->Node11 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node4->Node5 - - + + + + + - + Node7->Node3 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node7->Node8 - - + + + + + - + Node9->Node2 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.cpp - + Node9->Node10 - - + + + + + - + Node11->Node2 - - + + + + + - + Node11->Node7 - - + + + + + - + Node11->Node8 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node11->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node11->Node13 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node11->Node14 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.cpp - + Node11->Node16 - - + + + + + - + Node14->Node4 - - + + + + + - + Node14->Node13 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node14->Node15 - - + + + + + diff --git a/abcg/doc/html/abcgExternal_8hpp_source.html b/abcg/doc/html/abcgExternal_8hpp_source.html index 3d58f218b..c9481139c 100644 --- a/abcg/doc/html/abcgExternal_8hpp_source.html +++ b/abcg/doc/html/abcgExternal_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgExternal.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +
@@ -93,45 +99,51 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgExternal.hpp
+
/home/harlen/dev/abcg/abcg/abcgExternal.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_EXTERNAL_HPP_
-
14 #define ABCG_EXTERNAL_HPP_
-
15 
-
16 // @cond Skipped by Doxygen
-
17 
-
18 #define GLM_ENABLE_EXPERIMENTAL
-
19 
-
20 #include <SDL.h>
-
21 #include <cppitertools/itertools.hpp>
-
22 #include <fmt/core.h>
-
23 #include <glm/glm.hpp>
-
24 #include <glm/gtc/matrix_inverse.hpp>
-
25 #include <glm/gtx/hash.hpp>
-
26 #include <glm/gtx/quaternion.hpp>
-
27 #include <gsl/gsl>
-
28 #include <imgui.h>
-
29 #include <tiny_obj_loader.h>
-
30 
-
31 // @endcond
-
32 
-
33 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_EXTERNAL_HPP_
+
14#define ABCG_EXTERNAL_HPP_
+
15
+
16// @cond Skipped by Doxygen
+
17
+
18#define GLM_ENABLE_EXPERIMENTAL
+
19
+
20#include <SDL.h>
+
21#include <cppitertools/itertools.hpp>
+
22#include <fmt/core.h>
+
23#include <glm/glm.hpp>
+
24#include <glm/gtc/matrix_inverse.hpp>
+
25#include <glm/gtx/hash.hpp>
+
26#include <glm/gtx/quaternion.hpp>
+
27#include <gsl/gsl>
+
28#include <imgui.h>
+
29#include <tiny_obj_loader.h>
+
30
+
31// @endcond
+
32
+
33#endif
diff --git a/abcg/doc/html/abcgImage_8cpp.html b/abcg/doc/html/abcgImage_8cpp.html index a05d98a2b..9e4a1d71c 100644 --- a/abcg/doc/html/abcgImage_8cpp.html +++ b/abcg/doc/html/abcgImage_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgImage.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgImage.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgImage.cpp File Reference
@@ -114,7 +121,7 @@
Include dependency graph for abcgImage.cpp:
-
+

Detailed Description

Definition of image manipulation helper functions.

@@ -126,7 +133,7 @@ diff --git a/abcg/doc/html/abcgImage_8cpp.js b/abcg/doc/html/abcgImage_8cpp.js deleted file mode 100644 index 03ae389a6..000000000 --- a/abcg/doc/html/abcgImage_8cpp.js +++ /dev/null @@ -1,4 +0,0 @@ -var abcgImage_8cpp = -[ - [ "transformPixels", "abcgImage_8cpp.html#a03246ce003a4e378f5afd3f1b7ff6d17", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcgImage_8cpp__incl.map b/abcg/doc/html/abcgImage_8cpp__incl.map index 755d9f4b3..f9e3c6c2a 100644 --- a/abcg/doc/html/abcgImage_8cpp__incl.map +++ b/abcg/doc/html/abcgImage_8cpp__incl.map @@ -1,9 +1,15 @@ - - - - - - - + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgImage_8cpp__incl.md5 b/abcg/doc/html/abcgImage_8cpp__incl.md5 index 78dff93f6..526f1b145 100644 --- a/abcg/doc/html/abcgImage_8cpp__incl.md5 +++ b/abcg/doc/html/abcgImage_8cpp__incl.md5 @@ -1 +1 @@ -7e0a277d03c46d4ef668f093e756341f \ No newline at end of file +195a83d97083b1843a480c02c345b33e \ No newline at end of file diff --git a/abcg/doc/html/abcgImage_8cpp__incl.svg b/abcg/doc/html/abcgImage_8cpp__incl.svg index 840a3dadb..06e52ac26 100644 --- a/abcg/doc/html/abcgImage_8cpp__incl.svg +++ b/abcg/doc/html/abcgImage_8cpp__incl.svg @@ -4,109 +4,127 @@ - - + + /home/harlen/dev/abcg/abcg/abcgImage.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgImage.cpp - + Node2 - - -abcgImage.hpp + + +abcgImage.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -cppitertools/itertools.hpp + + +cppitertools/itertools.hpp - + Node1->Node4 - - + + + + + - + Node5 - - -gsl/gsl + + +gsl/gsl - + Node1->Node5 - - + + + + + - + Node6 - - -span + + +span - + Node1->Node6 - - + + + + + - + Node7 - - -vector + + +vector - + Node1->Node7 - - + + + + + - + Node3 - - -SDL_image.h + + +SDL_image.h - + Node2->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgImage_8hpp.html b/abcg/doc/html/abcgImage_8hpp.html index a804da1ee..2464ec242 100644 --- a/abcg/doc/html/abcgImage_8hpp.html +++ b/abcg/doc/html/abcgImage_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgImage.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgImage.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgImage.hpp File Reference
@@ -113,29 +120,29 @@
Include dependency graph for abcgImage.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - - + + - - + +

+

Functions

void abcg::flipHorizontally (SDL_Surface &surface)
 Flips an image horizontally. More...
void abcg::flipHorizontally (SDL_Surface &surface)
 Flips an image horizontally.
 
void abcg::flipVertically (SDL_Surface &surface)
 Flips an image vertically. More...
void abcg::flipVertically (SDL_Surface &surface)
 Flips an image vertically.
 

Detailed Description

@@ -148,7 +155,7 @@ diff --git a/abcg/doc/html/abcgImage_8hpp__dep__incl.map b/abcg/doc/html/abcgImage_8hpp__dep__incl.map index 70ce1b41f..81e4b8de6 100644 --- a/abcg/doc/html/abcgImage_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgImage_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgImage_8hpp__dep__incl.md5 b/abcg/doc/html/abcgImage_8hpp__dep__incl.md5 index 835493536..00afb7992 100644 --- a/abcg/doc/html/abcgImage_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgImage_8hpp__dep__incl.md5 @@ -1 +1 @@ -27af4522ff672b07829d1ab388d56812 \ No newline at end of file +99bbd2d54c99d89ae0251cd4cf1a3fec \ No newline at end of file diff --git a/abcg/doc/html/abcgImage_8hpp__dep__incl.svg b/abcg/doc/html/abcgImage_8hpp__dep__incl.svg index 79f7d5e1f..9a2ea9d87 100644 --- a/abcg/doc/html/abcgImage_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgImage_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgImage.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgImage.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgImage_8hpp__incl.map b/abcg/doc/html/abcgImage_8hpp__incl.map index 124b5d21a..35bd8110e 100644 --- a/abcg/doc/html/abcgImage_8hpp__incl.map +++ b/abcg/doc/html/abcgImage_8hpp__incl.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/abcgImage_8hpp__incl.md5 b/abcg/doc/html/abcgImage_8hpp__incl.md5 index dc6afc497..d989fc180 100644 --- a/abcg/doc/html/abcgImage_8hpp__incl.md5 +++ b/abcg/doc/html/abcgImage_8hpp__incl.md5 @@ -1 +1 @@ -dc998fd3c71215ae1a348b0d146fa81f \ No newline at end of file +8101dae0fe47a4964322553b7dc3f252 \ No newline at end of file diff --git a/abcg/doc/html/abcgImage_8hpp__incl.svg b/abcg/doc/html/abcgImage_8hpp__incl.svg index 92ede1958..e79148623 100644 --- a/abcg/doc/html/abcgImage_8hpp__incl.svg +++ b/abcg/doc/html/abcgImage_8hpp__incl.svg @@ -4,34 +4,37 @@ - - + + /home/harlen/dev/abcg/abcg/abcgImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgImage.hpp - + Node2 - - -SDL_image.h + + +SDL_image.h - + Node1->Node2 - - + + + + + diff --git a/abcg/doc/html/abcgImage_8hpp_source.html b/abcg/doc/html/abcgImage_8hpp_source.html index 1b7e9b6b1..05e05d8a9 100644 --- a/abcg/doc/html/abcgImage_8hpp_source.html +++ b/abcg/doc/html/abcgImage_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgImage.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,38 +99,44 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgImage.hpp
+
/home/harlen/dev/abcg/abcg/abcgImage.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_IMAGE_HPP_
-
12 #define ABCG_IMAGE_HPP_
-
13 
-
14 #include <SDL_image.h>
-
15 
-
16 namespace abcg {
-
17 void flipHorizontally(SDL_Surface &surface);
-
18 void flipVertically(SDL_Surface &surface);
-
19 } // namespace abcg
-
20 
-
21 #endif
-
Root namespace.
Definition: abcgApplication.hpp:23
-
void flipHorizontally(SDL_Surface &surface)
Flips an image horizontally.
Definition: abcgImage.cpp:26
-
void flipVertically(SDL_Surface &surface)
Flips an image vertically.
Definition: abcgImage.cpp:66
+Go to the documentation of this file.
1
+
11#ifndef ABCG_IMAGE_HPP_
+
12#define ABCG_IMAGE_HPP_
+
13
+
14#include <SDL_image.h>
+
15
+
16namespace abcg {
+
17void flipHorizontally(SDL_Surface &surface);
+
18void flipVertically(SDL_Surface &surface);
+
19} // namespace abcg
+
20
+
21#endif
+
Root namespace.
Definition abcgApplication.hpp:23
+
void flipHorizontally(SDL_Surface &surface)
Flips an image horizontally.
Definition abcgImage.cpp:26
+
void flipVertically(SDL_Surface &surface)
Flips an image vertically.
Definition abcgImage.cpp:66
diff --git a/abcg/doc/html/abcgOpenGLError_8cpp.html b/abcg/doc/html/abcgOpenGLError_8cpp.html index 6252deee5..099090566 100644 --- a/abcg/doc/html/abcgOpenGLError_8cpp.html +++ b/abcg/doc/html/abcgOpenGLError_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLError.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLError.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLError.cpp File Reference
@@ -113,7 +120,7 @@
Include dependency graph for abcgOpenGLError.cpp:
-
+

Detailed Description

Definition of abcg::OpenGLError members.

@@ -125,7 +132,7 @@ diff --git a/abcg/doc/html/abcgOpenGLError_8cpp__incl.map b/abcg/doc/html/abcgOpenGLError_8cpp__incl.map index b79b8d5a4..d6e1e4ae4 100644 --- a/abcg/doc/html/abcgOpenGLError_8cpp__incl.map +++ b/abcg/doc/html/abcgOpenGLError_8cpp__incl.map @@ -1,12 +1,23 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8cpp__incl.md5 b/abcg/doc/html/abcgOpenGLError_8cpp__incl.md5 index 2ea6d8114..104c0b1f7 100644 --- a/abcg/doc/html/abcgOpenGLError_8cpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLError_8cpp__incl.md5 @@ -1 +1 @@ -a13dbc5fb09db22a5734aab1aa8c9b6b \ No newline at end of file +4fe36440dbe6ccf0d2edf501fc148279 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLError_8cpp__incl.svg b/abcg/doc/html/abcgOpenGLError_8cpp__incl.svg index e3e68098e..7b500db14 100644 --- a/abcg/doc/html/abcgOpenGLError_8cpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLError_8cpp__incl.svg @@ -4,166 +4,199 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLError.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node2 - - -abcgOpenGLError.hpp + + +abcgOpenGLError.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node1->Node7 - - + + + + + - + Node8 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node1->Node9 - - + + + + + - + Node3 - - -source_location + + +source_location - + Node2->Node3 - - + + + + + - + Node4 - - -abcgException.hpp + + +abcgException.hpp - + Node2->Node4 - - + + + + + - + Node4->Node3 - - + + + + + - + Node5 - - -stdexcept + + +stdexcept - + Node4->Node5 - - + + + + + - + Node6 - - -string + + +string - + Node4->Node6 - - + + + + + - + Node9->Node6 - - + + + + + - + Node10 - - -functional + + +functional - + Node9->Node10 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8hpp.html b/abcg/doc/html/abcgOpenGLError_8hpp.html index b88f298e5..a9f5b2502 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp.html +++ b/abcg/doc/html/abcgOpenGLError_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Typedefs
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp File Reference
@@ -115,31 +122,31 @@
Include dependency graph for abcgOpenGLError.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::OpenGLError
 Represents an exception object for OpenGL errors. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - +

+

Typedefs

using abcg::source_location = std::source_location
using abcg::source_location = std::source_location
 

Detailed Description

@@ -153,7 +160,7 @@ diff --git a/abcg/doc/html/abcgOpenGLError_8hpp.js b/abcg/doc/html/abcgOpenGLError_8hpp.js index 7e46a5550..5fec9c7bf 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp.js +++ b/abcg/doc/html/abcgOpenGLError_8hpp.js @@ -1,5 +1,5 @@ var abcgOpenGLError_8hpp = [ - [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], + [ "abcg::OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], [ "source_location", "abcgOpenGLError_8hpp.html#acb1d90de1449e0e743214d0ae8bddff2", null ] ]; \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.map index 86d5c8ee5..776c5526f 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.md5 index ba656064f..66a544960 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.md5 @@ -1 +1 @@ -b681a487f84dfad515031740f65224c0 \ No newline at end of file +c9e67acc67784eba13b7682b1772743e \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.svg index 82ec15ab4..12a7146a0 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLError_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__incl.map b/abcg/doc/html/abcgOpenGLError_8hpp__incl.map index 627e32546..aa317eecc 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGLError_8hpp__incl.map @@ -1,7 +1,12 @@ - - - - - + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGLError_8hpp__incl.md5 index 2f56eddaf..915825cac 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLError_8hpp__incl.md5 @@ -1 +1 @@ -581ada55536417215f9263e946e61698 \ No newline at end of file +99934267addab387f82f6f5a924771c5 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLError_8hpp__incl.svg b/abcg/doc/html/abcgOpenGLError_8hpp__incl.svg index afe7ffc8c..0da076be7 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLError_8hpp__incl.svg @@ -4,85 +4,100 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.hpp - + Node2 - - -source_location + + +source_location - + Node1->Node2 - - + + + + + - + Node3 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node3 - - + + + + + - + Node3->Node2 - - + + + + + - + Node4 - - -stdexcept + + +stdexcept - + Node3->Node4 - - + + + + + - + Node5 - - -string + + +string - + Node3->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLError_8hpp_source.html b/abcg/doc/html/abcgOpenGLError_8hpp_source.html index c84b39677..6029e62f2 100644 --- a/abcg/doc/html/abcgOpenGLError_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLError_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,76 +99,83 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLError.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_ERROR_HPP_
-
14 #define ABCG_OPENGL_ERROR_HPP_
-
15 
-
16 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
- -
21 } // namespace abcg
-
22 #else
-
23 #include <source_location>
-
24 namespace abcg {
- -
26 } // namespace abcg
-
27 #endif
-
28 #endif
-
29 
-
30 #include "abcgException.hpp"
-
31 
-
32 namespace abcg {
-
33 class OpenGLError;
-
34 } // namespace abcg
-
35 
- -
46 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
47 public:
-
48  explicit OpenGLError(
-
49  std::string_view what, unsigned int errorCode,
-
50  source_location const &sourceLocation = source_location::current());
-
51 
-
52 private:
-
53  static std::string prettyPrint(std::string_view what, unsigned int errorCode,
-
54  source_location const &sourceLocation);
-
55 #else
-
56 public:
-
57  explicit OpenGLError(std::string_view what, unsigned int errorCode);
-
58 
-
59 private:
-
60  static std::string prettyPrint(std::string_view what, unsigned int errorCode);
-
61 #endif
-
62 
-
63  static std::string_view getGLErrorString(unsigned int errorCode);
-
64 };
-
65 
-
66 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_OPENGL_ERROR_HPP_
+
14#define ABCG_OPENGL_ERROR_HPP_
+
15
+
16#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
17#if defined(__clang__)
+
18#include <experimental/source_location>
+
19namespace abcg {
+
20using source_location = std::experimental::source_location;
+
21} // namespace abcg
+
22#else
+
23#include <source_location>
+
24namespace abcg {
+
25using source_location = std::source_location;
+
26} // namespace abcg
+
27#endif
+
28#endif
+
29
+
30#include "abcgException.hpp"
+
31
+
32namespace abcg {
+
33class OpenGLError;
+
34} // namespace abcg
+
35
+
+ +
46#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
47public:
+
48 explicit OpenGLError(
+
49 std::string_view what, unsigned int errorCode,
+
50 source_location const &sourceLocation = source_location::current());
+
51
+
52private:
+
53 static std::string prettyPrint(std::string_view what, unsigned int errorCode,
+
54 source_location const &sourceLocation);
+
55#else
+
56public:
+
57 explicit OpenGLError(std::string_view what, unsigned int errorCode);
+
58
+
59private:
+
60 static std::string prettyPrint(std::string_view what, unsigned int errorCode);
+
61#endif
+
62
+
63 static std::string_view getGLErrorString(unsigned int errorCode);
+
64};
+
+
65
+
66#endif
Header file of abcg::Exception and derived classes.
-
Base class for ABCg exception objects.
Definition: abcgException.hpp:49
-
char const * what() const noexcept override
Returns the explanatory string.
Definition: abcgException.cpp:30
-
Represents an exception object for OpenGL errors.
Definition: abcgOpenGLError.hpp:45
-
OpenGLError(std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())
Constructs an abcg::OpenGLError object.
Definition: abcgOpenGLError.cpp:28
-
Root namespace.
Definition: abcgApplication.hpp:23
-
std::source_location source_location
Definition: abcgOpenGLError.hpp:25
+
Base class for ABCg exception objects.
Definition abcgException.hpp:49
+
char const * what() const noexcept override
Returns the explanatory string.
Definition abcgException.cpp:30
+
Represents an exception object for OpenGL errors.
Definition abcgOpenGLError.hpp:45
+
Root namespace.
Definition abcgApplication.hpp:23
+
std::source_location source_location
Definition abcgOpenGLError.hpp:25
diff --git a/abcg/doc/html/abcgOpenGLExternal_8hpp.html b/abcg/doc/html/abcgOpenGLExternal_8hpp.html index 9163a47b4..cc6aab30b 100644 --- a/abcg/doc/html/abcgOpenGLExternal_8hpp.html +++ b/abcg/doc/html/abcgOpenGLExternal_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp File Reference
@@ -109,7 +116,7 @@
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.map index cb4e11f6c..fc418bac3 100644 --- a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.map @@ -1,13 +1,25 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.md5 index 2f73dd3d8..ffa3852f6 100644 --- a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.md5 @@ -1 +1 @@ -7f96be500ff022e3fa2f55c6c863685a \ No newline at end of file +aae9f897ab63d9568af46a4632cf519a \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.svg index 634c2e1f9..8575a5b47 100644 --- a/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLExternal_8hpp__dep__incl.svg @@ -4,191 +4,227 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLExternal.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLExternal.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.hpp - + Node1->Node3 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.hpp - + Node1->Node8 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.hpp - + Node1->Node10 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.cpp - + Node3->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node3->Node5 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node5->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node5->Node7 - - + + + + + - + Node8->Node6 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.cpp - + Node8->Node9 - - + + + + + - + Node10->Node6 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.cpp - + Node10->Node11 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLExternal_8hpp_source.html b/abcg/doc/html/abcgOpenGLExternal_8hpp_source.html index 7f1b60290..05ec77b81 100644 --- a/abcg/doc/html/abcgOpenGLExternal_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLExternal_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +
@@ -93,47 +99,53 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLExternal.hpp
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_OPENGL_EXTERNAL_HPP_
-
15 #define ABCG_OPENGL_EXTERNAL_HPP_
-
16 
-
17 // @cond Skipped by Doxygen
-
18 
-
19 #if !defined(__EMSCRIPTEN__)
-
20 #if !defined(GLEW_STATIC)
-
21 #define GLEW_STATIC
-
22 #endif
-
23 #include <GL/glew.h>
-
24 #endif
-
25 
-
26 #if defined(__EMSCRIPTEN__)
-
27 #include <GLES3/gl3.h>
-
28 
-
29 #include "SDL_opengles2.h"
-
30 #include "emscripten.h"
-
31 #include "emscripten/html5.h"
-
32 #endif
-
33 
-
34 // @endcond
-
35 
-
36 #endif
+Go to the documentation of this file.
1
+
14#ifndef ABCG_OPENGL_EXTERNAL_HPP_
+
15#define ABCG_OPENGL_EXTERNAL_HPP_
+
16
+
17// @cond Skipped by Doxygen
+
18
+
19#if !defined(__EMSCRIPTEN__)
+
20#if !defined(GLEW_STATIC)
+
21#define GLEW_STATIC
+
22#endif
+
23#include <GL/glew.h>
+
24#endif
+
25
+
26#if defined(__EMSCRIPTEN__)
+
27#include <GLES3/gl3.h>
+
28
+
29#include "SDL_opengles2.h"
+
30#include "emscripten.h"
+
31#include "emscripten/html5.h"
+
32#endif
+
33
+
34// @endcond
+
35
+
36#endif
diff --git a/abcg/doc/html/abcgOpenGLFunction_8cpp.html b/abcg/doc/html/abcgOpenGLFunction_8cpp.html index 190f6f84f..188567fea 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8cpp.html +++ b/abcg/doc/html/abcgOpenGLFunction_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.cpp File Reference
@@ -111,7 +118,7 @@
Include dependency graph for abcgOpenGLFunction.cpp:
-
+

Detailed Description

Definition of OpenGL-related error checking functions.

@@ -123,7 +130,7 @@ diff --git a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.map b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.map index 2bd4a8cff..d5963ffa6 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.map +++ b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.map @@ -1,12 +1,23 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.md5 b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.md5 index d72680720..f76849a44 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.md5 @@ -1 +1 @@ -28589561390a5cb910a07d25a96074fa \ No newline at end of file +7bcaf30654500859c66ad523ad29db5d \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.svg b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.svg index 26cda073f..0e4393d87 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLFunction_8cpp__incl.svg @@ -4,166 +4,199 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.cpp - + Node2 - - -abcgOpenGLFunction.hpp + + +abcgOpenGLFunction.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -abcgOpenGLError.hpp + + +abcgOpenGLError.hpp - + Node1->Node7 - - + + + + + - + Node3 - - -source_location + + +source_location - + Node2->Node3 - - + + + + + - + Node4 - - -string_view + + +string_view - + Node2->Node4 - - + + + + + - + Node5 - - -type_traits + + +type_traits - + Node2->Node5 - - + + + + + - + Node6 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node2->Node6 - - + + + + + - + Node7->Node3 - - + + + + + - + Node8 - - -abcgException.hpp + + +abcgException.hpp - + Node7->Node8 - - + + + + + - + Node8->Node3 - - + + + + + - + Node9 - - -stdexcept + + +stdexcept - + Node8->Node9 - - + + + + + - + Node10 - - -string + + +string - + Node8->Node10 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp.html b/abcg/doc/html/abcgOpenGLFunction_8hpp.html index dcbacb34e..d3c74df68 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp.html +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp File Reference
@@ -116,532 +123,532 @@
Include dependency graph for abcgOpenGLFunction.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - - + + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +

+

Functions

void abcg::checkGLError (source_location const &sourceLocation, std::string_view appendString)
 Checks OpenGL error status and throws on error with a log message. More...
void abcg::checkGLError (source_location const &sourceLocation, std::string_view appendString)
 Checks OpenGL error status and throws on error with a log message.
 
template<typename TFun , typename... TArgs>
auto abcg::callGL (source_location const &sourceLocation, TFun &&function, TArgs &&...args)
 Checks for OpenGL errors before and after a function call. More...
template<typename TFun , typename... TArgs>
auto abcg::callGL (source_location const &sourceLocation, TFun &&function, TArgs &&...args)
 Checks for OpenGL errors before and after a function call.
 
void abcg::glActiveTexture (GLenum texture, source_location const &sourceLocation=source_location::current())
void abcg::glActiveTexture (GLenum texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glAttachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
void abcg::glAttachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindAttribLocation (GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
void abcg::glBindAttribLocation (GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBuffer (GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
void abcg::glBindBuffer (GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindFramebuffer (GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
void abcg::glBindFramebuffer (GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindRenderbuffer (GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
void abcg::glBindRenderbuffer (GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindTexture (GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
void abcg::glBindTexture (GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
void abcg::glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendEquation (GLenum mode, source_location const &sourceLocation=source_location::current())
void abcg::glBlendEquation (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
void abcg::glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendFunc (GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
void abcg::glBlendFunc (GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
void abcg::glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBufferData (GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
void abcg::glBufferData (GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
 
void abcg::glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
 
GLenum abcg::glCheckFramebufferStatus (GLenum target, source_location const &sourceLocation=source_location::current())
GLenum abcg::glCheckFramebufferStatus (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glClear (GLbitfield mask, source_location const &sourceLocation=source_location::current())
void abcg::glClear (GLbitfield mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
void abcg::glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearDepthf (GLfloat d, source_location const &sourceLocation=source_location::current())
void abcg::glClearDepthf (GLfloat d, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearStencil (GLint s, source_location const &sourceLocation=source_location::current())
void abcg::glClearStencil (GLint s, source_location const &sourceLocation=source_location::current())
 
void abcg::glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
void abcg::glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompileShader (GLuint shader, source_location const &sourceLocation=source_location::current())
void abcg::glCompileShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
void abcg::glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glCreateProgram (source_location const &sourceLocation=source_location::current())
GLuint abcg::glCreateProgram (source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glCreateShader (GLenum shaderType, source_location const &sourceLocation=source_location::current())
GLuint abcg::glCreateShader (GLenum shaderType, source_location const &sourceLocation=source_location::current())
 
void abcg::glCullFace (GLenum mode, source_location const &sourceLocation=source_location::current())
void abcg::glCullFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteBuffers (GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteBuffers (GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteFramebuffers (GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteFramebuffers (GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteShader (GLuint shader, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteTextures (GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteTextures (GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthFunc (GLenum func, source_location const &sourceLocation=source_location::current())
void abcg::glDepthFunc (GLenum func, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthMask (GLboolean flag, source_location const &sourceLocation=source_location::current())
void abcg::glDepthMask (GLboolean flag, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthRangef (GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
void abcg::glDepthRangef (GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
 
void abcg::glDetachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
void abcg::glDetachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glDisable (GLenum cap, source_location const &sourceLocation=source_location::current())
void abcg::glDisable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void abcg::glDisableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
void abcg::glDisableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawArrays (GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
void abcg::glDrawArrays (GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawElements (GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
void abcg::glDrawElements (GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void abcg::glEnable (GLenum cap, source_location const &sourceLocation=source_location::current())
void abcg::glEnable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void abcg::glEnableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
void abcg::glEnableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glFinish (source_location const &sourceLocation=source_location::current())
void abcg::glFinish (source_location const &sourceLocation=source_location::current())
 
void abcg::glFlush (source_location const &sourceLocation=source_location::current())
void abcg::glFlush (source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
void abcg::glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
void abcg::glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void abcg::glFrontFace (GLenum mode, source_location const &sourceLocation=source_location::current())
void abcg::glFrontFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenBuffers (GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
void abcg::glGenBuffers (GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenerateMipmap (GLenum target, source_location const &sourceLocation=source_location::current())
void abcg::glGenerateMipmap (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenFramebuffers (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void abcg::glGenFramebuffers (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
void abcg::glGenRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenTextures (GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
void abcg::glGenTextures (GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void abcg::glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void abcg::glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
void abcg::glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetAttribLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint abcg::glGetAttribLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBooleanv (GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetBooleanv (GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetFloatv (GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetFloatv (GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetIntegerv (GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetIntegerv (GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramiv (GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetProgramiv (GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
void abcg::glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderiv (GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetShaderiv (GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
void abcg::glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
void abcg::glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
void abcg::glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
 
const GLubyte * abcg::glGetString (GLenum name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
const GLubyte * abcg::glGetString (GLenum name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetTexParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformfv (GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetUniformfv (GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformiv (GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetUniformiv (GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetUniformLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint abcg::glGetUniformLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
void abcg::glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glHint (GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
void abcg::glHint (GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsBuffer (GLuint buffer, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsBuffer (GLuint buffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsEnabled (GLenum cap, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsEnabled (GLenum cap, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsFramebuffer (GLuint framebuffer, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsFramebuffer (GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsProgram (GLuint program, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsRenderbuffer (GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsRenderbuffer (GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsShader (GLuint shader, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsTexture (GLuint texture, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsTexture (GLuint texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glLineWidth (GLfloat width, source_location const &sourceLocation=source_location::current())
void abcg::glLineWidth (GLfloat width, source_location const &sourceLocation=source_location::current())
 
void abcg::glLinkProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void abcg::glLinkProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glPixelStorei (GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void abcg::glPixelStorei (GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glPolygonOffset (GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
void abcg::glPolygonOffset (GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
 
void abcg::glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
void abcg::glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glReleaseShaderCompiler (source_location const &sourceLocation=source_location::current())
void abcg::glReleaseShaderCompiler (source_location const &sourceLocation=source_location::current())
 
void abcg::glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glSampleCoverage (GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
void abcg::glSampleCoverage (GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
 
void abcg::glScissor (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glScissor (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glShaderBinary (GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
void abcg::glShaderBinary (GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void abcg::glShaderSource (GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
void abcg::glShaderSource (GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilFunc (GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
void abcg::glStencilFunc (GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
void abcg::glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilMask (GLuint mask, source_location const &sourceLocation=source_location::current())
void abcg::glStencilMask (GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilMaskSeparate (GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
void abcg::glStencilMaskSeparate (GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilOp (GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
void abcg::glStencilOp (GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
void abcg::glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameterf (GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
void abcg::glTexParameterf (GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameterfv (GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
void abcg::glTexParameterfv (GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameteri (GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void abcg::glTexParameteri (GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameteriv (GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
void abcg::glTexParameteriv (GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void abcg::glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1f (GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1f (GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1i (GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1i (GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2f (GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2f (GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2i (GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2i (GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3i (GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3i (GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUseProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void abcg::glUseProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glValidateProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void abcg::glValidateProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib1f (GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib1f (GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib1fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib1fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib2fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib2fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib3fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib3fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib4fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttrib4fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glViewport (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glViewport (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glReadBuffer (GLenum src, source_location const &sourceLocation=source_location::current())
void abcg::glReadBuffer (GLenum src, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
void abcg::glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void abcg::glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void abcg::glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void abcg::glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenQueries (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void abcg::glGenQueries (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteQueries (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteQueries (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsQuery (GLuint id, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsQuery (GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glBeginQuery (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
void abcg::glBeginQuery (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glEndQuery (GLenum target, source_location const &sourceLocation=source_location::current())
void abcg::glEndQuery (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetQueryiv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetQueryiv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glUnmapBuffer (GLenum target, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glUnmapBuffer (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferPointerv (GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
void abcg::glGetBufferPointerv (GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawBuffers (GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
void abcg::glDrawBuffers (GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
void abcg::glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
 
void abcg::glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
void abcg::glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
 
void * abcg::glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
 
void abcg::glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
void * abcg::glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
 
void abcg::glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
void abcg::glBindVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteVertexArrays (GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteVertexArrays (GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenVertexArrays (GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
void abcg::glGenVertexArrays (GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetIntegeri_v (GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
void abcg::glGetIntegeri_v (GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glBeginTransformFeedback (GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
void abcg::glBeginTransformFeedback (GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
 
void abcg::glEndTransformFeedback (source_location const &sourceLocation=source_location::current())
void abcg::glEndTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
void abcg::glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBufferBase (GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
void abcg::glBindBufferBase (GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glTransformFeedbackVaryings (GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
void abcg::glTransformFeedbackVaryings (GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void abcg::glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4iv (GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribI4iv (GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4uiv (GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribI4uiv (GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformuiv (GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetUniformuiv (GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetFragDataLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint abcg::glGetFragDataLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1ui (GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1ui (GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2ui (GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2ui (GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform1uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform2uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform3uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glUniform4uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferiv (GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glClearBufferiv (GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferuiv (GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
void abcg::glClearBufferuiv (GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferfv (GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void abcg::glClearBufferfv (GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
void abcg::glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
 
const GLubyte * abcg::glGetStringi (GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
const GLubyte * abcg::glGetStringi (GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformIndices (GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
void abcg::glGetUniformIndices (GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glGetUniformBlockIndex (GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
GLuint abcg::glGetUniformBlockIndex (GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
void abcg::glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
void abcg::glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
void abcg::glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
void abcg::glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
GLsync abcg::glFenceSync (GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
GLsync abcg::glFenceSync (GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsSync (GLsync sync, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteSync (GLsync sync, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
GLenum abcg::glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
GLenum abcg::glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void abcg::glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
void abcg::glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInteger64v (GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
void abcg::glGetInteger64v (GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
void abcg::glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
void abcg::glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenSamplers (GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
void abcg::glGenSamplers (GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteSamplers (GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteSamplers (GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsSampler (GLuint sampler, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsSampler (GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindSampler (GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
void abcg::glBindSampler (GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameteri (GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void abcg::glSamplerParameteri (GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameteriv (GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
void abcg::glSamplerParameteriv (GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
void abcg::glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
void abcg::glSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribDivisor (GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
void abcg::glVertexAttribDivisor (GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindTransformFeedback (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
void abcg::glBindTransformFeedback (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteTransformFeedbacks (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
void abcg::glDeleteTransformFeedbacks (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenTransformFeedbacks (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void abcg::glGenTransformFeedbacks (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsTransformFeedback (GLuint id, source_location const &sourceLocation=source_location::current())
GLboolean abcg::glIsTransformFeedback (GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glPauseTransformFeedback (source_location const &sourceLocation=source_location::current())
void abcg::glPauseTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glResumeTransformFeedback (source_location const &sourceLocation=source_location::current())
void abcg::glResumeTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
void abcg::glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
 
void abcg::glProgramBinary (GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
void abcg::glProgramBinary (GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void abcg::glProgramParameteri (GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
void abcg::glProgramParameteri (GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
 
void abcg::glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
void abcg::glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
 
void abcg::glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void abcg::glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
void abcg::glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindFragDataLocation (GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
void abcg::glBindFragDataLocation (GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
void abcg::glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
void abcg::glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetDoublev (GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
void abcg::glGetDoublev (GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
 

Detailed Description

@@ -655,7 +662,7 @@ diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp.js b/abcg/doc/html/abcgOpenGLFunction_8hpp.js index fed107553..4d81721e3 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp.js +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp.js @@ -125,8 +125,8 @@ var abcgOpenGLFunction_8hpp = [ "glGetShaderiv", "abcgOpenGLFunction_8hpp.html#aa074570fbd8a39ce2e899245b407044b", null ], [ "glGetShaderPrecisionFormat", "abcgOpenGLFunction_8hpp.html#a0690d7a9fb1fbe27f1630b51a6ef506f", null ], [ "glGetShaderSource", "abcgOpenGLFunction_8hpp.html#abe63fd43e8ff35c953ca7a58a9f50f24", null ], - [ "glGetString", "abcgOpenGLFunction_8hpp.html#af419f0698487fc55f9fd8b7a424eb633", null ], - [ "glGetStringi", "abcgOpenGLFunction_8hpp.html#ac2b042cb4fcd350f3efd9925f90bb068", null ], + [ "glGetString", "abcgOpenGLFunction_8hpp.html#a7813473dd0b2c5d0ac275c2a35c03cab", null ], + [ "glGetStringi", "abcgOpenGLFunction_8hpp.html#a606ec56e07694a280ac843d6ead4f1dc", null ], [ "glGetSynciv", "abcgOpenGLFunction_8hpp.html#a57fa9fe8caf214671576ed55b06f239f", null ], [ "glGetTexLevelParameterfv", "abcgOpenGLFunction_8hpp.html#a720dffe7d97e8ebaba17b6d87583fd59", null ], [ "glGetTexLevelParameteriv", "abcgOpenGLFunction_8hpp.html#aee3c58bf82ea8186bfab4f2942997022", null ], @@ -161,7 +161,7 @@ var abcgOpenGLFunction_8hpp = [ "glIsVertexArray", "abcgOpenGLFunction_8hpp.html#a5afdcd1166d09049b9bea8f425bbd0db", null ], [ "glLineWidth", "abcgOpenGLFunction_8hpp.html#aba2cae07b1fe8e188ff0fcc76ec9db8b", null ], [ "glLinkProgram", "abcgOpenGLFunction_8hpp.html#af84c0f4d0816181cba506f1703c037c2", null ], - [ "glMapBufferRange", "abcgOpenGLFunction_8hpp.html#aaa863c0c9f439036f6d2b58e375ee105", null ], + [ "glMapBufferRange", "abcgOpenGLFunction_8hpp.html#a180e56ad70b052b7d8ef64a03559afcc", null ], [ "glPauseTransformFeedback", "abcgOpenGLFunction_8hpp.html#a03d850c93d16ad308516bb83bb8ffa0d", null ], [ "glPixelStorei", "abcgOpenGLFunction_8hpp.html#a05ece875ff476f630548c8cf7a0d952b", null ], [ "glPolygonOffset", "abcgOpenGLFunction_8hpp.html#afa173d8901021cb88486592fcc300a14", null ], diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.map index e1d8fe979..1068d0bd4 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.map @@ -1,7 +1,11 @@ - - - - - + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.md5 index f4a080aee..3c3a6dccc 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.md5 @@ -1 +1 @@ -e09c5bab199c043401c59f8139fb3794 \ No newline at end of file +3b638ec4c6f45acb556aa283c9f1cb58 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.svg index bc34a548c..8e724e71c 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__dep__incl.svg @@ -4,83 +4,95 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node3->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node3->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.map b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.map index b54c809f5..645c5ebe0 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.map @@ -1,7 +1,11 @@ - - - - - + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.md5 index 9cdb02e74..03b09f5f0 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.md5 @@ -1 +1 @@ -ca6fb73caa01c895b78c0a61b7110896 \ No newline at end of file +c222fb7c59902de6ee9e5b35450eb819 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.svg b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.svg index bc0a32b31..5eef3316c 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp__incl.svg @@ -4,79 +4,91 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLFunction.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLFunction.hpp - + Node2 - - -source_location + + +source_location - + Node1->Node2 - - + + + + + - + Node3 - - -string_view + + +string_view - + Node1->Node3 - - + + + + + - + Node4 - - -type_traits + + +type_traits - + Node1->Node4 - - + + + + + - + Node5 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node1->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLFunction_8hpp_source.html b/abcg/doc/html/abcgOpenGLFunction_8hpp_source.html index 9b462dcfa..bff580b40 100644 --- a/abcg/doc/html/abcgOpenGLFunction_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLFunction_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,1734 +99,2244 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLFunction.hpp
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_OPENGL_FUNCTION_HPP_
-
15 #define ABCG_OPENGL_FUNCTION_HPP_
-
16 
-
17 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
18 #if __clang__
-
19 #include <experimental/source_location>
-
20 namespace abcg {
- -
22 } // namespace abcg
-
23 #else
-
24 #include <source_location>
-
25 namespace abcg {
- -
27 } // namespace abcg
-
28 #endif
-
29 #endif
-
30 
-
31 #include <string_view>
-
32 #include <type_traits>
-
33 
-
34 #include "abcgOpenGLExternal.hpp"
-
35 
-
36 #if defined(_MSC_VER)
-
37 // Disable "unreachable code" warnings for the case callGl is not specialized
-
38 // for functions that return void
-
39 #pragma warning(push)
-
40 #pragma warning(disable : 4702)
-
41 #endif
-
42 
-
43 namespace abcg {
-
44 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
45 
-
46 void checkGLError(source_location const &sourceLocation,
-
47  std::string_view appendString);
-
48 
-
61 template <typename TFun, typename... TArgs>
-
62 auto callGL(source_location const &sourceLocation, TFun &&function,
-
63  TArgs &&...args) {
-
64  checkGLError(sourceLocation, "BEFORE function call");
-
65  if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
-
66  // Specialization for functions that do not return void
-
67  auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
-
68  checkGLError(sourceLocation, "AFTER function call");
-
69  return res;
-
70  }
-
71  // Specialization for functions that return void
-
72  std::forward<TFun>(function)(std::forward<TArgs>(args)...);
-
73  checkGLError(sourceLocation, "AFTER function call");
-
74 }
-
75 
-
76 #else
-
77 
-
78 struct source_location {
-
79  constexpr static source_location current() noexcept {
-
80  return source_location{};
-
81  }
-
82 };
-
83 
-
95 template <typename TFun, typename... TArgs>
-
96 auto callGL([[maybe_unused]] source_location, TFun &&function,
-
97  TArgs &&...args) {
-
98  if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
-
99  // Specialization for functions that do not return void
-
100  auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
-
101  return res;
-
102  }
-
103  // Specialization for functions that return void
-
104  std::forward<TFun>(function)(std::forward<TArgs>(args)...);
-
105 }
-
106 #endif
-
107 
-
108 // NOLINTBEGIN(readability-identifier-length)
-
109 
-
110 // OpenGL ES 2.0 function definitions
-
111 
-
112 inline void glActiveTexture(
-
113  GLenum texture,
-
114  source_location const &sourceLocation = source_location::current()) {
-
115  callGL(sourceLocation, ::glActiveTexture, texture);
-
116 }
-
117 inline void glAttachShader(
-
118  GLuint program, GLuint shader,
-
119  source_location const &sourceLocation = source_location::current()) {
-
120  callGL(sourceLocation, ::glAttachShader, program, shader);
-
121 }
- -
123  GLuint program, GLuint index, GLchar const *name,
-
124  source_location const &sourceLocation = source_location::current()) {
-
125  callGL(sourceLocation, ::glBindAttribLocation, program, index, name);
-
126 }
-
127 inline void glBindBuffer(
-
128  GLenum target, GLuint buffer,
-
129  source_location const &sourceLocation = source_location::current()) {
-
130  callGL(sourceLocation, ::glBindBuffer, target, buffer);
-
131 }
-
132 inline void glBindFramebuffer(
-
133  GLenum target, GLuint framebuffer,
-
134  source_location const &sourceLocation = source_location::current()) {
-
135  callGL(sourceLocation, ::glBindFramebuffer, target, framebuffer);
-
136 }
-
137 inline void glBindRenderbuffer(
-
138  GLenum target, GLuint renderbuffer,
-
139  source_location const &sourceLocation = source_location::current()) {
-
140  callGL(sourceLocation, ::glBindRenderbuffer, target, renderbuffer);
-
141 }
-
142 inline void glBindTexture(
-
143  GLenum target, GLuint texture,
-
144  source_location const &sourceLocation = source_location::current()) {
-
145  callGL(sourceLocation, ::glBindTexture, target, texture);
-
146 }
-
147 inline void glBlendColor(
-
148  GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha,
-
149  source_location const &sourceLocation = source_location::current()) {
-
150  callGL(sourceLocation, ::glBlendColor, red, green, blue, alpha);
-
151 }
-
152 inline void glBlendEquation(GLenum mode, source_location const &sourceLocation =
-
153  source_location::current()) {
-
154  callGL(sourceLocation, ::glBlendEquation, mode);
-
155 }
- -
157  GLenum modeRGB, GLenum modeAlpha,
-
158  source_location const &sourceLocation = source_location::current()) {
-
159  callGL(sourceLocation, ::glBlendEquationSeparate, modeRGB, modeAlpha);
-
160 }
-
161 inline void glBlendFunc(
-
162  GLenum sfactor, GLenum dfactor,
-
163  source_location const &sourceLocation = source_location::current()) {
-
164  callGL(sourceLocation, ::glBlendFunc, sfactor, dfactor);
-
165 }
- -
167  GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha,
-
168  source_location const &sourceLocation = source_location::current()) {
-
169  callGL(sourceLocation, ::glBlendFuncSeparate, srcRGB, dstRGB, srcAlpha,
-
170  dstAlpha);
-
171 }
-
172 inline void glBufferData(
-
173  GLenum target, GLsizeiptr size, void const *data, GLenum usage,
-
174  source_location const &sourceLocation = source_location::current()) {
-
175  callGL(sourceLocation, ::glBufferData, target, size, data, usage);
-
176 }
-
177 inline void glBufferSubData(
-
178  GLenum target, GLintptr offset, GLsizeiptr size, void const *data,
-
179  source_location const &sourceLocation = source_location::current()) {
-
180  callGL(sourceLocation, ::glBufferSubData, target, offset, size, data);
-
181 }
- -
183  GLenum target,
-
184  source_location const &sourceLocation = source_location::current()) {
-
185  return callGL(sourceLocation, ::glCheckFramebufferStatus, target);
-
186 }
-
187 inline void
-
188 glClear(GLbitfield mask,
-
189  source_location const &sourceLocation = source_location::current()) {
-
190  callGL(sourceLocation, ::glClear, mask);
-
191 }
-
192 inline void glClearColor(
-
193  GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha,
-
194  source_location const &sourceLocation = source_location::current()) {
-
195  callGL(sourceLocation, ::glClearColor, red, green, blue, alpha);
-
196 }
-
197 inline void glClearDepthf(GLfloat d, source_location const &sourceLocation =
-
198  source_location::current()) {
-
199  callGL(sourceLocation, ::glClearDepthf, d);
-
200 }
-
201 inline void glClearStencil(GLint s, source_location const &sourceLocation =
-
202  source_location::current()) {
-
203  callGL(sourceLocation, ::glClearStencil, s);
-
204 }
-
205 inline void glColorMask(
-
206  GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha,
-
207  source_location const &sourceLocation = source_location::current()) {
-
208  callGL(sourceLocation, ::glColorMask, red, green, blue, alpha);
-
209 }
-
210 inline void glCompileShader(
-
211  GLuint shader,
-
212  source_location const &sourceLocation = source_location::current()) {
-
213  callGL(sourceLocation, ::glCompileShader, shader);
-
214 }
- -
216  GLenum target, GLint level, GLenum internalformat, GLsizei width,
-
217  GLsizei height, GLint border, GLsizei imageSize, void const *data,
-
218  source_location const &sourceLocation = source_location::current()) {
-
219  callGL(sourceLocation, ::glCompressedTexImage2D, target, level,
-
220  internalformat, width, height, border, imageSize, data);
-
221 }
- -
223  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
-
224  GLsizei height, GLenum format, GLsizei imageSize, void const *data,
-
225  source_location const &sourceLocation = source_location::current()) {
-
226  callGL(sourceLocation, ::glCompressedTexSubImage2D, target, level, xoffset,
-
227  yoffset, width, height, format, imageSize, data);
-
228 }
-
229 inline void glCopyTexImage2D(
-
230  GLenum target, GLint level, GLenum internalformat, GLint x, GLint y,
-
231  GLsizei width, GLsizei height, GLint border,
-
232  source_location const &sourceLocation = source_location::current()) {
-
233  callGL(sourceLocation, ::glCopyTexImage2D, target, level, internalformat, x,
-
234  y, width, height, border);
-
235 }
- -
237  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y,
-
238  GLsizei width, GLsizei height,
-
239  source_location const &sourceLocation = source_location::current()) {
-
240  callGL(sourceLocation, ::glCopyTexSubImage2D, target, level, xoffset, yoffset,
-
241  x, y, width, height);
-
242 }
-
243 inline GLuint glCreateProgram(
-
244  source_location const &sourceLocation = source_location::current()) {
-
245  return callGL(sourceLocation, ::glCreateProgram);
-
246 }
-
247 inline GLuint glCreateShader(
-
248  GLenum shaderType,
-
249  source_location const &sourceLocation = source_location::current()) {
-
250  return callGL(sourceLocation, ::glCreateShader, shaderType);
-
251 }
-
252 inline void
-
253 glCullFace(GLenum mode,
-
254  source_location const &sourceLocation = source_location::current()) {
-
255  return callGL(sourceLocation, ::glCullFace, mode);
-
256 }
-
257 inline void glDeleteBuffers(
-
258  GLsizei n, const GLuint *buffers,
-
259  source_location const &sourceLocation = source_location::current()) {
-
260  if (buffers == nullptr || *buffers == 0)
-
261  return;
-
262  callGL(sourceLocation, ::glDeleteBuffers, n, buffers);
-
263 }
- -
265  GLsizei n, GLuint const *framebuffers,
-
266  source_location const &sourceLocation = source_location::current()) {
-
267  if (framebuffers == nullptr || *framebuffers == 0)
-
268  return;
-
269  callGL(sourceLocation, ::glDeleteFramebuffers, n, framebuffers);
-
270 }
-
271 inline void glDeleteProgram(
-
272  GLuint program,
-
273  source_location const &sourceLocation = source_location::current()) {
-
274  if (program == 0)
-
275  return;
-
276  callGL(sourceLocation, ::glDeleteProgram, program);
-
277 }
- -
279  GLsizei n, GLuint *renderbuffers,
-
280  source_location const &sourceLocation = source_location::current()) {
-
281  if (renderbuffers == nullptr || *renderbuffers == 0)
-
282  return;
-
283  callGL(sourceLocation, ::glDeleteRenderbuffers, n, renderbuffers);
-
284 }
-
285 inline void glDeleteShader(
-
286  GLuint shader,
-
287  source_location const &sourceLocation = source_location::current()) {
-
288  if (shader == 0)
-
289  return;
-
290  callGL(sourceLocation, ::glDeleteShader, shader);
-
291 }
-
292 inline void glDeleteTextures(
-
293  GLsizei n, GLuint const *textures,
-
294  source_location const &sourceLocation = source_location::current()) {
-
295  if (textures == nullptr || *textures == 0)
-
296  return;
-
297  callGL(sourceLocation, ::glDeleteTextures, n, textures);
-
298 }
-
299 inline void glDepthFunc(GLenum func, source_location const &sourceLocation =
-
300  source_location::current()) {
-
301  callGL(sourceLocation, ::glDepthFunc, func);
-
302 }
-
303 inline void glDepthMask(GLboolean flag, source_location const &sourceLocation =
-
304  source_location::current()) {
-
305  callGL(sourceLocation, ::glDepthMask, flag);
-
306 }
-
307 inline void glDepthRangef(
-
308  GLfloat n, GLfloat f,
-
309  source_location const &sourceLocation = source_location::current()) {
-
310  callGL(sourceLocation, ::glDepthRangef, n, f);
-
311 }
-
312 inline void glDetachShader(
-
313  GLuint program, GLuint shader,
-
314  source_location const &sourceLocation = source_location::current()) {
-
315  callGL(sourceLocation, ::glDetachShader, program, shader);
-
316 }
-
317 inline void
-
318 glDisable(GLenum cap,
-
319  source_location const &sourceLocation = source_location::current()) {
-
320  callGL(sourceLocation, ::glDisable, cap);
-
321 }
- -
323  GLuint index,
-
324  source_location const &sourceLocation = source_location::current()) {
-
325  callGL(sourceLocation, ::glDisableVertexAttribArray, index);
-
326 }
-
327 inline void glDrawArrays(
-
328  GLenum mode, GLint first, GLsizei count,
-
329  source_location const &sourceLocation = source_location::current()) {
-
330  callGL(sourceLocation, ::glDrawArrays, mode, first, count);
-
331 }
-
332 inline void glDrawElements(
-
333  GLenum mode, GLsizei count, GLenum type, void const *indices,
-
334  source_location const &sourceLocation = source_location::current()) {
-
335  callGL(sourceLocation, ::glDrawElements, mode, count, type, indices);
-
336 }
-
337 inline void
-
338 glEnable(GLenum cap,
-
339  source_location const &sourceLocation = source_location::current()) {
-
340  callGL(sourceLocation, ::glEnable, cap);
-
341 }
- -
343  GLuint index,
-
344  source_location const &sourceLocation = source_location::current()) {
-
345  callGL(sourceLocation, ::glEnableVertexAttribArray, index);
-
346 }
-
347 inline void
-
348 glFinish(source_location const &sourceLocation = source_location::current()) {
-
349  callGL(sourceLocation, ::glFinish);
-
350 }
-
351 inline void
-
352 glFlush(source_location const &sourceLocation = source_location::current()) {
-
353  callGL(sourceLocation, ::glFlush);
-
354 }
- -
356  GLenum target, GLenum attachment, GLenum renderbuffertarget,
-
357  GLuint renderbuffer,
-
358  source_location const &sourceLocation = source_location::current()) {
-
359  callGL(sourceLocation, ::glFramebufferRenderbuffer, target, attachment,
-
360  renderbuffertarget, renderbuffer);
-
361 }
- -
363  GLenum target, GLenum attachment, GLenum textarget, GLuint texture,
-
364  GLint level,
-
365  source_location const &sourceLocation = source_location::current()) {
-
366  callGL(sourceLocation, ::glFramebufferTexture2D, target, attachment,
-
367  textarget, texture, level);
-
368 }
-
369 inline void glFrontFace(GLenum mode, source_location const &sourceLocation =
-
370  source_location::current()) {
-
371  callGL(sourceLocation, ::glFrontFace, mode);
-
372 }
-
373 inline void glGenBuffers(
-
374  GLsizei n, GLuint *buffers,
-
375  source_location const &sourceLocation = source_location::current()) {
-
376  callGL(sourceLocation, ::glGenBuffers, n, buffers);
-
377 }
-
378 inline void glGenerateMipmap(
-
379  GLenum target,
-
380  source_location const &sourceLocation = source_location::current()) {
-
381  callGL(sourceLocation, ::glGenerateMipmap, target);
-
382 }
-
383 inline void glGenFramebuffers(
-
384  GLsizei n, GLuint *ids,
-
385  source_location const &sourceLocation = source_location::current()) {
-
386  callGL(sourceLocation, ::glGenFramebuffers, n, ids);
-
387 }
-
388 inline void glGenRenderbuffers(
-
389  GLsizei n, GLuint *renderbuffers,
-
390  source_location const &sourceLocation = source_location::current()) {
-
391  callGL(sourceLocation, ::glGenRenderbuffers, n, renderbuffers);
-
392 }
-
393 inline void glGenTextures(
-
394  GLsizei n, GLuint *textures,
-
395  source_location const &sourceLocation = source_location::current()) {
-
396  callGL(sourceLocation, ::glGenTextures, n, textures);
-
397 }
-
398 inline void glGetActiveAttrib(
-
399  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
-
400  GLenum *type, GLchar *name,
-
401  source_location const &sourceLocation = source_location::current()) {
-
402  callGL(sourceLocation, ::glGetActiveAttrib, program, index, bufSize, length,
-
403  size, type, name);
-
404 }
-
405 inline void glGetActiveUniform(
-
406  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
-
407  GLenum *type, GLchar *name,
-
408  source_location const &sourceLocation = source_location::current()) {
-
409  callGL(sourceLocation, ::glGetActiveUniform, program, index, bufSize, length,
-
410  size, type, name);
-
411 }
- -
413  GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders,
-
414  source_location const &sourceLocation = source_location::current()) {
-
415  callGL(sourceLocation, ::glGetAttachedShaders, program, maxCount, count,
-
416  shaders);
-
417 }
-
418 inline GLint glGetAttribLocation(
-
419  GLuint program, GLchar const *name,
-
420  source_location const &sourceLocation = source_location::current()) {
-
421  return callGL(sourceLocation, ::glGetAttribLocation, program, name);
-
422 }
-
423 inline void glGetBooleanv(
-
424  GLenum pname, GLboolean *params,
-
425  source_location const &sourceLocation = source_location::current()) {
-
426  callGL(sourceLocation, ::glGetBooleanv, pname, params);
-
427 }
- -
429  GLenum target, GLenum pname, GLint *params,
-
430  source_location const &sourceLocation = source_location::current()) {
-
431  callGL(sourceLocation, ::glGetBufferParameteriv, target, pname, params);
-
432 }
-
433 inline void glGetFloatv(
-
434  GLenum pname, GLfloat *params,
-
435  source_location const &sourceLocation = source_location::current()) {
-
436  callGL(sourceLocation, ::glGetFloatv, pname, params);
-
437 }
- -
439  GLenum target, GLenum attachment, GLenum pname, GLint *params,
-
440  source_location const &sourceLocation = source_location::current()) {
-
441  callGL(sourceLocation, ::glGetFramebufferAttachmentParameteriv, target,
-
442  attachment, pname, params);
-
443 }
-
444 inline void glGetIntegerv(
-
445  GLenum pname, GLint *params,
-
446  source_location const &sourceLocation = source_location::current()) {
-
447  callGL(sourceLocation, ::glGetIntegerv, pname, params);
-
448 }
-
449 inline void glGetProgramiv(
-
450  GLuint program, GLenum pname, GLint *params,
-
451  source_location const &sourceLocation = source_location::current()) {
-
452  callGL(sourceLocation, ::glGetProgramiv, program, pname, params);
-
453 }
- -
455  GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
-
456  source_location const &sourceLocation = source_location::current()) {
-
457  callGL(sourceLocation, ::glGetProgramInfoLog, program, bufSize, length,
-
458  infoLog);
-
459 }
- -
461  GLenum target, GLenum pname, GLint *params,
-
462  source_location const &sourceLocation = source_location::current()) {
-
463  callGL(sourceLocation, ::glGetRenderbufferParameteriv, target, pname, params);
-
464 }
-
465 inline void glGetShaderiv(
-
466  GLuint shader, GLenum pname, GLint *params,
-
467  source_location const &sourceLocation = source_location::current()) {
-
468  callGL(sourceLocation, ::glGetShaderiv, shader, pname, params);
-
469 }
-
470 inline void glGetShaderInfoLog(
-
471  GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
-
472  source_location const &sourceLocation = source_location::current()) {
-
473  callGL(sourceLocation, ::glGetShaderInfoLog, shader, bufSize, length,
-
474  infoLog);
-
475 }
- -
477  GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision,
-
478  source_location const &sourceLocation = source_location::current()) {
-
479  callGL(sourceLocation, ::glGetShaderPrecisionFormat, shadertype,
-
480  precisiontype, range, precision);
-
481 }
-
482 inline void glGetShaderSource(
-
483  GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source,
-
484  source_location const &sourceLocation = source_location::current()) {
-
485  callGL(sourceLocation, ::glGetShaderSource, shader, bufSize, length, source);
-
486 }
-
487 inline const GLubyte *glGetString(
-
488  GLenum name,
-
489  source_location const &sourceLocation = source_location::current()) {
-
490  return callGL(sourceLocation, ::glGetString, name);
-
491 }
- -
493  GLenum target, GLenum pname, GLfloat *params,
-
494  source_location const &sourceLocation = source_location::current()) {
-
495  callGL(sourceLocation, ::glGetTexParameterfv, target, pname, params);
-
496 }
- -
498  GLenum target, GLenum pname, GLint *params,
-
499  source_location const &sourceLocation = source_location::current()) {
-
500  callGL(sourceLocation, ::glGetTexParameteriv, target, pname, params);
-
501 }
-
502 inline void glGetUniformfv(
-
503  GLuint program, GLint location, GLfloat *params,
-
504  source_location const &sourceLocation = source_location::current()) {
-
505  callGL(sourceLocation, ::glGetUniformfv, program, location, params);
-
506 }
-
507 inline void glGetUniformiv(
-
508  GLuint program, GLint location, GLint *params,
-
509  source_location const &sourceLocation = source_location::current()) {
-
510  callGL(sourceLocation, ::glGetUniformiv, program, location, params);
-
511 }
-
512 inline GLint glGetUniformLocation(
-
513  GLuint program, GLchar const *name,
-
514  source_location const &sourceLocation = source_location::current()) {
-
515  return callGL(sourceLocation, ::glGetUniformLocation, program, name);
-
516 }
- -
518  GLuint index, GLenum pname, GLfloat *params,
-
519  source_location const &sourceLocation = source_location::current()) {
-
520  callGL(sourceLocation, ::glGetVertexAttribfv, index, pname, params);
-
521 }
- -
523  GLuint index, GLenum pname, GLint *params,
-
524  source_location const &sourceLocation = source_location::current()) {
-
525  callGL(sourceLocation, ::glGetVertexAttribiv, index, pname, params);
-
526 }
- -
528  GLuint index, GLenum pname, void **pointer,
-
529  source_location const &sourceLocation = source_location::current()) {
-
530  callGL(sourceLocation, ::glGetVertexAttribPointerv, index, pname, pointer);
-
531 }
-
532 inline void
-
533 glHint(GLenum target, GLenum mode,
-
534  source_location const &sourceLocation = source_location::current()) {
-
535  callGL(sourceLocation, ::glHint, target, mode);
-
536 }
-
537 inline GLboolean
-
538 glIsBuffer(GLuint buffer,
-
539  source_location const &sourceLocation = source_location::current()) {
-
540  return callGL(sourceLocation, ::glIsBuffer, buffer);
-
541 }
-
542 inline GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation =
-
543  source_location::current()) {
-
544  return callGL(sourceLocation, ::glIsEnabled, cap);
-
545 }
-
546 inline GLboolean glIsFramebuffer(
-
547  GLuint framebuffer,
-
548  source_location const &sourceLocation = source_location::current()) {
-
549  return callGL(sourceLocation, ::glIsFramebuffer, framebuffer);
-
550 }
-
551 inline GLboolean glIsProgram(
-
552  GLuint program,
-
553  source_location const &sourceLocation = source_location::current()) {
-
554  return callGL(sourceLocation, ::glIsProgram, program);
-
555 }
-
556 inline GLboolean glIsRenderbuffer(
-
557  GLuint renderbuffer,
-
558  source_location const &sourceLocation = source_location::current()) {
-
559  return callGL(sourceLocation, ::glIsRenderbuffer, renderbuffer);
-
560 }
-
561 inline GLboolean
-
562 glIsShader(GLuint shader,
-
563  source_location const &sourceLocation = source_location::current()) {
-
564  return callGL(sourceLocation, ::glIsShader, shader);
-
565 }
-
566 inline GLboolean glIsTexture(
-
567  GLuint texture,
-
568  source_location const &sourceLocation = source_location::current()) {
-
569  return callGL(sourceLocation, ::glIsTexture, texture);
-
570 }
-
571 inline void glLineWidth(GLfloat width, source_location const &sourceLocation =
-
572  source_location::current()) {
-
573  callGL(sourceLocation, ::glLineWidth, width);
-
574 }
-
575 inline void glLinkProgram(
-
576  GLuint program,
-
577  source_location const &sourceLocation = source_location::current()) {
-
578  callGL(sourceLocation, ::glLinkProgram, program);
-
579 }
-
580 inline void glPixelStorei(
-
581  GLenum pname, GLint param,
-
582  source_location const &sourceLocation = source_location::current()) {
-
583  callGL(sourceLocation, ::glPixelStorei, pname, param);
-
584 }
-
585 inline void glPolygonOffset(
-
586  GLfloat factor, GLfloat units,
-
587  source_location const &sourceLocation = source_location::current()) {
-
588  callGL(sourceLocation, ::glPolygonOffset, factor, units);
-
589 }
-
590 inline void glReadPixels(
-
591  GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type,
-
592  void *pixels,
-
593  source_location const &sourceLocation = source_location::current()) {
-
594  callGL(sourceLocation, ::glReadPixels, x, y, width, height, format, type,
-
595  pixels);
-
596 }
- -
598  source_location const &sourceLocation = source_location::current()) {
-
599  callGL(sourceLocation, ::glReleaseShaderCompiler);
-
600 }
- -
602  GLenum target, GLenum internalformat, GLsizei width, GLsizei height,
-
603  source_location const &sourceLocation = source_location::current()) {
-
604  callGL(sourceLocation, ::glRenderbufferStorage, target, internalformat, width,
-
605  height);
-
606 }
-
607 inline void glSampleCoverage(
-
608  GLfloat value, GLboolean invert,
-
609  source_location const &sourceLocation = source_location::current()) {
-
610  callGL(sourceLocation, ::glSampleCoverage, value, invert);
-
611 }
-
612 inline void
-
613 glScissor(GLint x, GLint y, GLsizei width, GLsizei height,
-
614  source_location const &sourceLocation = source_location::current()) {
-
615  callGL(sourceLocation, ::glScissor, x, y, width, height);
-
616 }
-
617 inline void glShaderBinary(
-
618  GLsizei count, GLuint const *shaders, GLenum binaryformat,
-
619  void const *binary, GLsizei length,
-
620  source_location const &sourceLocation = source_location::current()) {
-
621  callGL(sourceLocation, ::glShaderBinary, count, shaders, binaryformat, binary,
-
622  length);
-
623 }
-
624 inline void glShaderSource(
-
625  GLuint shader, GLsizei count, GLchar const **string, GLint const *length,
-
626  source_location const &sourceLocation = source_location::current()) {
-
627  callGL(sourceLocation, ::glShaderSource, shader, count, string, length);
-
628 }
-
629 inline void glStencilFunc(
-
630  GLenum func, GLint ref, GLuint mask,
-
631  source_location const &sourceLocation = source_location::current()) {
-
632  callGL(sourceLocation, ::glStencilFunc, func, ref, mask);
-
633 }
- -
635  GLenum face, GLenum func, GLint ref, GLuint mask,
-
636  source_location const &sourceLocation = source_location::current()) {
-
637  callGL(sourceLocation, ::glStencilFuncSeparate, face, func, ref, mask);
-
638 }
-
639 inline void glStencilMask(GLuint mask, source_location const &sourceLocation =
-
640  source_location::current()) {
-
641  callGL(sourceLocation, ::glStencilMask, mask);
-
642 }
- -
644  GLenum face, GLuint mask,
-
645  source_location const &sourceLocation = source_location::current()) {
-
646  callGL(sourceLocation, ::glStencilMaskSeparate, face, mask);
-
647 }
-
648 inline void glStencilOp(
-
649  GLenum fail, GLenum zfail, GLenum zpass,
-
650  source_location const &sourceLocation = source_location::current()) {
-
651  callGL(sourceLocation, ::glStencilOp, fail, zfail, zpass);
-
652 }
- -
654  GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass,
-
655  source_location const &sourceLocation = source_location::current()) {
-
656  callGL(sourceLocation, ::glStencilOpSeparate, face, sfail, dpfail, dppass);
-
657 }
-
658 inline void glTexImage2D(
-
659  GLenum target, GLint level, GLint internalformat, GLsizei width,
-
660  GLsizei height, GLint border, GLenum format, GLenum type, void const *data,
-
661  source_location const &sourceLocation = source_location::current()) {
-
662  callGL(sourceLocation, ::glTexImage2D, target, level, internalformat, width,
-
663  height, border, format, type, data);
-
664 }
-
665 
-
666 inline void glTexParameterf(
-
667  GLenum target, GLenum pname, GLfloat param,
-
668  source_location const &sourceLocation = source_location::current()) {
-
669  callGL(sourceLocation, ::glTexParameterf, target, pname, param);
-
670 }
-
671 inline void glTexParameterfv(
-
672  GLenum target, GLenum pname, GLfloat const *params,
-
673  source_location const &sourceLocation = source_location::current()) {
-
674  callGL(sourceLocation, ::glTexParameterfv, target, pname, params);
-
675 }
-
676 inline void glTexParameteri(
-
677  GLenum target, GLenum pname, GLint param,
-
678  source_location const &sourceLocation = source_location::current()) {
-
679  callGL(sourceLocation, ::glTexParameteri, target, pname, param);
-
680 }
-
681 inline void glTexParameteriv(
-
682  GLenum target, GLenum pname, GLint const *params,
-
683  source_location const &sourceLocation = source_location::current()) {
-
684  callGL(sourceLocation, ::glTexParameteriv, target, pname, params);
-
685 }
-
686 inline void glTexSubImage2D(
-
687  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
-
688  GLsizei height, GLenum format, GLenum type, void const *pixels,
-
689  source_location const &sourceLocation = source_location::current()) {
-
690  callGL(sourceLocation, ::glTexSubImage2D, target, level, xoffset, yoffset,
-
691  width, height, format, type, pixels);
-
692 }
-
693 inline void glUniform1f(
-
694  GLint location, GLfloat v0,
-
695  source_location const &sourceLocation = source_location::current()) {
-
696  callGL(sourceLocation, ::glUniform1f, location, v0);
-
697 }
-
698 inline void glUniform1fv(
-
699  GLint location, GLsizei count, GLfloat const *value,
-
700  source_location const &sourceLocation = source_location::current()) {
-
701  callGL(sourceLocation, ::glUniform1fv, location, count, value);
-
702 }
-
703 inline void glUniform1i(
-
704  GLint location, GLint v0,
-
705  source_location const &sourceLocation = source_location::current()) {
-
706  callGL(sourceLocation, ::glUniform1i, location, v0);
-
707 }
-
708 inline void glUniform1iv(
-
709  GLint location, GLsizei count, GLint const *value,
-
710  source_location const &sourceLocation = source_location::current()) {
-
711  callGL(sourceLocation, ::glUniform1iv, location, count, value);
-
712 }
-
713 inline void glUniform2f(
-
714  GLint location, GLfloat v0, GLfloat v1,
-
715  source_location const &sourceLocation = source_location::current()) {
-
716  callGL(sourceLocation, ::glUniform2f, location, v0, v1);
-
717 }
-
718 inline void glUniform2fv(
-
719  GLint location, GLsizei count, GLfloat const *value,
-
720  source_location const &sourceLocation = source_location::current()) {
-
721  callGL(sourceLocation, ::glUniform2fv, location, count, value);
-
722 }
-
723 inline void glUniform2i(
-
724  GLint location, GLint v0, GLint v1,
-
725  source_location const &sourceLocation = source_location::current()) {
-
726  callGL(sourceLocation, ::glUniform2i, location, v0, v1);
-
727 }
-
728 inline void glUniform2iv(
-
729  GLint location, GLsizei count, GLint const *value,
-
730  source_location const &sourceLocation = source_location::current()) {
-
731  callGL(sourceLocation, ::glUniform2iv, location, count, value);
-
732 }
-
733 inline void glUniform3f(
-
734  GLint location, GLfloat v0, GLfloat v1, GLfloat v2,
-
735  source_location const &sourceLocation = source_location::current()) {
-
736  callGL(sourceLocation, ::glUniform3f, location, v0, v1, v2);
-
737 }
-
738 inline void glUniform3fv(
-
739  GLint location, GLsizei count, GLfloat const *value,
-
740  source_location const &sourceLocation = source_location::current()) {
-
741  callGL(sourceLocation, ::glUniform3fv, location, count, value);
-
742 }
-
743 inline void glUniform3i(
-
744  GLint location, GLint v0, GLint v1, GLint v2,
-
745  source_location const &sourceLocation = source_location::current()) {
-
746  callGL(sourceLocation, ::glUniform3i, location, v0, v1, v2);
-
747 }
-
748 inline void glUniform3iv(
-
749  GLint location, GLsizei count, GLint const *value,
-
750  source_location const &sourceLocation = source_location::current()) {
-
751  callGL(sourceLocation, ::glUniform3iv, location, count, value);
-
752 }
-
753 inline void glUniform4f(
-
754  GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3,
-
755  source_location const &sourceLocation = source_location::current()) {
-
756  callGL(sourceLocation, ::glUniform4f, location, v0, v1, v2, v3);
-
757 }
-
758 inline void glUniform4fv(
-
759  GLint location, GLsizei count, GLfloat const *value,
-
760  source_location const &sourceLocation = source_location::current()) {
-
761  callGL(sourceLocation, ::glUniform4fv, location, count, value);
-
762 }
-
763 inline void glUniform4i(
-
764  GLint location, GLint v0, GLint v1, GLint v2, GLint v3,
-
765  source_location const &sourceLocation = source_location::current()) {
-
766  callGL(sourceLocation, ::glUniform4i, location, v0, v1, v2, v3);
-
767 }
-
768 inline void glUniform4iv(
-
769  GLint location, GLsizei count, GLint const *value,
-
770  source_location const &sourceLocation = source_location::current()) {
-
771  callGL(sourceLocation, ::glUniform4iv, location, count, value);
-
772 }
-
773 inline void glUniformMatrix2fv(
-
774  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
775  source_location const &sourceLocation = source_location::current()) {
-
776  callGL(sourceLocation, ::glUniformMatrix2fv, location, count, transpose,
-
777  value);
-
778 }
-
779 inline void glUniformMatrix3fv(
-
780  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
781  source_location const &sourceLocation = source_location::current()) {
-
782  callGL(sourceLocation, ::glUniformMatrix3fv, location, count, transpose,
-
783  value);
-
784 }
-
785 inline void glUniformMatrix4fv(
-
786  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
787  source_location const &sourceLocation = source_location::current()) {
-
788  callGL(sourceLocation, ::glUniformMatrix4fv, location, count, transpose,
-
789  value);
-
790 }
-
791 inline void glUseProgram(GLuint program, source_location const &sourceLocation =
-
792  source_location::current()) {
-
793  callGL(sourceLocation, ::glUseProgram, program);
-
794 }
-
795 inline void glValidateProgram(
-
796  GLuint program,
-
797  source_location const &sourceLocation = source_location::current()) {
-
798  callGL(sourceLocation, ::glValidateProgram, program);
-
799 }
-
800 inline void glVertexAttrib1f(
-
801  GLuint index, GLfloat x,
-
802  source_location const &sourceLocation = source_location::current()) {
-
803  callGL(sourceLocation, ::glVertexAttrib1f, index, x);
-
804 }
-
805 inline void glVertexAttrib1fv(
-
806  GLuint index, GLfloat const *v,
-
807  source_location const &sourceLocation = source_location::current()) {
-
808  callGL(sourceLocation, ::glVertexAttrib1fv, index, v);
-
809 }
-
810 inline void glVertexAttrib2f(
-
811  GLuint index, GLfloat x, GLfloat y,
-
812  source_location const &sourceLocation = source_location::current()) {
-
813  callGL(sourceLocation, ::glVertexAttrib2f, index, x, y);
-
814 }
-
815 inline void glVertexAttrib2fv(
-
816  GLuint index, GLfloat const *v,
-
817  source_location const &sourceLocation = source_location::current()) {
-
818  callGL(sourceLocation, ::glVertexAttrib2fv, index, v);
-
819 }
-
820 inline void glVertexAttrib3f(
-
821  GLuint index, GLfloat x, GLfloat y, GLfloat z,
-
822  source_location const &sourceLocation = source_location::current()) {
-
823  callGL(sourceLocation, ::glVertexAttrib3f, index, x, y, z);
-
824 }
-
825 inline void glVertexAttrib3fv(
-
826  GLuint index, GLfloat const *v,
-
827  source_location const &sourceLocation = source_location::current()) {
-
828  callGL(sourceLocation, ::glVertexAttrib3fv, index, v);
-
829 }
-
830 inline void glVertexAttrib4f(
-
831  GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w,
-
832  source_location const &sourceLocation = source_location::current()) {
-
833  callGL(sourceLocation, ::glVertexAttrib4f, index, x, y, z, w);
-
834 }
-
835 inline void glVertexAttrib4fv(
-
836  GLuint index, GLfloat const *v,
-
837  source_location const &sourceLocation = source_location::current()) {
-
838  callGL(sourceLocation, ::glVertexAttrib4fv, index, v);
-
839 }
- -
841  GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
-
842  void const *pointer,
-
843  source_location const &sourceLocation = source_location::current()) {
-
844  callGL(sourceLocation, ::glVertexAttribPointer, index, size, type, normalized,
-
845  stride, pointer);
-
846 }
-
847 inline void
-
848 glViewport(GLint x, GLint y, GLsizei width, GLsizei height,
-
849  source_location const &sourceLocation = source_location::current()) {
-
850  callGL(sourceLocation, ::glViewport, x, y, width, height);
-
851 }
-
852 
-
853 // OpenGL ES 3.0 function definitions
-
854 
-
855 inline void glReadBuffer(GLenum src, source_location const &sourceLocation =
-
856  source_location::current()) {
-
857  callGL(sourceLocation, ::glReadBuffer, src);
-
858 }
- -
860  GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type,
-
861  void const *indices,
-
862  source_location const &sourceLocation = source_location::current()) {
-
863  callGL(sourceLocation, ::glDrawRangeElements, mode, start, end, count, type,
-
864  indices);
-
865 }
-
866 inline void glTexImage3D(
-
867  GLenum target, GLint level, GLint internalformat, GLsizei width,
-
868  GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type,
-
869  void const *pixels,
-
870  source_location const &sourceLocation = source_location::current()) {
-
871  callGL(sourceLocation, ::glTexImage3D, target, level, internalformat, width,
-
872  height, depth, border, format, type, pixels);
-
873 }
-
874 inline void glTexSubImage3D(
-
875  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
876  GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type,
-
877  void const *pixels,
-
878  source_location const &sourceLocation = source_location::current()) {
-
879  callGL(sourceLocation, ::glTexSubImage3D, target, level, xoffset, yoffset,
-
880  zoffset, width, height, depth, format, type, pixels);
-
881 }
- -
883  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
884  GLint x, GLint y, GLsizei width, GLsizei height,
-
885  source_location const &sourceLocation = source_location::current()) {
-
886  callGL(sourceLocation, ::glCopyTexSubImage3D, target, level, xoffset, yoffset,
-
887  zoffset, x, y, width, height);
-
888 }
- -
890  GLenum target, GLint level, GLenum internalformat, GLsizei width,
-
891  GLsizei height, GLsizei depth, GLint border, GLsizei imageSize,
-
892  void const *data,
-
893  source_location const &sourceLocation = source_location::current()) {
-
894  callGL(sourceLocation, ::glCompressedTexImage3D, target, level,
-
895  internalformat, width, height, depth, border, imageSize, data);
-
896 }
- -
898  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
899  GLsizei width, GLsizei height, GLsizei depth, GLenum format,
-
900  GLsizei imageSize, void const *data,
-
901  source_location const &sourceLocation = source_location::current()) {
-
902  callGL(sourceLocation, ::glCompressedTexSubImage3D, target, level, xoffset,
-
903  yoffset, zoffset, width, height, depth, format, imageSize, data);
-
904 }
-
905 inline void glGenQueries(
-
906  GLsizei n, GLuint *ids,
-
907  source_location const &sourceLocation = source_location::current()) {
-
908  callGL(sourceLocation, ::glGenQueries, n, ids);
-
909 }
-
910 inline void glDeleteQueries(
-
911  GLsizei n, GLuint const *ids,
-
912  source_location const &sourceLocation = source_location::current()) {
-
913  callGL(sourceLocation, ::glDeleteQueries, n, ids);
-
914 }
-
915 inline GLboolean
-
916 glIsQuery(GLuint id,
-
917  source_location const &sourceLocation = source_location::current()) {
-
918  return callGL(sourceLocation, ::glIsQuery, id);
-
919 }
-
920 inline void glBeginQuery(
-
921  GLenum target, GLuint id,
-
922  source_location const &sourceLocation = source_location::current()) {
-
923  callGL(sourceLocation, ::glBeginQuery, target, id);
-
924 }
-
925 inline void
-
926 glEndQuery(GLenum target,
-
927  source_location const &sourceLocation = source_location::current()) {
-
928  callGL(sourceLocation, ::glEndQuery, target);
-
929 }
-
930 inline void glGetQueryiv(
-
931  GLenum target, GLenum pname, GLint *params,
-
932  source_location const &sourceLocation = source_location::current()) {
-
933  callGL(sourceLocation, ::glGetQueryiv, target, pname, params);
-
934 }
- -
936  GLuint id, GLenum pname, GLuint *params,
-
937  source_location const &sourceLocation = source_location::current()) {
-
938  callGL(sourceLocation, ::glGetQueryObjectuiv, id, pname, params);
-
939 }
-
940 inline GLboolean glUnmapBuffer(
-
941  GLenum target,
-
942  source_location const &sourceLocation = source_location::current()) {
-
943  return callGL(sourceLocation, ::glUnmapBuffer, target);
-
944 }
- -
946  GLenum target, GLenum pname, void **params,
-
947  source_location const &sourceLocation = source_location::current()) {
-
948  callGL(sourceLocation, ::glGetBufferPointerv, target, pname, params);
-
949 }
-
950 inline void glDrawBuffers(
-
951  GLsizei n, GLenum const *bufs,
-
952  source_location const &sourceLocation = source_location::current()) {
-
953  callGL(sourceLocation, ::glDrawBuffers, n, bufs);
-
954 }
- -
956  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
957  source_location const &sourceLocation = source_location::current()) {
-
958  callGL(sourceLocation, ::glUniformMatrix2x3fv, location, count, transpose,
-
959  value);
-
960 }
- -
962  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
963  source_location const &sourceLocation = source_location::current()) {
-
964  callGL(sourceLocation, ::glUniformMatrix3x2fv, location, count, transpose,
-
965  value);
-
966 }
- -
968  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
969  source_location const &sourceLocation = source_location::current()) {
-
970  callGL(sourceLocation, ::glUniformMatrix2x4fv, location, count, transpose,
-
971  value);
-
972 }
- -
974  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
975  source_location const &sourceLocation = source_location::current()) {
-
976  callGL(sourceLocation, ::glUniformMatrix4x2fv, location, count, transpose,
-
977  value);
-
978 }
- -
980  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
981  source_location const &sourceLocation = source_location::current()) {
-
982  callGL(sourceLocation, ::glUniformMatrix3x4fv, location, count, transpose,
-
983  value);
-
984 }
- -
986  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
987  source_location const &sourceLocation = source_location::current()) {
-
988  callGL(sourceLocation, ::glUniformMatrix4x3fv, location, count, transpose,
-
989  value);
-
990 }
-
991 inline void glBlitFramebuffer(
-
992  GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
-
993  GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter,
-
994  source_location const &sourceLocation = source_location::current()) {
-
995  callGL(sourceLocation, ::glBlitFramebuffer, srcX0, srcY0, srcX1, srcY1, dstX0,
-
996  dstY0, dstX1, dstY1, mask, filter);
-
997 }
- -
999  GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
-
1000  GLsizei height,
-
1001  source_location const &sourceLocation = source_location::current()) {
-
1002  callGL(sourceLocation, ::glRenderbufferStorageMultisample, target, samples,
-
1003  internalformat, width, height);
-
1004 }
- -
1006  GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer,
-
1007  source_location const &sourceLocation = source_location::current()) {
-
1008  callGL(sourceLocation, ::glFramebufferTextureLayer, target, attachment,
-
1009  texture, level, layer);
-
1010 }
-
1011 inline void *glMapBufferRange(
-
1012  GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access,
-
1013  source_location const &sourceLocation = source_location::current()) {
-
1014  return callGL(sourceLocation, ::glMapBufferRange, target, offset, length,
-
1015  access);
-
1016 }
- -
1018  GLenum target, GLintptr offset, GLsizeiptr length,
-
1019  source_location const &sourceLocation = source_location::current()) {
-
1020  callGL(sourceLocation, ::glFlushMappedBufferRange, target, offset, length);
-
1021 }
-
1022 inline void glBindVertexArray(
-
1023  GLuint array,
-
1024  source_location const &sourceLocation = source_location::current()) {
-
1025  callGL(sourceLocation, ::glBindVertexArray, array);
-
1026 }
- -
1028  GLsizei n, GLuint const *arrays,
-
1029  source_location const &sourceLocation = source_location::current()) {
-
1030  callGL(sourceLocation, ::glDeleteVertexArrays, n, arrays);
-
1031 }
-
1032 inline void glGenVertexArrays(
-
1033  GLsizei n, GLuint *arrays,
-
1034  source_location const &sourceLocation = source_location::current()) {
-
1035  callGL(sourceLocation, ::glGenVertexArrays, n, arrays);
-
1036 }
-
1037 inline GLboolean glIsVertexArray(
-
1038  GLuint array,
-
1039  source_location const &sourceLocation = source_location::current()) {
-
1040  return callGL(sourceLocation, ::glIsVertexArray, array);
-
1041 }
-
1042 inline void glGetIntegeri_v(
-
1043  GLenum target, GLuint index, GLint *data,
-
1044  source_location const &sourceLocation = source_location::current()) {
-
1045  callGL(sourceLocation, ::glGetIntegeri_v, target, index, data);
-
1046 }
- -
1048  GLenum primitiveMode,
-
1049  source_location const &sourceLocation = source_location::current()) {
-
1050  callGL(sourceLocation, ::glBeginTransformFeedback, primitiveMode);
-
1051 }
- -
1053  source_location const &sourceLocation = source_location::current()) {
-
1054  callGL(sourceLocation, ::glEndTransformFeedback);
-
1055 }
-
1056 inline void glBindBufferRange(
-
1057  GLenum target, GLuint index, GLuint buffer, GLintptr offset,
-
1058  GLsizeiptr size,
-
1059  source_location const &sourceLocation = source_location::current()) {
-
1060  callGL(sourceLocation, ::glBindBufferRange, target, index, buffer, offset,
-
1061  size);
-
1062 }
-
1063 inline void glBindBufferBase(
-
1064  GLenum target, GLuint index, GLuint buffer,
-
1065  source_location const &sourceLocation = source_location::current()) {
-
1066  callGL(sourceLocation, ::glBindBufferBase, target, index, buffer);
-
1067 }
- -
1069  GLuint program, GLsizei count, GLchar const *const *varyings,
-
1070  GLenum bufferMode,
-
1071  source_location const &sourceLocation = source_location::current()) {
-
1072  callGL(sourceLocation, ::glTransformFeedbackVaryings, program, count,
-
1073  varyings, bufferMode);
-
1074 }
- -
1076  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length,
-
1077  GLsizei *size, GLenum *type, GLchar *name,
-
1078  source_location const &sourceLocation = source_location::current()) {
-
1079  callGL(sourceLocation, ::glGetTransformFeedbackVarying, program, index,
-
1080  bufSize, length, size, type, name);
-
1081 }
- -
1083  GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer,
-
1084  source_location const &sourceLocation = source_location::current()) {
-
1085  callGL(sourceLocation, ::glVertexAttribIPointer, index, size, type, stride,
-
1086  pointer);
-
1087 }
- -
1089  GLuint index, GLenum pname, GLint *params,
-
1090  source_location const &sourceLocation = source_location::current()) {
-
1091  callGL(sourceLocation, ::glGetVertexAttribIiv, index, pname, params);
-
1092 }
- -
1094  GLuint index, GLenum pname, GLuint *params,
-
1095  source_location const &sourceLocation = source_location::current()) {
-
1096  callGL(sourceLocation, ::glGetVertexAttribIuiv, index, pname, params);
-
1097 }
-
1098 inline void glVertexAttribI4i(
-
1099  GLuint index, GLint x, GLint y, GLint z, GLint w,
-
1100  source_location const &sourceLocation = source_location::current()) {
-
1101  callGL(sourceLocation, ::glVertexAttribI4i, index, x, y, z, w);
-
1102 }
- -
1104  GLuint index, GLuint x, GLuint y, GLuint z, GLuint w,
-
1105  source_location const &sourceLocation = source_location::current()) {
-
1106  callGL(sourceLocation, ::glVertexAttribI4ui, index, x, y, z, w);
-
1107 }
- -
1109  GLuint index, GLint const *v,
-
1110  source_location const &sourceLocation = source_location::current()) {
-
1111  callGL(sourceLocation, ::glVertexAttribI4iv, index, v);
-
1112 }
- -
1114  GLuint index, GLuint const *v,
-
1115  source_location const &sourceLocation = source_location::current()) {
-
1116  callGL(sourceLocation, ::glVertexAttribI4uiv, index, v);
-
1117 }
-
1118 inline void glGetUniformuiv(
-
1119  GLuint program, GLint location, GLuint *params,
-
1120  source_location const &sourceLocation = source_location::current()) {
-
1121  callGL(sourceLocation, ::glGetUniformuiv, program, location, params);
-
1122 }
- -
1124  GLuint program, GLchar const *name,
-
1125  source_location const &sourceLocation = source_location::current()) {
-
1126  return callGL(sourceLocation, ::glGetFragDataLocation, program, name);
-
1127 }
-
1128 inline void glUniform1ui(
-
1129  GLint location, GLuint v0,
-
1130  source_location const &sourceLocation = source_location::current()) {
-
1131  callGL(sourceLocation, ::glUniform1ui, location, v0);
-
1132 }
-
1133 inline void glUniform2ui(
-
1134  GLint location, GLuint v0, GLuint v1,
-
1135  source_location const &sourceLocation = source_location::current()) {
-
1136  callGL(sourceLocation, ::glUniform2ui, location, v0, v1);
-
1137 }
-
1138 inline void glUniform3ui(
-
1139  GLint location, GLuint v0, GLuint v1, GLuint v2,
-
1140  source_location const &sourceLocation = source_location::current()) {
-
1141  callGL(sourceLocation, ::glUniform3ui, location, v0, v1, v2);
-
1142 }
-
1143 inline void glUniform4ui(
-
1144  GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3,
-
1145  source_location const &sourceLocation = source_location::current()) {
-
1146  callGL(sourceLocation, ::glUniform4ui, location, v0, v1, v2, v3);
-
1147 }
-
1148 inline void glUniform1uiv(
-
1149  GLint location, GLsizei count, GLuint const *value,
-
1150  source_location const &sourceLocation = source_location::current()) {
-
1151  callGL(sourceLocation, ::glUniform1uiv, location, count, value);
-
1152 }
-
1153 inline void glUniform2uiv(
-
1154  GLint location, GLsizei count, GLuint const *value,
-
1155  source_location const &sourceLocation = source_location::current()) {
-
1156  callGL(sourceLocation, ::glUniform2uiv, location, count, value);
-
1157 }
-
1158 inline void glUniform3uiv(
-
1159  GLint location, GLsizei count, GLuint const *value,
-
1160  source_location const &sourceLocation = source_location::current()) {
-
1161  callGL(sourceLocation, ::glUniform3uiv, location, count, value);
-
1162 }
-
1163 inline void glUniform4uiv(
-
1164  GLint location, GLsizei count, GLuint const *value,
-
1165  source_location const &sourceLocation = source_location::current()) {
-
1166  callGL(sourceLocation, ::glUniform4uiv, location, count, value);
-
1167 }
-
1168 inline void glClearBufferiv(
-
1169  GLenum buffer, GLint drawbuffer, GLint const *value,
-
1170  source_location const &sourceLocation = source_location::current()) {
-
1171  callGL(sourceLocation, ::glClearBufferiv, buffer, drawbuffer, value);
-
1172 }
-
1173 inline void glClearBufferuiv(
-
1174  GLenum buffer, GLint drawbuffer, GLuint const *value,
-
1175  source_location const &sourceLocation = source_location::current()) {
-
1176  callGL(sourceLocation, ::glClearBufferuiv, buffer, drawbuffer, value);
-
1177 }
-
1178 inline void glClearBufferfv(
-
1179  GLenum buffer, GLint drawbuffer, GLfloat const *value,
-
1180  source_location const &sourceLocation = source_location::current()) {
-
1181  callGL(sourceLocation, ::glClearBufferfv, buffer, drawbuffer, value);
-
1182 }
-
1183 inline void glClearBufferfi(
-
1184  GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil,
-
1185  source_location const &sourceLocation = source_location::current()) {
-
1186  callGL(sourceLocation, ::glClearBufferfi, buffer, drawbuffer, depth, stencil);
-
1187 }
-
1188 inline const GLubyte *glGetStringi(
-
1189  GLenum name, GLuint index,
-
1190  source_location const &sourceLocation = source_location::current()) {
-
1191  return callGL(sourceLocation, ::glGetStringi, name, index);
-
1192 }
- -
1194  GLenum readTarget, GLenum writeTarget, GLintptr readOffset,
-
1195  GLintptr writeOffset, GLsizeiptr size,
-
1196  source_location const &sourceLocation = source_location::current()) {
-
1197  callGL(sourceLocation, ::glCopyBufferSubData, readTarget, writeTarget,
-
1198  readOffset, writeOffset, size);
-
1199 }
- -
1201  GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames,
-
1202  GLuint *uniformIndices,
-
1203  source_location const &sourceLocation = source_location::current()) {
-
1204  callGL(sourceLocation, ::glGetUniformIndices, program, uniformCount,
-
1205  uniformNames, uniformIndices);
-
1206 }
- -
1208  GLuint program, GLsizei uniformCount, GLuint const *uniformIndices,
-
1209  GLenum pname, GLint *params,
-
1210  source_location const &sourceLocation = source_location::current()) {
-
1211  callGL(sourceLocation, ::glGetActiveUniformsiv, program, uniformCount,
-
1212  uniformIndices, pname, params);
-
1213 }
- -
1215  GLuint program, GLchar const *uniformBlockName,
-
1216  source_location const &sourceLocation = source_location::current()) {
-
1217  return callGL(sourceLocation, ::glGetUniformBlockIndex, program,
-
1218  uniformBlockName);
-
1219 }
- -
1221  GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params,
-
1222  source_location const &sourceLocation = source_location::current()) {
-
1223  callGL(sourceLocation, ::glGetActiveUniformBlockiv, program,
-
1224  uniformBlockIndex, pname, params);
-
1225 }
- -
1227  GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length,
-
1228  GLchar *uniformBlockName,
-
1229  source_location const &sourceLocation = source_location::current()) {
-
1230  callGL(sourceLocation, ::glGetActiveUniformBlockName, program,
-
1231  uniformBlockIndex, bufSize, length, uniformBlockName);
-
1232 }
- -
1234  GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding,
-
1235  source_location const &sourceLocation = source_location::current()) {
-
1236  callGL(sourceLocation, ::glUniformBlockBinding, program, uniformBlockIndex,
-
1237  uniformBlockBinding);
-
1238 }
-
1239 
- -
1241  GLenum mode, GLint first, GLsizei count, GLsizei instancecount,
-
1242  source_location const &sourceLocation = source_location::current()) {
-
1243  callGL(sourceLocation, ::glDrawArraysInstanced, mode, first, count,
-
1244  instancecount);
-
1245 }
- -
1247  GLenum mode, GLsizei count, GLenum type, void const *indices,
-
1248  GLsizei instancecount,
-
1249  source_location const &sourceLocation = source_location::current()) {
-
1250  callGL(sourceLocation, ::glDrawElementsInstanced, mode, count, type, indices,
-
1251  instancecount);
-
1252 }
-
1253 inline GLsync glFenceSync(
-
1254  GLenum condition, GLbitfield flags,
-
1255  source_location const &sourceLocation = source_location::current()) {
-
1256  return callGL(sourceLocation, ::glFenceSync, condition, flags);
-
1257 }
-
1258 inline GLboolean
-
1259 glIsSync(GLsync sync,
-
1260  source_location const &sourceLocation = source_location::current()) {
-
1261  return callGL(sourceLocation, ::glIsSync, sync);
-
1262 }
-
1263 inline void glDeleteSync(GLsync sync, source_location const &sourceLocation =
-
1264  source_location::current()) {
-
1265  callGL(sourceLocation, ::glDeleteSync, sync);
-
1266 }
-
1267 inline GLenum glClientWaitSync(
-
1268  GLsync sync, GLbitfield flags, GLuint64 timeout,
-
1269  source_location const &sourceLocation = source_location::current()) {
-
1270  return callGL(sourceLocation, ::glClientWaitSync, sync, flags, timeout);
-
1271 }
-
1272 inline void
-
1273 glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout,
-
1274  source_location const &sourceLocation = source_location::current()) {
-
1275  callGL(sourceLocation, ::glWaitSync, sync, flags, timeout);
-
1276 }
-
1277 inline void glGetInteger64v(
-
1278  GLenum pname, GLint64 *data,
-
1279  source_location const &sourceLocation = source_location::current()) {
-
1280  callGL(sourceLocation, ::glGetInteger64v, pname, data);
-
1281 }
-
1282 inline void glGetSynciv(
-
1283  GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values,
-
1284  source_location const &sourceLocation = source_location::current()) {
-
1285  callGL(sourceLocation, ::glGetSynciv, sync, pname, count, length, values);
-
1286 }
-
1287 inline void glGetInteger64i_v(
-
1288  GLenum target, GLuint index, GLint64 *data,
-
1289  source_location const &sourceLocation = source_location::current()) {
-
1290  callGL(sourceLocation, ::glGetInteger64i_v, target, index, data);
-
1291 }
- -
1293  GLenum target, GLenum pname, GLint64 *params,
-
1294  source_location const &sourceLocation = source_location::current()) {
-
1295  callGL(sourceLocation, ::glGetBufferParameteri64v, target, pname, params);
-
1296 }
-
1297 inline void glGenSamplers(
-
1298  GLsizei count, GLuint *samplers,
-
1299  source_location const &sourceLocation = source_location::current()) {
-
1300  callGL(sourceLocation, ::glGenSamplers, count, samplers);
-
1301 }
-
1302 inline void glDeleteSamplers(
-
1303  GLsizei count, GLuint const *samplers,
-
1304  source_location const &sourceLocation = source_location::current()) {
-
1305  callGL(sourceLocation, ::glDeleteSamplers, count, samplers);
-
1306 }
-
1307 inline GLboolean glIsSampler(
-
1308  GLuint sampler,
-
1309  source_location const &sourceLocation = source_location::current()) {
-
1310  return callGL(sourceLocation, ::glIsSampler, sampler);
-
1311 }
-
1312 inline void glBindSampler(
-
1313  GLuint unit, GLuint sampler,
-
1314  source_location const &sourceLocation = source_location::current()) {
-
1315  callGL(sourceLocation, ::glBindSampler, unit, sampler);
-
1316 }
- -
1318  GLuint sampler, GLenum pname, GLint param,
-
1319  source_location const &sourceLocation = source_location::current()) {
-
1320  callGL(sourceLocation, ::glSamplerParameteri, sampler, pname, param);
-
1321 }
- -
1323  GLuint sampler, GLenum pname, GLint const *param,
-
1324  source_location const &sourceLocation = source_location::current()) {
-
1325  callGL(sourceLocation, ::glSamplerParameteriv, sampler, pname, param);
-
1326 }
- -
1328  GLuint sampler, GLenum pname, GLfloat param,
-
1329  source_location const &sourceLocation = source_location::current()) {
-
1330  callGL(sourceLocation, ::glSamplerParameterf, sampler, pname, param);
-
1331 }
- -
1333  GLuint sampler, GLenum pname, GLfloat const *param,
-
1334  source_location const &sourceLocation = source_location::current()) {
-
1335  callGL(sourceLocation, ::glSamplerParameterfv, sampler, pname, param);
-
1336 }
- -
1338  GLuint sampler, GLenum pname, GLint *params,
-
1339  source_location const &sourceLocation = source_location::current()) {
-
1340  callGL(sourceLocation, ::glGetSamplerParameteriv, sampler, pname, params);
-
1341 }
- -
1343  GLuint sampler, GLenum pname, GLfloat *params,
-
1344  source_location const &sourceLocation = source_location::current()) {
-
1345  callGL(sourceLocation, ::glGetSamplerParameterfv, sampler, pname, params);
-
1346 }
- -
1348  GLuint index, GLuint divisor,
-
1349  source_location const &sourceLocation = source_location::current()) {
-
1350  callGL(sourceLocation, ::glVertexAttribDivisor, index, divisor);
-
1351 }
- -
1353  GLenum target, GLuint id,
-
1354  source_location const &sourceLocation = source_location::current()) {
-
1355  callGL(sourceLocation, ::glBindTransformFeedback, target, id);
-
1356 }
- -
1358  GLsizei n, GLuint const *ids,
-
1359  source_location const &sourceLocation = source_location::current()) {
-
1360  callGL(sourceLocation, ::glDeleteTransformFeedbacks, n, ids);
-
1361 }
- -
1363  GLsizei n, GLuint *ids,
-
1364  source_location const &sourceLocation = source_location::current()) {
-
1365  callGL(sourceLocation, ::glGenTransformFeedbacks, n, ids);
-
1366 }
-
1367 inline GLboolean glIsTransformFeedback(
-
1368  GLuint id,
-
1369  source_location const &sourceLocation = source_location::current()) {
-
1370  return callGL(sourceLocation, ::glIsTransformFeedback, id);
-
1371 }
- -
1373  source_location const &sourceLocation = source_location::current()) {
-
1374  callGL(sourceLocation, ::glPauseTransformFeedback);
-
1375 }
- -
1377  source_location const &sourceLocation = source_location::current()) {
-
1378  callGL(sourceLocation, ::glResumeTransformFeedback);
-
1379 }
- -
1381  GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat,
-
1382  void *binary,
-
1383  source_location const &sourceLocation = source_location::current()) {
-
1384  callGL(sourceLocation, ::glGetProgramBinary, program, bufSize, length,
-
1385  binaryFormat, binary);
-
1386 }
-
1387 inline void glProgramBinary(
-
1388  GLuint program, GLenum binaryFormat, void const *binary, GLsizei length,
-
1389  source_location const &sourceLocation = source_location::current()) {
-
1390  callGL(sourceLocation, ::glProgramBinary, program, binaryFormat, binary,
-
1391  length);
-
1392 }
- -
1394  GLuint program, GLenum pname, GLint value,
-
1395  source_location const &sourceLocation = source_location::current()) {
-
1396  callGL(sourceLocation, ::glProgramParameteri, program, pname, value);
-
1397 }
- -
1399  GLenum target, GLsizei numAttachments, GLenum const *attachments,
-
1400  source_location const &sourceLocation = source_location::current()) {
-
1401  callGL(sourceLocation, ::glInvalidateFramebuffer, target, numAttachments,
-
1402  attachments);
-
1403 }
- -
1405  GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x,
-
1406  GLint y, GLsizei width, GLsizei height,
-
1407  source_location const &sourceLocation = source_location::current()) {
-
1408  callGL(sourceLocation, ::glInvalidateSubFramebuffer, target, numAttachments,
-
1409  attachments, x, y, width, height);
-
1410 }
-
1411 inline void glTexStorage2D(
-
1412  GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
-
1413  GLsizei height,
-
1414  source_location const &sourceLocation = source_location::current()) {
-
1415  callGL(sourceLocation, ::glTexStorage2D, target, levels, internalformat,
-
1416  width, height);
-
1417 }
-
1418 inline void glTexStorage3D(
-
1419  GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
-
1420  GLsizei height, GLsizei depth,
-
1421  source_location const &sourceLocation = source_location::current()) {
-
1422  callGL(sourceLocation, ::glTexStorage3D, target, levels, internalformat,
-
1423  width, height, depth);
-
1424 }
- -
1426  GLenum target, GLenum internalformat, GLenum pname, GLsizei count,
-
1427  GLint *params,
-
1428  source_location const &sourceLocation = source_location::current()) {
-
1429  callGL(sourceLocation, ::glGetInternalformativ, target, internalformat, pname,
-
1430  count, params);
-
1431 }
-
1432 
-
1433 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
1434 
-
1435 // OpenGL 3.0+ function definitions
-
1436 
- -
1438  GLuint program, GLuint colorNumber, char const *name,
-
1439  source_location const &sourceLocation = source_location::current()) {
-
1440  callGL(sourceLocation, ::glBindFragDataLocation, program, colorNumber, name);
-
1441 }
-
1442 
-
1443 // OpenGL ES 3.1 function definitions
- -
1445  GLenum target, GLint level, GLenum pname, GLfloat *params,
-
1446  source_location const &sourceLocation = source_location::current()) {
-
1447  callGL(sourceLocation, ::glGetTexLevelParameterfv, target, level, pname,
-
1448  params);
-
1449 }
- -
1451  GLenum target, GLint level, GLenum pname, GLint *params,
-
1452  source_location const &sourceLocation = source_location::current()) {
-
1453  callGL(sourceLocation, ::glGetTexLevelParameteriv, target, level, pname,
-
1454  params);
-
1455 }
-
1456 
-
1457 // OpenGL 3.2+ function definitions
-
1458 // OpenGL ES 3.2 function definitions
- -
1460  GLenum target, GLenum attachment, GLuint texture, GLint level,
-
1461  source_location const &sourceLocation = source_location::current()) {
-
1462  callGL(sourceLocation, ::glFramebufferTexture, target, attachment, texture,
-
1463  level);
-
1464 }
-
1465 
- -
1467  GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
-
1468  GLsizei height, GLboolean fixedsamplelocations,
-
1469  source_location const &sourceLocation = source_location::current()) {
-
1470  callGL(sourceLocation, ::glTexImage2DMultisample, target, samples,
-
1471  internalformat, width, height, fixedsamplelocations);
-
1472 }
-
1473 
-
1474 // OpenGL 2.0+ function definitions
-
1475 
-
1476 inline void glGetDoublev(
-
1477  GLenum pname, GLdouble *params,
-
1478  source_location const &sourceLocation = source_location::current()) {
-
1479  callGL(sourceLocation, ::glGetDoublev, pname, params);
-
1480 }
-
1481 #endif
-
1482 // NOLINTEND(readability-identifier-length)
-
1483 
-
1484 } // namespace abcg
-
1485 
-
1486 #if defined(_MSC_VER)
-
1487 #pragma warning(pop)
-
1488 #endif
-
1489 
-
1490 #endif
+Go to the documentation of this file.
1
+
14#ifndef ABCG_OPENGL_FUNCTION_HPP_
+
15#define ABCG_OPENGL_FUNCTION_HPP_
+
16
+
17#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
18#if __clang__
+
19#include <experimental/source_location>
+
20namespace abcg {
+
21using source_location = std::experimental::source_location;
+
22} // namespace abcg
+
23#else
+
24#include <source_location>
+
25namespace abcg {
+
26using source_location = std::source_location;
+
27} // namespace abcg
+
28#endif
+
29#endif
+
30
+
31#include <string_view>
+
32#include <type_traits>
+
33
+ +
35
+
36#if defined(_MSC_VER)
+
37// Disable "unreachable code" warnings for the case callGl is not specialized
+
38// for functions that return void
+
39#pragma warning(push)
+
40#pragma warning(disable : 4702)
+
41#endif
+
42
+
43namespace abcg {
+
44#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
45
+
46void checkGLError(source_location const &sourceLocation,
+
47 std::string_view appendString);
+
48
+
61template <typename TFun, typename... TArgs>
+
+
62auto callGL(source_location const &sourceLocation, TFun &&function,
+
63 TArgs &&...args) {
+
64 checkGLError(sourceLocation, "BEFORE function call");
+
65 if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
+
66 // Specialization for functions that do not return void
+
67 auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
+
68 checkGLError(sourceLocation, "AFTER function call");
+
69 return res;
+
70 }
+
71 // Specialization for functions that return void
+
72 std::forward<TFun>(function)(std::forward<TArgs>(args)...);
+
73 checkGLError(sourceLocation, "AFTER function call");
+
74}
+
+
75
+
76#else
+
77
+
78struct source_location {
+
79 constexpr static source_location current() noexcept {
+
80 return source_location{};
+
81 }
+
82};
+
83
+
95template <typename TFun, typename... TArgs>
+
96auto callGL([[maybe_unused]] source_location, TFun &&function,
+
97 TArgs &&...args) {
+
98 if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
+
99 // Specialization for functions that do not return void
+
100 auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
+
101 return res;
+
102 }
+
103 // Specialization for functions that return void
+
104 std::forward<TFun>(function)(std::forward<TArgs>(args)...);
+
105}
+
106#endif
+
107
+
108// NOLINTBEGIN(readability-identifier-length)
+
109
+
110// OpenGL ES 2.0 function definitions
+
111
+
+
112inline void glActiveTexture(
+
113 GLenum texture,
+
114 source_location const &sourceLocation = source_location::current()) {
+
115 callGL(sourceLocation, ::glActiveTexture, texture);
+
116}
+
+
+
117inline void glAttachShader(
+
118 GLuint program, GLuint shader,
+
119 source_location const &sourceLocation = source_location::current()) {
+
120 callGL(sourceLocation, ::glAttachShader, program, shader);
+
121}
+
+
+ +
123 GLuint program, GLuint index, GLchar const *name,
+
124 source_location const &sourceLocation = source_location::current()) {
+
125 callGL(sourceLocation, ::glBindAttribLocation, program, index, name);
+
126}
+
+
+
127inline void glBindBuffer(
+
128 GLenum target, GLuint buffer,
+
129 source_location const &sourceLocation = source_location::current()) {
+
130 callGL(sourceLocation, ::glBindBuffer, target, buffer);
+
131}
+
+
+ +
133 GLenum target, GLuint framebuffer,
+
134 source_location const &sourceLocation = source_location::current()) {
+
135 callGL(sourceLocation, ::glBindFramebuffer, target, framebuffer);
+
136}
+
+
+ +
138 GLenum target, GLuint renderbuffer,
+
139 source_location const &sourceLocation = source_location::current()) {
+
140 callGL(sourceLocation, ::glBindRenderbuffer, target, renderbuffer);
+
141}
+
+
+
142inline void glBindTexture(
+
143 GLenum target, GLuint texture,
+
144 source_location const &sourceLocation = source_location::current()) {
+
145 callGL(sourceLocation, ::glBindTexture, target, texture);
+
146}
+
+
+
147inline void glBlendColor(
+
148 GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha,
+
149 source_location const &sourceLocation = source_location::current()) {
+
150 callGL(sourceLocation, ::glBlendColor, red, green, blue, alpha);
+
151}
+
+
+
152inline void glBlendEquation(GLenum mode, source_location const &sourceLocation =
+
153 source_location::current()) {
+
154 callGL(sourceLocation, ::glBlendEquation, mode);
+
155}
+
+
+ +
157 GLenum modeRGB, GLenum modeAlpha,
+
158 source_location const &sourceLocation = source_location::current()) {
+
159 callGL(sourceLocation, ::glBlendEquationSeparate, modeRGB, modeAlpha);
+
160}
+
+
+
161inline void glBlendFunc(
+
162 GLenum sfactor, GLenum dfactor,
+
163 source_location const &sourceLocation = source_location::current()) {
+
164 callGL(sourceLocation, ::glBlendFunc, sfactor, dfactor);
+
165}
+
+
+ +
167 GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha,
+
168 source_location const &sourceLocation = source_location::current()) {
+
169 callGL(sourceLocation, ::glBlendFuncSeparate, srcRGB, dstRGB, srcAlpha,
+
170 dstAlpha);
+
171}
+
+
+
172inline void glBufferData(
+
173 GLenum target, GLsizeiptr size, void const *data, GLenum usage,
+
174 source_location const &sourceLocation = source_location::current()) {
+
175 callGL(sourceLocation, ::glBufferData, target, size, data, usage);
+
176}
+
+
+
177inline void glBufferSubData(
+
178 GLenum target, GLintptr offset, GLsizeiptr size, void const *data,
+
179 source_location const &sourceLocation = source_location::current()) {
+
180 callGL(sourceLocation, ::glBufferSubData, target, offset, size, data);
+
181}
+
+
+ +
183 GLenum target,
+
184 source_location const &sourceLocation = source_location::current()) {
+
185 return callGL(sourceLocation, ::glCheckFramebufferStatus, target);
+
186}
+
+
187inline void
+
+
188glClear(GLbitfield mask,
+
189 source_location const &sourceLocation = source_location::current()) {
+
190 callGL(sourceLocation, ::glClear, mask);
+
191}
+
+
+
192inline void glClearColor(
+
193 GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha,
+
194 source_location const &sourceLocation = source_location::current()) {
+
195 callGL(sourceLocation, ::glClearColor, red, green, blue, alpha);
+
196}
+
+
+
197inline void glClearDepthf(GLfloat d, source_location const &sourceLocation =
+
198 source_location::current()) {
+
199 callGL(sourceLocation, ::glClearDepthf, d);
+
200}
+
+
+
201inline void glClearStencil(GLint s, source_location const &sourceLocation =
+
202 source_location::current()) {
+
203 callGL(sourceLocation, ::glClearStencil, s);
+
204}
+
+
+
205inline void glColorMask(
+
206 GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha,
+
207 source_location const &sourceLocation = source_location::current()) {
+
208 callGL(sourceLocation, ::glColorMask, red, green, blue, alpha);
+
209}
+
+
+
210inline void glCompileShader(
+
211 GLuint shader,
+
212 source_location const &sourceLocation = source_location::current()) {
+
213 callGL(sourceLocation, ::glCompileShader, shader);
+
214}
+
+
+ +
216 GLenum target, GLint level, GLenum internalformat, GLsizei width,
+
217 GLsizei height, GLint border, GLsizei imageSize, void const *data,
+
218 source_location const &sourceLocation = source_location::current()) {
+
219 callGL(sourceLocation, ::glCompressedTexImage2D, target, level,
+
220 internalformat, width, height, border, imageSize, data);
+
221}
+
+
+ +
223 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
+
224 GLsizei height, GLenum format, GLsizei imageSize, void const *data,
+
225 source_location const &sourceLocation = source_location::current()) {
+
226 callGL(sourceLocation, ::glCompressedTexSubImage2D, target, level, xoffset,
+
227 yoffset, width, height, format, imageSize, data);
+
228}
+
+
+ +
230 GLenum target, GLint level, GLenum internalformat, GLint x, GLint y,
+
231 GLsizei width, GLsizei height, GLint border,
+
232 source_location const &sourceLocation = source_location::current()) {
+
233 callGL(sourceLocation, ::glCopyTexImage2D, target, level, internalformat, x,
+
234 y, width, height, border);
+
235}
+
+
+ +
237 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y,
+
238 GLsizei width, GLsizei height,
+
239 source_location const &sourceLocation = source_location::current()) {
+
240 callGL(sourceLocation, ::glCopyTexSubImage2D, target, level, xoffset, yoffset,
+
241 x, y, width, height);
+
242}
+
+
+
243inline GLuint glCreateProgram(
+
244 source_location const &sourceLocation = source_location::current()) {
+
245 return callGL(sourceLocation, ::glCreateProgram);
+
246}
+
+
+
247inline GLuint glCreateShader(
+
248 GLenum shaderType,
+
249 source_location const &sourceLocation = source_location::current()) {
+
250 return callGL(sourceLocation, ::glCreateShader, shaderType);
+
251}
+
+
252inline void
+
+
253glCullFace(GLenum mode,
+
254 source_location const &sourceLocation = source_location::current()) {
+
255 return callGL(sourceLocation, ::glCullFace, mode);
+
256}
+
+
+
257inline void glDeleteBuffers(
+
258 GLsizei n, const GLuint *buffers,
+
259 source_location const &sourceLocation = source_location::current()) {
+
260 if (buffers == nullptr || *buffers == 0)
+
261 return;
+
262 callGL(sourceLocation, ::glDeleteBuffers, n, buffers);
+
263}
+
+
+ +
265 GLsizei n, GLuint const *framebuffers,
+
266 source_location const &sourceLocation = source_location::current()) {
+
267 if (framebuffers == nullptr || *framebuffers == 0)
+
268 return;
+
269 callGL(sourceLocation, ::glDeleteFramebuffers, n, framebuffers);
+
270}
+
+
+
271inline void glDeleteProgram(
+
272 GLuint program,
+
273 source_location const &sourceLocation = source_location::current()) {
+
274 if (program == 0)
+
275 return;
+
276 callGL(sourceLocation, ::glDeleteProgram, program);
+
277}
+
+
+ +
279 GLsizei n, GLuint *renderbuffers,
+
280 source_location const &sourceLocation = source_location::current()) {
+
281 if (renderbuffers == nullptr || *renderbuffers == 0)
+
282 return;
+
283 callGL(sourceLocation, ::glDeleteRenderbuffers, n, renderbuffers);
+
284}
+
+
+
285inline void glDeleteShader(
+
286 GLuint shader,
+
287 source_location const &sourceLocation = source_location::current()) {
+
288 if (shader == 0)
+
289 return;
+
290 callGL(sourceLocation, ::glDeleteShader, shader);
+
291}
+
+
+ +
293 GLsizei n, GLuint const *textures,
+
294 source_location const &sourceLocation = source_location::current()) {
+
295 if (textures == nullptr || *textures == 0)
+
296 return;
+
297 callGL(sourceLocation, ::glDeleteTextures, n, textures);
+
298}
+
+
+
299inline void glDepthFunc(GLenum func, source_location const &sourceLocation =
+
300 source_location::current()) {
+
301 callGL(sourceLocation, ::glDepthFunc, func);
+
302}
+
+
+
303inline void glDepthMask(GLboolean flag, source_location const &sourceLocation =
+
304 source_location::current()) {
+
305 callGL(sourceLocation, ::glDepthMask, flag);
+
306}
+
+
+
307inline void glDepthRangef(
+
308 GLfloat n, GLfloat f,
+
309 source_location const &sourceLocation = source_location::current()) {
+
310 callGL(sourceLocation, ::glDepthRangef, n, f);
+
311}
+
+
+
312inline void glDetachShader(
+
313 GLuint program, GLuint shader,
+
314 source_location const &sourceLocation = source_location::current()) {
+
315 callGL(sourceLocation, ::glDetachShader, program, shader);
+
316}
+
+
317inline void
+
+
318glDisable(GLenum cap,
+
319 source_location const &sourceLocation = source_location::current()) {
+
320 callGL(sourceLocation, ::glDisable, cap);
+
321}
+
+
+ +
323 GLuint index,
+
324 source_location const &sourceLocation = source_location::current()) {
+
325 callGL(sourceLocation, ::glDisableVertexAttribArray, index);
+
326}
+
+
+
327inline void glDrawArrays(
+
328 GLenum mode, GLint first, GLsizei count,
+
329 source_location const &sourceLocation = source_location::current()) {
+
330 callGL(sourceLocation, ::glDrawArrays, mode, first, count);
+
331}
+
+
+
332inline void glDrawElements(
+
333 GLenum mode, GLsizei count, GLenum type, void const *indices,
+
334 source_location const &sourceLocation = source_location::current()) {
+
335 callGL(sourceLocation, ::glDrawElements, mode, count, type, indices);
+
336}
+
+
337inline void
+
+
338glEnable(GLenum cap,
+
339 source_location const &sourceLocation = source_location::current()) {
+
340 callGL(sourceLocation, ::glEnable, cap);
+
341}
+
+
+ +
343 GLuint index,
+
344 source_location const &sourceLocation = source_location::current()) {
+
345 callGL(sourceLocation, ::glEnableVertexAttribArray, index);
+
346}
+
+
347inline void
+
+
348glFinish(source_location const &sourceLocation = source_location::current()) {
+
349 callGL(sourceLocation, ::glFinish);
+
350}
+
+
351inline void
+
+
352glFlush(source_location const &sourceLocation = source_location::current()) {
+
353 callGL(sourceLocation, ::glFlush);
+
354}
+
+
+ +
356 GLenum target, GLenum attachment, GLenum renderbuffertarget,
+
357 GLuint renderbuffer,
+
358 source_location const &sourceLocation = source_location::current()) {
+
359 callGL(sourceLocation, ::glFramebufferRenderbuffer, target, attachment,
+
360 renderbuffertarget, renderbuffer);
+
361}
+
+
+ +
363 GLenum target, GLenum attachment, GLenum textarget, GLuint texture,
+
364 GLint level,
+
365 source_location const &sourceLocation = source_location::current()) {
+
366 callGL(sourceLocation, ::glFramebufferTexture2D, target, attachment,
+
367 textarget, texture, level);
+
368}
+
+
+
369inline void glFrontFace(GLenum mode, source_location const &sourceLocation =
+
370 source_location::current()) {
+
371 callGL(sourceLocation, ::glFrontFace, mode);
+
372}
+
+
+
373inline void glGenBuffers(
+
374 GLsizei n, GLuint *buffers,
+
375 source_location const &sourceLocation = source_location::current()) {
+
376 callGL(sourceLocation, ::glGenBuffers, n, buffers);
+
377}
+
+
+ +
379 GLenum target,
+
380 source_location const &sourceLocation = source_location::current()) {
+
381 callGL(sourceLocation, ::glGenerateMipmap, target);
+
382}
+
+
+ +
384 GLsizei n, GLuint *ids,
+
385 source_location const &sourceLocation = source_location::current()) {
+
386 callGL(sourceLocation, ::glGenFramebuffers, n, ids);
+
387}
+
+
+ +
389 GLsizei n, GLuint *renderbuffers,
+
390 source_location const &sourceLocation = source_location::current()) {
+
391 callGL(sourceLocation, ::glGenRenderbuffers, n, renderbuffers);
+
392}
+
+
+
393inline void glGenTextures(
+
394 GLsizei n, GLuint *textures,
+
395 source_location const &sourceLocation = source_location::current()) {
+
396 callGL(sourceLocation, ::glGenTextures, n, textures);
+
397}
+
+
+ +
399 GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
+
400 GLenum *type, GLchar *name,
+
401 source_location const &sourceLocation = source_location::current()) {
+
402 callGL(sourceLocation, ::glGetActiveAttrib, program, index, bufSize, length,
+
403 size, type, name);
+
404}
+
+
+ +
406 GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
+
407 GLenum *type, GLchar *name,
+
408 source_location const &sourceLocation = source_location::current()) {
+
409 callGL(sourceLocation, ::glGetActiveUniform, program, index, bufSize, length,
+
410 size, type, name);
+
411}
+
+
+ +
413 GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders,
+
414 source_location const &sourceLocation = source_location::current()) {
+
415 callGL(sourceLocation, ::glGetAttachedShaders, program, maxCount, count,
+
416 shaders);
+
417}
+
+
+ +
419 GLuint program, GLchar const *name,
+
420 source_location const &sourceLocation = source_location::current()) {
+
421 return callGL(sourceLocation, ::glGetAttribLocation, program, name);
+
422}
+
+
+
423inline void glGetBooleanv(
+
424 GLenum pname, GLboolean *params,
+
425 source_location const &sourceLocation = source_location::current()) {
+
426 callGL(sourceLocation, ::glGetBooleanv, pname, params);
+
427}
+
+
+ +
429 GLenum target, GLenum pname, GLint *params,
+
430 source_location const &sourceLocation = source_location::current()) {
+
431 callGL(sourceLocation, ::glGetBufferParameteriv, target, pname, params);
+
432}
+
+
+
433inline void glGetFloatv(
+
434 GLenum pname, GLfloat *params,
+
435 source_location const &sourceLocation = source_location::current()) {
+
436 callGL(sourceLocation, ::glGetFloatv, pname, params);
+
437}
+
+
+ +
439 GLenum target, GLenum attachment, GLenum pname, GLint *params,
+
440 source_location const &sourceLocation = source_location::current()) {
+
441 callGL(sourceLocation, ::glGetFramebufferAttachmentParameteriv, target,
+
442 attachment, pname, params);
+
443}
+
+
+
444inline void glGetIntegerv(
+
445 GLenum pname, GLint *params,
+
446 source_location const &sourceLocation = source_location::current()) {
+
447 callGL(sourceLocation, ::glGetIntegerv, pname, params);
+
448}
+
+
+
449inline void glGetProgramiv(
+
450 GLuint program, GLenum pname, GLint *params,
+
451 source_location const &sourceLocation = source_location::current()) {
+
452 callGL(sourceLocation, ::glGetProgramiv, program, pname, params);
+
453}
+
+
+ +
455 GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
+
456 source_location const &sourceLocation = source_location::current()) {
+
457 callGL(sourceLocation, ::glGetProgramInfoLog, program, bufSize, length,
+
458 infoLog);
+
459}
+
+
+ +
461 GLenum target, GLenum pname, GLint *params,
+
462 source_location const &sourceLocation = source_location::current()) {
+
463 callGL(sourceLocation, ::glGetRenderbufferParameteriv, target, pname, params);
+
464}
+
+
+
465inline void glGetShaderiv(
+
466 GLuint shader, GLenum pname, GLint *params,
+
467 source_location const &sourceLocation = source_location::current()) {
+
468 callGL(sourceLocation, ::glGetShaderiv, shader, pname, params);
+
469}
+
+
+ +
471 GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
+
472 source_location const &sourceLocation = source_location::current()) {
+
473 callGL(sourceLocation, ::glGetShaderInfoLog, shader, bufSize, length,
+
474 infoLog);
+
475}
+
+
+ +
477 GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision,
+
478 source_location const &sourceLocation = source_location::current()) {
+
479 callGL(sourceLocation, ::glGetShaderPrecisionFormat, shadertype,
+
480 precisiontype, range, precision);
+
481}
+
+
+ +
483 GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source,
+
484 source_location const &sourceLocation = source_location::current()) {
+
485 callGL(sourceLocation, ::glGetShaderSource, shader, bufSize, length, source);
+
486}
+
+
+
487inline const GLubyte *glGetString(
+
488 GLenum name,
+
489 source_location const &sourceLocation = source_location::current()) {
+
490 return callGL(sourceLocation, ::glGetString, name);
+
491}
+
+
+ +
493 GLenum target, GLenum pname, GLfloat *params,
+
494 source_location const &sourceLocation = source_location::current()) {
+
495 callGL(sourceLocation, ::glGetTexParameterfv, target, pname, params);
+
496}
+
+
+ +
498 GLenum target, GLenum pname, GLint *params,
+
499 source_location const &sourceLocation = source_location::current()) {
+
500 callGL(sourceLocation, ::glGetTexParameteriv, target, pname, params);
+
501}
+
+
+
502inline void glGetUniformfv(
+
503 GLuint program, GLint location, GLfloat *params,
+
504 source_location const &sourceLocation = source_location::current()) {
+
505 callGL(sourceLocation, ::glGetUniformfv, program, location, params);
+
506}
+
+
+
507inline void glGetUniformiv(
+
508 GLuint program, GLint location, GLint *params,
+
509 source_location const &sourceLocation = source_location::current()) {
+
510 callGL(sourceLocation, ::glGetUniformiv, program, location, params);
+
511}
+
+
+ +
513 GLuint program, GLchar const *name,
+
514 source_location const &sourceLocation = source_location::current()) {
+
515 return callGL(sourceLocation, ::glGetUniformLocation, program, name);
+
516}
+
+
+ +
518 GLuint index, GLenum pname, GLfloat *params,
+
519 source_location const &sourceLocation = source_location::current()) {
+
520 callGL(sourceLocation, ::glGetVertexAttribfv, index, pname, params);
+
521}
+
+
+ +
523 GLuint index, GLenum pname, GLint *params,
+
524 source_location const &sourceLocation = source_location::current()) {
+
525 callGL(sourceLocation, ::glGetVertexAttribiv, index, pname, params);
+
526}
+
+
+ +
528 GLuint index, GLenum pname, void **pointer,
+
529 source_location const &sourceLocation = source_location::current()) {
+
530 callGL(sourceLocation, ::glGetVertexAttribPointerv, index, pname, pointer);
+
531}
+
+
532inline void
+
+
533glHint(GLenum target, GLenum mode,
+
534 source_location const &sourceLocation = source_location::current()) {
+
535 callGL(sourceLocation, ::glHint, target, mode);
+
536}
+
+
537inline GLboolean
+
+
538glIsBuffer(GLuint buffer,
+
539 source_location const &sourceLocation = source_location::current()) {
+
540 return callGL(sourceLocation, ::glIsBuffer, buffer);
+
541}
+
+
+
542inline GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation =
+
543 source_location::current()) {
+
544 return callGL(sourceLocation, ::glIsEnabled, cap);
+
545}
+
+
+
546inline GLboolean glIsFramebuffer(
+
547 GLuint framebuffer,
+
548 source_location const &sourceLocation = source_location::current()) {
+
549 return callGL(sourceLocation, ::glIsFramebuffer, framebuffer);
+
550}
+
+
+
551inline GLboolean glIsProgram(
+
552 GLuint program,
+
553 source_location const &sourceLocation = source_location::current()) {
+
554 return callGL(sourceLocation, ::glIsProgram, program);
+
555}
+
+
+
556inline GLboolean glIsRenderbuffer(
+
557 GLuint renderbuffer,
+
558 source_location const &sourceLocation = source_location::current()) {
+
559 return callGL(sourceLocation, ::glIsRenderbuffer, renderbuffer);
+
560}
+
+
561inline GLboolean
+
+
562glIsShader(GLuint shader,
+
563 source_location const &sourceLocation = source_location::current()) {
+
564 return callGL(sourceLocation, ::glIsShader, shader);
+
565}
+
+
+
566inline GLboolean glIsTexture(
+
567 GLuint texture,
+
568 source_location const &sourceLocation = source_location::current()) {
+
569 return callGL(sourceLocation, ::glIsTexture, texture);
+
570}
+
+
+
571inline void glLineWidth(GLfloat width, source_location const &sourceLocation =
+
572 source_location::current()) {
+
573 callGL(sourceLocation, ::glLineWidth, width);
+
574}
+
+
+
575inline void glLinkProgram(
+
576 GLuint program,
+
577 source_location const &sourceLocation = source_location::current()) {
+
578 callGL(sourceLocation, ::glLinkProgram, program);
+
579}
+
+
+
580inline void glPixelStorei(
+
581 GLenum pname, GLint param,
+
582 source_location const &sourceLocation = source_location::current()) {
+
583 callGL(sourceLocation, ::glPixelStorei, pname, param);
+
584}
+
+
+
585inline void glPolygonOffset(
+
586 GLfloat factor, GLfloat units,
+
587 source_location const &sourceLocation = source_location::current()) {
+
588 callGL(sourceLocation, ::glPolygonOffset, factor, units);
+
589}
+
+
+
590inline void glReadPixels(
+
591 GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type,
+
592 void *pixels,
+
593 source_location const &sourceLocation = source_location::current()) {
+
594 callGL(sourceLocation, ::glReadPixels, x, y, width, height, format, type,
+
595 pixels);
+
596}
+
+
+ +
598 source_location const &sourceLocation = source_location::current()) {
+
599 callGL(sourceLocation, ::glReleaseShaderCompiler);
+
600}
+
+
+ +
602 GLenum target, GLenum internalformat, GLsizei width, GLsizei height,
+
603 source_location const &sourceLocation = source_location::current()) {
+
604 callGL(sourceLocation, ::glRenderbufferStorage, target, internalformat, width,
+
605 height);
+
606}
+
+
+ +
608 GLfloat value, GLboolean invert,
+
609 source_location const &sourceLocation = source_location::current()) {
+
610 callGL(sourceLocation, ::glSampleCoverage, value, invert);
+
611}
+
+
612inline void
+
+
613glScissor(GLint x, GLint y, GLsizei width, GLsizei height,
+
614 source_location const &sourceLocation = source_location::current()) {
+
615 callGL(sourceLocation, ::glScissor, x, y, width, height);
+
616}
+
+
+
617inline void glShaderBinary(
+
618 GLsizei count, GLuint const *shaders, GLenum binaryformat,
+
619 void const *binary, GLsizei length,
+
620 source_location const &sourceLocation = source_location::current()) {
+
621 callGL(sourceLocation, ::glShaderBinary, count, shaders, binaryformat, binary,
+
622 length);
+
623}
+
+
+
624inline void glShaderSource(
+
625 GLuint shader, GLsizei count, GLchar const **string, GLint const *length,
+
626 source_location const &sourceLocation = source_location::current()) {
+
627 callGL(sourceLocation, ::glShaderSource, shader, count, string, length);
+
628}
+
+
+
629inline void glStencilFunc(
+
630 GLenum func, GLint ref, GLuint mask,
+
631 source_location const &sourceLocation = source_location::current()) {
+
632 callGL(sourceLocation, ::glStencilFunc, func, ref, mask);
+
633}
+
+
+ +
635 GLenum face, GLenum func, GLint ref, GLuint mask,
+
636 source_location const &sourceLocation = source_location::current()) {
+
637 callGL(sourceLocation, ::glStencilFuncSeparate, face, func, ref, mask);
+
638}
+
+
+
639inline void glStencilMask(GLuint mask, source_location const &sourceLocation =
+
640 source_location::current()) {
+
641 callGL(sourceLocation, ::glStencilMask, mask);
+
642}
+
+
+ +
644 GLenum face, GLuint mask,
+
645 source_location const &sourceLocation = source_location::current()) {
+
646 callGL(sourceLocation, ::glStencilMaskSeparate, face, mask);
+
647}
+
+
+
648inline void glStencilOp(
+
649 GLenum fail, GLenum zfail, GLenum zpass,
+
650 source_location const &sourceLocation = source_location::current()) {
+
651 callGL(sourceLocation, ::glStencilOp, fail, zfail, zpass);
+
652}
+
+
+ +
654 GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass,
+
655 source_location const &sourceLocation = source_location::current()) {
+
656 callGL(sourceLocation, ::glStencilOpSeparate, face, sfail, dpfail, dppass);
+
657}
+
+
+
658inline void glTexImage2D(
+
659 GLenum target, GLint level, GLint internalformat, GLsizei width,
+
660 GLsizei height, GLint border, GLenum format, GLenum type, void const *data,
+
661 source_location const &sourceLocation = source_location::current()) {
+
662 callGL(sourceLocation, ::glTexImage2D, target, level, internalformat, width,
+
663 height, border, format, type, data);
+
664}
+
+
665
+
+
666inline void glTexParameterf(
+
667 GLenum target, GLenum pname, GLfloat param,
+
668 source_location const &sourceLocation = source_location::current()) {
+
669 callGL(sourceLocation, ::glTexParameterf, target, pname, param);
+
670}
+
+
+ +
672 GLenum target, GLenum pname, GLfloat const *params,
+
673 source_location const &sourceLocation = source_location::current()) {
+
674 callGL(sourceLocation, ::glTexParameterfv, target, pname, params);
+
675}
+
+
+
676inline void glTexParameteri(
+
677 GLenum target, GLenum pname, GLint param,
+
678 source_location const &sourceLocation = source_location::current()) {
+
679 callGL(sourceLocation, ::glTexParameteri, target, pname, param);
+
680}
+
+
+ +
682 GLenum target, GLenum pname, GLint const *params,
+
683 source_location const &sourceLocation = source_location::current()) {
+
684 callGL(sourceLocation, ::glTexParameteriv, target, pname, params);
+
685}
+
+
+
686inline void glTexSubImage2D(
+
687 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
+
688 GLsizei height, GLenum format, GLenum type, void const *pixels,
+
689 source_location const &sourceLocation = source_location::current()) {
+
690 callGL(sourceLocation, ::glTexSubImage2D, target, level, xoffset, yoffset,
+
691 width, height, format, type, pixels);
+
692}
+
+
+
693inline void glUniform1f(
+
694 GLint location, GLfloat v0,
+
695 source_location const &sourceLocation = source_location::current()) {
+
696 callGL(sourceLocation, ::glUniform1f, location, v0);
+
697}
+
+
+
698inline void glUniform1fv(
+
699 GLint location, GLsizei count, GLfloat const *value,
+
700 source_location const &sourceLocation = source_location::current()) {
+
701 callGL(sourceLocation, ::glUniform1fv, location, count, value);
+
702}
+
+
+
703inline void glUniform1i(
+
704 GLint location, GLint v0,
+
705 source_location const &sourceLocation = source_location::current()) {
+
706 callGL(sourceLocation, ::glUniform1i, location, v0);
+
707}
+
+
+
708inline void glUniform1iv(
+
709 GLint location, GLsizei count, GLint const *value,
+
710 source_location const &sourceLocation = source_location::current()) {
+
711 callGL(sourceLocation, ::glUniform1iv, location, count, value);
+
712}
+
+
+
713inline void glUniform2f(
+
714 GLint location, GLfloat v0, GLfloat v1,
+
715 source_location const &sourceLocation = source_location::current()) {
+
716 callGL(sourceLocation, ::glUniform2f, location, v0, v1);
+
717}
+
+
+
718inline void glUniform2fv(
+
719 GLint location, GLsizei count, GLfloat const *value,
+
720 source_location const &sourceLocation = source_location::current()) {
+
721 callGL(sourceLocation, ::glUniform2fv, location, count, value);
+
722}
+
+
+
723inline void glUniform2i(
+
724 GLint location, GLint v0, GLint v1,
+
725 source_location const &sourceLocation = source_location::current()) {
+
726 callGL(sourceLocation, ::glUniform2i, location, v0, v1);
+
727}
+
+
+
728inline void glUniform2iv(
+
729 GLint location, GLsizei count, GLint const *value,
+
730 source_location const &sourceLocation = source_location::current()) {
+
731 callGL(sourceLocation, ::glUniform2iv, location, count, value);
+
732}
+
+
+
733inline void glUniform3f(
+
734 GLint location, GLfloat v0, GLfloat v1, GLfloat v2,
+
735 source_location const &sourceLocation = source_location::current()) {
+
736 callGL(sourceLocation, ::glUniform3f, location, v0, v1, v2);
+
737}
+
+
+
738inline void glUniform3fv(
+
739 GLint location, GLsizei count, GLfloat const *value,
+
740 source_location const &sourceLocation = source_location::current()) {
+
741 callGL(sourceLocation, ::glUniform3fv, location, count, value);
+
742}
+
+
+
743inline void glUniform3i(
+
744 GLint location, GLint v0, GLint v1, GLint v2,
+
745 source_location const &sourceLocation = source_location::current()) {
+
746 callGL(sourceLocation, ::glUniform3i, location, v0, v1, v2);
+
747}
+
+
+
748inline void glUniform3iv(
+
749 GLint location, GLsizei count, GLint const *value,
+
750 source_location const &sourceLocation = source_location::current()) {
+
751 callGL(sourceLocation, ::glUniform3iv, location, count, value);
+
752}
+
+
+
753inline void glUniform4f(
+
754 GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3,
+
755 source_location const &sourceLocation = source_location::current()) {
+
756 callGL(sourceLocation, ::glUniform4f, location, v0, v1, v2, v3);
+
757}
+
+
+
758inline void glUniform4fv(
+
759 GLint location, GLsizei count, GLfloat const *value,
+
760 source_location const &sourceLocation = source_location::current()) {
+
761 callGL(sourceLocation, ::glUniform4fv, location, count, value);
+
762}
+
+
+
763inline void glUniform4i(
+
764 GLint location, GLint v0, GLint v1, GLint v2, GLint v3,
+
765 source_location const &sourceLocation = source_location::current()) {
+
766 callGL(sourceLocation, ::glUniform4i, location, v0, v1, v2, v3);
+
767}
+
+
+
768inline void glUniform4iv(
+
769 GLint location, GLsizei count, GLint const *value,
+
770 source_location const &sourceLocation = source_location::current()) {
+
771 callGL(sourceLocation, ::glUniform4iv, location, count, value);
+
772}
+
+
+ +
774 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
775 source_location const &sourceLocation = source_location::current()) {
+
776 callGL(sourceLocation, ::glUniformMatrix2fv, location, count, transpose,
+
777 value);
+
778}
+
+
+ +
780 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
781 source_location const &sourceLocation = source_location::current()) {
+
782 callGL(sourceLocation, ::glUniformMatrix3fv, location, count, transpose,
+
783 value);
+
784}
+
+
+ +
786 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
787 source_location const &sourceLocation = source_location::current()) {
+
788 callGL(sourceLocation, ::glUniformMatrix4fv, location, count, transpose,
+
789 value);
+
790}
+
+
+
791inline void glUseProgram(GLuint program, source_location const &sourceLocation =
+
792 source_location::current()) {
+
793 callGL(sourceLocation, ::glUseProgram, program);
+
794}
+
+
+ +
796 GLuint program,
+
797 source_location const &sourceLocation = source_location::current()) {
+
798 callGL(sourceLocation, ::glValidateProgram, program);
+
799}
+
+
+ +
801 GLuint index, GLfloat x,
+
802 source_location const &sourceLocation = source_location::current()) {
+
803 callGL(sourceLocation, ::glVertexAttrib1f, index, x);
+
804}
+
+
+ +
806 GLuint index, GLfloat const *v,
+
807 source_location const &sourceLocation = source_location::current()) {
+
808 callGL(sourceLocation, ::glVertexAttrib1fv, index, v);
+
809}
+
+
+ +
811 GLuint index, GLfloat x, GLfloat y,
+
812 source_location const &sourceLocation = source_location::current()) {
+
813 callGL(sourceLocation, ::glVertexAttrib2f, index, x, y);
+
814}
+
+
+ +
816 GLuint index, GLfloat const *v,
+
817 source_location const &sourceLocation = source_location::current()) {
+
818 callGL(sourceLocation, ::glVertexAttrib2fv, index, v);
+
819}
+
+
+ +
821 GLuint index, GLfloat x, GLfloat y, GLfloat z,
+
822 source_location const &sourceLocation = source_location::current()) {
+
823 callGL(sourceLocation, ::glVertexAttrib3f, index, x, y, z);
+
824}
+
+
+ +
826 GLuint index, GLfloat const *v,
+
827 source_location const &sourceLocation = source_location::current()) {
+
828 callGL(sourceLocation, ::glVertexAttrib3fv, index, v);
+
829}
+
+
+ +
831 GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w,
+
832 source_location const &sourceLocation = source_location::current()) {
+
833 callGL(sourceLocation, ::glVertexAttrib4f, index, x, y, z, w);
+
834}
+
+
+ +
836 GLuint index, GLfloat const *v,
+
837 source_location const &sourceLocation = source_location::current()) {
+
838 callGL(sourceLocation, ::glVertexAttrib4fv, index, v);
+
839}
+
+
+ +
841 GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
+
842 void const *pointer,
+
843 source_location const &sourceLocation = source_location::current()) {
+
844 callGL(sourceLocation, ::glVertexAttribPointer, index, size, type, normalized,
+
845 stride, pointer);
+
846}
+
+
847inline void
+
+
848glViewport(GLint x, GLint y, GLsizei width, GLsizei height,
+
849 source_location const &sourceLocation = source_location::current()) {
+
850 callGL(sourceLocation, ::glViewport, x, y, width, height);
+
851}
+
+
852
+
853// OpenGL ES 3.0 function definitions
+
854
+
+
855inline void glReadBuffer(GLenum src, source_location const &sourceLocation =
+
856 source_location::current()) {
+
857 callGL(sourceLocation, ::glReadBuffer, src);
+
858}
+
+
+ +
860 GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type,
+
861 void const *indices,
+
862 source_location const &sourceLocation = source_location::current()) {
+
863 callGL(sourceLocation, ::glDrawRangeElements, mode, start, end, count, type,
+
864 indices);
+
865}
+
+
+
866inline void glTexImage3D(
+
867 GLenum target, GLint level, GLint internalformat, GLsizei width,
+
868 GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type,
+
869 void const *pixels,
+
870 source_location const &sourceLocation = source_location::current()) {
+
871 callGL(sourceLocation, ::glTexImage3D, target, level, internalformat, width,
+
872 height, depth, border, format, type, pixels);
+
873}
+
+
+
874inline void glTexSubImage3D(
+
875 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
+
876 GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type,
+
877 void const *pixels,
+
878 source_location const &sourceLocation = source_location::current()) {
+
879 callGL(sourceLocation, ::glTexSubImage3D, target, level, xoffset, yoffset,
+
880 zoffset, width, height, depth, format, type, pixels);
+
881}
+
+
+ +
883 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
+
884 GLint x, GLint y, GLsizei width, GLsizei height,
+
885 source_location const &sourceLocation = source_location::current()) {
+
886 callGL(sourceLocation, ::glCopyTexSubImage3D, target, level, xoffset, yoffset,
+
887 zoffset, x, y, width, height);
+
888}
+
+
+ +
890 GLenum target, GLint level, GLenum internalformat, GLsizei width,
+
891 GLsizei height, GLsizei depth, GLint border, GLsizei imageSize,
+
892 void const *data,
+
893 source_location const &sourceLocation = source_location::current()) {
+
894 callGL(sourceLocation, ::glCompressedTexImage3D, target, level,
+
895 internalformat, width, height, depth, border, imageSize, data);
+
896}
+
+
+ +
898 GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
+
899 GLsizei width, GLsizei height, GLsizei depth, GLenum format,
+
900 GLsizei imageSize, void const *data,
+
901 source_location const &sourceLocation = source_location::current()) {
+
902 callGL(sourceLocation, ::glCompressedTexSubImage3D, target, level, xoffset,
+
903 yoffset, zoffset, width, height, depth, format, imageSize, data);
+
904}
+
+
+
905inline void glGenQueries(
+
906 GLsizei n, GLuint *ids,
+
907 source_location const &sourceLocation = source_location::current()) {
+
908 callGL(sourceLocation, ::glGenQueries, n, ids);
+
909}
+
+
+
910inline void glDeleteQueries(
+
911 GLsizei n, GLuint const *ids,
+
912 source_location const &sourceLocation = source_location::current()) {
+
913 callGL(sourceLocation, ::glDeleteQueries, n, ids);
+
914}
+
+
915inline GLboolean
+
+
916glIsQuery(GLuint id,
+
917 source_location const &sourceLocation = source_location::current()) {
+
918 return callGL(sourceLocation, ::glIsQuery, id);
+
919}
+
+
+
920inline void glBeginQuery(
+
921 GLenum target, GLuint id,
+
922 source_location const &sourceLocation = source_location::current()) {
+
923 callGL(sourceLocation, ::glBeginQuery, target, id);
+
924}
+
+
925inline void
+
+
926glEndQuery(GLenum target,
+
927 source_location const &sourceLocation = source_location::current()) {
+
928 callGL(sourceLocation, ::glEndQuery, target);
+
929}
+
+
+
930inline void glGetQueryiv(
+
931 GLenum target, GLenum pname, GLint *params,
+
932 source_location const &sourceLocation = source_location::current()) {
+
933 callGL(sourceLocation, ::glGetQueryiv, target, pname, params);
+
934}
+
+
+ +
936 GLuint id, GLenum pname, GLuint *params,
+
937 source_location const &sourceLocation = source_location::current()) {
+
938 callGL(sourceLocation, ::glGetQueryObjectuiv, id, pname, params);
+
939}
+
+
+
940inline GLboolean glUnmapBuffer(
+
941 GLenum target,
+
942 source_location const &sourceLocation = source_location::current()) {
+
943 return callGL(sourceLocation, ::glUnmapBuffer, target);
+
944}
+
+
+ +
946 GLenum target, GLenum pname, void **params,
+
947 source_location const &sourceLocation = source_location::current()) {
+
948 callGL(sourceLocation, ::glGetBufferPointerv, target, pname, params);
+
949}
+
+
+
950inline void glDrawBuffers(
+
951 GLsizei n, GLenum const *bufs,
+
952 source_location const &sourceLocation = source_location::current()) {
+
953 callGL(sourceLocation, ::glDrawBuffers, n, bufs);
+
954}
+
+
+ +
956 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
957 source_location const &sourceLocation = source_location::current()) {
+
958 callGL(sourceLocation, ::glUniformMatrix2x3fv, location, count, transpose,
+
959 value);
+
960}
+
+
+ +
962 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
963 source_location const &sourceLocation = source_location::current()) {
+
964 callGL(sourceLocation, ::glUniformMatrix3x2fv, location, count, transpose,
+
965 value);
+
966}
+
+
+ +
968 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
969 source_location const &sourceLocation = source_location::current()) {
+
970 callGL(sourceLocation, ::glUniformMatrix2x4fv, location, count, transpose,
+
971 value);
+
972}
+
+
+ +
974 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
975 source_location const &sourceLocation = source_location::current()) {
+
976 callGL(sourceLocation, ::glUniformMatrix4x2fv, location, count, transpose,
+
977 value);
+
978}
+
+
+ +
980 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
981 source_location const &sourceLocation = source_location::current()) {
+
982 callGL(sourceLocation, ::glUniformMatrix3x4fv, location, count, transpose,
+
983 value);
+
984}
+
+
+ +
986 GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
+
987 source_location const &sourceLocation = source_location::current()) {
+
988 callGL(sourceLocation, ::glUniformMatrix4x3fv, location, count, transpose,
+
989 value);
+
990}
+
+
+ +
992 GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
+
993 GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter,
+
994 source_location const &sourceLocation = source_location::current()) {
+
995 callGL(sourceLocation, ::glBlitFramebuffer, srcX0, srcY0, srcX1, srcY1, dstX0,
+
996 dstY0, dstX1, dstY1, mask, filter);
+
997}
+
+
+ +
999 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
+
1000 GLsizei height,
+
1001 source_location const &sourceLocation = source_location::current()) {
+
1002 callGL(sourceLocation, ::glRenderbufferStorageMultisample, target, samples,
+
1003 internalformat, width, height);
+
1004}
+
+
+ +
1006 GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer,
+
1007 source_location const &sourceLocation = source_location::current()) {
+
1008 callGL(sourceLocation, ::glFramebufferTextureLayer, target, attachment,
+
1009 texture, level, layer);
+
1010}
+
+
+
1011inline void *glMapBufferRange(
+
1012 GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access,
+
1013 source_location const &sourceLocation = source_location::current()) {
+
1014 return callGL(sourceLocation, ::glMapBufferRange, target, offset, length,
+
1015 access);
+
1016}
+
+
+ +
1018 GLenum target, GLintptr offset, GLsizeiptr length,
+
1019 source_location const &sourceLocation = source_location::current()) {
+
1020 callGL(sourceLocation, ::glFlushMappedBufferRange, target, offset, length);
+
1021}
+
+
+ +
1023 GLuint array,
+
1024 source_location const &sourceLocation = source_location::current()) {
+
1025 callGL(sourceLocation, ::glBindVertexArray, array);
+
1026}
+
+
+ +
1028 GLsizei n, GLuint const *arrays,
+
1029 source_location const &sourceLocation = source_location::current()) {
+
1030 callGL(sourceLocation, ::glDeleteVertexArrays, n, arrays);
+
1031}
+
+
+ +
1033 GLsizei n, GLuint *arrays,
+
1034 source_location const &sourceLocation = source_location::current()) {
+
1035 callGL(sourceLocation, ::glGenVertexArrays, n, arrays);
+
1036}
+
+
+
1037inline GLboolean glIsVertexArray(
+
1038 GLuint array,
+
1039 source_location const &sourceLocation = source_location::current()) {
+
1040 return callGL(sourceLocation, ::glIsVertexArray, array);
+
1041}
+
+
+ +
1043 GLenum target, GLuint index, GLint *data,
+
1044 source_location const &sourceLocation = source_location::current()) {
+
1045 callGL(sourceLocation, ::glGetIntegeri_v, target, index, data);
+
1046}
+
+
+ +
1048 GLenum primitiveMode,
+
1049 source_location const &sourceLocation = source_location::current()) {
+
1050 callGL(sourceLocation, ::glBeginTransformFeedback, primitiveMode);
+
1051}
+
+
+ +
1053 source_location const &sourceLocation = source_location::current()) {
+
1054 callGL(sourceLocation, ::glEndTransformFeedback);
+
1055}
+
+
+ +
1057 GLenum target, GLuint index, GLuint buffer, GLintptr offset,
+
1058 GLsizeiptr size,
+
1059 source_location const &sourceLocation = source_location::current()) {
+
1060 callGL(sourceLocation, ::glBindBufferRange, target, index, buffer, offset,
+
1061 size);
+
1062}
+
+
+ +
1064 GLenum target, GLuint index, GLuint buffer,
+
1065 source_location const &sourceLocation = source_location::current()) {
+
1066 callGL(sourceLocation, ::glBindBufferBase, target, index, buffer);
+
1067}
+
+
+ +
1069 GLuint program, GLsizei count, GLchar const *const *varyings,
+
1070 GLenum bufferMode,
+
1071 source_location const &sourceLocation = source_location::current()) {
+
1072 callGL(sourceLocation, ::glTransformFeedbackVaryings, program, count,
+
1073 varyings, bufferMode);
+
1074}
+
+
+ +
1076 GLuint program, GLuint index, GLsizei bufSize, GLsizei *length,
+
1077 GLsizei *size, GLenum *type, GLchar *name,
+
1078 source_location const &sourceLocation = source_location::current()) {
+
1079 callGL(sourceLocation, ::glGetTransformFeedbackVarying, program, index,
+
1080 bufSize, length, size, type, name);
+
1081}
+
+
+ +
1083 GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer,
+
1084 source_location const &sourceLocation = source_location::current()) {
+
1085 callGL(sourceLocation, ::glVertexAttribIPointer, index, size, type, stride,
+
1086 pointer);
+
1087}
+
+
+ +
1089 GLuint index, GLenum pname, GLint *params,
+
1090 source_location const &sourceLocation = source_location::current()) {
+
1091 callGL(sourceLocation, ::glGetVertexAttribIiv, index, pname, params);
+
1092}
+
+
+ +
1094 GLuint index, GLenum pname, GLuint *params,
+
1095 source_location const &sourceLocation = source_location::current()) {
+
1096 callGL(sourceLocation, ::glGetVertexAttribIuiv, index, pname, params);
+
1097}
+
+
+ +
1099 GLuint index, GLint x, GLint y, GLint z, GLint w,
+
1100 source_location const &sourceLocation = source_location::current()) {
+
1101 callGL(sourceLocation, ::glVertexAttribI4i, index, x, y, z, w);
+
1102}
+
+
+ +
1104 GLuint index, GLuint x, GLuint y, GLuint z, GLuint w,
+
1105 source_location const &sourceLocation = source_location::current()) {
+
1106 callGL(sourceLocation, ::glVertexAttribI4ui, index, x, y, z, w);
+
1107}
+
+
+ +
1109 GLuint index, GLint const *v,
+
1110 source_location const &sourceLocation = source_location::current()) {
+
1111 callGL(sourceLocation, ::glVertexAttribI4iv, index, v);
+
1112}
+
+
+ +
1114 GLuint index, GLuint const *v,
+
1115 source_location const &sourceLocation = source_location::current()) {
+
1116 callGL(sourceLocation, ::glVertexAttribI4uiv, index, v);
+
1117}
+
+
+ +
1119 GLuint program, GLint location, GLuint *params,
+
1120 source_location const &sourceLocation = source_location::current()) {
+
1121 callGL(sourceLocation, ::glGetUniformuiv, program, location, params);
+
1122}
+
+
+ +
1124 GLuint program, GLchar const *name,
+
1125 source_location const &sourceLocation = source_location::current()) {
+
1126 return callGL(sourceLocation, ::glGetFragDataLocation, program, name);
+
1127}
+
+
+
1128inline void glUniform1ui(
+
1129 GLint location, GLuint v0,
+
1130 source_location const &sourceLocation = source_location::current()) {
+
1131 callGL(sourceLocation, ::glUniform1ui, location, v0);
+
1132}
+
+
+
1133inline void glUniform2ui(
+
1134 GLint location, GLuint v0, GLuint v1,
+
1135 source_location const &sourceLocation = source_location::current()) {
+
1136 callGL(sourceLocation, ::glUniform2ui, location, v0, v1);
+
1137}
+
+
+
1138inline void glUniform3ui(
+
1139 GLint location, GLuint v0, GLuint v1, GLuint v2,
+
1140 source_location const &sourceLocation = source_location::current()) {
+
1141 callGL(sourceLocation, ::glUniform3ui, location, v0, v1, v2);
+
1142}
+
+
+
1143inline void glUniform4ui(
+
1144 GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3,
+
1145 source_location const &sourceLocation = source_location::current()) {
+
1146 callGL(sourceLocation, ::glUniform4ui, location, v0, v1, v2, v3);
+
1147}
+
+
+
1148inline void glUniform1uiv(
+
1149 GLint location, GLsizei count, GLuint const *value,
+
1150 source_location const &sourceLocation = source_location::current()) {
+
1151 callGL(sourceLocation, ::glUniform1uiv, location, count, value);
+
1152}
+
+
+
1153inline void glUniform2uiv(
+
1154 GLint location, GLsizei count, GLuint const *value,
+
1155 source_location const &sourceLocation = source_location::current()) {
+
1156 callGL(sourceLocation, ::glUniform2uiv, location, count, value);
+
1157}
+
+
+
1158inline void glUniform3uiv(
+
1159 GLint location, GLsizei count, GLuint const *value,
+
1160 source_location const &sourceLocation = source_location::current()) {
+
1161 callGL(sourceLocation, ::glUniform3uiv, location, count, value);
+
1162}
+
+
+
1163inline void glUniform4uiv(
+
1164 GLint location, GLsizei count, GLuint const *value,
+
1165 source_location const &sourceLocation = source_location::current()) {
+
1166 callGL(sourceLocation, ::glUniform4uiv, location, count, value);
+
1167}
+
+
+ +
1169 GLenum buffer, GLint drawbuffer, GLint const *value,
+
1170 source_location const &sourceLocation = source_location::current()) {
+
1171 callGL(sourceLocation, ::glClearBufferiv, buffer, drawbuffer, value);
+
1172}
+
+
+ +
1174 GLenum buffer, GLint drawbuffer, GLuint const *value,
+
1175 source_location const &sourceLocation = source_location::current()) {
+
1176 callGL(sourceLocation, ::glClearBufferuiv, buffer, drawbuffer, value);
+
1177}
+
+
+ +
1179 GLenum buffer, GLint drawbuffer, GLfloat const *value,
+
1180 source_location const &sourceLocation = source_location::current()) {
+
1181 callGL(sourceLocation, ::glClearBufferfv, buffer, drawbuffer, value);
+
1182}
+
+
+ +
1184 GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil,
+
1185 source_location const &sourceLocation = source_location::current()) {
+
1186 callGL(sourceLocation, ::glClearBufferfi, buffer, drawbuffer, depth, stencil);
+
1187}
+
+
+
1188inline const GLubyte *glGetStringi(
+
1189 GLenum name, GLuint index,
+
1190 source_location const &sourceLocation = source_location::current()) {
+
1191 return callGL(sourceLocation, ::glGetStringi, name, index);
+
1192}
+
+
+ +
1194 GLenum readTarget, GLenum writeTarget, GLintptr readOffset,
+
1195 GLintptr writeOffset, GLsizeiptr size,
+
1196 source_location const &sourceLocation = source_location::current()) {
+
1197 callGL(sourceLocation, ::glCopyBufferSubData, readTarget, writeTarget,
+
1198 readOffset, writeOffset, size);
+
1199}
+
+
+ +
1201 GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames,
+
1202 GLuint *uniformIndices,
+
1203 source_location const &sourceLocation = source_location::current()) {
+
1204 callGL(sourceLocation, ::glGetUniformIndices, program, uniformCount,
+
1205 uniformNames, uniformIndices);
+
1206}
+
+
+ +
1208 GLuint program, GLsizei uniformCount, GLuint const *uniformIndices,
+
1209 GLenum pname, GLint *params,
+
1210 source_location const &sourceLocation = source_location::current()) {
+
1211 callGL(sourceLocation, ::glGetActiveUniformsiv, program, uniformCount,
+
1212 uniformIndices, pname, params);
+
1213}
+
+
+ +
1215 GLuint program, GLchar const *uniformBlockName,
+
1216 source_location const &sourceLocation = source_location::current()) {
+
1217 return callGL(sourceLocation, ::glGetUniformBlockIndex, program,
+
1218 uniformBlockName);
+
1219}
+
+
+ +
1221 GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params,
+
1222 source_location const &sourceLocation = source_location::current()) {
+
1223 callGL(sourceLocation, ::glGetActiveUniformBlockiv, program,
+
1224 uniformBlockIndex, pname, params);
+
1225}
+
+
+ +
1227 GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length,
+
1228 GLchar *uniformBlockName,
+
1229 source_location const &sourceLocation = source_location::current()) {
+
1230 callGL(sourceLocation, ::glGetActiveUniformBlockName, program,
+
1231 uniformBlockIndex, bufSize, length, uniformBlockName);
+
1232}
+
+
+ +
1234 GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding,
+
1235 source_location const &sourceLocation = source_location::current()) {
+
1236 callGL(sourceLocation, ::glUniformBlockBinding, program, uniformBlockIndex,
+
1237 uniformBlockBinding);
+
1238}
+
+
1239
+
+ +
1241 GLenum mode, GLint first, GLsizei count, GLsizei instancecount,
+
1242 source_location const &sourceLocation = source_location::current()) {
+
1243 callGL(sourceLocation, ::glDrawArraysInstanced, mode, first, count,
+
1244 instancecount);
+
1245}
+
+
+ +
1247 GLenum mode, GLsizei count, GLenum type, void const *indices,
+
1248 GLsizei instancecount,
+
1249 source_location const &sourceLocation = source_location::current()) {
+
1250 callGL(sourceLocation, ::glDrawElementsInstanced, mode, count, type, indices,
+
1251 instancecount);
+
1252}
+
+
+
1253inline GLsync glFenceSync(
+
1254 GLenum condition, GLbitfield flags,
+
1255 source_location const &sourceLocation = source_location::current()) {
+
1256 return callGL(sourceLocation, ::glFenceSync, condition, flags);
+
1257}
+
+
1258inline GLboolean
+
+
1259glIsSync(GLsync sync,
+
1260 source_location const &sourceLocation = source_location::current()) {
+
1261 return callGL(sourceLocation, ::glIsSync, sync);
+
1262}
+
+
+
1263inline void glDeleteSync(GLsync sync, source_location const &sourceLocation =
+
1264 source_location::current()) {
+
1265 callGL(sourceLocation, ::glDeleteSync, sync);
+
1266}
+
+
+
1267inline GLenum glClientWaitSync(
+
1268 GLsync sync, GLbitfield flags, GLuint64 timeout,
+
1269 source_location const &sourceLocation = source_location::current()) {
+
1270 return callGL(sourceLocation, ::glClientWaitSync, sync, flags, timeout);
+
1271}
+
+
1272inline void
+
+
1273glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout,
+
1274 source_location const &sourceLocation = source_location::current()) {
+
1275 callGL(sourceLocation, ::glWaitSync, sync, flags, timeout);
+
1276}
+
+
+ +
1278 GLenum pname, GLint64 *data,
+
1279 source_location const &sourceLocation = source_location::current()) {
+
1280 callGL(sourceLocation, ::glGetInteger64v, pname, data);
+
1281}
+
+
+
1282inline void glGetSynciv(
+
1283 GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values,
+
1284 source_location const &sourceLocation = source_location::current()) {
+
1285 callGL(sourceLocation, ::glGetSynciv, sync, pname, count, length, values);
+
1286}
+
+
+ +
1288 GLenum target, GLuint index, GLint64 *data,
+
1289 source_location const &sourceLocation = source_location::current()) {
+
1290 callGL(sourceLocation, ::glGetInteger64i_v, target, index, data);
+
1291}
+
+
+ +
1293 GLenum target, GLenum pname, GLint64 *params,
+
1294 source_location const &sourceLocation = source_location::current()) {
+
1295 callGL(sourceLocation, ::glGetBufferParameteri64v, target, pname, params);
+
1296}
+
+
+
1297inline void glGenSamplers(
+
1298 GLsizei count, GLuint *samplers,
+
1299 source_location const &sourceLocation = source_location::current()) {
+
1300 callGL(sourceLocation, ::glGenSamplers, count, samplers);
+
1301}
+
+
+ +
1303 GLsizei count, GLuint const *samplers,
+
1304 source_location const &sourceLocation = source_location::current()) {
+
1305 callGL(sourceLocation, ::glDeleteSamplers, count, samplers);
+
1306}
+
+
+
1307inline GLboolean glIsSampler(
+
1308 GLuint sampler,
+
1309 source_location const &sourceLocation = source_location::current()) {
+
1310 return callGL(sourceLocation, ::glIsSampler, sampler);
+
1311}
+
+
+
1312inline void glBindSampler(
+
1313 GLuint unit, GLuint sampler,
+
1314 source_location const &sourceLocation = source_location::current()) {
+
1315 callGL(sourceLocation, ::glBindSampler, unit, sampler);
+
1316}
+
+
+ +
1318 GLuint sampler, GLenum pname, GLint param,
+
1319 source_location const &sourceLocation = source_location::current()) {
+
1320 callGL(sourceLocation, ::glSamplerParameteri, sampler, pname, param);
+
1321}
+
+
+ +
1323 GLuint sampler, GLenum pname, GLint const *param,
+
1324 source_location const &sourceLocation = source_location::current()) {
+
1325 callGL(sourceLocation, ::glSamplerParameteriv, sampler, pname, param);
+
1326}
+
+
+ +
1328 GLuint sampler, GLenum pname, GLfloat param,
+
1329 source_location const &sourceLocation = source_location::current()) {
+
1330 callGL(sourceLocation, ::glSamplerParameterf, sampler, pname, param);
+
1331}
+
+
+ +
1333 GLuint sampler, GLenum pname, GLfloat const *param,
+
1334 source_location const &sourceLocation = source_location::current()) {
+
1335 callGL(sourceLocation, ::glSamplerParameterfv, sampler, pname, param);
+
1336}
+
+
+ +
1338 GLuint sampler, GLenum pname, GLint *params,
+
1339 source_location const &sourceLocation = source_location::current()) {
+
1340 callGL(sourceLocation, ::glGetSamplerParameteriv, sampler, pname, params);
+
1341}
+
+
+ +
1343 GLuint sampler, GLenum pname, GLfloat *params,
+
1344 source_location const &sourceLocation = source_location::current()) {
+
1345 callGL(sourceLocation, ::glGetSamplerParameterfv, sampler, pname, params);
+
1346}
+
+
+ +
1348 GLuint index, GLuint divisor,
+
1349 source_location const &sourceLocation = source_location::current()) {
+
1350 callGL(sourceLocation, ::glVertexAttribDivisor, index, divisor);
+
1351}
+
+
+ +
1353 GLenum target, GLuint id,
+
1354 source_location const &sourceLocation = source_location::current()) {
+
1355 callGL(sourceLocation, ::glBindTransformFeedback, target, id);
+
1356}
+
+
+ +
1358 GLsizei n, GLuint const *ids,
+
1359 source_location const &sourceLocation = source_location::current()) {
+
1360 callGL(sourceLocation, ::glDeleteTransformFeedbacks, n, ids);
+
1361}
+
+
+ +
1363 GLsizei n, GLuint *ids,
+
1364 source_location const &sourceLocation = source_location::current()) {
+
1365 callGL(sourceLocation, ::glGenTransformFeedbacks, n, ids);
+
1366}
+
+
+
1367inline GLboolean glIsTransformFeedback(
+
1368 GLuint id,
+
1369 source_location const &sourceLocation = source_location::current()) {
+
1370 return callGL(sourceLocation, ::glIsTransformFeedback, id);
+
1371}
+
+
+ +
1373 source_location const &sourceLocation = source_location::current()) {
+
1374 callGL(sourceLocation, ::glPauseTransformFeedback);
+
1375}
+
+
+ +
1377 source_location const &sourceLocation = source_location::current()) {
+
1378 callGL(sourceLocation, ::glResumeTransformFeedback);
+
1379}
+
+
+ +
1381 GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat,
+
1382 void *binary,
+
1383 source_location const &sourceLocation = source_location::current()) {
+
1384 callGL(sourceLocation, ::glGetProgramBinary, program, bufSize, length,
+
1385 binaryFormat, binary);
+
1386}
+
+
+ +
1388 GLuint program, GLenum binaryFormat, void const *binary, GLsizei length,
+
1389 source_location const &sourceLocation = source_location::current()) {
+
1390 callGL(sourceLocation, ::glProgramBinary, program, binaryFormat, binary,
+
1391 length);
+
1392}
+
+
+ +
1394 GLuint program, GLenum pname, GLint value,
+
1395 source_location const &sourceLocation = source_location::current()) {
+
1396 callGL(sourceLocation, ::glProgramParameteri, program, pname, value);
+
1397}
+
+
+ +
1399 GLenum target, GLsizei numAttachments, GLenum const *attachments,
+
1400 source_location const &sourceLocation = source_location::current()) {
+
1401 callGL(sourceLocation, ::glInvalidateFramebuffer, target, numAttachments,
+
1402 attachments);
+
1403}
+
+
+ +
1405 GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x,
+
1406 GLint y, GLsizei width, GLsizei height,
+
1407 source_location const &sourceLocation = source_location::current()) {
+
1408 callGL(sourceLocation, ::glInvalidateSubFramebuffer, target, numAttachments,
+
1409 attachments, x, y, width, height);
+
1410}
+
+
+
1411inline void glTexStorage2D(
+
1412 GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
+
1413 GLsizei height,
+
1414 source_location const &sourceLocation = source_location::current()) {
+
1415 callGL(sourceLocation, ::glTexStorage2D, target, levels, internalformat,
+
1416 width, height);
+
1417}
+
+
+
1418inline void glTexStorage3D(
+
1419 GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
+
1420 GLsizei height, GLsizei depth,
+
1421 source_location const &sourceLocation = source_location::current()) {
+
1422 callGL(sourceLocation, ::glTexStorage3D, target, levels, internalformat,
+
1423 width, height, depth);
+
1424}
+
+
+ +
1426 GLenum target, GLenum internalformat, GLenum pname, GLsizei count,
+
1427 GLint *params,
+
1428 source_location const &sourceLocation = source_location::current()) {
+
1429 callGL(sourceLocation, ::glGetInternalformativ, target, internalformat, pname,
+
1430 count, params);
+
1431}
+
+
1432
+
1433#if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
+
1434
+
1435// OpenGL 3.0+ function definitions
+
1436
+
+ +
1438 GLuint program, GLuint colorNumber, char const *name,
+
1439 source_location const &sourceLocation = source_location::current()) {
+
1440 callGL(sourceLocation, ::glBindFragDataLocation, program, colorNumber, name);
+
1441}
+
+
1442
+
1443// OpenGL ES 3.1 function definitions
+
+ +
1445 GLenum target, GLint level, GLenum pname, GLfloat *params,
+
1446 source_location const &sourceLocation = source_location::current()) {
+
1447 callGL(sourceLocation, ::glGetTexLevelParameterfv, target, level, pname,
+
1448 params);
+
1449}
+
+
+ +
1451 GLenum target, GLint level, GLenum pname, GLint *params,
+
1452 source_location const &sourceLocation = source_location::current()) {
+
1453 callGL(sourceLocation, ::glGetTexLevelParameteriv, target, level, pname,
+
1454 params);
+
1455}
+
+
1456
+
1457// OpenGL 3.2+ function definitions
+
1458// OpenGL ES 3.2 function definitions
+
+ +
1460 GLenum target, GLenum attachment, GLuint texture, GLint level,
+
1461 source_location const &sourceLocation = source_location::current()) {
+
1462 callGL(sourceLocation, ::glFramebufferTexture, target, attachment, texture,
+
1463 level);
+
1464}
+
+
1465
+
+ +
1467 GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
+
1468 GLsizei height, GLboolean fixedsamplelocations,
+
1469 source_location const &sourceLocation = source_location::current()) {
+
1470 callGL(sourceLocation, ::glTexImage2DMultisample, target, samples,
+
1471 internalformat, width, height, fixedsamplelocations);
+
1472}
+
+
1473
+
1474// OpenGL 2.0+ function definitions
+
1475
+
+
1476inline void glGetDoublev(
+
1477 GLenum pname, GLdouble *params,
+
1478 source_location const &sourceLocation = source_location::current()) {
+
1479 callGL(sourceLocation, ::glGetDoublev, pname, params);
+
1480}
+
+
1481#endif
+
1482// NOLINTEND(readability-identifier-length)
+
1483
+
1484} // namespace abcg
+
1485
+
1486#if defined(_MSC_VER)
+
1487#pragma warning(pop)
+
1488#endif
+
1489
+
1490#endif
Header file for including OpenGL-related third-party dependencies.
-
Root namespace.
Definition: abcgApplication.hpp:23
-
void glSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1332
-
void glPauseTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1372
-
void glDetachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:312
-
void glPixelStorei(GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:580
-
void glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:476
-
void glDepthRangef(GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:307
-
void glUniform1fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:698
-
void glTransformFeedbackVaryings(GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1068
-
void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:634
-
void glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:166
-
void glEndTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1052
-
GLint glGetFragDataLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1123
-
void glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1273
-
GLenum glCheckFramebufferStatus(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:182
-
GLboolean glIsRenderbuffer(GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:556
-
void glUniform3uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1158
-
void glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:830
-
void glUniform1i(GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:703
-
void glClearBufferiv(GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1168
-
void glDeleteProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:271
-
void glCullFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:253
-
void glStencilMask(GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:639
-
GLboolean glUnmapBuffer(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:940
-
GLint glGetUniformLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:512
-
GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:542
-
void glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1226
-
GLuint glCreateProgram(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:243
-
void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:355
-
void glGenTransformFeedbacks(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1362
-
void glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:753
-
void glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1098
-
void glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:985
-
void glUniform1iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:708
-
void glEnableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:342
-
void glDepthMask(GLboolean flag, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:303
-
void glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:156
-
void glDeleteSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1263
-
void glVertexAttribI4iv(GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1108
-
void glSamplerParameteriv(GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1322
-
void checkGLError(source_location const &sourceLocation, std::string_view appendString)
Checks OpenGL error status and throws on error with a log message.
Definition: abcgOpenGLFunction.cpp:25
-
void glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:763
-
void glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1240
-
GLboolean glIsShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:562
-
void glClear(GLbitfield mask, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:188
-
void glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1005
-
void glClearStencil(GLint s, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:201
-
void glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:733
-
void glVertexAttrib2fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:815
-
void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:460
-
void glBindBuffer(GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:127
-
void glTexParameterf(GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:666
-
void glUniform4fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:758
-
void glReleaseShaderCompiler(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:597
-
void glGetUniformiv(GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:507
-
void glBindFragDataLocation(GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1437
-
void glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1103
-
void glBufferData(GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:172
-
void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:205
-
void glBeginTransformFeedback(GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1047
-
void glBeginQuery(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:920
-
void glViewport(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:848
-
void glUniform1ui(GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1128
-
void glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1411
-
void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1404
-
void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:362
-
void glDrawArrays(GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:327
-
void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:492
-
void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:438
-
void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:388
-
void glValidateProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:795
-
void glTexParameteri(GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:676
-
void glClearBufferfv(GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1178
-
GLenum glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1267
-
void glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1143
-
void glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:973
-
void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:866
-
void glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1425
-
void glGetSynciv(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1282
-
void glGetInteger64v(GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1277
-
auto callGL(source_location const &sourceLocation, TFun &&function, TArgs &&...args)
Checks for OpenGL errors before and after a function call.
Definition: abcgOpenGLFunction.hpp:62
-
GLboolean glIsVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1037
-
void glDeleteVertexArrays(GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1027
-
void glGenBuffers(GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:373
-
void glEnable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:338
-
void glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:779
-
void glGenFramebuffers(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:383
-
void glGetIntegerv(GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:444
-
void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1398
-
void glBlendFunc(GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:161
-
GLuint glCreateShader(GLenum shaderType, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:247
-
void glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:785
-
void glDeleteTransformFeedbacks(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1357
-
GLuint glGetUniformBlockIndex(GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1214
-
void glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1246
-
void glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:412
-
void glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1093
-
void glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1292
-
void glVertexAttribDivisor(GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1347
-
void glDeleteFramebuffers(GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:264
-
void glDeleteQueries(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:910
-
GLboolean glIsSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1259
-
void glUniform1f(GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:693
-
void glFrontFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:369
-
void glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1380
-
void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:192
-
void glDeleteTextures(GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:292
-
void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1444
-
void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:935
-
void glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:522
-
void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:222
-
GLboolean glIsQuery(GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:916
-
void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:874
-
void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:648
-
void glGenVertexArrays(GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1032
-
void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:686
-
void glResumeTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1376
-
void glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1233
-
void glShaderSource(GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:624
-
void glDisable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:318
-
void glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:470
-
void glGenQueries(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:905
-
void glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:653
-
void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:229
-
void glBindTransformFeedback(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1352
-
void glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1056
-
void glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:979
-
void glGetDoublev(GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1476
-
void glDeleteSamplers(GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1302
-
void glUniform3i(GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:743
-
GLboolean glIsTexture(GLuint texture, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:566
-
void glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1193
-
void glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:454
-
void glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1017
-
void glFinish(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:348
-
void glDisableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:322
-
void glGetBooleanv(GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:423
-
void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:897
-
void glUniform3fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:738
-
void glHint(GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:533
-
void glUniform3iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:748
-
void glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1075
-
void glCompileShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:210
-
void glGetQueryiv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:930
-
void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:882
-
void glClearBufferuiv(GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1173
-
void glTexParameterfv(GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:671
-
void glReadBuffer(GLenum src, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:855
-
void glGetShaderiv(GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:465
-
void glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1327
-
GLint glGetAttribLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:418
-
void glBindRenderbuffer(GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:137
-
void glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1342
-
void glDepthFunc(GLenum func, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:299
-
void glBindBufferBase(GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1063
-
void glTexParameteriv(GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:681
-
void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:859
-
void glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1082
-
void glProgramBinary(GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1387
-
void * glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1011
-
void glDeleteBuffers(GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:257
-
void glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1220
-
void glVertexAttrib3fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:825
-
void glStencilMaskSeparate(GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:643
-
void glAttachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:117
-
void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:601
-
void glBindFramebuffer(GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:132
-
void glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1207
-
void glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:810
-
void glGetIntegeri_v(GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1042
-
void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:236
-
void glUniform2i(GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:723
-
void glUniform2fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:718
-
void glLineWidth(GLfloat width, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:571
-
void glDrawElements(GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:332
-
void glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:961
-
void glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:773
-
GLboolean glIsFramebuffer(GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:546
-
void glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:482
-
void glUniform2uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1153
-
void glActiveTexture(GLenum texture, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:112
-
void glUseProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:791
-
void glVertexAttribI4uiv(GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1113
-
void glUniform4uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1163
-
const GLubyte * glGetStringi(GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1188
-
void glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1287
-
void glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:405
-
void glGetTexParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:497
-
void glUniform2ui(GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1133
-
void glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:428
-
void glGetVertexAttribPointerv(GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:527
-
void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:215
-
std::source_location source_location
Definition: abcgOpenGLError.hpp:25
-
void glGenerateMipmap(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:378
-
void glClearDepthf(GLfloat d, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:197
-
void glGetUniformIndices(GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1200
-
void glEndQuery(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:926
-
GLsync glFenceSync(GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1253
-
void glGetUniformuiv(GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1118
-
void glStencilFunc(GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:629
-
void glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1088
-
void glDeleteShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:285
-
void glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:955
-
void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:889
-
GLboolean glIsProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:551
-
GLboolean glIsSampler(GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1307
-
void glGenSamplers(GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1297
-
void glGetBufferPointerv(GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:945
-
void glFramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1459
-
void glBindTexture(GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:142
-
void glSampleCoverage(GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:607
-
void glUniform2iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:728
-
void glDrawBuffers(GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:950
-
void glFlush(source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:352
-
void glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:398
-
void glGenTextures(GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:393
-
void glScissor(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:613
-
void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:658
-
void glProgramParameteri(GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1393
-
void glGetUniformfv(GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:502
-
void glBindAttribLocation(GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:122
-
void glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1337
-
void glUniform1uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1148
-
void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:590
-
void glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:967
-
void glSamplerParameteri(GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1317
-
void glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1138
-
void glTexImage2DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1466
-
void glDeleteRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:278
-
GLboolean glIsTransformFeedback(GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1367
-
void glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:517
-
void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1450
-
void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:991
-
void glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:998
-
void glUniform2f(GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:713
-
void glVertexAttrib1fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:805
-
void glGetFloatv(GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:433
-
void glVertexAttrib4fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:835
-
void glShaderBinary(GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:617
-
const GLubyte * glGetString(GLenum name, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:487
-
void glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:840
-
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:177
-
void glVertexAttrib1f(GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:800
-
void glLinkProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:575
-
void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:147
-
void glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1418
-
void glGetProgramiv(GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:449
-
void glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:820
-
void glPolygonOffset(GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:585
-
void glBlendEquation(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:152
-
GLboolean glIsBuffer(GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:538
-
void glBindSampler(GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1312
-
void glUniform4iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:768
-
void glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1183
-
void glBindVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition: abcgOpenGLFunction.hpp:1022
+
Root namespace.
Definition abcgApplication.hpp:23
+
void glSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1332
+
void glPauseTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1372
+
void glDetachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:312
+
void glPixelStorei(GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:580
+
void glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:476
+
void glDepthRangef(GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:307
+
void glUniform1fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:698
+
void glTransformFeedbackVaryings(GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1068
+
void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:634
+
void glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:166
+
void glEndTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1052
+
GLint glGetFragDataLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1123
+
void glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1273
+
GLenum glCheckFramebufferStatus(GLenum target, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:182
+
GLboolean glIsRenderbuffer(GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:556
+
void glUniform3uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1158
+
void glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:830
+
void glUniform1i(GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:703
+
void * glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1011
+
void glClearBufferiv(GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1168
+
void glDeleteProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:271
+
void glCullFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:253
+
void glStencilMask(GLuint mask, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:639
+
GLboolean glUnmapBuffer(GLenum target, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:940
+
GLint glGetUniformLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:512
+
GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:542
+
void glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1226
+
GLuint glCreateProgram(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:243
+
void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:355
+
void glGenTransformFeedbacks(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1362
+
void glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:753
+
void glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1098
+
void glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:985
+
void glUniform1iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:708
+
void glEnableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:342
+
void glDepthMask(GLboolean flag, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:303
+
void glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:156
+
void glDeleteSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1263
+
void glVertexAttribI4iv(GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1108
+
void glSamplerParameteriv(GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1322
+
void checkGLError(source_location const &sourceLocation, std::string_view appendString)
Checks OpenGL error status and throws on error with a log message.
Definition abcgOpenGLFunction.cpp:25
+
void glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:763
+
void glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1240
+
GLboolean glIsShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:562
+
void glClear(GLbitfield mask, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:188
+
void glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1005
+
void glClearStencil(GLint s, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:201
+
void glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:733
+
void glVertexAttrib2fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:815
+
void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:460
+
void glBindBuffer(GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:127
+
void glTexParameterf(GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:666
+
void glUniform4fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:758
+
void glReleaseShaderCompiler(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:597
+
void glGetUniformiv(GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:507
+
void glBindFragDataLocation(GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1437
+
void glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1103
+
void glBufferData(GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:172
+
void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:205
+
void glBeginTransformFeedback(GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1047
+
void glBeginQuery(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:920
+
void glViewport(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:848
+
void glUniform1ui(GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1128
+
void glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1411
+
void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1404
+
void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:362
+
void glDrawArrays(GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:327
+
void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:492
+
void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:438
+
void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:388
+
void glValidateProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:795
+
void glTexParameteri(GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:676
+
void glClearBufferfv(GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1178
+
GLenum glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1267
+
void glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1143
+
void glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:973
+
void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:866
+
void glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1425
+
void glGetSynciv(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1282
+
void glGetInteger64v(GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1277
+
auto callGL(source_location const &sourceLocation, TFun &&function, TArgs &&...args)
Checks for OpenGL errors before and after a function call.
Definition abcgOpenGLFunction.hpp:62
+
GLboolean glIsVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1037
+
void glDeleteVertexArrays(GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1027
+
void glGenBuffers(GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:373
+
void glEnable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:338
+
void glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:779
+
void glGenFramebuffers(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:383
+
void glGetIntegerv(GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:444
+
const GLubyte * glGetStringi(GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1188
+
void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1398
+
void glBlendFunc(GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:161
+
GLuint glCreateShader(GLenum shaderType, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:247
+
void glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:785
+
void glDeleteTransformFeedbacks(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1357
+
GLuint glGetUniformBlockIndex(GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1214
+
void glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1246
+
void glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:412
+
void glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1093
+
void glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1292
+
void glVertexAttribDivisor(GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1347
+
void glDeleteFramebuffers(GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:264
+
void glDeleteQueries(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:910
+
GLboolean glIsSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1259
+
void glUniform1f(GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:693
+
void glFrontFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:369
+
void glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1380
+
void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:192
+
void glDeleteTextures(GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:292
+
void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1444
+
void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:935
+
const GLubyte * glGetString(GLenum name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:487
+
void glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:522
+
void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:222
+
GLboolean glIsQuery(GLuint id, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:916
+
void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:874
+
void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:648
+
void glGenVertexArrays(GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1032
+
void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:686
+
void glResumeTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1376
+
void glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1233
+
void glShaderSource(GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:624
+
void glDisable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:318
+
void glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:470
+
void glGenQueries(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:905
+
void glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:653
+
void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:229
+
void glBindTransformFeedback(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1352
+
void glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1056
+
void glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:979
+
void glGetDoublev(GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1476
+
void glDeleteSamplers(GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1302
+
void glUniform3i(GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:743
+
GLboolean glIsTexture(GLuint texture, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:566
+
void glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1193
+
void glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:454
+
void glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1017
+
void glFinish(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:348
+
void glDisableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:322
+
void glGetBooleanv(GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:423
+
void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:897
+
void glUniform3fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:738
+
void glHint(GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:533
+
void glUniform3iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:748
+
void glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1075
+
void glCompileShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:210
+
void glGetQueryiv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:930
+
void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:882
+
void glClearBufferuiv(GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1173
+
void glTexParameterfv(GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:671
+
void glReadBuffer(GLenum src, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:855
+
void glGetShaderiv(GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:465
+
void glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1327
+
GLint glGetAttribLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:418
+
void glBindRenderbuffer(GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:137
+
void glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1342
+
void glDepthFunc(GLenum func, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:299
+
void glBindBufferBase(GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1063
+
void glTexParameteriv(GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:681
+
void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:859
+
void glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1082
+
void glProgramBinary(GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1387
+
void glDeleteBuffers(GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:257
+
void glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1220
+
void glVertexAttrib3fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:825
+
void glStencilMaskSeparate(GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:643
+
void glAttachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:117
+
void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:601
+
void glBindFramebuffer(GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:132
+
void glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1207
+
void glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:810
+
void glGetIntegeri_v(GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1042
+
void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:236
+
void glUniform2i(GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:723
+
void glUniform2fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:718
+
void glLineWidth(GLfloat width, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:571
+
void glDrawElements(GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:332
+
void glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:961
+
void glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:773
+
GLboolean glIsFramebuffer(GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:546
+
void glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:482
+
void glUniform2uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1153
+
void glActiveTexture(GLenum texture, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:112
+
void glUseProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:791
+
void glVertexAttribI4uiv(GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1113
+
void glUniform4uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1163
+
void glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1287
+
void glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:405
+
void glGetTexParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:497
+
void glUniform2ui(GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1133
+
void glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:428
+
void glGetVertexAttribPointerv(GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:527
+
void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:215
+
std::source_location source_location
Definition abcgOpenGLError.hpp:25
+
void glGenerateMipmap(GLenum target, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:378
+
void glClearDepthf(GLfloat d, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:197
+
void glGetUniformIndices(GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1200
+
void glEndQuery(GLenum target, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:926
+
GLsync glFenceSync(GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1253
+
void glGetUniformuiv(GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1118
+
void glStencilFunc(GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:629
+
void glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1088
+
void glDeleteShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:285
+
void glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:955
+
void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:889
+
GLboolean glIsProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:551
+
GLboolean glIsSampler(GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1307
+
void glGenSamplers(GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1297
+
void glGetBufferPointerv(GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:945
+
void glFramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1459
+
void glBindTexture(GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:142
+
void glSampleCoverage(GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:607
+
void glUniform2iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:728
+
void glDrawBuffers(GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:950
+
void glFlush(source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:352
+
void glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:398
+
void glGenTextures(GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:393
+
void glScissor(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:613
+
void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:658
+
void glProgramParameteri(GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1393
+
void glGetUniformfv(GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:502
+
void glBindAttribLocation(GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:122
+
void glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1337
+
void glUniform1uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1148
+
void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:590
+
void glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:967
+
void glSamplerParameteri(GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1317
+
void glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1138
+
void glTexImage2DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1466
+
void glDeleteRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:278
+
GLboolean glIsTransformFeedback(GLuint id, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1367
+
void glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:517
+
void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1450
+
void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:991
+
void glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:998
+
void glUniform2f(GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:713
+
void glVertexAttrib1fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:805
+
void glGetFloatv(GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:433
+
void glVertexAttrib4fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:835
+
void glShaderBinary(GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:617
+
void glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:840
+
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:177
+
void glVertexAttrib1f(GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:800
+
void glLinkProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:575
+
void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:147
+
void glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1418
+
void glGetProgramiv(GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:449
+
void glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:820
+
void glPolygonOffset(GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:585
+
void glBlendEquation(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:152
+
GLboolean glIsBuffer(GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:538
+
void glBindSampler(GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1312
+
void glUniform4iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:768
+
void glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1183
+
void glBindVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition abcgOpenGLFunction.hpp:1022
diff --git a/abcg/doc/html/abcgOpenGLImage_8cpp.html b/abcg/doc/html/abcgOpenGLImage_8cpp.html index c35b42421..78c3454c7 100644 --- a/abcg/doc/html/abcgOpenGLImage_8cpp.html +++ b/abcg/doc/html/abcgOpenGLImage_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLImage.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.cpp File Reference
@@ -115,7 +122,7 @@
Include dependency graph for abcgOpenGLImage.cpp:
-
+

Detailed Description

Definition of OpenGL texture loading helper functions.

@@ -127,7 +134,7 @@ diff --git a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.map b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.map index c681518f6..03ec4eb0b 100644 --- a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.map +++ b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.map @@ -1,16 +1,29 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.md5 b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.md5 index 6b27341a0..e8999c207 100644 --- a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.md5 @@ -1 +1 @@ -2a7733979ce8de001648e558e8dcfc1a \ No newline at end of file +b54efde40776f1e6eb2abe545d899c0d \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.svg b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.svg index 450421581..80c7a0a06 100644 --- a/abcg/doc/html/abcgOpenGLImage_8cpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLImage_8cpp__incl.svg @@ -4,214 +4,253 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLImage.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.cpp - + Node2 - - -abcgOpenGLImage.hpp + + +abcgOpenGLImage.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -abcgImage.hpp + + +abcgImage.hpp - + Node1->Node6 - - + + + + + - + Node8 - - -cppitertools/itertools.hpp + + +cppitertools/itertools.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -fmt/core.h + + +fmt/core.h - + Node1->Node9 - - + + + + + - + Node10 - - -gsl/gsl + + +gsl/gsl - + Node1->Node10 - - + + + + + - + Node11 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node11 - - + + + + + - + Node3 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -array + + +array - + Node2->Node4 - - + + + + + - + Node5 - - -string_view + + +string_view - + Node2->Node5 - - + + + + + - + Node7 - - -SDL_image.h + + +SDL_image.h - + Node6->Node7 - - + + + + + - + Node12 - - -source_location + + +source_location - + Node11->Node12 - - + + + + + - + Node13 - - -stdexcept + + +stdexcept - + Node11->Node13 - - + + + + + - + Node14 - - -string + + +string - + Node11->Node14 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp.html b/abcg/doc/html/abcgOpenGLImage_8hpp.html index 83ea71fae..2c5607868 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp.html +++ b/abcg/doc/html/abcgOpenGLImage_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Functions
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp File Reference
@@ -116,17 +123,17 @@
Include dependency graph for abcgOpenGLImage.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -135,19 +142,19 @@

+

Classes

struct  abcg::OpenGLTextureCreateInfo
 Configuration settings for creating a 2D texture for OpenGL. More...
 Configuration settings for creating a cubemap texture for OpenGL. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - - + + - - + +

+

Functions

GLuint abcg::loadOpenGLTexture (OpenGLTextureCreateInfo const &createInfo)
 Creates an OpenGL 2D texture from an image loaded from a filesystem path. More...
GLuint abcg::loadOpenGLTexture (OpenGLTextureCreateInfo const &createInfo)
 Creates an OpenGL 2D texture from an image loaded from a filesystem path.
 
GLuint abcg::loadOpenGLCubemap (OpenGLCubemapCreateInfo const &createInfo)
 Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths. More...
GLuint abcg::loadOpenGLCubemap (OpenGLCubemapCreateInfo const &createInfo)
 Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths.
 

Detailed Description

@@ -160,7 +167,7 @@ diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp.js b/abcg/doc/html/abcgOpenGLImage_8hpp.js index 19387468d..76ed081c6 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp.js +++ b/abcg/doc/html/abcgOpenGLImage_8hpp.js @@ -1,7 +1,7 @@ var abcgOpenGLImage_8hpp = [ - [ "OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], - [ "OpenGLCubemapCreateInfo", "structabcg_1_1OpenGLCubemapCreateInfo.html", "structabcg_1_1OpenGLCubemapCreateInfo" ], + [ "abcg::OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], + [ "abcg::OpenGLCubemapCreateInfo", "structabcg_1_1OpenGLCubemapCreateInfo.html", "structabcg_1_1OpenGLCubemapCreateInfo" ], [ "loadOpenGLCubemap", "abcgOpenGLImage_8hpp.html#a39af18b7fd13bbdcd404b344ca29014e", null ], [ "loadOpenGLTexture", "abcgOpenGLImage_8hpp.html#ae4a5204a112c5bfabcab65d66f49aa8d", null ] ]; \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.map index 435fc5038..728045198 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.md5 index 61499f5a4..d4c8893c5 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.md5 @@ -1 +1 @@ -4cd0d4bbab794d153a21153fdb62695b \ No newline at end of file +01e97aaa8d5aac78ba41421ce11e6267 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.svg index d73181624..6990f2aa5 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.map b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.map index 30c6207c0..91221f833 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.md5 index 68ddf4a63..e646f6eb2 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.md5 @@ -1 +1 @@ -35987b75ada4d956a977f32b607f37d8 \ No newline at end of file +4d9277256aeb58d53686da3a0a0a22aa \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.svg b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.svg index da7c5326c..ad6d372b2 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLImage_8hpp__incl.svg @@ -4,64 +4,73 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLImage.hpp - + Node2 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -array + + +array - + Node1->Node3 - - + + + + + - + Node4 - - -string_view + + +string_view - + Node1->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLImage_8hpp_source.html b/abcg/doc/html/abcgOpenGLImage_8hpp_source.html index 5510b820b..962a7c6ab 100644 --- a/abcg/doc/html/abcgOpenGLImage_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLImage_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,69 +99,79 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLImage.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_OPENGL_IMAGE_HPP_
-
12 #define ABCG_OPENGL_IMAGE_HPP_
-
13 
-
14 #include "abcgOpenGLExternal.hpp"
-
15 
-
16 #include <array>
-
17 #include <string_view>
-
18 
-
19 namespace abcg {
-
20 struct OpenGLTextureCreateInfo;
-
21 struct OpenGLCubemapCreateInfo;
-
22 
-
23 [[nodiscard]] GLuint
-
24 loadOpenGLTexture(OpenGLTextureCreateInfo const &createInfo);
-
25 [[nodiscard]] GLuint
-
26 loadOpenGLCubemap(OpenGLCubemapCreateInfo const &createInfo);
-
27 } // namespace abcg
-
28 
- -
34  std::string_view path{};
-
36  bool generateMipmaps{true};
-
38  bool flipUpsideDown{true};
-
41  bool sRGBToLinear{false};
-
42 };
-
43 
- -
50  std::array<std::string_view, 6> paths{};
-
52  bool generateMipmaps{true};
-
55  bool rightHandedSystem{true};
-
56 };
-
57 
-
58 #endif
+Go to the documentation of this file.
1
+
11#ifndef ABCG_OPENGL_IMAGE_HPP_
+
12#define ABCG_OPENGL_IMAGE_HPP_
+
13
+ +
15
+
16#include <array>
+
17#include <string_view>
+
18
+
19namespace abcg {
+
20struct OpenGLTextureCreateInfo;
+
21struct OpenGLCubemapCreateInfo;
+
22
+
23[[nodiscard]] GLuint
+
24loadOpenGLTexture(OpenGLTextureCreateInfo const &createInfo);
+
25[[nodiscard]] GLuint
+
26loadOpenGLCubemap(OpenGLCubemapCreateInfo const &createInfo);
+
27} // namespace abcg
+
28
+
+ +
34 std::string_view path{};
+
36 bool generateMipmaps{true};
+
38 bool flipUpsideDown{true};
+
41 bool sRGBToLinear{false};
+
42};
+
+
43
+
+ +
50 std::array<std::string_view, 6> paths{};
+
52 bool generateMipmaps{true};
+ +
56};
+
+
57
+
58#endif
Header file for including OpenGL-related third-party dependencies.
-
Root namespace.
Definition: abcgApplication.hpp:23
-
GLuint loadOpenGLCubemap(OpenGLCubemapCreateInfo const &createInfo)
Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths.
Definition: abcgOpenGLImage.cpp:101
-
GLuint loadOpenGLTexture(OpenGLTextureCreateInfo const &createInfo)
Creates an OpenGL 2D texture from an image loaded from a filesystem path.
Definition: abcgOpenGLImage.cpp:30
-
Configuration settings for creating a cubemap texture for OpenGL.
Definition: abcgOpenGLImage.hpp:47
-
bool rightHandedSystem
Whether to convert the cubemap from a left-handed system to a right-handed system.
Definition: abcgOpenGLImage.hpp:55
-
std::array< std::string_view, 6 > paths
Array of paths to the image files (PNG or JPEG) containing the sides of the cube map,...
Definition: abcgOpenGLImage.hpp:50
-
bool generateMipmaps
Whether to generate mipmap levels.
Definition: abcgOpenGLImage.hpp:52
-
Configuration settings for creating a 2D texture for OpenGL.
Definition: abcgOpenGLImage.hpp:32
-
std::string_view path
Path to the image file (PNG or JPEG).
Definition: abcgOpenGLImage.hpp:34
-
bool sRGBToLinear
Whether to apply gamma decoding (expansion) to convert an image in sRGB space to linear space.
Definition: abcgOpenGLImage.hpp:41
-
bool flipUpsideDown
Whether to flip the image upside down.
Definition: abcgOpenGLImage.hpp:38
-
bool generateMipmaps
Whether to generate mipmap levels.
Definition: abcgOpenGLImage.hpp:36
+
Root namespace.
Definition abcgApplication.hpp:23
+
GLuint loadOpenGLCubemap(OpenGLCubemapCreateInfo const &createInfo)
Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths.
Definition abcgOpenGLImage.cpp:101
+
GLuint loadOpenGLTexture(OpenGLTextureCreateInfo const &createInfo)
Creates an OpenGL 2D texture from an image loaded from a filesystem path.
Definition abcgOpenGLImage.cpp:30
+
Configuration settings for creating a cubemap texture for OpenGL.
Definition abcgOpenGLImage.hpp:47
+
bool rightHandedSystem
Whether to convert the cubemap from a left-handed system to a right-handed system.
Definition abcgOpenGLImage.hpp:55
+
std::array< std::string_view, 6 > paths
Array of paths to the image files (PNG or JPEG) containing the sides of the cube map,...
Definition abcgOpenGLImage.hpp:50
+
bool generateMipmaps
Whether to generate mipmap levels.
Definition abcgOpenGLImage.hpp:52
+
Configuration settings for creating a 2D texture for OpenGL.
Definition abcgOpenGLImage.hpp:32
+
std::string_view path
Path to the image file (PNG or JPEG).
Definition abcgOpenGLImage.hpp:34
+
bool sRGBToLinear
Whether to apply gamma decoding (expansion) to convert an image in sRGB space to linear space.
Definition abcgOpenGLImage.hpp:41
+
bool flipUpsideDown
Whether to flip the image upside down.
Definition abcgOpenGLImage.hpp:38
+
bool generateMipmaps
Whether to generate mipmap levels.
Definition abcgOpenGLImage.hpp:36
diff --git a/abcg/doc/html/abcgOpenGLShader_8cpp.html b/abcg/doc/html/abcgOpenGLShader_8cpp.html index 03c8bcc10..64602bf9c 100644 --- a/abcg/doc/html/abcgOpenGLShader_8cpp.html +++ b/abcg/doc/html/abcgOpenGLShader_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLShader.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.cpp File Reference
@@ -119,8 +126,7 @@
Include dependency graph for abcgOpenGLShader.cpp:
-
-
+

Detailed Description

Definition of helper functions for building OpenGL shaders.

@@ -132,7 +138,7 @@ diff --git a/abcg/doc/html/abcgOpenGLShader_8cpp.js b/abcg/doc/html/abcgOpenGLShader_8cpp.js deleted file mode 100644 index b82e0194c..000000000 --- a/abcg/doc/html/abcgOpenGLShader_8cpp.js +++ /dev/null @@ -1,4 +0,0 @@ -var abcgOpenGLShader_8cpp = -[ - [ "abcgStageToOpenGLStage", "abcgOpenGLShader_8cpp.html#a1b9d9248c0d1f7a7bee9653a529dadca", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.map b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.map index 8c2312a07..73f8ec28c 100644 --- a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.map +++ b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.map @@ -1,19 +1,37 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.md5 b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.md5 index ca24cd16c..273355136 100644 --- a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.md5 @@ -1 +1 @@ -d92c00bcb75510e916f0b5e0e00c68c5 \ No newline at end of file +ad835a45088a509d77c25a6ac72f38c3 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.svg b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.svg index 23c2bd0c8..93b9818c0 100644 --- a/abcg/doc/html/abcgOpenGLShader_8cpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLShader_8cpp__incl.svg @@ -4,271 +4,325 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLShader.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.cpp - + Node2 - - -abcgOpenGLShader.hpp + + +abcgOpenGLShader.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -vector + + +vector - + Node1->Node7 - - + + + + + - + Node8 - - -cppitertools/itertools.hpp + + +cppitertools/itertools.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -fmt/core.h + + +fmt/core.h - + Node1->Node9 - - + + + + + - + Node10 - - -gsl/gsl + + +gsl/gsl - + Node1->Node10 - - + + + + + - + Node11 - - -filesystem + + +filesystem - + Node1->Node11 - - + + + + + - + Node12 - - -fstream + + +fstream - + Node1->Node12 - - + + + + + - + Node13 - - -regex + + +regex - + Node1->Node13 - - + + + + + - + Node14 - - -sstream + + +sstream - + Node1->Node14 - - + + + + + - + Node15 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node15 - - + + + + + - + Node3 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -abcgShader.hpp + + +abcgShader.hpp - + Node2->Node4 - - + + + + + - + Node2->Node7 - - + + + + + - + Node5 - - -optional + + +optional - + Node4->Node5 - - + + + + + - + Node6 - - -string + + +string - + Node4->Node6 - - + + + + + - + Node15->Node6 - - + + + + + - + Node16 - - -source_location + + +source_location - + Node15->Node16 - - + + + + + - + Node17 - - -stdexcept + + +stdexcept - + Node15->Node17 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp.html b/abcg/doc/html/abcgOpenGLShader_8hpp.html index 50d839a2b..df41b844b 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp.html +++ b/abcg/doc/html/abcgOpenGLShader_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Functions
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp File Reference
@@ -116,44 +123,44 @@
Include dependency graph for abcgOpenGLShader.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

struct  abcg::OpenGLShader
 OpenGL shader object and its corresponding stage. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - - + + - - + + - - + + - - + + - - + +

+

Functions

GLuint abcg::createOpenGLProgram (std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
 Creates a program object from a group of shader paths or source codes. More...
GLuint abcg::createOpenGLProgram (std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
 Creates a program object from a group of shader paths or source codes.
 
std::vector< abcg::OpenGLShaderabcg::triggerOpenGLShaderCompile (std::vector< ShaderSource > const &pathsOrSources)
 Triggers the compilation of a group of shaders and returns immediately. More...
std::vector< abcg::OpenGLShaderabcg::triggerOpenGLShaderCompile (std::vector< ShaderSource > const &pathsOrSources)
 Triggers the compilation of a group of shaders and returns immediately.
 
bool abcg::checkOpenGLShaderCompile (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Queries the compile status of shader objects. More...
bool abcg::checkOpenGLShaderCompile (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Queries the compile status of shader objects.
 
GLuint abcg::triggerOpenGLShaderLink (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Triggers the linking of a group of shader objects. More...
GLuint abcg::triggerOpenGLShaderLink (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Triggers the linking of a group of shader objects.
 
bool abcg::checkOpenGLShaderLink (GLuint shaderProgram, bool throwOnError=true)
 Queries the link status of the shaders attached to a program object. More...
bool abcg::checkOpenGLShaderLink (GLuint shaderProgram, bool throwOnError=true)
 Queries the link status of the shaders attached to a program object.
 

Detailed Description

@@ -166,7 +173,7 @@ diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp.js b/abcg/doc/html/abcgOpenGLShader_8hpp.js index 26f59b0c9..c12511349 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp.js +++ b/abcg/doc/html/abcgOpenGLShader_8hpp.js @@ -1,6 +1,6 @@ var abcgOpenGLShader_8hpp = [ - [ "OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], + [ "abcg::OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], [ "checkOpenGLShaderCompile", "abcgOpenGLShader_8hpp.html#ada2b3e076d6fe0c4dd27615e7f4d4d50", null ], [ "checkOpenGLShaderLink", "abcgOpenGLShader_8hpp.html#aab59a12bb6313b5c58f5352ce6f380e5", null ], [ "createOpenGLProgram", "abcgOpenGLShader_8hpp.html#ac5dc51412a57521944dc7f4f32901af5", null ], diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.map index ac0a64329..288a6bd80 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.md5 index d01887f2d..41b9f0824 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.md5 @@ -1 +1 @@ -c57512b542e36ada5976506d399aaa80 \ No newline at end of file +f4e830459a7d33c5b0fbb8a679949745 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.svg index aec62a43a..84bf930a0 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.map b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.map index 288934d6d..b34f950a1 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.map @@ -1,8 +1,13 @@ - - - - - - + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.md5 index a7f0ad0ab..4b23e6533 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.md5 @@ -1 +1 @@ -5c485ef71d66fca23b55ef082cbc8ae6 \ No newline at end of file +3539a7c9518ce6c8f4e6b7434daa6c0b \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.svg b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.svg index 3ffffbd1e..4a6ec5409 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLShader_8hpp__incl.svg @@ -4,94 +4,109 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.hpp - + Node2 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -abcgShader.hpp + + +abcgShader.hpp - + Node1->Node3 - - + + + + + - + Node6 - - -vector + + +vector - + Node1->Node6 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -string + + +string - + Node3->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLShader_8hpp_source.html b/abcg/doc/html/abcgOpenGLShader_8hpp_source.html index 8f4f3b927..690ae6e68 100644 --- a/abcg/doc/html/abcgOpenGLShader_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLShader_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,66 +99,74 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLShader.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_OPENGL_SHADER_HPP_
-
12 #define ABCG_OPENGL_SHADER_HPP_
-
13 
-
14 #include "abcgOpenGLExternal.hpp"
-
15 #include "abcgShader.hpp"
-
16 
-
17 #include <vector>
-
18 
-
19 namespace abcg {
-
20 struct OpenGLShader;
-
21 }
-
22 
- -
28  GLuint shader{};
-
30  GLuint stage{};
-
31 };
-
32 
-
33 namespace abcg {
-
34 [[nodiscard]] GLuint
-
35 createOpenGLProgram(std::vector<ShaderSource> const &pathsOrSources,
-
36  bool throwOnError = true);
-
37 [[nodiscard]] std::vector<abcg::OpenGLShader>
-
38 triggerOpenGLShaderCompile(std::vector<ShaderSource> const &pathsOrSources);
-
39 bool checkOpenGLShaderCompile(std::vector<OpenGLShader> const &shaders,
-
40  bool throwOnError = true);
-
41 GLuint triggerOpenGLShaderLink(std::vector<OpenGLShader> const &shaders,
-
42  bool throwOnError = true);
-
43 bool checkOpenGLShaderLink(GLuint shaderProgram, bool throwOnError = true);
-
44 } // namespace abcg
-
45 
-
46 #endif
+Go to the documentation of this file.
1
+
11#ifndef ABCG_OPENGL_SHADER_HPP_
+
12#define ABCG_OPENGL_SHADER_HPP_
+
13
+ +
15#include "abcgShader.hpp"
+
16
+
17#include <vector>
+
18
+
19namespace abcg {
+
20struct OpenGLShader;
+
21}
+
22
+
+ +
28 GLuint shader{};
+
30 GLuint stage{};
+
31};
+
+
32
+
33namespace abcg {
+
34[[nodiscard]] GLuint
+
35createOpenGLProgram(std::vector<ShaderSource> const &pathsOrSources,
+
36 bool throwOnError = true);
+
37[[nodiscard]] std::vector<abcg::OpenGLShader>
+
38triggerOpenGLShaderCompile(std::vector<ShaderSource> const &pathsOrSources);
+
39bool checkOpenGLShaderCompile(std::vector<OpenGLShader> const &shaders,
+
40 bool throwOnError = true);
+
41GLuint triggerOpenGLShaderLink(std::vector<OpenGLShader> const &shaders,
+
42 bool throwOnError = true);
+
43bool checkOpenGLShaderLink(GLuint shaderProgram, bool throwOnError = true);
+
44} // namespace abcg
+
45
+
46#endif
Header file for including OpenGL-related third-party dependencies.
Declaration of a structure for building shaders.
-
Root namespace.
Definition: abcgApplication.hpp:23
-
std::vector< abcg::OpenGLShader > triggerOpenGLShaderCompile(std::vector< ShaderSource > const &pathsOrSources)
Triggers the compilation of a group of shaders and returns immediately.
Definition: abcgOpenGLShader.cpp:250
-
bool checkOpenGLShaderLink(GLuint shaderProgram, bool throwOnError=true)
Queries the link status of the shaders attached to a program object.
Definition: abcgOpenGLShader.cpp:361
-
GLuint createOpenGLProgram(std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
Creates a program object from a group of shader paths or source codes.
Definition: abcgOpenGLShader.cpp:172
-
bool checkOpenGLShaderCompile(std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
Queries the compile status of shader objects.
Definition: abcgOpenGLShader.cpp:284
-
GLuint triggerOpenGLShaderLink(std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
Triggers the linking of a group of shader objects.
Definition: abcgOpenGLShader.cpp:321
-
OpenGL shader object and its corresponding stage.
Definition: abcgOpenGLShader.hpp:26
-
GLuint shader
Shader object.
Definition: abcgOpenGLShader.hpp:28
-
GLuint stage
Shader stage (e.g., GL_VERTEX_SHADER).
Definition: abcgOpenGLShader.hpp:30
+
Root namespace.
Definition abcgApplication.hpp:23
+
std::vector< abcg::OpenGLShader > triggerOpenGLShaderCompile(std::vector< ShaderSource > const &pathsOrSources)
Triggers the compilation of a group of shaders and returns immediately.
Definition abcgOpenGLShader.cpp:250
+
bool checkOpenGLShaderLink(GLuint shaderProgram, bool throwOnError=true)
Queries the link status of the shaders attached to a program object.
Definition abcgOpenGLShader.cpp:361
+
GLuint createOpenGLProgram(std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
Creates a program object from a group of shader paths or source codes.
Definition abcgOpenGLShader.cpp:172
+
bool checkOpenGLShaderCompile(std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
Queries the compile status of shader objects.
Definition abcgOpenGLShader.cpp:284
+
GLuint triggerOpenGLShaderLink(std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
Triggers the linking of a group of shader objects.
Definition abcgOpenGLShader.cpp:321
+
OpenGL shader object and its corresponding stage.
Definition abcgOpenGLShader.hpp:26
+
GLuint shader
Shader object.
Definition abcgOpenGLShader.hpp:28
+
GLuint stage
Shader stage (e.g., GL_VERTEX_SHADER).
Definition abcgOpenGLShader.hpp:30
diff --git a/abcg/doc/html/abcgOpenGLWindow_8cpp.html b/abcg/doc/html/abcgOpenGLWindow_8cpp.html index 4f770e681..d570e46d8 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8cpp.html +++ b/abcg/doc/html/abcgOpenGLWindow_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.cpp File Reference
@@ -117,7 +124,7 @@
Include dependency graph for abcgOpenGLWindow.cpp:
-
+

Detailed Description

Definition of abcg::OpenGLWindow members.

@@ -129,7 +136,7 @@ diff --git a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.map b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.map index 8bf9ab62e..389459072 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.map +++ b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.map @@ -1,22 +1,46 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.md5 b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.md5 index 2324a1579..c738df2b2 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.md5 @@ -1 +1 @@ -7904b16a1ba4b194eeca7b866499fc9d \ No newline at end of file +08614fd93abdcb518d4214725e2c9a67 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.svg b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.svg index e7a002342..eed47b57d 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLWindow_8cpp__incl.svg @@ -4,334 +4,406 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node2 - - -abcgOpenGLWindow.hpp + + +abcgOpenGLWindow.hpp - + Node1->Node2 - - + + + + + - + Node10 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node10 - - + + + + + - + Node13 - - -SDL_events.h + + +SDL_events.h - + Node1->Node13 - - + + + + + - + Node14 - - -SDL_image.h + + +SDL_image.h - + Node1->Node14 - - + + + + + - + Node15 - - -imgui_impl_opengl3.h + + +imgui_impl_opengl3.h - + Node1->Node15 - - + + + + + - + Node16 - - -imgui_impl_sdl2.h + + +imgui_impl_sdl2.h - + Node1->Node16 - - + + + + + - + Node17 - - -abcgEmbeddedFonts.hpp + + +abcgEmbeddedFonts.hpp - + Node1->Node17 - - + + + + + - + Node19 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node19 - - + + + + + - + Node3 - - -string + + +string - + Node2->Node3 - - + + + + + - + Node4 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -abcgOpenGLFunction.hpp + + +abcgOpenGLFunction.hpp - + Node2->Node5 - - + + + + + - + Node2->Node10 - - + + + + + - + Node6 - - -source_location + + +source_location - + Node5->Node6 - - + + + + + - + Node7 - - -string_view + + +string_view - + Node5->Node7 - - + + + + + - + Node8 - - -type_traits + + +type_traits - + Node5->Node8 - - + + + + + - + Node9 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node5->Node9 - - + + + + + - + Node10->Node3 - - + + + + + - + Node10->Node4 - - + + + + + - + Node11 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node10->Node11 - - + + + + + - + Node12 - - -chrono + + +chrono - + Node11->Node12 - - + + + + + - + Node18 - - -array + + +array - + Node17->Node18 - - + + + + + - + Node19->Node3 - - + + + + + - + Node19->Node6 - - + + + + + - + Node20 - - -stdexcept + + +stdexcept - + Node19->Node20 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp.html b/abcg/doc/html/abcgOpenGLWindow_8hpp.html index fe1963b4d..b62a59019 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp.html +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Enumerations
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp File Reference
@@ -117,17 +124,17 @@
Include dependency graph for abcgOpenGLWindow.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -136,15 +143,15 @@

+

Classes

struct  abcg::OpenGLSettings
 Configuration settings for creating an OpenGL context. More...
 Base class for a window that displays graphics using an OpenGL context. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - @@ -162,7 +169,7 @@ diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp.js b/abcg/doc/html/abcgOpenGLWindow_8hpp.js index b6fc7b538..78dd39d20 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp.js +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp.js @@ -1,7 +1,7 @@ var abcgOpenGLWindow_8hpp = [ - [ "OpenGLSettings", "structabcg_1_1OpenGLSettings.html", "structabcg_1_1OpenGLSettings" ], - [ "OpenGLWindow", "classabcg_1_1OpenGLWindow.html", "classabcg_1_1OpenGLWindow" ], + [ "abcg::OpenGLSettings", "structabcg_1_1OpenGLSettings.html", "structabcg_1_1OpenGLSettings" ], + [ "abcg::OpenGLWindow", "classabcg_1_1OpenGLWindow.html", "classabcg_1_1OpenGLWindow" ], [ "OpenGLProfile", "abcgOpenGLWindow_8hpp.html#aef63a265616374ef2d9f1d63b0e9328e", [ [ "Core", "abcgOpenGLWindow_8hpp.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153", null ], [ "Compatibility", "abcgOpenGLWindow_8hpp.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53", null ], diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.map b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.map index c0744e7b0..fb4ba519b 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.md5 b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.md5 index 8683d3905..f76764f67 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.md5 @@ -1 +1 @@ -ba0802dce0c472779975f532c07caf77 \ No newline at end of file +533b0668061eaf17e768ae12aad42b61 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.svg b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.svg index ff537fc5c..708f0f8b3 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.map b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.map index 2f9a6ba4e..17500f422 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.map @@ -1,13 +1,25 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.md5 index 6db92fe06..82fbaea01 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.md5 @@ -1 +1 @@ -5de3c439711c35d64d1783a74ba973b3 \ No newline at end of file +e2a98f73addef45edcfabf3cc70cac27 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.svg b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.svg index c7d7983cc..bc166a218 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp__incl.svg @@ -4,181 +4,217 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node2 - - -string + + +string - + Node1->Node2 - - + + + + + - + Node3 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -abcgOpenGLFunction.hpp + + +abcgOpenGLFunction.hpp - + Node1->Node4 - - + + + + + - + Node9 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node9 - - + + + + + - + Node5 - - -source_location + + +source_location - + Node4->Node5 - - + + + + + - + Node6 - - -string_view + + +string_view - + Node4->Node6 - - + + + + + - + Node7 - - -type_traits + + +type_traits - + Node4->Node7 - - + + + + + - + Node8 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node4->Node8 - - + + + + + - + Node9->Node2 - - + + + + + - + Node9->Node3 - - + + + + + - + Node10 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node9->Node10 - - + + + + + - + Node11 - - -chrono + + +chrono - + Node10->Node11 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGLWindow_8hpp_source.html b/abcg/doc/html/abcgOpenGLWindow_8hpp_source.html index 98ed29ac4..4072d8360 100644 --- a/abcg/doc/html/abcgOpenGLWindow_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGLWindow_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@ @@ -51,22 +51,28 @@

+

Enumerations

enum class  abcg::OpenGLProfile { abcg::Core +
enum class  abcg::OpenGLProfile { abcg::Core , abcg::Compatibility , abcg::ES }
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
- + +/* @license-end */ + +
@@ -93,115 +99,127 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGLWindow.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_WINDOW_HPP_
-
14 #define ABCG_OPENGL_WINDOW_HPP_
-
15 
-
16 #include <string>
-
17 
-
18 #include "abcgExternal.hpp"
-
19 #include "abcgOpenGLFunction.hpp"
-
20 #include "abcgWindow.hpp"
-
21 
-
22 namespace abcg {
-
23 enum class OpenGLProfile;
-
24 class OpenGLWindow;
-
25 struct OpenGLSettings;
-
26 } // namespace abcg
-
27 
-
33 enum class abcg::OpenGLProfile {
-
38  Core,
- -
48  ES
-
49 };
-
50 
- - -
65  int majorVersion{3};
-
67  int minorVersion{3};
-
69  int depthBufferSize{24};
- -
74  int samples{0};
-
77  bool vSync{false};
-
79  bool doubleBuffering{true};
-
80 };
-
81 
-
99 class abcg::OpenGLWindow : public Window {
-
100 public:
-
101  [[nodiscard]] OpenGLSettings const &getOpenGLSettings() const noexcept;
-
102  void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept;
-
103  void saveScreenshotPNG(std::string_view filename) const;
-
104 
-
105 protected:
-
106  virtual void onEvent(SDL_Event const &event);
-
107  virtual void onCreate();
-
108  virtual void onPaint();
-
109  virtual void onPaintUI();
-
110  virtual void onResize(glm::ivec2 const &size);
-
111  virtual void onUpdate();
-
112  virtual void onDestroy();
-
113 
-
114 private:
-
115  void handleEvent(SDL_Event const &event) final;
-
116  void create() final;
-
117  void paint() final;
-
118  void destroy() final;
-
119  [[nodiscard]] glm::ivec2 getWindowSize() const final;
-
120 
-
121  OpenGLSettings m_openGLSettings;
-
122  std::string m_GLSLVersion;
-
123  SDL_GLContext m_GLContext{};
-
124  bool m_hidden{};
-
125  bool m_minimized{};
-
126 };
-
127 
-
128 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_OPENGL_WINDOW_HPP_
+
14#define ABCG_OPENGL_WINDOW_HPP_
+
15
+
16#include <string>
+
17
+
18#include "abcgExternal.hpp"
+ +
20#include "abcgWindow.hpp"
+
21
+
22namespace abcg {
+
23enum class OpenGLProfile;
+
24class OpenGLWindow;
+
25struct OpenGLSettings;
+
26} // namespace abcg
+
27
+
+ +
38 Core,
+ +
48 ES
+
49};
+
+
50
+
+ + + + + + +
74 int samples{0};
+
77 bool vSync{false};
+
79 bool doubleBuffering{true};
+
80};
+
+
81
+
+
99class abcg::OpenGLWindow : public Window {
+
100public:
+
101 [[nodiscard]] OpenGLSettings const &getOpenGLSettings() const noexcept;
+
102 void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept;
+
103 void saveScreenshotPNG(std::string_view filename) const;
+
104
+
105protected:
+
106 virtual void onEvent(SDL_Event const &event);
+
107 virtual void onCreate();
+
108 virtual void onPaint();
+
109 virtual void onPaintUI();
+
110 virtual void onResize(glm::ivec2 const &size);
+
111 virtual void onUpdate();
+
112 virtual void onDestroy();
+
113
+
114private:
+
115 void handleEvent(SDL_Event const &event) final;
+
116 void create() final;
+
117 void paint() final;
+
118 void destroy() final;
+
119 [[nodiscard]] glm::ivec2 getWindowSize() const final;
+
120
+
121 OpenGLSettings m_openGLSettings;
+
122 std::string m_GLSLVersion;
+
123 SDL_GLContext m_GLContext{};
+
124 bool m_hidden{};
+
125 bool m_minimized{};
+
126};
+
+
127
+
128#endif
Header file for including third-party dependencies.
Declaration of OpenGL-related error checking functions.
Header file of abcg::Window.
-
Base class for a window that displays graphics using an OpenGL context.
Definition: abcgOpenGLWindow.hpp:99
-
virtual void onResize(glm::ivec2 const &size)
Custom handler for window resizing events.
Definition: abcgOpenGLWindow.cpp:204
-
virtual void onUpdate()
Custom handler called for each frame before painting.
Definition: abcgOpenGLWindow.cpp:214
-
virtual void onDestroy()
Custom handler for cleaning up OpenGL resources.
Definition: abcgOpenGLWindow.cpp:223
-
virtual void onPaint()
Custom handler for rendering the OpenGL scene.
Definition: abcgOpenGLWindow.cpp:114
-
void saveScreenshotPNG(std::string_view filename) const
Takes a snapshot of the screen and saves it to a file.
Definition: abcgOpenGLWindow.cpp:52
-
OpenGLSettings const & getOpenGLSettings() const noexcept
Returns the configuration settings of the OpenGL context.
Definition: abcgOpenGLWindow.cpp:29
-
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition: abcgOpenGLWindow.cpp:132
-
virtual void onEvent(SDL_Event const &event)
Custom event handler.
Definition: abcgOpenGLWindow.cpp:89
-
void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept
Sets the configuration settings that will be used for creating the OpenGL context.
Definition: abcgOpenGLWindow.cpp:40
-
virtual void onCreate()
Custom handler for OpenGL initialization tasks to be performed before rendering the scene.
Definition: abcgOpenGLWindow.cpp:100
-
Base abstract class that represents a SDL window.
Definition: abcgWindow.hpp:86
-
Root namespace.
Definition: abcgApplication.hpp:23
-
OpenGLProfile
Enumeration of OpenGL profiles.
Definition: abcgOpenGLWindow.hpp:33
+
Base class for a window that displays graphics using an OpenGL context.
Definition abcgOpenGLWindow.hpp:99
+
virtual void onResize(glm::ivec2 const &size)
Custom handler for window resizing events.
Definition abcgOpenGLWindow.cpp:204
+
virtual void onUpdate()
Custom handler called for each frame before painting.
Definition abcgOpenGLWindow.cpp:214
+
virtual void onDestroy()
Custom handler for cleaning up OpenGL resources.
Definition abcgOpenGLWindow.cpp:223
+
virtual void onPaint()
Custom handler for rendering the OpenGL scene.
Definition abcgOpenGLWindow.cpp:114
+
void saveScreenshotPNG(std::string_view filename) const
Takes a snapshot of the screen and saves it to a file.
Definition abcgOpenGLWindow.cpp:52
+
OpenGLSettings const & getOpenGLSettings() const noexcept
Returns the configuration settings of the OpenGL context.
Definition abcgOpenGLWindow.cpp:29
+
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition abcgOpenGLWindow.cpp:132
+
virtual void onEvent(SDL_Event const &event)
Custom event handler.
Definition abcgOpenGLWindow.cpp:89
+
void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept
Sets the configuration settings that will be used for creating the OpenGL context.
Definition abcgOpenGLWindow.cpp:40
+
virtual void onCreate()
Custom handler for OpenGL initialization tasks to be performed before rendering the scene.
Definition abcgOpenGLWindow.cpp:100
+
Base abstract class that represents a SDL window.
Definition abcgWindow.hpp:86
+
Root namespace.
Definition abcgApplication.hpp:23
+
OpenGLProfile
Enumeration of OpenGL profiles.
Definition abcgOpenGLWindow.hpp:33
@ ES
OpenGL ES profile.
@ Core
OpenGL core profile.
@ Compatibility
OpenGL compatibility profile.
-
Configuration settings for creating an OpenGL context.
Definition: abcgOpenGLWindow.hpp:61
-
int samples
Number of samples used around the current pixel used for multisample anti-aliasing.
Definition: abcgOpenGLWindow.hpp:74
-
bool vSync
Whether the swapping of the front and back frame buffers is synchronized with the vertical retrace.
Definition: abcgOpenGLWindow.hpp:77
-
int depthBufferSize
Minimum number of bits in the depth buffer.
Definition: abcgOpenGLWindow.hpp:69
-
bool doubleBuffering
Whether the output is double buffered.
Definition: abcgOpenGLWindow.hpp:79
-
int minorVersion
OpenGL context minor version.
Definition: abcgOpenGLWindow.hpp:67
-
int stencilBufferSize
Minimum number of bits in the stencil buffer.
Definition: abcgOpenGLWindow.hpp:71
-
OpenGLProfile profile
Type of OpenGL context.
Definition: abcgOpenGLWindow.hpp:63
-
int majorVersion
OpenGL context major version.
Definition: abcgOpenGLWindow.hpp:65
+
Configuration settings for creating an OpenGL context.
Definition abcgOpenGLWindow.hpp:61
+
int samples
Number of samples used around the current pixel used for multisample anti-aliasing.
Definition abcgOpenGLWindow.hpp:74
+
bool vSync
Whether the swapping of the front and back frame buffers is synchronized with the vertical retrace.
Definition abcgOpenGLWindow.hpp:77
+
int depthBufferSize
Minimum number of bits in the depth buffer.
Definition abcgOpenGLWindow.hpp:69
+
bool doubleBuffering
Whether the output is double buffered.
Definition abcgOpenGLWindow.hpp:79
+
int minorVersion
OpenGL context minor version.
Definition abcgOpenGLWindow.hpp:67
+
int stencilBufferSize
Minimum number of bits in the stencil buffer.
Definition abcgOpenGLWindow.hpp:71
+
OpenGLProfile profile
Type of OpenGL context.
Definition abcgOpenGLWindow.hpp:63
+
int majorVersion
OpenGL context major version.
Definition abcgOpenGLWindow.hpp:65
diff --git a/abcg/doc/html/abcgOpenGL_8hpp.html b/abcg/doc/html/abcgOpenGL_8hpp.html index bdc5d953a..648bf749c 100644 --- a/abcg/doc/html/abcgOpenGL_8hpp.html +++ b/abcg/doc/html/abcgOpenGL_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGL.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGL.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgOpenGL.hpp File Reference
@@ -113,7 +120,7 @@
Include dependency graph for abcgOpenGL.hpp:
-
+

Go to the source code of this file.

@@ -128,7 +135,7 @@ diff --git a/abcg/doc/html/abcgOpenGL_8hpp__incl.map b/abcg/doc/html/abcgOpenGL_8hpp__incl.map index 2aeb8d83c..563584a49 100644 --- a/abcg/doc/html/abcgOpenGL_8hpp__incl.map +++ b/abcg/doc/html/abcgOpenGL_8hpp__incl.map @@ -1,27 +1,65 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgOpenGL_8hpp__incl.md5 b/abcg/doc/html/abcgOpenGL_8hpp__incl.md5 index 327a3701a..90bf3e6e3 100644 --- a/abcg/doc/html/abcgOpenGL_8hpp__incl.md5 +++ b/abcg/doc/html/abcgOpenGL_8hpp__incl.md5 @@ -1 +1 @@ -d7e5fc97df4b1b97b5e33a490afae0a2 \ No newline at end of file +5831e43c15f8bbea51b6248764b37ac0 \ No newline at end of file diff --git a/abcg/doc/html/abcgOpenGL_8hpp__incl.svg b/abcg/doc/html/abcgOpenGL_8hpp__incl.svg index be9d6d5be..9b3899e2c 100644 --- a/abcg/doc/html/abcgOpenGL_8hpp__incl.svg +++ b/abcg/doc/html/abcgOpenGL_8hpp__incl.svg @@ -4,463 +4,577 @@ - - + + /home/harlen/dev/abcg/abcg/abcgOpenGL.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2 - - -abcg.hpp + + +abcg.hpp - + Node1->Node2 - - + + + + + - + Node15 - - -abcgOpenGLImage.hpp + + +abcgOpenGLImage.hpp - + Node1->Node15 - - + + + + + - + Node19 - - -abcgOpenGLShader.hpp + + +abcgOpenGLShader.hpp - + Node1->Node19 - - + + + + + - + Node23 - - -abcgOpenGLWindow.hpp + + +abcgOpenGLWindow.hpp - + Node1->Node23 - - + + + + + - + Node3 - - -abcgApplication.hpp + + +abcgApplication.hpp - + Node2->Node3 - - + + + + + - + Node5 - - -abcgException.hpp + + +abcgException.hpp - + Node2->Node5 - - + + + + + - + Node8 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node2->Node8 - - + + + + + - + Node9 - - -abcgTrackball.hpp + + +abcgTrackball.hpp - + Node2->Node9 - - + + + + + - + Node12 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node2->Node12 - - + + + + + - + Node14 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node2->Node14 - - + + + + + - + Node4 - - -string + + +string - + Node3->Node4 - - + + + + + - + Node5->Node4 - - + + + + + - + Node6 - - -source_location + + +source_location - + Node5->Node6 - - + + + + + - + Node7 - - -stdexcept + + +stdexcept - + Node5->Node7 - - + + + + + - + Node9->Node8 - - + + + + + - + Node10 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node9->Node10 - - + + + + + - + Node11 - - -chrono + + +chrono - + Node10->Node11 - - + + + + + - + Node12->Node4 - - + + + + + - + Node13 - - -functional + + +functional - + Node12->Node13 - - + + + + + - + Node14->Node4 - - + + + + + - + Node14->Node8 - - + + + + + - + Node14->Node10 - - + + + + + - + Node16 - - -abcgOpenGLExternal.hpp + + +abcgOpenGLExternal.hpp - + Node15->Node16 - - + + + + + - + Node17 - - -array + + +array - + Node15->Node17 - - + + + + + - + Node18 - - -string_view + + +string_view - + Node15->Node18 - - + + + + + - + Node19->Node16 - - + + + + + - + Node20 - - -abcgShader.hpp + + +abcgShader.hpp - + Node19->Node20 - - + + + + + - + Node22 - - -vector + + +vector - + Node19->Node22 - - + + + + + - + Node20->Node4 - - + + + + + - + Node21 - - -optional + + +optional - + Node20->Node21 - - + + + + + - + Node23->Node4 - - + + + + + - + Node23->Node8 - - + + + + + - + Node23->Node14 - - + + + + + - + Node24 - - -abcgOpenGLFunction.hpp + + +abcgOpenGLFunction.hpp - + Node23->Node24 - - + + + + + - + Node24->Node6 - - + + + + + - + Node24->Node16 - - + + + + + - + Node24->Node18 - - + + + + + - + Node25 - - -type_traits + + +type_traits - + Node24->Node25 - - + + + + + diff --git a/abcg/doc/html/abcgOpenGL_8hpp_source.html b/abcg/doc/html/abcgOpenGL_8hpp_source.html index 4b6cbad9e..83e154133 100644 --- a/abcg/doc/html/abcgOpenGL_8hpp_source.html +++ b/abcg/doc/html/abcgOpenGL_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgOpenGL.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,26 +99,32 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgOpenGL.hpp
+
/home/harlen/dev/abcg/abcg/abcgOpenGL.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_HPP_
-
14 #define ABCG_OPENGL_HPP_
-
15 
-
16 #include "abcg.hpp"
-
17 #include "abcgOpenGLImage.hpp"
-
18 #include "abcgOpenGLShader.hpp"
-
19 #include "abcgOpenGLWindow.hpp"
-
20 
-
21 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_OPENGL_HPP_
+
14#define ABCG_OPENGL_HPP_
+
15
+
16#include "abcg.hpp"
+
17#include "abcgOpenGLImage.hpp"
+
18#include "abcgOpenGLShader.hpp"
+
19#include "abcgOpenGLWindow.hpp"
+
20
+
21#endif
Declaration of OpenGL texture loading helper functions.
Declaration of helper functions for building OpenGL shaders.
Header file of abcg::OpenGLWindow.
@@ -123,7 +135,7 @@ diff --git a/abcg/doc/html/abcgShader_8hpp.html b/abcg/doc/html/abcgShader_8hpp.html index 7bd97e35a..4dd09f0be 100644 --- a/abcg/doc/html/abcgShader_8hpp.html +++ b/abcg/doc/html/abcgShader_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgShader.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Enumerations
-
-
/home/harlen/dev/abcg/abcg/abcgShader.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgShader.hpp File Reference
@@ -115,31 +122,31 @@
Include dependency graph for abcgShader.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

struct  abcg::ShaderSource
 Shader source code and corresponding stage. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - @@ -51,22 +51,28 @@

+

Enumerations

enum class  abcg::ShaderStage {
+
enum class  abcg::ShaderStage {
  abcg::Vertex , abcg::TessellationControl , abcg::TessellationEvaluation @@ -172,7 +179,7 @@ diff --git a/abcg/doc/html/abcgShader_8hpp.js b/abcg/doc/html/abcgShader_8hpp.js index 922ee9489..d31a87a19 100644 --- a/abcg/doc/html/abcgShader_8hpp.js +++ b/abcg/doc/html/abcgShader_8hpp.js @@ -1,6 +1,6 @@ var abcgShader_8hpp = [ - [ "ShaderSource", "structabcg_1_1ShaderSource.html", "structabcg_1_1ShaderSource" ], + [ "abcg::ShaderSource", "structabcg_1_1ShaderSource.html", "structabcg_1_1ShaderSource" ], [ "ShaderStage", "abcgShader_8hpp.html#a9853f19ed2d55b91bc64fde5a95e40da", [ [ "Vertex", "abcgShader_8hpp.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6", null ], [ "TessellationControl", "abcgShader_8hpp.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a", null ], diff --git a/abcg/doc/html/abcgShader_8hpp__dep__incl.map b/abcg/doc/html/abcgShader_8hpp__dep__incl.map index abb458e49..3f7306d07 100644 --- a/abcg/doc/html/abcgShader_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgShader_8hpp__dep__incl.map @@ -1,12 +1,22 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgShader_8hpp__dep__incl.md5 b/abcg/doc/html/abcgShader_8hpp__dep__incl.md5 index 9350ce7cf..87bf9a4d2 100644 --- a/abcg/doc/html/abcgShader_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgShader_8hpp__dep__incl.md5 @@ -1 +1 @@ -250dff626385129a87a0636e6090a3b2 \ No newline at end of file +5f29b3f7f216515ccb1b272cc3d89f50 \ No newline at end of file diff --git a/abcg/doc/html/abcgShader_8hpp__dep__incl.svg b/abcg/doc/html/abcgShader_8hpp__dep__incl.svg index cce3a58df..d74677920 100644 --- a/abcg/doc/html/abcgShader_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgShader_8hpp__dep__incl.svg @@ -4,169 +4,199 @@ - - + + /home/harlen/dev/abcg/abcg/abcgShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgShader.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.hpp - + Node1->Node2 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node1->Node5 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLShader.cpp - + Node2->Node4 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node5->Node6 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node5->Node8 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node5->Node10 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node6->Node7 - - + + + + + - + Node8->Node6 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node8->Node9 - - + + + + + diff --git a/abcg/doc/html/abcgShader_8hpp__incl.map b/abcg/doc/html/abcgShader_8hpp__incl.map index 380967764..3587f001e 100644 --- a/abcg/doc/html/abcgShader_8hpp__incl.map +++ b/abcg/doc/html/abcgShader_8hpp__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgShader_8hpp__incl.md5 b/abcg/doc/html/abcgShader_8hpp__incl.md5 index 54dd80723..c50a3262b 100644 --- a/abcg/doc/html/abcgShader_8hpp__incl.md5 +++ b/abcg/doc/html/abcgShader_8hpp__incl.md5 @@ -1 +1 @@ -8b75745840c5e5a9a259dbef2022cdf1 \ No newline at end of file +10ae4a6f75d9d7f86ac6d7368d65d4ba \ No newline at end of file diff --git a/abcg/doc/html/abcgShader_8hpp__incl.svg b/abcg/doc/html/abcgShader_8hpp__incl.svg index 628e8f810..abff785de 100644 --- a/abcg/doc/html/abcgShader_8hpp__incl.svg +++ b/abcg/doc/html/abcgShader_8hpp__incl.svg @@ -4,49 +4,55 @@ - - + + /home/harlen/dev/abcg/abcg/abcgShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgShader.hpp - + Node2 - - -optional + + +optional - + Node1->Node2 - - + + + + + - + Node3 - - -string + + +string - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgShader_8hpp_source.html b/abcg/doc/html/abcgShader_8hpp_source.html index 0fd37d438..1bd06d2af 100644 --- a/abcg/doc/html/abcgShader_8hpp_source.html +++ b/abcg/doc/html/abcgShader_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgShader.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
- + +/* @license-end */ + +
@@ -93,53 +99,63 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgShader.hpp
+
/home/harlen/dev/abcg/abcg/abcgShader.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_SHADER_HPP_
-
12 #define ABCG_SHADER_HPP_
-
13 
-
14 #include <optional>
-
15 #include <string>
-
16 
-
17 namespace abcg {
-
18 struct ShaderSource;
-
19 enum class ShaderStage;
-
20 } // namespace abcg
-
21 
-
26 enum class abcg::ShaderStage {
-
27  Vertex,
- - -
30  Geometry,
-
31  Fragment,
-
32  Compute,
-
33  RayGen,
-
34  AnyHit,
-
35  ClosestHit,
-
36  Miss,
- -
38  Callable,
-
39  Task,
-
40  Mesh
-
41 };
-
42 
- -
52  std::string source{};
- -
55 };
-
56 
-
57 #endif
-
Root namespace.
Definition: abcgApplication.hpp:23
-
ShaderStage
Enumeration of shader stages.
Definition: abcgShader.hpp:26
+Go to the documentation of this file.
1
+
11#ifndef ABCG_SHADER_HPP_
+
12#define ABCG_SHADER_HPP_
+
13
+
14#include <optional>
+
15#include <string>
+
16
+
17namespace abcg {
+
18struct ShaderSource;
+
19enum class ShaderStage;
+
20} // namespace abcg
+
21
+
+ +
27 Vertex,
+ + + + +
32 Compute,
+
33 RayGen,
+
34 AnyHit,
+ +
36 Miss,
+ + +
39 Task,
+
40 Mesh
+
41};
+
+
42
+
+ +
52 std::string source{};
+ +
55};
+
+
56
+
57#endif
+
Root namespace.
Definition abcgApplication.hpp:23
+
ShaderStage
Enumeration of shader stages.
Definition abcgShader.hpp:26
@@ -154,16 +170,16 @@ -
Shader source code and corresponding stage.
Definition: abcgShader.hpp:46
-
std::string source
Shader source code.
Definition: abcgShader.hpp:52
-
abcg::ShaderStage stage
Shader stage.
Definition: abcgShader.hpp:54
+
Shader source code and corresponding stage.
Definition abcgShader.hpp:46
+
std::string source
Shader source code.
Definition abcgShader.hpp:52
+
abcg::ShaderStage stage
Shader stage.
Definition abcgShader.hpp:54
diff --git a/abcg/doc/html/abcgTimer_8cpp.html b/abcg/doc/html/abcgTimer_8cpp.html index f6dce7361..18bd32b18 100644 --- a/abcg/doc/html/abcgTimer_8cpp.html +++ b/abcg/doc/html/abcgTimer_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTimer.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTimer.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgTimer.cpp File Reference
@@ -110,7 +117,7 @@
Include dependency graph for abcgTimer.cpp:
-
+

Detailed Description

Definition of abcg::Timer members.

@@ -122,7 +129,7 @@ diff --git a/abcg/doc/html/abcgTimer_8cpp__incl.map b/abcg/doc/html/abcgTimer_8cpp__incl.map index ce37ef8a1..4e2f2c7bd 100644 --- a/abcg/doc/html/abcgTimer_8cpp__incl.map +++ b/abcg/doc/html/abcgTimer_8cpp__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgTimer_8cpp__incl.md5 b/abcg/doc/html/abcgTimer_8cpp__incl.md5 index 46ca8d3ef..51dc96c75 100644 --- a/abcg/doc/html/abcgTimer_8cpp__incl.md5 +++ b/abcg/doc/html/abcgTimer_8cpp__incl.md5 @@ -1 +1 @@ -fdd9255336757f05d86f93e95a12ce29 \ No newline at end of file +86427c8130f95e96832341afc3dde8f9 \ No newline at end of file diff --git a/abcg/doc/html/abcgTimer_8cpp__incl.svg b/abcg/doc/html/abcgTimer_8cpp__incl.svg index 404e106aa..91019da67 100644 --- a/abcg/doc/html/abcgTimer_8cpp__incl.svg +++ b/abcg/doc/html/abcgTimer_8cpp__incl.svg @@ -4,49 +4,55 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTimer.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTimer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTimer.cpp - + Node2 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -chrono + + +chrono - + Node2->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgTimer_8hpp.html b/abcg/doc/html/abcgTimer_8hpp.html index 976f5e59a..f44a58ed0 100644 --- a/abcg/doc/html/abcgTimer_8hpp.html +++ b/abcg/doc/html/abcgTimer_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTimer.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTimer.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgTimer.hpp File Reference
@@ -113,25 +120,25 @@
Include dependency graph for abcgTimer.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::Timer
 Represents a timer based on the monotonic clock std::chrono::steady_clock. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -145,7 +152,7 @@ diff --git a/abcg/doc/html/abcgTimer_8hpp.js b/abcg/doc/html/abcgTimer_8hpp.js new file mode 100644 index 000000000..02880abc6 --- /dev/null +++ b/abcg/doc/html/abcgTimer_8hpp.js @@ -0,0 +1,4 @@ +var abcgTimer_8hpp = +[ + [ "abcg::Timer", "classabcg_1_1Timer.html", "classabcg_1_1Timer" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgTimer_8hpp__dep__incl.map b/abcg/doc/html/abcgTimer_8hpp__dep__incl.map index 139a56c5f..ecb5ae7d9 100644 --- a/abcg/doc/html/abcgTimer_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgTimer_8hpp__dep__incl.map @@ -1,18 +1,38 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgTimer_8hpp__dep__incl.md5 b/abcg/doc/html/abcgTimer_8hpp__dep__incl.md5 index 6df1389fd..188e0ea15 100644 --- a/abcg/doc/html/abcgTimer_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgTimer_8hpp__dep__incl.md5 @@ -1 +1 @@ -b01725a4a13a890a477282f971900d34 \ No newline at end of file +dc2a711f45f062c011dfd6c19df50ac3 \ No newline at end of file diff --git a/abcg/doc/html/abcgTimer_8hpp__dep__incl.svg b/abcg/doc/html/abcgTimer_8hpp__dep__incl.svg index 7a80e66c3..aa8e88528 100644 --- a/abcg/doc/html/abcgTimer_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgTimer_8hpp__dep__incl.svg @@ -4,289 +4,349 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTimer.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTimer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTimer.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgTimer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTimer.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.hpp - + Node1->Node3 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.hpp - + Node1->Node9 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node3->Node4 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.cpp - + Node3->Node8 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node4->Node5 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node4->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node6->Node7 - - + + + + + - + Node9->Node4 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node9->Node10 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node9->Node11 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node9->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node9->Node13 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node9->Node14 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.cpp - + Node9->Node16 - - + + + + + - + Node12->Node5 - - + + + + + - + Node12->Node11 - - + + + + + - + Node14->Node6 - - + + + + + - + Node14->Node13 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node14->Node15 - - + + + + + diff --git a/abcg/doc/html/abcgTimer_8hpp__incl.map b/abcg/doc/html/abcgTimer_8hpp__incl.map index d120d39ce..269fe907e 100644 --- a/abcg/doc/html/abcgTimer_8hpp__incl.map +++ b/abcg/doc/html/abcgTimer_8hpp__incl.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/abcgTimer_8hpp__incl.md5 b/abcg/doc/html/abcgTimer_8hpp__incl.md5 index d88785b2f..cd25415b1 100644 --- a/abcg/doc/html/abcgTimer_8hpp__incl.md5 +++ b/abcg/doc/html/abcgTimer_8hpp__incl.md5 @@ -1 +1 @@ -f68cf8bc2be0b61cbc53ff4daf036575 \ No newline at end of file +03c2145258ac6a25b0506cacecf06759 \ No newline at end of file diff --git a/abcg/doc/html/abcgTimer_8hpp__incl.svg b/abcg/doc/html/abcgTimer_8hpp__incl.svg index df2c3b504..c84c70673 100644 --- a/abcg/doc/html/abcgTimer_8hpp__incl.svg +++ b/abcg/doc/html/abcgTimer_8hpp__incl.svg @@ -4,34 +4,37 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTimer.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTimer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTimer.hpp - + Node2 - - -chrono + + +chrono - + Node1->Node2 - - + + + + + diff --git a/abcg/doc/html/abcgTimer_8hpp_source.html b/abcg/doc/html/abcgTimer_8hpp_source.html index 39abfd21a..d5012fdf2 100644 --- a/abcg/doc/html/abcgTimer_8hpp_source.html +++ b/abcg/doc/html/abcgTimer_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTimer.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,49 +99,57 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTimer.hpp
+
/home/harlen/dev/abcg/abcg/abcgTimer.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_TIMER_HPP_
-
12 #define ABCG_TIMER_HPP_
-
13 
-
14 #include <chrono>
-
15 
-
16 namespace abcg {
-
17 class Timer;
-
18 } // namespace abcg
-
19 
-
24 class abcg::Timer {
-
25 public:
-
26  [[nodiscard]] double elapsed() const;
-
27  double restart();
-
28 
-
29 private:
-
30  using clock = std::chrono::steady_clock;
-
31 
-
32  clock::time_point start{clock::now()};
-
33 };
-
34 
-
35 #endif
-
Represents a timer based on the monotonic clock std::chrono::steady_clock.
Definition: abcgTimer.hpp:24
-
double restart()
Restarts the timer and returns the last elapsed time.
Definition: abcgTimer.cpp:31
-
double elapsed() const
Returns how much time has elapsed since the timer has started.
Definition: abcgTimer.cpp:21
-
Root namespace.
Definition: abcgApplication.hpp:23
+Go to the documentation of this file.
1
+
11#ifndef ABCG_TIMER_HPP_
+
12#define ABCG_TIMER_HPP_
+
13
+
14#include <chrono>
+
15
+
16namespace abcg {
+
17class Timer;
+
18} // namespace abcg
+
19
+
+ +
25public:
+
26 [[nodiscard]] double elapsed() const;
+
27 double restart();
+
28
+
29private:
+
30 using clock = std::chrono::steady_clock;
+
31
+
32 clock::time_point start{clock::now()};
+
33};
+
+
34
+
35#endif
+
Represents a timer based on the monotonic clock std::chrono::steady_clock.
Definition abcgTimer.hpp:24
+
double restart()
Restarts the timer and returns the last elapsed time.
Definition abcgTimer.cpp:31
+
double elapsed() const
Returns how much time has elapsed since the timer has started.
Definition abcgTimer.cpp:21
+
Root namespace.
Definition abcgApplication.hpp:23
diff --git a/abcg/doc/html/abcgTrackball_8cpp.html b/abcg/doc/html/abcgTrackball_8cpp.html index 4e807299c..3dddd35d5 100644 --- a/abcg/doc/html/abcgTrackball_8cpp.html +++ b/abcg/doc/html/abcgTrackball_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTrackball.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTrackball.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgTrackball.cpp File Reference
@@ -112,7 +119,7 @@
Include dependency graph for abcgTrackball.cpp:
-
+

Detailed Description

Definition of abcg::TrackBall members.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgTrackball_8cpp__incl.map b/abcg/doc/html/abcgTrackball_8cpp__incl.map index 1ae47a873..d7a43efdf 100644 --- a/abcg/doc/html/abcgTrackball_8cpp__incl.map +++ b/abcg/doc/html/abcgTrackball_8cpp__incl.map @@ -1,9 +1,15 @@ - - - - - - - + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgTrackball_8cpp__incl.md5 b/abcg/doc/html/abcgTrackball_8cpp__incl.md5 index c85812e7c..d802ddda4 100644 --- a/abcg/doc/html/abcgTrackball_8cpp__incl.md5 +++ b/abcg/doc/html/abcgTrackball_8cpp__incl.md5 @@ -1 +1 @@ -8ba14e095229bc5b30c36ecb8bdce865 \ No newline at end of file +63458598c6c92725013dfca9413a3959 \ No newline at end of file diff --git a/abcg/doc/html/abcgTrackball_8cpp__incl.svg b/abcg/doc/html/abcgTrackball_8cpp__incl.svg index 9dd145af9..68a7265bc 100644 --- a/abcg/doc/html/abcgTrackball_8cpp__incl.svg +++ b/abcg/doc/html/abcgTrackball_8cpp__incl.svg @@ -4,109 +4,127 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTrackball.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.cpp - + Node2 - - -abcgTrackball.hpp + + +abcgTrackball.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -algorithm + + +algorithm - + Node1->Node6 - - + + + + + - + Node7 - - -limits + + +limits - + Node1->Node7 - - + + + + + - + Node3 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -chrono + + +chrono - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgTrackball_8hpp.html b/abcg/doc/html/abcgTrackball_8hpp.html index 5fac96d0c..54dabb41d 100644 --- a/abcg/doc/html/abcgTrackball_8hpp.html +++ b/abcg/doc/html/abcgTrackball_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTrackball.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTrackball.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgTrackball.hpp File Reference
@@ -114,25 +121,25 @@
Include dependency graph for abcgTrackball.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::TrackBall
 Manages a virtual trackball. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -147,7 +154,7 @@ diff --git a/abcg/doc/html/abcgTrackball_8hpp.js b/abcg/doc/html/abcgTrackball_8hpp.js new file mode 100644 index 000000000..97ae5a785 --- /dev/null +++ b/abcg/doc/html/abcgTrackball_8hpp.js @@ -0,0 +1,4 @@ +var abcgTrackball_8hpp = +[ + [ "abcg::TrackBall", "classabcg_1_1TrackBall.html", "classabcg_1_1TrackBall" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.map b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.map index 970f21e19..7d172a3f8 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.map @@ -1,8 +1,13 @@ - - - - - - + + + + + + + + + + + diff --git a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.md5 b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.md5 index 38835cdbd..0dfa2b77a 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.md5 @@ -1 +1 @@ -2d3c87247739c738280c37f12e472a48 \ No newline at end of file +d2c98f135a13c786e2332c6261d795c5 \ No newline at end of file diff --git a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.svg b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.svg index 2abbb9743..1cad07e80 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgTrackball_8hpp__dep__incl.svg @@ -4,99 +4,114 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTrackball.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.cpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.cpp - + Node1->Node6 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgTrackball_8hpp__incl.map b/abcg/doc/html/abcgTrackball_8hpp__incl.map index 82a3b275c..7cd53a74b 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__incl.map +++ b/abcg/doc/html/abcgTrackball_8hpp__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgTrackball_8hpp__incl.md5 b/abcg/doc/html/abcgTrackball_8hpp__incl.md5 index ed2d22621..ef2bf3cfc 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__incl.md5 +++ b/abcg/doc/html/abcgTrackball_8hpp__incl.md5 @@ -1 +1 @@ -51fcc30a4ac617d90bec94d101b6ef48 \ No newline at end of file +e7b7a23f80bfaecd5cb16217d691b4f5 \ No newline at end of file diff --git a/abcg/doc/html/abcgTrackball_8hpp__incl.svg b/abcg/doc/html/abcgTrackball_8hpp__incl.svg index 101c49ade..f111c3b46 100644 --- a/abcg/doc/html/abcgTrackball_8hpp__incl.svg +++ b/abcg/doc/html/abcgTrackball_8hpp__incl.svg @@ -4,64 +4,73 @@ - - + + /home/harlen/dev/abcg/abcg/abcgTrackball.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgTrackball.hpp + + +/home/harlen/dev/abcg +/abcg/abcgTrackball.hpp - + Node2 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -chrono + + +chrono - + Node3->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgTrackball_8hpp_source.html b/abcg/doc/html/abcgTrackball_8hpp_source.html index 995b9936d..bb4e4ba96 100644 --- a/abcg/doc/html/abcgTrackball_8hpp_source.html +++ b/abcg/doc/html/abcgTrackball_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgTrackball.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,77 +99,85 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgTrackball.hpp
+
/home/harlen/dev/abcg/abcg/abcgTrackball.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_TRACKBALL_HPP_
-
14 #define ABCG_TRACKBALL_HPP_
-
15 
-
16 #include "abcgExternal.hpp"
-
17 #include "abcgTimer.hpp"
-
18 
-
19 namespace abcg {
-
20 class TrackBall;
-
21 } // namespace abcg
-
22 
- -
28 public:
-
29  void mouseMove(glm::ivec2 const &position);
-
30  void mousePress(glm::ivec2 const &position);
-
31  void mouseRelease(glm::ivec2 const &position);
-
32  void resizeViewport(glm::ivec2 const &size) noexcept;
-
33 
-
34  [[nodiscard]] glm::quat getRotation() const;
-
35 
-
36  void setAxis(glm::vec3 axis) noexcept;
-
37  void setVelocity(float velocity) noexcept;
-
38 
-
39 private:
-
40  constexpr static float m_maxVelocity{glm::radians(720.0f / 1000.0f)};
-
41 
-
42  glm::vec3 m_axis{1.0f};
-
43  float m_velocity{};
-
44  glm::quat m_rotation{glm::quat(1.0, 0.0, 0.0, 0.0)};
-
45 
-
46  float m_durationSinceLastEvent{};
-
47 
-
48  glm::vec3 m_lastPosition{};
-
49  Timer m_lastTime;
-
50  bool m_mouseTracking{};
-
51 
-
52  glm::ivec2 m_viewportSize{0};
-
53 
-
54  [[nodiscard]] glm::vec3 project(glm::vec2 const &mousePosition) const;
-
55 };
-
56 
-
57 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_TRACKBALL_HPP_
+
14#define ABCG_TRACKBALL_HPP_
+
15
+
16#include "abcgExternal.hpp"
+
17#include "abcgTimer.hpp"
+
18
+
19namespace abcg {
+
20class TrackBall;
+
21} // namespace abcg
+
22
+
+ +
28public:
+
29 void mouseMove(glm::ivec2 const &position);
+
30 void mousePress(glm::ivec2 const &position);
+
31 void mouseRelease(glm::ivec2 const &position);
+
32 void resizeViewport(glm::ivec2 const &size) noexcept;
+
33
+
34 [[nodiscard]] glm::quat getRotation() const;
+
35
+
36 void setAxis(glm::vec3 axis) noexcept;
+
37 void setVelocity(float velocity) noexcept;
+
38
+
39private:
+
40 constexpr static float m_maxVelocity{glm::radians(720.0f / 1000.0f)};
+
41
+
42 glm::vec3 m_axis{1.0f};
+
43 float m_velocity{};
+
44 glm::quat m_rotation{glm::quat(1.0, 0.0, 0.0, 0.0)};
+
45
+
46 float m_durationSinceLastEvent{};
+
47
+
48 glm::vec3 m_lastPosition{};
+
49 Timer m_lastTime;
+
50 bool m_mouseTracking{};
+
51
+
52 glm::ivec2 m_viewportSize{0};
+
53
+
54 [[nodiscard]] glm::vec3 project(glm::vec2 const &mousePosition) const;
+
55};
+
+
56
+
57#endif
Header file for including third-party dependencies.
Header file of abcg::Timer.
-
Represents a timer based on the monotonic clock std::chrono::steady_clock.
Definition: abcgTimer.hpp:24
-
Manages a virtual trackball.
Definition: abcgTrackball.hpp:27
-
void mousePress(glm::ivec2 const &position)
Function to be called on a mouse press event.
Definition: abcgTrackball.cpp:59
-
glm::quat getRotation() const
Returns the current trackball rotation as a quaternion.
Definition: abcgTrackball.cpp:98
-
void setAxis(glm::vec3 axis) noexcept
Sets the trackball's axis of rotation.
Definition: abcgTrackball.cpp:115
-
void mouseRelease(glm::ivec2 const &position)
Function to be called on a mouse release event.
Definition: abcgTrackball.cpp:75
-
void setVelocity(float velocity) noexcept
Sets the trackball's rotation velocity.
Definition: abcgTrackball.cpp:124
-
void resizeViewport(glm::ivec2 const &size) noexcept
Function to be called when the window is resized.
Definition: abcgTrackball.cpp:89
-
void mouseMove(glm::ivec2 const &position)
Function to be called on a mouse move event.
Definition: abcgTrackball.cpp:23
-
Root namespace.
Definition: abcgApplication.hpp:23
+
Represents a timer based on the monotonic clock std::chrono::steady_clock.
Definition abcgTimer.hpp:24
+
Manages a virtual trackball.
Definition abcgTrackball.hpp:27
+
void mousePress(glm::ivec2 const &position)
Function to be called on a mouse press event.
Definition abcgTrackball.cpp:59
+
glm::quat getRotation() const
Returns the current trackball rotation as a quaternion.
Definition abcgTrackball.cpp:98
+
void setAxis(glm::vec3 axis) noexcept
Sets the trackball's axis of rotation.
Definition abcgTrackball.cpp:115
+
void mouseRelease(glm::ivec2 const &position)
Function to be called on a mouse release event.
Definition abcgTrackball.cpp:75
+
void setVelocity(float velocity) noexcept
Sets the trackball's rotation velocity.
Definition abcgTrackball.cpp:124
+
void resizeViewport(glm::ivec2 const &size) noexcept
Function to be called when the window is resized.
Definition abcgTrackball.cpp:89
+
void mouseMove(glm::ivec2 const &position)
Function to be called on a mouse move event.
Definition abcgTrackball.cpp:23
+
Root namespace.
Definition abcgApplication.hpp:23
diff --git a/abcg/doc/html/abcgUtil_8cpp.html b/abcg/doc/html/abcgUtil_8cpp.html index 2cf7b158f..ba5555066 100644 --- a/abcg/doc/html/abcgUtil_8cpp.html +++ b/abcg/doc/html/abcgUtil_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgUtil.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgUtil.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgUtil.cpp File Reference
@@ -110,7 +117,7 @@
Include dependency graph for abcgUtil.cpp:
-
+

Detailed Description

General utility functions.

@@ -122,7 +129,7 @@ diff --git a/abcg/doc/html/abcgUtil_8cpp__incl.map b/abcg/doc/html/abcgUtil_8cpp__incl.map index ca2de59f4..eda788e35 100644 --- a/abcg/doc/html/abcgUtil_8cpp__incl.map +++ b/abcg/doc/html/abcgUtil_8cpp__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgUtil_8cpp__incl.md5 b/abcg/doc/html/abcgUtil_8cpp__incl.md5 index d888f5de1..96d9358da 100644 --- a/abcg/doc/html/abcgUtil_8cpp__incl.md5 +++ b/abcg/doc/html/abcgUtil_8cpp__incl.md5 @@ -1 +1 @@ -280eb7a5ac2e46004916c7bfabf28460 \ No newline at end of file +3afb09914db80a41fee1a3a5929faaa5 \ No newline at end of file diff --git a/abcg/doc/html/abcgUtil_8cpp__incl.svg b/abcg/doc/html/abcgUtil_8cpp__incl.svg index 00c575894..85fb0f46a 100644 --- a/abcg/doc/html/abcgUtil_8cpp__incl.svg +++ b/abcg/doc/html/abcgUtil_8cpp__incl.svg @@ -4,64 +4,73 @@ - - + + /home/harlen/dev/abcg/abcg/abcgUtil.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgUtil.cpp + + +/home/harlen/dev/abcg +/abcg/abcgUtil.cpp - + Node2 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -functional + + +functional - + Node2->Node3 - - + + + + + - + Node4 - - -string + + +string - + Node2->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgUtil_8hpp.html b/abcg/doc/html/abcgUtil_8hpp.html index 8938574bf..a3bbc040b 100644 --- a/abcg/doc/html/abcgUtil_8hpp.html +++ b/abcg/doc/html/abcgUtil_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgUtil.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgUtil.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgUtil.hpp File Reference
@@ -114,40 +121,40 @@
Include dependency graph for abcgUtil.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - + - + - + - + - - + + - - + + - - + +

+

Functions

template<typename TFirst , typename... TRest>
template<typename TFirst , typename... TRest>
void abcg::hashCombineSeed (std::size_t &seed, const TFirst &value, const TRest &...rest)
 Creates a hash value from several values, combining them with a seed value. More...
 Creates a hash value from several values, combining them with a seed value.
 
template<typename TFirst , typename... TRest>
template<typename TFirst , typename... TRest>
std::size_t abcg::hashCombine (const TFirst &value, const TRest &...rest)
 Creates a hash value from several values. More...
 Creates a hash value from several values.
 
std::string abcg::toRedString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold red. More...
std::string abcg::toRedString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold red.
 
std::string abcg::toYellowString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow. More...
std::string abcg::toYellowString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow.
 
std::string abcg::toBlueString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue. More...
std::string abcg::toBlueString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue.
 

Detailed Description

@@ -160,7 +167,7 @@ diff --git a/abcg/doc/html/abcgUtil_8hpp__dep__incl.map b/abcg/doc/html/abcgUtil_8hpp__dep__incl.map index 2c97976b3..81f0a8945 100644 --- a/abcg/doc/html/abcgUtil_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgUtil_8hpp__dep__incl.map @@ -1,10 +1,17 @@ - - - - - - - - + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgUtil_8hpp__dep__incl.md5 b/abcg/doc/html/abcgUtil_8hpp__dep__incl.md5 index 9ed5adc37..2236071f8 100644 --- a/abcg/doc/html/abcgUtil_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgUtil_8hpp__dep__incl.md5 @@ -1 +1 @@ -d076081cd9659a761609ae27c98e36e9 \ No newline at end of file +319335c2a70213c38e4176d86119904a \ No newline at end of file diff --git a/abcg/doc/html/abcgUtil_8hpp__dep__incl.svg b/abcg/doc/html/abcgUtil_8hpp__dep__incl.svg index e7ea290a6..4725b350d 100644 --- a/abcg/doc/html/abcgUtil_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgUtil_8hpp__dep__incl.svg @@ -4,131 +4,152 @@ - - + + /home/harlen/dev/abcg/abcg/abcgUtil.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgUtil.hpp + + +/home/harlen/dev/abcg +/abcg/abcgUtil.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgException.cpp + + +/home/harlen/dev/abcg +/abcg/abcgException.cpp - + Node1->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLError.cpp - + Node1->Node7 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgUtil.cpp + + +/home/harlen/dev/abcg +/abcg/abcgUtil.cpp - + Node1->Node8 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgUtil_8hpp__incl.map b/abcg/doc/html/abcgUtil_8hpp__incl.map index 0606d2684..5076848c2 100644 --- a/abcg/doc/html/abcgUtil_8hpp__incl.map +++ b/abcg/doc/html/abcgUtil_8hpp__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgUtil_8hpp__incl.md5 b/abcg/doc/html/abcgUtil_8hpp__incl.md5 index ea07091ca..75683bc9d 100644 --- a/abcg/doc/html/abcgUtil_8hpp__incl.md5 +++ b/abcg/doc/html/abcgUtil_8hpp__incl.md5 @@ -1 +1 @@ -9331bdc5dc53789775556560702eef43 \ No newline at end of file +07e4f82f50f368e93ba107d114184680 \ No newline at end of file diff --git a/abcg/doc/html/abcgUtil_8hpp__incl.svg b/abcg/doc/html/abcgUtil_8hpp__incl.svg index aec7eca94..bfde78f8c 100644 --- a/abcg/doc/html/abcgUtil_8hpp__incl.svg +++ b/abcg/doc/html/abcgUtil_8hpp__incl.svg @@ -4,49 +4,55 @@ - - + + /home/harlen/dev/abcg/abcg/abcgUtil.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgUtil.hpp + + +/home/harlen/dev/abcg +/abcg/abcgUtil.hpp - + Node2 - - -functional + + +functional - + Node1->Node2 - - + + + + + - + Node3 - - -string + + +string - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgUtil_8hpp_source.html b/abcg/doc/html/abcgUtil_8hpp_source.html index 675c9f5de..b5a77545a 100644 --- a/abcg/doc/html/abcgUtil_8hpp_source.html +++ b/abcg/doc/html/abcgUtil_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgUtil.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,60 +99,70 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgUtil.hpp
+
/home/harlen/dev/abcg/abcg/abcgUtil.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_UTIL_HPP_
-
12 #define ABCG_UTIL_HPP_
-
13 
-
14 #include <functional>
-
15 #include <string>
-
16 
-
17 namespace abcg {
-
18 
-
40 template <typename TFirst, typename... TRest>
-
41 void hashCombineSeed(std::size_t &seed, const TFirst &value,
-
42  const TRest &...rest) {
-
43  seed ^= std::hash<TFirst>{}(value) + 0x9e3779b97f4a7c15 + (seed << 6) +
-
44  (seed >> 2);
-
45  (hashCombineSeed(seed, rest), ...);
-
46 }
-
47 
-
65 template <typename TFirst, typename... TRest>
-
66 std::size_t hashCombine(const TFirst &value, const TRest &...rest) {
-
67  std::size_t seed{};
-
68  hashCombineSeed(seed, value, rest...);
-
69  return seed;
-
70 }
-
71 
-
72 std::string toRedString(std::string_view str);
-
73 std::string toYellowString(std::string_view str);
-
74 std::string toBlueString(std::string_view str);
-
75 
-
76 } // namespace abcg
-
77 
-
78 #endif
-
Root namespace.
Definition: abcgApplication.hpp:23
-
void hashCombineSeed(std::size_t &seed, const TFirst &value, const TRest &...rest)
Creates a hash value from several values, combining them with a seed value.
Definition: abcgUtil.hpp:41
-
std::string toBlueString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue.
Definition: abcgUtil.cpp:55
-
std::string toRedString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold red.
Definition: abcgUtil.cpp:29
-
std::string toYellowString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow.
Definition: abcgUtil.cpp:42
-
std::size_t hashCombine(const TFirst &value, const TRest &...rest)
Creates a hash value from several values.
Definition: abcgUtil.hpp:66
+Go to the documentation of this file.
1
+
11#ifndef ABCG_UTIL_HPP_
+
12#define ABCG_UTIL_HPP_
+
13
+
14#include <functional>
+
15#include <string>
+
16
+
17namespace abcg {
+
18
+
40template <typename TFirst, typename... TRest>
+
+
41void hashCombineSeed(std::size_t &seed, const TFirst &value,
+
42 const TRest &...rest) {
+
43 seed ^= std::hash<TFirst>{}(value) + 0x9e3779b97f4a7c15 + (seed << 6) +
+
44 (seed >> 2);
+
45 (hashCombineSeed(seed, rest), ...);
+
46}
+
+
47
+
65template <typename TFirst, typename... TRest>
+
+
66std::size_t hashCombine(const TFirst &value, const TRest &...rest) {
+
67 std::size_t seed{};
+
68 hashCombineSeed(seed, value, rest...);
+
69 return seed;
+
70}
+
+
71
+
72std::string toRedString(std::string_view str);
+
73std::string toYellowString(std::string_view str);
+
74std::string toBlueString(std::string_view str);
+
75
+
76} // namespace abcg
+
77
+
78#endif
+
Root namespace.
Definition abcgApplication.hpp:23
+
void hashCombineSeed(std::size_t &seed, const TFirst &value, const TRest &...rest)
Creates a hash value from several values, combining them with a seed value.
Definition abcgUtil.hpp:41
+
std::string toBlueString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue.
Definition abcgUtil.cpp:55
+
std::string toRedString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold red.
Definition abcgUtil.cpp:29
+
std::string toYellowString(std::string_view str)
Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow.
Definition abcgUtil.cpp:42
+
std::size_t hashCombine(const TFirst &value, const TRest &...rest)
Creates a hash value from several values.
Definition abcgUtil.hpp:66
diff --git a/abcg/doc/html/abcgVulkanBuffer_8cpp.html b/abcg/doc/html/abcgVulkanBuffer_8cpp.html index 53837fd98..34f394b9f 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8cpp.html +++ b/abcg/doc/html/abcgVulkanBuffer_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.cpp File Reference
@@ -113,7 +120,7 @@
Include dependency graph for abcgVulkanBuffer.cpp:
-
+

Detailed Description

Definition of abcg::VulkanBuffer.

@@ -125,7 +132,7 @@ diff --git a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.map b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.map index 7225841a7..4ea81a65d 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.map @@ -1,19 +1,36 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.md5 index dca96bb09..11286366f 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.md5 @@ -1 +1 @@ -210fea9a07a496248fc5a6668fa832b4 \ No newline at end of file +4e45dc8b0fad529991d876106c0c2e44 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.svg b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.svg index 4486f0b50..228eaa816 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanBuffer_8cpp__incl.svg @@ -4,265 +4,316 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node2 - - -abcgVulkanBuffer.hpp + + +abcgVulkanBuffer.hpp - + Node1->Node2 - - + + + + + - + Node12 - - -gsl/gsl + + +gsl/gsl - + Node1->Node12 - - + + + + + - + Node13 - - -set + + +set - + Node1->Node13 - - + + + + + - + Node14 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node14 - - + + + + + - + Node3 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node2->Node3 - - + + + + + - + Node11 - - -gsl/pointers + + +gsl/pointers - + Node2->Node11 - - + + + + + - + Node4 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node3->Node4 - - + + + + + - + Node10 - - -functional + + +functional - + Node3->Node10 - - + + + + + - + Node5 - - -optional + + +optional - + Node4->Node5 - - + + + + + - + Node6 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node4->Node6 - - + + + + + - + Node9 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node4->Node9 - - + + + + + - + Node7 - - -volk.h + + +volk.h - + Node6->Node7 - - + + + + + - + Node8 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node6->Node8 - - + + + + + - + Node9->Node6 - - + + + + + - + Node15 - - -source_location + + +source_location - + Node14->Node15 - - + + + + + - + Node16 - - -stdexcept + + +stdexcept - + Node14->Node16 - - + + + + + - + Node17 - - -string + + +string - + Node14->Node17 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp.html b/abcg/doc/html/abcgVulkanBuffer_8hpp.html index 1545b5382..5c6708a54 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp.html +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp File Reference
@@ -114,17 +121,17 @@
Include dependency graph for abcgVulkanBuffer.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -133,9 +140,9 @@

+

Classes

struct  abcg::VulkanBufferCreateInfo
 Creation info structure for abcg::VulkanBuffer::create. More...
 A class for representing a Vulkan buffer. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -150,7 +157,7 @@ diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp.js b/abcg/doc/html/abcgVulkanBuffer_8hpp.js new file mode 100644 index 000000000..6d2a55b74 --- /dev/null +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanBuffer_8hpp = +[ + [ "abcg::VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], + [ "abcg::VulkanBuffer", "classabcg_1_1VulkanBuffer.html", "classabcg_1_1VulkanBuffer" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.map index 145d6dc46..bd5dd4dbd 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.map @@ -1,7 +1,11 @@ - - - - - + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.md5 index a245680ec..014882168 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.md5 @@ -1 +1 @@ -9984ea8900ea8cce6682cf4be492ee63 \ No newline at end of file +4e33a22c996c2f23a1396a775239399a \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.svg index 3acb51db9..bbf6c3d81 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__dep__incl.svg @@ -4,83 +4,95 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node1->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node1->Node5 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.map b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.map index b4973aa0a..0f33ad44c 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.map @@ -1,12 +1,22 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.md5 index 1c480691f..36ad09501 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.md5 @@ -1 +1 @@ -974c01db14b6ae97ec5cb89d0df74582 \ No newline at end of file +5f4b3b9d45674f9be61f7c6cf79eee88 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.svg b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.svg index 5c5f69b04..ba6fcc45c 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp__incl.svg @@ -4,160 +4,190 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node2 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node2 - - + + + + + - + Node10 - - -gsl/pointers + + +gsl/pointers - + Node1->Node10 - - + + + + + - + Node3 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node2->Node3 - - + + + + + - + Node9 - - -functional + + +functional - + Node2->Node9 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node3->Node5 - - + + + + + - + Node8 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node3->Node8 - - + + + + + - + Node6 - - -volk.h + + +volk.h - + Node5->Node6 - - + + + + + - + Node7 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node5->Node7 - - + + + + + - + Node8->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanBuffer_8hpp_source.html b/abcg/doc/html/abcgVulkanBuffer_8hpp_source.html index 4ab674c7c..ee4a371d7 100644 --- a/abcg/doc/html/abcgVulkanBuffer_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanBuffer_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,80 +99,90 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanBuffer.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_BUFFER_HPP_
-
14 #define ABCG_VULKAN_BUFFER_HPP_
-
15 
-
16 #include "abcgVulkanDevice.hpp"
-
17 
-
18 #include <gsl/pointers>
-
19 
-
20 namespace abcg {
-
21 struct VulkanBufferCreateInfo;
-
22 class VulkanBuffer;
-
23 } // namespace abcg
-
24 
- -
29  vk::DeviceSize size{};
-
30  vk::BufferUsageFlags usage{};
-
31  vk::MemoryPropertyFlags properties{};
-
32  std::optional<gsl::not_null<void const *>> data{};
-
33 };
-
34 
- -
42 public:
-
43  void create(VulkanDevice const &device,
-
44  VulkanBufferCreateInfo const &createInfo);
-
45  void destroy();
-
46  void loadData(gsl::not_null<void const *> data, vk::DeviceSize size,
-
47  vk::DeviceSize offset = 0UL);
-
48 
-
49  explicit operator vk::Buffer const &() const noexcept;
-
50 
-
51  [[nodiscard]] vk::DeviceMemory const &getDeviceMemory() const noexcept;
-
52 
-
53 private:
-
54  [[nodiscard]] std::pair<vk::Buffer, vk::DeviceMemory>
-
55  createBuffer(VulkanDevice const &device, vk::DeviceSize size,
-
56  vk::BufferUsageFlags usage,
-
57  vk::MemoryPropertyFlags properties) const;
-
58 
-
59  vk::Buffer m_buffer;
-
60  vk::DeviceMemory m_deviceMemory;
-
61  vk::Device m_device;
-
62 };
-
63 
-
64 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_BUFFER_HPP_
+
14#define ABCG_VULKAN_BUFFER_HPP_
+
15
+
16#include "abcgVulkanDevice.hpp"
+
17
+
18#include <gsl/pointers>
+
19
+
20namespace abcg {
+
21struct VulkanBufferCreateInfo;
+
22class VulkanBuffer;
+
23} // namespace abcg
+
24
+
+ +
29 vk::DeviceSize size{};
+
30 vk::BufferUsageFlags usage{};
+
31 vk::MemoryPropertyFlags properties{};
+
32 std::optional<gsl::not_null<void const *>> data{};
+
33};
+
+
34
+
+ +
42public:
+
43 void create(VulkanDevice const &device,
+
44 VulkanBufferCreateInfo const &createInfo);
+
45 void destroy();
+
46 void loadData(gsl::not_null<void const *> data, vk::DeviceSize size,
+
47 vk::DeviceSize offset = 0UL);
+
48
+
49 explicit operator vk::Buffer const &() const noexcept;
+
50
+
51 [[nodiscard]] vk::DeviceMemory const &getDeviceMemory() const noexcept;
+
52
+
53private:
+
54 [[nodiscard]] std::pair<vk::Buffer, vk::DeviceMemory>
+
55 createBuffer(VulkanDevice const &device, vk::DeviceSize size,
+
56 vk::BufferUsageFlags usage,
+
57 vk::MemoryPropertyFlags properties) const;
+
58
+
59 vk::Buffer m_buffer;
+
60 vk::DeviceMemory m_deviceMemory;
+
61 vk::Device m_device;
+
62};
+
+
63
+
64#endif
Header file of abcg::VulkanDevice.
-
A class for representing a Vulkan buffer.
Definition: abcgVulkanBuffer.hpp:41
-
vk::DeviceMemory const & getDeviceMemory() const noexcept
Returns the opaque handle to the device memory object associated with the buffer.
Definition: abcgVulkanBuffer.cpp:146
-
void create(VulkanDevice const &device, VulkanBufferCreateInfo const &createInfo)
Definition: abcgVulkanBuffer.cpp:19
-
void destroy()
Definition: abcgVulkanBuffer.cpp:66
-
void loadData(gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)
Loads data to the buffer.
Definition: abcgVulkanBuffer.cpp:78
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Creation info structure for abcg::VulkanBuffer::create.
Definition: abcgVulkanBuffer.hpp:28
-
vk::DeviceSize size
Definition: abcgVulkanBuffer.hpp:29
-
std::optional< gsl::not_null< void const * > > data
Definition: abcgVulkanBuffer.hpp:32
-
vk::BufferUsageFlags usage
Definition: abcgVulkanBuffer.hpp:30
-
vk::MemoryPropertyFlags properties
Definition: abcgVulkanBuffer.hpp:31
+
A class for representing a Vulkan buffer.
Definition abcgVulkanBuffer.hpp:41
+
vk::DeviceMemory const & getDeviceMemory() const noexcept
Returns the opaque handle to the device memory object associated with the buffer.
Definition abcgVulkanBuffer.cpp:146
+
void create(VulkanDevice const &device, VulkanBufferCreateInfo const &createInfo)
Definition abcgVulkanBuffer.cpp:19
+
void destroy()
Definition abcgVulkanBuffer.cpp:66
+
void loadData(gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)
Loads data to the buffer.
Definition abcgVulkanBuffer.cpp:78
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
Root namespace.
Definition abcgApplication.hpp:23
+
Creation info structure for abcg::VulkanBuffer::create.
Definition abcgVulkanBuffer.hpp:28
+
vk::DeviceSize size
Definition abcgVulkanBuffer.hpp:29
+
std::optional< gsl::not_null< void const * > > data
Definition abcgVulkanBuffer.hpp:32
+
vk::BufferUsageFlags usage
Definition abcgVulkanBuffer.hpp:30
+
vk::MemoryPropertyFlags properties
Definition abcgVulkanBuffer.hpp:31
diff --git a/abcg/doc/html/abcgVulkanDevice_8cpp.html b/abcg/doc/html/abcgVulkanDevice_8cpp.html index 8dbf97378..35bafa5c2 100644 --- a/abcg/doc/html/abcgVulkanDevice_8cpp.html +++ b/abcg/doc/html/abcgVulkanDevice_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanDevice.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.cpp File Reference
@@ -112,7 +119,7 @@
Include dependency graph for abcgVulkanDevice.cpp:
-
+

Detailed Description

Definition of abcg::VulkanDevice.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.map b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.map index c69dca40b..b1cbc8447 100644 --- a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.map @@ -1,13 +1,24 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.md5 index 510b66a09..1b1dc856e 100644 --- a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.md5 @@ -1 +1 @@ -5436420eec4428e6cbe4447d1bb15c9f \ No newline at end of file +0d2ea8e117b0bf39f66b2e9304d0e197 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.svg b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.svg index 58ed8b193..8f04cafba 100644 --- a/abcg/doc/html/abcgVulkanDevice_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanDevice_8cpp__incl.svg @@ -4,175 +4,208 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanDevice.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.cpp - + Node2 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node2 - - + + + + + - + Node10 - - -gsl/gsl + + +gsl/gsl - + Node1->Node10 - - + + + + + - + Node11 - - -set + + +set - + Node1->Node11 - - + + + + + - + Node3 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node2->Node3 - - + + + + + - + Node9 - - -functional + + +functional - + Node2->Node9 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node3->Node5 - - + + + + + - + Node8 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node3->Node8 - - + + + + + - + Node6 - - -volk.h + + +volk.h - + Node5->Node6 - - + + + + + - + Node7 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node5->Node7 - - + + + + + - + Node8->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp.html b/abcg/doc/html/abcgVulkanDevice_8hpp.html index 32a66eb3d..43e2875d9 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp.html +++ b/abcg/doc/html/abcgVulkanDevice_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp File Reference
@@ -114,17 +121,17 @@
Include dependency graph for abcgVulkanDevice.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -136,9 +143,9 @@

+

Classes

struct  abcg::VulkanCommandPools
 Command pools associated with a Vulkan device. More...
 A class for representing a Vulkan logical device and related resources. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -153,7 +160,7 @@ diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp.js b/abcg/doc/html/abcgVulkanDevice_8hpp.js new file mode 100644 index 000000000..b921eb43f --- /dev/null +++ b/abcg/doc/html/abcgVulkanDevice_8hpp.js @@ -0,0 +1,6 @@ +var abcgVulkanDevice_8hpp = +[ + [ "abcg::VulkanCommandPools", "structabcg_1_1VulkanCommandPools.html", "structabcg_1_1VulkanCommandPools" ], + [ "abcg::VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], + [ "abcg::VulkanDevice", "classabcg_1_1VulkanDevice.html", "classabcg_1_1VulkanDevice" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.map index 48780a2ea..5b64b6199 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.map @@ -1,18 +1,43 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.md5 index e5ee3539f..fa30ede16 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.md5 @@ -1 +1 @@ -dc3c771c5572aa72dd4d3bf039f7580b \ No newline at end of file +b9502e88993a9ede03aafe76aae38fd9 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.svg index a142d0cb7..a2509c548 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__dep__incl.svg @@ -4,319 +4,394 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.cpp - + Node1->Node7 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node1->Node9 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node1->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node1->Node13 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node1->Node15 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node3 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node2->Node5 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node2->Node6 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node3->Node4 - - + + + + + - + Node8->Node3 - - + + + + + - + Node8->Node6 - - + + + + + - + Node8->Node9 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node9->Node10 - - + + + + + - + Node9->Node12 - - + + + + + - + Node9->Node13 - - + + + + + - + Node10->Node3 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node10->Node11 - - + + + + + - + Node13->Node3 - - + + + + + - + Node13->Node12 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node13->Node14 - - + + + + + - + Node15->Node3 - - + + + + + - + Node15->Node10 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node15->Node16 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.map b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.map index 38685338a..30b0fb524 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.map @@ -1,10 +1,18 @@ - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.md5 index 928ad652d..4f4f03e79 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.md5 @@ -1 +1 @@ -c84b33b060f20f5f8bf36691e52c3d8b \ No newline at end of file +9ce06d938bf23a8673adb9c7487fd0ad \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.svg b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.svg index 9e553fa97..ba04f4b3d 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanDevice_8hpp__incl.svg @@ -4,130 +4,154 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.hpp - + Node2 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node1->Node2 - - + + + + + - + Node8 - - -functional + + +functional - + Node1->Node8 - - + + + + + - + Node3 - - -optional + + +optional - + Node2->Node3 - - + + + + + - + Node4 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node2->Node4 - - + + + + + - + Node7 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node2->Node7 - - + + + + + - + Node5 - - -volk.h + + +volk.h - + Node4->Node5 - - + + + + + - + Node6 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node4->Node6 - - + + + + + - + Node7->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanDevice_8hpp_source.html b/abcg/doc/html/abcgVulkanDevice_8hpp_source.html index 1f5b741c4..c1553977f 100644 --- a/abcg/doc/html/abcgVulkanDevice_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanDevice_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,100 +99,112 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanDevice.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_DEVICE_HPP_
-
14 #define ABCG_VULKAN_DEVICE_HPP_
-
15 
- -
17 
-
18 #include <functional>
-
19 
-
20 namespace abcg {
-
21 struct VulkanCommandPools;
-
22 struct VulkanQueues;
-
23 class VulkanDevice;
-
24 class VulkanPipeline;
-
25 class VulkanSwapchain;
-
26 class VulkanWindow;
-
27 } // namespace abcg
-
28 
- -
33  vk::CommandPool compute;
-
34  vk::CommandPool graphics;
-
35  vk::CommandPool transfer;
-
36 };
-
37 
- -
42  vk::Queue compute;
-
43  vk::Queue graphics;
-
44  vk::Queue present;
-
45  vk::Queue transfer;
-
46 };
-
47 
- -
56 public:
-
57  void create(VulkanPhysicalDevice const &physicalDevice,
-
58  std::vector<char const *> const &extensions = {});
-
59  void destroy();
-
60 
-
61  explicit operator vk::Device const &() const noexcept;
-
62 
-
63  [[nodiscard]] VulkanPhysicalDevice const &getPhysicalDevice() const noexcept;
-
64  [[nodiscard]] VulkanQueues const &getQueues() const noexcept;
-
65  [[nodiscard]] VulkanCommandPools const &getCommandPools() const noexcept;
-
66 
-
67  void withCommandBuffer(
-
68  std::function<void(vk::CommandBuffer const &commandBuffer)> const &fun,
-
69  vk::QueueFlagBits queueFlag = vk::QueueFlagBits::eGraphics,
-
70  vk::CommandBufferLevel level = vk::CommandBufferLevel::ePrimary) const;
-
71 
-
72 private:
-
73  void createCommandPools();
-
74  void destroyCommandPools();
-
75 
-
76  vk::Device m_device;
-
77  VulkanPhysicalDevice m_physicalDevice;
-
78  VulkanCommandPools m_commandPools;
-
79  VulkanQueues m_queues;
-
80 };
-
81 
-
82 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_DEVICE_HPP_
+
14#define ABCG_VULKAN_DEVICE_HPP_
+
15
+ +
17
+
18#include <functional>
+
19
+
20namespace abcg {
+
21struct VulkanCommandPools;
+
22struct VulkanQueues;
+
23class VulkanDevice;
+
24class VulkanPipeline;
+
25class VulkanSwapchain;
+
26class VulkanWindow;
+
27} // namespace abcg
+
28
+
+ +
33 vk::CommandPool compute;
+
34 vk::CommandPool graphics;
+
35 vk::CommandPool transfer;
+
36};
+
+
37
+
+ +
42 vk::Queue compute;
+
43 vk::Queue graphics;
+
44 vk::Queue present;
+
45 vk::Queue transfer;
+
46};
+
+
47
+
+ +
56public:
+
57 void create(VulkanPhysicalDevice const &physicalDevice,
+
58 std::vector<char const *> const &extensions = {});
+
59 void destroy();
+
60
+
61 explicit operator vk::Device const &() const noexcept;
+
62
+
63 [[nodiscard]] VulkanPhysicalDevice const &getPhysicalDevice() const noexcept;
+
64 [[nodiscard]] VulkanQueues const &getQueues() const noexcept;
+
65 [[nodiscard]] VulkanCommandPools const &getCommandPools() const noexcept;
+
66
+ +
68 std::function<void(vk::CommandBuffer const &commandBuffer)> const &fun,
+
69 vk::QueueFlagBits queueFlag = vk::QueueFlagBits::eGraphics,
+
70 vk::CommandBufferLevel level = vk::CommandBufferLevel::ePrimary) const;
+
71
+
72private:
+
73 void createCommandPools();
+
74 void destroyCommandPools();
+
75
+
76 vk::Device m_device;
+
77 VulkanPhysicalDevice m_physicalDevice;
+
78 VulkanCommandPools m_commandPools;
+
79 VulkanQueues m_queues;
+
80};
+
+
81
+
82#endif
Header file of abcg::VulkanPhysicalDevice.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
void destroy()
Definition: abcgVulkanDevice.cpp:71
-
VulkanCommandPools const & getCommandPools() const noexcept
Returns the command pools associated with this device.
Definition: abcgVulkanDevice.cpp:108
-
void create(VulkanPhysicalDevice const &physicalDevice, std::vector< char const * > const &extensions={})
Definition: abcgVulkanDevice.cpp:17
-
VulkanPhysicalDevice const & getPhysicalDevice() const noexcept
Access to abcg::VulkanPhysicalDevice.
Definition: abcgVulkanDevice.cpp:89
-
void withCommandBuffer(std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun, vk::QueueFlagBits queueFlag=vk::QueueFlagBits::eGraphics, vk::CommandBufferLevel level=vk::CommandBufferLevel::ePrimary) const
Allocates and creates a command buffer to be immediately submitted and released.
Definition: abcgVulkanDevice.cpp:123
-
VulkanQueues const & getQueues() const noexcept
Returns the queues associated with this device.
Definition: abcgVulkanDevice.cpp:98
-
A class for representing a Vulkan physical device.
Definition: abcgVulkanPhysicalDevice.hpp:43
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Command pools associated with a Vulkan device.
Definition: abcgVulkanDevice.hpp:32
-
vk::CommandPool graphics
Definition: abcgVulkanDevice.hpp:34
-
vk::CommandPool transfer
Definition: abcgVulkanDevice.hpp:35
-
vk::CommandPool compute
Definition: abcgVulkanDevice.hpp:33
-
Queues associated with a Vulkan device.
Definition: abcgVulkanDevice.hpp:41
-
vk::Queue transfer
Definition: abcgVulkanDevice.hpp:45
-
vk::Queue graphics
Definition: abcgVulkanDevice.hpp:43
-
vk::Queue compute
Definition: abcgVulkanDevice.hpp:42
-
vk::Queue present
Definition: abcgVulkanDevice.hpp:44
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
void destroy()
Definition abcgVulkanDevice.cpp:71
+
VulkanCommandPools const & getCommandPools() const noexcept
Returns the command pools associated with this device.
Definition abcgVulkanDevice.cpp:108
+
void create(VulkanPhysicalDevice const &physicalDevice, std::vector< char const * > const &extensions={})
Definition abcgVulkanDevice.cpp:17
+
VulkanPhysicalDevice const & getPhysicalDevice() const noexcept
Access to abcg::VulkanPhysicalDevice.
Definition abcgVulkanDevice.cpp:89
+
void withCommandBuffer(std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun, vk::QueueFlagBits queueFlag=vk::QueueFlagBits::eGraphics, vk::CommandBufferLevel level=vk::CommandBufferLevel::ePrimary) const
Allocates and creates a command buffer to be immediately submitted and released.
Definition abcgVulkanDevice.cpp:123
+
VulkanQueues const & getQueues() const noexcept
Returns the queues associated with this device.
Definition abcgVulkanDevice.cpp:98
+
A class for representing a Vulkan physical device.
Definition abcgVulkanPhysicalDevice.hpp:43
+
Root namespace.
Definition abcgApplication.hpp:23
+
Command pools associated with a Vulkan device.
Definition abcgVulkanDevice.hpp:32
+
vk::CommandPool graphics
Definition abcgVulkanDevice.hpp:34
+
vk::CommandPool transfer
Definition abcgVulkanDevice.hpp:35
+
vk::CommandPool compute
Definition abcgVulkanDevice.hpp:33
+
Queues associated with a Vulkan device.
Definition abcgVulkanDevice.hpp:41
+
vk::Queue transfer
Definition abcgVulkanDevice.hpp:45
+
vk::Queue graphics
Definition abcgVulkanDevice.hpp:43
+
vk::Queue compute
Definition abcgVulkanDevice.hpp:42
+
vk::Queue present
Definition abcgVulkanDevice.hpp:44
diff --git a/abcg/doc/html/abcgVulkanError_8cpp.html b/abcg/doc/html/abcgVulkanError_8cpp.html index c5e608cdc..35c122466 100644 --- a/abcg/doc/html/abcgVulkanError_8cpp.html +++ b/abcg/doc/html/abcgVulkanError_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanError.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanError.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanError.cpp File Reference
@@ -111,7 +118,7 @@
Include dependency graph for abcgVulkanError.cpp:
-
+

Detailed Description

Definition of abcg::VulkanError members.

@@ -123,7 +130,7 @@ diff --git a/abcg/doc/html/abcgVulkanError_8cpp__incl.map b/abcg/doc/html/abcgVulkanError_8cpp__incl.map index de126a289..6848ee601 100644 --- a/abcg/doc/html/abcgVulkanError_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanError_8cpp__incl.map @@ -1,11 +1,20 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanError_8cpp__incl.md5 index b41f58f1e..772c25264 100644 --- a/abcg/doc/html/abcgVulkanError_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanError_8cpp__incl.md5 @@ -1 +1 @@ -1dc144378f58825e163f57982c0ecdd7 \ No newline at end of file +f6fce55ed0c7c031017dc2dddd084312 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanError_8cpp__incl.svg b/abcg/doc/html/abcgVulkanError_8cpp__incl.svg index 1961092c4..97b2e36ef 100644 --- a/abcg/doc/html/abcgVulkanError_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanError_8cpp__incl.svg @@ -4,145 +4,172 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanError.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.cpp - + Node2 - - -abcgVulkanError.hpp + + +abcgVulkanError.hpp - + Node1->Node2 - - + + + + + - + Node9 - - -fmt/core.h + + +fmt/core.h - + Node1->Node9 - - + + + + + - + Node3 - - -source_location + + +source_location - + Node2->Node3 - - + + + + + - + Node4 - - -volk.h + + +volk.h - + Node2->Node4 - - + + + + + - + Node5 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node2->Node5 - - + + + + + - + Node6 - - -abcgException.hpp + + +abcgException.hpp - + Node2->Node6 - - + + + + + - + Node6->Node3 - - + + + + + - + Node7 - - -stdexcept + + +stdexcept - + Node6->Node7 - - + + + + + - + Node8 - - -string + + +string - + Node6->Node8 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8hpp.html b/abcg/doc/html/abcgVulkanError_8hpp.html index b158c15cc..228dd8a79 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp.html +++ b/abcg/doc/html/abcgVulkanError_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanError.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Functions
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanError.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanError.hpp File Reference
@@ -117,31 +124,31 @@
Include dependency graph for abcgVulkanError.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::VulkanError
 Represents an exception object for Vulkan runtime errors. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - +

+

Functions

void abcg::checkVkResult (VkResult retCode, source_location const &sourceLocation=source_location::current())
void abcg::checkVkResult (VkResult retCode, source_location const &sourceLocation=source_location::current())
 

Detailed Description

@@ -155,7 +162,7 @@ diff --git a/abcg/doc/html/abcgVulkanError_8hpp.js b/abcg/doc/html/abcgVulkanError_8hpp.js index 64ed1a9e2..387c41e6c 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp.js +++ b/abcg/doc/html/abcgVulkanError_8hpp.js @@ -1,5 +1,5 @@ var abcgVulkanError_8hpp = [ - [ "VulkanError", "classabcg_1_1VulkanError.html", "classabcg_1_1VulkanError" ], + [ "abcg::VulkanError", "classabcg_1_1VulkanError.html", "classabcg_1_1VulkanError" ], [ "checkVkResult", "abcgVulkanError_8hpp.html#a6dc603716e2c0c5a9ee71ff1ca9881d9", null ] ]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.map index 31ed72417..fc793349c 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.md5 index dfa205bec..8fb7669a7 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.md5 @@ -1 +1 @@ -92d9cf1b94a428d62824a03f438bfb30 \ No newline at end of file +b1a8aafdfb2fe08cc68c97693d2ae0e1 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.svg index fde9f8fe2..19b10437b 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanError_8hpp__dep__incl.svg @@ -4,51 +4,57 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanError.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8hpp__incl.map b/abcg/doc/html/abcgVulkanError_8hpp__incl.map index ade4fd98d..f952ee1ea 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanError_8hpp__incl.map @@ -1,9 +1,16 @@ - - - - - - - + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanError_8hpp__incl.md5 index b0adfcaf8..50f70dd29 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanError_8hpp__incl.md5 @@ -1 +1 @@ -4b1c5118000f810677b826bf642e645f \ No newline at end of file +9474355ff6cbda914dd54b46cf76794e \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanError_8hpp__incl.svg b/abcg/doc/html/abcgVulkanError_8hpp__incl.svg index bd01c6ace..54a010d50 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanError_8hpp__incl.svg @@ -4,115 +4,136 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanError.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanError.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanError.hpp - + Node2 - - -source_location + + +source_location - + Node1->Node2 - - + + + + + - + Node3 - - -volk.h + + +volk.h - + Node1->Node3 - - + + + + + - + Node4 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node1->Node4 - - + + + + + - + Node5 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node5 - - + + + + + - + Node5->Node2 - - + + + + + - + Node6 - - -stdexcept + + +stdexcept - + Node5->Node6 - - + + + + + - + Node7 - - -string + + +string - + Node5->Node7 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanError_8hpp_source.html b/abcg/doc/html/abcgVulkanError_8hpp_source.html index 768ccddf2..2cad68565 100644 --- a/abcg/doc/html/abcgVulkanError_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanError_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanError.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,86 +99,93 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanError.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanError.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_ERROR_HPP_
-
14 #define ABCG_VULKAN_ERROR_HPP_
-
15 
-
16 #if !defined(NDEBUG)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
- -
21 } // namespace abcg
-
22 #else
-
23 #include <source_location>
-
24 namespace abcg {
- -
26 } // namespace abcg
-
27 #endif
-
28 #endif
-
29 
-
30 #include <volk.h>
-
31 #include <vulkan/vulkan.hpp>
-
32 
-
33 #include "abcgException.hpp"
-
34 
-
35 namespace abcg {
-
36 class VulkanError;
-
37 #if !defined(NDEBUG)
-
38 void checkVkResult(VkResult retCode, source_location const &sourceLocation =
-
39  source_location::current());
-
40 #else
-
41 void checkVkResult([[maybe_unused]] VkResult retCode);
-
42 #endif
-
43 } // namespace abcg
-
44 
- -
54 #if !defined(NDEBUG)
-
55 public:
-
56  explicit VulkanError(
-
57  VkResult errorCode,
-
58  source_location const &sourceLocation = source_location::current());
-
59 
-
60 private:
-
61  static std::string prettyPrint(VkResult errorCode,
-
62  source_location const &sourceLocation);
-
63 #else
-
64 public:
-
65  explicit VulkanError(VkResult errorCode);
-
66  explicit VulkanError(vk::Result errorCode);
-
67 
-
68 private:
-
69  static std::string prettyPrint(VkResult errorCode);
-
70 #endif
-
71 
-
72  static std::string_view getVulkanErrorString(VkResult errorCode);
-
73 };
-
74 
-
75 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_ERROR_HPP_
+
14#define ABCG_VULKAN_ERROR_HPP_
+
15
+
16#if !defined(NDEBUG)
+
17#if defined(__clang__)
+
18#include <experimental/source_location>
+
19namespace abcg {
+
20using source_location = std::experimental::source_location;
+
21} // namespace abcg
+
22#else
+
23#include <source_location>
+
24namespace abcg {
+
25using source_location = std::source_location;
+
26} // namespace abcg
+
27#endif
+
28#endif
+
29
+
30#include <volk.h>
+
31#include <vulkan/vulkan.hpp>
+
32
+
33#include "abcgException.hpp"
+
34
+
35namespace abcg {
+
36class VulkanError;
+
37#if !defined(NDEBUG)
+
38void checkVkResult(VkResult retCode, source_location const &sourceLocation =
+
39 source_location::current());
+
40#else
+
41void checkVkResult([[maybe_unused]] VkResult retCode);
+
42#endif
+
43} // namespace abcg
+
44
+
+ +
54#if !defined(NDEBUG)
+
55public:
+
56 explicit VulkanError(
+
57 VkResult errorCode,
+
58 source_location const &sourceLocation = source_location::current());
+
59
+
60private:
+
61 static std::string prettyPrint(VkResult errorCode,
+
62 source_location const &sourceLocation);
+
63#else
+
64public:
+
65 explicit VulkanError(VkResult errorCode);
+
66 explicit VulkanError(vk::Result errorCode);
+
67
+
68private:
+
69 static std::string prettyPrint(VkResult errorCode);
+
70#endif
+
71
+
72 static std::string_view getVulkanErrorString(VkResult errorCode);
+
73};
+
+
74
+
75#endif
Header file of abcg::Exception and derived classes.
-
Base class for ABCg exception objects.
Definition: abcgException.hpp:49
-
Represents an exception object for Vulkan runtime errors.
Definition: abcgVulkanError.hpp:53
-
VulkanError(VkResult errorCode, source_location const &sourceLocation=source_location::current())
Constructs an abcg::VulkanError object.
Definition: abcgVulkanError.cpp:88
-
Root namespace.
Definition: abcgApplication.hpp:23
-
void checkVkResult(VkResult retCode, source_location const &sourceLocation=source_location::current())
Definition: abcgVulkanError.cpp:17
-
std::source_location source_location
Definition: abcgOpenGLError.hpp:25
+
Base class for ABCg exception objects.
Definition abcgException.hpp:49
+
Represents an exception object for Vulkan runtime errors.
Definition abcgVulkanError.hpp:53
+
Root namespace.
Definition abcgApplication.hpp:23
+
void checkVkResult(VkResult retCode, source_location const &sourceLocation=source_location::current())
Definition abcgVulkanError.cpp:17
+
std::source_location source_location
Definition abcgOpenGLError.hpp:25
diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp.html b/abcg/doc/html/abcgVulkanExternal_8hpp.html index 32ecbac2a..36579b622 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp.html +++ b/abcg/doc/html/abcgVulkanExternal_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,16 +94,22 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp File Reference
@@ -113,21 +120,21 @@
Include dependency graph for abcgVulkanExternal.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- - + - +

+

Macros

#define VULKAN_HPP_NO_CONSTRUCTORS
#define VULKAN_HPP_NO_CONSTRUCTORS
 
#define ABCG_VULKAN_DEBUG_REPORT
#define ABCG_VULKAN_DEBUG_REPORT
 

Detailed Description

@@ -136,8 +143,8 @@

This file is part of ABCg (https://github.com/hbatagelo/abcg).

Macro Definition Documentation

- -

◆ ABCG_VULKAN_DEBUG_REPORT

+ +

◆ ABCG_VULKAN_DEBUG_REPORT

@@ -150,8 +157,8 @@

-

◆ VULKAN_HPP_NO_CONSTRUCTORS

+ +

◆ VULKAN_HPP_NO_CONSTRUCTORS

@@ -170,7 +177,7 @@

diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.map index 6e3beeed6..73106bcdc 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.map @@ -1,22 +1,58 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.md5 index 616b1c804..5b209a35b 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.md5 @@ -1 +1 @@ -e627f54cfc8dd35c3e944589a15431f3 \ No newline at end of file +ac49d361675d64c6d64d89b6c052dff4 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.svg index 9918f458f..aa4437eeb 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__dep__incl.svg @@ -4,425 +4,533 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanExternal.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanExternal.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.hpp - + Node1->Node2 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.hpp - + Node1->Node5 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.cpp - + Node2->Node4 - - + + + + + - + Node2->Node5 - - + + + + + - + Node17 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node2->Node17 - - + + + + + - + Node18 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node2->Node18 - - + + + + + - + Node5->Node4 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.hpp - + Node5->Node6 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node5->Node16 - - + + + + + - + Node5->Node17 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node6->Node7 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.cpp - + Node6->Node11 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node6->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node6->Node13 - - + + + + + - + Node6->Node16 - - + + + + + - + Node6->Node17 - - + + + + + - + Node19 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node6->Node19 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node7->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node7->Node9 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node7->Node10 - - + + + + + - + Node8->Node3 - - + + + + + - + Node12->Node8 - - + + + + + - + Node12->Node10 - - + + + + + - + Node12->Node13 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node13->Node14 - - + + + + + - + Node13->Node16 - - + + + + + - + Node13->Node17 - - + + + + + - + Node14->Node8 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node14->Node15 - - + + + + + - + Node17->Node8 - - + + + + + - + Node17->Node16 - - + + + + + - + Node17->Node18 - - + + + + + - + Node19->Node8 - - + + + + + - + Node19->Node14 - - + + + + + - + Node20 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node19->Node20 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.map b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.map index aa40e773e..c25478211 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.md5 index 574ba3252..1ee8e0b70 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.md5 @@ -1 +1 @@ -aacf8b281575b0a7a4de15b00a995772 \ No newline at end of file +1dacef3953039d03f54fb04c905aa7b7 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.svg b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.svg index ac840a19b..992094f55 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanExternal_8hpp__incl.svg @@ -4,49 +4,55 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanExternal.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanExternal.hpp - + Node2 - - -volk.h + + +volk.h - + Node1->Node2 - - + + + + + - + Node3 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanExternal_8hpp_source.html b/abcg/doc/html/abcgVulkanExternal_8hpp_source.html index fc26fa237..99fe9e2bf 100644 --- a/abcg/doc/html/abcgVulkanExternal_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanExternal_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +

@@ -93,43 +99,49 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanExternal.hpp
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_VULKAN_EXTERNAL_HPP_
-
15 #define ABCG_VULKAN_EXTERNAL_HPP_
-
16 
-
17 #include <volk.h>
-
18 
-
19 // Required for Vulkan-Hpp to work with Volk with a static dispatch
-
20 #undef VK_NO_PROTOTYPES
-
21 
-
22 // Enable designated initializers in Vulkan-Hpp
-
23 #define VULKAN_HPP_NO_CONSTRUCTORS
-
24 
-
25 #include <vulkan/vulkan.hpp>
-
26 
-
27 #if !defined(NDEBUG)
-
28 // When defined, enable validation layer and debug reporting
-
29 #define ABCG_VULKAN_DEBUG_REPORT
-
30 #endif
-
31 
-
32 #endif
+Go to the documentation of this file.
1
+
14#ifndef ABCG_VULKAN_EXTERNAL_HPP_
+
15#define ABCG_VULKAN_EXTERNAL_HPP_
+
16
+
17#include <volk.h>
+
18
+
19// Required for Vulkan-Hpp to work with Volk with a static dispatch
+
20#undef VK_NO_PROTOTYPES
+
21
+
22// Enable designated initializers in Vulkan-Hpp
+
23#define VULKAN_HPP_NO_CONSTRUCTORS
+
24
+
25#include <vulkan/vulkan.hpp>
+
26
+
27#if !defined(NDEBUG)
+
28// When defined, enable validation layer and debug reporting
+
29#define ABCG_VULKAN_DEBUG_REPORT
+
30#endif
+
31
+
32#endif
diff --git a/abcg/doc/html/abcgVulkanImage_8cpp.html b/abcg/doc/html/abcgVulkanImage_8cpp.html index f21f36ad0..96cec2967 100644 --- a/abcg/doc/html/abcgVulkanImage_8cpp.html +++ b/abcg/doc/html/abcgVulkanImage_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanImage.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanImage.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanImage.cpp File Reference
@@ -116,7 +123,7 @@
Include dependency graph for abcgVulkanImage.cpp:
-
+

Detailed Description

Definition of abcg::VulkanImage.

@@ -128,7 +135,7 @@ diff --git a/abcg/doc/html/abcgVulkanImage_8cpp__incl.map b/abcg/doc/html/abcgVulkanImage_8cpp__incl.map index d524c8459..9e8a9188f 100644 --- a/abcg/doc/html/abcgVulkanImage_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanImage_8cpp__incl.map @@ -1,22 +1,44 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanImage_8cpp__incl.md5 index 9c511ddb5..9a8aeb1ca 100644 --- a/abcg/doc/html/abcgVulkanImage_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanImage_8cpp__incl.md5 @@ -1 +1 @@ -d47379dad2e758a5324f424be75a4cb2 \ No newline at end of file +5363187685fa2313ad631635191bb2eb \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanImage_8cpp__incl.svg b/abcg/doc/html/abcgVulkanImage_8cpp__incl.svg index b3ce541b9..7d6b5bb33 100644 --- a/abcg/doc/html/abcgVulkanImage_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanImage_8cpp__incl.svg @@ -4,322 +4,388 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanImage.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node2 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node1->Node2 - - + + + + + - + Node12 - - -abcgVulkanBuffer.hpp + + +abcgVulkanBuffer.hpp - + Node1->Node12 - - + + + + + - + Node13 - - -SDL_image.h + + +SDL_image.h - + Node1->Node13 - - + + + + + - + Node14 - - -cppitertools/itertools.hpp + + +cppitertools/itertools.hpp - + Node1->Node14 - - + + + + + - + Node15 - - -fmt/core.h + + +fmt/core.h - + Node1->Node15 - - + + + + + - + Node16 - - -gsl/gsl + + +gsl/gsl - + Node1->Node16 - - + + + + + - + Node17 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node17 - - + + + + + - + Node3 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node2->Node3 - - + + + + + - + Node11 - - -gsl/pointers + + +gsl/pointers - + Node2->Node11 - - + + + + + - + Node4 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node3->Node4 - - + + + + + - + Node10 - - -functional + + +functional - + Node3->Node10 - - + + + + + - + Node5 - - -optional + + +optional - + Node4->Node5 - - + + + + + - + Node6 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node4->Node6 - - + + + + + - + Node9 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node4->Node9 - - + + + + + - + Node7 - - -volk.h + + +volk.h - + Node6->Node7 - - + + + + + - + Node8 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node6->Node8 - - + + + + + - + Node9->Node6 - - + + + + + - + Node12->Node3 - - + + + + + - + Node12->Node11 - - + + + + + - + Node18 - - -source_location + + +source_location - + Node17->Node18 - - + + + + + - + Node19 - - -stdexcept + + +stdexcept - + Node17->Node19 - - + + + + + - + Node20 - - -string + + +string - + Node17->Node20 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8hpp.html b/abcg/doc/html/abcgVulkanImage_8hpp.html index 4e1b2e697..a9981b7a6 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp.html +++ b/abcg/doc/html/abcgVulkanImage_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp File Reference
@@ -114,17 +121,17 @@
Include dependency graph for abcgVulkanImage.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -133,9 +140,9 @@

+

Classes

struct  abcg::VulkanImageCreateInfo
 Creation info structure for abcg::VulkanImage. More...
 A class for representing a Vulkan image. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -150,7 +157,7 @@ diff --git a/abcg/doc/html/abcgVulkanImage_8hpp.js b/abcg/doc/html/abcgVulkanImage_8hpp.js new file mode 100644 index 000000000..0efb57d82 --- /dev/null +++ b/abcg/doc/html/abcgVulkanImage_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanImage_8hpp = +[ + [ "abcg::VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], + [ "abcg::VulkanImage", "classabcg_1_1VulkanImage.html", "classabcg_1_1VulkanImage" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.map index 892b47958..5d99ec2fe 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.map @@ -1,12 +1,24 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.md5 index 337e5ecdf..e3e7af03d 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.md5 @@ -1 +1 @@ -83e50836b690ab45539ad8a1d091d804 \ No newline at end of file +14048e50e22f6ffb8ef4b2094e9433e6 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.svg index 2c8b27f7e..81f265866 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanImage_8hpp__dep__incl.svg @@ -4,181 +4,217 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node1->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node1->Node5 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node5->Node6 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node5->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node5->Node9 - - + + + + + - + Node6->Node2 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node6->Node7 - - + + + + + - + Node9->Node2 - - + + + + + - + Node9->Node8 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node9->Node10 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__incl.map b/abcg/doc/html/abcgVulkanImage_8hpp__incl.map index 50f084ce3..3e8574ce6 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanImage_8hpp__incl.map @@ -1,12 +1,22 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanImage_8hpp__incl.md5 index b8ee8a903..553b7053d 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanImage_8hpp__incl.md5 @@ -1 +1 @@ -4822d8274ef40316f0295f76c32ed56c \ No newline at end of file +1db4de3df4fb2cbe25ce34f80083589d \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanImage_8hpp__incl.svg b/abcg/doc/html/abcgVulkanImage_8hpp__incl.svg index 9f1b30d28..c88998749 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanImage_8hpp__incl.svg @@ -4,160 +4,190 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node2 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node2 - - + + + + + - + Node10 - - -gsl/pointers + + +gsl/pointers - + Node1->Node10 - - + + + + + - + Node3 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node2->Node3 - - + + + + + - + Node9 - - -functional + + +functional - + Node2->Node9 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node3->Node5 - - + + + + + - + Node8 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node3->Node8 - - + + + + + - + Node6 - - -volk.h + + +volk.h - + Node5->Node6 - - + + + + + - + Node7 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node5->Node7 - - + + + + + - + Node8->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanImage_8hpp_source.html b/abcg/doc/html/abcgVulkanImage_8hpp_source.html index 2f49f19ff..3e52059d4 100644 --- a/abcg/doc/html/abcgVulkanImage_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanImage_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,98 +99,108 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanImage.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_IMAGE_HPP_
-
14 #define ABCG_VULKAN_IMAGE_HPP_
-
15 
-
16 #include "abcgVulkanDevice.hpp"
-
17 
-
18 #include <gsl/pointers>
-
19 
-
20 namespace abcg {
-
21 struct VulkanImageCreateInfo;
-
22 class VulkanImage;
-
23 } // namespace abcg
-
24 
- -
29  vk::ImageCreateInfo info{};
-
30  vk::MemoryPropertyFlags properties{};
-
31  vk::ImageViewCreateInfo viewInfo{};
-
32 };
-
33 
- -
41 public:
-
42  void create(VulkanDevice const &device, std::string_view path,
-
43  bool generateMipmaps = true);
-
44  void create(VulkanDevice const &device,
-
45  VulkanImageCreateInfo const &createInfo);
-
46  void destroy();
-
47 
-
48  explicit operator vk::Image const &() const noexcept;
-
49 
-
50  [[nodiscard]] vk::DeviceMemory const &getDeviceMemory() const noexcept;
-
51  [[nodiscard]] vk::ImageView const &getView() const noexcept;
-
52  [[nodiscard]] vk::DescriptorImageInfo const &
-
53  getDescriptorImageInfo() const noexcept;
-
54  [[nodiscard]] uint32_t getMipLevels() const noexcept;
-
55 
-
56 private:
-
57  [[nodiscard]] std::pair<vk::Image, vk::DeviceMemory>
-
58  createImage(VulkanDevice const &device, vk::ImageCreateInfo const &imageInfo,
-
59  vk::MemoryPropertyFlags properties) const;
-
60  void transitionImageLayout(VulkanDevice const &device,
-
61  vk::ImageLayout oldImageLayout,
-
62  vk::ImageLayout newImageLayout,
-
63  vk::ImageSubresourceRange subresourceRange = {
-
64  .aspectMask = vk::ImageAspectFlagBits::eColor,
-
65  .levelCount = 1,
-
66  .layerCount = 1}) const;
-
67 
-
68  static void createMipmaps(VulkanDevice const &device, vk::Image image,
-
69  vk::Format imageFormat, uint32_t texWidth,
-
70  uint32_t texHeight, uint32_t mipLevels);
-
71 
-
72  vk::Image m_image;
-
73  vk::DeviceMemory m_deviceMemory;
-
74  vk::ImageView m_imageView;
-
75  vk::Sampler m_sampler;
-
76  vk::DescriptorImageInfo m_descriptorImageInfo;
-
77  uint32_t m_mipLevels{1U};
-
78  vk::Device m_device;
-
79 };
-
80 
-
81 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_IMAGE_HPP_
+
14#define ABCG_VULKAN_IMAGE_HPP_
+
15
+
16#include "abcgVulkanDevice.hpp"
+
17
+
18#include <gsl/pointers>
+
19
+
20namespace abcg {
+
21struct VulkanImageCreateInfo;
+
22class VulkanImage;
+
23} // namespace abcg
+
24
+
+ +
29 vk::ImageCreateInfo info{};
+
30 vk::MemoryPropertyFlags properties{};
+
31 vk::ImageViewCreateInfo viewInfo{};
+
32};
+
+
33
+
+ +
41public:
+
42 void create(VulkanDevice const &device, std::string_view path,
+
43 bool generateMipmaps = true);
+
44 void create(VulkanDevice const &device,
+
45 VulkanImageCreateInfo const &createInfo);
+
46 void destroy();
+
47
+
48 explicit operator vk::Image const &() const noexcept;
+
49
+
50 [[nodiscard]] vk::DeviceMemory const &getDeviceMemory() const noexcept;
+
51 [[nodiscard]] vk::ImageView const &getView() const noexcept;
+
52 [[nodiscard]] vk::DescriptorImageInfo const &
+
53 getDescriptorImageInfo() const noexcept;
+
54 [[nodiscard]] uint32_t getMipLevels() const noexcept;
+
55
+
56private:
+
57 [[nodiscard]] std::pair<vk::Image, vk::DeviceMemory>
+
58 createImage(VulkanDevice const &device, vk::ImageCreateInfo const &imageInfo,
+
59 vk::MemoryPropertyFlags properties) const;
+
60 void transitionImageLayout(VulkanDevice const &device,
+
61 vk::ImageLayout oldImageLayout,
+
62 vk::ImageLayout newImageLayout,
+
63 vk::ImageSubresourceRange subresourceRange = {
+
64 .aspectMask = vk::ImageAspectFlagBits::eColor,
+
65 .levelCount = 1,
+
66 .layerCount = 1}) const;
+
67
+
68 static void createMipmaps(VulkanDevice const &device, vk::Image image,
+
69 vk::Format imageFormat, uint32_t texWidth,
+
70 uint32_t texHeight, uint32_t mipLevels);
+
71
+
72 vk::Image m_image;
+
73 vk::DeviceMemory m_deviceMemory;
+
74 vk::ImageView m_imageView;
+
75 vk::Sampler m_sampler;
+
76 vk::DescriptorImageInfo m_descriptorImageInfo;
+
77 uint32_t m_mipLevels{1U};
+
78 vk::Device m_device;
+
79};
+
+
80
+
81#endif
Header file of abcg::VulkanDevice.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
A class for representing a Vulkan image.
Definition: abcgVulkanImage.hpp:40
-
vk::DeviceMemory const & getDeviceMemory() const noexcept
Returns the opaque handle to the device memory object associated with this image.
Definition: abcgVulkanImage.cpp:206
-
uint32_t getMipLevels() const noexcept
Returns the number of mipmap levels generated for this image.
Definition: abcgVulkanImage.cpp:240
-
vk::DescriptorImageInfo const & getDescriptorImageInfo() const noexcept
Returns the descriptor image information associated with this image.
Definition: abcgVulkanImage.cpp:226
-
void create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)
Definition: abcgVulkanImage.cpp:21
-
vk::ImageView const & getView() const noexcept
Returns the opaque handle to the image view object associated with this image.
Definition: abcgVulkanImage.cpp:216
-
void destroy()
Definition: abcgVulkanImage.cpp:178
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Creation info structure for abcg::VulkanImage.
Definition: abcgVulkanImage.hpp:28
-
vk::ImageCreateInfo info
Definition: abcgVulkanImage.hpp:29
-
vk::ImageViewCreateInfo viewInfo
Definition: abcgVulkanImage.hpp:31
-
vk::MemoryPropertyFlags properties
Definition: abcgVulkanImage.hpp:30
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
A class for representing a Vulkan image.
Definition abcgVulkanImage.hpp:40
+
vk::DeviceMemory const & getDeviceMemory() const noexcept
Returns the opaque handle to the device memory object associated with this image.
Definition abcgVulkanImage.cpp:206
+
uint32_t getMipLevels() const noexcept
Returns the number of mipmap levels generated for this image.
Definition abcgVulkanImage.cpp:240
+
vk::DescriptorImageInfo const & getDescriptorImageInfo() const noexcept
Returns the descriptor image information associated with this image.
Definition abcgVulkanImage.cpp:226
+
void create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)
Definition abcgVulkanImage.cpp:21
+
vk::ImageView const & getView() const noexcept
Returns the opaque handle to the image view object associated with this image.
Definition abcgVulkanImage.cpp:216
+
void destroy()
Definition abcgVulkanImage.cpp:178
+
Root namespace.
Definition abcgApplication.hpp:23
+
Creation info structure for abcg::VulkanImage.
Definition abcgVulkanImage.hpp:28
+
vk::ImageCreateInfo info
Definition abcgVulkanImage.hpp:29
+
vk::ImageViewCreateInfo viewInfo
Definition abcgVulkanImage.hpp:31
+
vk::MemoryPropertyFlags properties
Definition abcgVulkanImage.hpp:30
diff --git a/abcg/doc/html/abcgVulkanInstance_8cpp.html b/abcg/doc/html/abcgVulkanInstance_8cpp.html index 6b0d259b3..64e34fe80 100644 --- a/abcg/doc/html/abcgVulkanInstance_8cpp.html +++ b/abcg/doc/html/abcgVulkanInstance_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanInstance.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.cpp File Reference
@@ -114,7 +121,7 @@
Include dependency graph for abcgVulkanInstance.cpp:
-
+

Detailed Description

Definition of abcg::VulkanInstance.

@@ -126,7 +133,7 @@ diff --git a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.map b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.map index 80365bebc..5fac65bad 100644 --- a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.map @@ -1,34 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.md5 index c4d7db399..987b405d8 100644 --- a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.md5 @@ -1 +1 @@ -d2a6aa560d2cf5f326692ca47e415e86 \ No newline at end of file +080e16779adce1bc48e653a399925f30 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.svg b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.svg index 83a40b0c0..8194fcaa3 100644 --- a/abcg/doc/html/abcgVulkanInstance_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanInstance_8cpp__incl.svg @@ -4,634 +4,802 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanInstance.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -span + + +span - + Node1->Node6 - - + + + + + - + Node7 - - -abcgApplication.hpp + + +abcgApplication.hpp - + Node1->Node7 - - + + + + + - + Node9 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node9 - - + + + + + - + Node12 - - -abcgVulkan.hpp + + +abcgVulkan.hpp - + Node1->Node12 - - + + + + + - + Node3 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -volk.h + + +volk.h - + Node3->Node4 - - + + + + + - + Node5 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node3->Node5 - - + + + + + - + Node8 - - -string + + +string - + Node7->Node8 - - + + + + + - + Node9->Node8 - - + + + + + - + Node10 - - -source_location + + +source_location - + Node9->Node10 - - + + + + + - + Node11 - - -stdexcept + + +stdexcept - + Node9->Node11 - - + + + + + - + Node13 - - -abcg.hpp + + +abcg.hpp - + Node12->Node13 - - + + + + + - + Node21 - - -abcgVulkanBuffer.hpp + + +abcgVulkanBuffer.hpp - + Node12->Node21 - - + + + + + - + Node26 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node12->Node26 - - + + + + + - + Node27 - - -abcgVulkanPipeline.hpp + + +abcgVulkanPipeline.hpp - + Node12->Node27 - - + + + + + - + Node28 - - -abcgVulkanShader.hpp + + +abcgVulkanShader.hpp - + Node12->Node28 - - + + + + + - + Node32 - - -abcgVulkanWindow.hpp + + +abcgVulkanWindow.hpp - + Node12->Node32 - - + + + + + - + Node13->Node7 - - + + + + + - + Node13->Node9 - - + + + + + - + Node14 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node13->Node14 - - + + + + + - + Node15 - - -abcgTrackball.hpp + + +abcgTrackball.hpp - + Node13->Node15 - - + + + + + - + Node18 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node13->Node18 - - + + + + + - + Node20 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node13->Node20 - - + + + + + - + Node15->Node14 - - + + + + + - + Node16 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node15->Node16 - - + + + + + - + Node17 - - -chrono + + +chrono - + Node16->Node17 - - + + + + + - + Node18->Node8 - - + + + + + - + Node19 - - -functional + + +functional - + Node18->Node19 - - + + + + + - + Node20->Node8 - - + + + + + - + Node20->Node14 - - + + + + + - + Node20->Node16 - - + + + + + - + Node22 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node21->Node22 - - + + + + + - + Node25 - - -gsl/pointers + + +gsl/pointers - + Node21->Node25 - - + + + + + - + Node22->Node19 - - + + + + + - + Node23 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node22->Node23 - - + + + + + - + Node23->Node2 - - + + + + + - + Node23->Node3 - - + + + + + - + Node24 - - -optional + + +optional - + Node23->Node24 - - + + + + + - + Node26->Node22 - - + + + + + - + Node26->Node25 - - + + + + + - + Node27->Node28 - - + + + + + - + Node30 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node27->Node30 - - + + + + + - + Node28->Node22 - - + + + + + - + Node29 - - -abcgShader.hpp + + +abcgShader.hpp - + Node28->Node29 - - + + + + + - + Node29->Node8 - - + + + + + - + Node29->Node24 - - + + + + + - + Node30->Node19 - - + + + + + - + Node30->Node22 - - + + + + + - + Node30->Node26 - - + + + + + - + Node31 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node30->Node31 - - + + + + + - + Node32->Node2 - - + + + + + - + Node32->Node20 - - + + + + + - + Node32->Node22 - - + + + + + - + Node32->Node23 - - + + + + + - + Node32->Node30 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp.html b/abcg/doc/html/abcgVulkanInstance_8hpp.html index a2a5c733c..da3daedd9 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp.html +++ b/abcg/doc/html/abcgVulkanInstance_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp File Reference
@@ -113,25 +120,25 @@
Include dependency graph for abcgVulkanInstance.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::VulkanInstance
 A class for representing a Vulkan instance. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -146,7 +153,7 @@ diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp.js b/abcg/doc/html/abcgVulkanInstance_8hpp.js new file mode 100644 index 000000000..060c05d8e --- /dev/null +++ b/abcg/doc/html/abcgVulkanInstance_8hpp.js @@ -0,0 +1,4 @@ +var abcgVulkanInstance_8hpp = +[ + [ "abcg::VulkanInstance", "classabcg_1_1VulkanInstance.html", "classabcg_1_1VulkanInstance" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.map index e8a9052c5..e1dd87141 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.map @@ -1,21 +1,55 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.md5 index 26e2439ab..4f8b16806 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.md5 @@ -1 +1 @@ -3e5151fd42c84980842eb98bb4d38423 \ No newline at end of file +1c971be415f996850554f5f28688330f \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.svg index e752cd997..669e10466 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__dep__incl.svg @@ -4,403 +4,505 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.cpp - + Node1->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.hpp - + Node1->Node4 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node1->Node16 - - + + + + + - + Node17 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node17 - - + + + + + - + Node4->Node3 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.hpp - + Node4->Node5 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node4->Node15 - - + + + + + - + Node4->Node16 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node5->Node6 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.cpp - + Node5->Node10 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node5->Node11 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node5->Node12 - - + + + + + - + Node5->Node15 - - + + + + + - + Node5->Node16 - - + + + + + - + Node18 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node5->Node18 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node6->Node7 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node6->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node6->Node9 - - + + + + + - + Node7->Node2 - - + + + + + - + Node11->Node7 - - + + + + + - + Node11->Node9 - - + + + + + - + Node11->Node12 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node12->Node13 - - + + + + + - + Node12->Node15 - - + + + + + - + Node12->Node16 - - + + + + + - + Node13->Node7 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node13->Node14 - - + + + + + - + Node16->Node7 - - + + + + + - + Node16->Node15 - - + + + + + - + Node16->Node17 - - + + + + + - + Node18->Node7 - - + + + + + - + Node18->Node13 - - + + + + + - + Node19 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node18->Node19 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.map b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.map index 2967e531a..4011696f5 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.md5 index fe56ed3f0..df43ed941 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.md5 @@ -1 +1 @@ -ce7162088f9a74f4bad8d578572b3cec \ No newline at end of file +68b7aaa99121e02bfc166773fc1ad62c \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.svg b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.svg index cff8103f9..6866b184f 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanInstance_8hpp__incl.svg @@ -4,64 +4,73 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.hpp - + Node2 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -volk.h + + +volk.h - + Node2->Node3 - - + + + + + - + Node4 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node2->Node4 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanInstance_8hpp_source.html b/abcg/doc/html/abcgVulkanInstance_8hpp_source.html index 878a68114..00825fc99 100644 --- a/abcg/doc/html/abcgVulkanInstance_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanInstance_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,56 +99,64 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanInstance.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_INSTANCE_HPP_
-
14 #define ABCG_VULKAN_INSTANCE_HPP_
-
15 
-
16 #include "abcgVulkanExternal.hpp"
-
17 
-
18 namespace abcg {
-
19 class VulkanInstance;
-
20 } // namespace abcg
-
21 
- -
26 public:
-
27  void create(std::vector<char const *> const &layers = {},
-
28  std::vector<char const *> const &extensions = {},
-
29  std::string_view applicationName = {});
-
30  void destroy();
-
31 
-
32  explicit operator vk::Instance const &() const noexcept;
-
33 
-
34 private:
-
35  vk::Instance m_instance;
-
36 
-
37 #if defined(ABCG_VULKAN_DEBUG_REPORT)
-
38  vk::DebugUtilsMessengerEXT m_debugMessenger{};
-
39 #endif
-
40 };
-
41 
-
42 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_INSTANCE_HPP_
+
14#define ABCG_VULKAN_INSTANCE_HPP_
+
15
+ +
17
+
18namespace abcg {
+
19class VulkanInstance;
+
20} // namespace abcg
+
21
+
+ +
26public:
+
27 void create(std::vector<char const *> const &layers = {},
+
28 std::vector<char const *> const &extensions = {},
+
29 std::string_view applicationName = {});
+
30 void destroy();
+
31
+
32 explicit operator vk::Instance const &() const noexcept;
+
33
+
34private:
+
35 vk::Instance m_instance;
+
36
+
37#if defined(ABCG_VULKAN_DEBUG_REPORT)
+
38 vk::DebugUtilsMessengerEXT m_debugMessenger{};
+
39#endif
+
40};
+
+
41
+
42#endif
Header file for including Vulkan-related dependencies.
-
A class for representing a Vulkan instance.
Definition: abcgVulkanInstance.hpp:25
-
void destroy()
Definition: abcgVulkanInstance.cpp:201
-
void create(std::vector< char const * > const &layers={}, std::vector< char const * > const &extensions={}, std::string_view applicationName={})
Definition: abcgVulkanInstance.cpp:140
-
Root namespace.
Definition: abcgApplication.hpp:23
+
A class for representing a Vulkan instance.
Definition abcgVulkanInstance.hpp:25
+
void destroy()
Definition abcgVulkanInstance.cpp:201
+
void create(std::vector< char const * > const &layers={}, std::vector< char const * > const &extensions={}, std::string_view applicationName={})
Definition abcgVulkanInstance.cpp:140
+
Root namespace.
Definition abcgApplication.hpp:23
diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp.html b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp.html index d24084492..fadb13ea0 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp.html +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.cpp File Reference
@@ -116,7 +123,7 @@
Include dependency graph for abcgVulkanPhysicalDevice.cpp:
-
+

Detailed Description

Definition of abcg::VulkanPhysicalDevice.

@@ -128,7 +135,7 @@ diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.map b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.map index 6ec82ffa0..f9985f91c 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.map @@ -1,17 +1,33 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.md5 index f573cb618..961a8b774 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.md5 @@ -1 +1 @@ -85aabdca84001c5c9b3b364b0ec9a8ac \ No newline at end of file +e89732855627c39593479ab19a7476db \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.svg b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.svg index 3d4e7a7fc..12d0cbb54 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8cpp__incl.svg @@ -4,241 +4,289 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.cpp - + Node2 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node1->Node7 - - + + + + + - + Node8 - - -cppitertools/itertools.hpp + + +cppitertools/itertools.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -gsl/gsl + + +gsl/gsl - + Node1->Node9 - - + + + + + - + Node10 - - -set + + +set - + Node1->Node10 - - + + + + + - + Node11 - - -span + + +span - + Node1->Node11 - - + + + + + - + Node12 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node12 - - + + + + + - + Node3 - - -optional + + +optional - + Node2->Node3 - - + + + + + - + Node4 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node2->Node4 - - + + + + + - + Node2->Node7 - - + + + + + - + Node5 - - -volk.h + + +volk.h - + Node4->Node5 - - + + + + + - + Node6 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node4->Node6 - - + + + + + - + Node7->Node4 - - + + + + + - + Node13 - - -source_location + + +source_location - + Node12->Node13 - - + + + + + - + Node14 - - -stdexcept + + +stdexcept - + Node12->Node14 - - + + + + + - + Node15 - - -string + + +string - + Node12->Node15 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.html b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.html index cbfa45b42..26ad1d5ff 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.html +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp File Reference
@@ -115,17 +122,17 @@
Include dependency graph for abcgVulkanPhysicalDevice.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -134,9 +141,9 @@

+

Classes

struct  abcg::VulkanQueuesFamilies
 Supported queues families. More...
 A class for representing a Vulkan physical device. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -151,7 +158,7 @@ diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.js b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.js new file mode 100644 index 000000000..f308180ab --- /dev/null +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanPhysicalDevice_8hpp = +[ + [ "abcg::VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], + [ "abcg::VulkanPhysicalDevice", "classabcg_1_1VulkanPhysicalDevice.html", "classabcg_1_1VulkanPhysicalDevice" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.map index 5956bbf20..b216f3247 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.map @@ -1,20 +1,49 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.md5 index cb799ce7b..f479d67cb 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.md5 @@ -1 +1 @@ -713e5a36c040c8f9d9d86d57aefc8c30 \ No newline at end of file +c795aa5847b5eaa049a2dca4d8a5af76 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.svg index a07ef5884..07061cb15 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__dep__incl.svg @@ -4,363 +4,450 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.hpp - + Node1->Node2 - - + + + + + - + Node13 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node1->Node13 - - + + + + + - + Node14 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node1->Node14 - - + + + + + - + Node18 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.cpp - + Node1->Node18 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.hpp - + Node2->Node3 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanDevice.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanDevice.cpp - + Node2->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.hpp - + Node2->Node9 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node2->Node10 - - + + + + + - + Node2->Node13 - - + + + + + - + Node2->Node14 - - + + + + + - + Node16 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node2->Node16 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node3->Node4 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanBuffer.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanBuffer.cpp - + Node3->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanImage.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanImage.cpp - + Node3->Node7 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node4->Node5 - - + + + + + - + Node9->Node4 - - + + + + + - + Node9->Node7 - - + + + + + - + Node9->Node10 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node10->Node11 - - + + + + + - + Node10->Node13 - - + + + + + - + Node10->Node14 - - + + + + + - + Node11->Node4 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node11->Node12 - - + + + + + - + Node14->Node4 - - + + + + + - + Node14->Node13 - - + + + + + - + Node15 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node14->Node15 - - + + + + + - + Node16->Node4 - - + + + + + - + Node16->Node11 - - + + + + + - + Node17 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node16->Node17 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.map b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.map index 54b78ecc4..b398bbee2 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.map @@ -1,8 +1,14 @@ - - - - - - + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.md5 index b3dcbf419..39990948c 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.md5 @@ -1 +1 @@ -ac82b9cea666503648c88847cd58cb78 \ No newline at end of file +3ef2cb6a222bae6d2381e7691a216cad \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.svg b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.svg index ee9c5998d..0a09e866d 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp__incl.svg @@ -4,100 +4,118 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPhysicalDevice.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPhysicalDevice.hpp - + Node2 - - -optional + + +optional - + Node1->Node2 - - + + + + + - + Node3 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node1->Node3 - - + + + + + - + Node6 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node1->Node6 - - + + + + + - + Node4 - - -volk.h + + +volk.h - + Node3->Node4 - - + + + + + - + Node5 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node3->Node5 - - + + + + + - + Node6->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp_source.html b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp_source.html index 0f7c11168..38951ca13 100644 --- a/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanPhysicalDevice_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,108 +99,118 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanPhysicalDevice.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
-
14 #define ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
-
15 
-
16 #include <optional>
-
17 
-
18 #include "abcgVulkanExternal.hpp"
-
19 #include "abcgVulkanInstance.hpp"
-
20 
-
21 namespace abcg {
-
22 struct VulkanQueuesFamilies;
-
23 class VulkanPhysicalDevice;
-
24 class VulkanDevice;
-
25 class VulkanPipeline;
-
26 class VulkanSwapchain;
-
27 class VulkanWindow;
-
28 } // namespace abcg
-
29 
- -
34  std::optional<uint32_t> compute;
-
35  std::optional<uint32_t> graphics;
-
36  std::optional<uint32_t> present;
-
37  std::optional<uint32_t> transfer;
-
38 };
-
39 
- -
44 public:
-
45  void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface,
-
46  std::vector<char const *> const &extensions = {},
-
47  vk::SampleCountFlagBits sampleCount = vk::SampleCountFlagBits::e1,
-
48  bool useSeparateTransferQueue = false);
-
49  void destroy();
-
50 
-
51  explicit operator vk::PhysicalDevice const &() const noexcept;
-
52 
-
53  [[nodiscard]] std::optional<uint32_t>
-
54  findMemoryType(uint32_t memoryTypeBitsRequirement,
-
55  vk::MemoryPropertyFlags requiredProperties) const;
-
56  [[nodiscard]] VulkanInstance const &getInstance() const noexcept;
-
57  [[nodiscard]] VulkanQueuesFamilies const &getQueuesFamilies() const noexcept;
-
58  [[nodiscard]] vk::SurfaceKHR const &getSurfaceKHR() const noexcept;
-
59  [[nodiscard]] vk::SampleCountFlagBits getSampleCount() const noexcept;
-
60  [[nodiscard]] std::optional<vk::Format>
-
61  getFirstSupportedFormat(std::vector<vk::Format> const &candidates,
-
62  vk::ImageTiling tiling,
-
63  vk::FormatFeatureFlags features) const;
-
64 
-
65 private:
-
66  void checkQueueFamily(vk::QueueFamilyProperties const &properties,
-
67  uint32_t queueFamilyIndex,
-
68  bool useSeparateTransferQueue);
-
69  void findQueueFamilies(bool useSeparateTransferQueue);
-
70  [[nodiscard]] vk::SampleCountFlagBits getMaxUsableSampleCount();
-
71  [[nodiscard]] bool
-
72  isDeviceSuitable(std::vector<char const *> const &extensions,
-
73  bool useSeparateTransferQueue);
-
74  [[nodiscard]] std::vector<char const *>
-
75  checkExtensionsSupport(std::vector<char const *> const &extensions);
-
76 
-
77  vk::PhysicalDevice m_physicalDevice;
-
78  VulkanInstance m_instance;
-
79  vk::SurfaceKHR m_surfaceKHR;
-
80  vk::SampleCountFlagBits m_sampleCount{};
-
81  VulkanQueuesFamilies m_queuesFamilies;
-
82 };
-
83 
-
84 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
+
14#define ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
+
15
+
16#include <optional>
+
17
+ + +
20
+
21namespace abcg {
+
22struct VulkanQueuesFamilies;
+
23class VulkanPhysicalDevice;
+
24class VulkanDevice;
+
25class VulkanPipeline;
+
26class VulkanSwapchain;
+
27class VulkanWindow;
+
28} // namespace abcg
+
29
+
+ +
34 std::optional<uint32_t> compute;
+
35 std::optional<uint32_t> graphics;
+
36 std::optional<uint32_t> present;
+
37 std::optional<uint32_t> transfer;
+
38};
+
+
39
+
+ +
44public:
+
45 void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface,
+
46 std::vector<char const *> const &extensions = {},
+
47 vk::SampleCountFlagBits sampleCount = vk::SampleCountFlagBits::e1,
+
48 bool useSeparateTransferQueue = false);
+
49 void destroy();
+
50
+
51 explicit operator vk::PhysicalDevice const &() const noexcept;
+
52
+
53 [[nodiscard]] std::optional<uint32_t>
+
54 findMemoryType(uint32_t memoryTypeBitsRequirement,
+
55 vk::MemoryPropertyFlags requiredProperties) const;
+
56 [[nodiscard]] VulkanInstance const &getInstance() const noexcept;
+
57 [[nodiscard]] VulkanQueuesFamilies const &getQueuesFamilies() const noexcept;
+
58 [[nodiscard]] vk::SurfaceKHR const &getSurfaceKHR() const noexcept;
+
59 [[nodiscard]] vk::SampleCountFlagBits getSampleCount() const noexcept;
+
60 [[nodiscard]] std::optional<vk::Format>
+
61 getFirstSupportedFormat(std::vector<vk::Format> const &candidates,
+
62 vk::ImageTiling tiling,
+
63 vk::FormatFeatureFlags features) const;
+
64
+
65private:
+
66 void checkQueueFamily(vk::QueueFamilyProperties const &properties,
+
67 uint32_t queueFamilyIndex,
+
68 bool useSeparateTransferQueue);
+
69 void findQueueFamilies(bool useSeparateTransferQueue);
+
70 [[nodiscard]] vk::SampleCountFlagBits getMaxUsableSampleCount();
+
71 [[nodiscard]] bool
+
72 isDeviceSuitable(std::vector<char const *> const &extensions,
+
73 bool useSeparateTransferQueue);
+
74 [[nodiscard]] std::vector<char const *>
+
75 checkExtensionsSupport(std::vector<char const *> const &extensions);
+
76
+
77 vk::PhysicalDevice m_physicalDevice;
+
78 VulkanInstance m_instance;
+
79 vk::SurfaceKHR m_surfaceKHR;
+
80 vk::SampleCountFlagBits m_sampleCount{};
+
81 VulkanQueuesFamilies m_queuesFamilies;
+
82};
+
+
83
+
84#endif
Header file for including Vulkan-related dependencies.
Header file of abcg::VulkanInstance.
-
A class for representing a Vulkan instance.
Definition: abcgVulkanInstance.hpp:25
-
A class for representing a Vulkan physical device.
Definition: abcgVulkanPhysicalDevice.hpp:43
-
VulkanInstance const & getInstance() const noexcept
Access to abcg::VulkanInstance.
Definition: abcgVulkanPhysicalDevice.cpp:92
-
std::optional< uint32_t > findMemoryType(uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties) const
Finds a type of memory that meets the given requirements.
Definition: abcgVulkanPhysicalDevice.cpp:58
-
vk::SurfaceKHR const & getSurfaceKHR() const noexcept
Access to the surface.
Definition: abcgVulkanPhysicalDevice.cpp:112
-
std::optional< vk::Format > getFirstSupportedFormat(std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) const
Definition: abcgVulkanPhysicalDevice.cpp:187
-
void destroy()
Definition: abcgVulkanPhysicalDevice.cpp:46
-
vk::SampleCountFlagBits getSampleCount() const noexcept
Access to number of samples.
Definition: abcgVulkanPhysicalDevice.cpp:122
-
void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface, std::vector< char const * > const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)
Definition: abcgVulkanPhysicalDevice.cpp:21
-
VulkanQueuesFamilies const & getQueuesFamilies() const noexcept
Access to queues families.
Definition: abcgVulkanPhysicalDevice.cpp:102
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Supported queues families.
Definition: abcgVulkanPhysicalDevice.hpp:33
-
std::optional< uint32_t > compute
Definition: abcgVulkanPhysicalDevice.hpp:34
-
std::optional< uint32_t > transfer
Definition: abcgVulkanPhysicalDevice.hpp:37
-
std::optional< uint32_t > present
Definition: abcgVulkanPhysicalDevice.hpp:36
-
std::optional< uint32_t > graphics
Definition: abcgVulkanPhysicalDevice.hpp:35
+
A class for representing a Vulkan instance.
Definition abcgVulkanInstance.hpp:25
+
A class for representing a Vulkan physical device.
Definition abcgVulkanPhysicalDevice.hpp:43
+
VulkanInstance const & getInstance() const noexcept
Access to abcg::VulkanInstance.
Definition abcgVulkanPhysicalDevice.cpp:92
+
std::optional< uint32_t > findMemoryType(uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties) const
Finds a type of memory that meets the given requirements.
Definition abcgVulkanPhysicalDevice.cpp:58
+
vk::SurfaceKHR const & getSurfaceKHR() const noexcept
Access to the surface.
Definition abcgVulkanPhysicalDevice.cpp:112
+
std::optional< vk::Format > getFirstSupportedFormat(std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) const
Definition abcgVulkanPhysicalDevice.cpp:187
+
void destroy()
Definition abcgVulkanPhysicalDevice.cpp:46
+
vk::SampleCountFlagBits getSampleCount() const noexcept
Access to number of samples.
Definition abcgVulkanPhysicalDevice.cpp:122
+
void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface, std::vector< char const * > const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)
Definition abcgVulkanPhysicalDevice.cpp:21
+
VulkanQueuesFamilies const & getQueuesFamilies() const noexcept
Access to queues families.
Definition abcgVulkanPhysicalDevice.cpp:102
+
Root namespace.
Definition abcgApplication.hpp:23
+
Supported queues families.
Definition abcgVulkanPhysicalDevice.hpp:33
+
std::optional< uint32_t > compute
Definition abcgVulkanPhysicalDevice.hpp:34
+
std::optional< uint32_t > transfer
Definition abcgVulkanPhysicalDevice.hpp:37
+
std::optional< uint32_t > present
Definition abcgVulkanPhysicalDevice.hpp:36
+
std::optional< uint32_t > graphics
Definition abcgVulkanPhysicalDevice.hpp:35
diff --git a/abcg/doc/html/abcgVulkanPipeline_8cpp.html b/abcg/doc/html/abcgVulkanPipeline_8cpp.html index e1c78b299..7db19edea 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8cpp.html +++ b/abcg/doc/html/abcgVulkanPipeline_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.cpp File Reference
@@ -111,7 +118,7 @@
Include dependency graph for abcgVulkanPipeline.cpp:
-
+

Detailed Description

Definition of abcg::VulkanPipeline.

@@ -123,7 +130,7 @@ diff --git a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.map b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.map index 6c072c1f3..9ce6154d9 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.map @@ -1,20 +1,42 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.md5 index 076b14388..30991aaec 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.md5 @@ -1 +1 @@ -d04c7d5bf9e5906d81e9ba3ce43a74d1 \ No newline at end of file +4fefd29b566408702870c675eab4c17a \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.svg b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.svg index 693ca4c4f..633ddf492 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanPipeline_8cpp__incl.svg @@ -4,304 +4,370 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node2 - - -abcgVulkanPipeline.hpp + + +abcgVulkanPipeline.hpp - + Node1->Node2 - - + + + + + - + Node18 - - -gsl/gsl + + +gsl/gsl - + Node1->Node18 - - + + + + + - + Node3 - - -abcgVulkanShader.hpp + + +abcgVulkanShader.hpp - + Node2->Node3 - - + + + + + - + Node14 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node2->Node14 - - + + + + + - + Node4 - - -abcgShader.hpp + + +abcgShader.hpp - + Node3->Node4 - - + + + + + - + Node7 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node3->Node7 - - + + + + + - + Node5 - - -optional + + +optional - + Node4->Node5 - - + + + + + - + Node6 - - -string + + +string - + Node4->Node6 - - + + + + + - + Node8 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node7->Node8 - - + + + + + - + Node13 - - -functional + + +functional - + Node7->Node13 - - + + + + + - + Node8->Node5 - - + + + + + - + Node9 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node8->Node9 - - + + + + + - + Node12 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node8->Node12 - - + + + + + - + Node10 - - -volk.h + + +volk.h - + Node9->Node10 - - + + + + + - + Node11 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node9->Node11 - - + + + + + - + Node12->Node9 - - + + + + + - + Node14->Node7 - - + + + + + - + Node14->Node13 - - + + + + + - + Node15 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node14->Node15 - - + + + + + - + Node16 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node14->Node16 - - + + + + + - + Node16->Node7 - - + + + + + - + Node17 - - -gsl/pointers + + +gsl/pointers - + Node16->Node17 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp.html b/abcg/doc/html/abcgVulkanPipeline_8hpp.html index 1938e1a8a..491f71337 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp.html +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp File Reference
@@ -114,17 +121,17 @@
Include dependency graph for abcgVulkanPipeline.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -133,9 +140,9 @@

+

Classes

struct  abcg::VulkanPipelineCreateInfo
 Creation info structure for abcg::VulkanPipeline::create. More...
 A class for representing a Vulkan pipeline. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -150,7 +157,7 @@ diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp.js b/abcg/doc/html/abcgVulkanPipeline_8hpp.js new file mode 100644 index 000000000..2aab6d270 --- /dev/null +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanPipeline_8hpp = +[ + [ "abcg::VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], + [ "abcg::VulkanPipeline", "classabcg_1_1VulkanPipeline.html", "classabcg_1_1VulkanPipeline" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.map index 0fc235b15..f5e51cff2 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.md5 index 49e51883b..ed4def0d0 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.md5 @@ -1 +1 @@ -00cf98f95e0e1b74e385e057c78c5fdf \ No newline at end of file +c44c43e6b27750a11444fc67dc9a38f9 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.svg index 8d5f7e087..e08e16a60 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__dep__incl.svg @@ -4,67 +4,76 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node1->Node4 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.map b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.map index 2ee90d9f3..fe340ec21 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.map @@ -1,18 +1,38 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.md5 index 7a30bdbce..00dffc7a1 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.md5 @@ -1 +1 @@ -3288ad319dc3dd593a850dee1ac3fff1 \ No newline at end of file +f1325fa4f43459f8b640feeb8a12cb1a \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.svg b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.svg index 1841a2659..8e13bd71a 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp__incl.svg @@ -4,274 +4,334 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node2 - - -abcgVulkanShader.hpp + + +abcgVulkanShader.hpp - + Node1->Node2 - - + + + + + - + Node13 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node1->Node13 - - + + + + + - + Node3 - - -abcgShader.hpp + + +abcgShader.hpp - + Node2->Node3 - - + + + + + - + Node6 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node2->Node6 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -string + + +string - + Node3->Node5 - - + + + + + - + Node7 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node6->Node7 - - + + + + + - + Node12 - - -functional + + +functional - + Node6->Node12 - - + + + + + - + Node7->Node4 - - + + + + + - + Node8 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node7->Node8 - - + + + + + - + Node11 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node7->Node11 - - + + + + + - + Node9 - - -volk.h + + +volk.h - + Node8->Node9 - - + + + + + - + Node10 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node8->Node10 - - + + + + + - + Node11->Node8 - - + + + + + - + Node13->Node6 - - + + + + + - + Node13->Node12 - - + + + + + - + Node14 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node13->Node14 - - + + + + + - + Node15 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node13->Node15 - - + + + + + - + Node15->Node6 - - + + + + + - + Node16 - - -gsl/pointers + + +gsl/pointers - + Node15->Node16 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanPipeline_8hpp_source.html b/abcg/doc/html/abcgVulkanPipeline_8hpp_source.html index 08493166b..a7d251d72 100644 --- a/abcg/doc/html/abcgVulkanPipeline_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanPipeline_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,92 +99,102 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanPipeline.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_PIPELINE_HPP_
-
14 #define ABCG_VULKAN_PIPELINE_HPP_
-
15 
-
16 #include "abcgVulkanShader.hpp"
-
17 #include "abcgVulkanSwapchain.hpp"
-
18 
-
19 namespace abcg {
-
20 struct VulkanPipelineCreateInfo;
-
21 class VulkanPipeline;
-
22 } // namespace abcg
-
23 
- -
28  std::vector<abcg::VulkanShader> shaders{};
-
29  std::vector<vk::VertexInputBindingDescription> bindingDescriptions{};
-
30  std::vector<vk::VertexInputAttributeDescription> attributeDescriptions{};
-
31  vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState{};
-
32  std::optional<std::vector<vk::Viewport>> viewports{};
-
33  std::optional<std::vector<vk::Rect2D>> scissors{};
-
34  vk::PipelineRasterizationStateCreateInfo rasterizationState{};
-
35  std::optional<vk::PipelineMultisampleStateCreateInfo> multisampleState{};
-
36  std::optional<vk::PipelineDepthStencilStateCreateInfo> depthStencilState{};
-
37  std::optional<vk::PipelineColorBlendAttachmentState> colorBlendAttachment{};
-
38  std::optional<vk::PipelineColorBlendStateCreateInfo> colorBlendState{};
-
39  std::vector<vk::DynamicState> dynamicStates{};
-
40  vk::PipelineLayoutCreateInfo pipelineLayout{};
-
41  vk::PipelineCache pipelineCache{};
-
42 };
-
43 
- -
51 public:
-
52  void create(VulkanSwapchain const &swapchain,
-
53  VulkanPipelineCreateInfo const &createInfo);
-
54  void destroy();
-
55 
-
56  explicit operator vk::Pipeline const &() const noexcept;
-
57 
-
58  [[nodiscard]] vk::PipelineLayout const &getLayout() const noexcept;
-
59 
-
60 private:
-
61  vk::Pipeline m_pipeline;
-
62  vk::PipelineLayout m_pipelineLayout;
-
63  vk::Device m_device;
-
64 };
-
65 
-
66 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_PIPELINE_HPP_
+
14#define ABCG_VULKAN_PIPELINE_HPP_
+
15
+
16#include "abcgVulkanShader.hpp"
+ +
18
+
19namespace abcg {
+
20struct VulkanPipelineCreateInfo;
+
21class VulkanPipeline;
+
22} // namespace abcg
+
23
+
+ +
28 std::vector<abcg::VulkanShader> shaders{};
+
29 std::vector<vk::VertexInputBindingDescription> bindingDescriptions{};
+
30 std::vector<vk::VertexInputAttributeDescription> attributeDescriptions{};
+
31 vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState{};
+
32 std::optional<std::vector<vk::Viewport>> viewports{};
+
33 std::optional<std::vector<vk::Rect2D>> scissors{};
+
34 vk::PipelineRasterizationStateCreateInfo rasterizationState{};
+
35 std::optional<vk::PipelineMultisampleStateCreateInfo> multisampleState{};
+
36 std::optional<vk::PipelineDepthStencilStateCreateInfo> depthStencilState{};
+
37 std::optional<vk::PipelineColorBlendAttachmentState> colorBlendAttachment{};
+
38 std::optional<vk::PipelineColorBlendStateCreateInfo> colorBlendState{};
+
39 std::vector<vk::DynamicState> dynamicStates{};
+
40 vk::PipelineLayoutCreateInfo pipelineLayout{};
+
41 vk::PipelineCache pipelineCache{};
+
42};
+
+
43
+
+ +
51public:
+
52 void create(VulkanSwapchain const &swapchain,
+
53 VulkanPipelineCreateInfo const &createInfo);
+
54 void destroy();
+
55
+
56 explicit operator vk::Pipeline const &() const noexcept;
+
57
+
58 [[nodiscard]] vk::PipelineLayout const &getLayout() const noexcept;
+
59
+
60private:
+
61 vk::Pipeline m_pipeline;
+
62 vk::PipelineLayout m_pipelineLayout;
+
63 vk::Device m_device;
+
64};
+
+
65
+
66#endif
Declaration of helper functions for creating Vulkan shaders.
Header file of abcg::VulkanSwapchain.
-
A class for representing a Vulkan pipeline.
Definition: abcgVulkanPipeline.hpp:50
-
void destroy()
Definition: abcgVulkanPipeline.cpp:128
-
void create(VulkanSwapchain const &swapchain, VulkanPipelineCreateInfo const &createInfo)
Definition: abcgVulkanPipeline.cpp:15
-
vk::PipelineLayout const & getLayout() const noexcept
Access to vk::PipelineLayout.
Definition: abcgVulkanPipeline.cpp:150
-
A class for representing a Vulkan swapchain.
Definition: abcgVulkanSwapchain.hpp:50
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Creation info structure for abcg::VulkanPipeline::create.
Definition: abcgVulkanPipeline.hpp:27
-
std::optional< std::vector< vk::Rect2D > > scissors
Definition: abcgVulkanPipeline.hpp:33
-
std::vector< vk::VertexInputAttributeDescription > attributeDescriptions
Definition: abcgVulkanPipeline.hpp:30
-
vk::PipelineRasterizationStateCreateInfo rasterizationState
Definition: abcgVulkanPipeline.hpp:34
-
std::vector< abcg::VulkanShader > shaders
Definition: abcgVulkanPipeline.hpp:28
-
vk::PipelineCache pipelineCache
Definition: abcgVulkanPipeline.hpp:41
-
std::optional< vk::PipelineMultisampleStateCreateInfo > multisampleState
Definition: abcgVulkanPipeline.hpp:35
-
std::optional< vk::PipelineColorBlendStateCreateInfo > colorBlendState
Definition: abcgVulkanPipeline.hpp:38
-
std::optional< vk::PipelineDepthStencilStateCreateInfo > depthStencilState
Definition: abcgVulkanPipeline.hpp:36
-
std::optional< vk::PipelineColorBlendAttachmentState > colorBlendAttachment
Definition: abcgVulkanPipeline.hpp:37
-
vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState
Definition: abcgVulkanPipeline.hpp:31
-
std::vector< vk::VertexInputBindingDescription > bindingDescriptions
Definition: abcgVulkanPipeline.hpp:29
-
vk::PipelineLayoutCreateInfo pipelineLayout
Definition: abcgVulkanPipeline.hpp:40
-
std::vector< vk::DynamicState > dynamicStates
Definition: abcgVulkanPipeline.hpp:39
-
std::optional< std::vector< vk::Viewport > > viewports
Definition: abcgVulkanPipeline.hpp:32
+
A class for representing a Vulkan pipeline.
Definition abcgVulkanPipeline.hpp:50
+
void destroy()
Definition abcgVulkanPipeline.cpp:128
+
void create(VulkanSwapchain const &swapchain, VulkanPipelineCreateInfo const &createInfo)
Definition abcgVulkanPipeline.cpp:15
+
vk::PipelineLayout const & getLayout() const noexcept
Access to vk::PipelineLayout.
Definition abcgVulkanPipeline.cpp:150
+
A class for representing a Vulkan swapchain.
Definition abcgVulkanSwapchain.hpp:50
+
Root namespace.
Definition abcgApplication.hpp:23
+
Creation info structure for abcg::VulkanPipeline::create.
Definition abcgVulkanPipeline.hpp:27
+
std::optional< std::vector< vk::Rect2D > > scissors
Definition abcgVulkanPipeline.hpp:33
+
std::vector< vk::VertexInputAttributeDescription > attributeDescriptions
Definition abcgVulkanPipeline.hpp:30
+
vk::PipelineRasterizationStateCreateInfo rasterizationState
Definition abcgVulkanPipeline.hpp:34
+
std::vector< abcg::VulkanShader > shaders
Definition abcgVulkanPipeline.hpp:28
+
vk::PipelineCache pipelineCache
Definition abcgVulkanPipeline.hpp:41
+
std::optional< vk::PipelineMultisampleStateCreateInfo > multisampleState
Definition abcgVulkanPipeline.hpp:35
+
std::optional< vk::PipelineColorBlendStateCreateInfo > colorBlendState
Definition abcgVulkanPipeline.hpp:38
+
std::optional< vk::PipelineDepthStencilStateCreateInfo > depthStencilState
Definition abcgVulkanPipeline.hpp:36
+
std::optional< vk::PipelineColorBlendAttachmentState > colorBlendAttachment
Definition abcgVulkanPipeline.hpp:37
+
vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState
Definition abcgVulkanPipeline.hpp:31
+
std::vector< vk::VertexInputBindingDescription > bindingDescriptions
Definition abcgVulkanPipeline.hpp:29
+
vk::PipelineLayoutCreateInfo pipelineLayout
Definition abcgVulkanPipeline.hpp:40
+
std::vector< vk::DynamicState > dynamicStates
Definition abcgVulkanPipeline.hpp:39
+
std::optional< std::vector< vk::Viewport > > viewports
Definition abcgVulkanPipeline.hpp:32
diff --git a/abcg/doc/html/abcgVulkanShader_8cpp.html b/abcg/doc/html/abcgVulkanShader_8cpp.html index e0a8a6c56..11b54f4e0 100644 --- a/abcg/doc/html/abcgVulkanShader_8cpp.html +++ b/abcg/doc/html/abcgVulkanShader_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanShader.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,16 +94,22 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanShader.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanShader.cpp File Reference
@@ -118,27 +125,27 @@
Include dependency graph for abcgVulkanShader.cpp:
-
+
- - - + +

+

Functions

std::vector< uint32_t > GLSLtoSPV (abcg::ShaderSource shaderSource)
 
std::vector< uint32_t > GLSLtoSPV (abcg::ShaderSource shaderSource)
 

Detailed Description

Definition of helper functions for creating Vulkan shaders.

This file is part of ABCg (https://github.com/hbatagelo/abcg).

Function Documentation

- -

◆ GLSLtoSPV()

+ +

◆ GLSLtoSPV()

- + @@ -155,7 +162,7 @@

diff --git a/abcg/doc/html/abcgVulkanShader_8cpp.js b/abcg/doc/html/abcgVulkanShader_8cpp.js index b11cbfb48..697993e77 100644 --- a/abcg/doc/html/abcgVulkanShader_8cpp.js +++ b/abcg/doc/html/abcgVulkanShader_8cpp.js @@ -1,4 +1,4 @@ var abcgVulkanShader_8cpp = [ - [ "GLSLtoSPV", "abcgVulkanShader_8cpp.html#a690f9c3849ca028c431f9332c4df888a", null ] + [ "GLSLtoSPV", "abcgVulkanShader_8cpp.html#ac02bb467fef306447a8fa8fe8aed50b1", null ] ]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanShader_8cpp__incl.map b/abcg/doc/html/abcgVulkanShader_8cpp__incl.map index aa8602c2d..adbf1cc77 100644 --- a/abcg/doc/html/abcgVulkanShader_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanShader_8cpp__incl.map @@ -1,22 +1,44 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanShader_8cpp__incl.md5 index 5f604c593..faa96a0d9 100644 --- a/abcg/doc/html/abcgVulkanShader_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanShader_8cpp__incl.md5 @@ -1 +1 @@ -45f428129d114d605d55655309dcfae8 \ No newline at end of file +052b0887bbd6101b0d72075b843bf7b7 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanShader_8cpp__incl.svg b/abcg/doc/html/abcgVulkanShader_8cpp__incl.svg index 894a29d6b..d8af6ce90 100644 --- a/abcg/doc/html/abcgVulkanShader_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanShader_8cpp__incl.svg @@ -4,322 +4,388 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanShader.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node2 - - -abcgVulkanShader.hpp + + +abcgVulkanShader.hpp - + Node1->Node2 - - + + + + + - + Node13 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node13 - - + + + + + - + Node16 - - -glslang/SPIRV/GlslangToSpv.h + + +glslang/SPIRV/GlslangToSpv.h - + Node1->Node16 - - + + + + + - + Node17 - - -fmt/core.h + + +fmt/core.h - + Node1->Node17 - - + + + + + - + Node18 - - -gsl/gsl + + +gsl/gsl - + Node1->Node18 - - + + + + + - + Node19 - - -filesystem + + +filesystem - + Node1->Node19 - - + + + + + - + Node20 - - -fstream + + +fstream - + Node1->Node20 - - + + + + + - + Node3 - - -abcgShader.hpp + + +abcgShader.hpp - + Node2->Node3 - - + + + + + - + Node6 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node2->Node6 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -string + + +string - + Node3->Node5 - - + + + + + - + Node7 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node6->Node7 - - + + + + + - + Node12 - - -functional + + +functional - + Node6->Node12 - - + + + + + - + Node7->Node4 - - + + + + + - + Node8 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node7->Node8 - - + + + + + - + Node11 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node7->Node11 - - + + + + + - + Node9 - - -volk.h + + +volk.h - + Node8->Node9 - - + + + + + - + Node10 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node8->Node10 - - + + + + + - + Node11->Node8 - - + + + + + - + Node13->Node5 - - + + + + + - + Node14 - - -source_location + + +source_location - + Node13->Node14 - - + + + + + - + Node15 - - -stdexcept + + +stdexcept - + Node13->Node15 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8hpp.html b/abcg/doc/html/abcgVulkanShader_8hpp.html index a0eed6898..e71375657 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp.html +++ b/abcg/doc/html/abcgVulkanShader_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@

@@ -51,21 +51,22 @@
std::vector<uint32_t> GLSLtoSPV std::vector< uint32_t > GLSLtoSPV ( abcg::ShaderSource  shaderSource)
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp File Reference
@@ -114,25 +121,25 @@
Include dependency graph for abcgVulkanShader.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

-

+

Classes

class  abcg::VulkanShader
 A class for representing a Vulkan shader. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -146,7 +153,7 @@ diff --git a/abcg/doc/html/abcgVulkanShader_8hpp.js b/abcg/doc/html/abcgVulkanShader_8hpp.js new file mode 100644 index 000000000..d11a638c7 --- /dev/null +++ b/abcg/doc/html/abcgVulkanShader_8hpp.js @@ -0,0 +1,4 @@ +var abcgVulkanShader_8hpp = +[ + [ "abcg::VulkanShader", "classabcg_1_1VulkanShader.html", "classabcg_1_1VulkanShader" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.map index c83771bc3..d803f9b6c 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.map @@ -1,8 +1,14 @@ - - - - - - + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.md5 index b6b894262..3b6097d4e 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.md5 @@ -1 +1 @@ -b731d0c9c4e167c440f17c25d6758c32 \ No newline at end of file +048dd586a17dfeed617374b687b34a39 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.svg index b20e7fb4d..3542e7510 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanShader_8hpp__dep__incl.svg @@ -4,105 +4,123 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node1->Node4 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.cpp - + Node1->Node6 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + - + Node4->Node2 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__incl.map b/abcg/doc/html/abcgVulkanShader_8hpp__incl.map index 6b9c00bea..7b30160cf 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanShader_8hpp__incl.map @@ -1,13 +1,25 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanShader_8hpp__incl.md5 index 9bf7904f6..23579636d 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanShader_8hpp__incl.md5 @@ -1 +1 @@ -a0543ed0297765bcae667392b97f67c3 \ No newline at end of file +bd93adc51f96617863236bc9c31cb058 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanShader_8hpp__incl.svg b/abcg/doc/html/abcgVulkanShader_8hpp__incl.svg index 67ed51c23..6280b88c9 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanShader_8hpp__incl.svg @@ -4,181 +4,217 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanShader.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanShader.hpp - + Node2 - - -abcgShader.hpp + + +abcgShader.hpp - + Node1->Node2 - - + + + + + - + Node5 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node5 - - + + + + + - + Node3 - - -optional + + +optional - + Node2->Node3 - - + + + + + - + Node4 - - -string + + +string - + Node2->Node4 - - + + + + + - + Node6 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node5->Node6 - - + + + + + - + Node11 - - -functional + + +functional - + Node5->Node11 - - + + + + + - + Node6->Node3 - - + + + + + - + Node7 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node6->Node7 - - + + + + + - + Node10 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node6->Node10 - - + + + + + - + Node8 - - -volk.h + + +volk.h - + Node7->Node8 - - + + + + + - + Node9 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node7->Node9 - - + + + + + - + Node10->Node7 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanShader_8hpp_source.html b/abcg/doc/html/abcgVulkanShader_8hpp_source.html index 038200227..915c218b5 100644 --- a/abcg/doc/html/abcgVulkanShader_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanShader_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,59 +99,67 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanShader.hpp
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_VULKAN_SHADER_HPP_
-
12 #define ABCG_VULKAN_SHADER_HPP_
-
13 
-
14 #include "abcgShader.hpp"
-
15 #include "abcgVulkanDevice.hpp"
-
16 
-
17 namespace abcg {
-
18 class VulkanShader;
-
19 } // namespace abcg
-
20 
- -
28 public:
-
29  void create(VulkanDevice const &device, ShaderSource const &pathOrSource);
-
30  void destroy();
-
31 
-
32  [[nodiscard]] vk::ShaderStageFlagBits const &getStage() const noexcept;
-
33  [[nodiscard]] vk::ShaderModule const &getModule() const noexcept;
-
34 
-
35 private:
-
36  vk::ShaderStageFlagBits m_stage{};
-
37  vk::ShaderModule m_module;
-
38  vk::Device m_device;
-
39 };
-
40 
-
41 #endif
+Go to the documentation of this file.
1
+
11#ifndef ABCG_VULKAN_SHADER_HPP_
+
12#define ABCG_VULKAN_SHADER_HPP_
+
13
+
14#include "abcgShader.hpp"
+
15#include "abcgVulkanDevice.hpp"
+
16
+
17namespace abcg {
+
18class VulkanShader;
+
19} // namespace abcg
+
20
+
+ +
28public:
+
29 void create(VulkanDevice const &device, ShaderSource const &pathOrSource);
+
30 void destroy();
+
31
+
32 [[nodiscard]] vk::ShaderStageFlagBits const &getStage() const noexcept;
+
33 [[nodiscard]] vk::ShaderModule const &getModule() const noexcept;
+
34
+
35private:
+
36 vk::ShaderStageFlagBits m_stage{};
+
37 vk::ShaderModule m_module;
+
38 vk::Device m_device;
+
39};
+
+
40
+
41#endif
Declaration of a structure for building shaders.
Header file of abcg::VulkanDevice.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
A class for representing a Vulkan shader.
Definition: abcgVulkanShader.hpp:27
-
void destroy()
Destroys the shader module.
Definition: abcgVulkanShader.cpp:333
-
vk::ShaderStageFlagBits const & getStage() const noexcept
Returns the shader stage bitmask.
Definition: abcgVulkanShader.cpp:346
-
void create(VulkanDevice const &device, ShaderSource const &pathOrSource)
Compiles a GLSL shader to SPIR-V and creates its module.
Definition: abcgVulkanShader.cpp:314
-
vk::ShaderModule const & getModule() const noexcept
Returns the opaque handle to the shader module object.
Definition: abcgVulkanShader.cpp:355
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Shader source code and corresponding stage.
Definition: abcgShader.hpp:46
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
A class for representing a Vulkan shader.
Definition abcgVulkanShader.hpp:27
+
void destroy()
Destroys the shader module.
Definition abcgVulkanShader.cpp:333
+
vk::ShaderStageFlagBits const & getStage() const noexcept
Returns the shader stage bitmask.
Definition abcgVulkanShader.cpp:346
+
void create(VulkanDevice const &device, ShaderSource const &pathOrSource)
Compiles a GLSL shader to SPIR-V and creates its module.
Definition abcgVulkanShader.cpp:314
+
vk::ShaderModule const & getModule() const noexcept
Returns the opaque handle to the shader module object.
Definition abcgVulkanShader.cpp:355
+
Root namespace.
Definition abcgApplication.hpp:23
+
Shader source code and corresponding stage.
Definition abcgShader.hpp:46
diff --git a/abcg/doc/html/abcgVulkanSwapchain_8cpp.html b/abcg/doc/html/abcgVulkanSwapchain_8cpp.html index 12641a5d0..0d3cdb6c5 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8cpp.html +++ b/abcg/doc/html/abcgVulkanSwapchain_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.cpp File Reference
@@ -117,7 +124,7 @@
Include dependency graph for abcgVulkanSwapchain.cpp:
-
+

Detailed Description

Definition of abcg::VulkanSwapchain.

@@ -129,7 +136,7 @@ diff --git a/abcg/doc/html/abcgVulkanSwapchain_8cpp.js b/abcg/doc/html/abcgVulkanSwapchain_8cpp.js deleted file mode 100644 index 8cd588734..000000000 --- a/abcg/doc/html/abcgVulkanSwapchain_8cpp.js +++ /dev/null @@ -1,6 +0,0 @@ -var abcgVulkanSwapchain_8cpp = -[ - [ "chooseSwapExtent", "abcgVulkanSwapchain_8cpp.html#a39a911060dac4822e4f53788fe57c7b0", null ], - [ "chooseSwapPresentMode", "abcgVulkanSwapchain_8cpp.html#a4074f1e431857e425c4dfe6ba27069a9", null ], - [ "chooseSwapSurfaceFormat", "abcgVulkanSwapchain_8cpp.html#a1483e553cb233562ff7ae7efcf60e5e0", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.map b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.map index dfc495b03..3308b8ba4 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.map @@ -1,26 +1,60 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.md5 index 910f1baca..c2733bab4 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.md5 @@ -1 +1 @@ -e81ddd7fad8335b45821b10e08290b0e \ No newline at end of file +0168cffed44d26334b285ccd4ddc7fb9 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.svg b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.svg index 398e785f1..74d835c94 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanSwapchain_8cpp__incl.svg @@ -4,430 +4,532 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node2 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -functional + + +functional - + Node1->Node3 - - + + + + + - + Node5 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node5 - - + + + + + - + Node6 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node1->Node6 - - + + + + + - + Node14 - - -gsl/gsl + + +gsl/gsl - + Node1->Node14 - - + + + + + - + Node15 - - -imgui_impl_vulkan.h + + +imgui_impl_vulkan.h - + Node1->Node15 - - + + + + + - + Node16 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node16 - - + + + + + - + Node20 - - -abcgVulkanWindow.hpp + + +abcgVulkanWindow.hpp - + Node1->Node20 - - + + + + + - + Node2->Node3 - - + + + + + - + Node4 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node2->Node4 - - + + + + + - + Node2->Node5 - - + + + + + - + Node12 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node2->Node12 - - + + + + + - + Node5->Node3 - - + + + + + - + Node5->Node6 - - + + + + + - + Node7 - - -optional + + +optional - + Node6->Node7 - - + + + + + - + Node8 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node6->Node8 - - + + + + + - + Node11 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node6->Node11 - - + + + + + - + Node9 - - -volk.h + + +volk.h - + Node8->Node9 - - + + + + + - + Node10 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node8->Node10 - - + + + + + - + Node11->Node8 - - + + + + + - + Node12->Node5 - - + + + + + - + Node13 - - -gsl/pointers + + +gsl/pointers - + Node12->Node13 - - + + + + + - + Node17 - - -source_location + + +source_location - + Node16->Node17 - - + + + + + - + Node18 - - -stdexcept + + +stdexcept - + Node16->Node18 - - + + + + + - + Node19 - - -string + + +string - + Node16->Node19 - - + + + + + - + Node20->Node2 - - + + + + + - + Node20->Node5 - - + + + + + - + Node20->Node6 - - + + + + + - + Node20->Node11 - - + + + + + - + Node21 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node20->Node21 - - + + + + + - + Node21->Node19 - - + + + + + - + Node22 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node21->Node22 - - + + + + + - + Node23 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node21->Node23 - - + + + + + - + Node24 - - -chrono + + +chrono - + Node23->Node24 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp.html b/abcg/doc/html/abcgVulkanSwapchain_8hpp.html index 751b87e77..f4c207163 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp.html +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp File Reference
@@ -116,17 +123,17 @@
Include dependency graph for abcgVulkanSwapchain.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -135,9 +142,9 @@

+

Classes

struct  abcg::VulkanFrame
 Data needed by a rendering frame. More...
 A class for representing a Vulkan swapchain. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -152,7 +159,7 @@ diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp.js b/abcg/doc/html/abcgVulkanSwapchain_8hpp.js new file mode 100644 index 000000000..12b69f1c7 --- /dev/null +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanSwapchain_8hpp = +[ + [ "abcg::VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], + [ "abcg::VulkanSwapchain", "classabcg_1_1VulkanSwapchain.html", "classabcg_1_1VulkanSwapchain" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.map index 0bae46b8b..429dc9b02 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.map @@ -1,10 +1,19 @@ - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.md5 index 96f0e1bc3..ddcd426af 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.md5 @@ -1 +1 @@ -41279ad3109f3fa397ed726fb3c7372c \ No newline at end of file +4e8386905d18b52b79cbe9ce5d9b254f \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.svg index 453548a2b..3c4f47e9f 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__dep__incl.svg @@ -4,143 +4,170 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node1->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node1->Node7 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node3 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanPipeline.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanPipeline.cpp - + Node2->Node5 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node3->Node4 - - + + + + + - + Node7->Node3 - - + + + + + - + Node7->Node6 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node7->Node8 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.map b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.map index c5b40bda2..fe29a73cd 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.map @@ -1,14 +1,28 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.md5 index 854c8cae7..d0f011086 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.md5 @@ -1 +1 @@ -d463c8c60c097c95354a41fb0d7abc82 \ No newline at end of file +f68d2c6644501efebbe67e6409d3fa43 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.svg b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.svg index 4f1f0198b..4dfadc0e6 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp__incl.svg @@ -4,202 +4,244 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.hpp - + Node2 - - -functional + + +functional - + Node1->Node2 - - + + + + + - + Node3 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node4 - - + + + + + - + Node11 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node1->Node11 - - + + + + + - + Node4->Node2 - - + + + + + - + Node5 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node4->Node5 - - + + + + + - + Node6 - - -optional + + +optional - + Node5->Node6 - - + + + + + - + Node7 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node5->Node7 - - + + + + + - + Node10 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node5->Node10 - - + + + + + - + Node8 - - -volk.h + + +volk.h - + Node7->Node8 - - + + + + + - + Node9 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node7->Node9 - - + + + + + - + Node10->Node7 - - + + + + + - + Node11->Node4 - - + + + + + - + Node12 - - -gsl/pointers + + +gsl/pointers - + Node11->Node12 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanSwapchain_8hpp_source.html b/abcg/doc/html/abcgVulkanSwapchain_8hpp_source.html index 102962ec2..9022f0f63 100644 --- a/abcg/doc/html/abcgVulkanSwapchain_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanSwapchain_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,143 +99,153 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanSwapchain.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_SWAPCHAIN_HPP_
-
14 #define ABCG_VULKAN_SWAPCHAIN_HPP_
-
15 
-
16 #include <functional>
-
17 #include <glm/fwd.hpp>
-
18 
-
19 #include "abcgVulkanDevice.hpp"
-
20 #include "abcgVulkanImage.hpp"
-
21 
-
22 namespace abcg {
-
23 class VulkanSwapchain;
-
24 struct VulkanFrame;
-
25 struct VulkanSettings;
-
26 class VulkanPipeline;
-
27 class VulkanWindow;
-
28 } // namespace abcg
-
29 
- -
35  uint32_t index{};
-
36  vk::CommandPool commandPool;
-
37  vk::CommandBuffer commandBuffer;
-
38  vk::CommandBuffer commandBufferUI;
-
39  vk::Fence fence;
- -
41  vk::Framebuffer framebufferMain;
-
42 };
-
43 
- -
51 public:
-
52  void create(VulkanDevice const &device, VulkanSettings const &settings,
-
53  glm::ivec2 const &windowSize);
-
54  void destroy();
-
55  void render(std::function<void(VulkanFrame const &)> const &fun);
-
56  void present();
-
57  bool checkRebuild(VulkanSettings const &settings,
-
58  glm::ivec2 const &windowSize);
-
59 
-
60  explicit operator vk::SwapchainKHR const &() const noexcept;
-
61 
-
62  [[nodiscard]] VulkanDevice const &getDevice() const noexcept;
-
63  [[nodiscard]] std::vector<VulkanFrame> const &getFrames() const noexcept;
-
64  [[nodiscard]] VulkanFrame const &getCurrentFrame() const noexcept;
-
65  [[nodiscard]] vk::RenderPass const &getMainRenderPass() const noexcept;
-
66  [[nodiscard]] vk::RenderPass const &getUIRenderPass() const noexcept;
-
67  [[nodiscard]] vk::Extent2D const &getExtent() const noexcept;
-
68  [[nodiscard]] VulkanImage const &getDepthImage() const noexcept;
-
69 
-
70 private:
-
71  void createFrames();
-
72  void destroyFrames();
-
73 
-
74  [[nodiscard]] vk::Format getDepthFormat(VulkanSettings const &settings);
-
75  void createDepthResources(VulkanSettings const &settings);
-
76  void destroyDepthResources();
-
77 
-
78  void createMSAAResources();
-
79  void destroyMSAAResources();
-
80 
-
81  void createRenderPasses(VulkanSettings const &settings);
-
82  void destroyRenderPasses();
-
83 
-
84  void createFramebuffers(VulkanSettings const &settings);
-
85 
-
86  vk::SwapchainKHR m_swapchainKHR;
-
87  VulkanDevice m_device;
-
88 
-
89  vk::Format m_swapchainImageFormat;
-
90  vk::Extent2D m_swapchainExtent;
-
91  bool m_swapChainRebuild{};
-
92 
-
93  // Data for swapchain synchronization
-
94  struct FrameSemaphores {
-
95  vk::Semaphore presentComplete;
-
96  vk::Semaphore renderComplete;
-
97  };
-
98 
-
99  uint32_t m_currentFrame{};
-
100  std::vector<VulkanFrame> m_frames;
-
101  // Current set of swapchain wait semaphores we're using (needs to be distinct
-
102  // from per frame data)
-
103  uint32_t m_currentSemaphore{};
-
104  std::vector<FrameSemaphores> m_frameSemaphores;
-
105 
-
106  VulkanImage m_depthImage;
-
107  VulkanImage m_MSAAImage;
-
108 
-
109  // Render passes
-
110  vk::RenderPass m_renderPassMain;
-
111  vk::RenderPass m_renderPassUI;
-
112 };
-
113 
-
114 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_SWAPCHAIN_HPP_
+
14#define ABCG_VULKAN_SWAPCHAIN_HPP_
+
15
+
16#include <functional>
+
17#include <glm/fwd.hpp>
+
18
+
19#include "abcgVulkanDevice.hpp"
+
20#include "abcgVulkanImage.hpp"
+
21
+
22namespace abcg {
+
23class VulkanSwapchain;
+
24struct VulkanFrame;
+
25struct VulkanSettings;
+
26class VulkanPipeline;
+
27class VulkanWindow;
+
28} // namespace abcg
+
29
+
+ +
35 uint32_t index{};
+
36 vk::CommandPool commandPool;
+
37 vk::CommandBuffer commandBuffer;
+
38 vk::CommandBuffer commandBufferUI;
+
39 vk::Fence fence;
+ +
41 vk::Framebuffer framebufferMain;
+
42};
+
+
43
+
+ +
51public:
+
52 void create(VulkanDevice const &device, VulkanSettings const &settings,
+
53 glm::ivec2 const &windowSize);
+
54 void destroy();
+
55 void render(std::function<void(VulkanFrame const &)> const &fun);
+
56 void present();
+
57 bool checkRebuild(VulkanSettings const &settings,
+
58 glm::ivec2 const &windowSize);
+
59
+
60 explicit operator vk::SwapchainKHR const &() const noexcept;
+
61
+
62 [[nodiscard]] VulkanDevice const &getDevice() const noexcept;
+
63 [[nodiscard]] std::vector<VulkanFrame> const &getFrames() const noexcept;
+
64 [[nodiscard]] VulkanFrame const &getCurrentFrame() const noexcept;
+
65 [[nodiscard]] vk::RenderPass const &getMainRenderPass() const noexcept;
+
66 [[nodiscard]] vk::RenderPass const &getUIRenderPass() const noexcept;
+
67 [[nodiscard]] vk::Extent2D const &getExtent() const noexcept;
+
68 [[nodiscard]] VulkanImage const &getDepthImage() const noexcept;
+
69
+
70private:
+
71 void createFrames();
+
72 void destroyFrames();
+
73
+
74 [[nodiscard]] vk::Format getDepthFormat(VulkanSettings const &settings);
+
75 void createDepthResources(VulkanSettings const &settings);
+
76 void destroyDepthResources();
+
77
+
78 void createMSAAResources();
+
79 void destroyMSAAResources();
+
80
+
81 void createRenderPasses(VulkanSettings const &settings);
+
82 void destroyRenderPasses();
+
83
+
84 void createFramebuffers(VulkanSettings const &settings);
+
85
+
86 vk::SwapchainKHR m_swapchainKHR;
+
87 VulkanDevice m_device;
+
88
+
89 vk::Format m_swapchainImageFormat;
+
90 vk::Extent2D m_swapchainExtent;
+
91 bool m_swapChainRebuild{};
+
92
+
93 // Data for swapchain synchronization
+
94 struct FrameSemaphores {
+
95 vk::Semaphore presentComplete;
+
96 vk::Semaphore renderComplete;
+
97 };
+
98
+
99 uint32_t m_currentFrame{};
+
100 std::vector<VulkanFrame> m_frames;
+
101 // Current set of swapchain wait semaphores we're using (needs to be distinct
+
102 // from per frame data)
+
103 uint32_t m_currentSemaphore{};
+
104 std::vector<FrameSemaphores> m_frameSemaphores;
+
105
+
106 VulkanImage m_depthImage;
+
107 VulkanImage m_MSAAImage;
+
108
+
109 // Render passes
+
110 vk::RenderPass m_renderPassMain;
+
111 vk::RenderPass m_renderPassUI;
+
112};
+
+
113
+
114#endif
Header file of abcg::VulkanDevice.
Header file of abcg::VulkanImage.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
A class for representing a Vulkan image.
Definition: abcgVulkanImage.hpp:40
-
A class for representing a Vulkan swapchain.
Definition: abcgVulkanSwapchain.hpp:50
-
std::vector< VulkanFrame > const & getFrames() const noexcept
Returns the in-flight frames.
Definition: abcgVulkanSwapchain.cpp:397
-
void present()
Definition: abcgVulkanSwapchain.cpp:204
-
vk::RenderPass const & getMainRenderPass() const noexcept
Returns the main render pass.
Definition: abcgVulkanSwapchain.cpp:417
-
VulkanFrame const & getCurrentFrame() const noexcept
Returns the current in-flight frame.
Definition: abcgVulkanSwapchain.cpp:407
-
vk::Extent2D const & getExtent() const noexcept
Returns the swapchain extent.
Definition: abcgVulkanSwapchain.cpp:435
-
vk::RenderPass const & getUIRenderPass() const noexcept
Returns the UI render pass.
Definition: abcgVulkanSwapchain.cpp:426
-
void render(std::function< void(VulkanFrame const &)> const &fun)
Definition: abcgVulkanSwapchain.cpp:129
-
void create(VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition: abcgVulkanSwapchain.cpp:104
-
bool checkRebuild(VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition: abcgVulkanSwapchain.cpp:238
-
void destroy()
Definition: abcgVulkanSwapchain.cpp:114
-
VulkanImage const & getDepthImage() const noexcept
Returns the depth image object.
Definition: abcgVulkanSwapchain.cpp:444
-
VulkanDevice const & getDevice() const noexcept
Access to abcg::VulkanDevice.
Definition: abcgVulkanSwapchain.cpp:387
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Data needed by a rendering frame.
Definition: abcgVulkanSwapchain.hpp:34
-
vk::CommandBuffer commandBuffer
Definition: abcgVulkanSwapchain.hpp:37
-
uint32_t index
Definition: abcgVulkanSwapchain.hpp:35
-
VulkanImage colorImage
Definition: abcgVulkanSwapchain.hpp:40
-
vk::Fence fence
Definition: abcgVulkanSwapchain.hpp:39
-
vk::CommandBuffer commandBufferUI
Definition: abcgVulkanSwapchain.hpp:38
-
vk::Framebuffer framebufferMain
Definition: abcgVulkanSwapchain.hpp:41
-
vk::CommandPool commandPool
Definition: abcgVulkanSwapchain.hpp:36
-
Configuration settings for creating a Vulkan context.
Definition: abcgVulkanWindow.hpp:37
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
A class for representing a Vulkan image.
Definition abcgVulkanImage.hpp:40
+
A class for representing a Vulkan swapchain.
Definition abcgVulkanSwapchain.hpp:50
+
std::vector< VulkanFrame > const & getFrames() const noexcept
Returns the in-flight frames.
Definition abcgVulkanSwapchain.cpp:397
+
void present()
Definition abcgVulkanSwapchain.cpp:204
+
vk::RenderPass const & getMainRenderPass() const noexcept
Returns the main render pass.
Definition abcgVulkanSwapchain.cpp:417
+
VulkanFrame const & getCurrentFrame() const noexcept
Returns the current in-flight frame.
Definition abcgVulkanSwapchain.cpp:407
+
vk::Extent2D const & getExtent() const noexcept
Returns the swapchain extent.
Definition abcgVulkanSwapchain.cpp:435
+
vk::RenderPass const & getUIRenderPass() const noexcept
Returns the UI render pass.
Definition abcgVulkanSwapchain.cpp:426
+
void render(std::function< void(VulkanFrame const &)> const &fun)
Definition abcgVulkanSwapchain.cpp:129
+
void create(VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition abcgVulkanSwapchain.cpp:104
+
bool checkRebuild(VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition abcgVulkanSwapchain.cpp:238
+
void destroy()
Definition abcgVulkanSwapchain.cpp:114
+
VulkanImage const & getDepthImage() const noexcept
Returns the depth image object.
Definition abcgVulkanSwapchain.cpp:444
+
VulkanDevice const & getDevice() const noexcept
Access to abcg::VulkanDevice.
Definition abcgVulkanSwapchain.cpp:387
+
Root namespace.
Definition abcgApplication.hpp:23
+
Data needed by a rendering frame.
Definition abcgVulkanSwapchain.hpp:34
+
vk::CommandBuffer commandBuffer
Definition abcgVulkanSwapchain.hpp:37
+
uint32_t index
Definition abcgVulkanSwapchain.hpp:35
+
VulkanImage colorImage
Definition abcgVulkanSwapchain.hpp:40
+
vk::Fence fence
Definition abcgVulkanSwapchain.hpp:39
+
vk::CommandBuffer commandBufferUI
Definition abcgVulkanSwapchain.hpp:38
+
vk::Framebuffer framebufferMain
Definition abcgVulkanSwapchain.hpp:41
+
vk::CommandPool commandPool
Definition abcgVulkanSwapchain.hpp:36
+
Configuration settings for creating a Vulkan context.
Definition abcgVulkanWindow.hpp:37
diff --git a/abcg/doc/html/abcgVulkanWindow_8cpp.html b/abcg/doc/html/abcgVulkanWindow_8cpp.html index 449af0956..5f71ac69a 100644 --- a/abcg/doc/html/abcgVulkanWindow_8cpp.html +++ b/abcg/doc/html/abcgVulkanWindow_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanWindow.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.cpp File Reference
@@ -120,7 +127,7 @@
Include dependency graph for abcgVulkanWindow.cpp:
-
+

Detailed Description

Definition of abcg::VulkanWindow members.

@@ -132,7 +139,7 @@ diff --git a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.map b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.map index f50988f4b..e2fb1153f 100644 --- a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.map +++ b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.map @@ -1,32 +1,74 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.md5 b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.md5 index fbc4cc29d..f7fd9b0dc 100644 --- a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.md5 @@ -1 +1 @@ -8b65bb9f8e27c19717bdaa9e425e487a \ No newline at end of file +e7b471b84b932d52b26f56862aa2e908 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.svg b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.svg index 6dbdb29f4..82efc7550 100644 --- a/abcg/doc/html/abcgVulkanWindow_8cpp__incl.svg +++ b/abcg/doc/html/abcgVulkanWindow_8cpp__incl.svg @@ -4,532 +4,658 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanWindow.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node2 - - -abcgVulkanWindow.hpp + + +abcgVulkanWindow.hpp - + Node1->Node2 - - + + + + + - + Node9 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node1->Node9 - - + + + + + - + Node15 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node15 - - + + + + + - + Node20 - - -SDL_vulkan.h + + +SDL_vulkan.h - + Node1->Node20 - - + + + + + - + Node21 - - -algorithm + + +algorithm - + Node1->Node21 - - + + + + + - + Node22 - - -gsl/gsl + + +gsl/gsl - + Node1->Node22 - - + + + + + - + Node23 - - -imgui_impl_sdl2.h + + +imgui_impl_sdl2.h - + Node1->Node23 - - + + + + + - + Node24 - - -imgui_impl_vulkan.h + + +imgui_impl_vulkan.h - + Node1->Node24 - - + + + + + - + Node25 - - -abcgEmbeddedFonts.hpp + + +abcgEmbeddedFonts.hpp - + Node1->Node25 - - + + + + + - + Node27 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node27 - - + + + + + - + Node30 - - -abcgVulkanError.hpp + + +abcgVulkanError.hpp - + Node1->Node30 - - + + + + + - + Node3 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node2->Node4 - - + + + + + - + Node2->Node9 - - + + + + + - + Node11 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node2->Node11 - - + + + + + - + Node2->Node15 - - + + + + + - + Node3->Node4 - - + + + + + - + Node10 - - -functional + + +functional - + Node3->Node10 - - + + + + + - + Node5 - - -optional + + +optional - + Node4->Node5 - - + + + + + - + Node6 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node4->Node6 - - + + + + + - + Node4->Node9 - - + + + + + - + Node7 - - -volk.h + + +volk.h - + Node6->Node7 - - + + + + + - + Node8 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node6->Node8 - - + + + + + - + Node9->Node6 - - + + + + + - + Node11->Node3 - - + + + + + - + Node11->Node10 - - + + + + + - + Node12 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node11->Node12 - - + + + + + - + Node13 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node11->Node13 - - + + + + + - + Node13->Node3 - - + + + + + - + Node14 - - -gsl/pointers + + +gsl/pointers - + Node13->Node14 - - + + + + + - + Node16 - - -string + + +string - + Node15->Node16 - - + + + + + - + Node17 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node15->Node17 - - + + + + + - + Node18 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node15->Node18 - - + + + + + - + Node19 - - -chrono + + +chrono - + Node18->Node19 - - + + + + + - + Node26 - - -array + + +array - + Node25->Node26 - - + + + + + - + Node27->Node16 - - + + + + + - + Node28 - - -source_location + + +source_location - + Node27->Node28 - - + + + + + - + Node29 - - -stdexcept + + +stdexcept - + Node27->Node29 - - + + + + + - + Node30->Node7 - - + + + + + - + Node30->Node8 - - + + + + + - + Node30->Node27 - - + + + + + - + Node30->Node28 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp.html b/abcg/doc/html/abcgVulkanWindow_8hpp.html index 88254c8e0..df7a6c13a 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp.html +++ b/abcg/doc/html/abcgVulkanWindow_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp File Reference
@@ -117,17 +124,17 @@
Include dependency graph for abcgVulkanWindow.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -136,9 +143,9 @@

+

Classes

struct  abcg::VulkanSettings
 Configuration settings for creating a Vulkan context. More...
 Base class for a window that displays graphics using a Vulkan context. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
@@ -153,7 +160,7 @@ diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp.js b/abcg/doc/html/abcgVulkanWindow_8hpp.js new file mode 100644 index 000000000..3539e6462 --- /dev/null +++ b/abcg/doc/html/abcgVulkanWindow_8hpp.js @@ -0,0 +1,5 @@ +var abcgVulkanWindow_8hpp = +[ + [ "abcg::VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], + [ "abcg::VulkanWindow", "classabcg_1_1VulkanWindow.html", "classabcg_1_1VulkanWindow" ] +]; \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.map index d3bfe4ff8..34ca4112c 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.map @@ -1,7 +1,11 @@ - - - - - + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.md5 index b377aee72..7846f113f 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.md5 @@ -1 +1 @@ -15879e37bc087bb8590719bc93f6f9cc \ No newline at end of file +8614e2d52fe43cbb13ab45742a70ebb1 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.svg index 89d1aa038..8f0aa2004 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__dep__incl.svg @@ -4,83 +4,95 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node1->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node5 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node2->Node3 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.map b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.map index a111910ed..f0d933160 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.map @@ -1,20 +1,43 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.md5 b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.md5 index 2e7dda512..23aa533b8 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.md5 @@ -1 +1 @@ -d09cb438d33bfa0c197af14c418d7240 \ No newline at end of file +7070423f2d42a2686a7c67d684991310 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.svg b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.svg index 054e179e7..6e9b03433 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkanWindow_8hpp__incl.svg @@ -4,310 +4,379 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node2 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node1->Node3 - - + + + + + - + Node8 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node1->Node8 - - + + + + + - + Node10 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node1->Node10 - - + + + + + - + Node14 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node14 - - + + + + + - + Node2->Node3 - - + + + + + - + Node9 - - -functional + + +functional - + Node2->Node9 - - + + + + + - + Node4 - - -optional + + +optional - + Node3->Node4 - - + + + + + - + Node5 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node3->Node5 - - + + + + + - + Node3->Node8 - - + + + + + - + Node6 - - -volk.h + + +volk.h - + Node5->Node6 - - + + + + + - + Node7 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node5->Node7 - - + + + + + - + Node8->Node5 - - + + + + + - + Node10->Node2 - - + + + + + - + Node10->Node9 - - + + + + + - + Node11 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node10->Node11 - - + + + + + - + Node12 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node10->Node12 - - + + + + + - + Node12->Node2 - - + + + + + - + Node13 - - -gsl/pointers + + +gsl/pointers - + Node12->Node13 - - + + + + + - + Node15 - - -string + + +string - + Node14->Node15 - - + + + + + - + Node16 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node14->Node16 - - + + + + + - + Node17 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node14->Node17 - - + + + + + - + Node18 - - -chrono + + +chrono - + Node17->Node18 - - + + + + + diff --git a/abcg/doc/html/abcgVulkanWindow_8hpp_source.html b/abcg/doc/html/abcgVulkanWindow_8hpp_source.html index 539d5ec60..b30b38a42 100644 --- a/abcg/doc/html/abcgVulkanWindow_8hpp_source.html +++ b/abcg/doc/html/abcgVulkanWindow_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,122 +99,132 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkanWindow.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_WINDOW_HPP_
-
14 #define ABCG_VULKAN_WINDOW_HPP_
-
15 
-
16 #include "abcgVulkanDevice.hpp"
-
17 #include "abcgVulkanInstance.hpp"
- -
19 #include "abcgVulkanSwapchain.hpp"
-
20 #include "abcgWindow.hpp"
-
21 
-
22 namespace abcg {
-
23 class VulkanWindow;
-
24 struct VulkanSettings;
-
25 } // namespace abcg
-
26 
- -
39  int depthBufferSize{24};
-
40 
- -
43 
-
49  int samples{0};
-
50 
-
59  bool vSync{false};
-
60 };
-
61 
-
79 class abcg::VulkanWindow : public Window {
-
80 public:
-
81  [[nodiscard]] VulkanSettings const &getVulkanSettings() const noexcept;
-
82  void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept;
-
83  // void saveScreenshotPNG(std::string_view filename) const;
-
84  [[nodiscard]] VulkanPhysicalDevice const &getPhysicalDevice() const noexcept;
-
85  [[nodiscard]] VulkanDevice const &getDevice() const noexcept;
-
86  [[nodiscard]] VulkanSwapchain const &getSwapchain() const noexcept;
-
87 
-
88 protected:
-
89  virtual void onEvent(SDL_Event const &event);
-
90  virtual void onCreate();
-
91  virtual void onPaint(VulkanFrame const &frame);
-
92  virtual void onPaintUI();
-
93  virtual void onResize();
-
94  virtual void onUpdate();
-
95  virtual void onDestroy();
-
96 
-
97 private:
-
98  void handleEvent(SDL_Event const &event) final;
-
99  void create() final;
-
100  void paint() final;
-
101  void destroy() final;
-
102  [[nodiscard]] glm::ivec2 getWindowSize() const final;
-
103 
-
104  VulkanSettings m_vulkanSettings;
-
105  std::vector<char const *> m_deviceExtensions{VK_KHR_SWAPCHAIN_EXTENSION_NAME};
-
106  std::vector<char const *> m_layers {
-
107 #if defined(ABCG_VULKAN_DEBUG_REPORT)
-
108  "VK_LAYER_KHRONOS_validation"
-
109 #endif
-
110  };
-
111 
-
112  VulkanInstance m_instance;
-
113  VulkanPhysicalDevice m_physicalDevice;
-
114  VulkanDevice m_device;
-
115  VulkanSwapchain m_swapchain;
-
116  vk::SurfaceKHR m_surface;
-
117  vk::DescriptorPool m_UIdescriptorPool;
-
118  bool m_hidden{};
-
119  bool m_minimized{};
-
120 };
-
121 
-
122 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_WINDOW_HPP_
+
14#define ABCG_VULKAN_WINDOW_HPP_
+
15
+
16#include "abcgVulkanDevice.hpp"
+ + + +
20#include "abcgWindow.hpp"
+
21
+
22namespace abcg {
+
23class VulkanWindow;
+
24struct VulkanSettings;
+
25} // namespace abcg
+
26
+
+ + +
40
+ +
43
+
49 int samples{0};
+
50
+
59 bool vSync{false};
+
60};
+
+
61
+
+
79class abcg::VulkanWindow : public Window {
+
80public:
+
81 [[nodiscard]] VulkanSettings const &getVulkanSettings() const noexcept;
+
82 void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept;
+
83 // void saveScreenshotPNG(std::string_view filename) const;
+
84 [[nodiscard]] VulkanPhysicalDevice const &getPhysicalDevice() const noexcept;
+
85 [[nodiscard]] VulkanDevice const &getDevice() const noexcept;
+
86 [[nodiscard]] VulkanSwapchain const &getSwapchain() const noexcept;
+
87
+
88protected:
+
89 virtual void onEvent(SDL_Event const &event);
+
90 virtual void onCreate();
+
91 virtual void onPaint(VulkanFrame const &frame);
+
92 virtual void onPaintUI();
+
93 virtual void onResize();
+
94 virtual void onUpdate();
+
95 virtual void onDestroy();
+
96
+
97private:
+
98 void handleEvent(SDL_Event const &event) final;
+
99 void create() final;
+
100 void paint() final;
+
101 void destroy() final;
+
102 [[nodiscard]] glm::ivec2 getWindowSize() const final;
+
103
+
104 VulkanSettings m_vulkanSettings;
+
105 std::vector<char const *> m_deviceExtensions{VK_KHR_SWAPCHAIN_EXTENSION_NAME};
+
106 std::vector<char const *> m_layers {
+
107#if defined(ABCG_VULKAN_DEBUG_REPORT)
+
108 "VK_LAYER_KHRONOS_validation"
+
109#endif
+
110 };
+
111
+
112 VulkanInstance m_instance;
+
113 VulkanPhysicalDevice m_physicalDevice;
+
114 VulkanDevice m_device;
+
115 VulkanSwapchain m_swapchain;
+
116 vk::SurfaceKHR m_surface;
+
117 vk::DescriptorPool m_UIdescriptorPool;
+
118 bool m_hidden{};
+
119 bool m_minimized{};
+
120};
+
+
121
+
122#endif
Header file of abcg::VulkanDevice.
Header file of abcg::VulkanInstance.
Header file of abcg::VulkanPhysicalDevice.
Header file of abcg::VulkanSwapchain.
Header file of abcg::Window.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcgVulkanDevice.hpp:55
-
A class for representing a Vulkan instance.
Definition: abcgVulkanInstance.hpp:25
-
A class for representing a Vulkan physical device.
Definition: abcgVulkanPhysicalDevice.hpp:43
-
A class for representing a Vulkan swapchain.
Definition: abcgVulkanSwapchain.hpp:50
-
Base class for a window that displays graphics using a Vulkan context.
Definition: abcgVulkanWindow.hpp:79
-
VulkanSwapchain const & getSwapchain() const noexcept
Access to abcg::VulkanSwapchain.
Definition: abcgVulkanWindow.cpp:109
-
virtual void onPaint(VulkanFrame const &frame)
Custom handler for rendering the Vulkan scene.
Definition: abcgVulkanWindow.cpp:147
-
virtual void onCreate()
Custom handler for Vulkan initialization tasks to be performed before rendering the scene.
Definition: abcgVulkanWindow.cpp:133
-
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition: abcgVulkanWindow.cpp:161
-
VulkanDevice const & getDevice() const noexcept
Access to abcg::VulkanDevice.
Definition: abcgVulkanWindow.cpp:101
-
virtual void onDestroy()
Custom handler for cleaning up Vulkan resources.
Definition: abcgVulkanWindow.cpp:240
-
VulkanSettings const & getVulkanSettings() const noexcept
Returns the configuration settings of the Vulkan instance.
Definition: abcgVulkanWindow.cpp:69
-
virtual void onResize()
Custom handler for window resizing events.
Definition: abcgVulkanWindow.cpp:221
-
void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept
Sets the configuration settings that will be used for creating the Vulkan instance.
Definition: abcgVulkanWindow.cpp:80
-
virtual void onEvent(SDL_Event const &event)
Custom event handler.
Definition: abcgVulkanWindow.cpp:123
-
VulkanPhysicalDevice const & getPhysicalDevice() const noexcept
Access to abcg::VulkanPhysicalDevice.
Definition: abcgVulkanWindow.cpp:93
-
virtual void onUpdate()
Custom handler called for each frame before painting.
Definition: abcgVulkanWindow.cpp:231
-
Base abstract class that represents a SDL window.
Definition: abcgWindow.hpp:86
-
Root namespace.
Definition: abcgApplication.hpp:23
-
Data needed by a rendering frame.
Definition: abcgVulkanSwapchain.hpp:34
-
Configuration settings for creating a Vulkan context.
Definition: abcgVulkanWindow.hpp:37
-
int depthBufferSize
Minimum number of bits in the depth buffer.
Definition: abcgVulkanWindow.hpp:39
-
int samples
Number of desired samples to be used for multisample anti-aliasing.
Definition: abcgVulkanWindow.hpp:49
-
bool vSync
Whether to synchronize the presentation with the vertical retrace.
Definition: abcgVulkanWindow.hpp:59
-
int stencilBufferSize
Minimum number of bits in the stencil buffer.
Definition: abcgVulkanWindow.hpp:42
+
A class for representing a Vulkan logical device and related resources.
Definition abcgVulkanDevice.hpp:55
+
A class for representing a Vulkan instance.
Definition abcgVulkanInstance.hpp:25
+
A class for representing a Vulkan physical device.
Definition abcgVulkanPhysicalDevice.hpp:43
+
A class for representing a Vulkan swapchain.
Definition abcgVulkanSwapchain.hpp:50
+
Base class for a window that displays graphics using a Vulkan context.
Definition abcgVulkanWindow.hpp:79
+
VulkanSwapchain const & getSwapchain() const noexcept
Access to abcg::VulkanSwapchain.
Definition abcgVulkanWindow.cpp:109
+
virtual void onPaint(VulkanFrame const &frame)
Custom handler for rendering the Vulkan scene.
Definition abcgVulkanWindow.cpp:147
+
virtual void onCreate()
Custom handler for Vulkan initialization tasks to be performed before rendering the scene.
Definition abcgVulkanWindow.cpp:133
+
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition abcgVulkanWindow.cpp:161
+
VulkanDevice const & getDevice() const noexcept
Access to abcg::VulkanDevice.
Definition abcgVulkanWindow.cpp:101
+
virtual void onDestroy()
Custom handler for cleaning up Vulkan resources.
Definition abcgVulkanWindow.cpp:240
+
VulkanSettings const & getVulkanSettings() const noexcept
Returns the configuration settings of the Vulkan instance.
Definition abcgVulkanWindow.cpp:69
+
virtual void onResize()
Custom handler for window resizing events.
Definition abcgVulkanWindow.cpp:221
+
void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept
Sets the configuration settings that will be used for creating the Vulkan instance.
Definition abcgVulkanWindow.cpp:80
+
virtual void onEvent(SDL_Event const &event)
Custom event handler.
Definition abcgVulkanWindow.cpp:123
+
VulkanPhysicalDevice const & getPhysicalDevice() const noexcept
Access to abcg::VulkanPhysicalDevice.
Definition abcgVulkanWindow.cpp:93
+
virtual void onUpdate()
Custom handler called for each frame before painting.
Definition abcgVulkanWindow.cpp:231
+
Base abstract class that represents a SDL window.
Definition abcgWindow.hpp:86
+
Root namespace.
Definition abcgApplication.hpp:23
+
Data needed by a rendering frame.
Definition abcgVulkanSwapchain.hpp:34
+
Configuration settings for creating a Vulkan context.
Definition abcgVulkanWindow.hpp:37
+
int depthBufferSize
Minimum number of bits in the depth buffer.
Definition abcgVulkanWindow.hpp:39
+
int samples
Number of desired samples to be used for multisample anti-aliasing.
Definition abcgVulkanWindow.hpp:49
+
bool vSync
Whether to synchronize the presentation with the vertical retrace.
Definition abcgVulkanWindow.hpp:59
+
int stencilBufferSize
Minimum number of bits in the stencil buffer.
Definition abcgVulkanWindow.hpp:42
diff --git a/abcg/doc/html/abcgVulkan_8hpp.html b/abcg/doc/html/abcgVulkan_8hpp.html index 96a7ec4b6..f762bdb6b 100644 --- a/abcg/doc/html/abcgVulkan_8hpp.html +++ b/abcg/doc/html/abcgVulkan_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkan.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,16 +94,22 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkan.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgVulkan.hpp File Reference
@@ -117,19 +124,19 @@
Include dependency graph for abcgVulkan.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- - +

+

Macros

#define GLM_FORCE_DEPTH_ZERO_TO_ONE
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
 

Detailed Description

@@ -138,8 +145,8 @@

This file is part of ABCg (https://github.com/hbatagelo/abcg).

Macro Definition Documentation

- -

◆ GLM_FORCE_DEPTH_ZERO_TO_ONE

+ +

◆ GLM_FORCE_DEPTH_ZERO_TO_ONE

@@ -158,7 +165,7 @@

diff --git a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.map b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.map index 58f5c8869..f6f4b07f1 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.md5 b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.md5 index 7271e8976..d76ef89e7 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.md5 @@ -1 +1 @@ -ce8a7225d7966b90865427305918777f \ No newline at end of file +c7f86d42f2d041d6b6f4620bf830467f \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.svg b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.svg index f28a65ede..03c6db903 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgVulkan_8hpp__dep__incl.svg @@ -4,35 +4,38 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkan.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node1->Node2 - - + + + + + diff --git a/abcg/doc/html/abcgVulkan_8hpp__incl.map b/abcg/doc/html/abcgVulkan_8hpp__incl.map index a41307de1..8b61cf83e 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__incl.map +++ b/abcg/doc/html/abcgVulkan_8hpp__incl.map @@ -1,32 +1,83 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgVulkan_8hpp__incl.md5 b/abcg/doc/html/abcgVulkan_8hpp__incl.md5 index 7994949d0..08b76860c 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__incl.md5 +++ b/abcg/doc/html/abcgVulkan_8hpp__incl.md5 @@ -1 +1 @@ -dfcf9dc5e5f29e556bfd2d2fb96ebc15 \ No newline at end of file +6c064ebdd30bb868190e9d43db7ee6e9 \ No newline at end of file diff --git a/abcg/doc/html/abcgVulkan_8hpp__incl.svg b/abcg/doc/html/abcgVulkan_8hpp__incl.svg index a4cfc1e27..e49b54b65 100644 --- a/abcg/doc/html/abcgVulkan_8hpp__incl.svg +++ b/abcg/doc/html/abcgVulkan_8hpp__incl.svg @@ -4,586 +4,739 @@ - - + + /home/harlen/dev/abcg/abcg/abcgVulkan.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2 - - -abcg.hpp + + +abcg.hpp - + Node1->Node2 - - + + + + + - + Node15 - - -abcgVulkanBuffer.hpp + + +abcgVulkanBuffer.hpp - + Node1->Node15 - - + + + + + - + Node24 - - -abcgVulkanImage.hpp + + +abcgVulkanImage.hpp - + Node1->Node24 - - + + + + + - + Node25 - - -abcgVulkanPipeline.hpp + + +abcgVulkanPipeline.hpp - + Node1->Node25 - - + + + + + - + Node26 - - -abcgVulkanShader.hpp + + +abcgVulkanShader.hpp - + Node1->Node26 - - + + + + + - + Node30 - - -abcgVulkanWindow.hpp + + +abcgVulkanWindow.hpp - + Node1->Node30 - - + + + + + - + Node3 - - -abcgApplication.hpp + + +abcgApplication.hpp - + Node2->Node3 - - + + + + + - + Node5 - - -abcgException.hpp + + +abcgException.hpp - + Node2->Node5 - - + + + + + - + Node8 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node2->Node8 - - + + + + + - + Node9 - - -abcgTrackball.hpp + + +abcgTrackball.hpp - + Node2->Node9 - - + + + + + - + Node12 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node2->Node12 - - + + + + + - + Node14 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node2->Node14 - - + + + + + - + Node4 - - -string + + +string - + Node3->Node4 - - + + + + + - + Node5->Node4 - - + + + + + - + Node6 - - -source_location + + +source_location - + Node5->Node6 - - + + + + + - + Node7 - - -stdexcept + + +stdexcept - + Node5->Node7 - - + + + + + - + Node9->Node8 - - + + + + + - + Node10 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node9->Node10 - - + + + + + - + Node11 - - -chrono + + +chrono - + Node10->Node11 - - + + + + + - + Node12->Node4 - - + + + + + - + Node13 - - -functional + + +functional - + Node12->Node13 - - + + + + + - + Node14->Node4 - - + + + + + - + Node14->Node8 - - + + + + + - + Node14->Node10 - - + + + + + - + Node16 - - -abcgVulkanDevice.hpp + + +abcgVulkanDevice.hpp - + Node15->Node16 - - + + + + + - + Node23 - - -gsl/pointers + + +gsl/pointers - + Node15->Node23 - - + + + + + - + Node16->Node13 - - + + + + + - + Node17 - - -abcgVulkanPhysicalDevice.hpp + + +abcgVulkanPhysicalDevice.hpp - + Node16->Node17 - - + + + + + - + Node18 - - -optional + + +optional - + Node17->Node18 - - + + + + + - + Node19 - - -abcgVulkanExternal.hpp + + +abcgVulkanExternal.hpp - + Node17->Node19 - - + + + + + - + Node22 - - -abcgVulkanInstance.hpp + + +abcgVulkanInstance.hpp - + Node17->Node22 - - + + + + + - + Node20 - - -volk.h + + +volk.h - + Node19->Node20 - - + + + + + - + Node21 - - -vulkan/vulkan.hpp + + +vulkan/vulkan.hpp - + Node19->Node21 - - + + + + + - + Node22->Node19 - - + + + + + - + Node24->Node16 - - + + + + + - + Node24->Node23 - - + + + + + - + Node25->Node26 - - + + + + + - + Node28 - - -abcgVulkanSwapchain.hpp + + +abcgVulkanSwapchain.hpp - + Node25->Node28 - - + + + + + - + Node26->Node16 - - + + + + + - + Node27 - - -abcgShader.hpp + + +abcgShader.hpp - + Node26->Node27 - - + + + + + - + Node27->Node4 - - + + + + + - + Node27->Node18 - - + + + + + - + Node28->Node13 - - + + + + + - + Node28->Node16 - - + + + + + - + Node28->Node24 - - + + + + + - + Node29 - - -glm/fwd.hpp + + +glm/fwd.hpp - + Node28->Node29 - - + + + + + - + Node30->Node14 - - + + + + + - + Node30->Node16 - - + + + + + - + Node30->Node17 - - + + + + + - + Node30->Node22 - - + + + + + - + Node30->Node28 - - + + + + + diff --git a/abcg/doc/html/abcgVulkan_8hpp_source.html b/abcg/doc/html/abcgVulkan_8hpp_source.html index 20d567e44..cff7dcc20 100644 --- a/abcg/doc/html/abcgVulkan_8hpp_source.html +++ b/abcg/doc/html/abcgVulkan_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgVulkan.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@
- + +/* @license-end */ + +
@@ -93,30 +99,36 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgVulkan.hpp
+
/home/harlen/dev/abcg/abcg/abcgVulkan.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_HPP_
-
14 #define ABCG_VULKAN_HPP_
-
15 
-
16 #define GLM_FORCE_DEPTH_ZERO_TO_ONE
-
17 
-
18 #include "abcg.hpp"
-
19 #include "abcgVulkanBuffer.hpp"
-
20 #include "abcgVulkanImage.hpp"
-
21 #include "abcgVulkanPipeline.hpp"
-
22 #include "abcgVulkanShader.hpp"
-
23 #include "abcgVulkanWindow.hpp"
-
24 
-
25 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_VULKAN_HPP_
+
14#define ABCG_VULKAN_HPP_
+
15
+
16#define GLM_FORCE_DEPTH_ZERO_TO_ONE
+
17
+
18#include "abcg.hpp"
+
19#include "abcgVulkanBuffer.hpp"
+
20#include "abcgVulkanImage.hpp"
+ +
22#include "abcgVulkanShader.hpp"
+
23#include "abcgVulkanWindow.hpp"
+
24
+
25#endif
Header file of abcg::VulkanBuffer.
Header file of abcg::VulkanImage.
Header file of abcg::VulkanPipeline.
@@ -129,7 +141,7 @@ diff --git a/abcg/doc/html/abcgWindow_8cpp.html b/abcg/doc/html/abcgWindow_8cpp.html index 11fb2dab6..c104ea492 100644 --- a/abcg/doc/html/abcgWindow_8cpp.html +++ b/abcg/doc/html/abcgWindow_8cpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgWindow.cpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgWindow.cpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgWindow.cpp File Reference
@@ -112,7 +119,7 @@
Include dependency graph for abcgWindow.cpp:
-
+

Detailed Description

Definition of abcg::Window members.

@@ -124,7 +131,7 @@ diff --git a/abcg/doc/html/abcgWindow_8cpp__incl.map b/abcg/doc/html/abcgWindow_8cpp__incl.map index 3dde603b7..8659b8135 100644 --- a/abcg/doc/html/abcgWindow_8cpp__incl.map +++ b/abcg/doc/html/abcgWindow_8cpp__incl.map @@ -1,10 +1,17 @@ - - - - - - - - + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgWindow_8cpp__incl.md5 b/abcg/doc/html/abcgWindow_8cpp__incl.md5 index 9a15909bb..314c8bf92 100644 --- a/abcg/doc/html/abcgWindow_8cpp__incl.md5 +++ b/abcg/doc/html/abcgWindow_8cpp__incl.md5 @@ -1 +1 @@ -8030f55f0e1ae1861100d04775f8d272 \ No newline at end of file +d7a3b05c074251f9055d9b49ba9138c8 \ No newline at end of file diff --git a/abcg/doc/html/abcgWindow_8cpp__incl.svg b/abcg/doc/html/abcgWindow_8cpp__incl.svg index 1f4679820..a553368f9 100644 --- a/abcg/doc/html/abcgWindow_8cpp__incl.svg +++ b/abcg/doc/html/abcgWindow_8cpp__incl.svg @@ -4,124 +4,145 @@ - - + + /home/harlen/dev/abcg/abcg/abcgWindow.cpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.cpp - + Node2 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node2 - - + + + + + - + Node7 - - -SDL_video.h + + +SDL_video.h - + Node1->Node7 - - + + + + + - + Node8 - - -imgui_impl_sdl2.h + + +imgui_impl_sdl2.h - + Node1->Node8 - - + + + + + - + Node3 - - -string + + +string - + Node2->Node3 - - + + + + + - + Node4 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node2->Node5 - - + + + + + - + Node6 - - -chrono + + +chrono - + Node5->Node6 - - + + + + + diff --git a/abcg/doc/html/abcgWindow_8hpp.html b/abcg/doc/html/abcgWindow_8hpp.html index 8b21b9c02..326c1436a 100644 --- a/abcg/doc/html/abcgWindow_8hpp.html +++ b/abcg/doc/html/abcgWindow_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgWindow.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -103,8 +111,7 @@ Classes | Namespaces | Functions
-
-
/home/harlen/dev/abcg/abcg/abcgWindow.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcgWindow.hpp File Reference
@@ -116,17 +123,17 @@
Include dependency graph for abcgWindow.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

- @@ -135,15 +142,15 @@

+

Classes

struct  abcg::WindowSettings
 Configuration settings of a window. More...
 Base abstract class that represents a SDL window. More...
 
- - +

+

Namespaces

 abcg
namespace  abcg
 Root namespace.
 
- - +

+

Functions

int abcg::resizingEventWatcher (void *data, SDL_Event *event)
int abcg::resizingEventWatcher (void *data, SDL_Event *event)
 

Detailed Description

@@ -157,7 +164,7 @@ diff --git a/abcg/doc/html/abcgWindow_8hpp.js b/abcg/doc/html/abcgWindow_8hpp.js index 628e80ed2..eb839060e 100644 --- a/abcg/doc/html/abcgWindow_8hpp.js +++ b/abcg/doc/html/abcgWindow_8hpp.js @@ -1,6 +1,6 @@ var abcgWindow_8hpp = [ - [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], - [ "Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ], + [ "abcg::WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], + [ "abcg::Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ], [ "resizingEventWatcher", "abcgWindow_8hpp.html#a6825799aa852dc7612dad9326be2fb3b", null ] ]; \ No newline at end of file diff --git a/abcg/doc/html/abcgWindow_8hpp__dep__incl.map b/abcg/doc/html/abcgWindow_8hpp__dep__incl.map index 3caef9993..bcbe86865 100644 --- a/abcg/doc/html/abcgWindow_8hpp__dep__incl.map +++ b/abcg/doc/html/abcgWindow_8hpp__dep__incl.map @@ -1,14 +1,29 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcgWindow_8hpp__dep__incl.md5 b/abcg/doc/html/abcgWindow_8hpp__dep__incl.md5 index 607b4109d..8d3a694cb 100644 --- a/abcg/doc/html/abcgWindow_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcgWindow_8hpp__dep__incl.md5 @@ -1 +1 @@ -491e73fd90f0a724eb6f927ef83000ff \ No newline at end of file +5a3ccd4bda69716c709175dfc61bd823 \ No newline at end of file diff --git a/abcg/doc/html/abcgWindow_8hpp__dep__incl.svg b/abcg/doc/html/abcgWindow_8hpp__dep__incl.svg index b8e213865..9833ac2cc 100644 --- a/abcg/doc/html/abcgWindow_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcgWindow_8hpp__dep__incl.svg @@ -4,219 +4,264 @@ - - + + /home/harlen/dev/abcg/abcg/abcgWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node1->Node2 - - + + + + + - + Node6 - - -/home/harlen/dev/abcg -/abcg/abcgApplication.cpp + + +/home/harlen/dev/abcg +/abcg/abcgApplication.cpp - + Node1->Node6 - - + + + + + - + Node7 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.cpp - + Node1->Node7 - - + + + + + - + Node8 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGLWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGLWindow.hpp - + Node1->Node8 - - + + + + + - + Node9 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.cpp - + Node1->Node9 - - + + + + + - + Node10 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanWindow.hpp - + Node1->Node10 - - + + + + + - + Node12 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.cpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.cpp - + Node1->Node12 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node2->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node2->Node4 - - + + + + + - + Node5 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node4->Node5 - - + + + + + - + Node8->Node3 - - + + + + + - + Node8->Node7 - - + + + + + - + Node10->Node4 - - + + + + + - + Node10->Node9 - - + + + + + - + Node11 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanSwapchain.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanSwapchain.cpp - + Node10->Node11 - - + + + + + diff --git a/abcg/doc/html/abcgWindow_8hpp__incl.map b/abcg/doc/html/abcgWindow_8hpp__incl.map index 62516f18a..0cf60a2ac 100644 --- a/abcg/doc/html/abcgWindow_8hpp__incl.map +++ b/abcg/doc/html/abcgWindow_8hpp__incl.map @@ -1,7 +1,11 @@ - - - - - + + + + + + + + + diff --git a/abcg/doc/html/abcgWindow_8hpp__incl.md5 b/abcg/doc/html/abcgWindow_8hpp__incl.md5 index 18489e7eb..45c359e2f 100644 --- a/abcg/doc/html/abcgWindow_8hpp__incl.md5 +++ b/abcg/doc/html/abcgWindow_8hpp__incl.md5 @@ -1 +1 @@ -ffa3ea445dbd804fb7c3dd2b35c2d2a0 \ No newline at end of file +7b1d9550c12526be2535899cc4492d99 \ No newline at end of file diff --git a/abcg/doc/html/abcgWindow_8hpp__incl.svg b/abcg/doc/html/abcgWindow_8hpp__incl.svg index 33a8c89be..de1411a10 100644 --- a/abcg/doc/html/abcgWindow_8hpp__incl.svg +++ b/abcg/doc/html/abcgWindow_8hpp__incl.svg @@ -4,79 +4,91 @@ - - + + /home/harlen/dev/abcg/abcg/abcgWindow.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcgWindow.hpp + + +/home/harlen/dev/abcg +/abcg/abcgWindow.hpp - + Node2 - - -string + + +string - + Node1->Node2 - - + + + + + - + Node3 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node1->Node4 - - + + + + + - + Node5 - - -chrono + + +chrono - + Node4->Node5 - - + + + + + diff --git a/abcg/doc/html/abcgWindow_8hpp_source.html b/abcg/doc/html/abcgWindow_8hpp_source.html index 5b5161616..dfec0a15e 100644 --- a/abcg/doc/html/abcgWindow_8hpp_source.html +++ b/abcg/doc/html/abcgWindow_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcgWindow.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,151 +99,161 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcgWindow.hpp
+
/home/harlen/dev/abcg/abcg/abcgWindow.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_WINDOW_HPP_
-
14 #define ABCG_WINDOW_HPP_
-
15 
-
16 #include <string>
-
17 
-
18 #include "abcgExternal.hpp"
-
19 #include "abcgTimer.hpp"
-
20 
-
21 #if defined(__EMSCRIPTEN__)
-
22 #include "abcgOpenGLExternal.hpp"
-
23 #endif
-
24 
-
25 namespace abcg {
-
26 struct WindowSettings;
-
27 class Application;
-
28 class Window;
-
29 int resizingEventWatcher(void *data, SDL_Event *event);
-
30 #if defined(__EMSCRIPTEN__)
-
31 EM_BOOL fullscreenchangeCallback(int eventType,
-
32  EmscriptenFullscreenChangeEvent const *event,
-
33  void *userData);
-
34 #endif
-
35 } // namespace abcg
-
36 
- -
53  int width{800};
-
60  int height{600};
-
62  bool showFPS{true};
- -
68  std::string fullscreenElementID{"#canvas"};
-
70  std::string title{"ABCg Window"};
-
71 };
-
72 
-
86 class abcg::Window {
-
87 public:
-
91  Window() = default;
-
92  Window(Window const &) = delete;
-
96  Window(Window &&) = default;
-
97  Window &operator=(Window const &) = delete;
-
101  Window &operator=(Window &&) = default;
-
105  virtual ~Window() = default;
-
106 
-
107  [[nodiscard]] WindowSettings const &getWindowSettings() const noexcept;
-
108  void setWindowSettings(WindowSettings const &windowSettings);
-
109 
-
110 protected:
-
120  virtual void handleEvent(SDL_Event const &event) = 0;
-
121 
-
127  virtual void create() = 0;
-
128 
-
135  virtual void paint() = 0;
-
136 
-
142  virtual void destroy() = 0;
-
143 
-
153  [[nodiscard]] virtual glm::ivec2 getWindowSize() const = 0;
-
154 
-
155  [[nodiscard]] double getDeltaTime() const noexcept;
-
156  [[nodiscard]] double getElapsedTime() const;
-
157  [[nodiscard]] SDL_Window *getSDLWindow() const noexcept;
-
158  [[nodiscard]] Uint32 getSDLWindowID() const noexcept;
-
159 
-
160  bool createSDLWindow(SDL_WindowFlags extraFlags);
-
161  void setEnableResizingEventWatcher(bool enabled) noexcept;
-
162  void toggleFullscreen();
-
163 
-
164 private:
-
165  void templateHandleEvent(SDL_Event const &event, bool &done);
-
166  void templateCreate();
-
167  void templatePaint();
-
168  void templateDestroy();
-
169 
-
170  SDL_Window *m_window{};
-
171  Uint32 m_windowID{};
-
172 
-
173  WindowSettings m_windowSettings;
-
174 
-
175  Timer m_deltaTime;
-
176  Timer m_elapsedTime;
-
177  double m_lastDeltaTime{};
-
178 
-
179  bool m_enableResizingEventWatcher{true};
-
180 
-
181  friend Application;
-
182  friend int resizingEventWatcher(void *data, SDL_Event *event);
-
183 #if defined(__EMSCRIPTEN__)
-
184  friend EM_BOOL
-
185  fullscreenchangeCallback(int eventType,
-
186  EmscriptenFullscreenChangeEvent const *event,
-
187  void *userData);
-
188 #endif
-
189 };
-
190 
-
191 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_WINDOW_HPP_
+
14#define ABCG_WINDOW_HPP_
+
15
+
16#include <string>
+
17
+
18#include "abcgExternal.hpp"
+
19#include "abcgTimer.hpp"
+
20
+
21#if defined(__EMSCRIPTEN__)
+ +
23#endif
+
24
+
25namespace abcg {
+
26struct WindowSettings;
+
27class Application;
+
28class Window;
+
29int resizingEventWatcher(void *data, SDL_Event *event);
+
30#if defined(__EMSCRIPTEN__)
+
31EM_BOOL fullscreenchangeCallback(int eventType,
+
32 EmscriptenFullscreenChangeEvent const *event,
+
33 void *userData);
+
34#endif
+
35} // namespace abcg
+
36
+
+ +
53 int width{800};
+
60 int height{600};
+
62 bool showFPS{true};
+ +
68 std::string fullscreenElementID{"#canvas"};
+
70 std::string title{"ABCg Window"};
+
71};
+
+
72
+
+ +
87public:
+
91 Window() = default;
+
92 Window(Window const &) = delete;
+
96 Window(Window &&) = default;
+
97 Window &operator=(Window const &) = delete;
+
101 Window &operator=(Window &&) = default;
+
105 virtual ~Window() = default;
+
106
+
107 [[nodiscard]] WindowSettings const &getWindowSettings() const noexcept;
+
108 void setWindowSettings(WindowSettings const &windowSettings);
+
109
+
110protected:
+
120 virtual void handleEvent(SDL_Event const &event) = 0;
+
121
+
127 virtual void create() = 0;
+
128
+
135 virtual void paint() = 0;
+
136
+
142 virtual void destroy() = 0;
+
143
+
153 [[nodiscard]] virtual glm::ivec2 getWindowSize() const = 0;
+
154
+
155 [[nodiscard]] double getDeltaTime() const noexcept;
+
156 [[nodiscard]] double getElapsedTime() const;
+
157 [[nodiscard]] SDL_Window *getSDLWindow() const noexcept;
+
158 [[nodiscard]] Uint32 getSDLWindowID() const noexcept;
+
159
+
160 bool createSDLWindow(SDL_WindowFlags extraFlags);
+
161 void setEnableResizingEventWatcher(bool enabled) noexcept;
+
162 void toggleFullscreen();
+
163
+
164private:
+
165 void templateHandleEvent(SDL_Event const &event, bool &done);
+
166 void templateCreate();
+
167 void templatePaint();
+
168 void templateDestroy();
+
169
+
170 SDL_Window *m_window{};
+
171 Uint32 m_windowID{};
+
172
+
173 WindowSettings m_windowSettings;
+
174
+
175 Timer m_deltaTime;
+
176 Timer m_elapsedTime;
+
177 double m_lastDeltaTime{};
+
178
+
179 bool m_enableResizingEventWatcher{true};
+
180
+
181 friend Application;
+
182 friend int resizingEventWatcher(void *data, SDL_Event *event);
+
183#if defined(__EMSCRIPTEN__)
+
184 friend EM_BOOL
+
185 fullscreenchangeCallback(int eventType,
+
186 EmscriptenFullscreenChangeEvent const *event,
+
187 void *userData);
+
188#endif
+
189};
+
+
190
+
191#endif
Header file for including third-party dependencies.
Header file for including OpenGL-related third-party dependencies.
Header file of abcg::Timer.
-
Base abstract class that represents a SDL window.
Definition: abcgWindow.hpp:86
-
double getDeltaTime() const noexcept
Returns the time that have passed since the last frame.
Definition: abcgWindow.cpp:167
-
bool createSDLWindow(SDL_WindowFlags extraFlags)
Creates the SDL window.
Definition: abcgWindow.cpp:240
+
Base abstract class that represents a SDL window.
Definition abcgWindow.hpp:86
+
double getDeltaTime() const noexcept
Returns the time that have passed since the last frame.
Definition abcgWindow.cpp:167
+
bool createSDLWindow(SDL_WindowFlags extraFlags)
Creates the SDL window.
Definition abcgWindow.cpp:240
Window(Window &&)=default
Default move constructor.
-
Window & operator=(Window const &)=delete
friend int resizingEventWatcher(void *data, SDL_Event *event)
-
double getElapsedTime() const
Returns the time that have passed since the window was created.
Definition: abcgWindow.cpp:174
-
Window & operator=(Window &&)=default
Default move assignment.
+
double getElapsedTime() const
Returns the time that have passed since the window was created.
Definition abcgWindow.cpp:174
virtual void paint()=0
Custom handler for window repainting.
-
SDL_Window * getSDLWindow() const noexcept
Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::crea...
Definition: abcgWindow.cpp:220
-
Uint32 getSDLWindowID() const noexcept
Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or ...
Definition: abcgWindow.cpp:230
+
SDL_Window * getSDLWindow() const noexcept
Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::crea...
Definition abcgWindow.cpp:220
+
Uint32 getSDLWindowID() const noexcept
Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or ...
Definition abcgWindow.cpp:230
virtual void handleEvent(SDL_Event const &event)=0
Custom event handler.
-
void setWindowSettings(WindowSettings const &windowSettings)
Sets the configuration settings of the window.
Definition: abcgWindow.cpp:188
-
WindowSettings const & getWindowSettings() const noexcept
Returns the current configuration settings of the window.
Definition: abcgWindow.cpp:181
+
void setWindowSettings(WindowSettings const &windowSettings)
Sets the configuration settings of the window.
Definition abcgWindow.cpp:188
+
WindowSettings const & getWindowSettings() const noexcept
Returns the current configuration settings of the window.
Definition abcgWindow.cpp:181
virtual void destroy()=0
Custom handler for window cleanup tasks.
+
Window & operator=(Window &&)=default
Default move assignment.
Window()=default
Default constructor.
Window(Window const &)=delete
virtual ~Window()=default
Default destructor.
virtual void create()=0
Custom handler for window initialization tasks.
-
void setEnableResizingEventWatcher(bool enabled) noexcept
Toggles the resizing event watcher on/off.
Definition: abcgWindow.cpp:276
-
void toggleFullscreen()
Toggles between fullscreen and windowed mode.
Definition: abcgWindow.cpp:283
+
void setEnableResizingEventWatcher(bool enabled) noexcept
Toggles the resizing event watcher on/off.
Definition abcgWindow.cpp:276
+
void toggleFullscreen()
Toggles between fullscreen and windowed mode.
Definition abcgWindow.cpp:283
+
Window & operator=(Window const &)=delete
virtual glm::ivec2 getWindowSize() const =0
Returns the size of the SDL window.
-
Root namespace.
Definition: abcgApplication.hpp:23
-
int resizingEventWatcher(void *data, SDL_Event *event)
Definition: abcgWindow.cpp:127
-
Configuration settings of a window.
Definition: abcgWindow.hpp:46
-
bool showFullscreenButton
Whether to show a button to toggle fullscreen on/off.
Definition: abcgWindow.hpp:64
-
std::string fullscreenElementID
HTML element ID used for registering the fullscreen callback when the application is built for WebAss...
Definition: abcgWindow.hpp:68
-
int height
Window height in windowed mode, in pixels.
Definition: abcgWindow.hpp:60
-
std::string title
String containing the window title.
Definition: abcgWindow.hpp:70
-
bool showFPS
Whether to show an overlay window with a FPS counter.
Definition: abcgWindow.hpp:62
-
int width
Window width in windowed mode, in pixels.
Definition: abcgWindow.hpp:53
+
Root namespace.
Definition abcgApplication.hpp:23
+
int resizingEventWatcher(void *data, SDL_Event *event)
Definition abcgWindow.cpp:127
+
Configuration settings of a window.
Definition abcgWindow.hpp:46
+
bool showFullscreenButton
Whether to show a button to toggle fullscreen on/off.
Definition abcgWindow.hpp:64
+
std::string fullscreenElementID
HTML element ID used for registering the fullscreen callback when the application is built for WebAss...
Definition abcgWindow.hpp:68
+
int height
Window height in windowed mode, in pixels.
Definition abcgWindow.hpp:60
+
std::string title
String containing the window title.
Definition abcgWindow.hpp:70
+
bool showFPS
Whether to show an overlay window with a FPS counter.
Definition abcgWindow.hpp:62
+
int width
Window width in windowed mode, in pixels.
Definition abcgWindow.hpp:53
diff --git a/abcg/doc/html/abcg_8hpp.html b/abcg/doc/html/abcg_8hpp.html index a8e7aa5f6..993d7bb0f 100644 --- a/abcg/doc/html/abcg_8hpp.html +++ b/abcg/doc/html/abcg_8hpp.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcg.hpp File Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcg.hpp File Reference
+
/home/harlen/dev/abcg/abcg/abcg.hpp File Reference
@@ -115,12 +122,12 @@
Include dependency graph for abcg.hpp:
-
+
This graph shows which files directly or indirectly include this file:
-
+

Go to the source code of this file.

@@ -135,7 +142,7 @@ diff --git a/abcg/doc/html/abcg_8hpp__dep__incl.map b/abcg/doc/html/abcg_8hpp__dep__incl.map index bb54a3b09..74bf4fd5e 100644 --- a/abcg/doc/html/abcg_8hpp__dep__incl.map +++ b/abcg/doc/html/abcg_8hpp__dep__incl.map @@ -1,6 +1,9 @@ - - - - + + + + + + + diff --git a/abcg/doc/html/abcg_8hpp__dep__incl.md5 b/abcg/doc/html/abcg_8hpp__dep__incl.md5 index 70d8d7888..810b9751d 100644 --- a/abcg/doc/html/abcg_8hpp__dep__incl.md5 +++ b/abcg/doc/html/abcg_8hpp__dep__incl.md5 @@ -1 +1 @@ -aa6b4a798a7d82efed2ced520b5c4c48 \ No newline at end of file +1858a6de7282dc213056941e014f456a \ No newline at end of file diff --git a/abcg/doc/html/abcg_8hpp__dep__incl.svg b/abcg/doc/html/abcg_8hpp__dep__incl.svg index 4121f076f..4f6206a4f 100644 --- a/abcg/doc/html/abcg_8hpp__dep__incl.svg +++ b/abcg/doc/html/abcg_8hpp__dep__incl.svg @@ -4,67 +4,76 @@ - - + + /home/harlen/dev/abcg/abcg/abcg.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node2 - - -/home/harlen/dev/abcg -/abcg/abcgOpenGL.hpp + + +/home/harlen/dev/abcg +/abcg/abcgOpenGL.hpp - + Node1->Node2 - - + + + + + - + Node3 - - -/home/harlen/dev/abcg -/abcg/abcgVulkan.hpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkan.hpp - + Node1->Node3 - - + + + + + - + Node4 - - -/home/harlen/dev/abcg -/abcg/abcgVulkanInstance.cpp + + +/home/harlen/dev/abcg +/abcg/abcgVulkanInstance.cpp - + Node3->Node4 - - + + + + + diff --git a/abcg/doc/html/abcg_8hpp__incl.map b/abcg/doc/html/abcg_8hpp__incl.map index a1fcf6539..0cf5c87f4 100644 --- a/abcg/doc/html/abcg_8hpp__incl.map +++ b/abcg/doc/html/abcg_8hpp__incl.map @@ -1,15 +1,33 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/abcg/doc/html/abcg_8hpp__incl.md5 b/abcg/doc/html/abcg_8hpp__incl.md5 index 087d48c16..eea6060dd 100644 --- a/abcg/doc/html/abcg_8hpp__incl.md5 +++ b/abcg/doc/html/abcg_8hpp__incl.md5 @@ -1 +1 @@ -207ae6f2d902ed67878a0019e58f7b4f \ No newline at end of file +6bf430fca9e974ee6a614c46f47a2cd3 \ No newline at end of file diff --git a/abcg/doc/html/abcg_8hpp__incl.svg b/abcg/doc/html/abcg_8hpp__incl.svg index 77df4bf83..69a8fc7d9 100644 --- a/abcg/doc/html/abcg_8hpp__incl.svg +++ b/abcg/doc/html/abcg_8hpp__incl.svg @@ -4,235 +4,289 @@ - - + + /home/harlen/dev/abcg/abcg/abcg.hpp - + Node1 - - -/home/harlen/dev/abcg -/abcg/abcg.hpp + + +/home/harlen/dev/abcg +/abcg/abcg.hpp - + Node2 - - -abcgApplication.hpp + + +abcgApplication.hpp - + Node1->Node2 - - + + + + + - + Node4 - - -abcgException.hpp + + +abcgException.hpp - + Node1->Node4 - - + + + + + - + Node7 - - -abcgExternal.hpp + + +abcgExternal.hpp - + Node1->Node7 - - + + + + + - + Node8 - - -abcgTrackball.hpp + + +abcgTrackball.hpp - + Node1->Node8 - - + + + + + - + Node11 - - -abcgUtil.hpp + + +abcgUtil.hpp - + Node1->Node11 - - + + + + + - + Node13 - - -abcgWindow.hpp + + +abcgWindow.hpp - + Node1->Node13 - - + + + + + - + Node3 - - -string + + +string - + Node2->Node3 - - + + + + + - + Node4->Node3 - - + + + + + - + Node5 - - -source_location + + +source_location - + Node4->Node5 - - + + + + + - + Node6 - - -stdexcept + + +stdexcept - + Node4->Node6 - - + + + + + - + Node8->Node7 - - + + + + + - + Node9 - - -abcgTimer.hpp + + +abcgTimer.hpp - + Node8->Node9 - - + + + + + - + Node10 - - -chrono + + +chrono - + Node9->Node10 - - + + + + + - + Node11->Node3 - - + + + + + - + Node12 - - -functional + + +functional - + Node11->Node12 - - + + + + + - + Node13->Node3 - - + + + + + - + Node13->Node7 - - + + + + + - + Node13->Node9 - - + + + + + diff --git a/abcg/doc/html/abcg_8hpp_source.html b/abcg/doc/html/abcg_8hpp_source.html index 65453f916..cdf74f452 100644 --- a/abcg/doc/html/abcg_8hpp_source.html +++ b/abcg/doc/html/abcg_8hpp_source.html @@ -5,7 +5,7 @@ - + ABCg: /home/harlen/dev/abcg/abcg/abcg.hpp Source File @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,22 +51,28 @@ - + +/* @license-end */ + +
@@ -93,28 +99,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
/home/harlen/dev/abcg/abcg/abcg.hpp
+
/home/harlen/dev/abcg/abcg/abcg.hpp
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_HPP_
-
14 #define ABCG_HPP_
-
15 
-
16 #include "abcgApplication.hpp"
-
17 #include "abcgException.hpp"
-
18 #include "abcgExternal.hpp"
-
19 #include "abcgTrackball.hpp"
-
20 #include "abcgUtil.hpp"
-
21 #include "abcgWindow.hpp"
-
22 
-
23 #endif
+Go to the documentation of this file.
1
+
13#ifndef ABCG_HPP_
+
14#define ABCG_HPP_
+
15
+
16#include "abcgApplication.hpp"
+
17#include "abcgException.hpp"
+
18#include "abcgExternal.hpp"
+
19#include "abcgTrackball.hpp"
+
20#include "abcgUtil.hpp"
+
21#include "abcgWindow.hpp"
+
22
+
23#endif
Header file of abcg::Application.
Header file of abcg::Exception and derived classes.
Header file for including third-party dependencies.
@@ -127,7 +139,7 @@ diff --git a/abcg/doc/html/abcg__application_8cpp.html b/abcg/doc/html/abcg__application_8cpp.html deleted file mode 100644 index 04665c153..000000000 --- a/abcg/doc/html/abcg__application_8cpp.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_application.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_application.cpp File Reference
-
-
- -

Definition of abcg::Application members. -More...

-
#include "abcg_application.hpp"
-#include <SDL_thread.h>
-#include <span>
-#include "SDL_image.h"
-#include "abcg_exception.hpp"
-#include "abcg_window.hpp"
-#include "tiny_obj_loader.h"
-
-Include dependency graph for abcg_application.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::Application members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__application_8cpp__incl.map b/abcg/doc/html/abcg__application_8cpp__incl.map deleted file mode 100644 index 20b550475..000000000 --- a/abcg/doc/html/abcg__application_8cpp__incl.map +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__application_8cpp__incl.md5 b/abcg/doc/html/abcg__application_8cpp__incl.md5 deleted file mode 100644 index 3800de937..000000000 --- a/abcg/doc/html/abcg__application_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -48ed0a56606ca9fa8297a264995b4b87 \ No newline at end of file diff --git a/abcg/doc/html/abcg__application_8cpp__incl.svg b/abcg/doc/html/abcg__application_8cpp__incl.svg deleted file mode 100644 index a6c16f432..000000000 --- a/abcg/doc/html/abcg__application_8cpp__incl.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_application.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node2 - - -abcg_application.hpp - - - - - -Node1->Node2 - - - - - -Node4 - - -SDL_thread.h - - - - - -Node1->Node4 - - - - - -Node5 - - -span - - - - - -Node1->Node5 - - - - - -Node6 - - -SDL_image.h - - - - - -Node1->Node6 - - - - - -Node7 - - -abcg_exception.hpp - - - - - -Node1->Node7 - - - - - -Node10 - - -abcg_window.hpp - - - - - -Node1->Node10 - - - - - -Node14 - - -tiny_obj_loader.h - - - - - -Node1->Node14 - - - - - -Node3 - - -string - - - - - -Node2->Node3 - - - - - -Node7->Node3 - - - - - -Node8 - - -source_location - - - - - -Node7->Node8 - - - - - -Node9 - - -stdexcept - - - - - -Node7->Node9 - - - - - -Node10->Node3 - - - - - -Node11 - - -abcg_elapsedtimer.hpp - - - - - -Node10->Node11 - - - - - -Node13 - - -abcg_external.hpp - - - - - -Node10->Node13 - - - - - -Node12 - - -chrono - - - - - -Node11->Node12 - - - - - diff --git a/abcg/doc/html/abcg__application_8hpp.html b/abcg/doc/html/abcg__application_8hpp.html deleted file mode 100644 index 074c42449..000000000 --- a/abcg/doc/html/abcg__application_8hpp.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_application.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_application.hpp File Reference
-
-
- -

Header file of abcg::Application. -More...

-
#include <string>
-
-Include dependency graph for abcg_application.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::Application
 Manages the application's control flow. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - - - -

-Macros

#define ABCG_VERSION_MAJOR   3
 
#define ABCG_VERSION_MINOR   0
 
#define ABCG_VERSION_PATCH   0
 
-

Detailed Description

-

Header file of abcg::Application.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -

Macro Definition Documentation

- -

◆ ABCG_VERSION_MAJOR

- -
-
- - - - -
#define ABCG_VERSION_MAJOR   3
-
- -
-
- -

◆ ABCG_VERSION_MINOR

- -
-
- - - - -
#define ABCG_VERSION_MINOR   0
-
- -
-
- -

◆ ABCG_VERSION_PATCH

- -
-
- - - - -
#define ABCG_VERSION_PATCH   0
-
- -
-
-
-
- - - - diff --git a/abcg/doc/html/abcg__application_8hpp.js b/abcg/doc/html/abcg__application_8hpp.js deleted file mode 100644 index 7dbf37085..000000000 --- a/abcg/doc/html/abcg__application_8hpp.js +++ /dev/null @@ -1,7 +0,0 @@ -var abcg__application_8hpp = -[ - [ "Application", "classabcg_1_1Application.html", "classabcg_1_1Application" ], - [ "ABCG_VERSION_MAJOR", "abcg__application_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f", null ], - [ "ABCG_VERSION_MINOR", "abcg__application_8hpp.html#a7396b0333e58c89fbafa65e76af72183", null ], - [ "ABCG_VERSION_PATCH", "abcg__application_8hpp.html#af521d4146de1ade55008a4d5f0ddd768", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__application_8hpp__dep__incl.map b/abcg/doc/html/abcg__application_8hpp__dep__incl.map deleted file mode 100644 index 075a5cd84..000000000 --- a/abcg/doc/html/abcg__application_8hpp__dep__incl.map +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/abcg/doc/html/abcg__application_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__application_8hpp__dep__incl.md5 deleted file mode 100644 index bf542ec39..000000000 --- a/abcg/doc/html/abcg__application_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -84888815886ae7e0501c6cccff30a251 \ No newline at end of file diff --git a/abcg/doc/html/abcg__application_8hpp__dep__incl.svg b/abcg/doc/html/abcg__application_8hpp__dep__incl.svg deleted file mode 100644 index 6b2aeccda..000000000 --- a/abcg/doc/html/abcg__application_8hpp__dep__incl.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_application.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node1->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node1->Node5 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node6 - - - - - diff --git a/abcg/doc/html/abcg__application_8hpp__incl.map b/abcg/doc/html/abcg__application_8hpp__incl.map deleted file mode 100644 index f116e1c2a..000000000 --- a/abcg/doc/html/abcg__application_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/abcg/doc/html/abcg__application_8hpp__incl.md5 b/abcg/doc/html/abcg__application_8hpp__incl.md5 deleted file mode 100644 index d4e2da619..000000000 --- a/abcg/doc/html/abcg__application_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -a9dba72759daabde18b0d13cc8acabd5 \ No newline at end of file diff --git a/abcg/doc/html/abcg__application_8hpp__incl.svg b/abcg/doc/html/abcg__application_8hpp__incl.svg deleted file mode 100644 index 47238b041..000000000 --- a/abcg/doc/html/abcg__application_8hpp__incl.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_application.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.hpp - - - - - -Node2 - - -string - - - - - -Node1->Node2 - - - - - diff --git a/abcg/doc/html/abcg__application_8hpp_source.html b/abcg/doc/html/abcg__application_8hpp_source.html deleted file mode 100644 index a545c27eb..000000000 --- a/abcg/doc/html/abcg__application_8hpp_source.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_application.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_application.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_APPLICATION_HPP_
-
12 #define ABCG_APPLICATION_HPP_
-
13 
-
14 #include <string>
-
15 
-
16 #define ABCG_VERSION_MAJOR 3
-
17 #define ABCG_VERSION_MINOR 0
-
18 #define ABCG_VERSION_PATCH 0
-
19 
-
23 namespace abcg {
-
24 class Application;
-
25 class Window;
-
26 #if defined(__EMSCRIPTEN__)
-
27 void mainLoopCallback(void *userData);
-
28 #endif
-
29 } // namespace abcg
-
30 
- -
38 public:
-
39  Application(int argc, char **argv);
-
40 
-
41  void run(Window &window);
-
42 
-
58  [[nodiscard]] static std::string const &getAssetsPath() {
-
59  return m_assetsPath;
-
60  }
-
61 
-
74  [[nodiscard]] static std::string const &getBasePath() { return m_basePath; }
-
75 
-
76 private:
-
77  void mainLoopIterator(bool &done) const;
-
78 
-
79  Window *m_window{};
-
80 
-
81 #if defined(__EMSCRIPTEN__)
-
82  friend void mainLoopCallback(void *userData);
-
83 #endif
-
84 
-
85  // NOLINTBEGIN(cppcoreguidelines-avoid-non-const-global-variables)
-
86  // See https://bugs.llvm.org/show_bug.cgi?id=48040
-
87  static inline std::string m_assetsPath{};
-
88  static inline std::string m_basePath{};
-
89  // NOLINTEND(cppcoreguidelines-avoid-non-const-global-variables)
-
90 };
-
91 
-
92 #endif
-
Manages the application's control flow.
Definition: abcg_application.hpp:37
-
static std::string const & getBasePath()
Returns the path to the application's directory, relative to the directory the executable is launched...
Definition: abcg_application.hpp:74
-
void run(Window &window)
Runs the application for the given window.
Definition: abcg_application.cpp:76
-
Application(int argc, char **argv)
Constructs an abcg::Application object.
Definition: abcg_application.cpp:47
-
static std::string const & getAssetsPath()
Returns the path to the application's assets directory, relative to the directory the executable is l...
Definition: abcg_application.hpp:58
-
Base abstract class that represents a SDL window.
Definition: abcg_window.hpp:86
-
Root namespace.
Definition: abcg_application.hpp:23
-
-
- - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8cpp.html b/abcg/doc/html/abcg__elapsedtimer_8cpp.html deleted file mode 100644 index 254326d90..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8cpp.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.cpp File Reference
-
-
- -

Definition of abcg::ElapsedTimer members. -More...

-
-Include dependency graph for abcg_elapsedtimer.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::ElapsedTimer members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.map b/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.map deleted file mode 100644 index b6f55e3a3..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.md5 b/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.md5 deleted file mode 100644 index 091418c69..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -f0423d3b12423224a47820e1f4f97bc5 \ No newline at end of file diff --git a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.svg b/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.svg deleted file mode 100644 index 11887669a..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8cpp__incl.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_elapsedtimer.cpp - - - - - -Node2 - - -abcg_elapsedtimer.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -chrono - - - - - -Node2->Node3 - - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp.html b/abcg/doc/html/abcg__elapsedtimer_8hpp.html deleted file mode 100644 index b73273d29..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp File Reference
-
-
- -

Header file of abcg::ElapsedTimer. -More...

-
#include <chrono>
-
-Include dependency graph for abcg_elapsedtimer.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::ElapsedTimer
 Represents a timer that calculates how much time has elapsed between two events. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::ElapsedTimer.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.map b/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.map deleted file mode 100644 index 3553a2d14..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.map +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.md5 deleted file mode 100644 index a948d92ee..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -bfb977af1c761f554d59c7de1c4c3247 \ No newline at end of file diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.svg b/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.svg deleted file mode 100644 index fc76fc988..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__dep__incl.svg +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_elapsedtimer.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_elapsedtimer.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.hpp - - - - - -Node1->Node3 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.hpp - - - - - -Node1->Node6 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg.hpp - - - - - -Node3->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.cpp - - - - - -Node3->Node5 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node6->Node7 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node6->Node8 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node6->Node9 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node6->Node11 - - - - - -Node12 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node6->Node12 - - - - - -Node13 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node6->Node13 - - - - - -Node15 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.cpp - - - - - -Node6->Node15 - - - - - -Node9->Node8 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node9->Node10 - - - - - -Node13->Node12 - - - - - -Node14 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node13->Node14 - - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.map b/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.map deleted file mode 100644 index 40704f870..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.md5 b/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.md5 deleted file mode 100644 index 4dde2d2da..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ad620822318901daae9eccab2f62f8da \ No newline at end of file diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.svg b/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.svg deleted file mode 100644 index 0a38ead3e..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp__incl.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_elapsedtimer.hpp - - - - - -Node2 - - -chrono - - - - - -Node1->Node2 - - - - - diff --git a/abcg/doc/html/abcg__elapsedtimer_8hpp_source.html b/abcg/doc/html/abcg__elapsedtimer_8hpp_source.html deleted file mode 100644 index d9458b231..000000000 --- a/abcg/doc/html/abcg__elapsedtimer_8hpp_source.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_elapsedtimer.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_ELAPSEDTIMER_HPP_
-
12 #define ABCG_ELAPSEDTIMER_HPP_
-
13 
-
14 #include <chrono>
-
15 
-
16 namespace abcg {
-
17 class ElapsedTimer;
-
18 } // namespace abcg
-
19 
- -
27 public:
-
28  [[nodiscard]] double elapsed() const;
-
29  double restart();
-
30 
-
31 private:
-
32  using clock = std::chrono::steady_clock;
-
33 
-
34  clock::time_point start{clock::now()};
-
35 };
-
36 
-
37 #endif
-
Represents a timer that calculates how much time has elapsed between two events.
Definition: abcg_elapsedtimer.hpp:26
-
double elapsed() const
Returns how much time has elapsed since the timer has started.
Definition: abcg_elapsedtimer.cpp:21
-
double restart()
Restarts the timer and returns the last elapsed time.
Definition: abcg_elapsedtimer.cpp:31
-
Root namespace.
Definition: abcg_application.hpp:23
-
-
- - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp.html b/abcg/doc/html/abcg__embeddedfonts_8hpp.html deleted file mode 100644 index 1562a2f71..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp File Reference
-
-
-
#include <array>
-
-Include dependency graph for abcg_embeddedfonts.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

-
-
- - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.map b/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.map deleted file mode 100644 index 428ff6f9a..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.md5 deleted file mode 100644 index 3b7e92cc9..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -43f2d2fadd5bb8437af89e0fea14f286 \ No newline at end of file diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.svg b/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.svg deleted file mode 100644 index 2fec32bee..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_embeddedfonts.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.map b/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.map deleted file mode 100644 index b3d49d68b..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.md5 b/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.md5 deleted file mode 100644 index af65fb5f5..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ebd27dfb2c4a0a0dd68868a2b653fa78 \ No newline at end of file diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.svg b/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.svg deleted file mode 100644 index 3f7dfa9e8..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp__incl.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_embeddedfonts.hpp - - - - - -Node2 - - -array - - - - - -Node1->Node2 - - - - - diff --git a/abcg/doc/html/abcg__embeddedfonts_8hpp_source.html b/abcg/doc/html/abcg__embeddedfonts_8hpp_source.html deleted file mode 100644 index 4ad6ef3d8..000000000 --- a/abcg/doc/html/abcg__embeddedfonts_8hpp_source.html +++ /dev/null @@ -1,8304 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_embeddedfonts.hpp
-
-
-Go to the documentation of this file.
1 #include <array>
-
2 
-
3 static std::array<unsigned char, 98304> const INCONSOLATA_MEDIUM_TTF{
-
4  0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x01, 0x00, 0x00, 0x04, 0x00, 0x20,
-
5  0x47, 0x44, 0x45, 0x46, 0x56, 0xb3, 0x54, 0x99, 0x00, 0x01, 0x57, 0x10,
-
6  0x00, 0x00, 0x01, 0x34, 0x47, 0x50, 0x4f, 0x53, 0x88, 0x2b, 0x49, 0x3f,
-
7  0x00, 0x01, 0x58, 0x44, 0x00, 0x00, 0x1d, 0xb8, 0x47, 0x53, 0x55, 0x42,
-
8  0x16, 0xda, 0x4e, 0xfc, 0x00, 0x01, 0x75, 0xfc, 0x00, 0x00, 0x09, 0xc4,
-
9  0x4f, 0x53, 0x2f, 0x32, 0x5f, 0xf9, 0x23, 0x31, 0x00, 0x01, 0x0d, 0x0c,
-
10  0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, 0xf3, 0x5b, 0xdf, 0xaf,
-
11  0x00, 0x01, 0x7f, 0xc0, 0x00, 0x00, 0x00, 0x40, 0x63, 0x6d, 0x61, 0x70,
-
12  0x2d, 0x65, 0xdc, 0x7a, 0x00, 0x01, 0x0d, 0x6c, 0x00, 0x00, 0x0a, 0x40,
-
13  0x63, 0x76, 0x74, 0x20, 0x16, 0xeb, 0x0d, 0xba, 0x00, 0x01, 0x29, 0xfc,
-
14  0x00, 0x00, 0x00, 0xf0, 0x66, 0x70, 0x67, 0x6d, 0xe2, 0x19, 0x9e, 0x5a,
-
15  0x00, 0x01, 0x17, 0xac, 0x00, 0x00, 0x0f, 0x94, 0x67, 0x61, 0x73, 0x70,
-
16  0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x57, 0x08, 0x00, 0x00, 0x00, 0x08,
-
17  0x67, 0x6c, 0x79, 0x66, 0x8e, 0x69, 0x44, 0x44, 0x00, 0x00, 0x01, 0x2c,
-
18  0x00, 0x00, 0xf4, 0xd4, 0x68, 0x65, 0x61, 0x64, 0x19, 0x41, 0x8d, 0x10,
-
19  0x00, 0x00, 0xfd, 0xa8, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61,
-
20  0x08, 0xbd, 0x06, 0xc6, 0x00, 0x01, 0x0c, 0xe8, 0x00, 0x00, 0x00, 0x24,
-
21  0x68, 0x6d, 0x74, 0x78, 0x09, 0x15, 0xc7, 0x45, 0x00, 0x00, 0xfd, 0xe0,
-
22  0x00, 0x00, 0x0f, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x40, 0xfb, 0x04, 0x93,
-
23  0x00, 0x00, 0xf6, 0x20, 0x00, 0x00, 0x07, 0x86, 0x6d, 0x61, 0x78, 0x70,
-
24  0x07, 0x7a, 0x10, 0xd4, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x20,
-
25  0x6e, 0x61, 0x6d, 0x65, 0x9f, 0x6b, 0xb9, 0xbe, 0x00, 0x01, 0x2a, 0xec,
-
26  0x00, 0x00, 0x05, 0x7e, 0x70, 0x6f, 0x73, 0x74, 0xa2, 0x18, 0xb3, 0xb6,
-
27  0x00, 0x01, 0x30, 0x6c, 0x00, 0x00, 0x26, 0x9a, 0x70, 0x72, 0x65, 0x70,
-
28  0x2b, 0xfa, 0x72, 0x3a, 0x00, 0x01, 0x27, 0x40, 0x00, 0x00, 0x02, 0xbb,
-
29  0x00, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x02, 0x78, 0x00, 0x03,
-
30  0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0d, 0x04, 0x06, 0x02, 0x01, 0x01, 0x06,
-
31  0x07, 0x03, 0x72, 0x0a, 0x06, 0x08, 0x72, 0x00, 0x2b, 0xc4, 0x2b, 0x11,
-
32  0x39, 0x2f, 0x33, 0x11, 0x39, 0x30, 0x31, 0x65, 0x23, 0x37, 0x33, 0x27,
-
33  0x03, 0x23, 0x13, 0x33, 0x13, 0x23, 0x01, 0x68, 0xe8, 0x0f, 0xc8, 0x5e,
-
34  0x97, 0x53, 0xdf, 0x18, 0xdf, 0x56, 0xaa, 0x3f, 0xde, 0xfe, 0x39, 0x02,
-
35  0x78, 0xfd, 0x88, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
36  0x03, 0x1b, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
37  0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56,
-
38  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
39  0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
-
40  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56,
-
41  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
42  0x03, 0x93, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7,
-
43  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x0b, 0x78, 0x00, 0x15, 0x40, 0x0e,
-
44  0x03, 0x1a, 0x16, 0x01, 0x01, 0x34, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
45  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
46  0xff, 0x65, 0x01, 0xe5, 0x03, 0x18, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
47  0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x00, 0x00,
-
48  0x00, 0x18, 0x40, 0x0c, 0x03, 0x1b, 0x07, 0x01, 0x01, 0x25, 0x56, 0x02,
-
49  0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
50  0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xbd,
-
51  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
-
52  0x01, 0x07, 0x03, 0xa2, 0xff, 0xe6, 0x00, 0xa2, 0x00, 0x15, 0x40, 0x0e,
-
53  0x03, 0x1a, 0x16, 0x01, 0x01, 0x69, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
54  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
55  0x00, 0x00, 0x01, 0xe5, 0x03, 0xc2, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
56  0x00, 0x26, 0x03, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x03,
-
57  0x00, 0xf9, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x21, 0x16, 0x01, 0x01, 0x33,
-
58  0x56, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
59  0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac,
-
60  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa7, 0x00, 0x00,
-
61  0x01, 0x07, 0x03, 0xb4, 0xff, 0xec, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
62  0x03, 0x1e, 0x16, 0x01, 0x01, 0x66, 0x56, 0x02, 0x0f, 0x07, 0x01, 0x01,
-
63  0x25, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
64  0x00, 0x00, 0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
65  0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
-
66  0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
67  0x00, 0x00, 0x02, 0x1f, 0x03, 0x88, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
68  0x01, 0x06, 0x03, 0xbd, 0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x13,
-
69  0x0b, 0x01, 0x01, 0x99, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
-
70  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0xff, 0x65,
-
71  0x01, 0xe5, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26,
-
72  0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x18,
-
73  0x40, 0x0c, 0x03, 0x17, 0x07, 0x01, 0x01, 0x15, 0x56, 0x02, 0x11, 0x0a,
-
74  0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
-
75  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xaa, 0x06, 0x26,
-
76  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x00, 0x00, 0x00, 0x15,
-
77  0x40, 0x0e, 0x03, 0x12, 0x0b, 0x01, 0x01, 0x8f, 0x56, 0x02, 0x0b, 0x07,
-
78  0x01, 0x01, 0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
79  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xac, 0x06, 0x26, 0x00, 0x01,
-
80  0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0xfc, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
81  0x03, 0x19, 0x0b, 0x01, 0x01, 0x5e, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01,
-
82  0x15, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
83  0x00, 0x00, 0x01, 0xe5, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
84  0x01, 0x06, 0x03, 0xc0, 0xff, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x16,
-
85  0x0b, 0x01, 0x01, 0xa9, 0x56, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x15, 0x56,
-
86  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
-
87  0x01, 0xe5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
-
88  0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x0b,
-
89  0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
90  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x01,
-
91  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x03,
-
92  0x02, 0x0b, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
93  0xff, 0xff, 0x00, 0x0f, 0xff, 0x65, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26,
-
94  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
95  0xb4, 0x02, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
96  0x2b, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x1b,
-
97  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
-
98  0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b,
-
99  0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x6c,
-
100  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
-
101  0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02, 0x12, 0x07, 0x01, 0x01, 0x37, 0x56,
-
102  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5,
-
103  0x03, 0x2d, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
-
104  0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07, 0x01, 0x01,
-
105  0x3c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00,
-
106  0x01, 0xe5, 0x03, 0x17, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x01, 0x07,
-
107  0x03, 0x84, 0x00, 0x01, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x0b, 0x07,
-
108  0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0f,
-
109  0xff, 0x19, 0x01, 0xe5, 0x02, 0x78, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00,
-
110  0x01, 0x07, 0x03, 0x8e, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
111  0x15, 0x0a, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
112  0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x22, 0x06, 0x26, 0x00, 0x01,
-
113  0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00, 0x00, 0x10, 0xb5, 0x03,
-
114  0x02, 0x0b, 0x07, 0x00, 0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b,
-
115  0x34, 0x34, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0xcb,
-
116  0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa8, 0xff, 0x00,
-
117  0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0xb0, 0x00, 0x1a, 0x40, 0x0d,
-
118  0x04, 0x27, 0x07, 0x01, 0x01, 0xc6, 0x56, 0x03, 0x02, 0x0b, 0x07, 0x00,
-
119  0x00, 0xb8, 0xff, 0xf1, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
-
120  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xe5, 0x03, 0x20, 0x06, 0x26,
-
121  0x00, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xff, 0x00, 0x00, 0x0b,
-
122  0xb6, 0x02, 0x0f, 0x07, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
123  0x00, 0x02, 0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x02, 0x70, 0x00, 0x0f,
-
124  0x00, 0x13, 0x00, 0x2b, 0x40, 0x15, 0x10, 0x0e, 0x05, 0x08, 0x0e, 0x08,
-
125  0x0e, 0x08, 0x00, 0x13, 0x04, 0x04, 0x01, 0x02, 0x72, 0x09, 0x0c, 0x0c,
-
126  0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x11, 0x33,
-
127  0x11, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
128  0x13, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23,
-
129  0x35, 0x23, 0x07, 0x37, 0x33, 0x13, 0x23, 0x0a, 0xc3, 0x01, 0x23, 0xa6,
-
130  0x8c, 0x8c, 0xa4, 0xf0, 0x73, 0x32, 0x43, 0x63, 0x02, 0x08, 0x02, 0x70,
-
131  0x48, 0xbf, 0x49, 0xd8, 0x48, 0xa6, 0xa6, 0xeb, 0x01, 0x33, 0xff, 0xff,
-
132  0x00, 0x0a, 0x00, 0x00, 0x01, 0xf0, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x1a,
-
133  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
134  0x14, 0x01, 0x01, 0x01, 0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03,
-
135  0x00, 0x2c, 0x00, 0x00, 0x01, 0xce, 0x02, 0x6f, 0x00, 0x15, 0x00, 0x20,
-
136  0x00, 0x2c, 0x00, 0x1d, 0x40, 0x0e, 0x0b, 0x21, 0x21, 0x20, 0x20, 0x00,
-
137  0x2c, 0x01, 0x02, 0x72, 0x16, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
138  0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33,
-
139  0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14,
-
140  0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
141  0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23,
-
142  0x23, 0x2c, 0xb6, 0x36, 0x50, 0x34, 0x19, 0x15, 0x28, 0x1e, 0x1a, 0x2b,
-
143  0x1e, 0x11, 0x1d, 0x3a, 0x5a, 0x3c, 0x61, 0x6d, 0x29, 0x3d, 0x22, 0x1e,
-
144  0x42, 0x39, 0x5c, 0x58, 0x33, 0x3c, 0x19, 0x0e, 0x1d, 0x30, 0x22, 0x63,
-
145  0x02, 0x6f, 0x16, 0x29, 0x38, 0x22, 0x1c, 0x37, 0x2b, 0x0b, 0x0a, 0x20,
-
146  0x29, 0x30, 0x19, 0x28, 0x41, 0x2f, 0x19, 0x48, 0x16, 0x30, 0x26, 0x23,
-
147  0x35, 0x1f, 0x45, 0x18, 0x2b, 0x1a, 0x14, 0x21, 0x19, 0x0e, 0x00, 0x01,
-
148  0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x02, 0x75, 0x00, 0x29, 0x00, 0x21,
-
149  0x40, 0x10, 0x26, 0x25, 0x25, 0x21, 0x21, 0x29, 0x09, 0x72, 0x11, 0x0e,
-
150  0x10, 0x10, 0x17, 0x0b, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
-
151  0x33, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e,
-
152  0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
153  0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
-
154  0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b,
-
155  0x33, 0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19,
-
156  0x40, 0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c,
-
157  0x17, 0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58,
-
158  0x3e, 0x0a, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42,
-
159  0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d,
-
160  0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17, 0x2a, 0x34, 0x32, 0x00,
-
161  0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
-
162  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0x01, 0x00, 0x00, 0x0b,
-
163  0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
164  0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9, 0x03, 0x1f, 0x06, 0x26,
-
165  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0x14, 0x00, 0x00, 0x0b,
-
166  0xb6, 0x01, 0x2d, 0x0b, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
167  0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x02, 0x75, 0x06, 0x26,
-
168  0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x07, 0x00, 0x00, 0x0b,
-
169  0xb6, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
170  0xff, 0xff, 0x00, 0x26, 0xff, 0x38, 0x01, 0xd9, 0x03, 0x1b, 0x06, 0x26,
-
171  0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d, 0x07, 0x00, 0x01, 0x06,
-
172  0x03, 0xa3, 0x01, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x42, 0x0b, 0x01,
-
173  0x01, 0x20, 0x56, 0x01, 0x39, 0x29, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b,
-
174  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
-
175  0x03, 0x1a, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
176  0x14, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x1b, 0x56,
-
177  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x26, 0xff, 0xf6, 0x01, 0xd9,
-
178  0x03, 0x23, 0x06, 0x26, 0x00, 0x1d, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
-
179  0x13, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2a, 0x0b, 0x01, 0x01, 0x41, 0x56,
-
180  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0,
-
181  0x02, 0x6f, 0x00, 0x0f, 0x00, 0x1a, 0x00, 0x10, 0xb7, 0x1a, 0x01, 0x02,
-
182  0x72, 0x10, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31,
-
183  0x57, 0x11, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x0e, 0x03,
-
184  0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x27, 0x34, 0x26, 0x26, 0x23, 0x23,
-
185  0x32, 0x96, 0x37, 0x4a, 0x34, 0x15, 0x15, 0x1b, 0x0e, 0x02, 0x21, 0x41,
-
186  0x66, 0x4a, 0x39, 0x36, 0x46, 0x56, 0x29, 0x01, 0x25, 0x50, 0x44, 0x41,
-
187  0x01, 0x02, 0x70, 0x14, 0x25, 0x1c, 0x1c, 0x47, 0x52, 0x31, 0x48, 0x72,
-
188  0x50, 0x2b, 0x42, 0x39, 0x6c, 0x4b, 0x4d, 0x70, 0x3c, 0x00, 0x00, 0x02,
-
189  0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x23,
-
190  0x00, 0x21, 0x40, 0x10, 0x15, 0x00, 0x03, 0x20, 0x02, 0x20, 0x23, 0x23,
-
191  0x00, 0x1f, 0x05, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
192  0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
193  0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x1e, 0x02,
-
194  0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34,
-
195  0x26, 0x26, 0x23, 0x23, 0x15, 0x33, 0x15, 0x23, 0x47, 0x2e, 0x2e, 0x91,
-
196  0x2f, 0x45, 0x32, 0x24, 0x0c, 0x0b, 0x13, 0x0b, 0x22, 0x43, 0x64, 0x42,
-
197  0x37, 0x35, 0x3e, 0x54, 0x2a, 0x25, 0x4f, 0x3e, 0x3f, 0x65, 0x65, 0x01,
-
198  0x01, 0x28, 0x45, 0x01, 0x03, 0x13, 0x21, 0x28, 0x15, 0x12, 0x39, 0x4e,
-
199  0x31, 0x48, 0x73, 0x4f, 0x2b, 0x45, 0x38, 0x6a, 0x4b, 0x4d, 0x6f, 0x3b,
-
200  0xbc, 0x45, 0xff, 0xff, 0x00, 0x32, 0xff, 0xff, 0x01, 0xd0, 0x03, 0x1f,
-
201  0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6, 0xe2, 0x00,
-
202  0x00, 0x0b, 0xb6, 0x02, 0x1e, 0x01, 0x01, 0x01, 0x22, 0x56, 0x00, 0x2b,
-
203  0x34, 0x00, 0xff, 0xff, 0x00, 0x19, 0xff, 0xff, 0x01, 0xd7, 0x02, 0x6f,
-
204  0x06, 0x06, 0x00, 0x25, 0x00, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x65,
-
205  0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00, 0x01, 0x06,
-
206  0x03, 0x8a, 0x07, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x21, 0x00, 0x01, 0x01,
-
207  0xb8, 0xff, 0xd5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x32,
-
208  0xff, 0x65, 0x01, 0xd0, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x24, 0x00, 0x00,
-
209  0x01, 0x06, 0x03, 0x90, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1c, 0x00,
-
210  0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
-
211  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x02, 0x70, 0x00, 0x0b, 0x00, 0x19,
-
212  0x40, 0x0c, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01, 0x02, 0x72, 0x09, 0x00,
-
213  0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30,
-
214  0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21,
-
215  0x15, 0x38, 0x01, 0x86, 0xfe, 0xcb, 0xff, 0xff, 0x01, 0x32, 0x02, 0x70,
-
216  0x48, 0xbe, 0x4a, 0xd8, 0x48, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
217  0x01, 0xbe, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
218  0x03, 0xa3, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
219  0x24, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
220  0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
221  0x03, 0xa7, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01,
-
222  0x2f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
223  0x01, 0xbe, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06,
-
224  0x03, 0xa6, 0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x01, 0x01, 0x01,
-
225  0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x38,
-
226  0x01, 0xbe, 0x03, 0x18, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x26,
-
227  0x03, 0x8d, 0xeb, 0x00, 0x01, 0x06, 0x03, 0xa7, 0x0b, 0x00, 0x00, 0x15,
-
228  0x40, 0x0e, 0x02, 0x28, 0x01, 0x01, 0x01, 0x2f, 0x56, 0x01, 0x1b, 0x00,
-
229  0x01, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
230  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a,
-
231  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
232  0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
233  0x00, 0x38, 0x00, 0x00, 0x02, 0x2a, 0x03, 0x88, 0x06, 0x26, 0x00, 0x2a,
-
234  0x00, 0x00, 0x01, 0x06, 0x03, 0xbd, 0x09, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
235  0x02, 0x13, 0x0c, 0x01, 0x01, 0x6f, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
236  0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
237  0xff, 0x65, 0x01, 0xbe, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
238  0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x0b, 0x00,
-
239  0x00, 0x18, 0x40, 0x0c, 0x02, 0x18, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x01,
-
240  0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
241  0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xaa,
-
242  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbe, 0x0b, 0x00,
-
243  0x00, 0x15, 0x40, 0x0e, 0x02, 0x13, 0x01, 0x01, 0x01, 0xae, 0x56, 0x01,
-
244  0x0c, 0x01, 0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
245  0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xdc, 0x03, 0xac, 0x06, 0x26,
-
246  0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbf, 0x07, 0x00, 0x00, 0x15,
-
247  0x40, 0x0e, 0x02, 0x1a, 0x0c, 0x01, 0x01, 0x5e, 0x56, 0x01, 0x0c, 0x01,
-
248  0x01, 0x01, 0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
249  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xa9, 0x06, 0x26, 0x00, 0x2a,
-
250  0x00, 0x00, 0x01, 0x06, 0x03, 0xc0, 0x0a, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
251  0x02, 0x17, 0x01, 0x01, 0x01, 0xc8, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01,
-
252  0x1f, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
253  0x00, 0x00, 0x01, 0xbe, 0x03, 0x55, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
254  0x01, 0x07, 0x03, 0x86, 0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02,
-
255  0x01, 0x0c, 0x01, 0x01, 0x01, 0x31, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
256  0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x1d, 0x06, 0x26,
-
257  0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x0a, 0x00, 0x00, 0x0d,
-
258  0xb7, 0x02, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b, 0x34,
-
259  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x23,
-
260  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x0a, 0x00,
-
261  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x45, 0x56, 0x00, 0x2b,
-
262  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x65, 0x01, 0xbe, 0x02, 0x70,
-
263  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
264  0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
265  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
-
266  0x03, 0x1b, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
-
267  0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x24, 0x56,
-
268  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe,
-
269  0x03, 0x6c, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
-
270  0x00, 0x18, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x01, 0x01, 0x01,
-
271  0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
272  0x01, 0xbe, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x07,
-
273  0x03, 0x87, 0x00, 0x05, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x01,
-
274  0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38,
-
275  0x00, 0x00, 0x01, 0xbe, 0x03, 0x17, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00,
-
276  0x01, 0x07, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
-
277  0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
278  0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a,
-
279  0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07,
-
280  0x03, 0xa3, 0xff, 0xf8, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10,
-
281  0x0c, 0x01, 0x01, 0x53, 0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56,
-
282  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00,
-
283  0x01, 0xbe, 0x03, 0xb3, 0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x27,
-
284  0x03, 0x84, 0x00, 0x0c, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa2, 0xff, 0xfb,
-
285  0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x10, 0x0c, 0x01, 0x01, 0x53,
-
286  0x56, 0x01, 0x0c, 0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
287  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0xff, 0x19, 0x01, 0xbe, 0x02, 0x70,
-
288  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f, 0x00, 0x00,
-
289  0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b,
-
290  0x34, 0x00, 0xff, 0xff, 0x00, 0x38, 0x00, 0x00, 0x01, 0xbe, 0x03, 0x20,
-
291  0x06, 0x26, 0x00, 0x2a, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0x0a, 0x00,
-
292  0x00, 0x0b, 0xb6, 0x01, 0x10, 0x01, 0x01, 0x01, 0x40, 0x56, 0x00, 0x2b,
-
293  0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0xff, 0xf2, 0x01, 0xb5, 0x02, 0x6f,
-
294  0x00, 0x20, 0x00, 0x27, 0x00, 0x21, 0x40, 0x11, 0x0a, 0x27, 0x26, 0x03,
-
295  0x0b, 0x0b, 0x14, 0x20, 0x21, 0x25, 0x25, 0x22, 0x02, 0x72, 0x20, 0x09,
-
296  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x39, 0x2f, 0x17,
-
297  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33,
-
298  0x33, 0x15, 0x26, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36,
-
299  0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x06, 0x06, 0x23, 0x03, 0x35,
-
300  0x21, 0x15, 0x23, 0x17, 0x07, 0x01, 0x0c, 0x42, 0x5b, 0x30, 0x20, 0x3a,
-
301  0x51, 0x30, 0x37, 0x2e, 0x47, 0x2f, 0x18, 0x1f, 0x38, 0x27, 0x1e, 0x2a,
-
302  0x12, 0x0a, 0x07, 0x01, 0x05, 0x07, 0x2c, 0x21, 0x55, 0x33, 0xbb, 0x01,
-
303  0x3f, 0xde, 0x9f, 0x4c, 0x0e, 0x34, 0x54, 0x32, 0x2c, 0x4a, 0x38, 0x1f,
-
304  0x41, 0x02, 0x0f, 0x21, 0x35, 0x23, 0x25, 0x36, 0x1c, 0x10, 0x10, 0x0e,
-
305  0x0d, 0x08, 0x06, 0x06, 0x41, 0x25, 0x26, 0x02, 0x37, 0x46, 0x4a, 0xac,
-
306  0x0d, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
-
307  0x00, 0x09, 0x00, 0x17, 0x40, 0x0b, 0x05, 0x08, 0x08, 0x00, 0x04, 0x01,
-
308  0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f,
-
309  0x33, 0x30, 0x31, 0x73, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23,
-
310  0x11, 0x4a, 0x01, 0x71, 0xfe, 0xdf, 0xe9, 0xe9, 0x02, 0x70, 0x47, 0xb5,
-
311  0x47, 0xfe, 0xd3, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0,
-
312  0x02, 0x77, 0x00, 0x30, 0x00, 0x21, 0x40, 0x10, 0x2b, 0x2a, 0x2a, 0x0a,
-
313  0x23, 0x30, 0x09, 0x72, 0x11, 0x0e, 0x10, 0x10, 0x18, 0x0a, 0x03, 0x72,
-
314  0x00, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
315  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x03, 0x33,
-
316  0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26, 0x27, 0x2e, 0x02,
-
317  0x23, 0x22, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
318  0x37, 0x35, 0x23, 0x35, 0x33, 0x15, 0x06, 0x06, 0x23, 0x01, 0x15, 0x4c,
-
319  0x6e, 0x3b, 0x1f, 0x36, 0x41, 0x41, 0x1b, 0x27, 0x48, 0x3c, 0x11, 0x36,
-
320  0x08, 0x05, 0x01, 0x06, 0x0b, 0x0e, 0x1e, 0x25, 0x17, 0x1a, 0x2f, 0x28,
-
321  0x1e, 0x10, 0x16, 0x2b, 0x3b, 0x25, 0x0d, 0x1d, 0x1d, 0x1b, 0x0c, 0x6e,
-
322  0xbb, 0x2c, 0x5f, 0x30, 0x0a, 0x4e, 0x8f, 0x5f, 0x50, 0x71, 0x4a, 0x2a,
-
323  0x10, 0x1b, 0x2e, 0x21, 0x30, 0x07, 0x06, 0x08, 0x0e, 0x0d, 0x10, 0x15,
-
324  0x0a, 0x0e, 0x23, 0x37, 0x51, 0x36, 0x3f, 0x60, 0x41, 0x21, 0x03, 0x09,
-
325  0x0e, 0x09, 0x89, 0x48, 0xfb, 0x21, 0x20, 0x00, 0xff, 0xff, 0x00, 0x20,
-
326  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x18, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
327  0x01, 0x06, 0x03, 0xa7, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x35, 0x0a,
-
328  0x01, 0x01, 0x29, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
329  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
330  0x01, 0x06, 0x03, 0xa6, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x34, 0x0a,
-
331  0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
332  0xff, 0xf6, 0x01, 0xd0, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
333  0x01, 0x06, 0x03, 0xa5, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x31, 0x0a,
-
334  0x01, 0x01, 0x19, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x20,
-
335  0xfe, 0xe6, 0x01, 0xd0, 0x02, 0x77, 0x06, 0x26, 0x00, 0x43, 0x00, 0x00,
-
336  0x01, 0x06, 0x03, 0x8c, 0x1d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3d, 0x30,
-
337  0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
338  0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x23, 0x06, 0x26, 0x00, 0x43,
-
339  0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x16, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
340  0x31, 0x0a, 0x01, 0x01, 0x3f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
341  0x00, 0x20, 0xff, 0xf6, 0x01, 0xd0, 0x03, 0x17, 0x06, 0x26, 0x00, 0x43,
-
342  0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x17, 0x00, 0xa4, 0x00, 0x0b,
-
343  0xb6, 0x01, 0x31, 0x0a, 0x01, 0x01, 0x65, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
344  0x00, 0x01, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xc7, 0x02, 0x6f, 0x00, 0x15,
-
345  0x00, 0x19, 0x40, 0x0c, 0x07, 0x13, 0x13, 0x00, 0x11, 0x15, 0x08, 0x72,
-
346  0x09, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
347  0x33, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33,
-
348  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11,
-
349  0x23, 0x2e, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a, 0x06, 0x03, 0x57,
-
350  0xe2, 0x57, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08,
-
351  0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0x23, 0xfe, 0xdd, 0x00, 0x00, 0x02,
-
352  0x00, 0x07, 0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x19,
-
353  0x00, 0x20, 0x40, 0x0f, 0x17, 0x0b, 0x00, 0x00, 0x0b, 0x0b, 0x04, 0x15,
-
354  0x19, 0x08, 0x72, 0x0d, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
355  0x12, 0x39, 0x2f, 0x33, 0x7d, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x53, 0x35,
-
356  0x21, 0x15, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x33, 0x11,
-
357  0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23,
-
358  0x07, 0x01, 0xe3, 0xfe, 0x44, 0x56, 0x0a, 0x06, 0x03, 0xe2, 0x56, 0x0a,
-
359  0x06, 0x03, 0x57, 0xe2, 0x57, 0x01, 0xed, 0x42, 0x42, 0x82, 0x08, 0x06,
-
360  0x0e, 0x11, 0xd9, 0x01, 0x06, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01,
-
361  0x23, 0xfe, 0xdd, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x4c, 0x01, 0xc7,
-
362  0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
-
363  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x16, 0x11, 0x01, 0x01, 0xb8, 0xff,
-
364  0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
365  0x01, 0xc7, 0x03, 0x1a, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
366  0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x16, 0x00, 0x01, 0x01,
-
367  0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
368  0x01, 0xc7, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
369  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1c, 0x11, 0x01, 0x01,
-
370  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4d,
-
371  0x00, 0x00, 0x01, 0x9b, 0x02, 0x6f, 0x00, 0x0b, 0x00, 0x19, 0x40, 0x0c,
-
372  0x08, 0x04, 0x04, 0x05, 0x02, 0x72, 0x01, 0x09, 0x09, 0x00, 0x08, 0x72,
-
373  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
-
374  0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x4d,
-
375  0x7b, 0x74, 0x01, 0x41, 0x7b, 0x81, 0x46, 0x01, 0xe3, 0x46, 0x46, 0xfe,
-
376  0x1c, 0x45, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1b,
-
377  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xe4, 0x00,
-
378  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
-
379  0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x18,
-
380  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7, 0xf7, 0x00,
-
381  0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x30, 0x56, 0x00, 0x2b,
-
382  0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x1a,
-
383  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0xf7, 0x00,
-
384  0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b,
-
385  0x34, 0x00, 0xff, 0xff, 0x00, 0x41, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x55,
-
386  0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xe6,
-
387  0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x32,
-
388  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
389  0x01, 0x9b, 0x03, 0x1d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
390  0x03, 0xa0, 0xf6, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x0c, 0x05, 0x01,
-
391  0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
-
392  0x00, 0x00, 0x01, 0x9b, 0x03, 0xae, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
-
393  0x00, 0x26, 0x03, 0xa0, 0xf6, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xe2,
-
394  0x00, 0x93, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x24, 0x12, 0x01, 0x00, 0x0d,
-
395  0x56, 0x02, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
-
396  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b,
-
397  0x03, 0x23, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1,
-
398  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x46, 0x56,
-
399  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0xff, 0x65, 0x01, 0x9b,
-
400  0x02, 0x6f, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
401  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x12, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
402  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
403  0x01, 0x9b, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
404  0x03, 0xa2, 0xe7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01,
-
405  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x00, 0x00,
-
406  0x01, 0x9b, 0x03, 0x6c, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00, 0x01, 0x07,
-
407  0x03, 0x85, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x13, 0x05,
-
408  0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x4d,
-
409  0x00, 0x00, 0x01, 0x9b, 0x03, 0x2d, 0x06, 0x26, 0x00, 0x4f, 0x00, 0x00,
-
410  0x01, 0x07, 0x03, 0x87, 0xff, 0xf1, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01,
-
411  0x0c, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
412  0x00, 0x4d, 0x00, 0x00, 0x01, 0x9b, 0x03, 0x17, 0x06, 0x26, 0x00, 0x4f,
-
413  0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0xff, 0xf8, 0x00, 0xa4, 0x00, 0x0b,
-
414  0xb6, 0x01, 0x0c, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
415  0xff, 0xff, 0x00, 0x4d, 0xff, 0x19, 0x01, 0x9d, 0x02, 0x6f, 0x06, 0x26,
-
416  0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x74, 0x00, 0x00, 0x0b,
-
417  0xb6, 0x01, 0x16, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
418  0xff, 0xff, 0x00, 0x4d, 0x00, 0x00, 0x01, 0x9c, 0x03, 0x50, 0x06, 0x26,
-
419  0x00, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb3, 0xed, 0x22, 0x00, 0x0b,
-
420  0xb6, 0x01, 0x10, 0x05, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
421  0x00, 0x01, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c,
-
422  0x00, 0x15, 0x40, 0x0a, 0x0c, 0x1c, 0x09, 0x72, 0x16, 0x12, 0x12, 0x13,
-
423  0x02, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x57,
-
424  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
-
425  0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x16,
-
426  0x0e, 0x02, 0x23, 0xc3, 0x2d, 0x4e, 0x1d, 0x2d, 0x07, 0x06, 0x01, 0x07,
-
427  0x0c, 0x10, 0x22, 0x15, 0x1f, 0x28, 0x13, 0x76, 0x01, 0x28, 0x5e, 0x01,
-
428  0x1b, 0x31, 0x3e, 0x22, 0x0c, 0x22, 0x23, 0x3f, 0x08, 0x05, 0x08, 0x0f,
-
429  0x0b, 0x0c, 0x0d, 0x1d, 0x42, 0x35, 0x01, 0x55, 0x46, 0x46, 0xfe, 0xa9,
-
430  0x3b, 0x55, 0x36, 0x18, 0xff, 0xff, 0x00, 0x2b, 0xff, 0xf4, 0x01, 0xe9,
-
431  0x03, 0x1a, 0x06, 0x26, 0x00, 0x5e, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
432  0x4c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x13, 0x01, 0x01, 0x20, 0x56,
-
433  0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x28, 0xff, 0xfc, 0x01, 0xde,
-
434  0x02, 0x74, 0x00, 0x15, 0x00, 0x1a, 0x40, 0x0e, 0x01, 0x00, 0x0b, 0x13,
-
435  0x04, 0x03, 0x12, 0x04, 0x02, 0x72, 0x14, 0x03, 0x08, 0x72, 0x00, 0x2b,
-
436  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x07, 0x15, 0x23,
-
437  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
-
438  0x33, 0x03, 0x13, 0x07, 0xae, 0x2f, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xf3,
-
439  0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3, 0xf2, 0x67, 0x01, 0x2e, 0x36,
-
440  0xf8, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02,
-
441  0x01, 0x01, 0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x28,
-
442  0xfe, 0xe6, 0x01, 0xde, 0x02, 0x74, 0x06, 0x26, 0x00, 0x60, 0x00, 0x00,
-
443  0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03,
-
444  0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02,
-
445  0x00, 0x29, 0xff, 0xfc, 0x01, 0xda, 0x02, 0x74, 0x00, 0x20, 0x00, 0x24,
-
446  0x00, 0x1e, 0x40, 0x11, 0x24, 0x12, 0x1e, 0x07, 0x21, 0x22, 0x04, 0x00,
-
447  0x20, 0x12, 0x18, 0x0c, 0x03, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b,
-
448  0x32, 0x3f, 0x12, 0x17, 0x39, 0x3f, 0x30, 0x31, 0x53, 0x33, 0x33, 0x15,
-
449  0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x15, 0x15,
-
450  0x23, 0x26, 0x26, 0x27, 0x22, 0x22, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x15,
-
451  0x23, 0x13, 0x37, 0x01, 0x07, 0x29, 0x57, 0x0a, 0x06, 0x03, 0x2f, 0x52,
-
452  0x48, 0x42, 0x20, 0x0c, 0x15, 0x08, 0x08, 0x06, 0x0d, 0x11, 0x02, 0x02,
-
453  0x02, 0x0d, 0x22, 0x2d, 0x3e, 0x52, 0x36, 0x58, 0x69, 0x3d, 0x01, 0x0b,
-
454  0x66, 0x02, 0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe8, 0x4d, 0x6d, 0x42, 0x1e,
-
455  0x04, 0x04, 0x53, 0x0a, 0x06, 0x0a, 0x02, 0x0d, 0x23, 0x44, 0x6f, 0x51,
-
456  0xed, 0x01, 0x53, 0x37, 0xfe, 0x76, 0x04, 0x00, 0x00, 0x01, 0x00, 0x3f,
-
457  0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f, 0x00, 0x0a, 0x00, 0x0e, 0xb6, 0x07,
-
458  0x0a, 0x08, 0x72, 0x00, 0x02, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x30, 0x31,
-
459  0x53, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21, 0x3f,
-
460  0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x02, 0x6f, 0x08, 0x06,
-
461  0x0e, 0x11, 0xfe, 0x05, 0x47, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x60,
-
462  0x01, 0xc8, 0x02, 0x6f, 0x00, 0x1b, 0x00, 0x25, 0x00, 0x1d, 0x40, 0x0e,
-
463  0x0c, 0x00, 0x23, 0x12, 0x13, 0x13, 0x1d, 0x1c, 0x08, 0x72, 0x1d, 0x02,
-
464  0x72, 0x00, 0x00, 0x2f, 0x2b, 0x2b, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
465  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x17, 0x1e,
-
466  0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x15, 0x31,
-
467  0x11, 0x16, 0x0e, 0x02, 0x25, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11,
-
468  0x33, 0x15, 0x01, 0x1d, 0x2b, 0x48, 0x1c, 0x36, 0x06, 0x04, 0x02, 0x06,
-
469  0x04, 0x15, 0x1c, 0x12, 0x1d, 0x26, 0x13, 0x78, 0xcc, 0x01, 0x1b, 0x30,
-
470  0x3e, 0xfe, 0xfd, 0x5f, 0x04, 0x04, 0x9a, 0xa0, 0x22, 0x22, 0x40, 0x04,
-
471  0x0a, 0x0a, 0x07, 0x05, 0x0f, 0x0a, 0x1e, 0x43, 0x37, 0x01, 0xeb, 0x45,
-
472  0x46, 0xfe, 0x12, 0x3b, 0x54, 0x34, 0x18, 0xa0, 0x02, 0x6f, 0x07, 0x03,
-
473  0x08, 0x10, 0xfd, 0xfa, 0x47, 0x00, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00,
-
474  0x01, 0xbd, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06,
-
475  0x03, 0xa3, 0xc5, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x00, 0x01, 0x01,
-
476  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0x00,
-
477  0x01, 0xbd, 0x02, 0x79, 0x00, 0x11, 0x00, 0x1c, 0x00, 0x15, 0x40, 0x0b,
-
478  0x19, 0x1c, 0x08, 0x72, 0x12, 0x02, 0x72, 0x00, 0x0b, 0x03, 0x72, 0x00,
-
479  0x2b, 0xcc, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x41, 0x27, 0x36, 0x36, 0x35,
-
480  0x34, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
481  0x06, 0x25, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x21, 0x15, 0x21,
-
482  0x01, 0x55, 0x24, 0x17, 0x1b, 0x13, 0x14, 0x1e, 0x16, 0x19, 0x22, 0x13,
-
483  0x26, 0xfe, 0xcd, 0x56, 0x0a, 0x06, 0x03, 0x01, 0x27, 0xfe, 0x82, 0x01,
-
484  0x96, 0x1e, 0x15, 0x2e, 0x0e, 0x0b, 0x13, 0x16, 0x0e, 0x17, 0x1b, 0x27,
-
485  0x20, 0x17, 0x32, 0x35, 0xbb, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x05, 0x47,
-
486  0xff, 0xff, 0x00, 0x3f, 0xfe, 0xe6, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
-
487  0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e,
-
488  0xb4, 0x01, 0x17, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00,
-
489  0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0x00, 0x00, 0x01, 0xbd, 0x02, 0x6f,
-
490  0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x02, 0x22, 0x44, 0x00,
-
491  0x00, 0x0e, 0xb4, 0x01, 0x11, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x15, 0xb0,
-
492  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd,
-
493  0x02, 0x6f, 0x06, 0x26, 0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
494  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x11, 0x0a, 0x01, 0x01, 0xb8, 0xff,
-
495  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x40, 0xff, 0x51,
-
496  0x01, 0xbc, 0x02, 0x97, 0x00, 0x08, 0x00, 0x25, 0x00, 0x31, 0x00, 0x1f,
-
497  0x40, 0x10, 0x2c, 0x26, 0x26, 0x1e, 0x1f, 0x06, 0x72, 0x17, 0x09, 0x01,
-
498  0x02, 0x72, 0x06, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2f, 0x33,
-
499  0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x14, 0x06,
-
500  0x15, 0x11, 0x33, 0x15, 0x07, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1e, 0x03,
-
501  0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x11, 0x23, 0x35, 0x33,
-
502  0x11, 0x14, 0x0e, 0x02, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
503  0x16, 0x15, 0x14, 0x06, 0x40, 0x60, 0x09, 0x8d, 0x27, 0x1b, 0x31, 0x29,
-
504  0x11, 0x36, 0x05, 0x03, 0x05, 0x0e, 0x10, 0x07, 0x0c, 0x0f, 0x07, 0x15,
-
505  0x21, 0x1a, 0x0d, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0x5f, 0x18, 0x22, 0x21,
-
506  0x19, 0x17, 0x23, 0x23, 0x02, 0x6f, 0x0a, 0x0e, 0x0a, 0xfd, 0xfb, 0x48,
-
507  0xaf, 0x0d, 0x1b, 0x13, 0x48, 0x05, 0x0b, 0x0b, 0x0d, 0x08, 0x03, 0x04,
-
508  0x03, 0x0e, 0x1d, 0x2e, 0x1f, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a,
-
509  0x2f, 0x17, 0x02, 0xd3, 0x21, 0x17, 0x19, 0x21, 0x23, 0x17, 0x17, 0x21,
-
510  0xff, 0xff, 0x00, 0x3f, 0xff, 0x65, 0x01, 0xbd, 0x02, 0x6f, 0x06, 0x26,
-
511  0x00, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e,
-
512  0xb4, 0x01, 0x0c, 0x0a, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00,
-
513  0x2b, 0x34, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x01, 0xc4, 0x02, 0x6f,
-
514  0x00, 0x16, 0x00, 0x18, 0x40, 0x0d, 0x01, 0x13, 0x04, 0x0d, 0x04, 0x00,
-
515  0x05, 0x02, 0x72, 0x14, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x12,
-
516  0x17, 0x39, 0x30, 0x31, 0x73, 0x35, 0x07, 0x35, 0x37, 0x11, 0x33, 0x32,
-
517  0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x37, 0x36, 0x36, 0x37, 0x15, 0x07,
-
518  0x15, 0x21, 0x15, 0x47, 0x36, 0x36, 0x5f, 0x01, 0x01, 0x08, 0x02, 0x9d,
-
519  0x08, 0x0f, 0x05, 0xb9, 0x01, 0x26, 0xec, 0x12, 0x49, 0x12, 0x01, 0x3a,
-
520  0x02, 0x01, 0x04, 0x09, 0x12, 0xfc, 0x33, 0x03, 0x06, 0x03, 0x4d, 0x3c,
-
521  0xc0, 0x47, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x70,
-
522  0x00, 0x0c, 0x00, 0x1a, 0x40, 0x0e, 0x0a, 0x03, 0x0b, 0x08, 0x04, 0x07,
-
523  0x05, 0x02, 0x02, 0x72, 0x07, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
524  0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x73, 0x11, 0x33, 0x13, 0x13, 0x33,
-
525  0x11, 0x23, 0x11, 0x07, 0x23, 0x27, 0x11, 0x26, 0x46, 0x8f, 0x91, 0x44,
-
526  0x4d, 0x7a, 0x25, 0x72, 0x02, 0x6f, 0xfe, 0xd5, 0x01, 0x2c, 0xfd, 0x90,
-
527  0x01, 0xca, 0xf3, 0xf1, 0xfe, 0x38, 0xff, 0xff, 0x00, 0x26, 0xff, 0x65,
-
528  0x01, 0xd0, 0x02, 0x70, 0x06, 0x26, 0x00, 0x6d, 0x00, 0x00, 0x01, 0x06,
-
529  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x13, 0x07, 0x01, 0x01,
-
530  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
-
531  0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x17, 0x40, 0x0b,
-
532  0x0c, 0x02, 0x01, 0x0b, 0x0e, 0x08, 0x72, 0x03, 0x01, 0x02, 0x72, 0x00,
-
533  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x53, 0x33, 0x13,
-
534  0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x01, 0x11, 0x23,
-
535  0x2e, 0x54, 0xf5, 0x02, 0x4e, 0x0a, 0x06, 0x03, 0x48, 0xff, 0x00, 0x4e,
-
536  0x02, 0x6f, 0xfe, 0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe,
-
537  0x01, 0xd8, 0xfe, 0x28, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
-
538  0x03, 0x1b, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
539  0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x00, 0x01, 0x01, 0x25, 0x56,
-
540  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd,
-
541  0x03, 0x1f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
542  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01, 0x22, 0x56,
-
543  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xcd,
-
544  0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
545  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1b, 0x0b, 0x01, 0x01, 0xb8, 0xff,
-
546  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
547  0x01, 0xcd, 0x03, 0x23, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
-
548  0x03, 0xa1, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
549  0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
550  0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00, 0x01, 0x06,
-
551  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0b, 0x01, 0x01,
-
552  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2d,
-
553  0xff, 0x42, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x1c, 0x00, 0x1b, 0x40, 0x0e,
-
554  0x16, 0x1c, 0x17, 0x03, 0x19, 0x01, 0x1b, 0x02, 0x72, 0x19, 0x08, 0x72,
-
555  0x12, 0x09, 0x00, 0x2f, 0x33, 0x2b, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30,
-
556  0x31, 0x41, 0x33, 0x14, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06, 0x23, 0x22,
-
557  0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x03, 0x11,
-
558  0x23, 0x11, 0x33, 0x13, 0x01, 0x78, 0x54, 0x07, 0x26, 0x46, 0x2e, 0x18,
-
559  0x32, 0x17, 0x29, 0x08, 0x07, 0x08, 0x11, 0x10, 0x1b, 0x21, 0x0f, 0x01,
-
560  0xfc, 0x4e, 0x54, 0xf7, 0x02, 0x6f, 0x09, 0x0b, 0x0c, 0xfd, 0xb1, 0x3e,
-
561  0x54, 0x2c, 0x0f, 0x10, 0x48, 0x02, 0x08, 0x09, 0x08, 0x1c, 0x3a, 0x2b,
-
562  0x01, 0xc9, 0xfe, 0x28, 0x02, 0x6f, 0xfe, 0x43, 0xff, 0xff, 0x00, 0x2e,
-
563  0xff, 0x65, 0x01, 0xcd, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x6f, 0x00, 0x00,
-
564  0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x0e,
-
565  0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
566  0x00, 0x2e, 0x00, 0x00, 0x01, 0xcd, 0x03, 0x20, 0x06, 0x26, 0x00, 0x6f,
-
567  0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
568  0x13, 0x03, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02,
-
569  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
-
570  0x00, 0x10, 0xb7, 0x18, 0x08, 0x03, 0x72, 0x10, 0x00, 0x09, 0x72, 0x00,
-
571  0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34,
-
572  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
573  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
574  0x16, 0x16, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35,
-
575  0x35, 0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21,
-
576  0x21, 0x40, 0x0b, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64,
-
577  0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f,
-
578  0x4d, 0x51, 0x6f, 0x39, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
579  0x03, 0x1c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
580  0xed, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56,
-
581  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
582  0x03, 0x19, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa7,
-
583  0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x2c, 0x56,
-
584  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
585  0x03, 0x1b, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5,
-
586  0x00, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
-
587  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x02, 0x1f,
-
588  0x03, 0x89, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbd,
-
589  0xff, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x08, 0x01, 0x01, 0x8b,
-
590  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
591  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x03, 0x1b,
-
592  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x0a, 0x00,
-
593  0x01, 0x06, 0x03, 0xa5, 0x00, 0x01, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c,
-
594  0x08, 0x01, 0x01, 0x1c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
595  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18,
-
596  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xab, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
597  0x01, 0x06, 0x03, 0xbe, 0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27,
-
598  0x08, 0x01, 0x01, 0xab, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56,
-
599  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
600  0x01, 0xdd, 0x03, 0xad, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
601  0x03, 0xbf, 0xfc, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x08, 0x01,
-
602  0x01, 0x7a, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b,
-
603  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
604  0x03, 0xaa, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xc0,
-
605  0x00, 0x01, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x08, 0x01, 0x01, 0xc5,
-
606  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x1c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
607  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x56,
-
608  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef,
-
609  0x00, 0xa5, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2e,
-
610  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
611  0x01, 0xdd, 0x03, 0x1e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
612  0x03, 0xa0, 0x00, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01,
-
613  0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
614  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
615  0x00, 0x26, 0x03, 0xa0, 0x00, 0x01, 0x01, 0x07, 0x03, 0x84, 0xff, 0xff,
-
616  0x01, 0x38, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x54,
-
617  0x56, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34,
-
618  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
619  0x03, 0x8e, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa1,
-
620  0xff, 0x01, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00, 0x01, 0x1a, 0x00, 0x15,
-
621  0x40, 0x0e, 0x03, 0x2c, 0x26, 0x01, 0x01, 0x2f, 0x56, 0x02, 0x20, 0x08,
-
622  0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
623  0x00, 0x18, 0xff, 0x65, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78,
-
624  0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02,
-
625  0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
626  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26,
-
627  0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b,
-
628  0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
629  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26,
-
630  0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4,
-
631  0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b,
-
632  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0xa4,
-
633  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa, 0xea, 0xd7,
-
634  0x00, 0x0e, 0xb4, 0x02, 0x20, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa4, 0xb0,
-
635  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd,
-
636  0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3,
-
637  0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01, 0x21, 0x56,
-
638  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xdd,
-
639  0x02, 0xa4, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
640  0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x03, 0x30, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
641  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
642  0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x06,
-
643  0x03, 0xa2, 0xf1, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2a, 0x08, 0x01, 0x01,
-
644  0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5,
-
645  0x01, 0xdd, 0x03, 0x6d, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00, 0x01, 0x07,
-
646  0x03, 0x85, 0x00, 0x0d, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x03, 0x31, 0x08,
-
647  0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
648  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x88, 0x00, 0x00,
-
649  0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x2e, 0x08,
-
650  0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
651  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2c, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
652  0x01, 0x06, 0x03, 0xa4, 0xda, 0x01, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20,
-
653  0x08, 0x01, 0x01, 0x12, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
654  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x2e, 0x06, 0x26, 0x00, 0x78,
-
655  0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa5, 0x00, 0x0b,
-
656  0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x43, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
657  0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0x18, 0x06, 0x26,
-
658  0x00, 0x78, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5,
-
659  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56, 0x00, 0x2b,
-
660  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4,
-
661  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01,
-
662  0x00, 0xa5, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x99, 0x00, 0x15,
-
663  0x40, 0x0e, 0x03, 0x24, 0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08,
-
664  0x01, 0x01, 0x68, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
665  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xb4, 0x06, 0x26, 0x00, 0x78,
-
666  0x00, 0x00, 0x00, 0x27, 0x03, 0x84, 0x00, 0x01, 0x00, 0xa5, 0x01, 0x07,
-
667  0x03, 0xa2, 0xff, 0xf1, 0x00, 0x99, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24,
-
668  0x08, 0x01, 0x01, 0xbb, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x68, 0x56,
-
669  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x25,
-
670  0x01, 0xdd, 0x02, 0x75, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x01, 0x06,
-
671  0x03, 0x8e, 0x2f, 0x0b, 0x00, 0x0b, 0xb6, 0x02, 0x29, 0x00, 0x00, 0x00,
-
672  0x26, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x18, 0xff, 0xd1,
-
673  0x01, 0xdd, 0x02, 0xaa, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x1e,
-
674  0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c, 0x0c, 0x03, 0x72, 0x01, 0x00, 0x00,
-
675  0x14, 0x04, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b,
-
676  0x32, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x03, 0x22,
-
677  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
678  0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
-
679  0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x56, 0x30, 0x01, 0x77, 0x2f, 0xd1,
-
680  0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35, 0x64, 0x49,
-
681  0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21, 0x40, 0x2f,
-
682  0x17, 0x02, 0xc2, 0x18, 0xfd, 0x63, 0x4a, 0x90, 0x66, 0x64, 0x8f, 0x4d,
-
683  0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39, 0x6f, 0x51, 0x4d, 0x6f,
-
684  0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0x00, 0xff, 0xff, 0x00, 0x18,
-
685  0xff, 0xd1, 0x01, 0xdd, 0x03, 0x1c, 0x06, 0x26, 0x00, 0x94, 0x00, 0x00,
-
686  0x01, 0x06, 0x03, 0xa3, 0xed, 0x01, 0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c,
-
687  0x01, 0x01, 0x21, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
688  0xff, 0xf5, 0x01, 0xdd, 0x03, 0x21, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
689  0x01, 0x06, 0x03, 0xa9, 0xff, 0x01, 0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08,
-
690  0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
691  0xff, 0xf5, 0x01, 0xdd, 0x03, 0xba, 0x06, 0x26, 0x00, 0x78, 0x00, 0x00,
-
692  0x00, 0x26, 0x03, 0xa9, 0xff, 0x01, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed,
-
693  0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38, 0x08, 0x01, 0x01, 0xbc,
-
694  0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
695  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xbc,
-
696  0x06, 0x26, 0x00, 0x78, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa9, 0xff, 0x01,
-
697  0x01, 0x07, 0x03, 0xa0, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x17, 0x40, 0x0f,
-
698  0x04, 0x03, 0x38, 0x08, 0x01, 0x01, 0xd8, 0x56, 0x02, 0x24, 0x08, 0x01,
-
699  0x01, 0x3d, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
700  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x03, 0xac, 0x06, 0x26, 0x00, 0x78,
-
701  0x00, 0x00, 0x00, 0x27, 0x03, 0xb4, 0xff, 0xf6, 0x00, 0xa4, 0x01, 0x07,
-
702  0x03, 0x84, 0xff, 0xfb, 0x01, 0x39, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x38,
-
703  0x08, 0x01, 0x01, 0xfb, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x71, 0x56,
-
704  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x07, 0xff, 0xf9,
-
705  0x01, 0xe7, 0x02, 0x78, 0x00, 0x1b, 0x00, 0x2b, 0x00, 0x2d, 0x40, 0x18,
-
706  0x15, 0x18, 0x08, 0x72, 0x10, 0x0d, 0x02, 0x72, 0x0c, 0x23, 0x23, 0x11,
-
707  0x14, 0x14, 0x00, 0x09, 0x03, 0x72, 0x19, 0x1c, 0x1c, 0x00, 0x09, 0x72,
-
708  0x00, 0x2b, 0x32, 0x11, 0x39, 0x2b, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
709  0x39, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x2e, 0x02, 0x35,
-
710  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x35, 0x33, 0x15, 0x23, 0x15,
-
711  0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x06, 0x06, 0x27, 0x32,
-
712  0x36, 0x37, 0x11, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16,
-
713  0x16, 0xae, 0x26, 0x3e, 0x2b, 0x18, 0x28, 0x4b, 0x35, 0x13, 0x26, 0x10,
-
714  0xef, 0xa4, 0x8b, 0x8b, 0xa2, 0xee, 0x0f, 0x26, 0x0c, 0x18, 0x22, 0x06,
-
715  0x0a, 0x22, 0x1c, 0x12, 0x20, 0x18, 0x0f, 0x17, 0x2a, 0x07, 0x26, 0x4f,
-
716  0x78, 0x52, 0x6a, 0x8e, 0x48, 0x0f, 0x11, 0x18, 0x48, 0xbf, 0x49, 0xd8,
-
717  0x48, 0x1a, 0x11, 0x10, 0x49, 0x26, 0x1e, 0x01, 0x5c, 0x20, 0x30, 0x18,
-
718  0x38, 0x61, 0x48, 0x4e, 0x6f, 0x3a, 0x00, 0x02, 0x00, 0x37, 0x00, 0x00,
-
719  0x01, 0xcd, 0x02, 0x6f, 0x00, 0x0d, 0x00, 0x18, 0x00, 0x17, 0x40, 0x0b,
-
720  0x0e, 0x0c, 0x0c, 0x00, 0x18, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00,
-
721  0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
-
722  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33,
-
723  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x37, 0xcc, 0x47,
-
724  0x59, 0x2a, 0x17, 0x30, 0x4a, 0x34, 0x7a, 0x72, 0x2a, 0x34, 0x18, 0x18,
-
725  0x34, 0x29, 0x73, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
-
726  0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x02,
-
727  0x00, 0x38, 0x00, 0x00, 0x01, 0xcd, 0x02, 0x6f, 0x00, 0x14, 0x00, 0x1f,
-
728  0x00, 0x1f, 0x40, 0x0f, 0x15, 0x13, 0x1f, 0x09, 0x13, 0x09, 0x13, 0x09,
-
729  0x00, 0x01, 0x02, 0x72, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39,
-
730  0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33,
-
731  0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15,
-
732  0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35,
-
733  0x34, 0x26, 0x26, 0x23, 0x23, 0x38, 0x5d, 0x01, 0x01, 0x08, 0x02, 0x77,
-
734  0x47, 0x58, 0x2a, 0x29, 0x56, 0x45, 0x7c, 0x79, 0x28, 0x32, 0x17, 0x18,
-
735  0x34, 0x29, 0x75, 0x02, 0x6f, 0x01, 0x01, 0x02, 0x03, 0x0b, 0x0c, 0x55,
-
736  0x30, 0x51, 0x31, 0x31, 0x50, 0x2f, 0x9a, 0xe1, 0x1b, 0x2f, 0x1c, 0x1d,
-
737  0x2f, 0x1e, 0x00, 0x02, 0x00, 0x1a, 0xff, 0x6d, 0x01, 0xdc, 0x02, 0x77,
-
738  0x00, 0x1e, 0x00, 0x31, 0x00, 0x19, 0x40, 0x0c, 0x29, 0x0e, 0x03, 0x72,
-
739  0x1f, 0x18, 0x05, 0x09, 0x72, 0x1c, 0x00, 0x09, 0x00, 0x7c, 0x3f, 0x32,
-
740  0x2b, 0x32, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x06, 0x2e, 0x02, 0x35,
-
741  0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x07, 0x14,
-
742  0x0e, 0x02, 0x07, 0x1e, 0x02, 0x33, 0x37, 0x07, 0x27, 0x32, 0x3e, 0x02,
-
743  0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
-
744  0x01, 0x89, 0x30, 0x43, 0x29, 0x13, 0x34, 0x57, 0x35, 0x28, 0x43, 0x4f,
-
745  0x27, 0x2d, 0x52, 0x3f, 0x23, 0x01, 0x18, 0x2e, 0x44, 0x2b, 0x02, 0x0c,
-
746  0x1c, 0x19, 0x52, 0x02, 0xba, 0x19, 0x31, 0x28, 0x19, 0x1a, 0x2b, 0x32,
-
747  0x18, 0x23, 0x36, 0x24, 0x12, 0x24, 0x42, 0x91, 0x02, 0x0d, 0x22, 0x36,
-
748  0x28, 0x08, 0x4b, 0x87, 0x61, 0x5b, 0x7c, 0x4a, 0x21, 0x25, 0x4e, 0x79,
-
749  0x54, 0x46, 0x6e, 0x4f, 0x30, 0x0a, 0x14, 0x1f, 0x10, 0x04, 0x4c, 0xd1,
-
750  0x19, 0x38, 0x59, 0x40, 0x4e, 0x65, 0x3b, 0x18, 0x26, 0x41, 0x56, 0x31,
-
751  0x4e, 0x74, 0x40, 0x00, 0x00, 0x02, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
-
752  0x02, 0x6f, 0x00, 0x0f, 0x00, 0x19, 0x00, 0x1d, 0x40, 0x0e, 0x0a, 0x10,
-
753  0x10, 0x0e, 0x0e, 0x00, 0x19, 0x01, 0x02, 0x72, 0x0c, 0x00, 0x08, 0x72,
-
754  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
-
755  0x31, 0x73, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07,
-
756  0x13, 0x23, 0x03, 0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26,
-
757  0x26, 0x23, 0x23, 0x34, 0xbd, 0x4b, 0x5d, 0x2b, 0x1e, 0x38, 0x26, 0x8d,
-
758  0x5c, 0x86, 0x69, 0x6f, 0x3c, 0x38, 0x18, 0x34, 0x28, 0x6f, 0x02, 0x6f,
-
759  0x2c, 0x51, 0x37, 0x22, 0x46, 0x34, 0x0c, 0xfe, 0xed, 0x01, 0x0e, 0xfe,
-
760  0xf2, 0x01, 0x56, 0x37, 0x2d, 0x1d, 0x2f, 0x1c, 0xff, 0xff, 0x00, 0x34,
-
761  0x00, 0x00, 0x01, 0xd5, 0x03, 0x1b, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
762  0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01,
-
763  0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
-
764  0x00, 0x00, 0x01, 0xd5, 0x03, 0x1f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
765  0x01, 0x06, 0x03, 0xa6, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x1d, 0x01,
-
766  0x01, 0x01, 0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34,
-
767  0xfe, 0xe6, 0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00,
-
768  0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x0c,
-
769  0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
770  0x00, 0x34, 0x00, 0x00, 0x01, 0xd5, 0x03, 0x55, 0x06, 0x26, 0x00, 0x9e,
-
771  0x00, 0x00, 0x01, 0x07, 0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d,
-
772  0xb7, 0x03, 0x02, 0x1a, 0x01, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
773  0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65, 0x01, 0xd5, 0x02, 0x6f,
-
774  0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
775  0x00, 0x0e, 0xb4, 0x02, 0x20, 0x0c, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
776  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x34, 0x00, 0x00, 0x01, 0xd5,
-
777  0x03, 0x2d, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87,
-
778  0xff, 0xfa, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x02, 0x1a, 0x01, 0x01, 0x01,
-
779  0x47, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x34, 0xff, 0x65,
-
780  0x01, 0xd5, 0x02, 0x6f, 0x06, 0x26, 0x00, 0x9e, 0x00, 0x00, 0x01, 0x06,
-
781  0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x1b, 0x00, 0x01, 0x01,
-
782  0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x2e,
-
783  0xff, 0xf6, 0x01, 0xca, 0x02, 0x78, 0x00, 0x40, 0x00, 0x17, 0x40, 0x0b,
-
784  0x1b, 0x11, 0x1f, 0x0c, 0x40, 0x09, 0x72, 0x2c, 0x1f, 0x03, 0x72, 0x00,
-
785  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26,
-
786  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x3e,
-
787  0x02, 0x35, 0x34, 0x2e, 0x03, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
-
788  0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
789  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x03, 0x17, 0x1e, 0x03,
-
790  0x15, 0x14, 0x06, 0x06, 0x23, 0xf5, 0x3d, 0x65, 0x25, 0x2b, 0x04, 0x07,
-
791  0x02, 0x07, 0x0b, 0x1a, 0x42, 0x29, 0x1b, 0x2c, 0x21, 0x12, 0x07, 0x12,
-
792  0x1e, 0x30, 0x22, 0x40, 0x4b, 0x20, 0x30, 0x57, 0x3a, 0x24, 0x41, 0x38,
-
793  0x16, 0x30, 0x06, 0x07, 0x01, 0x06, 0x0b, 0x16, 0x32, 0x23, 0x17, 0x25,
-
794  0x1a, 0x0f, 0x08, 0x12, 0x21, 0x33, 0x24, 0x2f, 0x3e, 0x23, 0x10, 0x2c,
-
795  0x5e, 0x4b, 0x0a, 0x27, 0x26, 0x49, 0x09, 0x04, 0x07, 0x11, 0x0c, 0x15,
-
796  0x19, 0x0f, 0x1a, 0x24, 0x15, 0x10, 0x1a, 0x16, 0x16, 0x1a, 0x0f, 0x1a,
-
797  0x3a, 0x42, 0x26, 0x2e, 0x46, 0x28, 0x13, 0x22, 0x1a, 0x3c, 0x08, 0x05,
-
798  0x08, 0x10, 0x0c, 0x15, 0x0f, 0x0c, 0x18, 0x1d, 0x10, 0x10, 0x19, 0x18,
-
799  0x19, 0x19, 0x0f, 0x14, 0x26, 0x2b, 0x31, 0x1f, 0x2b, 0x54, 0x35, 0x00,
-
800  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1b, 0x06, 0x26,
-
801  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b,
-
802  0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
803  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x9c, 0x06, 0x26,
-
804  0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa3, 0xf6, 0x00, 0x01, 0x06,
-
805  0x03, 0xa1, 0x08, 0x79, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x45, 0x1f, 0x01,
-
806  0x01, 0xb4, 0x56, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x1d, 0x56, 0x00, 0x2b,
-
807  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
-
808  0x03, 0x1f, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
809  0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x44, 0x1f, 0x01, 0x01, 0x1a, 0x56,
-
810  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca,
-
811  0x03, 0xbd, 0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0xa6,
-
812  0x09, 0x00, 0x01, 0x07, 0x03, 0xa1, 0x00, 0x08, 0x00, 0x9a, 0x00, 0x15,
-
813  0x40, 0x0e, 0x02, 0x48, 0x1f, 0x01, 0x01, 0xdc, 0x56, 0x01, 0x44, 0x1f,
-
814  0x01, 0x01, 0x1a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
815  0x00, 0x2e, 0xff, 0x38, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
-
816  0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
817  0x50, 0x40, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
818  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xa6,
-
819  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
820  0x41, 0x1f, 0x01, 0x01, 0x18, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
821  0x00, 0x2e, 0xfe, 0xe6, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26, 0x00, 0xa6,
-
822  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0c, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
823  0x4d, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
824  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xca, 0x03, 0x23, 0x06, 0x26,
-
825  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x0b,
-
826  0xb6, 0x01, 0x41, 0x1f, 0x01, 0x01, 0x3e, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
827  0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x02, 0x78, 0x06, 0x26,
-
828  0x00, 0xa6, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x08, 0x00, 0x00, 0x0e,
-
829  0xb4, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
-
830  0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xca, 0x03, 0x23,
-
831  0x06, 0x26, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x08, 0x00,
-
832  0x01, 0x06, 0x03, 0xa1, 0x08, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x4d,
-
833  0x1f, 0x01, 0x01, 0x3e, 0x56, 0x01, 0x47, 0x40, 0x01, 0x01, 0xb8, 0xff,
-
834  0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x32,
-
835  0xff, 0xf5, 0x01, 0xd1, 0x02, 0x9e, 0x00, 0x33, 0x00, 0x21, 0x40, 0x0f,
-
836  0x2a, 0x2b, 0x2b, 0x13, 0x11, 0x12, 0x12, 0x00, 0x18, 0x25, 0x01, 0x72,
-
837  0x1f, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x2b, 0x32, 0x11, 0x39, 0x2f,
-
838  0x33, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37,
-
839  0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23,
-
840  0x35, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x23,
-
841  0x11, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x07, 0x27, 0x32,
-
842  0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x1e, 0x20, 0x34, 0x16, 0x1b,
-
843  0x0b, 0x17, 0x18, 0x0c, 0x16, 0x27, 0x1e, 0x11, 0x18, 0x3d, 0x3a, 0x1e,
-
844  0x81, 0x13, 0x29, 0x23, 0x15, 0x28, 0x21, 0x13, 0x53, 0x21, 0x37, 0x45,
-
845  0x25, 0x3c, 0x4e, 0x28, 0xaa, 0x0c, 0x48, 0x64, 0x35, 0x1c, 0x30, 0x42,
-
846  0x0b, 0x10, 0x0f, 0x41, 0x07, 0x0b, 0x05, 0x11, 0x21, 0x2f, 0x1e, 0x1e,
-
847  0x3a, 0x27, 0x43, 0x74, 0x1c, 0x2f, 0x1c, 0x0f, 0x1f, 0x32, 0x23, 0xfe,
-
848  0x29, 0x01, 0xc9, 0x3a, 0x52, 0x32, 0x17, 0x32, 0x52, 0x30, 0x95, 0x2a,
-
849  0x2f, 0x5a, 0x41, 0x31, 0x47, 0x30, 0x18, 0x00, 0xff, 0xff, 0x00, 0x18,
-
850  0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x06, 0x06, 0x00, 0x78, 0x00, 0x00,
-
851  0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3, 0x02, 0x70, 0x00, 0x07,
-
852  0x00, 0x13, 0x40, 0x09, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08,
-
853  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x23,
-
854  0x35, 0x21, 0x15, 0x23, 0x11, 0xca, 0xae, 0x01, 0xb7, 0xb5, 0x02, 0x26,
-
855  0x4a, 0x4a, 0xfd, 0xda, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
-
856  0x02, 0x70, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x1a, 0x40, 0x0c, 0x09, 0x08,
-
857  0x08, 0x00, 0x06, 0x02, 0x02, 0x03, 0x02, 0x72, 0x00, 0x08, 0x00, 0x3f,
-
858  0x2b, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x11,
-
859  0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x03, 0x35, 0x21, 0x15, 0xca, 0xae,
-
860  0x01, 0xb7, 0xb5, 0xcc, 0x01, 0x4c, 0x02, 0x26, 0x4a, 0x4a, 0xfd, 0xda,
-
861  0x01, 0x19, 0x3e, 0x3e, 0xff, 0xff, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd3,
-
862  0x03, 0x1f, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa6,
-
863  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0b, 0x03, 0x01, 0x01, 0x21, 0x56,
-
864  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x38, 0x01, 0xd3,
-
865  0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
-
866  0xeb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x17, 0x00, 0x01, 0x00, 0x00, 0x56,
-
867  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x1c, 0xfe, 0xe6, 0x01, 0xd3,
-
868  0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
869  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x14, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
870  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c, 0xff, 0x65,
-
871  0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00, 0x01, 0x06,
-
872  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0e, 0x00, 0x01, 0x01,
-
873  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x1c,
-
874  0xff, 0x65, 0x01, 0xd3, 0x02, 0x70, 0x06, 0x26, 0x00, 0xb3, 0x00, 0x00,
-
875  0x01, 0x06, 0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x09, 0x00,
-
876  0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01,
-
877  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10,
-
878  0xb7, 0x0e, 0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32,
-
879  0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15,
-
880  0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33,
-
881  0x11, 0x14, 0x06, 0x06, 0x23, 0xfb, 0x65, 0x69, 0x53, 0x0a, 0x06, 0x03,
-
882  0x36, 0x45, 0x45, 0x37, 0x52, 0x34, 0x5d, 0x3e, 0x0c, 0x79, 0x6b, 0x01,
-
883  0x97, 0x08, 0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01,
-
884  0x95, 0xfe, 0x6c, 0x4f, 0x66, 0x32, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
885  0x01, 0xca, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
886  0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
-
887  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
888  0x01, 0xca, 0x03, 0x18, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
889  0x03, 0xa7, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
-
890  0x30, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
891  0x01, 0xca, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
892  0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01,
-
893  0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
894  0x01, 0xca, 0x03, 0x55, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07,
-
895  0x03, 0x86, 0xff, 0xef, 0x00, 0xa4, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x19,
-
896  0x04, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
897  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xba,
-
898  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
899  0x01, 0x19, 0x04, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
900  0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xca, 0x02, 0x6f, 0x06, 0x26,
-
901  0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
902  0xb4, 0x01, 0x1f, 0x18, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
-
903  0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x1b,
-
904  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf0, 0x00,
-
905  0x00, 0x0b, 0xb6, 0x01, 0x19, 0x12, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b,
-
906  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x6c,
-
907  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85, 0x00, 0x0d,
-
908  0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x20, 0x12, 0x01, 0x01, 0x42, 0x56,
-
909  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1,
-
910  0x02, 0xcd, 0x06, 0x26, 0x00, 0xe7, 0x00, 0x00, 0x01, 0x06, 0x03, 0xaa,
-
911  0x00, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x19, 0x04, 0x01, 0x01, 0xb8, 0xff,
-
912  0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf4,
-
913  0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
-
914  0x03, 0xa3, 0xd3, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x04, 0x01, 0x01,
-
915  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
-
916  0x01, 0xf1, 0x02, 0xcd, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00, 0x01, 0x06,
-
917  0x03, 0x8a, 0xef, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x29, 0x18, 0x01, 0x01,
-
918  0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29,
-
919  0xff, 0xf4, 0x01, 0xf1, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
-
920  0x01, 0x06, 0x03, 0xa2, 0xd7, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x23, 0x12,
-
921  0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29,
-
922  0xff, 0xf4, 0x01, 0xf1, 0x03, 0x6c, 0x06, 0x26, 0x00, 0xc3, 0x00, 0x00,
-
923  0x01, 0x07, 0x03, 0x85, 0xff, 0xf3, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x02,
-
924  0x2a, 0x12, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
925  0x00, 0x29, 0xff, 0xf4, 0x01, 0xf1, 0x03, 0x20, 0x06, 0x26, 0x00, 0xc3,
-
926  0x00, 0x00, 0x01, 0x06, 0x03, 0xa9, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
927  0x27, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
928  0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2b, 0x06, 0x26, 0x00, 0xba,
-
929  0x00, 0x00, 0x01, 0x06, 0x03, 0xa4, 0xda, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
930  0x01, 0x19, 0x12, 0x01, 0x01, 0x16, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
931  0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x2d, 0x06, 0x26,
-
932  0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x87, 0xff, 0xfa, 0x00, 0xa4,
-
933  0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
934  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x17,
-
935  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x00,
-
936  0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56,
-
937  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca,
-
938  0x03, 0xb5, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x27, 0x03, 0x84,
-
939  0x00, 0x00, 0x00, 0xa4, 0x01, 0x07, 0x03, 0xa0, 0xff, 0xff, 0x00, 0x98,
-
940  0x00, 0x17, 0x40, 0x0f, 0x03, 0x02, 0x1d, 0x1a, 0x01, 0x01, 0x37, 0x56,
-
941  0x01, 0x19, 0x04, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34,
-
942  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x23, 0x01, 0xca, 0x02, 0x6f,
-
943  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8e, 0x39, 0x0a,
-
944  0x00, 0x0b, 0xb6, 0x01, 0x22, 0x18, 0x00, 0x00, 0x26, 0x56, 0x00, 0x2b,
-
945  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4, 0x01, 0xca, 0x03, 0x22,
-
946  0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa8, 0xff, 0x00,
-
947  0x00, 0x10, 0xb5, 0x02, 0x01, 0x19, 0x12, 0x01, 0x00, 0xb8, 0xff, 0xfc,
-
948  0xb0, 0x56, 0x00, 0x2b, 0x34, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
949  0x01, 0xca, 0x03, 0x20, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x01, 0x06,
-
950  0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x12, 0x01, 0x01,
-
951  0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf4,
-
952  0x01, 0xca, 0x03, 0xb9, 0x06, 0x26, 0x00, 0xba, 0x00, 0x00, 0x00, 0x26,
-
953  0x03, 0xa9, 0xfe, 0x00, 0x01, 0x07, 0x03, 0xa3, 0xff, 0xed, 0x00, 0x9e,
-
954  0x00, 0x15, 0x40, 0x0e, 0x02, 0x31, 0x12, 0x01, 0x01, 0xc0, 0x56, 0x01,
-
955  0x1d, 0x12, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
956  0x00, 0x01, 0x00, 0x16, 0xff, 0xfd, 0x01, 0xe2, 0x02, 0x70, 0x00, 0x06,
-
957  0x00, 0x13, 0x40, 0x09, 0x03, 0x00, 0x02, 0x05, 0x02, 0x72, 0x00, 0x08,
-
958  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33,
-
959  0x13, 0x13, 0x33, 0x03, 0xe6, 0xd0, 0x56, 0x96, 0x8e, 0x52, 0xcd, 0x03,
-
960  0x02, 0x73, 0xfe, 0x2e, 0x01, 0xd1, 0xfd, 0x8e, 0x00, 0x01, 0x00, 0x0f,
-
961  0x00, 0x00, 0x01, 0xea, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x1d, 0x40, 0x0f,
-
962  0x06, 0x03, 0x0b, 0x03, 0x04, 0x04, 0x00, 0x08, 0x01, 0x02, 0x72, 0x0a,
-
963  0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x17,
-
964  0x39, 0x30, 0x31, 0x73, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33,
-
965  0x03, 0x23, 0x03, 0x03, 0x6d, 0x5e, 0x4c, 0x3a, 0x5e, 0x22, 0x5e, 0x31,
-
966  0x46, 0x5d, 0x29, 0x65, 0x67, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe,
-
967  0x93, 0x01, 0x9c, 0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0xff, 0xff,
-
968  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xd2,
-
969  0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
970  0x0d, 0x01, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
971  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1a, 0x06, 0x26, 0x00, 0xd2,
-
972  0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
973  0x0d, 0x01, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
974  0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1d, 0x06, 0x26, 0x00, 0xd2,
-
975  0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0x08, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
976  0x01, 0x0d, 0x01, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
977  0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x01, 0xea, 0x03, 0x1b, 0x06, 0x26,
-
978  0x00, 0xd2, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2, 0xf9, 0x00, 0x00, 0x0b,
-
979  0xb6, 0x01, 0x0d, 0x07, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
980  0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70, 0x00, 0x0b,
-
981  0x00, 0x1c, 0x40, 0x0f, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x06,
-
982  0x02, 0x02, 0x72, 0x09, 0x00, 0x08, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
983  0x2f, 0x11, 0x17, 0x39, 0x30, 0x31, 0x73, 0x13, 0x03, 0x33, 0x17, 0x37,
-
984  0x33, 0x03, 0x13, 0x23, 0x27, 0x07, 0x25, 0xa8, 0xa5, 0x58, 0x7b, 0x78,
-
985  0x53, 0x9b, 0xae, 0x5c, 0x81, 0x7e, 0x01, 0x3e, 0x01, 0x32, 0xe3, 0xe3,
-
986  0xfe, 0xcf, 0xfe, 0xc1, 0xec, 0xec, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00,
-
987  0x01, 0xde, 0x02, 0x6f, 0x00, 0x08, 0x00, 0x1a, 0x40, 0x0e, 0x08, 0x08,
-
988  0x72, 0x07, 0x01, 0x04, 0x03, 0x00, 0x06, 0x02, 0x02, 0x72, 0x00, 0x08,
-
989  0x00, 0x3f, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x2b, 0x30, 0x31, 0x73, 0x35,
-
990  0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x15, 0xd6, 0xbe, 0x5c, 0x91, 0x82,
-
991  0x57, 0xaf, 0xf6, 0x01, 0x79, 0xfe, 0xe0, 0x01, 0x20, 0xfe, 0x87, 0xf6,
-
992  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1b, 0x06, 0x26,
-
993  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x00, 0x00, 0x0b,
-
994  0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
995  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1a, 0x06, 0x26,
-
996  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa5, 0x00, 0x00, 0x00, 0x0b,
-
997  0xb6, 0x01, 0x09, 0x02, 0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
998  0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x1d, 0x06, 0x26,
-
999  0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa0, 0xff, 0x00, 0x00, 0x0d,
-
1000  0xb7, 0x02, 0x01, 0x09, 0x02, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34,
-
1001  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde, 0x03, 0x23,
-
1002  0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa1, 0xff, 0x00,
-
1003  0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x46, 0x56, 0x00, 0x2b,
-
1004  0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0xff, 0x65, 0x01, 0xde, 0x02, 0x6f,
-
1005  0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x12, 0x00,
-
1006  0x00, 0x0e, 0xb4, 0x01, 0x0f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
1007  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
-
1008  0x03, 0x1b, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa2,
-
1009  0xf0, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x05, 0x01, 0x01, 0x25, 0x56,
-
1010  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00, 0x01, 0xde,
-
1011  0x03, 0x6c, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07, 0x03, 0x85,
-
1012  0x00, 0x0d, 0x00, 0xa3, 0x00, 0x0b, 0xb6, 0x01, 0x10, 0x05, 0x01, 0x01,
-
1013  0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18, 0x00, 0x00,
-
1014  0x01, 0xde, 0x03, 0x17, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00, 0x01, 0x07,
-
1015  0x03, 0x84, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x0b, 0xb6, 0x01, 0x09, 0x02,
-
1016  0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x18,
-
1017  0x00, 0x00, 0x01, 0xde, 0x03, 0x20, 0x06, 0x26, 0x00, 0xd8, 0x00, 0x00,
-
1018  0x01, 0x06, 0x03, 0xa9, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0d, 0x05,
-
1019  0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2e,
-
1020  0x00, 0x00, 0x01, 0xd4, 0x02, 0x6f, 0x00, 0x0e, 0x00, 0x19, 0x40, 0x0c,
-
1021  0x00, 0x06, 0x06, 0x0e, 0x08, 0x72, 0x05, 0x02, 0x02, 0x03, 0x02, 0x72,
-
1022  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77,
-
1023  0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15,
-
1024  0x15, 0x21, 0x2e, 0x01, 0x32, 0xfe, 0xda, 0x01, 0x8a, 0xfe, 0xd3, 0x01,
-
1025  0x10, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x5a, 0x39, 0x01, 0xec, 0x4a, 0x39,
-
1026  0xfe, 0x13, 0x04, 0x06, 0x0a, 0x49, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1027  0x01, 0xd4, 0x03, 0x1b, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1028  0x03, 0xa3, 0xf7, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
1029  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1030  0x01, 0xd4, 0x03, 0x1f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1031  0x03, 0xa6, 0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x12, 0x03, 0x01, 0x01,
-
1032  0x22, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0x00, 0x00,
-
1033  0x01, 0xd4, 0x03, 0x23, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1034  0x03, 0xa1, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
1035  0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65,
-
1036  0x01, 0xd4, 0x02, 0x6f, 0x06, 0x26, 0x00, 0xe2, 0x00, 0x00, 0x01, 0x06,
-
1037  0x03, 0x8a, 0x1c, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
-
1038  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x29,
-
1039  0xff, 0xf4, 0x01, 0x9c, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x10, 0xb7, 0x0e,
-
1040  0x18, 0x09, 0x72, 0x13, 0x04, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32,
-
1041  0x30, 0x31, 0x57, 0x22, 0x26, 0x35, 0x11, 0x33, 0x33, 0x15, 0x06, 0x06,
-
1042  0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14,
-
1043  0x06, 0x06, 0x23, 0xe2, 0x5b, 0x5e, 0x4a, 0x09, 0x05, 0x03, 0x31, 0x3e,
-
1044  0x3f, 0x30, 0x4a, 0x2e, 0x54, 0x38, 0x0c, 0x79, 0x6b, 0x01, 0x97, 0x08,
-
1045  0x06, 0x0e, 0x11, 0xfe, 0x95, 0x48, 0x55, 0x55, 0x4b, 0x01, 0x95, 0xfe,
-
1046  0x6c, 0x4f, 0x66, 0x32, 0x00, 0x01, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1047  0x01, 0xd6, 0x00, 0x37, 0x00, 0x27, 0x40, 0x14, 0x31, 0x0a, 0x72, 0x0c,
-
1048  0x08, 0x08, 0x0d, 0x11, 0x11, 0x00, 0x24, 0x2b, 0x07, 0x72, 0x33, 0x1b,
-
1049  0x1b, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11,
-
1050  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x57, 0x22, 0x26,
-
1051  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x32, 0x16, 0x17, 0x17, 0x2e, 0x02,
-
1052  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
1053  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
-
1054  0x32, 0x1e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x0e, 0x03, 0xcf, 0x4e, 0x54,
-
1055  0x23, 0x40, 0x58, 0x35, 0x0e, 0x1f, 0x23, 0x12, 0x03, 0x10, 0x22, 0x21,
-
1056  0x0f, 0x25, 0x3b, 0x28, 0x16, 0x0e, 0x18, 0x20, 0x13, 0x24, 0x37, 0x27,
-
1057  0x14, 0x1d, 0x3a, 0x2c, 0x21, 0x3d, 0x1b, 0x2c, 0x23, 0x58, 0x2f, 0x2d,
-
1058  0x4a, 0x37, 0x1e, 0x5b, 0x0d, 0x23, 0x27, 0x2a, 0x0b, 0x47, 0x38, 0x25,
-
1059  0x3d, 0x2a, 0x17, 0x03, 0x02, 0x3f, 0x02, 0x03, 0x01, 0x0c, 0x17, 0x23,
-
1060  0x17, 0x14, 0x1a, 0x10, 0x07, 0x17, 0x2e, 0x43, 0x2d, 0x40, 0x48, 0x1d,
-
1061  0x17, 0x1b, 0x35, 0x22, 0x20, 0x15, 0x32, 0x54, 0x40, 0xfb, 0x3f, 0x16,
-
1062  0x1d, 0x10, 0x07, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1063  0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1064  0xef, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56,
-
1065  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1066  0x02, 0x93, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
-
1067  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
-
1068  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1069  0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb5,
-
1070  0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47, 0x3c, 0x01, 0x01, 0x64,
-
1071  0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1072  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0x93,
-
1073  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00,
-
1074  0x01, 0x06, 0x03, 0x81, 0xf6, 0x00, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x48,
-
1075  0x2b, 0x01, 0x01, 0x47, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1076  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d,
-
1077  0xff, 0xf5, 0x01, 0xbf, 0x03, 0x34, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
-
1078  0x01, 0x06, 0x03, 0xb6, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x47,
-
1079  0x3c, 0x01, 0x01, 0x64, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56,
-
1080  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1081  0x01, 0xbf, 0x03, 0x50, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1082  0x03, 0xb7, 0xf6, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4e, 0x3c, 0x01,
-
1083  0x01, 0x70, 0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1084  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1085  0x03, 0x29, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb8,
-
1086  0xf2, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x4b, 0x3c, 0x01, 0x01, 0x9b,
-
1087  0x56, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1088  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xad,
-
1089  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0xff, 0xff,
-
1090  0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1091  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xea, 0x03, 0x2d,
-
1092  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xf8, 0x00,
-
1093  0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01, 0x01, 0x78, 0x56, 0x01,
-
1094  0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1095  0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf, 0x02, 0xad, 0x06, 0x26,
-
1096  0x00, 0xe8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
-
1097  0x03, 0x7f, 0xff, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x02, 0x44, 0x2b, 0x01,
-
1098  0x01, 0x2c, 0x56, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0,
-
1099  0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1100  0x01, 0xbf, 0x03, 0x43, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1101  0x03, 0xba, 0xf8, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x3f, 0x38, 0x01,
-
1102  0x01, 0x8d, 0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1103  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xd2,
-
1104  0x03, 0x2f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
-
1105  0xfe, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x46, 0x38, 0x01, 0x01, 0x70,
-
1106  0x56, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1107  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x03, 0x3d,
-
1108  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf7, 0x00,
-
1109  0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x38, 0x01, 0x01, 0xcc, 0x56, 0x01,
-
1110  0x38, 0x2b, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1111  0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26,
-
1112  0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xed, 0x00, 0x00, 0x0d,
-
1113  0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
-
1114  0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf, 0x02, 0x9d,
-
1115  0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xfd, 0x00,
-
1116  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x61, 0x56, 0x00,
-
1117  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x65, 0x01, 0xbf,
-
1118  0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
1119  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x3e, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1120  0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1121  0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1122  0x03, 0x7c, 0xf3, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1123  0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1124  0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1125  0x03, 0x85, 0x0b, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x3f, 0x2b, 0x01, 0x01,
-
1126  0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1127  0x01, 0xbf, 0x02, 0x89, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1128  0x03, 0x87, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1129  0x3d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1130  0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1131  0x03, 0x84, 0xfe, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x2b, 0x01, 0x01,
-
1132  0x62, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0x19,
-
1133  0x01, 0xbf, 0x01, 0xd6, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1134  0x03, 0x9f, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x42, 0x32, 0x00, 0x00,
-
1135  0x00, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5,
-
1136  0x01, 0xbf, 0x02, 0xbb, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06,
-
1137  0x03, 0x82, 0xf8, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x38, 0x2b, 0x01,
-
1138  0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d,
-
1139  0xff, 0xf5, 0x01, 0xbf, 0x03, 0x9f, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00,
-
1140  0x00, 0x26, 0x03, 0x82, 0xf8, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xef,
-
1141  0x00, 0xee, 0x00, 0x17, 0x40, 0x0f, 0x03, 0x54, 0x40, 0x01, 0x01, 0x32,
-
1142  0x56, 0x02, 0x01, 0x38, 0x2b, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
1143  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2d, 0xff, 0xf5, 0x01, 0xbf,
-
1144  0x02, 0xac, 0x06, 0x26, 0x00, 0xe8, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
1145  0xf4, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x2b, 0x01, 0x01, 0x6b, 0x56,
-
1146  0x00, 0x2b, 0x34, 0x00, 0x00, 0x03, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
-
1147  0x01, 0xd6, 0x00, 0x37, 0x00, 0x43, 0x00, 0x4c, 0x00, 0x39, 0x40, 0x1c,
-
1148  0x45, 0x44, 0x44, 0x22, 0x09, 0x3c, 0x3c, 0x21, 0x22, 0x22, 0x00, 0x49,
-
1149  0x1c, 0x1c, 0x18, 0x0d, 0x14, 0x07, 0x72, 0x34, 0x38, 0x38, 0x28, 0x30,
-
1150  0x30, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x32, 0x11, 0x33,
-
1151  0x2b, 0x32, 0x32, 0x32, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11,
-
1152  0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35,
-
1153  0x34, 0x3e, 0x02, 0x37, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27,
-
1154  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02, 0x33, 0x32, 0x16,
-
1155  0x16, 0x15, 0x15, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
-
1156  0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x27,
-
1157  0x32, 0x36, 0x36, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x37,
-
1158  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x8f, 0x2c, 0x3c, 0x20, 0x1c,
-
1159  0x34, 0x4e, 0x32, 0x10, 0x21, 0x19, 0x14, 0x26, 0x10, 0x29, 0x18, 0x3c,
-
1160  0x26, 0x18, 0x2b, 0x22, 0x09, 0x0c, 0x20, 0x26, 0x13, 0x2f, 0x3a, 0x1b,
-
1161  0xcc, 0x0d, 0x19, 0x23, 0x16, 0x10, 0x1a, 0x16, 0x0a, 0x28, 0x17, 0x3d,
-
1162  0x23, 0x19, 0x2d, 0x26, 0x0e, 0x0b, 0x23, 0x2a, 0x15, 0x1f, 0x1e, 0x09,
-
1163  0x30, 0x3b, 0x1b, 0x0f, 0x1d, 0xa1, 0x8b, 0x0e, 0x1d, 0x17, 0x16, 0x21,
-
1164  0x12, 0x0b, 0x22, 0x3e, 0x28, 0x24, 0x39, 0x29, 0x16, 0x02, 0x28, 0x36,
-
1165  0x1c, 0x16, 0x16, 0x33, 0x1d, 0x1d, 0x0f, 0x1b, 0x12, 0x12, 0x1b, 0x0f,
-
1166  0x31, 0x5a, 0x3e, 0x29, 0x07, 0x2d, 0x1b, 0x2d, 0x20, 0x11, 0x08, 0x12,
-
1167  0x0d, 0x30, 0x1c, 0x1d, 0x10, 0x1e, 0x14, 0x14, 0x1e, 0x10, 0x45, 0x27,
-
1168  0x48, 0x30, 0x02, 0x15, 0x27, 0x1f, 0x19, 0x1d, 0x0c, 0xe2, 0x05, 0x26,
-
1169  0x34, 0x1a, 0x1d, 0x35, 0xff, 0xff, 0x00, 0x07, 0xff, 0xf5, 0x01, 0xf0,
-
1170  0x02, 0xb1, 0x06, 0x26, 0x01, 0x01, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1171  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x03, 0x4d, 0x14, 0x01, 0x01, 0x28, 0x56,
-
1172  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x38, 0xff, 0xf5, 0x01, 0xce,
-
1173  0x02, 0x9b, 0x00, 0x1d, 0x00, 0x31, 0x00, 0x21, 0x40, 0x12, 0x04, 0x31,
-
1174  0x31, 0x1d, 0x0b, 0x72, 0x0e, 0x28, 0x28, 0x13, 0x07, 0x72, 0x07, 0x00,
-
1175  0x72, 0x06, 0x0a, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b,
-
1176  0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x07, 0x23,
-
1177  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x03, 0x33, 0x32,
-
1178  0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x27, 0x32, 0x3e, 0x02, 0x35,
-
1179  0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x33,
-
1180  0x01, 0x0e, 0x1b, 0x30, 0x29, 0x10, 0x17, 0x3b, 0x56, 0x0a, 0x06, 0x03,
-
1181  0x0b, 0x1c, 0x23, 0x26, 0x13, 0x2a, 0x45, 0x32, 0x1b, 0x20, 0x36, 0x45,
-
1182  0x25, 0x0d, 0x17, 0x2a, 0x22, 0x13, 0x11, 0x1e, 0x2b, 0x1a, 0x23, 0x34,
-
1183  0x1d, 0x0d, 0x1b, 0x2b, 0x1f, 0x0b, 0x10, 0x1f, 0x15, 0x39, 0x02, 0x9b,
-
1184  0x08, 0x06, 0x0e, 0x11, 0xe2, 0x10, 0x1c, 0x15, 0x0a, 0x1e, 0x3b, 0x58,
-
1185  0x3b, 0x3e, 0x5d, 0x3d, 0x1e, 0x48, 0x11, 0x28, 0x41, 0x2e, 0x2b, 0x41,
-
1186  0x2b, 0x15, 0x2a, 0x4e, 0x33, 0x27, 0x3e, 0x2d, 0x17, 0x00, 0x00, 0x03,
-
1187  0x00, 0x18, 0xff, 0xf5, 0x01, 0xdd, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f,
-
1188  0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x26, 0x20, 0x20, 0x00, 0x18, 0x08,
-
1189  0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
1190  0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
-
1191  0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
-
1192  0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
1193  0x16, 0x37, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
1194  0x06, 0xfb, 0x49, 0x65, 0x35, 0x35, 0x65, 0x49, 0x49, 0x64, 0x35, 0x35,
-
1195  0x64, 0x49, 0x2c, 0x3f, 0x21, 0x21, 0x3f, 0x2c, 0x2c, 0x40, 0x21, 0x21,
-
1196  0x40, 0x2d, 0x14, 0x1c, 0x1c, 0x14, 0x14, 0x1c, 0x1c, 0x0b, 0x4a, 0x90,
-
1197  0x66, 0x64, 0x8f, 0x4d, 0x4d, 0x8f, 0x64, 0x66, 0x90, 0x4a, 0x47, 0x39,
-
1198  0x6f, 0x51, 0x4d, 0x6f, 0x3c, 0x3c, 0x6f, 0x4d, 0x51, 0x6f, 0x39, 0xce,
-
1199  0x1c, 0x13, 0x14, 0x1c, 0x1d, 0x13, 0x13, 0x1c, 0x00, 0x01, 0x00, 0x32,
-
1200  0xff, 0xf5, 0x01, 0xcc, 0x01, 0xd5, 0x00, 0x28, 0x00, 0x13, 0x40, 0x09,
-
1201  0x20, 0x28, 0x16, 0x0a, 0x07, 0x72, 0x28, 0x0b, 0x72, 0x00, 0x2b, 0x2b,
-
1202  0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
-
1203  0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26,
-
1204  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
1205  0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x01, 0x1b, 0x33, 0x55, 0x3e, 0x23,
-
1206  0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
-
1207  0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
-
1208  0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x0b, 0x24, 0x40, 0x57, 0x34,
-
1209  0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07, 0x06, 0x08, 0x0f, 0x0c,
-
1210  0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d, 0x2d, 0x19, 0x0c, 0x19,
-
1211  0x13, 0x38, 0x26, 0x24, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
-
1212  0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
1213  0x12, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a, 0x01, 0x01, 0x29, 0x56,
-
1214  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0xf5, 0x01, 0xcc,
-
1215  0x02, 0xb5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x80,
-
1216  0x1b, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x2e, 0x0a, 0x01, 0x01, 0x30, 0x56,
-
1217  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
-
1218  0x01, 0xd5, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d,
-
1219  0x0c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x38, 0x28, 0x00, 0x00, 0x0b, 0x56,
-
1220  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32, 0xff, 0x38, 0x01, 0xcc,
-
1221  0x02, 0xb1, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8d,
-
1222  0x0c, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x12, 0x00, 0x00, 0x15, 0x40, 0x0e,
-
1223  0x02, 0x41, 0x0a, 0x01, 0x01, 0x29, 0x56, 0x01, 0x38, 0x28, 0x00, 0x00,
-
1224  0x0b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
-
1225  0xff, 0xf5, 0x01, 0xcc, 0x02, 0xad, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
-
1226  0x01, 0x06, 0x03, 0x7f, 0x21, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
-
1227  0x01, 0x01, 0x2d, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x32,
-
1228  0xff, 0xf5, 0x01, 0xcc, 0x02, 0x97, 0x06, 0x26, 0x01, 0x05, 0x00, 0x00,
-
1229  0x01, 0x06, 0x03, 0x7b, 0x1c, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x29, 0x0a,
-
1230  0x01, 0x01, 0x57, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x29,
-
1231  0xff, 0xf6, 0x01, 0xc5, 0x02, 0x9b, 0x00, 0x22, 0x00, 0x35, 0x00, 0x21,
-
1232  0x40, 0x12, 0x1e, 0x35, 0x35, 0x22, 0x0b, 0x72, 0x1a, 0x0a, 0x72, 0x0f,
-
1233  0x00, 0x72, 0x0e, 0x2c, 0x2c, 0x0a, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x11,
-
1234  0x33, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x22, 0x2e,
-
1235  0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x11, 0x33,
-
1236  0x33, 0x15, 0x06, 0x06, 0x15, 0x13, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
-
1237  0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26,
-
1238  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0xe7, 0x24, 0x44,
-
1239  0x36, 0x20, 0x21, 0x37, 0x44, 0x25, 0x1d, 0x31, 0x25, 0x0b, 0x51, 0x0a,
-
1240  0x06, 0x03, 0x01, 0x03, 0x07, 0x54, 0x05, 0x04, 0x01, 0x0e, 0x26, 0x30,
-
1241  0x1c, 0x0e, 0x1e, 0x2a, 0x1a, 0x0d, 0x18, 0x34, 0x28, 0x1c, 0x2c, 0x1c,
-
1242  0x0f, 0x1d, 0x36, 0x25, 0x0a, 0x1e, 0x3c, 0x5c, 0x3e, 0x3e, 0x59, 0x3b,
-
1243  0x1c, 0x12, 0x1f, 0x16, 0x01, 0x0a, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xd6,
-
1244  0x11, 0x22, 0x11, 0x0c, 0x14, 0x15, 0x0b, 0x17, 0x22, 0x11, 0x48, 0x18,
-
1245  0x2e, 0x3f, 0x25, 0x33, 0x4d, 0x2b, 0x16, 0x2b, 0x3b, 0x25, 0x37, 0x50,
-
1246  0x2d, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xf3, 0x01, 0xcf, 0x02, 0xa2,
-
1247  0x00, 0x28, 0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0f, 0x11, 0x1f, 0x14, 0x1c,
-
1248  0x04, 0x19, 0x19, 0x34, 0x0a, 0x07, 0x72, 0x29, 0x00, 0x0b, 0x72, 0x00,
-
1249  0x2b, 0x32, 0x2b, 0x32, 0x32, 0x7c, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x45,
-
1250  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
-
1251  0x26, 0x26, 0x27, 0x07, 0x27, 0x37, 0x2e, 0x02, 0x27, 0x37, 0x16, 0x16,
-
1252  0x17, 0x37, 0x17, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32,
-
1253  0x3e, 0x02, 0x35, 0x34, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14,
-
1254  0x1e, 0x02, 0x01, 0x00, 0x2d, 0x4f, 0x3c, 0x22, 0x21, 0x39, 0x47, 0x27,
-
1255  0x19, 0x2a, 0x25, 0x0e, 0x0e, 0x28, 0x1a, 0x7a, 0x15, 0x5f, 0x0f, 0x1f,
-
1256  0x21, 0x13, 0x5c, 0x17, 0x29, 0x14, 0x6e, 0x14, 0x51, 0x1a, 0x28, 0x1c,
-
1257  0x0e, 0x1b, 0x34, 0x4d, 0x33, 0x18, 0x2b, 0x22, 0x14, 0x0f, 0x18, 0x20,
-
1258  0x23, 0x11, 0x17, 0x2d, 0x24, 0x16, 0x15, 0x23, 0x2e, 0x0d, 0x23, 0x3e,
-
1259  0x56, 0x34, 0x33, 0x59, 0x44, 0x26, 0x0a, 0x15, 0x10, 0x22, 0x40, 0x1b,
-
1260  0x23, 0x39, 0x19, 0x0c, 0x16, 0x14, 0x07, 0x14, 0x0d, 0x1b, 0x13, 0x1e,
-
1261  0x35, 0x18, 0x1f, 0x47, 0x4f, 0x58, 0x2e, 0x3c, 0x62, 0x46, 0x26, 0x48,
-
1262  0x14, 0x2b, 0x40, 0x2d, 0x24, 0x37, 0x26, 0x19, 0x0b, 0x15, 0x29, 0x3e,
-
1263  0x29, 0x27, 0x3f, 0x2d, 0x19, 0x00, 0x00, 0x03, 0x00, 0x20, 0xff, 0xf6,
-
1264  0x01, 0xe2, 0x02, 0x9c, 0x00, 0x21, 0x00, 0x34, 0x00, 0x47, 0x00, 0x23,
-
1265  0x40, 0x11, 0x1d, 0x34, 0x34, 0x21, 0x0b, 0x19, 0x0a, 0x3c, 0x35, 0x35,
-
1266  0x0e, 0x00, 0x0d, 0x2a, 0x2a, 0x0a, 0x07, 0x00, 0x3f, 0x33, 0x11, 0x33,
-
1267  0x3f, 0x33, 0x2f, 0xcc, 0x3f, 0x3f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
1268  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x11,
-
1269  0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e,
-
1270  0x02, 0x35, 0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
1271  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x13, 0x32,
-
1272  0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26,
-
1273  0x26, 0x35, 0x34, 0x36, 0xb4, 0x1c, 0x36, 0x2a, 0x18, 0x18, 0x2b, 0x36,
-
1274  0x1f, 0x23, 0x33, 0x0c, 0x49, 0x0a, 0x06, 0x03, 0x02, 0x06, 0x4a, 0x04,
-
1275  0x04, 0x02, 0x0a, 0x1e, 0x25, 0x17, 0x0f, 0x1d, 0x25, 0x12, 0x13, 0x26,
-
1276  0x1d, 0x15, 0x21, 0x16, 0x0c, 0x0e, 0x17, 0x21, 0x14, 0xee, 0x15, 0x1c,
-
1277  0x12, 0x1f, 0x12, 0x24, 0x0a, 0x12, 0x0b, 0x10, 0x11, 0x1a, 0x0a, 0x1a,
-
1278  0x38, 0x5e, 0x43, 0x43, 0x5c, 0x37, 0x19, 0x23, 0x23, 0x01, 0x08, 0x07,
-
1279  0x06, 0x0e, 0x11, 0xfd, 0xd7, 0x12, 0x21, 0x12, 0x0b, 0x12, 0x14, 0x0c,
-
1280  0x15, 0x21, 0x11, 0x46, 0x28, 0x4c, 0x38, 0x39, 0x4c, 0x26, 0x13, 0x27,
-
1281  0x3d, 0x2a, 0x30, 0x45, 0x2c, 0x15, 0x02, 0x60, 0x1f, 0x19, 0x15, 0x34,
-
1282  0x35, 0x18, 0x1a, 0x0c, 0x19, 0x19, 0x0d, 0x0a, 0x0f, 0x14, 0x12, 0x10,
-
1283  0x1a, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0xf6, 0x01, 0xf4, 0x02, 0x9b,
-
1284  0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0x00, 0x6d,
-
1285  0x00, 0xec, 0x00, 0x0b, 0xb6, 0x02, 0x36, 0x0a, 0x01, 0x01, 0x33, 0x56,
-
1286  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65, 0x01, 0xc5,
-
1287  0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
1288  0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x3c, 0x1a, 0x01, 0x01, 0xb8, 0xff,
-
1289  0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x29, 0xff, 0x65,
-
1290  0x01, 0xc5, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x0c, 0x00, 0x00, 0x01, 0x06,
-
1291  0x03, 0x90, 0x02, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x37, 0x1a, 0x01, 0x01,
-
1292  0xb8, 0xff, 0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x2e,
-
1293  0xff, 0xf6, 0x01, 0xc1, 0x01, 0xd7, 0x00, 0x20, 0x00, 0x2b, 0x00, 0x1b,
-
1294  0x40, 0x0d, 0x18, 0x00, 0x13, 0x21, 0x21, 0x00, 0x27, 0x0a, 0x07, 0x72,
-
1295  0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x11,
-
1296  0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33,
-
1297  0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x07, 0x21, 0x1e, 0x03, 0x33, 0x32,
-
1298  0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x03, 0x33, 0x34, 0x2e, 0x02, 0x23,
-
1299  0x22, 0x0e, 0x02, 0x01, 0x10, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a, 0x4e,
-
1300  0x2c, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0xfe, 0xc1, 0x02, 0x19, 0x28,
-
1301  0x33, 0x1d, 0x17, 0x29, 0x24, 0x0f, 0x2e, 0x14, 0x33, 0x3b, 0xaf, 0xe9,
-
1302  0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x0a, 0x1f, 0x3c, 0x5a,
-
1303  0x39, 0x3a, 0x5a, 0x3e, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09, 0x15, 0x08,
-
1304  0x29, 0x3b, 0x25, 0x12, 0x0a, 0x16, 0x10, 0x2c, 0x18, 0x21, 0x0f, 0x01,
-
1305  0x20, 0x1e, 0x2e, 0x22, 0x11, 0x0f, 0x20, 0x2f, 0xff, 0xff, 0x00, 0x2e,
-
1306  0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1307  0x01, 0x06, 0x03, 0x7d, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a,
-
1308  0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1309  0xff, 0xf6, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1310  0x01, 0x06, 0x03, 0x81, 0x02, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x30, 0x0a,
-
1311  0x01, 0x01, 0x46, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1312  0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1313  0x01, 0x06, 0x03, 0x80, 0x04, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x31, 0x0a,
-
1314  0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e,
-
1315  0xff, 0x38, 0x01, 0xc1, 0x02, 0x93, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00,
-
1316  0x00, 0x26, 0x03, 0x8d, 0x05, 0x00, 0x01, 0x06, 0x03, 0x81, 0x02, 0x00,
-
1317  0x00, 0x15, 0x40, 0x0e, 0x03, 0x48, 0x0a, 0x01, 0x01, 0x46, 0x56, 0x02,
-
1318  0x3b, 0x00, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1319  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26,
-
1320  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x0a, 0xff, 0x00, 0x0b,
-
1321  0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1322  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xf5, 0x03, 0x2d, 0x06, 0x26,
-
1323  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0x04, 0x00, 0x00, 0x15,
-
1324  0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x78, 0x56, 0x02, 0x2c, 0x0a,
-
1325  0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1326  0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x02, 0xad, 0x06, 0x26, 0x01, 0x12,
-
1327  0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x23, 0x00, 0x01, 0x06, 0x03, 0x7f,
-
1328  0x0a, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x38, 0x0a, 0x01, 0x01, 0x2b,
-
1329  0x56, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00,
-
1330  0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1331  0x03, 0x43, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xba,
-
1332  0x04, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x33, 0x2c, 0x01, 0x01, 0x8d,
-
1333  0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1334  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xde, 0x03, 0x2f,
-
1335  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb, 0x0a, 0x00,
-
1336  0x00, 0x15, 0x40, 0x0e, 0x03, 0x3a, 0x2c, 0x01, 0x01, 0x70, 0x56, 0x02,
-
1337  0x2c, 0x0a, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1338  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x3d, 0x06, 0x26,
-
1339  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0x02, 0x00, 0x00, 0x15,
-
1340  0x40, 0x0e, 0x03, 0x37, 0x2c, 0x01, 0x01, 0xcc, 0x56, 0x02, 0x2c, 0x0a,
-
1341  0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1342  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x12,
-
1343  0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xf9, 0x00, 0x00, 0x0d, 0xb7, 0x03,
-
1344  0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
1345  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x9d, 0x06, 0x26,
-
1346  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0x09, 0x00, 0x00, 0x0d,
-
1347  0xb7, 0x03, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34,
-
1348  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0x97,
-
1349  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x05, 0x00,
-
1350  0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
-
1351  0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x65, 0x01, 0xc1, 0x01, 0xd7,
-
1352  0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
-
1353  0x00, 0x0e, 0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
-
1354  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1355  0x02, 0xb1, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c,
-
1356  0xff, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x27, 0x56,
-
1357  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1358  0x02, 0xc8, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85,
-
1359  0x16, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x33, 0x0a, 0x01, 0x01, 0x37, 0x56,
-
1360  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1361  0x02, 0x89, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
-
1362  0x03, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x3c, 0x56,
-
1363  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1364  0x02, 0x73, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
-
1365  0x0a, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56,
-
1366  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1,
-
1367  0x03, 0x49, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
-
1368  0x0a, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xfb, 0x00, 0x98, 0x00, 0x15,
-
1369  0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01, 0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a,
-
1370  0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1371  0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x12,
-
1372  0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x0a, 0x00, 0x01, 0x07, 0x03, 0x7c,
-
1373  0xff, 0xff, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x30, 0x2c, 0x01,
-
1374  0x01, 0x60, 0x56, 0x02, 0x2c, 0x0a, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b,
-
1375  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2e, 0xff, 0x29, 0x01, 0xc1,
-
1376  0x01, 0xd7, 0x06, 0x26, 0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x9f,
-
1377  0xef, 0x0f, 0x00, 0x0b, 0xb6, 0x02, 0x35, 0x00, 0x00, 0x00, 0x2a, 0x56,
-
1378  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x28, 0xff, 0xf5, 0x01, 0xca,
-
1379  0x01, 0xd7, 0x00, 0x16, 0x00, 0x37, 0x00, 0x1d, 0x40, 0x0e, 0x08, 0x27,
-
1380  0x27, 0x2f, 0x2f, 0x00, 0x1f, 0x0f, 0x06, 0x72, 0x17, 0x00, 0x0b, 0x72,
-
1381  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30,
-
1382  0x31, 0x57, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x26, 0x26, 0x35,
-
1383  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
1384  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
1385  0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x2e, 0x02, 0x23, 0x22,
-
1386  0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0xea, 0x3c, 0x58, 0x2e, 0x16, 0x26,
-
1387  0x1b, 0x1f, 0x1f, 0x2c, 0x4f, 0x33, 0x44, 0x62, 0x35, 0x36, 0x66, 0x43,
-
1388  0x2b, 0x3d, 0x20, 0x1d, 0x3b, 0x2a, 0x1e, 0x27, 0x13, 0x10, 0x25, 0x20,
-
1389  0x08, 0x0e, 0x08, 0x08, 0x0c, 0x0b, 0x08, 0x18, 0x25, 0x1a, 0x0e, 0x1b,
-
1390  0x30, 0x0b, 0x01, 0x27, 0x44, 0x29, 0x1d, 0x2c, 0x20, 0x07, 0x12, 0x32,
-
1391  0x1e, 0x22, 0x38, 0x21, 0x3d, 0x6c, 0x48, 0x47, 0x6e, 0x3c, 0x46, 0x28,
-
1392  0x4c, 0x38, 0x33, 0x4c, 0x2a, 0x11, 0x1c, 0x13, 0x10, 0x1b, 0x10, 0x01,
-
1393  0x01, 0x49, 0x01, 0x01, 0x01, 0x09, 0x13, 0x19, 0x12, 0x16, 0x24, 0x15,
-
1394  0xff, 0xff, 0x00, 0x2e, 0xff, 0xf6, 0x01, 0xc1, 0x02, 0xac, 0x06, 0x26,
-
1395  0x01, 0x12, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x0b,
-
1396  0xb6, 0x02, 0x30, 0x0a, 0x01, 0x01, 0x6a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1397  0x00, 0x02, 0x00, 0x33, 0xff, 0xf5, 0x01, 0xc6, 0x01, 0xd6, 0x00, 0x20,
-
1398  0x00, 0x2b, 0x00, 0x19, 0x40, 0x0c, 0x12, 0x22, 0x22, 0x00, 0x27, 0x0a,
-
1399  0x0b, 0x72, 0x18, 0x00, 0x07, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
1400  0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e,
-
1401  0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x37, 0x21, 0x2e, 0x03,
-
1402  0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3e, 0x02, 0x13, 0x23, 0x14, 0x1e,
-
1403  0x02, 0x33, 0x32, 0x3e, 0x02, 0xe4, 0x32, 0x53, 0x3d, 0x20, 0x21, 0x3a,
-
1404  0x4d, 0x2d, 0x27, 0x46, 0x33, 0x1e, 0x01, 0x01, 0x01, 0x3f, 0x02, 0x19,
-
1405  0x28, 0x33, 0x1d, 0x16, 0x2a, 0x23, 0x10, 0x2e, 0x15, 0x32, 0x3b, 0xaf,
-
1406  0xe9, 0x10, 0x1c, 0x29, 0x19, 0x17, 0x28, 0x21, 0x17, 0x01, 0xd6, 0x1f,
-
1407  0x3d, 0x59, 0x39, 0x3a, 0x5b, 0x3d, 0x21, 0x1b, 0x36, 0x53, 0x38, 0x09,
-
1408  0x15, 0x08, 0x28, 0x3b, 0x26, 0x12, 0x0a, 0x16, 0x11, 0x2d, 0x19, 0x20,
-
1409  0x0f, 0xfe, 0xe0, 0x1e, 0x2f, 0x21, 0x11, 0x0f, 0x1f, 0x30, 0xff, 0xff,
-
1410  0x00, 0x4e, 0xff, 0x4e, 0x01, 0xc4, 0x01, 0xcb, 0x04, 0x07, 0x00, 0x41,
-
1411  0x00, 0x0f, 0xff, 0x5c, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x01, 0xde,
-
1412  0x02, 0xa1, 0x00, 0x1e, 0x00, 0x1b, 0x40, 0x0e, 0x1e, 0x0a, 0x72, 0x01,
-
1413  0x1c, 0x1c, 0x02, 0x19, 0x06, 0x72, 0x14, 0x08, 0x01, 0x72, 0x00, 0x2b,
-
1414  0x32, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x23, 0x35,
-
1415  0x33, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
1416  0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x33,
-
1417  0x15, 0x23, 0x11, 0x23, 0x9a, 0x63, 0x63, 0x2f, 0x50, 0x31, 0x2d, 0x4d,
-
1418  0x1a, 0x28, 0x05, 0x07, 0x02, 0x06, 0x0b, 0x11, 0x20, 0x18, 0x1c, 0x2c,
-
1419  0x18, 0x92, 0x92, 0x54, 0x01, 0x88, 0x44, 0x22, 0x3e, 0x4f, 0x26, 0x1f,
-
1420  0x20, 0x3d, 0x08, 0x04, 0x08, 0x10, 0x0b, 0x0e, 0x0b, 0x16, 0x30, 0x28,
-
1421  0x23, 0x44, 0xfe, 0x78, 0x00, 0x04, 0x00, 0x23, 0xff, 0x52, 0x01, 0xde,
-
1422  0x01, 0xdc, 0x00, 0x36, 0x00, 0x46, 0x00, 0x56, 0x00, 0x5e, 0x00, 0x3d,
-
1423  0x40, 0x22, 0x57, 0x5c, 0x5c, 0x5b, 0x25, 0x24, 0x47, 0x47, 0x37, 0x4f,
-
1424  0x3f, 0x29, 0x21, 0x2d, 0x09, 0x0a, 0x1b, 0x17, 0x07, 0x37, 0x37, 0x00,
-
1425  0x58, 0x5b, 0x3f, 0x07, 0x72, 0x5b, 0x07, 0x72, 0x13, 0x00, 0x0f, 0x72,
-
1426  0x00, 0x2b, 0x32, 0x2b, 0x2b, 0x11, 0x33, 0x12, 0x39, 0x2f, 0x17, 0x39,
-
1427  0x11, 0x33, 0x11, 0x33, 0x12, 0x39, 0x39, 0x11, 0x33, 0x11, 0x33, 0x30,
-
1428  0x31, 0x57, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e,
-
1429  0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
1430  0x26, 0x23, 0x22, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02,
-
1431  0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
1432  0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
1433  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
1434  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, 0x36, 0x36,
-
1435  0x17, 0x17, 0x26, 0x06, 0xf4, 0x30, 0x4e, 0x36, 0x1d, 0x18, 0x27, 0x18,
-
1436  0x25, 0x11, 0x17, 0x0b, 0x14, 0x24, 0x34, 0x20, 0x2b, 0x38, 0x1c, 0x10,
-
1437  0x30, 0x2e, 0x22, 0x3c, 0x31, 0x22, 0x13, 0x21, 0x1a, 0x28, 0x0a, 0x0d,
-
1438  0x06, 0x1b, 0x41, 0x36, 0x32, 0x40, 0x24, 0x0f, 0x17, 0x31, 0x4e, 0x49,
-
1439  0x31, 0x4a, 0x29, 0x29, 0x4a, 0x31, 0x32, 0x49, 0x29, 0x29, 0x49, 0x32,
-
1440  0x1b, 0x29, 0x19, 0x19, 0x29, 0x1b, 0x1a, 0x2a, 0x18, 0x18, 0x2a, 0xa3,
-
1441  0x21, 0x1d, 0x42, 0x2a, 0x0a, 0x20, 0x3a, 0xae, 0x10, 0x1e, 0x2c, 0x1d,
-
1442  0x1b, 0x2b, 0x1e, 0x08, 0x13, 0x0b, 0x15, 0x1b, 0x13, 0x0f, 0x19, 0x10,
-
1443  0x09, 0x11, 0x1f, 0x13, 0x14, 0x19, 0x0c, 0x06, 0x0e, 0x15, 0x20, 0x15,
-
1444  0x1c, 0x30, 0x16, 0x1c, 0x0b, 0x0f, 0x0e, 0x09, 0x0f, 0x12, 0x09, 0x12,
-
1445  0x21, 0x2b, 0x19, 0x1c, 0x33, 0x28, 0x18, 0x01, 0x4a, 0x2a, 0x49, 0x2d,
-
1446  0x2c, 0x48, 0x2c, 0x2c, 0x48, 0x2c, 0x2d, 0x49, 0x2a, 0x43, 0x19, 0x2a,
-
1447  0x1a, 0x1a, 0x29, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2b, 0x19, 0x9f, 0x28,
-
1448  0x1b, 0x1a, 0x03, 0x42, 0x04, 0x0a, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1449  0x01, 0xde, 0x02, 0x90, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1450  0x03, 0x9a, 0x09, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1451  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1452  0x01, 0xde, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1453  0x03, 0x80, 0xe4, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x64, 0x3f, 0x01, 0x01,
-
1454  0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1455  0x01, 0xde, 0x02, 0xad, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1456  0x03, 0x7f, 0xea, 0xff, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1457  0x25, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1458  0x01, 0xde, 0x03, 0x2e, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1459  0x03, 0x88, 0xf8, 0xf8, 0x00, 0x0b, 0xb6, 0x04, 0x6b, 0x3f, 0x01, 0x01,
-
1460  0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1461  0x01, 0xde, 0x02, 0x97, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1462  0x03, 0x7b, 0xe5, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1463  0x4f, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x52,
-
1464  0x01, 0xde, 0x02, 0x73, 0x06, 0x26, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x06,
-
1465  0x03, 0x84, 0xea, 0x00, 0x00, 0x0b, 0xb6, 0x04, 0x5f, 0x3f, 0x01, 0x01,
-
1466  0x5b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x43, 0x00, 0x00,
-
1467  0x01, 0xb7, 0x02, 0x9b, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x11, 0x1e,
-
1468  0x0a, 0x72, 0x07, 0x16, 0x16, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00,
-
1469  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30, 0x31, 0x53, 0x33, 0x33,
-
1470  0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
1471  0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11,
-
1472  0x23, 0x43, 0x54, 0x09, 0x05, 0x03, 0x11, 0x30, 0x35, 0x1b, 0x2a, 0x41,
-
1473  0x23, 0x54, 0x14, 0x23, 0x17, 0x12, 0x24, 0x20, 0x19, 0x0e, 0x55, 0x02,
-
1474  0x9b, 0x08, 0x06, 0x0e, 0x11, 0xed, 0x1b, 0x26, 0x15, 0x27, 0x55, 0x45,
-
1475  0xfe, 0xea, 0x01, 0x14, 0x2e, 0x36, 0x18, 0x0c, 0x17, 0x21, 0x2a, 0x1a,
-
1476  0xfe, 0xf8, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x01, 0xb7, 0x02, 0x9b,
-
1477  0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x88,
-
1478  0x00, 0xea, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x0b, 0x01, 0x01, 0x34, 0x56,
-
1479  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43, 0xff, 0x4c, 0x01, 0xb7,
-
1480  0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8f,
-
1481  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x1f, 0x11, 0x01, 0x01, 0xb8, 0xff,
-
1482  0xc5, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0xff, 0xd2, 0x00, 0x00,
-
1483  0x01, 0xb7, 0x03, 0x46, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00, 0x01, 0x07,
-
1484  0x03, 0xa5, 0xff, 0x7c, 0x00, 0x2c, 0x00, 0x0b, 0xb6, 0x01, 0x1f, 0x00,
-
1485  0x01, 0x01, 0x20, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x43,
-
1486  0xff, 0x65, 0x01, 0xb7, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x34, 0x00, 0x00,
-
1487  0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x25, 0x11,
-
1488  0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
1489  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26, 0x01, 0x3a,
-
1490  0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1491  0x0a, 0x05, 0x00, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
1492  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x01, 0xcc, 0x00, 0x09, 0x00, 0x17,
-
1493  0x40, 0x0b, 0x07, 0x01, 0x01, 0x00, 0x04, 0x05, 0x06, 0x72, 0x00, 0x0a,
-
1494  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
1495  0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x5f, 0x74, 0x6e,
-
1496  0xc4, 0x6a, 0x44, 0x01, 0x43, 0x45, 0xfe, 0x78, 0x44, 0x00, 0xff, 0xff,
-
1497  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xbd, 0x06, 0x26, 0x01, 0x3a,
-
1498  0x00, 0x00, 0x01, 0x06, 0x03, 0x96, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1499  0x0a, 0x05, 0x01, 0x01, 0x41, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1500  0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x93, 0x06, 0x26, 0x01, 0x3a,
-
1501  0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1502  0x0e, 0x05, 0x01, 0x01, 0x51, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1503  0x00, 0x5e, 0x00, 0x00, 0x01, 0x95, 0x02, 0xad, 0x06, 0x26, 0x01, 0x3a,
-
1504  0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01,
-
1505  0x0a, 0x05, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1506  0x00, 0x4a, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x3a,
-
1507  0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02,
-
1508  0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00,
-
1509  0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x9d, 0x06, 0x26,
-
1510  0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x93, 0xf8, 0x00, 0x00, 0x0d,
-
1511  0xb7, 0x02, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
-
1512  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x03, 0x46,
-
1513  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a, 0xff, 0x00,
-
1514  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0x95, 0x00, 0x1a, 0xb4, 0x03,
-
1515  0x22, 0x10, 0x01, 0x00, 0xb8, 0xff, 0xf6, 0x40, 0x09, 0x56, 0x02, 0x01,
-
1516  0x0a, 0x05, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34,
-
1517  0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
-
1518  0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0xfb, 0x00, 0x00, 0x0b,
-
1519  0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1520  0xff, 0xff, 0x00, 0x5f, 0xff, 0x65, 0x01, 0x93, 0x02, 0x97, 0x06, 0x26,
-
1521  0x01, 0x39, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e,
-
1522  0xb4, 0x02, 0x1c, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
1523  0x2b, 0x34, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xb1,
-
1524  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00,
-
1525  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
-
1526  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0xc8,
-
1527  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff,
-
1528  0x00, 0x0b, 0xb6, 0x01, 0x11, 0x05, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
-
1529  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x89,
-
1530  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
-
1531  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1532  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00, 0x01, 0x93, 0x02, 0x73,
-
1533  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x00, 0x00,
-
1534  0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b,
-
1535  0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0xff, 0x19, 0x01, 0x94, 0x02, 0x97,
-
1536  0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00,
-
1537  0x01, 0x06, 0x03, 0x8e, 0x6b, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x20,
-
1538  0x00, 0x00, 0x00, 0x00, 0x56, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x60, 0x56,
-
1539  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x5f, 0x00, 0x00,
-
1540  0x01, 0x93, 0x02, 0xac, 0x06, 0x26, 0x01, 0x3a, 0x00, 0x00, 0x01, 0x06,
-
1541  0x03, 0xb4, 0xf6, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x0e, 0x05, 0x01, 0x01,
-
1542  0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2c, 0xff, 0x51,
-
1543  0x01, 0x7e, 0x02, 0x97, 0x06, 0x26, 0x01, 0x4a, 0x00, 0x00, 0x01, 0x06,
-
1544  0x03, 0x7b, 0x45, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01,
-
1545  0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01, 0x00, 0x2c, 0xff, 0x51,
-
1546  0x01, 0x75, 0x01, 0xcc, 0x00, 0x19, 0x00, 0x13, 0x40, 0x09, 0x0c, 0x19,
-
1547  0x12, 0x13, 0x06, 0x72, 0x19, 0x0f, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
-
1548  0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
-
1549  0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33,
-
1550  0x11, 0x14, 0x06, 0x06, 0x23, 0xc1, 0x2c, 0x4e, 0x1b, 0x2f, 0x06, 0x06,
-
1551  0x02, 0x06, 0x0b, 0x0d, 0x23, 0x16, 0x1d, 0x2a, 0x17, 0xa7, 0xfe, 0x32,
-
1552  0x51, 0x31, 0xaf, 0x22, 0x21, 0x3f, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0b,
-
1553  0x0e, 0x19, 0x35, 0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4c, 0x46, 0x58, 0x29,
-
1554  0xff, 0xff, 0x00, 0x2c, 0xff, 0x51, 0x01, 0xdf, 0x02, 0xad, 0x06, 0x26,
-
1555  0x01, 0x4a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x4b, 0xff, 0x00, 0x0b,
-
1556  0xb6, 0x01, 0x1a, 0x13, 0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1557  0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc, 0x01, 0xe3, 0x02, 0x9b, 0x00, 0x15,
-
1558  0x00, 0x1c, 0x40, 0x10, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x12, 0x06,
-
1559  0x72, 0x04, 0x00, 0x72, 0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
1560  0x2b, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
-
1561  0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
-
1562  0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
-
1563  0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x02, 0x9b,
-
1564  0x08, 0x06, 0x0e, 0x11, 0xfe, 0x9a, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5,
-
1565  0xfe, 0xec, 0x04, 0x00, 0xff, 0xff, 0x00, 0x3d, 0xfe, 0xe6, 0x01, 0xe3,
-
1566  0x02, 0x9b, 0x06, 0x26, 0x01, 0x4c, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c,
-
1567  0x0d, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x22, 0x03, 0x01, 0x01, 0xb8, 0xff,
-
1568  0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xfc,
-
1569  0x01, 0xe3, 0x01, 0xce, 0x00, 0x15, 0x00, 0x22, 0x40, 0x12, 0x0c, 0x12,
-
1570  0x12, 0x01, 0x00, 0x0b, 0x13, 0x04, 0x03, 0x04, 0x06, 0x72, 0x15, 0x14,
-
1571  0x14, 0x03, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x2b, 0x12, 0x17,
-
1572  0x39, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x07, 0x15, 0x23, 0x11, 0x33,
-
1573  0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x37, 0x1e, 0x03, 0x33, 0x33, 0x07,
-
1574  0x13, 0x07, 0xc9, 0x35, 0x57, 0x56, 0x0a, 0x06, 0x03, 0xd4, 0x07, 0x0e,
-
1575  0x0f, 0x10, 0x06, 0x24, 0xbe, 0xdb, 0x69, 0xdf, 0x32, 0xad, 0x01, 0xcc,
-
1576  0x08, 0x06, 0x0e, 0x11, 0x97, 0xc6, 0x01, 0x02, 0x01, 0x01, 0xb5, 0xfe,
-
1577  0xec, 0x04, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x02, 0x9b,
-
1578  0x00, 0x09, 0x00, 0x15, 0x40, 0x0a, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01,
-
1579  0x01, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x30,
-
1580  0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x4a,
-
1581  0x85, 0x7f, 0xd6, 0x85, 0x44, 0x02, 0x13, 0x44, 0xfd, 0xa9, 0x44, 0x00,
-
1582  0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xab, 0x03, 0x47, 0x06, 0x26,
-
1583  0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0xa3, 0xed, 0x2c, 0x00, 0x0b,
-
1584  0xb6, 0x01, 0x0a, 0x05, 0x01, 0x01, 0x25, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1585  0xff, 0xff, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xd4, 0x02, 0xa3, 0x06, 0x26,
-
1586  0x01, 0x4f, 0x00, 0x00, 0x01, 0x07, 0x03, 0x6f, 0x00, 0xa4, 0x00, 0x00,
-
1587  0x00, 0x0b, 0xb6, 0x01, 0x17, 0x05, 0x00, 0x00, 0x06, 0x56, 0x00, 0x2b,
-
1588  0x34, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xfe, 0xe6, 0x01, 0xab, 0x02, 0x9b,
-
1589  0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x0d, 0x00,
-
1590  0x00, 0x0e, 0xb4, 0x01, 0x16, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0,
-
1591  0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x41, 0x00, 0x00, 0x01, 0xc8,
-
1592  0x02, 0x9c, 0x00, 0x09, 0x00, 0x15, 0x00, 0x1d, 0x40, 0x0e, 0x10, 0x0a,
-
1593  0x0a, 0x00, 0x04, 0x05, 0x00, 0x72, 0x07, 0x01, 0x01, 0x00, 0x0a, 0x72,
-
1594  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30,
-
1595  0x31, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15, 0x03,
-
1596  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x41,
-
1597  0x70, 0x6a, 0xc1, 0x98, 0x1a, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26,
-
1598  0x44, 0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x01, 0x0d, 0x24, 0x1b, 0x1a,
-
1599  0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65,
-
1600  0x01, 0xab, 0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06,
-
1601  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x10, 0x00, 0x01, 0x01,
-
1602  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x03, 0x00, 0x15,
-
1603  0xff, 0x51, 0x01, 0xbc, 0x02, 0x9c, 0x00, 0x19, 0x00, 0x23, 0x00, 0x2f,
-
1604  0x00, 0x25, 0x40, 0x14, 0x1e, 0x1f, 0x00, 0x72, 0x21, 0x1b, 0x1b, 0x1a,
-
1605  0x0a, 0x72, 0x2a, 0x24, 0x12, 0x13, 0x06, 0x72, 0x0c, 0x00, 0x0f, 0x72,
-
1606  0x00, 0x2b, 0x32, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2b,
-
1607  0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x16,
-
1608  0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x11, 0x14,
-
1609  0x0e, 0x02, 0x25, 0x35, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x15,
-
1610  0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
1611  0xfd, 0x29, 0x42, 0x19, 0x32, 0x05, 0x03, 0x05, 0x0e, 0x11, 0x09, 0x15,
-
1612  0x0c, 0x1b, 0x2a, 0x18, 0x7f, 0xd6, 0x1d, 0x32, 0x43, 0xfe, 0xf2, 0x3c,
-
1613  0x36, 0x8c, 0x72, 0x68, 0x18, 0x21, 0x20, 0x19, 0x18, 0x23, 0x23, 0xaf,
-
1614  0x1e, 0x1d, 0x46, 0x04, 0x0a, 0x0b, 0x0d, 0x08, 0x04, 0x06, 0x19, 0x35,
-
1615  0x2a, 0x01, 0x75, 0x45, 0xfe, 0x4a, 0x34, 0x4a, 0x2f, 0x17, 0xae, 0x44,
-
1616  0x02, 0x14, 0x44, 0xfd, 0xa8, 0x44, 0x02, 0x25, 0x22, 0x17, 0x19, 0x20,
-
1617  0x22, 0x17, 0x17, 0x22, 0xff, 0xff, 0x00, 0x4a, 0xff, 0x65, 0x01, 0xab,
-
1618  0x02, 0x9b, 0x06, 0x26, 0x01, 0x4f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90,
-
1619  0x02, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x0b, 0x00, 0x01, 0x01, 0xb8, 0xff,
-
1620  0x9d, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x4b, 0x00, 0x00,
-
1621  0x01, 0xaa, 0x02, 0x9b, 0x00, 0x11, 0x00, 0x1e, 0x40, 0x10, 0x03, 0x0e,
-
1622  0x06, 0x0b, 0x04, 0x00, 0x08, 0x09, 0x00, 0x72, 0x0f, 0x01, 0x01, 0x00,
-
1623  0x0a, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x12, 0x17, 0x39,
-
1624  0x30, 0x31, 0x73, 0x35, 0x33, 0x35, 0x07, 0x35, 0x37, 0x35, 0x23, 0x35,
-
1625  0x33, 0x11, 0x37, 0x15, 0x07, 0x15, 0x33, 0x15, 0x4b, 0x84, 0x4d, 0x4d,
-
1626  0x7e, 0xd5, 0x58, 0x58, 0x84, 0x44, 0xca, 0x1a, 0x4e, 0x1b, 0xfa, 0x44,
-
1627  0xfe, 0xdf, 0x20, 0x51, 0x1e, 0xe7, 0x44, 0x00, 0x00, 0x01, 0x00, 0x23,
-
1628  0x00, 0x00, 0x01, 0xd9, 0x01, 0xd7, 0x00, 0x2b, 0x00, 0x25, 0x40, 0x13,
-
1629  0x03, 0x25, 0x0b, 0x1b, 0x1b, 0x0f, 0x0f, 0x25, 0x07, 0x07, 0x72, 0x01,
-
1630  0x06, 0x72, 0x21, 0x16, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2b,
-
1631  0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x73,
-
1632  0x11, 0x33, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x3e, 0x02,
-
1633  0x33, 0x32, 0x1e, 0x02, 0x07, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23,
-
1634  0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x0e,
-
1635  0x02, 0x15, 0x11, 0x23, 0x4c, 0x0b, 0x1c, 0x21, 0x11, 0x13, 0x21, 0x17,
-
1636  0x05, 0x0a, 0x1e, 0x28, 0x16, 0x18, 0x22, 0x17, 0x0a, 0x01, 0x4d, 0x09,
-
1637  0x11, 0x0c, 0x11, 0x1e, 0x13, 0x4b, 0x13, 0x19, 0x0b, 0x15, 0x11, 0x0b,
-
1638  0x01, 0xcc, 0x2a, 0x11, 0x17, 0x0d, 0x0f, 0x1d, 0x14, 0x14, 0x1c, 0x10,
-
1639  0x12, 0x20, 0x2e, 0x1b, 0xfe, 0xa4, 0x01, 0x42, 0x26, 0x25, 0x0b, 0x1f,
-
1640  0x31, 0x1b, 0xfe, 0xd3, 0x01, 0x3d, 0x36, 0x24, 0x0e, 0x19, 0x27, 0x18,
-
1641  0xfe, 0xcf, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd9, 0x01, 0xd7,
-
1642  0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00,
-
1643  0x00, 0x0e, 0xb4, 0x01, 0x32, 0x21, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0,
-
1644  0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
-
1645  0x01, 0xd7, 0x00, 0x18, 0x00, 0x19, 0x40, 0x0d, 0x03, 0x12, 0x12, 0x07,
-
1646  0x07, 0x72, 0x01, 0x06, 0x72, 0x0d, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32,
-
1647  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x11, 0x33, 0x15, 0x3e,
-
1648  0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26,
-
1649  0x23, 0x22, 0x0e, 0x02, 0x15, 0x11, 0x42, 0x55, 0x11, 0x2e, 0x37, 0x1e,
-
1650  0x27, 0x3e, 0x26, 0x54, 0x14, 0x24, 0x17, 0x15, 0x2c, 0x25, 0x16, 0x01,
-
1651  0xcc, 0x4c, 0x1a, 0x27, 0x16, 0x27, 0x54, 0x46, 0xfe, 0xea, 0x01, 0x14,
-
1652  0x2d, 0x36, 0x19, 0x13, 0x22, 0x31, 0x1e, 0xfe, 0xf4, 0x00, 0xff, 0xff,
-
1653  0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x5a,
-
1654  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xff, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1655  0x19, 0x07, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1656  0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x5a,
-
1657  0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x08, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1658  0x1e, 0x07, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1659  0x00, 0x42, 0xfe, 0xe6, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x5a,
-
1660  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x17, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
1661  0x25, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xe0, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1662  0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6, 0x02, 0x97, 0x06, 0x26,
-
1663  0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x09, 0x00, 0x00, 0x0b,
-
1664  0xb6, 0x01, 0x19, 0x07, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1665  0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7, 0x06, 0x26,
-
1666  0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x13, 0x00, 0x00, 0x0e,
-
1667  0xb4, 0x01, 0x1f, 0x0d, 0x01, 0x01, 0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00,
-
1668  0x2b, 0x34, 0x00, 0x01, 0x00, 0x3f, 0xff, 0x4f, 0x01, 0xb7, 0x01, 0xd6,
-
1669  0x00, 0x2d, 0x00, 0x1d, 0x40, 0x10, 0x1e, 0x13, 0x13, 0x23, 0x07, 0x72,
-
1670  0x1c, 0x06, 0x72, 0x1b, 0x0a, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b,
-
1671  0x32, 0x2b, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
-
1672  0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x2e,
-
1673  0x02, 0x23, 0x22, 0x0e, 0x03, 0x15, 0x11, 0x23, 0x11, 0x33, 0x15, 0x3e,
-
1674  0x03, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x15, 0x14, 0x0e, 0x02, 0x01, 0x08,
-
1675  0x1b, 0x35, 0x17, 0x26, 0x04, 0x05, 0x0b, 0x17, 0x16, 0x1f, 0x28, 0x14,
-
1676  0x0c, 0x17, 0x1d, 0x11, 0x12, 0x24, 0x20, 0x18, 0x0e, 0x57, 0x57, 0x0d,
-
1677  0x20, 0x26, 0x29, 0x15, 0x1e, 0x35, 0x27, 0x16, 0x1b, 0x30, 0x3f, 0xb1,
-
1678  0x13, 0x13, 0x4a, 0x01, 0x0a, 0x0d, 0x0a, 0x1f, 0x41, 0x2f, 0xe9, 0x21,
-
1679  0x2f, 0x1c, 0x0d, 0x0c, 0x17, 0x20, 0x29, 0x19, 0xfe, 0xf7, 0x01, 0xcc,
-
1680  0x4c, 0x14, 0x1f, 0x17, 0x0c, 0x15, 0x2d, 0x49, 0x34, 0xe0, 0x3d, 0x58,
-
1681  0x38, 0x1b, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xb6, 0x01, 0xd7,
-
1682  0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x0c, 0x00,
-
1683  0x00, 0x0e, 0xb4, 0x01, 0x1a, 0x00, 0x01, 0x01, 0xb8, 0xff, 0x9d, 0xb0,
-
1684  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00, 0x01, 0xb6,
-
1685  0x02, 0xac, 0x06, 0x26, 0x01, 0x5a, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
1686  0x04, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x1d, 0x07, 0x01, 0x01, 0x6a, 0x56,
-
1687  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1688  0x01, 0xd6, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x13, 0x40, 0x09, 0x10, 0x00,
-
1689  0x18, 0x08, 0x07, 0x72, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11,
-
1690  0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
1691  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
1692  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
-
1693  0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
-
1694  0x25, 0x38, 0x21, 0x21, 0x38, 0x25, 0x24, 0x39, 0x21, 0x20, 0x39, 0x09,
-
1695  0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
-
1696  0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
-
1697  0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1,
-
1698  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
-
1699  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
-
1700  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x93,
-
1701  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81, 0xf8, 0x00,
-
1702  0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1703  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xad,
-
1704  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x01, 0xff,
-
1705  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1706  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xec, 0x03, 0x2d,
-
1707  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb9, 0xfa, 0x00,
-
1708  0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01, 0x01, 0x78, 0x56, 0x02,
-
1709  0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1710  0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0xad, 0x06, 0x26,
-
1711  0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a, 0x09, 0x00, 0x01, 0x06,
-
1712  0x03, 0x7f, 0x01, 0xff, 0x00, 0x18, 0x40, 0x0c, 0x03, 0x2c, 0x08, 0x01,
-
1713  0x01, 0x2c, 0x56, 0x02, 0x26, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0,
-
1714  0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7,
-
1715  0x01, 0xd1, 0x03, 0x43, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
-
1716  0x03, 0xba, 0xfa, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x27, 0x20, 0x01,
-
1717  0x01, 0x8d, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b,
-
1718  0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd4,
-
1719  0x03, 0x2f, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbb,
-
1720  0x00, 0x00, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2e, 0x20, 0x01, 0x01, 0x70,
-
1721  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1722  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x3d,
-
1723  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0xbc, 0xf9, 0x00,
-
1724  0x00, 0x15, 0x40, 0x0e, 0x03, 0x2b, 0x20, 0x01, 0x01, 0xcc, 0x56, 0x02,
-
1725  0x20, 0x08, 0x01, 0x01, 0x2c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1726  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
-
1727  0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0xef, 0x00, 0x00, 0x0d,
-
1728  0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34,
-
1729  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x9d,
-
1730  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xff, 0x00,
-
1731  0x00, 0x0d, 0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x61, 0x56, 0x00,
-
1732  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1733  0x03, 0x08, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7a,
-
1734  0xff, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x17,
-
1735  0x40, 0x0f, 0x04, 0x38, 0x26, 0x01, 0x01, 0x30, 0x56, 0x03, 0x02, 0x20,
-
1736  0x08, 0x01, 0x01, 0x61, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x2b, 0x34, 0x00,
-
1737  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x08, 0x06, 0x26,
-
1738  0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7b, 0xfb, 0x00, 0x01, 0x07,
-
1739  0x03, 0x84, 0x00, 0x01, 0x00, 0x95, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x2c,
-
1740  0x26, 0x01, 0x01, 0x39, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x56, 0x56,
-
1741  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x65,
-
1742  0x01, 0xd1, 0x01, 0xd6, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06,
-
1743  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x26, 0x00, 0x01, 0x01,
-
1744  0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x23,
-
1745  0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1746  0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08,
-
1747  0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1748  0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1749  0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x27, 0x08,
-
1750  0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1751  0xff, 0xf7, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1752  0x01, 0x06, 0x03, 0x89, 0xe0, 0xea, 0x00, 0x0e, 0xb4, 0x02, 0x24, 0x08,
-
1753  0x01, 0x01, 0xb8, 0xff, 0xb0, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
1754  0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x73,
-
1755  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x03,
-
1756  0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1757  0x00, 0x23, 0xff, 0x65, 0x01, 0xd1, 0x02, 0x0e, 0x06, 0x26, 0x01, 0x73,
-
1758  0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x03,
-
1759  0x2f, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdc, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1760  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xb1, 0x06, 0x26,
-
1761  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf6, 0x00, 0x00, 0x0b,
-
1762  0xb6, 0x03, 0x29, 0x08, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1763  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc8, 0x06, 0x26,
-
1764  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b,
-
1765  0xb6, 0x03, 0x30, 0x08, 0x01, 0x01, 0x38, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1766  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac, 0x06, 0x26,
-
1767  0x01, 0x73, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00, 0x00, 0x0b,
-
1768  0xb6, 0x03, 0x2d, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1769  0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xc0, 0x06, 0x26,
-
1770  0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00, 0x00, 0x0d,
-
1771  0xb7, 0x03, 0x02, 0x20, 0x08, 0x01, 0x01, 0x37, 0x56, 0x00, 0x2b, 0x34,
-
1772  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x89,
-
1773  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0xfa, 0x00,
-
1774  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x3d, 0x56, 0x00, 0x2b,
-
1775  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0x73,
-
1776  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x01, 0x00,
-
1777  0x00, 0x0b, 0xb6, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b,
-
1778  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49,
-
1779  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84, 0x01, 0x00,
-
1780  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0x98, 0x00, 0x15, 0x40, 0x0e,
-
1781  0x03, 0x24, 0x21, 0x01, 0x01, 0x28, 0x56, 0x02, 0x20, 0x08, 0x01, 0x01,
-
1782  0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1783  0xff, 0xf7, 0x01, 0xd1, 0x03, 0x49, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1784  0x00, 0x26, 0x03, 0x84, 0x01, 0x00, 0x01, 0x07, 0x03, 0x7c, 0xff, 0xf6,
-
1785  0x00, 0x98, 0x00, 0x15, 0x40, 0x0e, 0x03, 0x24, 0x21, 0x01, 0x01, 0x28,
-
1786  0x56, 0x02, 0x20, 0x08, 0x01, 0x01, 0x62, 0x56, 0x00, 0x2b, 0x34, 0x2b,
-
1787  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0x28, 0x01, 0xd1, 0x01, 0xd6,
-
1788  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x06, 0x03, 0x8e, 0x31, 0x0f,
-
1789  0x00, 0x03, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0x08, 0x00, 0x03,
-
1790  0x00, 0x13, 0x00, 0x23, 0x00, 0x1e, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x1c,
-
1791  0x0c, 0x07, 0x72, 0x01, 0x00, 0x00, 0x14, 0x04, 0x0b, 0x72, 0x00, 0x2b,
-
1792  0x32, 0x32, 0x7c, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x30, 0x31,
-
1793  0x57, 0x27, 0x01, 0x17, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
1794  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
-
1795  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
1796  0x7f, 0x3d, 0x01, 0x2c, 0x40, 0xb4, 0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e,
-
1797  0x3e, 0x61, 0x38, 0x38, 0x61, 0x3e, 0x25, 0x38, 0x21, 0x21, 0x38, 0x25,
-
1798  0x24, 0x39, 0x21, 0x20, 0x39, 0x41, 0x21, 0x02, 0x28, 0x21, 0xfe, 0x10,
-
1799  0x3d, 0x6c, 0x46, 0x46, 0x6c, 0x3e, 0x3e, 0x6c, 0x46, 0x46, 0x6c, 0x3d,
-
1800  0x46, 0x2c, 0x4c, 0x32, 0x32, 0x4c, 0x2b, 0x2b, 0x4c, 0x32, 0x32, 0x4c,
-
1801  0x2c, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xbf, 0x01, 0xd1, 0x02, 0xb1,
-
1802  0x06, 0x26, 0x01, 0x7f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00,
-
1803  0x00, 0x0b, 0xb6, 0x03, 0x24, 0x0c, 0x01, 0x01, 0x28, 0x56, 0x00, 0x2b,
-
1804  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x02, 0xac,
-
1805  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xf6, 0x00,
-
1806  0x00, 0x0b, 0xb6, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b,
-
1807  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1, 0x03, 0x65,
-
1808  0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83, 0xf6, 0x00,
-
1809  0x01, 0x07, 0x03, 0x7d, 0xff, 0xf2, 0x00, 0xb4, 0x00, 0x15, 0x40, 0x0e,
-
1810  0x03, 0x38, 0x30, 0x01, 0x00, 0x03, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01,
-
1811  0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23,
-
1812  0xff, 0xf7, 0x01, 0xd1, 0x03, 0x51, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00,
-
1813  0x00, 0x26, 0x03, 0x83, 0xf6, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff,
-
1814  0x00, 0xb4, 0x00, 0x17, 0x40, 0x0f, 0x04, 0x03, 0x38, 0x30, 0x01, 0x01,
-
1815  0x3c, 0x56, 0x02, 0x24, 0x08, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34,
-
1816  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf7, 0x01, 0xd1,
-
1817  0x03, 0x27, 0x06, 0x26, 0x01, 0x63, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
-
1818  0xf6, 0x00, 0x01, 0x07, 0x03, 0x84, 0x00, 0x01, 0x00, 0xb4, 0x00, 0x15,
-
1819  0x40, 0x0e, 0x03, 0x38, 0x30, 0x01, 0x01, 0x3d, 0x56, 0x02, 0x24, 0x08,
-
1820  0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x03,
-
1821  0x00, 0x06, 0xff, 0xf4, 0x01, 0xed, 0x01, 0xd5, 0x00, 0x25, 0x00, 0x42,
-
1822  0x00, 0x4b, 0x00, 0x2f, 0x40, 0x17, 0x48, 0x15, 0x15, 0x26, 0x1f, 0x1f,
-
1823  0x00, 0x43, 0x1b, 0x00, 0x1b, 0x00, 0x1b, 0x06, 0x3b, 0x12, 0x0f, 0x07,
-
1824  0x72, 0x03, 0x06, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x32, 0x11,
-
1825  0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
1826  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x2e,
-
1827  0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x36, 0x36, 0x33,
-
1828  0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37,
-
1829  0x17, 0x06, 0x06, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x2e,
-
1830  0x02, 0x35, 0x34, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
1831  0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x33, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
1832  0x06, 0x01, 0x71, 0x20, 0x3a, 0x19, 0x16, 0x30, 0x1b, 0x1b, 0x35, 0x2c,
-
1833  0x1b, 0x2d, 0x48, 0x28, 0x1e, 0x2e, 0x11, 0x13, 0x31, 0x1d, 0x2b, 0x3e,
-
1834  0x21, 0xdd, 0x01, 0x17, 0x2a, 0x1d, 0x1d, 0x2c, 0x11, 0x26, 0x1b, 0x3c,
-
1835  0xf1, 0x0a, 0x11, 0x0d, 0x07, 0x01, 0x02, 0x04, 0x04, 0x02, 0x05, 0x05,
-
1836  0x06, 0x0c, 0x11, 0x0a, 0x16, 0x28, 0x19, 0x15, 0x27, 0x86, 0x9b, 0x01,
-
1837  0x0e, 0x21, 0x1b, 0x18, 0x24, 0x14, 0x0c, 0x14, 0x14, 0x14, 0x13, 0x15,
-
1838  0x36, 0x5d, 0x48, 0x58, 0x69, 0x2f, 0x16, 0x16, 0x15, 0x17, 0x2a, 0x53,
-
1839  0x3d, 0x41, 0x43, 0x47, 0x19, 0x11, 0x14, 0x30, 0x1d, 0x1b, 0x46, 0x05,
-
1840  0x0a, 0x0d, 0x09, 0x03, 0x0a, 0x09, 0x16, 0x28, 0x27, 0x15, 0x26, 0x32,
-
1841  0x1c, 0x04, 0x08, 0x0f, 0x0b, 0x07, 0x20, 0x46, 0x39, 0x3c, 0x52, 0x29,
-
1842  0xdf, 0x2b, 0x36, 0x19, 0x1d, 0x37, 0x00, 0x02, 0x00, 0x38, 0xff, 0x59,
-
1843  0x01, 0xd3, 0x01, 0xd6, 0x00, 0x16, 0x00, 0x2a, 0x00, 0x21, 0x40, 0x12,
-
1844  0x15, 0x17, 0x17, 0x11, 0x0b, 0x72, 0x03, 0x20, 0x20, 0x07, 0x07, 0x72,
-
1845  0x01, 0x06, 0x72, 0x00, 0x0e, 0x72, 0x00, 0x2b, 0x2b, 0x2b, 0x32, 0x11,
-
1846  0x33, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x15, 0x3e,
-
1847  0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x22, 0x26,
-
1848  0x26, 0x27, 0x15, 0x37, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27,
-
1849  0x26, 0x0e, 0x02, 0x15, 0x1e, 0x04, 0x38, 0x56, 0x0c, 0x29, 0x35, 0x1e,
-
1850  0x26, 0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f,
-
1851  0x72, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
-
1852  0x01, 0x0a, 0x14, 0x1b, 0x24, 0xa7, 0x02, 0x73, 0x52, 0x20, 0x29, 0x13,
-
1853  0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f, 0x0f, 0x1e, 0x14, 0xdc,
-
1854  0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28, 0x02, 0x02, 0x14, 0x2c,
-
1855  0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00, 0x00, 0x02, 0x00, 0x38,
-
1856  0xff, 0x59, 0x01, 0xd3, 0x02, 0x9b, 0x00, 0x1b, 0x00, 0x30, 0x00, 0x21,
-
1857  0x40, 0x12, 0x19, 0x1c, 0x1c, 0x15, 0x0b, 0x72, 0x1b, 0x0e, 0x72, 0x07,
-
1858  0x25, 0x25, 0x0b, 0x07, 0x72, 0x00, 0x00, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
1859  0x11, 0x33, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x33,
-
1860  0x15, 0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15,
-
1861  0x14, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x15, 0x23, 0x37, 0x32,
-
1862  0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x27, 0x26, 0x0e, 0x02, 0x15, 0x1e,
-
1863  0x04, 0x33, 0x38, 0x55, 0x0a, 0x06, 0x03, 0x0c, 0x29, 0x35, 0x1e, 0x26,
-
1864  0x44, 0x34, 0x1f, 0x20, 0x37, 0x44, 0x24, 0x1a, 0x32, 0x29, 0x0f, 0x58,
-
1865  0xca, 0x17, 0x2b, 0x23, 0x14, 0x1a, 0x32, 0x24, 0x1b, 0x2d, 0x22, 0x12,
-
1866  0x01, 0x0a, 0x14, 0x1b, 0x24, 0x15, 0x02, 0x9b, 0x08, 0x06, 0x0e, 0x11,
-
1867  0xf4, 0x20, 0x29, 0x13, 0x1e, 0x3b, 0x59, 0x3c, 0x3d, 0x5c, 0x3c, 0x1f,
-
1868  0x0f, 0x1e, 0x14, 0xdc, 0xe3, 0x11, 0x27, 0x42, 0x32, 0x34, 0x49, 0x28,
-
1869  0x02, 0x02, 0x14, 0x2c, 0x46, 0x32, 0x20, 0x32, 0x26, 0x18, 0x0d, 0x00,
-
1870  0x00, 0x02, 0x00, 0x25, 0xff, 0x59, 0x01, 0xbe, 0x01, 0xd7, 0x00, 0x17,
-
1871  0x00, 0x2b, 0x00, 0x21, 0x40, 0x12, 0x17, 0x0e, 0x72, 0x16, 0x06, 0x72,
-
1872  0x14, 0x22, 0x22, 0x0f, 0x07, 0x72, 0x01, 0x18, 0x18, 0x05, 0x0b, 0x72,
-
1873  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x2b, 0x30,
-
1874  0x31, 0x45, 0x35, 0x0e, 0x02, 0x23, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e,
-
1875  0x02, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x35, 0x33, 0x11, 0x27, 0x32, 0x3e,
-
1876  0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e,
-
1877  0x02, 0x01, 0x68, 0x0d, 0x28, 0x32, 0x1c, 0x29, 0x47, 0x34, 0x1c, 0x1e,
-
1878  0x37, 0x4a, 0x2b, 0x17, 0x25, 0x20, 0x18, 0x09, 0x52, 0xca, 0x18, 0x2a,
-
1879  0x20, 0x11, 0x10, 0x1e, 0x27, 0x18, 0x1a, 0x2f, 0x22, 0x14, 0x11, 0x20,
-
1880  0x2d, 0xa7, 0xe6, 0x16, 0x22, 0x11, 0x23, 0x3f, 0x59, 0x36, 0x38, 0x59,
-
1881  0x3f, 0x20, 0x09, 0x13, 0x1b, 0x10, 0x3c, 0xfd, 0x8d, 0xe4, 0x14, 0x2a,
-
1882  0x45, 0x30, 0x2d, 0x3f, 0x26, 0x11, 0x13, 0x29, 0x40, 0x2d, 0x2a, 0x40,
-
1883  0x2c, 0x17, 0x00, 0x01, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x01, 0xd7,
-
1884  0x00, 0x1b, 0x00, 0x1b, 0x40, 0x0e, 0x1b, 0x0a, 0x72, 0x03, 0x02, 0x02,
-
1885  0x14, 0x14, 0x08, 0x07, 0x72, 0x00, 0x06, 0x72, 0x00, 0x2b, 0x2b, 0x32,
-
1886  0x11, 0x33, 0x11, 0x33, 0x2b, 0x30, 0x31, 0x53, 0x33, 0x07, 0x27, 0x3e,
-
1887  0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1888  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x6d, 0x59, 0x02, 0x0b,
-
1889  0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25, 0x04, 0x07, 0x03,
-
1890  0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16, 0x57, 0x01, 0xcc,
-
1891  0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12, 0x19, 0x1a, 0x45, 0x09, 0x04, 0x08,
-
1892  0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26, 0x3b, 0x28, 0xf4, 0x00, 0xff, 0xff,
-
1893  0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26, 0x01, 0x89,
-
1894  0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x17, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1895  0x1c, 0x08, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1896  0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x89,
-
1897  0x00, 0x00, 0x01, 0x06, 0x03, 0x80, 0x20, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
1898  0x21, 0x08, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
1899  0x00, 0x6d, 0xfe, 0xe6, 0x01, 0xcd, 0x01, 0xd7, 0x06, 0x26, 0x01, 0x89,
-
1900  0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x27, 0x00, 0x00, 0x0e, 0xb4, 0x01,
-
1901  0x28, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xe1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
1902  0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0xb1, 0x06, 0x26,
-
1903  0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86, 0x15, 0x00, 0x00, 0x0d,
-
1904  0xb7, 0x02, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34,
-
1905  0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
-
1906  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x23, 0x00,
-
1907  0x00, 0x0e, 0xb4, 0x01, 0x22, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0xd5, 0xb0,
-
1908  0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x14, 0xff, 0x4f, 0x01, 0xea,
-
1909  0x01, 0xcd, 0x00, 0x2e, 0x00, 0x19, 0x40, 0x0d, 0x22, 0x2e, 0x0f, 0x72,
-
1910  0x1c, 0x06, 0x72, 0x06, 0x16, 0x16, 0x0a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
-
1911  0x11, 0x33, 0x2b, 0x2b, 0x32, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x27,
-
1912  0x37, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16,
-
1913  0x17, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x35, 0x33, 0x03, 0x14,
-
1914  0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x3e, 0x02, 0x37, 0x17, 0x06,
-
1915  0x06, 0x23, 0x01, 0x90, 0x1c, 0x30, 0x25, 0x15, 0x01, 0x01, 0x0c, 0x2a,
-
1916  0x33, 0x1c, 0x21, 0x35, 0x1b, 0x23, 0x04, 0x07, 0x03, 0x07, 0x0c, 0x0b,
-
1917  0x18, 0x11, 0x15, 0x2d, 0x25, 0x16, 0x57, 0x01, 0x10, 0x1b, 0x12, 0x06,
-
1918  0x0c, 0x0d, 0x06, 0x06, 0x04, 0x03, 0x03, 0x19, 0x11, 0x2d, 0x1c, 0xb1,
-
1919  0x10, 0x24, 0x3a, 0x2b, 0x69, 0x1d, 0x29, 0x16, 0x19, 0x1a, 0x42, 0x09,
-
1920  0x04, 0x07, 0x10, 0x0b, 0x08, 0x07, 0x13, 0x27, 0x3a, 0x28, 0xf3, 0xfe,
-
1921  0x1a, 0x1a, 0x23, 0x13, 0x02, 0x04, 0x04, 0x02, 0x07, 0x07, 0x02, 0x41,
-
1922  0x11, 0x12, 0xff, 0xff, 0x00, 0x6d, 0xff, 0xff, 0x01, 0xcd, 0x02, 0x89,
-
1923  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87, 0x20, 0x00,
-
1924  0x00, 0x0b, 0xb6, 0x01, 0x1c, 0x00, 0x01, 0x01, 0x47, 0x56, 0x00, 0x2b,
-
1925  0x34, 0x00, 0xff, 0xff, 0x00, 0x6d, 0xff, 0x65, 0x01, 0xcd, 0x01, 0xd7,
-
1926  0x06, 0x26, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x03, 0x90, 0x1c, 0x00,
-
1927  0x00, 0x0e, 0xb4, 0x01, 0x1d, 0x1b, 0x01, 0x01, 0xb8, 0xff, 0x9e, 0xb0,
-
1928  0x56, 0x00, 0x2b, 0x34, 0x00, 0x02, 0x00, 0x21, 0xff, 0xff, 0x01, 0xcd,
-
1929  0x01, 0xd7, 0x00, 0x03, 0x00, 0x1f, 0x00, 0x1f, 0x40, 0x0f, 0x01, 0x00,
-
1930  0x00, 0x1e, 0x07, 0x06, 0x06, 0x18, 0x18, 0x0c, 0x07, 0x72, 0x04, 0x06,
-
1931  0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x39, 0x2f,
-
1932  0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x03, 0x33, 0x07, 0x27, 0x3e,
-
1933  0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1934  0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x21, 0x01, 0x16, 0xca,
-
1935  0x59, 0x02, 0x0b, 0x06, 0x1d, 0x29, 0x32, 0x1b, 0x25, 0x3d, 0x19, 0x25,
-
1936  0x04, 0x07, 0x03, 0x07, 0x0d, 0x0f, 0x1c, 0x12, 0x18, 0x30, 0x27, 0x16,
-
1937  0x57, 0xa7, 0x43, 0x43, 0x01, 0x25, 0x84, 0x0c, 0x1f, 0x30, 0x22, 0x12,
-
1938  0x19, 0x1a, 0x45, 0x09, 0x04, 0x08, 0x0f, 0x0a, 0x0b, 0x08, 0x12, 0x26,
-
1939  0x3b, 0x28, 0xf4, 0x00, 0x00, 0x01, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc,
-
1940  0x01, 0xd7, 0x00, 0x3b, 0x00, 0x1a, 0x40, 0x0e, 0x11, 0x37, 0x1a, 0x2f,
-
1941  0x04, 0x3b, 0x2c, 0x1e, 0x07, 0x72, 0x0d, 0x3b, 0x0b, 0x72, 0x00, 0x2b,
-
1942  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
-
1943  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
-
1944  0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36,
-
1945  0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26,
-
1946  0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x15,
-
1947  0x14, 0x06, 0x06, 0x23, 0xfe, 0x28, 0x48, 0x3e, 0x1b, 0x2b, 0x06, 0x06,
-
1948  0x03, 0x05, 0x0b, 0x17, 0x3c, 0x2e, 0x22, 0x2f, 0x19, 0x0c, 0x1a, 0x2c,
-
1949  0x1f, 0x33, 0x4d, 0x2a, 0x29, 0x4d, 0x37, 0x1f, 0x34, 0x2d, 0x27, 0x11,
-
1950  0x2e, 0x07, 0x05, 0x01, 0x07, 0x0c, 0x16, 0x37, 0x1b, 0x26, 0x37, 0x16,
-
1951  0x36, 0x31, 0x38, 0x46, 0x20, 0x2a, 0x55, 0x3f, 0x0a, 0x0f, 0x21, 0x18,
-
1952  0x4c, 0x09, 0x04, 0x08, 0x11, 0x0c, 0x15, 0x1a, 0x11, 0x1d, 0x14, 0x0e,
-
1953  0x15, 0x12, 0x13, 0x09, 0x0f, 0x27, 0x36, 0x23, 0x25, 0x36, 0x1f, 0x09,
-
1954  0x12, 0x1b, 0x12, 0x3b, 0x08, 0x05, 0x08, 0x0f, 0x0b, 0x11, 0x12, 0x1a,
-
1955  0x1b, 0x0f, 0x1a, 0x1a, 0x0d, 0x11, 0x26, 0x32, 0x22, 0x26, 0x43, 0x27,
-
1956  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xb1, 0x06, 0x26,
-
1957  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0x00, 0x00, 0x00, 0x0b,
-
1958  0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1959  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x03, 0x36, 0x06, 0x26,
-
1960  0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x7d, 0x00, 0x00, 0x01, 0x07,
-
1961  0x03, 0x7b, 0x00, 0x19, 0x00, 0x9f, 0x00, 0x15, 0x40, 0x0e, 0x02, 0x40,
-
1962  0x3e, 0x01, 0x01, 0x17, 0x56, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x27, 0x56,
-
1963  0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
-
1964  0x01, 0xbc, 0x02, 0xb5, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06,
-
1965  0x03, 0x80, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x41, 0x1e, 0x01, 0x01,
-
1966  0x2e, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6,
-
1967  0x01, 0xbc, 0x03, 0x28, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26,
-
1968  0x03, 0x80, 0x00, 0x00, 0x01, 0x07, 0x03, 0x7b, 0x00, 0x01, 0x00, 0x91,
-
1969  0x00, 0x15, 0x40, 0x0e, 0x02, 0x43, 0x3c, 0x01, 0x00, 0x0c, 0x56, 0x01,
-
1970  0x41, 0x1e, 0x01, 0x01, 0x2e, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00,
-
1971  0xff, 0xff, 0x00, 0x35, 0xff, 0x38, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
-
1972  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0x00, 0x00, 0x00, 0x0b,
-
1973  0xb6, 0x01, 0x4b, 0x3b, 0x00, 0x00, 0x0a, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1974  0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0xae, 0x06, 0x26,
-
1975  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f, 0x00, 0x00, 0x00, 0x0b,
-
1976  0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x2b, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
1977  0xff, 0xff, 0x00, 0x35, 0xfe, 0xe6, 0x01, 0xbc, 0x01, 0xd7, 0x06, 0x26,
-
1978  0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x00, 0x00, 0x00, 0x0e,
-
1979  0xb4, 0x01, 0x48, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xea, 0xb0, 0x56, 0x00,
-
1980  0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x97,
-
1981  0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00,
-
1982  0x00, 0x0b, 0xb6, 0x01, 0x3c, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x00, 0x2b,
-
1983  0x34, 0x00, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc, 0x01, 0xd7,
-
1984  0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0x00, 0x00,
-
1985  0x00, 0x0e, 0xb4, 0x01, 0x42, 0x3b, 0x01, 0x01, 0xb8, 0xff, 0xde, 0xb0,
-
1986  0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x35, 0xff, 0x65, 0x01, 0xbc,
-
1987  0x02, 0x97, 0x06, 0x26, 0x01, 0x93, 0x00, 0x00, 0x00, 0x26, 0x03, 0x8a,
-
1988  0x00, 0x00, 0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x18, 0x40, 0x0c,
-
1989  0x02, 0x48, 0x1e, 0x01, 0x01, 0x55, 0x56, 0x01, 0x42, 0x3b, 0x01, 0x01,
-
1990  0xb8, 0xff, 0xde, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x01,
-
1991  0x00, 0x32, 0xff, 0xf5, 0x01, 0xd0, 0x02, 0x9e, 0x00, 0x3a, 0x00, 0x21,
-
1992  0x40, 0x11, 0x32, 0x13, 0x13, 0x12, 0x12, 0x00, 0x1f, 0x2a, 0x01, 0x72,
-
1993  0x25, 0x0a, 0x72, 0x07, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x2b,
-
1994  0x32, 0x11, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26,
-
1995  0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
1996  0x23, 0x23, 0x35, 0x33, 0x32, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x23,
-
1997  0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32,
-
1998  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x03, 0x15, 0x14, 0x06,
-
1999  0x06, 0x01, 0x1b, 0x1e, 0x32, 0x18, 0x26, 0x0d, 0x21, 0x14, 0x14, 0x25,
-
2000  0x1c, 0x10, 0x11, 0x23, 0x35, 0x25, 0x22, 0x28, 0x0e, 0x1c, 0x18, 0x12,
-
2001  0x0a, 0x0f, 0x1b, 0x25, 0x17, 0x22, 0x31, 0x19, 0x52, 0x2f, 0x52, 0x35,
-
2002  0x37, 0x56, 0x31, 0x12, 0x22, 0x1a, 0x1c, 0x2c, 0x1f, 0x11, 0x2d, 0x51,
-
2003  0x0b, 0x0f, 0x10, 0x42, 0x0c, 0x0c, 0x15, 0x24, 0x2f, 0x1c, 0x19, 0x2e,
-
2004  0x22, 0x13, 0x43, 0x09, 0x11, 0x19, 0x21, 0x14, 0x19, 0x28, 0x1f, 0x11,
-
2005  0x2b, 0x4d, 0x34, 0xfe, 0x52, 0x01, 0xaa, 0x53, 0x6c, 0x35, 0x31, 0x50,
-
2006  0x2f, 0x1c, 0x34, 0x29, 0x0d, 0x09, 0x21, 0x2f, 0x38, 0x21, 0x36, 0x58,
-
2007  0x33, 0x00, 0x00, 0x02, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
-
2008  0x00, 0x1a, 0x00, 0x1e, 0x00, 0x19, 0x40, 0x0d, 0x1e, 0x00, 0x08, 0x01,
-
2009  0x08, 0x80, 0x1b, 0x06, 0x72, 0x13, 0x1a, 0x0b, 0x72, 0x00, 0x2b, 0x32,
-
2010  0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x30, 0x31, 0x45, 0x22, 0x2e, 0x02, 0x37,
-
2011  0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07, 0x06, 0x16,
-
2012  0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03, 0x21, 0x15,
-
2013  0x21, 0x01, 0x2b, 0x2b, 0x39, 0x21, 0x0b, 0x02, 0x0c, 0x59, 0x0a, 0x01,
-
2014  0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e, 0x23, 0x1b, 0x21, 0x33,
-
2015  0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53, 0xfe, 0xad, 0x08, 0x1d,
-
2016  0x3d, 0x60, 0x44, 0x01, 0x48, 0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a,
-
2017  0x0e, 0xa2, 0x48, 0x4f, 0x1e, 0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4,
-
2018  0x45, 0x00, 0x00, 0x03, 0x00, 0x3a, 0xff, 0xf8, 0x01, 0xbf, 0x02, 0x4a,
-
2019  0x00, 0x03, 0x00, 0x1e, 0x00, 0x22, 0x00, 0x21, 0x40, 0x11, 0x00, 0x01,
-
2020  0x01, 0x22, 0x22, 0x00, 0x0c, 0x01, 0x0c, 0x80, 0x1f, 0x06, 0x72, 0x17,
-
2021  0x1e, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x1a, 0xcc, 0x5d, 0x33, 0x11,
-
2022  0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x21, 0x15, 0x07, 0x22, 0x2e,
-
2023  0x02, 0x37, 0x13, 0x37, 0x37, 0x17, 0x06, 0x06, 0x07, 0x07, 0x17, 0x07,
-
2024  0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x03,
-
2025  0x21, 0x15, 0x21, 0x3a, 0x01, 0x53, 0x62, 0x2b, 0x39, 0x21, 0x0b, 0x02,
-
2026  0x0c, 0x59, 0x0a, 0x01, 0x05, 0x07, 0x02, 0x09, 0x03, 0x07, 0x03, 0x0e,
-
2027  0x23, 0x1b, 0x21, 0x33, 0x1a, 0x16, 0x22, 0x49, 0x29, 0xe9, 0x01, 0x53,
-
2028  0xfe, 0xad, 0xd7, 0x44, 0x44, 0xdf, 0x1d, 0x3d, 0x60, 0x44, 0x01, 0x48,
-
2029  0x0b, 0x01, 0x07, 0x07, 0x0e, 0x11, 0x7a, 0x0e, 0xa2, 0x48, 0x4f, 0x1e,
-
2030  0x1a, 0x13, 0x41, 0x19, 0x19, 0x01, 0xd4, 0x45, 0xff, 0xff, 0x00, 0x42,
-
2031  0xff, 0xf8, 0x01, 0xde, 0x02, 0xc6, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00,
-
2032  0x01, 0x07, 0x03, 0x6f, 0x00, 0xae, 0x00, 0x23, 0x00, 0x0e, 0xb4, 0x02,
-
2033  0x1f, 0x08, 0x01, 0x01, 0xb8, 0xff, 0xa1, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
2034  0xff, 0xff, 0x00, 0x42, 0xff, 0x38, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
-
2035  0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8d, 0xf3, 0x00, 0x00, 0x0b,
-
2036  0xb6, 0x02, 0x2e, 0x1a, 0x01, 0x00, 0x07, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
2037  0xff, 0xff, 0x00, 0x42, 0xfe, 0xe6, 0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26,
-
2038  0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8c, 0x15, 0x00, 0x00, 0x0e,
-
2039  0xb4, 0x02, 0x2b, 0x1a, 0x01, 0x01, 0xb8, 0xff, 0xe7, 0xb0, 0x56, 0x00,
-
2040  0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0xf8, 0x01, 0xbf, 0x03, 0x1a,
-
2041  0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7a, 0xf1, 0x7d,
-
2042  0x00, 0x0d, 0xb7, 0x03, 0x02, 0x1f, 0x08, 0x01, 0x01, 0x6a, 0x56, 0x00,
-
2043  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65, 0x01, 0xbf,
-
2044  0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a,
-
2045  0x11, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x25, 0x1a, 0x01, 0x01, 0xb8, 0xff,
-
2046  0xdb, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff, 0x00, 0x42, 0xff, 0x65,
-
2047  0x01, 0xbf, 0x02, 0x4a, 0x06, 0x26, 0x01, 0x9f, 0x00, 0x00, 0x01, 0x06,
-
2048  0x03, 0x90, 0x0a, 0x00, 0x00, 0x0e, 0xb4, 0x02, 0x20, 0x1a, 0x01, 0x00,
-
2049  0xb8, 0xff, 0xa4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x3b,
-
2050  0xff, 0xf5, 0x01, 0xbe, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x19, 0x40, 0x0d,
-
2051  0x1a, 0x0a, 0x72, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b,
-
2052  0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x2b, 0x30, 0x31, 0x57,
-
2053  0x22, 0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32,
-
2054  0x3e, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02,
-
2055  0x35, 0x0e, 0x03, 0xda, 0x1b, 0x31, 0x27, 0x1d, 0x0f, 0x01, 0x54, 0x0e,
-
2056  0x1a, 0x23, 0x13, 0x17, 0x29, 0x1f, 0x12, 0x55, 0x03, 0x07, 0x51, 0x05,
-
2057  0x04, 0x01, 0x0b, 0x1d, 0x24, 0x27, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c,
-
2058  0x01, 0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25,
-
2059  0x01, 0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13,
-
2060  0x1d, 0x14, 0x0a, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2061  0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d,
-
2062  0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x14, 0x01, 0x01, 0x32, 0x56,
-
2063  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2064  0x02, 0x93, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x81,
-
2065  0xf8, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x51, 0x56,
-
2066  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2067  0x02, 0xad, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7f,
-
2068  0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x36, 0x56,
-
2069  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2070  0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x86,
-
2071  0xef, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01, 0x01, 0x32,
-
2072  0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5,
-
2073  0x01, 0xbe, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06,
-
2074  0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x07, 0x01,
-
2075  0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b,
-
2076  0xff, 0x65, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00,
-
2077  0x01, 0x06, 0x03, 0x8a, 0xf4, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x29, 0x00,
-
2078  0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0xff, 0xff,
-
2079  0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xa7,
-
2080  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
2081  0x23, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2082  0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xa7,
-
2083  0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x0d, 0xff, 0x00, 0x0b, 0xb6, 0x01,
-
2084  0x2a, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2085  0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26, 0x01, 0xd4,
-
2086  0x00, 0x00, 0x01, 0x06, 0x03, 0x89, 0xf4, 0xff, 0x00, 0x0e, 0xb4, 0x01,
-
2087  0x27, 0x07, 0x01, 0x01, 0xb8, 0xff, 0xcf, 0xb0, 0x56, 0x00, 0x2b, 0x34,
-
2088  0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1, 0x06, 0x26,
-
2089  0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7d, 0xdf, 0x00, 0x00, 0x0b,
-
2090  0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00,
-
2091  0xff, 0xff, 0x00, 0x23, 0xff, 0x65, 0x01, 0xdc, 0x02, 0x23, 0x06, 0x26,
-
2092  0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x8a, 0xe5, 0x00, 0x00, 0x0e,
-
2093  0xb4, 0x02, 0x32, 0x00, 0x01, 0x01, 0xb8, 0xff, 0xdf, 0xb0, 0x56, 0x00,
-
2094  0x2b, 0x34, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xb1,
-
2095  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xe3, 0x00,
-
2096  0x00, 0x0b, 0xb6, 0x02, 0x2c, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b,
-
2097  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xc8,
-
2098  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0xfb, 0xff,
-
2099  0x00, 0x0b, 0xb6, 0x02, 0x33, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b,
-
2100  0x34, 0x00, 0xff, 0xff, 0x00, 0x23, 0xff, 0xf5, 0x01, 0xdc, 0x02, 0xad,
-
2101  0x06, 0x26, 0x01, 0xb0, 0x00, 0x00, 0x01, 0x06, 0x03, 0xb4, 0xdc, 0x00,
-
2102  0x00, 0x0b, 0xb6, 0x02, 0x30, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b,
-
2103  0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xc0,
-
2104  0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x7e, 0x07, 0x00,
-
2105  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x41, 0x56, 0x00,
-
2106  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2107  0x02, 0x89, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x87,
-
2108  0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x47, 0x56,
-
2109  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2110  0x02, 0x73, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x84,
-
2111  0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x23, 0x07, 0x01, 0x01, 0x6c, 0x56,
-
2112  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2113  0x03, 0x35, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x84,
-
2114  0x00, 0x00, 0x01, 0x07, 0x03, 0x7a, 0xff, 0xff, 0x00, 0x98, 0x00, 0x17,
-
2115  0x40, 0x0f, 0x03, 0x02, 0x27, 0x24, 0x01, 0x01, 0x61, 0x56, 0x01, 0x23,
-
2116  0x07, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x34, 0x00,
-
2117  0xff, 0xff, 0x00, 0x3b, 0xff, 0x19, 0x01, 0xbe, 0x01, 0xcc, 0x06, 0x26,
-
2118  0x01, 0xa7, 0x00, 0x00, 0x01, 0x07, 0x03, 0x8e, 0x00, 0x86, 0x00, 0x00,
-
2119  0x00, 0x0b, 0xb6, 0x01, 0x2c, 0x1a, 0x00, 0x00, 0x11, 0x56, 0x00, 0x2b,
-
2120  0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe, 0x02, 0xbb,
-
2121  0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x82, 0xfa, 0x00,
-
2122  0x00, 0x0d, 0xb7, 0x02, 0x01, 0x23, 0x14, 0x01, 0x01, 0x3c, 0x56, 0x00,
-
2123  0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2124  0x02, 0xac, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x01, 0x06, 0x03, 0x83,
-
2125  0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x27, 0x14, 0x01, 0x01, 0x75, 0x56,
-
2126  0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x3b, 0xff, 0xf5, 0x01, 0xbe,
-
2127  0x03, 0x65, 0x06, 0x26, 0x01, 0xa7, 0x00, 0x00, 0x00, 0x26, 0x03, 0x83,
-
2128  0xf6, 0x00, 0x01, 0x07, 0x03, 0x7d, 0xff, 0xf1, 0x00, 0xb4, 0x00, 0x15,
-
2129  0x40, 0x0e, 0x02, 0x3b, 0x33, 0x01, 0x00, 0x03, 0x56, 0x01, 0x27, 0x14,
-
2130  0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2131  0x00, 0x24, 0x00, 0x00, 0x01, 0xca, 0x01, 0xcc, 0x00, 0x0d, 0x00, 0x15,
-
2132  0x40, 0x0a, 0x04, 0x03, 0x00, 0x09, 0x01, 0x06, 0x72, 0x00, 0x0a, 0x72,
-
2133  0x00, 0x2b, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x30, 0x31, 0x73, 0x03, 0x33,
-
2134  0x13, 0x23, 0x37, 0x36, 0x36, 0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0xd7,
-
2135  0xb3, 0x58, 0x8a, 0x0f, 0x4b, 0x17, 0x1b, 0x05, 0x51, 0x07, 0x22, 0x17,
-
2136  0x70, 0x01, 0xcc, 0xfe, 0x97, 0xae, 0x35, 0x5d, 0x29, 0x2b, 0x63, 0x38,
-
2137  0xfe, 0xfa, 0x00, 0x01, 0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x01, 0xcc,
-
2138  0x00, 0x14, 0x00, 0x1b, 0x40, 0x0e, 0x03, 0x06, 0x13, 0x03, 0x00, 0x0d,
-
2139  0x04, 0x01, 0x06, 0x72, 0x12, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
2140  0xcc, 0x33, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x03, 0x33, 0x13, 0x13,
-
2141  0x33, 0x13, 0x3e, 0x03, 0x35, 0x35, 0x33, 0x0e, 0x02, 0x07, 0x23, 0x03,
-
2142  0x03, 0x68, 0x5a, 0x4a, 0x43, 0x4a, 0x31, 0x5b, 0x0c, 0x0f, 0x08, 0x02,
-
2143  0x4d, 0x09, 0x16, 0x1b, 0x10, 0x4e, 0x4e, 0x49, 0x01, 0x01, 0xcd, 0xfe,
-
2144  0xa1, 0x01, 0x31, 0xfe, 0xd0, 0x52, 0x6a, 0x46, 0x31, 0x18, 0x13, 0x4c,
-
2145  0x9c, 0x9a, 0x4b, 0x01, 0x1a, 0xfe, 0xe6, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2146  0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2147  0x01, 0x06, 0x03, 0x7d, 0xf1, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x0c,
-
2148  0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2149  0xff, 0xff, 0x01, 0xe3, 0x02, 0xad, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2150  0x01, 0x06, 0x03, 0x7f, 0x01, 0xff, 0x00, 0x0b, 0xb6, 0x01, 0x15, 0x01,
-
2151  0x01, 0x01, 0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x0e,
-
2152  0xff, 0xff, 0x01, 0xe3, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xbf, 0x00, 0x00,
-
2153  0x01, 0x06, 0x03, 0x7a, 0xff, 0x00, 0x00, 0x0d, 0xb7, 0x02, 0x01, 0x15,
-
2154  0x01, 0x01, 0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff,
-
2155  0x00, 0x0e, 0xff, 0xff, 0x01, 0xe3, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xbf,
-
2156  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xf5, 0x00, 0x00, 0x0b, 0xb6, 0x01,
-
2157  0x15, 0x0c, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2158  0x00, 0x29, 0x00, 0x00, 0x01, 0xcf, 0x01, 0xcc, 0x00, 0x0b, 0x00, 0x1a,
-
2159  0x40, 0x0e, 0x0a, 0x01, 0x07, 0x04, 0x04, 0x00, 0x06, 0x02, 0x06, 0x72,
-
2160  0x09, 0x00, 0x0a, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39,
-
2161  0x30, 0x31, 0x73, 0x37, 0x27, 0x33, 0x17, 0x37, 0x33, 0x07, 0x17, 0x23,
-
2162  0x27, 0x07, 0x29, 0xa1, 0x9f, 0x5d, 0x70, 0x6b, 0x58, 0x94, 0xa8, 0x60,
-
2163  0x77, 0x70, 0xe8, 0xe4, 0xa1, 0xa1, 0xe0, 0xec, 0xa8, 0xa8, 0x00, 0x02,
-
2164  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x00, 0x1c, 0x00, 0x20,
-
2165  0x00, 0x1a, 0x40, 0x0e, 0x19, 0x20, 0x10, 0x1f, 0x04, 0x1c, 0x15, 0x1d,
-
2166  0x06, 0x72, 0x0c, 0x1c, 0x0f, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
2167  0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16,
-
2168  0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x36, 0x36,
-
2169  0x37, 0x33, 0x06, 0x06, 0x07, 0x03, 0x06, 0x06, 0x23, 0x03, 0x33, 0x13,
-
2170  0x07, 0x7f, 0x21, 0x35, 0x15, 0x21, 0x06, 0x07, 0x02, 0x0a, 0x0d, 0x09,
-
2171  0x13, 0x0a, 0x19, 0x22, 0x1b, 0x0d, 0x5c, 0x0f, 0x19, 0x04, 0x53, 0x06,
-
2172  0x1f, 0x11, 0x72, 0x1a, 0x4c, 0x32, 0x56, 0x58, 0x90, 0x29, 0xaf, 0x15,
-
2173  0x14, 0x3a, 0x09, 0x04, 0x08, 0x0c, 0x09, 0x03, 0x03, 0x18, 0x34, 0x27,
-
2174  0x01, 0x12, 0x2d, 0x57, 0x2d, 0x2e, 0x60, 0x2e, 0xfe, 0xc0, 0x46, 0x39,
-
2175  0x02, 0x7b, 0xfe, 0x8b, 0x63, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2176  0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2177  0x03, 0x7d, 0xf6, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14, 0x01, 0x01,
-
2178  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2179  0x01, 0xbf, 0x02, 0xad, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2180  0x03, 0x7f, 0x05, 0xff, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x1d, 0x01, 0x01,
-
2181  0x36, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14, 0xff, 0x51,
-
2182  0x01, 0xbf, 0x02, 0x9d, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00, 0x01, 0x06,
-
2183  0x03, 0x7a, 0x03, 0x00, 0x00, 0x0d, 0xb7, 0x03, 0x02, 0x21, 0x1d, 0x01,
-
2184  0x01, 0x6b, 0x56, 0x00, 0x2b, 0x34, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
-
2185  0xff, 0x51, 0x01, 0xbf, 0x02, 0x97, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
-
2186  0x01, 0x06, 0x03, 0x7b, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02, 0x21, 0x14,
-
2187  0x01, 0x01, 0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x14,
-
2188  0xff, 0x51, 0x01, 0xbf, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xc5, 0x00, 0x00,
-
2189  0x01, 0x07, 0x03, 0x8a, 0x00, 0x87, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2190  0x21, 0x1c, 0x01, 0x01, 0x1b, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2191  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xc5,
-
2192  0x00, 0x00, 0x01, 0x06, 0x03, 0x7c, 0xfa, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2193  0x21, 0x14, 0x01, 0x01, 0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2194  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xc8, 0x06, 0x26, 0x01, 0xc5,
-
2195  0x00, 0x00, 0x01, 0x06, 0x03, 0x85, 0x11, 0xff, 0x00, 0x0b, 0xb6, 0x02,
-
2196  0x28, 0x14, 0x01, 0x01, 0x42, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2197  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0x73, 0x06, 0x26, 0x01, 0xc5,
-
2198  0x00, 0x00, 0x01, 0x06, 0x03, 0x84, 0x05, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2199  0x21, 0x1d, 0x01, 0x01, 0x6c, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff,
-
2200  0x00, 0x14, 0xff, 0x51, 0x01, 0xbf, 0x02, 0xac, 0x06, 0x26, 0x01, 0xc5,
-
2201  0x00, 0x00, 0x01, 0x06, 0x03, 0x83, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x02,
-
2202  0x25, 0x14, 0x01, 0x01, 0x75, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x00, 0x01,
-
2203  0x00, 0x2f, 0x00, 0x00, 0x01, 0xc5, 0x01, 0xcc, 0x00, 0x0e, 0x00, 0x19,
-
2204  0x40, 0x0c, 0x00, 0x06, 0x06, 0x0e, 0x0a, 0x72, 0x05, 0x02, 0x02, 0x03,
-
2205  0x06, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x30,
-
2206  0x31, 0x77, 0x01, 0x23, 0x35, 0x21, 0x15, 0x01, 0x33, 0x32, 0x36, 0x37,
-
2207  0x33, 0x15, 0x15, 0x21, 0x2f, 0x01, 0x12, 0xfe, 0x01, 0x6b, 0xfe, 0xf2,
-
2208  0xf9, 0x11, 0x0e, 0x06, 0x07, 0xfe, 0x6a, 0x37, 0x01, 0x4c, 0x49, 0x39,
-
2209  0xfe, 0xb5, 0x04, 0x06, 0x0a, 0x48, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2210  0x01, 0xc5, 0x02, 0xb1, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2211  0x03, 0x7d, 0xf2, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
2212  0x32, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2213  0x01, 0xc5, 0x02, 0xb5, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2214  0x03, 0x80, 0xfb, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x14, 0x03, 0x01, 0x01,
-
2215  0x39, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0x00, 0x00,
-
2216  0x01, 0xc5, 0x02, 0x97, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2217  0x03, 0x94, 0x00, 0x00, 0x00, 0x0b, 0xb6, 0x01, 0x0f, 0x03, 0x01, 0x01,
-
2218  0x60, 0x56, 0x00, 0x2b, 0x34, 0x00, 0xff, 0xff, 0x00, 0x2f, 0xff, 0x65,
-
2219  0x01, 0xc5, 0x01, 0xcc, 0x06, 0x26, 0x01, 0xcf, 0x00, 0x00, 0x01, 0x06,
-
2220  0x03, 0x8a, 0x09, 0x00, 0x00, 0x0e, 0xb4, 0x01, 0x15, 0x0e, 0x01, 0x01,
-
2221  0xb8, 0xff, 0xd4, 0xb0, 0x56, 0x00, 0x2b, 0x34, 0x00, 0x01, 0x00, 0x23,
-
2222  0xff, 0xf5, 0x01, 0x8e, 0x01, 0xcc, 0x00, 0x22, 0x00, 0x18, 0x40, 0x0c,
-
2223  0x1a, 0x0a, 0x15, 0x07, 0x06, 0x72, 0x1e, 0x0e, 0x0e, 0x00, 0x0b, 0x72,
-
2224  0x00, 0x2b, 0x32, 0x11, 0x33, 0x2b, 0x32, 0x3f, 0x30, 0x31, 0x57, 0x22,
-
2225  0x2e, 0x03, 0x35, 0x13, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e,
-
2226  0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
-
2227  0x0e, 0x03, 0xb8, 0x1a, 0x2e, 0x25, 0x1a, 0x0e, 0x01, 0x4e, 0x0e, 0x18,
-
2228  0x20, 0x12, 0x16, 0x27, 0x1e, 0x11, 0x4e, 0x03, 0x07, 0x4c, 0x04, 0x04,
-
2229  0x01, 0x0a, 0x1c, 0x21, 0x26, 0x0b, 0x0f, 0x21, 0x31, 0x45, 0x2c, 0x01,
-
2230  0x05, 0xfe, 0xfb, 0x27, 0x37, 0x21, 0x0e, 0x11, 0x24, 0x37, 0x25, 0x01,
-
2231  0x01, 0xfe, 0x7c, 0x13, 0x23, 0x12, 0x0b, 0x16, 0x17, 0x0b, 0x13, 0x1d,
-
2232  0x14, 0x0a, 0x00, 0x02, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
-
2233  0x00, 0x33, 0x00, 0x37, 0x00, 0x2c, 0x40, 0x14, 0x37, 0x34, 0x34, 0x00,
-
2234  0x2f, 0x18, 0x18, 0x00, 0x10, 0x07, 0x07, 0x00, 0x2e, 0x2e, 0x00, 0x00,
-
2235  0x21, 0x28, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2f, 0x11,
-
2236  0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x7d, 0x2f, 0x33,
-
2237  0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2238  0x16, 0x17, 0x17, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
2239  0x16, 0x33, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
2240  0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x23, 0x35,
-
2241  0x0e, 0x03, 0x07, 0x21, 0x15, 0x21, 0xd8, 0x39, 0x3e, 0x2c, 0x52, 0x37,
-
2242  0x09, 0x15, 0x17, 0x0c, 0x02, 0x09, 0x18, 0x17, 0x0a, 0x25, 0x30, 0x19,
-
2243  0x10, 0x1a, 0x11, 0x18, 0x25, 0x19, 0x0d, 0x13, 0x26, 0x1e, 0x17, 0x2b,
-
2244  0x14, 0x26, 0x1b, 0x42, 0x23, 0x2d, 0x44, 0x27, 0x4b, 0x0a, 0x18, 0x1b,
-
2245  0x1d, 0x9d, 0x01, 0x62, 0xfe, 0x9e, 0x01, 0x02, 0x38, 0x2c, 0x27, 0x3a,
-
2246  0x1f, 0x01, 0x01, 0x02, 0x35, 0x02, 0x01, 0x01, 0x10, 0x1e, 0x15, 0x12,
-
2247  0x17, 0x0a, 0x11, 0x21, 0x33, 0x23, 0x2f, 0x35, 0x15, 0x10, 0x15, 0x2d,
-
2248  0x1b, 0x17, 0x1d, 0x47, 0x41, 0xc6, 0x2d, 0x10, 0x15, 0x0c, 0x05, 0x2c,
-
2249  0x40, 0x00, 0x00, 0x03, 0x00, 0x4a, 0x00, 0x96, 0x01, 0xac, 0x02, 0x76,
-
2250  0x00, 0x0f, 0x00, 0x1f, 0x00, 0x23, 0x00, 0x18, 0x40, 0x0a, 0x23, 0x20,
-
2251  0x20, 0x10, 0x00, 0x00, 0x18, 0x08, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x32,
-
2252  0x2f, 0x33, 0x33, 0x7d, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26,
-
2253  0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2254  0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
-
2255  0x15, 0x14, 0x16, 0x16, 0x07, 0x21, 0x15, 0x21, 0xfa, 0x2e, 0x48, 0x2a,
-
2256  0x2a, 0x49, 0x2d, 0x2e, 0x48, 0x2a, 0x2a, 0x48, 0x2e, 0x1a, 0x26, 0x16,
-
2257  0x16, 0x27, 0x19, 0x19, 0x27, 0x16, 0x16, 0x27, 0x97, 0x01, 0x62, 0xfe,
-
2258  0x9e, 0x01, 0x04, 0x2d, 0x54, 0x38, 0x37, 0x54, 0x2e, 0x2e, 0x54, 0x37,
-
2259  0x38, 0x53, 0x2e, 0x3b, 0x20, 0x39, 0x26, 0x26, 0x38, 0x1f, 0x1f, 0x38,
-
2260  0x26, 0x26, 0x39, 0x20, 0x69, 0x40, 0xff, 0xff, 0x00, 0x42, 0x00, 0x00,
-
2261  0x01, 0xb6, 0x01, 0xd7, 0x06, 0x06, 0x01, 0x5a, 0x00, 0x00, 0x00, 0x02,
-
2262  0x00, 0x32, 0x00, 0x00, 0x01, 0xd0, 0x02, 0x6f, 0x00, 0x0c, 0x00, 0x14,
-
2263  0x00, 0x22, 0x40, 0x10, 0x12, 0x0d, 0x0d, 0x0b, 0x0f, 0x0f, 0x10, 0x02,
-
2264  0x72, 0x14, 0x0a, 0x00, 0x01, 0x01, 0x09, 0x08, 0x00, 0x3f, 0x33, 0x11,
-
2265  0x33, 0x33, 0x33, 0x2b, 0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
2266  0x77, 0x27, 0x21, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x35, 0x01,
-
2267  0x33, 0x17, 0x17, 0x21, 0x35, 0x21, 0x15, 0x01, 0x23, 0x60, 0x1b, 0x01,
-
2268  0x5d, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x63, 0x01, 0x08, 0x38, 0x31, 0x1e,
-
2269  0xfe, 0x73, 0x01, 0x9c, 0xfe, 0xff, 0x37, 0x1f, 0x16, 0x04, 0x05, 0x09,
-
2270  0x35, 0x37, 0x02, 0x29, 0x11, 0x16, 0x36, 0x37, 0xfd, 0xe1, 0x00, 0x03,
-
2271  0x00, 0x32, 0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x03, 0x00, 0x13,
-
2272  0x00, 0x23, 0x00, 0x1d, 0x40, 0x0e, 0x02, 0x01, 0x01, 0x1c, 0x0c, 0x05,
-
2273  0x72, 0x00, 0x03, 0x03, 0x14, 0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32,
-
2274  0x11, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x01, 0x17,
-
2275  0x01, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2276  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
2277  0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x6b, 0x01, 0x0b,
-
2278  0x16, 0xfe, 0xf5, 0x79, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59,
-
2279  0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34,
-
2280  0x1c, 0x1c, 0x34, 0xa5, 0x01, 0x4d, 0x38, 0xfe, 0xb6, 0x7b, 0x4a, 0x8f,
-
2281  0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a,
-
2282  0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00,
-
2283  0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x01, 0x33, 0x02, 0x70, 0x00, 0x06,
-
2284  0x00, 0x17, 0x40, 0x0b, 0x06, 0x0c, 0x72, 0x02, 0x03, 0x03, 0x01, 0x01,
-
2285  0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x30,
-
2286  0x31, 0x73, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xdf, 0x7a, 0x13, 0xa4,
-
2287  0x3d, 0x02, 0x0d, 0x26, 0x33, 0x56, 0xfd, 0x90, 0x00, 0x01, 0x00, 0x35,
-
2288  0x00, 0x00, 0x01, 0xba, 0x02, 0x75, 0x00, 0x2b, 0x00, 0x15, 0x40, 0x0a,
-
2289  0x00, 0x23, 0x23, 0x2b, 0x0c, 0x72, 0x0b, 0x19, 0x05, 0x72, 0x00, 0x2b,
-
2290  0x32, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x3e, 0x04, 0x35, 0x34,
-
2291  0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
-
2292  0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x07,
-
2293  0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x44, 0x37, 0x5a, 0x46,
-
2294  0x30, 0x19, 0x0f, 0x1b, 0x25, 0x15, 0x17, 0x2a, 0x26, 0x10, 0x09, 0x04,
-
2295  0x01, 0x05, 0x07, 0x3c, 0x15, 0x3d, 0x4d, 0x2b, 0x36, 0x52, 0x30, 0x1b,
-
2296  0x31, 0x42, 0x4e, 0x2a, 0xdc, 0x11, 0x0e, 0x06, 0x08, 0xfe, 0x8a, 0x41,
-
2297  0x38, 0x59, 0x4b, 0x42, 0x41, 0x23, 0x1d, 0x28, 0x19, 0x0c, 0x0d, 0x19,
-
2298  0x14, 0x0e, 0x0f, 0x08, 0x05, 0x05, 0x2e, 0x27, 0x36, 0x1c, 0x2c, 0x50,
-
2299  0x37, 0x28, 0x4b, 0x47, 0x48, 0x4d, 0x2c, 0x04, 0x06, 0x0a, 0x47, 0x00,
-
2300  0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xb0, 0x02, 0x75, 0x00, 0x38,
-
2301  0x00, 0x1d, 0x40, 0x0e, 0x30, 0x16, 0x16, 0x15, 0x15, 0x28, 0x0c, 0x38,
-
2302  0x0d, 0x72, 0x20, 0x28, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11,
-
2303  0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x37,
-
2304  0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
-
2305  0x34, 0x2e, 0x02, 0x07, 0x35, 0x16, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
2306  0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
2307  0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23,
-
2308  0xee, 0x33, 0x5e, 0x20, 0x31, 0x07, 0x06, 0x01, 0x06, 0x0b, 0x12, 0x2d,
-
2309  0x1f, 0x25, 0x31, 0x19, 0x17, 0x2d, 0x3f, 0x28, 0x2f, 0x3c, 0x21, 0x0d,
-
2310  0x0d, 0x16, 0x21, 0x13, 0x14, 0x27, 0x25, 0x11, 0x31, 0x22, 0x56, 0x2a,
-
2311  0x35, 0x4c, 0x2a, 0x17, 0x2c, 0x1f, 0x21, 0x36, 0x1f, 0x2d, 0x56, 0x3f,
-
2312  0x0b, 0x24, 0x24, 0x40, 0x08, 0x05, 0x08, 0x0f, 0x0c, 0x0f, 0x13, 0x1d,
-
2313  0x35, 0x22, 0x22, 0x30, 0x1b, 0x0a, 0x04, 0x43, 0x01, 0x12, 0x20, 0x29,
-
2314  0x17, 0x14, 0x20, 0x17, 0x0d, 0x0a, 0x14, 0x11, 0x32, 0x25, 0x1f, 0x28,
-
2315  0x47, 0x2e, 0x21, 0x39, 0x29, 0x0b, 0x0a, 0x2a, 0x3f, 0x2b, 0x32, 0x53,
-
2316  0x32, 0x00, 0x00, 0x02, 0x00, 0x2d, 0x00, 0x00, 0x01, 0xd9, 0x02, 0x70,
-
2317  0x00, 0x0a, 0x00, 0x0d, 0x00, 0x21, 0x40, 0x10, 0x03, 0x0b, 0x0b, 0x06,
-
2318  0x06, 0x02, 0x0d, 0x09, 0x09, 0x04, 0x0a, 0x0c, 0x72, 0x04, 0x04, 0x72,
-
2319  0x00, 0x2b, 0x2b, 0x12, 0x39, 0x2f, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11,
-
2320  0x33, 0x30, 0x31, 0x61, 0x35, 0x21, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15,
-
2321  0x23, 0x15, 0x25, 0x33, 0x11, 0x01, 0x33, 0xfe, 0xfa, 0x01, 0x18, 0x44,
-
2322  0x50, 0x50, 0xff, 0x00, 0xab, 0x97, 0x3b, 0x01, 0x9e, 0xfe, 0x6c, 0x46,
-
2323  0x96, 0xdc, 0x01, 0x04, 0x00, 0x01, 0x00, 0x3d, 0xff, 0xf5, 0x01, 0xc2,
-
2324  0x02, 0x6f, 0x00, 0x2d, 0x00, 0x1d, 0x40, 0x0e, 0x20, 0x16, 0x16, 0x24,
-
2325  0x24, 0x1c, 0x0c, 0x2d, 0x0d, 0x72, 0x1f, 0x1c, 0x04, 0x72, 0x00, 0x2b,
-
2326  0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
-
2327  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33,
-
2328  0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07,
-
2329  0x27, 0x13, 0x21, 0x15, 0x23, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
2330  0x15, 0x14, 0x06, 0x06, 0x23, 0xfa, 0x3c, 0x63, 0x1e, 0x3f, 0x08, 0x05,
-
2331  0x01, 0x07, 0x0a, 0x13, 0x2f, 0x21, 0x18, 0x2a, 0x1f, 0x12, 0x12, 0x20,
-
2332  0x2c, 0x1a, 0x15, 0x29, 0x23, 0x0f, 0x34, 0x15, 0x01, 0x42, 0xfb, 0x0a,
-
2333  0x10, 0x20, 0x22, 0x10, 0x29, 0x44, 0x33, 0x1b, 0x35, 0x59, 0x3a, 0x0b,
-
2334  0x32, 0x2f, 0x31, 0x06, 0x05, 0x08, 0x0e, 0x0d, 0x15, 0x14, 0x14, 0x24,
-
2335  0x34, 0x1f, 0x20, 0x34, 0x24, 0x14, 0x0d, 0x19, 0x12, 0x12, 0x01, 0x42,
-
2336  0x48, 0xa7, 0x08, 0x0b, 0x05, 0x1d, 0x36, 0x4d, 0x31, 0x41, 0x5e, 0x33,
-
2337  0x00, 0x02, 0x00, 0x3e, 0xff, 0xf6, 0x01, 0xbc, 0x02, 0x77, 0x00, 0x28,
-
2338  0x00, 0x3d, 0x00, 0x1d, 0x40, 0x0e, 0x1b, 0x33, 0x33, 0x1f, 0x1f, 0x08,
-
2339  0x3d, 0x28, 0x0d, 0x72, 0x15, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0x2b,
-
2340  0x32, 0x12, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26,
-
2341  0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27,
-
2342  0x26, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x03, 0x07, 0x3e, 0x02,
-
2343  0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x37, 0x32, 0x3e,
-
2344  0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x06, 0x1e,
-
2345  0x02, 0x33, 0x01, 0x05, 0x40, 0x59, 0x2e, 0x39, 0x65, 0x42, 0x28, 0x4a,
-
2346  0x1e, 0x32, 0x06, 0x06, 0x01, 0x08, 0x0d, 0x08, 0x11, 0x13, 0x0b, 0x10,
-
2347  0x26, 0x25, 0x21, 0x15, 0x01, 0x0d, 0x29, 0x30, 0x18, 0x24, 0x3f, 0x2f,
-
2348  0x1b, 0x31, 0x52, 0x34, 0x02, 0x15, 0x24, 0x1c, 0x10, 0x12, 0x1e, 0x24,
-
2349  0x12, 0x11, 0x21, 0x1d, 0x19, 0x0a, 0x03, 0x0d, 0x1e, 0x2e, 0x1d, 0x0a,
-
2350  0x48, 0x85, 0x5a, 0x6f, 0x9a, 0x51, 0x1c, 0x1e, 0x39, 0x08, 0x06, 0x08,
-
2351  0x0d, 0x0a, 0x05, 0x06, 0x02, 0x0a, 0x1c, 0x31, 0x4f, 0x38, 0x16, 0x1e,
-
2352  0x11, 0x1c, 0x35, 0x4c, 0x2f, 0x3e, 0x60, 0x35, 0x47, 0x13, 0x23, 0x33,
-
2353  0x22, 0x23, 0x33, 0x20, 0x10, 0x0c, 0x15, 0x1c, 0x11, 0x24, 0x45, 0x38,
-
2354  0x22, 0x00, 0x00, 0x01, 0x00, 0x4a, 0x00, 0x00, 0x01, 0xb4, 0x02, 0x6f,
-
2355  0x00, 0x0d, 0x00, 0x13, 0x40, 0x09, 0x08, 0x05, 0x05, 0x06, 0x04, 0x72,
-
2356  0x00, 0x0c, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73,
-
2357  0x3e, 0x02, 0x37, 0x21, 0x35, 0x21, 0x15, 0x0e, 0x03, 0x07, 0x91, 0x1d,
-
2358  0x3d, 0x41, 0x23, 0xfe, 0xfb, 0x01, 0x6a, 0x1c, 0x37, 0x32, 0x2d, 0x16,
-
2359  0x5e, 0xb6, 0xb4, 0x5b, 0x4c, 0x2f, 0x46, 0x8e, 0x90, 0x91, 0x4b, 0x00,
-
2360  0x00, 0x03, 0x00, 0x36, 0xff, 0xf6, 0x01, 0xbf, 0x02, 0x78, 0x00, 0x21,
-
2361  0x00, 0x33, 0x00, 0x45, 0x00, 0x1a, 0x40, 0x0e, 0x2b, 0x08, 0x19, 0x34,
-
2362  0x04, 0x00, 0x3d, 0x10, 0x05, 0x72, 0x22, 0x00, 0x0d, 0x72, 0x00, 0x2b,
-
2363  0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26,
-
2364  0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33,
-
2365  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07, 0x1e, 0x03, 0x15, 0x14,
-
2366  0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x0e,
-
2367  0x03, 0x15, 0x14, 0x16, 0x16, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26,
-
2368  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0xfa, 0x3c, 0x58, 0x30,
-
2369  0x1f, 0x37, 0x25, 0x1b, 0x2a, 0x18, 0x28, 0x4c, 0x37, 0x3a, 0x4b, 0x26,
-
2370  0x0e, 0x18, 0x23, 0x16, 0x1b, 0x2a, 0x1f, 0x10, 0x31, 0x58, 0x3a, 0x24,
-
2371  0x31, 0x19, 0x12, 0x21, 0x2f, 0x1d, 0x14, 0x24, 0x19, 0x0e, 0x1a, 0x33,
-
2372  0x33, 0x11, 0x1c, 0x14, 0x0c, 0x15, 0x29, 0x1e, 0x1e, 0x27, 0x14, 0x10,
-
2373  0x1d, 0x26, 0x0a, 0x2d, 0x4c, 0x2f, 0x25, 0x42, 0x35, 0x11, 0x10, 0x2c,
-
2374  0x37, 0x1e, 0x2b, 0x46, 0x2b, 0x29, 0x44, 0x29, 0x17, 0x2c, 0x27, 0x20,
-
2375  0x0c, 0x0d, 0x24, 0x2c, 0x32, 0x1b, 0x32, 0x4d, 0x2d, 0x49, 0x1b, 0x2e,
-
2376  0x1c, 0x16, 0x29, 0x22, 0x1d, 0x08, 0x09, 0x1b, 0x23, 0x26, 0x16, 0x1d,
-
2377  0x2f, 0x1c, 0x01, 0x29, 0x0a, 0x1b, 0x1e, 0x22, 0x11, 0x16, 0x26, 0x18,
-
2378  0x17, 0x25, 0x16, 0x15, 0x23, 0x1c, 0x19, 0x00, 0x00, 0x01, 0x00, 0x3d,
-
2379  0xff, 0xf6, 0x01, 0xba, 0x02, 0x75, 0x00, 0x3a, 0x00, 0x19, 0x40, 0x0c,
-
2380  0x1f, 0x28, 0x28, 0x32, 0x0c, 0x3a, 0x0d, 0x72, 0x15, 0x32, 0x05, 0x72,
-
2381  0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57,
-
2382  0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33,
-
2383  0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
2384  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x23,
-
2385  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
2386  0x14, 0x06, 0x06, 0x07, 0xe3, 0x2f, 0x4e, 0x20, 0x30, 0x07, 0x06, 0x01,
-
2387  0x08, 0x0c, 0x0f, 0x21, 0x15, 0x25, 0x35, 0x22, 0x12, 0x18, 0x33, 0x27,
-
2388  0x18, 0x28, 0x1d, 0x0f, 0x11, 0x1e, 0x27, 0x16, 0x20, 0x2e, 0x27, 0x10,
-
2389  0x07, 0x11, 0x2a, 0x35, 0x20, 0x27, 0x44, 0x32, 0x1b, 0x1d, 0x33, 0x44,
-
2390  0x27, 0x3d, 0x57, 0x2e, 0x33, 0x60, 0x44, 0x0a, 0x1b, 0x1d, 0x3d, 0x08,
-
2391  0x05, 0x08, 0x0d, 0x0b, 0x09, 0x09, 0x2a, 0x48, 0x5c, 0x32, 0x54, 0x6b,
-
2392  0x33, 0x12, 0x24, 0x32, 0x20, 0x1c, 0x2d, 0x1f, 0x10, 0x0e, 0x22, 0x1c,
-
2393  0x50, 0x14, 0x1e, 0x11, 0x1b, 0x33, 0x47, 0x2b, 0x2c, 0x4b, 0x38, 0x1f,
-
2394  0x44, 0x7a, 0x53, 0x7a, 0xa2, 0x51, 0x01, 0x00, 0x00, 0x03, 0x00, 0x32,
-
2395  0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x2b,
-
2396  0x00, 0x19, 0x40, 0x0c, 0x06, 0x00, 0x00, 0x0c, 0x24, 0x14, 0x05, 0x72,
-
2397  0x1c, 0x0c, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
2398  0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
-
2399  0x15, 0x14, 0x06, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
2400  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
2401  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa,
-
2402  0x1a, 0x24, 0x26, 0x18, 0x19, 0x26, 0x25, 0x1a, 0x3f, 0x59, 0x30, 0x30,
-
2403  0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x25, 0x34, 0x1c, 0x1c,
-
2404  0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0xfe, 0x23, 0x19, 0x19, 0x23,
-
2405  0x23, 0x19, 0x19, 0x23, 0xfe, 0xf7, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e,
-
2406  0x4e, 0x8f, 0x64, 0x66, 0x8f, 0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f,
-
2407  0x3e, 0x3e, 0x6f, 0x4d, 0x50, 0x70, 0x3a, 0x00, 0x00, 0x02, 0x00, 0x32,
-
2408  0xff, 0xf5, 0x01, 0xc2, 0x02, 0x75, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x10,
-
2409  0xb7, 0x18, 0x08, 0x05, 0x72, 0x10, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32,
-
2410  0x2b, 0x32, 0x30, 0x31, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
2411  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36,
-
2412  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
2413  0xfa, 0x3f, 0x59, 0x30, 0x30, 0x59, 0x3f, 0x3f, 0x59, 0x30, 0x30, 0x59,
-
2414  0x3f, 0x25, 0x34, 0x1c, 0x1c, 0x34, 0x25, 0x25, 0x34, 0x1c, 0x1c, 0x34,
-
2415  0x0b, 0x4a, 0x8f, 0x66, 0x64, 0x8f, 0x4e, 0x4e, 0x8f, 0x64, 0x66, 0x8f,
-
2416  0x4a, 0x45, 0x3a, 0x70, 0x50, 0x4d, 0x6f, 0x3e, 0x3e, 0x6f, 0x4d, 0x50,
-
2417  0x70, 0x3a, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
-
2418  0x06, 0x07, 0x02, 0x03, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x85,
-
2419  0xff, 0xef, 0x01, 0x24, 0x01, 0x72, 0x06, 0x07, 0x02, 0x04, 0x00, 0x00,
-
2420  0xfe, 0xf9, 0xff, 0xff, 0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e,
-
2421  0x06, 0x07, 0x02, 0x05, 0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74,
-
2422  0xff, 0xe6, 0x01, 0x79, 0x01, 0x74, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00,
-
2423  0xfe, 0xf7, 0xff, 0xff, 0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b,
-
2424  0x06, 0x07, 0x02, 0x07, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77,
-
2425  0xff, 0xf1, 0x01, 0x86, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x08, 0x00, 0x00,
-
2426  0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf2, 0x01, 0x81, 0x01, 0x80,
-
2427  0x06, 0x07, 0x02, 0x09, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x7f,
-
2428  0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x07, 0x02, 0x0a, 0x00, 0x00,
-
2429  0xff, 0x02, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83, 0x01, 0x80,
-
2430  0x06, 0x07, 0x02, 0x0b, 0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x75,
-
2431  0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x07, 0x02, 0x0c, 0x00, 0x00,
-
2432  0xff, 0x02, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f,
-
2433  0x06, 0x06, 0x01, 0xe5, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0xff, 0xef,
-
2434  0x01, 0x24, 0x01, 0x72, 0x06, 0x06, 0x01, 0xe6, 0x00, 0x00, 0xff, 0xff,
-
2435  0x00, 0x70, 0xff, 0xf7, 0x01, 0x7f, 0x01, 0x7e, 0x06, 0x07, 0x02, 0x05,
-
2436  0x00, 0x00, 0xff, 0x01, 0xff, 0xff, 0x00, 0x74, 0xff, 0xd7, 0x01, 0x79,
-
2437  0x01, 0x65, 0x06, 0x07, 0x02, 0x06, 0x00, 0x00, 0xfe, 0xe8, 0xff, 0xff,
-
2438  0x00, 0x6c, 0xff, 0xf8, 0x01, 0x93, 0x01, 0x7b, 0x06, 0x07, 0x02, 0x07,
-
2439  0x00, 0x00, 0xff, 0x02, 0xff, 0xff, 0x00, 0x77, 0xff, 0xf1, 0x01, 0x86,
-
2440  0x01, 0x7a, 0x06, 0x06, 0x01, 0xea, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
-
2441  0xff, 0xf2, 0x01, 0x81, 0x01, 0x80, 0x06, 0x06, 0x01, 0xeb, 0x00, 0x00,
-
2442  0xff, 0xff, 0x00, 0x7f, 0xff, 0xf8, 0x01, 0x7b, 0x01, 0x7a, 0x06, 0x06,
-
2443  0x01, 0xec, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72, 0xff, 0xf2, 0x01, 0x83,
-
2444  0x01, 0x80, 0x06, 0x06, 0x01, 0xed, 0x00, 0x00, 0xff, 0xff, 0x00, 0x75,
-
2445  0xff, 0xf2, 0x01, 0x7f, 0x01, 0x7f, 0x06, 0x06, 0x01, 0xee, 0x00, 0x00,
-
2446  0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x06, 0x06,
-
2447  0x02, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24,
-
2448  0x02, 0x79, 0x06, 0x06, 0x02, 0x04, 0x00, 0x00, 0xff, 0xff, 0x00, 0x70,
-
2449  0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06, 0x02, 0x05, 0x00, 0x00,
-
2450  0xff, 0xff, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d, 0x06, 0x06,
-
2451  0x02, 0x06, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93,
-
2452  0x02, 0x79, 0x06, 0x06, 0x02, 0x07, 0x00, 0x00, 0xff, 0xff, 0x00, 0x77,
-
2453  0x00, 0xef, 0x01, 0x86, 0x02, 0x78, 0x06, 0x06, 0x02, 0x08, 0x00, 0x00,
-
2454  0xff, 0xff, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x06, 0x06,
-
2455  0x02, 0x09, 0x00, 0x00, 0xff, 0xff, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
-
2456  0x02, 0x78, 0x06, 0x06, 0x02, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x00, 0x72,
-
2457  0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x06, 0x06, 0x02, 0x0b, 0x00, 0x00,
-
2458  0xff, 0xff, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d, 0x06, 0x06,
-
2459  0x02, 0x0c, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
-
2460  0x02, 0x7d, 0x00, 0x03, 0x00, 0x13, 0x00, 0x21, 0x00, 0x17, 0x40, 0x0c,
-
2461  0x03, 0x00, 0x02, 0x01, 0x04, 0x14, 0x04, 0x77, 0x1b, 0x0c, 0x05, 0x72,
-
2462  0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37, 0x17,
-
2463  0x07, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2464  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2465  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x98, 0xb6, 0x0e, 0xb6, 0x54,
-
2466  0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c,
-
2467  0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29, 0x01, 0x63, 0xc9,
-
2468  0x2a, 0xc7, 0x4c, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e,
-
2469  0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e,
-
2470  0x47, 0x4d, 0x00, 0x01, 0x00, 0x85, 0x00, 0xf6, 0x01, 0x24, 0x02, 0x79,
-
2471  0x00, 0x06, 0x00, 0x16, 0x40, 0x0a, 0x03, 0x02, 0x02, 0x01, 0x01, 0x00,
-
2472  0x77, 0x04, 0x04, 0x72, 0x00, 0x2b, 0xed, 0x33, 0x11, 0x33, 0x11, 0x33,
-
2473  0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x11, 0xe4, 0x51, 0x0e,
-
2474  0x6f, 0x30, 0xf6, 0x01, 0x3d, 0x19, 0x28, 0x37, 0xfe, 0x7d, 0x00, 0x01,
-
2475  0x00, 0x70, 0x00, 0xf6, 0x01, 0x7f, 0x02, 0x7d, 0x00, 0x26, 0x00, 0x14,
-
2476  0x40, 0x09, 0x00, 0x1e, 0x1e, 0x26, 0x77, 0x09, 0x15, 0x05, 0x72, 0x00,
-
2477  0x2b, 0x32, 0xe4, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x3e, 0x03, 0x35,
-
2478  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x17, 0x07, 0x27,
-
2479  0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x07,
-
2480  0x33, 0x32, 0x36, 0x37, 0x33, 0x15, 0x15, 0x21, 0x7b, 0x30, 0x49, 0x31,
-
2481  0x1a, 0x10, 0x1e, 0x14, 0x13, 0x23, 0x0e, 0x0a, 0x07, 0x01, 0x05, 0x08,
-
2482  0x2c, 0x17, 0x49, 0x2d, 0x24, 0x3b, 0x21, 0x1a, 0x2d, 0x3d, 0x24, 0x7d,
-
2483  0x11, 0x0e, 0x06, 0x08, 0xfe, 0xfc, 0x01, 0x24, 0x2c, 0x40, 0x33, 0x30,
-
2484  0x1a, 0x15, 0x1a, 0x0b, 0x0a, 0x0b, 0x0c, 0x0e, 0x08, 0x06, 0x06, 0x23,
-
2485  0x23, 0x27, 0x1b, 0x32, 0x23, 0x1e, 0x36, 0x35, 0x39, 0x21, 0x04, 0x06,
-
2486  0x0a, 0x34, 0x00, 0x01, 0x00, 0x74, 0x00, 0xef, 0x01, 0x79, 0x02, 0x7d,
-
2487  0x00, 0x32, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x14, 0x14, 0x13, 0x13, 0x24,
-
2488  0x32, 0x0c, 0x1d, 0x32, 0x77, 0x24, 0x05, 0x72, 0x00, 0x2b, 0xe4, 0x33,
-
2489  0x3f, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x77, 0x22, 0x26,
-
2490  0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36,
-
2491  0x35, 0x34, 0x26, 0x26, 0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26,
-
2492  0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2493  0x14, 0x06, 0x07, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0xf1, 0x24,
-
2494  0x43, 0x16, 0x24, 0x06, 0x06, 0x01, 0x09, 0x0d, 0x0b, 0x19, 0x10, 0x24,
-
2495  0x26, 0x1c, 0x34, 0x25, 0x20, 0x28, 0x18, 0x09, 0x0f, 0x1a, 0x12, 0x15,
-
2496  0x27, 0x11, 0x26, 0x18, 0x3d, 0x1f, 0x36, 0x43, 0x23, 0x1d, 0x15, 0x22,
-
2497  0x16, 0x20, 0x3c, 0x2c, 0xef, 0x17, 0x17, 0x2d, 0x08, 0x05, 0x08, 0x0c,
-
2498  0x0b, 0x05, 0x07, 0x25, 0x1d, 0x1a, 0x1f, 0x0c, 0x04, 0x32, 0x09, 0x11,
-
2499  0x18, 0x0d, 0x10, 0x16, 0x0c, 0x0d, 0x10, 0x26, 0x18, 0x14, 0x37, 0x2b,
-
2500  0x20, 0x2e, 0x0a, 0x06, 0x19, 0x27, 0x1c, 0x20, 0x34, 0x1e, 0x00, 0x02,
-
2501  0x00, 0x6c, 0x00, 0xf6, 0x01, 0x93, 0x02, 0x79, 0x00, 0x0a, 0x00, 0x0d,
-
2502  0x00, 0x1f, 0x40, 0x0e, 0x03, 0x06, 0x06, 0x0c, 0x0c, 0x09, 0x0d, 0x04,
-
2503  0x01, 0x01, 0x00, 0x77, 0x04, 0x05, 0x00, 0x3f, 0xed, 0x39, 0x2f, 0x12,
-
2504  0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23,
-
2505  0x35, 0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x01,
-
2506  0x1c, 0xb0, 0xbe, 0x31, 0x38, 0x38, 0xa9, 0x6b, 0xf6, 0x5c, 0x29, 0xfe,
-
2507  0xf4, 0x34, 0x5b, 0x8f, 0x90, 0x00, 0x00, 0x01, 0x00, 0x77, 0x00, 0xef,
-
2508  0x01, 0x86, 0x02, 0x78, 0x00, 0x2a, 0x00, 0x17, 0x40, 0x0a, 0x0c, 0x1e,
-
2509  0x14, 0x21, 0x21, 0x2a, 0x77, 0x1d, 0x1a, 0x05, 0x00, 0x3f, 0x33, 0xe4,
-
2510  0x39, 0x2f, 0x33, 0x33, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x27, 0x37,
-
2511  0x37, 0x17, 0x06, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35,
-
2512  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x37, 0x33, 0x15,
-
2513  0x23, 0x07, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x06,
-
2514  0x23, 0xfb, 0x2a, 0x46, 0x14, 0x2e, 0x07, 0x05, 0x01, 0x09, 0x0c, 0x0b,
-
2515  0x1b, 0x11, 0x14, 0x23, 0x15, 0x14, 0x24, 0x18, 0x0d, 0x1b, 0x18, 0x0a,
-
2516  0x27, 0x0e, 0xdf, 0xa9, 0x06, 0x0e, 0x23, 0x10, 0x1c, 0x2f, 0x22, 0x13,
-
2517  0x24, 0x3f, 0x28, 0xef, 0x1f, 0x1d, 0x25, 0x07, 0x07, 0x08, 0x0c, 0x0b,
-
2518  0x07, 0x07, 0x13, 0x23, 0x18, 0x19, 0x24, 0x13, 0x07, 0x0f, 0x0a, 0x0c,
-
2519  0xcb, 0x34, 0x5e, 0x07, 0x08, 0x11, 0x22, 0x30, 0x1e, 0x2a, 0x3b, 0x20,
-
2520  0x00, 0x02, 0x00, 0x77, 0x00, 0xf0, 0x01, 0x81, 0x02, 0x7e, 0x00, 0x24,
-
2521  0x00, 0x36, 0x00, 0x16, 0x40, 0x0a, 0x2e, 0x1c, 0x1c, 0x36, 0x24, 0x77,
-
2522  0x13, 0x07, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33,
-
2523  0x30, 0x31, 0x65, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2524  0x17, 0x07, 0x07, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
-
2525  0x02, 0x07, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2526  0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
2527  0x06, 0x07, 0x06, 0x16, 0x16, 0x33, 0x01, 0x01, 0x43, 0x47, 0x27, 0x46,
-
2528  0x2e, 0x1c, 0x35, 0x15, 0x23, 0x07, 0x05, 0x01, 0x0c, 0x0e, 0x06, 0x0b,
-
2529  0x06, 0x0e, 0x20, 0x1d, 0x14, 0x03, 0x0a, 0x1b, 0x20, 0x10, 0x21, 0x36,
-
2530  0x20, 0x22, 0x39, 0x25, 0x02, 0x12, 0x1d, 0x13, 0x0c, 0x14, 0x18, 0x0b,
-
2531  0x0f, 0x1b, 0x18, 0x09, 0x01, 0x11, 0x24, 0x18, 0xf0, 0x64, 0x52, 0x45,
-
2532  0x60, 0x33, 0x11, 0x14, 0x28, 0x08, 0x05, 0x08, 0x08, 0x08, 0x01, 0x01,
-
2533  0x09, 0x1a, 0x31, 0x27, 0x0c, 0x11, 0x09, 0x1d, 0x38, 0x29, 0x27, 0x3c,
-
2534  0x22, 0x34, 0x13, 0x24, 0x19, 0x13, 0x1d, 0x13, 0x09, 0x0c, 0x13, 0x0e,
-
2535  0x1e, 0x32, 0x1f, 0x00, 0x00, 0x01, 0x00, 0x7f, 0x00, 0xf6, 0x01, 0x7b,
-
2536  0x02, 0x78, 0x00, 0x0c, 0x00, 0x11, 0xb7, 0x08, 0x05, 0x05, 0x00, 0x77,
-
2537  0x06, 0x04, 0x72, 0x00, 0x2b, 0xe4, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77,
-
2538  0x3e, 0x02, 0x37, 0x23, 0x35, 0x33, 0x15, 0x0e, 0x02, 0x07, 0xae, 0x14,
-
2539  0x2a, 0x2d, 0x17, 0xb1, 0xfc, 0x1a, 0x30, 0x2c, 0x14, 0xf6, 0x39, 0x6f,
-
2540  0x6c, 0x37, 0x37, 0x23, 0x39, 0x73, 0x75, 0x3e, 0x00, 0x03, 0x00, 0x72,
-
2541  0x00, 0xf0, 0x01, 0x83, 0x02, 0x7e, 0x00, 0x1c, 0x00, 0x2c, 0x00, 0x3c,
-
2542  0x00, 0x17, 0x40, 0x0c, 0x07, 0x2d, 0x15, 0x25, 0x04, 0x1d, 0x00, 0x77,
-
2543  0x35, 0x0e, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x17, 0x39, 0x30,
-
2544  0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x2e, 0x02, 0x35,
-
2545  0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x1e, 0x02,
-
2546  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2547  0x27, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x37, 0x3e, 0x02, 0x35, 0x34,
-
2548  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xfa, 0x3e,
-
2549  0x4a, 0x13, 0x24, 0x19, 0x13, 0x1b, 0x0e, 0x3f, 0x39, 0x3b, 0x3c, 0x0e,
-
2550  0x1a, 0x13, 0x17, 0x20, 0x12, 0x22, 0x3d, 0x29, 0x18, 0x20, 0x11, 0x15,
-
2551  0x26, 0x1a, 0x12, 0x1c, 0x10, 0x12, 0x21, 0x23, 0x0f, 0x15, 0x0d, 0x0e,
-
2552  0x1b, 0x13, 0x12, 0x1b, 0x0d, 0x13, 0x1f, 0xf0, 0x3c, 0x2d, 0x18, 0x28,
-
2553  0x20, 0x0b, 0x0a, 0x1b, 0x21, 0x11, 0x2a, 0x39, 0x37, 0x28, 0x13, 0x23,
-
2554  0x1d, 0x0a, 0x0a, 0x1f, 0x27, 0x16, 0x20, 0x30, 0x1c, 0x35, 0x0f, 0x1a,
-
2555  0x10, 0x11, 0x1e, 0x18, 0x06, 0x08, 0x16, 0x1c, 0x11, 0x11, 0x1b, 0x0f,
-
2556  0xb1, 0x09, 0x15, 0x1a, 0x0d, 0x0d, 0x15, 0x0d, 0x0d, 0x14, 0x0c, 0x11,
-
2557  0x19, 0x13, 0x00, 0x01, 0x00, 0x75, 0x00, 0xf0, 0x01, 0x7f, 0x02, 0x7d,
-
2558  0x00, 0x32, 0x00, 0x14, 0x40, 0x09, 0x1c, 0x24, 0x24, 0x32, 0x77, 0x14,
-
2559  0x2c, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
2560  0x77, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16,
-
2561  0x33, 0x32, 0x36, 0x36, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06,
-
2562  0x15, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
-
2563  0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
2564  0x06, 0x23, 0xe9, 0x1f, 0x39, 0x17, 0x23, 0x07, 0x06, 0x01, 0x0b, 0x0d,
-
2565  0x08, 0x11, 0x0a, 0x1f, 0x29, 0x15, 0x01, 0x10, 0x22, 0x1a, 0x15, 0x20,
-
2566  0x12, 0x01, 0x13, 0x20, 0x13, 0x15, 0x1e, 0x1a, 0x0b, 0x06, 0x11, 0x30,
-
2567  0x20, 0x24, 0x3a, 0x22, 0x23, 0x3d, 0x24, 0x41, 0x45, 0x4e, 0x48, 0xf0,
-
2568  0x0f, 0x13, 0x2e, 0x08, 0x05, 0x08, 0x0a, 0x09, 0x02, 0x03, 0x28, 0x44,
-
2569  0x29, 0x34, 0x40, 0x1d, 0x12, 0x24, 0x1a, 0x15, 0x1f, 0x10, 0x08, 0x14,
-
2570  0x10, 0x38, 0x12, 0x16, 0x1e, 0x37, 0x25, 0x26, 0x3a, 0x22, 0x5c, 0x52,
-
2571  0x6f, 0x70, 0x00, 0x01, 0x00, 0x47, 0xff, 0xd6, 0x01, 0xb4, 0x02, 0x9b,
-
2572  0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
2573  0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x7b, 0x34, 0x01, 0x38,
-
2574  0x35, 0x2a, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x03, 0x00, 0x0f, 0xff, 0xba,
-
2575  0x01, 0xe6, 0x02, 0xae, 0x00, 0x06, 0x00, 0x24, 0x00, 0x28, 0x00, 0x37,
-
2576  0x40, 0x19, 0x26, 0x25, 0x25, 0x07, 0x08, 0x22, 0x22, 0x07, 0x11, 0x19,
-
2577  0x19, 0x07, 0x28, 0x27, 0x27, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, 0x04,
-
2578  0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2579  0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11,
-
2580  0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x07, 0x27, 0x37,
-
2581  0x33, 0x11, 0x13, 0x35, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22,
-
2582  0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
2583  0x0e, 0x02, 0x07, 0x33, 0x15, 0x25, 0x27, 0x01, 0x17, 0x59, 0x3d, 0x0d,
-
2584  0x59, 0x2a, 0x84, 0x26, 0x3a, 0x26, 0x14, 0x0d, 0x16, 0x10, 0x10, 0x1b,
-
2585  0x15, 0x09, 0x26, 0x11, 0x3b, 0x23, 0x1e, 0x2f, 0x1c, 0x13, 0x22, 0x2f,
-
2586  0x1c, 0x80, 0xfe, 0x95, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6, 0x14,
-
2587  0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x28, 0x23, 0x33, 0x26, 0x25, 0x14,
-
2588  0x0f, 0x12, 0x08, 0x08, 0x12, 0x0f, 0x1e, 0x1c, 0x1f, 0x16, 0x28, 0x1b,
-
2589  0x18, 0x29, 0x28, 0x2c, 0x1a, 0x2e, 0x1c, 0x1e, 0x02, 0xa7, 0x20, 0x00,
-
2590  0x00, 0x04, 0x00, 0x0f, 0xff, 0xba, 0x01, 0xeb, 0x02, 0xae, 0x00, 0x06,
-
2591  0x00, 0x11, 0x00, 0x14, 0x00, 0x18, 0x00, 0x41, 0x40, 0x1e, 0x16, 0x15,
-
2592  0x15, 0x07, 0x0d, 0x0a, 0x13, 0x13, 0x10, 0x14, 0x0b, 0x08, 0x08, 0x07,
-
2593  0x0b, 0x0b, 0x07, 0x18, 0x17, 0x17, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03,
-
2594  0x04, 0x00, 0x00, 0x04, 0x00, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33,
-
2595  0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
-
2596  0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30,
-
2597  0x31, 0x53, 0x35, 0x07, 0x27, 0x37, 0x33, 0x11, 0x13, 0x35, 0x23, 0x35,
-
2598  0x37, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x05, 0x27,
-
2599  0x01, 0x17, 0x59, 0x3d, 0x0d, 0x59, 0x2a, 0xf5, 0x87, 0x93, 0x2b, 0x2d,
-
2600  0x2d, 0x82, 0x4c, 0xfe, 0xf3, 0x34, 0x01, 0x38, 0x35, 0x01, 0x7c, 0xf6,
-
2601  0x14, 0x24, 0x2c, 0xfe, 0xce, 0xfe, 0x3e, 0x48, 0x24, 0xc6, 0xbe, 0x2d,
-
2602  0x47, 0x74, 0x68, 0xc0, 0x1e, 0x02, 0xa7, 0x20, 0x00, 0x04, 0x00, 0x01,
-
2603  0xff, 0xba, 0x01, 0xeb, 0x02, 0xb2, 0x00, 0x30, 0x00, 0x3b, 0x00, 0x3e,
-
2604  0x00, 0x42, 0x00, 0x3d, 0x40, 0x1d, 0x40, 0x3f, 0x3f, 0x3b, 0x33, 0x36,
-
2605  0x36, 0x39, 0x39, 0x3c, 0x3d, 0x34, 0x31, 0x31, 0x3b, 0x34, 0x34, 0x3b,
-
2606  0x42, 0x41, 0x41, 0x13, 0x2a, 0x14, 0x03, 0x24, 0x30, 0x30, 0x24, 0x00,
-
2607  0x2f, 0x33, 0x2f, 0x12, 0x17, 0x39, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x2f,
-
2608  0x12, 0x39, 0x2f, 0x12, 0x39, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2609  0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
-
2610  0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2611  0x07, 0x35, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
2612  0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x16,
-
2613  0x16, 0x15, 0x14, 0x06, 0x23, 0x01, 0x23, 0x35, 0x37, 0x33, 0x15, 0x33,
-
2614  0x15, 0x23, 0x15, 0x23, 0x37, 0x35, 0x07, 0x07, 0x27, 0x01, 0x17, 0x66,
-
2615  0x1d, 0x37, 0x11, 0x1e, 0x06, 0x06, 0x02, 0x0a, 0x0d, 0x06, 0x10, 0x0a,
-
2616  0x1b, 0x1d, 0x15, 0x28, 0x1d, 0x18, 0x20, 0x12, 0x08, 0x0c, 0x14, 0x0e,
-
2617  0x10, 0x1f, 0x0d, 0x21, 0x13, 0x33, 0x18, 0x2d, 0x37, 0x1e, 0x15, 0x18,
-
2618  0x24, 0x3a, 0x34, 0x01, 0x21, 0x87, 0x93, 0x2b, 0x2d, 0x2d, 0x37, 0x01,
-
2619  0x4c, 0xc1, 0x34, 0x01, 0x38, 0x35, 0x01, 0x76, 0x12, 0x12, 0x29, 0x08,
-
2620  0x05, 0x07, 0x0c, 0x0a, 0x03, 0x03, 0x1a, 0x16, 0x14, 0x18, 0x08, 0x03,
-
2621  0x2b, 0x06, 0x0e, 0x10, 0x09, 0x0d, 0x11, 0x09, 0x0a, 0x0d, 0x21, 0x14,
-
2622  0x11, 0x2c, 0x23, 0x1a, 0x23, 0x08, 0x07, 0x25, 0x22, 0x25, 0x35, 0xfe,
-
2623  0x8c, 0x24, 0xc6, 0xbe, 0x2d, 0x47, 0x74, 0x68, 0x68, 0x58, 0x1e, 0x02,
-
2624  0xa7, 0x20, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xe9, 0x01, 0x86, 0x01, 0x77,
-
2625  0x06, 0x07, 0x02, 0x14, 0x00, 0x00, 0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e,
-
2626  0xff, 0xe9, 0x01, 0x86, 0x01, 0x77, 0x06, 0x07, 0x02, 0x14, 0x00, 0x00,
-
2627  0xfe, 0xfa, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86, 0x02, 0x7d,
-
2628  0x06, 0x06, 0x02, 0x14, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6e, 0x00, 0xef,
-
2629  0x01, 0x86, 0x02, 0x7d, 0x00, 0x0f, 0x00, 0x1d, 0x00, 0x0f, 0xb6, 0x10,
-
2630  0x00, 0x77, 0x17, 0x08, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x30,
-
2631  0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
2632  0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2633  0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfa, 0x2c, 0x3e, 0x22, 0x22,
-
2634  0x3e, 0x2c, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23,
-
2635  0x1a, 0x19, 0x24, 0x12, 0x29, 0xef, 0x2e, 0x59, 0x3f, 0x3e, 0x5a, 0x30,
-
2636  0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32, 0x4d, 0x47, 0x2e, 0x42, 0x24,
-
2637  0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0xff, 0xff, 0x00, 0x6e, 0xff, 0xf3,
-
2638  0x01, 0x86, 0x01, 0x81, 0x06, 0x07, 0x02, 0x18, 0x00, 0x00, 0xff, 0x04,
-
2639  0xff, 0xff, 0x00, 0x6e, 0xff, 0xf1, 0x01, 0x86, 0x01, 0x7f, 0x06, 0x06,
-
2640  0x02, 0x15, 0x00, 0xfe, 0xff, 0xff, 0x00, 0x6e, 0x00, 0xef, 0x01, 0x86,
-
2641  0x02, 0x7d, 0x06, 0x06, 0x02, 0x18, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6e,
-
2642  0x00, 0xef, 0x01, 0x86, 0x02, 0x7d, 0x00, 0x0b, 0x00, 0x1b, 0x00, 0x29,
-
2643  0x00, 0x16, 0x40, 0x0a, 0x06, 0x00, 0x00, 0x1c, 0x0c, 0x77, 0x23, 0x14,
-
2644  0x05, 0x72, 0x00, 0x2b, 0x32, 0xe4, 0x32, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
2645  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2646  0x07, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
2647  0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
2648  0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0xfd, 0x10, 0x15, 0x16, 0x0f, 0x0d,
-
2649  0x17, 0x15, 0x12, 0x2c, 0x3e, 0x22, 0x22, 0x3e, 0x2c, 0x2c, 0x3e, 0x22,
-
2650  0x22, 0x3e, 0x2c, 0x26, 0x29, 0x12, 0x23, 0x1a, 0x19, 0x24, 0x12, 0x29,
-
2651  0x01, 0x9e, 0x14, 0x10, 0x0e, 0x15, 0x15, 0x0e, 0x0f, 0x15, 0xaf, 0x2e,
-
2652  0x59, 0x3f, 0x3e, 0x5a, 0x30, 0x30, 0x5a, 0x3e, 0x3f, 0x59, 0x2e, 0x32,
-
2653  0x4d, 0x47, 0x2e, 0x42, 0x24, 0x24, 0x42, 0x2e, 0x47, 0x4d, 0x00, 0x01,
-
2654  0x00, 0xae, 0xff, 0xf5, 0x01, 0x2d, 0x00, 0x73, 0x00, 0x0b, 0x00, 0x0a,
-
2655  0xb3, 0x06, 0x00, 0x0b, 0x72, 0x00, 0x2b, 0x32, 0x30, 0x31, 0x57, 0x22,
-
2656  0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xee, 0x1a,
-
2657  0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0x0b, 0x25, 0x1a, 0x19, 0x26, 0x26,
-
2658  0x19, 0x1a, 0x25, 0x00, 0x00, 0x01, 0x00, 0xa1, 0xff, 0x57, 0x01, 0x38,
-
2659  0x00, 0x73, 0x00, 0x13, 0x00, 0x0a, 0xb2, 0x00, 0xc0, 0x0c, 0x00, 0x2f,
-
2660  0x1a, 0xcc, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x2e, 0x02,
-
2661  0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0e, 0x02, 0xcc, 0x2b,
-
2662  0x1c, 0x22, 0x0e, 0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29,
-
2663  0xa9, 0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x1c, 0x23,
-
2664  0x31, 0x28, 0x15, 0x2d, 0x31, 0x34, 0x00, 0x02, 0x00, 0xad, 0xff, 0xf5,
-
2665  0x01, 0x2e, 0x01, 0xad, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x0e, 0xb5, 0x12,
-
2666  0x0c, 0x0b, 0x72, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2b, 0x32, 0x30, 0x31,
-
2667  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2668  0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2669  0xed, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0x1b, 0x1b, 0x25, 0x26,
-
2670  0x1a, 0x19, 0x28, 0x25, 0x01, 0x2e, 0x26, 0x19, 0x1a, 0x26, 0x25, 0x1b,
-
2671  0x19, 0x26, 0xfe, 0xc7, 0x25, 0x1a, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x26,
-
2672  0x00, 0x02, 0x00, 0xa0, 0xff, 0x57, 0x01, 0x38, 0x01, 0xad, 0x00, 0x13,
-
2673  0x00, 0x1f, 0x00, 0x0e, 0xb4, 0x14, 0x1a, 0x00, 0xc0, 0x0d, 0x00, 0x2f,
-
2674  0x1a, 0xcc, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34,
-
2675  0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2676  0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
2677  0x06, 0xcc, 0x2c, 0x1c, 0x23, 0x0f, 0x14, 0x0e, 0x11, 0x1d, 0x13, 0x1e,
-
2678  0x2b, 0x18, 0x30, 0x03, 0x1a, 0x26, 0x26, 0x1a, 0x19, 0x28, 0x26, 0xa9,
-
2679  0x25, 0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x17, 0x0e, 0x13, 0x1c, 0x10,
-
2680  0x31, 0x28, 0x1c, 0x3e, 0x43, 0x01, 0xb1, 0x26, 0x19, 0x1a, 0x26, 0x25,
-
2681  0x1b, 0x19, 0x26, 0x00, 0x00, 0x03, 0x00, 0x06, 0xff, 0xf5, 0x01, 0xda,
-
2682  0x00, 0x6e, 0x00, 0x0b, 0x00, 0x17, 0x00, 0x23, 0x00, 0x19, 0x40, 0x0b,
-
2683  0x18, 0x0c, 0x0c, 0x1e, 0x12, 0x12, 0x06, 0x06, 0x00, 0x0b, 0x72, 0x00,
-
2684  0x2b, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57,
-
2685  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
-
2686  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33,
-
2687  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x44,
-
2688  0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x94, 0x1a, 0x24, 0x24, 0x1a,
-
2689  0x18, 0x24, 0x24, 0x96, 0x1a, 0x24, 0x24, 0x1a, 0x18, 0x24, 0x24, 0x0b,
-
2690  0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24,
-
2691  0x24, 0x18, 0x19, 0x24, 0x24, 0x19, 0x18, 0x24, 0x24, 0x18, 0x19, 0x24,
-
2692  0x00, 0x02, 0x00, 0xad, 0xff, 0xf5, 0x01, 0x32, 0x02, 0x9d, 0x00, 0x0a,
-
2693  0x00, 0x16, 0x00, 0x14, 0x40, 0x09, 0x00, 0x11, 0x11, 0x0b, 0x0b, 0x72,
-
2694  0x05, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x32, 0x7c, 0x10, 0xce, 0x30, 0x31,
-
2695  0x77, 0x03, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x03, 0x07,
-
2696  0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xd2,
-
2697  0x1a, 0x0e, 0x1a, 0x11, 0x11, 0x19, 0x0f, 0x1c, 0x1f, 0x1b, 0x27, 0x27,
-
2698  0x1b, 0x1b, 0x28, 0x28, 0xc7, 0x01, 0x87, 0x1a, 0x23, 0x12, 0x12, 0x26,
-
2699  0x1f, 0xfe, 0x81, 0xd2, 0x25, 0x1b, 0x1a, 0x27, 0x27, 0x1a, 0x19, 0x27,
-
2700  0x00, 0x02, 0x00, 0xad, 0xff, 0xae, 0x01, 0x32, 0x02, 0x56, 0x00, 0x0a,
-
2701  0x00, 0x16, 0x00, 0x0f, 0xb4, 0x00, 0x11, 0x11, 0x0b, 0x06, 0x00, 0x2f,
-
2702  0x2f, 0x33, 0x7c, 0x10, 0xce, 0x30, 0x31, 0x53, 0x33, 0x13, 0x14, 0x06,
-
2703  0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2704  0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0xd2, 0x3c, 0x1c, 0x0f, 0x19, 0x11,
-
2705  0x11, 0x1a, 0x0e, 0x37, 0x1b, 0x28, 0x28, 0x1b, 0x1b, 0x27, 0x27, 0x01,
-
2706  0x84, 0xfe, 0x81, 0x1f, 0x26, 0x12, 0x12, 0x24, 0x19, 0x02, 0x59, 0x26,
-
2707  0x1a, 0x1a, 0x27, 0x27, 0x1a, 0x1b, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3e,
-
2708  0xff, 0xf5, 0x01, 0xb6, 0x02, 0x9a, 0x00, 0x26, 0x00, 0x32, 0x00, 0x17,
-
2709  0x40, 0x0b, 0x26, 0x26, 0x2d, 0x2d, 0x27, 0x0b, 0x72, 0x0c, 0x19, 0x01,
-
2710  0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x77,
-
2711  0x34, 0x3e, 0x04, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x06,
-
2712  0x06, 0x17, 0x07, 0x27, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15,
-
2713  0x14, 0x0e, 0x04, 0x15, 0x15, 0x23, 0x17, 0x22, 0x26, 0x35, 0x34, 0x36,
-
2714  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xdd, 0x14, 0x1f, 0x22, 0x20, 0x13,
-
2715  0x0f, 0x1c, 0x27, 0x16, 0x22, 0x36, 0x16, 0x0a, 0x05, 0x01, 0x05, 0x08,
-
2716  0x36, 0x17, 0x35, 0x47, 0x30, 0x37, 0x51, 0x2d, 0x14, 0x20, 0x24, 0x20,
-
2717  0x14, 0x4d, 0x28, 0x1a, 0x26, 0x26, 0x1a, 0x1a, 0x25, 0x25, 0xeb, 0x24,
-
2718  0x32, 0x25, 0x21, 0x23, 0x2e, 0x1f, 0x16, 0x22, 0x18, 0x0d, 0x15, 0x16,
-
2719  0x0d, 0x0e, 0x08, 0x06, 0x06, 0x2a, 0x22, 0x2f, 0x19, 0x28, 0x47, 0x30,
-
2720  0x27, 0x37, 0x28, 0x21, 0x21, 0x2a, 0x1e, 0x2c, 0xca, 0x25, 0x1a, 0x19,
-
2721  0x26, 0x26, 0x19, 0x1a, 0x25, 0x00, 0x00, 0x02, 0x00, 0x3c, 0xff, 0x88,
-
2722  0x01, 0xb4, 0x02, 0x2d, 0x00, 0x26, 0x00, 0x33, 0x00, 0x12, 0xb6, 0x25,
-
2723  0x25, 0x2d, 0x2d, 0x27, 0x0c, 0x19, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
-
2724  0x33, 0x2f, 0x30, 0x31, 0x41, 0x14, 0x0e, 0x04, 0x15, 0x14, 0x1e, 0x02,
-
2725  0x33, 0x32, 0x36, 0x37, 0x36, 0x36, 0x27, 0x37, 0x17, 0x17, 0x0e, 0x02,
-
2726  0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x04, 0x35, 0x35, 0x33, 0x27,
-
2727  0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33,
-
2728  0x01, 0x15, 0x14, 0x1f, 0x22, 0x20, 0x13, 0x0f, 0x1c, 0x27, 0x16, 0x22,
-
2729  0x37, 0x15, 0x0a, 0x05, 0x01, 0x05, 0x08, 0x36, 0x16, 0x36, 0x47, 0x30,
-
2730  0x37, 0x51, 0x2d, 0x15, 0x1f, 0x24, 0x20, 0x14, 0x4d, 0x28, 0x1a, 0x26,
-
2731  0x26, 0x1a, 0x1a, 0x25, 0x25, 0x1a, 0x01, 0x37, 0x23, 0x33, 0x25, 0x21,
-
2732  0x23, 0x2d, 0x20, 0x15, 0x23, 0x18, 0x0d, 0x15, 0x16, 0x0d, 0x0e, 0x08,
-
2733  0x06, 0x06, 0x2a, 0x21, 0x30, 0x19, 0x28, 0x47, 0x30, 0x27, 0x37, 0x28,
-
2734  0x21, 0x21, 0x2b, 0x1d, 0x2c, 0xca, 0x25, 0x1a, 0x19, 0x26, 0x26, 0x19,
-
2735  0x1a, 0x25, 0x00, 0x01, 0x00, 0xae, 0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b,
-
2736  0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
2737  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
2738  0xee, 0x1b, 0x25, 0x27, 0x19, 0x1a, 0x28, 0x26, 0x01, 0x0d, 0x24, 0x1b,
-
2739  0x1a, 0x25, 0x25, 0x1a, 0x1a, 0x25, 0x00, 0x01, 0x00, 0x9d, 0x00, 0xcd,
-
2740  0x01, 0x58, 0x01, 0x84, 0x00, 0x0f, 0x00, 0x08, 0xb1, 0x08, 0x00, 0x00,
-
2741  0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36,
-
2742  0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xfa, 0x19, 0x2b, 0x19,
-
2743  0x1a, 0x2b, 0x18, 0x19, 0x2b, 0x1a, 0x1a, 0x2a, 0xcd, 0x19, 0x2a, 0x18,
-
2744  0x1a, 0x2a, 0x18, 0x19, 0x2a, 0x19, 0x18, 0x2a, 0x19, 0x00, 0x00, 0x01,
-
2745  0x00, 0x26, 0x00, 0x76, 0x01, 0xce, 0x02, 0x1a, 0x00, 0x0e, 0x00, 0x1b,
-
2746  0x40, 0x0f, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09,
-
2747  0x06, 0x0d, 0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17,
-
2748  0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07,
-
2749  0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b,
-
2750  0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x76, 0x35, 0x90,
-
2751  0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00,
-
2752  0x00, 0x01, 0x00, 0xc8, 0xff, 0x7c, 0x01, 0x52, 0x00, 0x8d, 0x00, 0x10,
-
2753  0x00, 0x0e, 0xb4, 0x01, 0x00, 0xc0, 0x08, 0x09, 0x00, 0x2f, 0x33, 0x1a,
-
2754  0xce, 0x32, 0x30, 0x31, 0x57, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26,
-
2755  0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc8, 0x20, 0x28,
-
2756  0x11, 0x20, 0x17, 0x29, 0x3e, 0x23, 0x22, 0x3f, 0x84, 0x3d, 0x2d, 0x1f,
-
2757  0x14, 0x24, 0x15, 0x3b, 0x25, 0x3e, 0x26, 0x25, 0x3e, 0x25, 0x00, 0x02,
-
2758  0x00, 0x16, 0x00, 0x09, 0x01, 0xe0, 0x02, 0x72, 0x00, 0x1b, 0x00, 0x1f,
-
2759  0x00, 0x41, 0x40, 0x1f, 0x13, 0x0f, 0x0f, 0x0c, 0x16, 0x1f, 0x1f, 0x09,
-
2760  0x09, 0x0c, 0x17, 0x1c, 0x1c, 0x08, 0x08, 0x05, 0x1a, 0x02, 0x02, 0x05,
-
2761  0x0c, 0x05, 0x0c, 0x05, 0x04, 0x12, 0x0d, 0x02, 0x72, 0x00, 0x04, 0x00,
-
2762  0x2f, 0x33, 0x2b, 0x32, 0x12, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
2763  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
2764  0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x65, 0x37, 0x23, 0x07, 0x07,
-
2765  0x37, 0x23, 0x37, 0x33, 0x37, 0x23, 0x37, 0x33, 0x37, 0x37, 0x07, 0x33,
-
2766  0x37, 0x37, 0x07, 0x33, 0x07, 0x23, 0x07, 0x33, 0x07, 0x23, 0x07, 0x27,
-
2767  0x33, 0x37, 0x23, 0x01, 0x0a, 0x15, 0x66, 0x14, 0x46, 0x15, 0x5e, 0x04,
-
2768  0x61, 0x13, 0x6a, 0x03, 0x6d, 0x13, 0x48, 0x15, 0x65, 0x13, 0x4a, 0x14,
-
2769  0x58, 0x07, 0x58, 0x14, 0x5f, 0x05, 0x5f, 0x16, 0x92, 0x65, 0x14, 0x66,
-
2770  0x09, 0xb1, 0xac, 0x01, 0xab, 0x37, 0xa0, 0x39, 0xa8, 0x02, 0xa8, 0xa4,
-
2771  0x01, 0xa3, 0x3a, 0x9e, 0x37, 0xaf, 0xe3, 0x9f, 0x00, 0x01, 0x00, 0x3a,
-
2772  0xff, 0xd6, 0x01, 0xbb, 0x02, 0x9a, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03,
-
2773  0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x27,
-
2774  0x01, 0x17, 0x84, 0x4a, 0x01, 0x37, 0x4a, 0x2a, 0x22, 0x02, 0xa2, 0x26,
-
2775  0x00, 0x01, 0x00, 0x3a, 0xff, 0xd5, 0x01, 0xbc, 0x02, 0x99, 0x00, 0x03,
-
2776  0x00, 0x0c, 0xb3, 0x01, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
2777  0x30, 0x31, 0x45, 0x01, 0x37, 0x01, 0x01, 0x73, 0xfe, 0xc7, 0x4a, 0x01,
-
2778  0x38, 0x2b, 0x02, 0x9f, 0x25, 0xfd, 0x5f, 0x00, 0xff, 0xff, 0x00, 0xae,
-
2779  0x01, 0x0d, 0x01, 0x30, 0x01, 0x8b, 0x06, 0x06, 0x02, 0x22, 0x00, 0x00,
-
2780  0x00, 0x01, 0x00, 0x26, 0x00, 0xb2, 0x01, 0xce, 0x02, 0x56, 0x00, 0x0e,
-
2781  0x00, 0x1b, 0x40, 0x10, 0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a,
-
2782  0x09, 0x09, 0x0d, 0x00, 0x00, 0x06, 0x02, 0x72, 0x00, 0x2b, 0x32, 0x2f,
-
2783  0x33, 0x17, 0x39, 0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27,
-
2784  0x33, 0x07, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7,
-
2785  0x1e, 0x9b, 0x12, 0x60, 0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0xb2,
-
2786  0x35, 0x90, 0x32, 0x4d, 0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34,
-
2787  0xa1, 0x00, 0x00, 0x01, 0x00, 0x74, 0xff, 0x97, 0x01, 0xa2, 0x02, 0xe0,
-
2788  0x00, 0x13, 0x00, 0x0c, 0xb3, 0x09, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32,
-
2789  0x2f, 0x33, 0x30, 0x31, 0x45, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37,
-
2790  0x17, 0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x01, 0x8b, 0x57, 0x7e,
-
2791  0x42, 0x42, 0x7a, 0x55, 0x16, 0x30, 0x4e, 0x38, 0x1e, 0x1f, 0x39, 0x50,
-
2792  0x33, 0x69, 0x28, 0x83, 0xa5, 0x59, 0x59, 0xa1, 0x7f, 0x27, 0x48, 0x1a,
-
2793  0x49, 0x59, 0x67, 0x38, 0x38, 0x68, 0x5c, 0x4a, 0x1a, 0x00, 0x00, 0x01,
-
2794  0x00, 0x6e, 0xff, 0x97, 0x01, 0x9c, 0x02, 0xe0, 0x00, 0x13, 0x00, 0x0c,
-
2795  0xb3, 0x0b, 0x0c, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31,
-
2796  0x57, 0x27, 0x3e, 0x03, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x37, 0x1e, 0x02,
-
2797  0x15, 0x14, 0x06, 0x06, 0x85, 0x17, 0x33, 0x50, 0x39, 0x1f, 0x1e, 0x38,
-
2798  0x4e, 0x30, 0x16, 0x55, 0x7a, 0x42, 0x42, 0x7e, 0x69, 0x46, 0x1a, 0x4a,
-
2799  0x5c, 0x68, 0x38, 0x38, 0x67, 0x59, 0x49, 0x1a, 0x48, 0x27, 0x7f, 0xa1,
-
2800  0x59, 0x59, 0xa5, 0x83, 0x00, 0x01, 0x00, 0x2f, 0xff, 0xa4, 0x01, 0x9a,
-
2801  0x02, 0xc0, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09, 0x20, 0x0b, 0x0b, 0x0a,
-
2802  0x0a, 0x18, 0x15, 0x29, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f,
-
2803  0x33, 0x12, 0x39, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x37, 0x37, 0x34,
-
2804  0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34,
-
2805  0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x17, 0x14, 0x06,
-
2806  0x06, 0x07, 0x1e, 0x02, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15,
-
2807  0x01, 0x71, 0x48, 0x62, 0x32, 0x03, 0x03, 0x13, 0x25, 0x1b, 0x19, 0x18,
-
2808  0x1d, 0x26, 0x13, 0x02, 0x2c, 0x54, 0x3c, 0x43, 0x55, 0x2c, 0x2b, 0x02,
-
2809  0x13, 0x26, 0x1b, 0x1b, 0x24, 0x13, 0x03, 0x18, 0x35, 0x2a, 0x37, 0x5c,
-
2810  0x1e, 0x4d, 0x46, 0x61, 0x2a, 0x2e, 0x11, 0x42, 0x14, 0x2c, 0x24, 0x4c,
-
2811  0x3a, 0x4e, 0x27, 0x43, 0x31, 0x30, 0x4b, 0x23, 0x38, 0x29, 0x0d, 0x0a,
-
2812  0x29, 0x3d, 0x29, 0x51, 0x29, 0x31, 0x15, 0x43, 0x00, 0x01, 0x00, 0x34,
-
2813  0xff, 0xa4, 0x01, 0x9f, 0x02, 0xc0, 0x00, 0x2b, 0x00, 0x19, 0x40, 0x0a,
-
2814  0x0c, 0x20, 0x20, 0x23, 0x23, 0x01, 0x15, 0x16, 0x02, 0x01, 0x00, 0x2f,
-
2815  0x33, 0x2f, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x12, 0x39, 0x30, 0x31, 0x57,
-
2816  0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x27, 0x34, 0x36, 0x36, 0x37,
-
2817  0x2e, 0x02, 0x35, 0x37, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16,
-
2818  0x16, 0x15, 0x07, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06,
-
2819  0x06, 0x15, 0x17, 0x16, 0x06, 0x06, 0x5d, 0x28, 0x37, 0x2b, 0x34, 0x18,
-
2820  0x03, 0x13, 0x25, 0x1a, 0x1b, 0x26, 0x13, 0x02, 0x2b, 0x2c, 0x55, 0x43,
-
2821  0x3d, 0x53, 0x2c, 0x02, 0x13, 0x27, 0x1c, 0x18, 0x19, 0x1a, 0x26, 0x13,
-
2822  0x03, 0x03, 0x31, 0x63, 0x5c, 0x43, 0x15, 0x31, 0x29, 0x51, 0x29, 0x3d,
-
2823  0x29, 0x0a, 0x0d, 0x29, 0x38, 0x23, 0x4b, 0x30, 0x31, 0x43, 0x27, 0x4e,
-
2824  0x3a, 0x4c, 0x24, 0x2c, 0x14, 0x42, 0x11, 0x2e, 0x2a, 0x61, 0x46, 0x4d,
-
2825  0x1e, 0x00, 0x00, 0x01, 0x00, 0x7e, 0xff, 0xa7, 0x01, 0xa6, 0x02, 0x9e,
-
2826  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x32,
-
2827  0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15,
-
2828  0x7e, 0x01, 0x27, 0xd8, 0xd9, 0x59, 0x02, 0xf7, 0x47, 0xfd, 0x94, 0x44,
-
2829  0x00, 0x01, 0x00, 0x7f, 0xff, 0xa7, 0x01, 0xa7, 0x02, 0x9e, 0x00, 0x07,
-
2830  0x00, 0x0c, 0xb3, 0x05, 0x06, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x2f, 0x33,
-
2831  0x30, 0x31, 0x45, 0x21, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x01, 0xa7,
-
2832  0xfe, 0xd8, 0xd9, 0xd8, 0x01, 0x27, 0x59, 0x44, 0x02, 0x6c, 0x47, 0x00,
-
2833  0x00, 0x01, 0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x00, 0x03,
-
2834  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
-
2835  0x21, 0x15, 0x6d, 0x01, 0x1c, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
-
2836  0x00, 0x6d, 0x01, 0x16, 0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31,
-
2837  0x00, 0x00, 0x00, 0x01, 0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62,
-
2838  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
2839  0x53, 0x35, 0x21, 0x15, 0x45, 0x01, 0x6d, 0x01, 0x16, 0x4c, 0x4c, 0x00,
-
2840  0x00, 0x01, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62, 0x00, 0x03,
-
2841  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35,
-
2842  0x21, 0x15, 0x0a, 0x01, 0xe0, 0x01, 0x16, 0x4c, 0x4c, 0x00, 0xff, 0xff,
-
2843  0x00, 0x45, 0x01, 0x16, 0x01, 0xb2, 0x01, 0x62, 0x06, 0x06, 0x02, 0x33,
-
2844  0x00, 0x00, 0xff, 0xff, 0x00, 0x0a, 0x01, 0x16, 0x01, 0xea, 0x01, 0x62,
-
2845  0x06, 0x06, 0x02, 0x34, 0x00, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
-
2846  0x01, 0x89, 0x01, 0x62, 0x06, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x01,
-
2847  0x00, 0x22, 0xff, 0xa9, 0x01, 0xd3, 0xff, 0xf0, 0x00, 0x03, 0x00, 0x08,
-
2848  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x57, 0x35, 0x21, 0x15,
-
2849  0x22, 0x01, 0xb1, 0x57, 0x47, 0x47, 0xff, 0xff, 0x00, 0x9f, 0xff, 0x52,
-
2850  0x01, 0x37, 0x00, 0x6e, 0x06, 0x07, 0x02, 0x3e, 0x00, 0x00, 0xfd, 0xec,
-
2851  0x00, 0x02, 0x00, 0x36, 0xff, 0x52, 0x01, 0xa0, 0x00, 0x6e, 0x00, 0x13,
-
2852  0x00, 0x27, 0x00, 0x14, 0xb7, 0x15, 0x14, 0x14, 0x01, 0x00, 0xc0, 0x21,
-
2853  0x0d, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
-
2854  0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33,
-
2855  0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x27, 0x3e, 0x02, 0x35, 0x34,
-
2856  0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
-
2857  0x60, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d, 0x1b, 0x2d,
-
2858  0x18, 0x31, 0xad, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f, 0x24, 0x1d,
-
2859  0x1b, 0x2d, 0x18, 0x31, 0xae, 0x25, 0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11,
-
2860  0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30, 0x26, 0x1c, 0x3f, 0x44, 0x27, 0x25,
-
2861  0x12, 0x25, 0x24, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1a, 0x25, 0x30,
-
2862  0x26, 0x1c, 0x3f, 0x44, 0x00, 0x02, 0x00, 0x4a, 0x01, 0x66, 0x01, 0xaf,
-
2863  0x02, 0x81, 0x00, 0x13, 0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x15, 0x14,
-
2864  0x14, 0x21, 0x0d, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a,
-
2865  0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x0e, 0x02, 0x15,
-
2866  0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36,
-
2867  0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06,
-
2868  0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0xb9, 0x29, 0x12, 0x1d, 0x11,
-
2869  0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0xf1, 0x29, 0x12,
-
2870  0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x32, 0x02,
-
2871  0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
-
2872  0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x25, 0x25, 0x11, 0x26, 0x22, 0x0e,
-
2873  0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45,
-
2874  0x00, 0x02, 0x00, 0x4d, 0x01, 0x66, 0x01, 0xb2, 0x02, 0x81, 0x00, 0x13,
-
2875  0x00, 0x27, 0x00, 0x17, 0x40, 0x0a, 0x01, 0x00, 0x00, 0x15, 0x14, 0xc0,
-
2876  0x0d, 0x21, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x1a, 0xcc, 0x32, 0x32, 0x11,
-
2877  0x33, 0x30, 0x31, 0x41, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35,
-
2878  0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3e,
-
2879  0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2880  0x14, 0x06, 0x06, 0x01, 0x43, 0x29, 0x13, 0x1c, 0x11, 0x0f, 0x14, 0x0e,
-
2881  0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0xf2, 0x29, 0x13, 0x1c, 0x11, 0x0f,
-
2882  0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x01, 0x66, 0x25, 0x12,
-
2883  0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10, 0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26,
-
2884  0x1b, 0x40, 0x44, 0x26, 0x25, 0x12, 0x25, 0x23, 0x0d, 0x0c, 0x11, 0x10,
-
2885  0x15, 0x0e, 0x1b, 0x24, 0x30, 0x26, 0x1b, 0x40, 0x44, 0x00, 0x00, 0x01,
-
2886  0x00, 0xae, 0x01, 0x66, 0x01, 0x46, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e,
-
2887  0xb5, 0x01, 0x0d, 0xc0, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x33,
-
2888  0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14,
-
2889  0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x1d, 0x29, 0x12,
-
2890  0x1d, 0x11, 0x0f, 0x14, 0x0e, 0x23, 0x1d, 0x1c, 0x2d, 0x19, 0x31, 0x02,
-
2891  0x81, 0x25, 0x11, 0x26, 0x22, 0x0e, 0x0b, 0x12, 0x10, 0x15, 0x0e, 0x1b,
-
2892  0x24, 0x30, 0x26, 0x1c, 0x3f, 0x45, 0x00, 0x01, 0x00, 0x9f, 0x01, 0x66,
-
2893  0x01, 0x37, 0x02, 0x81, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0,
-
2894  0x0d, 0x03, 0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27,
-
2895  0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16,
-
2896  0x15, 0x14, 0x06, 0x06, 0xc9, 0x2a, 0x13, 0x1d, 0x11, 0x0f, 0x14, 0x0f,
-
2897  0x24, 0x1d, 0x1b, 0x2d, 0x18, 0x31, 0x01, 0x66, 0x25, 0x12, 0x25, 0x23,
-
2898  0x0e, 0x0b, 0x11, 0x11, 0x14, 0x0f, 0x1a, 0x24, 0x2f, 0x27, 0x1b, 0x3f,
-
2899  0x45, 0x00, 0x00, 0x02, 0x00, 0x40, 0x00, 0x38, 0x01, 0xc0, 0x01, 0x96,
-
2900  0x00, 0x06, 0x00, 0x0d, 0x00, 0x0c, 0xb3, 0x07, 0x0a, 0x03, 0x00, 0x00,
-
2901  0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x77, 0x27, 0x35, 0x37, 0x17, 0x07,
-
2902  0x17, 0x17, 0x27, 0x35, 0x37, 0x17, 0x07, 0x17, 0xe1, 0xa1, 0x9c, 0x2b,
-
2903  0x78, 0x7f, 0x84, 0xa1, 0x9b, 0x2d, 0x7a, 0x81, 0x38, 0xad, 0x1a, 0x97,
-
2904  0x2d, 0x78, 0x8d, 0x2c, 0xad, 0x1a, 0x97, 0x2e, 0x77, 0x8c, 0x00, 0x02,
-
2905  0x00, 0x46, 0x00, 0x38, 0x01, 0xc6, 0x01, 0x96, 0x00, 0x06, 0x00, 0x0d,
-
2906  0x00, 0x0c, 0xb3, 0x07, 0x0b, 0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
-
2907  0x30, 0x31, 0x65, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0x05, 0x27, 0x37,
-
2908  0x27, 0x37, 0x17, 0x15, 0x01, 0x25, 0x2d, 0x7f, 0x78, 0x2b, 0x9c, 0xfe,
-
2909  0xae, 0x2e, 0x81, 0x7a, 0x2d, 0x9b, 0x38, 0x2c, 0x8d, 0x78, 0x2d, 0x97,
-
2910  0x1a, 0xad, 0x2d, 0x8c, 0x77, 0x2e, 0x97, 0x1a, 0x00, 0x01, 0x00, 0x89,
-
2911  0x00, 0x37, 0x01, 0x5c, 0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x03,
-
2912  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x65, 0x27, 0x35, 0x37, 0x17, 0x07,
-
2913  0x17, 0x01, 0x2a, 0xa1, 0x9c, 0x30, 0x76, 0x7d, 0x37, 0xad, 0x1a, 0x97,
-
2914  0x32, 0x73, 0x88, 0x00, 0x00, 0x01, 0x00, 0x8a, 0x00, 0x37, 0x01, 0x5d,
-
2915  0x01, 0x95, 0x00, 0x06, 0x00, 0x08, 0xb1, 0x04, 0x00, 0x00, 0x2f, 0x2f,
-
2916  0x30, 0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x15, 0xbc, 0x32, 0x7d,
-
2917  0x76, 0x30, 0x9c, 0x37, 0x31, 0x88, 0x73, 0x32, 0x97, 0x1a, 0xff, 0xff,
-
2918  0x00, 0x82, 0x01, 0x97, 0x01, 0x72, 0x02, 0x99, 0x04, 0x26, 0x02, 0x44,
-
2919  0xb4, 0x00, 0x00, 0x06, 0x02, 0x44, 0x4c, 0x00, 0x00, 0x01, 0x00, 0xce,
-
2920  0x01, 0x97, 0x01, 0x26, 0x02, 0x99, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x07,
-
2921  0x00, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x33, 0x14, 0x0e, 0x02, 0x07,
-
2922  0x23, 0x2e, 0x03, 0xce, 0x58, 0x02, 0x06, 0x06, 0x03, 0x36, 0x03, 0x06,
-
2923  0x06, 0x02, 0x02, 0x99, 0x3c, 0x48, 0x31, 0x2d, 0x20, 0x20, 0x2d, 0x30,
-
2924  0x49, 0x00, 0xff, 0xff, 0x00, 0x6b, 0x01, 0x95, 0x01, 0x8c, 0x02, 0x9b,
-
2925  0x04, 0x26, 0x02, 0x46, 0xa4, 0x00, 0x00, 0x06, 0x02, 0x46, 0x48, 0x00,
-
2926  0x00, 0x01, 0x00, 0xc7, 0x01, 0x95, 0x01, 0x44, 0x02, 0x9b, 0x00, 0x0f,
-
2927  0x00, 0x0a, 0xb2, 0x01, 0x00, 0x09, 0x00, 0x2f, 0xcd, 0x32, 0x30, 0x31,
-
2928  0x41, 0x27, 0x3e, 0x02, 0x34, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
2929  0x14, 0x06, 0x06, 0x01, 0x09, 0x42, 0x0b, 0x0a, 0x03, 0x1a, 0x18, 0x18,
-
2930  0x1b, 0x0d, 0x19, 0x01, 0x95, 0x12, 0x22, 0x34, 0x29, 0x26, 0x14, 0x1e,
-
2931  0x1d, 0x1b, 0x1e, 0x17, 0x36, 0x49, 0x00, 0x02, 0x00, 0x29, 0x00, 0x17,
-
2932  0x03, 0xac, 0x02, 0x65, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c,
-
2933  0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x08, 0x08, 0x01, 0x00, 0x07,
-
2934  0x00, 0x2f, 0x33, 0x32, 0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30,
-
2935  0x31, 0x65, 0x35, 0x25, 0x25, 0x35, 0x01, 0x15, 0x05, 0x35, 0x21, 0x15,
-
2936  0x01, 0xab, 0x01, 0x9a, 0xfe, 0x66, 0x02, 0x01, 0xfc, 0x7d, 0x02, 0x57,
-
2937  0x17, 0x53, 0xd7, 0xd2, 0x52, 0xfe, 0xf9, 0x3b, 0x06, 0x47, 0x47, 0x00,
-
2938  0x00, 0x04, 0x00, 0x2d, 0xff, 0x84, 0x05, 0xaf, 0x02, 0x4e, 0x00, 0x03,
-
2939  0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x29, 0x40, 0x12, 0x01, 0x00,
-
2940  0x00, 0x0c, 0x0c, 0x0d, 0x0d, 0x08, 0x03, 0x02, 0x02, 0x05, 0x05, 0x04,
-
2941  0x04, 0x09, 0x09, 0x08, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11,
-
2942  0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f, 0x32, 0x30,
-
2943  0x31, 0x45, 0x27, 0x01, 0x17, 0x05, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21,
-
2944  0x15, 0x05, 0x35, 0x21, 0x15, 0x02, 0x6d, 0x3c, 0x01, 0x3c, 0x3d, 0xfc,
-
2945  0x83, 0x05, 0x82, 0xfb, 0x28, 0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x7c,
-
2946  0x1d, 0x02, 0xad, 0x1f, 0xad, 0x45, 0x45, 0xbf, 0x45, 0x45, 0xbe, 0x45,
-
2947  0x45, 0x00, 0x00, 0x02, 0x00, 0x26, 0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3,
-
2948  0x00, 0x03, 0x00, 0x2d, 0x00, 0x15, 0x40, 0x0a, 0x25, 0x00, 0x2d, 0x0d,
-
2949  0x72, 0x1b, 0x01, 0x0f, 0x05, 0x72, 0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd,
-
2950  0x33, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x2e, 0x02, 0x35,
-
2951  0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07, 0x07, 0x27, 0x36, 0x26,
-
2952  0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x33,
-
2953  0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0xf5, 0x40, 0x1a, 0x33,
-
2954  0x59, 0x43, 0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40,
-
2955  0x09, 0x03, 0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17,
-
2956  0x19, 0x2c, 0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e,
-
2957  0x47, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53, 0x49, 0x6d,
-
2958  0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e, 0x0e, 0x1f,
-
2959  0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10, 0x22, 0x17,
-
2960  0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x32, 0xff, 0xb7, 0x01, 0xcc,
-
2961  0x02, 0x6f, 0x00, 0x03, 0x00, 0x2c, 0x00, 0x19, 0x40, 0x0a, 0x24, 0x2c,
-
2962  0x00, 0x00, 0x2c, 0x1a, 0x0e, 0x02, 0x02, 0x0e, 0x00, 0x2f, 0x33, 0x2f,
-
2963  0x11, 0x33, 0x2f, 0x33, 0x2f, 0x11, 0x33, 0x30, 0x31, 0x45, 0x23, 0x13,
-
2964  0x33, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16,
-
2965  0x17, 0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e,
-
2966  0x02, 0x15, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06,
-
2967  0x06, 0x23, 0x01, 0x01, 0x43, 0x5f, 0x40, 0x42, 0x33, 0x55, 0x3e, 0x23,
-
2968  0x23, 0x3e, 0x55, 0x32, 0x3b, 0x5b, 0x1c, 0x33, 0x06, 0x06, 0x06, 0x0c,
-
2969  0x15, 0x31, 0x20, 0x1b, 0x32, 0x27, 0x17, 0x17, 0x28, 0x37, 0x1f, 0x16,
-
2970  0x2a, 0x26, 0x10, 0x31, 0x23, 0x58, 0x30, 0x49, 0x02, 0xb8, 0xfd, 0xb1,
-
2971  0x24, 0x40, 0x57, 0x34, 0x33, 0x58, 0x41, 0x25, 0x2e, 0x28, 0x35, 0x07,
-
2972  0x06, 0x08, 0x0f, 0x0c, 0x13, 0x0f, 0x17, 0x2b, 0x3e, 0x26, 0x26, 0x3d,
-
2973  0x2d, 0x19, 0x0c, 0x19, 0x13, 0x38, 0x26, 0x24, 0x00, 0x03, 0x00, 0x26,
-
2974  0xff, 0xb9, 0x01, 0xd9, 0x02, 0xa3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x31,
-
2975  0x00, 0x19, 0x40, 0x0c, 0x07, 0x03, 0x29, 0x31, 0x0d, 0x72, 0x01, 0x05,
-
2976  0x1f, 0x13, 0x05, 0x72, 0x00, 0x2b, 0x32, 0xce, 0x32, 0x2b, 0x32, 0xce,
-
2977  0x32, 0x30, 0x31, 0x57, 0x13, 0x33, 0x03, 0x23, 0x13, 0x33, 0x03, 0x37,
-
2978  0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17, 0x07,
-
2979  0x07, 0x27, 0x36, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
2980  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23,
-
2981  0xad, 0xc8, 0x27, 0xc8, 0x6d, 0xc8, 0x26, 0xc8, 0x8e, 0x33, 0x59, 0x43,
-
2982  0x26, 0x1c, 0x31, 0x3f, 0x45, 0x23, 0x45, 0x61, 0x19, 0x40, 0x09, 0x03,
-
2983  0x02, 0x06, 0x08, 0x18, 0x33, 0x1c, 0x23, 0x3c, 0x2c, 0x17, 0x19, 0x2c,
-
2984  0x3b, 0x22, 0x19, 0x2d, 0x26, 0x0e, 0x3c, 0x1f, 0x58, 0x3e, 0x47, 0x02,
-
2985  0xea, 0xfd, 0x16, 0x02, 0xea, 0xfd, 0x16, 0x3d, 0x25, 0x4e, 0x78, 0x53,
-
2986  0x49, 0x6d, 0x4b, 0x2c, 0x14, 0x42, 0x38, 0x25, 0x04, 0x07, 0x08, 0x0e,
-
2987  0x0e, 0x1f, 0x16, 0x21, 0x40, 0x5d, 0x3b, 0x39, 0x5d, 0x42, 0x24, 0x10,
-
2988  0x22, 0x17, 0x2a, 0x34, 0x32, 0x00, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xa0,
-
2989  0x01, 0xb5, 0x02, 0x14, 0x00, 0x23, 0x00, 0x33, 0x00, 0x0c, 0xb3, 0x24,
-
2990  0x20, 0x2c, 0x0e, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x27,
-
2991  0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x36,
-
2992  0x33, 0x32, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x16, 0x15, 0x14, 0x06,
-
2993  0x07, 0x17, 0x07, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x32,
-
2994  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
2995  0x16, 0x16, 0x6c, 0x2d, 0x37, 0x0c, 0x0e, 0x0d, 0x0e, 0x38, 0x2d, 0x38,
-
2996  0x13, 0x2d, 0x17, 0x16, 0x2b, 0x14, 0x38, 0x2d, 0x37, 0x0e, 0x0d, 0x0d,
-
2997  0x0e, 0x37, 0x2d, 0x37, 0x13, 0x2c, 0x17, 0x18, 0x2c, 0x14, 0x57, 0x1e,
-
2998  0x29, 0x15, 0x15, 0x29, 0x1e, 0x1d, 0x29, 0x15, 0x15, 0x29, 0xa0, 0x2b,
-
2999  0x38, 0x14, 0x2c, 0x16, 0x17, 0x2c, 0x14, 0x39, 0x2b, 0x38, 0x0d, 0x0d,
-
3000  0x0c, 0x0d, 0x37, 0x2b, 0x37, 0x15, 0x2c, 0x18, 0x18, 0x2c, 0x14, 0x36,
-
3001  0x2b, 0x36, 0x0d, 0x0d, 0x0e, 0x0d, 0x24, 0x1a, 0x2b, 0x19, 0x1a, 0x2a,
-
3002  0x1b, 0x1b, 0x2a, 0x1a, 0x19, 0x2b, 0x1a, 0x00, 0x00, 0x03, 0x00, 0x39,
-
3003  0xff, 0xd2, 0x01, 0xd0, 0x02, 0x8b, 0x00, 0x36, 0x00, 0x3f, 0x00, 0x48,
-
3004  0x00, 0x42, 0x40, 0x26, 0x2c, 0x41, 0x41, 0x16, 0x23, 0x24, 0x24, 0x3b,
-
3005  0x31, 0x3f, 0x0e, 0x2d, 0x40, 0x12, 0x45, 0x08, 0x01, 0x1f, 0x17, 0x0f,
-
3006  0x16, 0x1f, 0x16, 0x7f, 0x16, 0x03, 0x16, 0x04, 0x05, 0x06, 0x06, 0x37,
-
3007  0x0d, 0x0d, 0x35, 0x00, 0x01, 0x0c, 0x00, 0x3f, 0xcd, 0x33, 0x33, 0x11,
-
3008  0x33, 0x33, 0x11, 0x33, 0x3f, 0x5d, 0xcd, 0x33, 0x12, 0x17, 0x39, 0x33,
-
3009  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x2e, 0x02,
-
3010  0x27, 0x37, 0x16, 0x16, 0x17, 0x1e, 0x02, 0x17, 0x35, 0x2e, 0x02, 0x35,
-
3011  0x34, 0x36, 0x36, 0x37, 0x35, 0x33, 0x16, 0x14, 0x15, 0x14, 0x06, 0x07,
-
3012  0x15, 0x1e, 0x02, 0x17, 0x07, 0x26, 0x26, 0x27, 0x2e, 0x03, 0x27, 0x15,
-
3013  0x1e, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x15, 0x37, 0x3e, 0x02, 0x35,
-
3014  0x34, 0x26, 0x26, 0x27, 0x27, 0x35, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16,
-
3015  0xea, 0x23, 0x40, 0x37, 0x17, 0x2e, 0x06, 0x01, 0x04, 0x10, 0x25, 0x2b,
-
3016  0x17, 0x34, 0x46, 0x24, 0x2a, 0x48, 0x2d, 0x43, 0x02, 0x06, 0x01, 0x1f,
-
3017  0x36, 0x2f, 0x12, 0x2e, 0x07, 0x02, 0x05, 0x08, 0x13, 0x17, 0x19, 0x0e,
-
3018  0x3a, 0x49, 0x24, 0x29, 0x4b, 0x34, 0x01, 0x1d, 0x29, 0x16, 0x13, 0x29,
-
3019  0x20, 0x40, 0x1a, 0x25, 0x14, 0x13, 0x25, 0x2e, 0x3b, 0x03, 0x13, 0x22,
-
3020  0x17, 0x45, 0x03, 0x10, 0x05, 0x10, 0x18, 0x0e, 0x03, 0xcf, 0x12, 0x2d,
-
3021  0x3a, 0x26, 0x26, 0x3d, 0x28, 0x06, 0x3c, 0x01, 0x02, 0x01, 0x03, 0x0a,
-
3022  0x08, 0x22, 0x03, 0x14, 0x20, 0x16, 0x3a, 0x01, 0x10, 0x04, 0x09, 0x10,
-
3023  0x0a, 0x09, 0x02, 0xb5, 0x13, 0x2b, 0x39, 0x2b, 0x25, 0x48, 0x33, 0x07,
-
3024  0x3c, 0x80, 0x05, 0x1d, 0x28, 0x15, 0x16, 0x20, 0x1a, 0x0a, 0x63, 0x9f,
-
3025  0x03, 0x15, 0x1e, 0x12, 0x12, 0x1f, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x42,
-
3026  0x00, 0x00, 0x01, 0xc0, 0x02, 0x80, 0x00, 0x03, 0x00, 0x25, 0x00, 0x37,
-
3027  0x00, 0x3b, 0x00, 0x25, 0x40, 0x10, 0x13, 0x38, 0x38, 0x3b, 0x3b, 0x2e,
-
3028  0x0e, 0x0e, 0x37, 0x1d, 0x1d, 0x25, 0x80, 0x00, 0x03, 0x0c, 0x00, 0x3f,
-
3029  0x33, 0x1a, 0xcc, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x7c, 0x2f,
-
3030  0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x21, 0x15, 0x21, 0x37, 0x22, 0x2e,
-
3031  0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x35, 0x33,
-
3032  0x33, 0x15, 0x06, 0x15, 0x11, 0x14, 0x16, 0x17, 0x23, 0x2e, 0x02, 0x35,
-
3033  0x0e, 0x02, 0x23, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3034  0x22, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x03, 0x21, 0x15, 0x21,
-
3035  0x5b, 0x01, 0x49, 0xfe, 0xb7, 0x7f, 0x1d, 0x36, 0x2b, 0x1a, 0x1a, 0x2c,
-
3036  0x37, 0x1d, 0x18, 0x27, 0x1e, 0x09, 0x41, 0x07, 0x07, 0x02, 0x06, 0x43,
-
3037  0x04, 0x03, 0x01, 0x0b, 0x1f, 0x26, 0x16, 0x0b, 0x20, 0x27, 0x12, 0x14,
-
3038  0x28, 0x21, 0x16, 0x23, 0x17, 0x0c, 0x17, 0x2b, 0x1e, 0x35, 0x01, 0x10,
-
3039  0xfe, 0xf0, 0x39, 0x39, 0x64, 0x18, 0x30, 0x49, 0x31, 0x31, 0x48, 0x2f,
-
3040  0x16, 0x0e, 0x19, 0x12, 0xd5, 0x07, 0x07, 0x16, 0xfe, 0x47, 0x0d, 0x1c,
-
3041  0x0d, 0x09, 0x11, 0x10, 0x09, 0x12, 0x1b, 0x0f, 0x39, 0x24, 0x3d, 0x27,
-
3042  0x29, 0x3d, 0x23, 0x13, 0x22, 0x2f, 0x1d, 0x2c, 0x40, 0x24, 0x01, 0xa1,
-
3043  0x3a, 0x00, 0x00, 0x01, 0x00, 0x1c, 0xff, 0xf4, 0x01, 0xd5, 0x02, 0x75,
-
3044  0x00, 0x37, 0x00, 0x2f, 0x40, 0x17, 0x22, 0x0e, 0x0e, 0x25, 0x0b, 0x2c,
-
3045  0x04, 0x04, 0x29, 0x07, 0x0b, 0x07, 0x0b, 0x07, 0x00, 0x1d, 0x13, 0x05,
-
3046  0x72, 0x30, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39,
-
3047  0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x33, 0x11,
-
3048  0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, 0x37, 0x33, 0x34,
-
3049  0x34, 0x36, 0x37, 0x23, 0x37, 0x33, 0x3e, 0x03, 0x33, 0x32, 0x16, 0x17,
-
3050  0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e, 0x02, 0x07, 0x33, 0x07, 0x23, 0x06,
-
3051  0x06, 0x14, 0x15, 0x33, 0x07, 0x23, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36,
-
3052  0x37, 0x17, 0x06, 0x06, 0x01, 0x41, 0x3b, 0x61, 0x42, 0x0b, 0x3c, 0x10,
-
3053  0x25, 0x01, 0x01, 0x36, 0x0f, 0x32, 0x0c, 0x30, 0x40, 0x49, 0x25, 0x2a,
-
3054  0x47, 0x1c, 0x1c, 0x09, 0x0b, 0x0d, 0x16, 0x22, 0x1c, 0x1a, 0x30, 0x2a,
-
3055  0x1e, 0x08, 0xf3, 0x19, 0xe4, 0x01, 0x01, 0xcb, 0x1a, 0xaa, 0x0a, 0x2c,
-
3056  0x42, 0x28, 0x14, 0x26, 0x22, 0x0f, 0x23, 0x1f, 0x48, 0x0c, 0x32, 0x64,
-
3057  0x48, 0x45, 0x09, 0x19, 0x1a, 0x0a, 0x45, 0x3a, 0x50, 0x32, 0x17, 0x1d,
-
3058  0x1e, 0x4c, 0x05, 0x11, 0x13, 0x10, 0x0a, 0x12, 0x22, 0x36, 0x25, 0x45,
-
3059  0x0a, 0x13, 0x18, 0x11, 0x45, 0x32, 0x44, 0x22, 0x0a, 0x14, 0x0f, 0x3c,
-
3060  0x1c, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0xff, 0x51, 0x01, 0xe4, 0x02, 0xa3,
-
3061  0x00, 0x2e, 0x00, 0x1f, 0x40, 0x0f, 0x2a, 0x0f, 0x0f, 0x27, 0x10, 0x10,
-
3062  0x00, 0x22, 0x16, 0x01, 0x72, 0x09, 0x00, 0x0f, 0x72, 0x00, 0x2b, 0x32,
-
3063  0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x57,
-
3064  0x22, 0x26, 0x27, 0x37, 0x1e, 0x03, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13,
-
3065  0x23, 0x35, 0x33, 0x37, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x22,
-
3066  0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x07, 0x07, 0x33, 0x15,
-
3067  0x23, 0x03, 0x0e, 0x02, 0x67, 0x1a, 0x2b, 0x13, 0x2e, 0x03, 0x05, 0x07,
-
3068  0x11, 0x11, 0x12, 0x19, 0x11, 0x03, 0x16, 0x76, 0x7a, 0x07, 0x06, 0x29,
-
3069  0x44, 0x2d, 0x23, 0x3b, 0x18, 0x24, 0x06, 0x03, 0x02, 0x02, 0x0d, 0x12,
-
3070  0x16, 0x0c, 0x16, 0x22, 0x16, 0x04, 0x05, 0x77, 0x7d, 0x18, 0x06, 0x2a,
-
3071  0x3f, 0xaf, 0x14, 0x14, 0x48, 0x01, 0x0b, 0x0d, 0x09, 0x1d, 0x39, 0x28,
-
3072  0x01, 0x23, 0x44, 0x58, 0x45, 0x58, 0x2a, 0x1d, 0x1c, 0x4a, 0x06, 0x06,
-
3073  0x0c, 0x12, 0x0e, 0x07, 0x18, 0x3d, 0x38, 0x4e, 0x44, 0xfe, 0xda, 0x48,
-
3074  0x59, 0x28, 0xff, 0xff, 0x00, 0x13, 0x00, 0x00, 0x01, 0xbb, 0x02, 0x70,
-
3075  0x06, 0x26, 0x00, 0x42, 0x00, 0x00, 0x01, 0x07, 0x03, 0x91, 0xff, 0x9c,
-
3076  0xff, 0x74, 0x00, 0x0b, 0xb6, 0x01, 0x0a, 0x00, 0x01, 0x01, 0x92, 0x56,
-
3077  0x00, 0x2b, 0x34, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xb9, 0x01, 0xce,
-
3078  0x02, 0xa3, 0x00, 0x03, 0x00, 0x2f, 0x00, 0x1d, 0x40, 0x0e, 0x2a, 0x2b,
-
3079  0x2b, 0x04, 0x1a, 0x01, 0x0e, 0x05, 0x72, 0x24, 0x00, 0x04, 0x0d, 0x72,
-
3080  0x00, 0x2b, 0xcd, 0x33, 0x2b, 0xcd, 0x33, 0x12, 0x39, 0x2f, 0x33, 0x30,
-
3081  0x31, 0x57, 0x11, 0x33, 0x11, 0x27, 0x22, 0x26, 0x26, 0x35, 0x26, 0x3e,
-
3082  0x03, 0x33, 0x32, 0x1e, 0x02, 0x17, 0x07, 0x2e, 0x04, 0x23, 0x22, 0x0e,
-
3083  0x03, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x35, 0x23,
-
3084  0x35, 0x33, 0x15, 0x06, 0x06, 0xe2, 0x3f, 0x0e, 0x4d, 0x6e, 0x3a, 0x01,
-
3085  0x20, 0x36, 0x3f, 0x40, 0x1a, 0x2a, 0x3e, 0x2c, 0x20, 0x0d, 0x2e, 0x06,
-
3086  0x0a, 0x11, 0x1e, 0x30, 0x25, 0x16, 0x2d, 0x27, 0x1e, 0x11, 0x2a, 0x49,
-
3087  0x2e, 0x13, 0x25, 0x24, 0x10, 0x38, 0x87, 0x2d, 0x5d, 0x47, 0x02, 0xea,
-
3088  0xfd, 0x16, 0x3a, 0x50, 0x91, 0x5f, 0x50, 0x71, 0x4a, 0x2a, 0x11, 0x10,
-
3089  0x1d, 0x28, 0x1a, 0x35, 0x02, 0x15, 0x1b, 0x19, 0x11, 0x0f, 0x23, 0x38,
-
3090  0x52, 0x36, 0x53, 0x74, 0x3d, 0x08, 0x10, 0x0b, 0x8a, 0x48, 0xfa, 0x21,
-
3091  0x22, 0x00, 0x00, 0x03, 0x00, 0x0b, 0xff, 0xfc, 0x01, 0xee, 0x02, 0x74,
-
3092  0x00, 0x03, 0x00, 0x07, 0x00, 0x1d, 0x00, 0x28, 0x40, 0x13, 0x02, 0x03,
-
3093  0x03, 0x05, 0x1b, 0x13, 0x0c, 0x08, 0x09, 0x04, 0x04, 0x0b, 0x1a, 0x0c,
-
3094  0x04, 0x72, 0x1c, 0x0b, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x12, 0x39,
-
3095  0x2f, 0x39, 0x39, 0x12, 0x39, 0x39, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
3096  0x53, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x17, 0x07, 0x15, 0x23,
-
3097  0x11, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x13, 0x1e, 0x03, 0x33,
-
3098  0x33, 0x03, 0x13, 0x07, 0xc9, 0xff, 0xfe, 0x43, 0x55, 0x5e, 0x2f, 0x57,
-
3099  0x56, 0x0a, 0x06, 0x03, 0xf3, 0x06, 0x0f, 0x0f, 0x10, 0x07, 0x22, 0xe3,
-
3100  0xf2, 0x67, 0x01, 0x45, 0x37, 0x37, 0x37, 0x37, 0x17, 0x36, 0xf8, 0x02,
-
3101  0x6f, 0x08, 0x06, 0x0e, 0x11, 0xe7, 0x01, 0x19, 0x01, 0x02, 0x01, 0x01,
-
3102  0xfe, 0xf6, 0xfe, 0x9b, 0x04, 0x00, 0xff, 0xff, 0x00, 0x24, 0xff, 0xf1,
-
3103  0x01, 0xd8, 0x02, 0x70, 0x06, 0x06, 0x02, 0x64, 0x00, 0x00, 0x00, 0x03,
-
3104  0x00, 0x19, 0x00, 0x00, 0x01, 0xc9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07,
-
3105  0x00, 0x1b, 0x00, 0x30, 0x40, 0x16, 0x02, 0x03, 0x03, 0x01, 0x00, 0x07,
-
3106  0x06, 0x06, 0x04, 0x05, 0x00, 0x00, 0x05, 0x08, 0x09, 0x04, 0x72, 0x15,
-
3107  0x15, 0x0f, 0x08, 0x0c, 0x00, 0x3f, 0x33, 0x33, 0x2f, 0x2b, 0x12, 0x39,
-
3108  0x39, 0x2f, 0x7d, 0x2f, 0x33, 0x33, 0x18, 0x2f, 0x33, 0x11, 0x33, 0x33,
-
3109  0x2f, 0x33, 0x30, 0x31, 0x53, 0x35, 0x25, 0x15, 0x05, 0x35, 0x25, 0x15,
-
3110  0x01, 0x11, 0x33, 0x14, 0x06, 0x06, 0x15, 0x11, 0x32, 0x3e, 0x03, 0x35,
-
3111  0x33, 0x14, 0x0e, 0x02, 0x23, 0x19, 0x01, 0x55, 0xfe, 0xab, 0x01, 0x55,
-
3112  0xfe, 0xfc, 0x5f, 0x04, 0x04, 0x1e, 0x3a, 0x30, 0x24, 0x15, 0x47, 0x23,
-
3113  0x44, 0x62, 0x3f, 0x01, 0x6f, 0x3f, 0x78, 0x3f, 0xec, 0x3f, 0x78, 0x3f,
-
3114  0xfe, 0x8d, 0x02, 0x6f, 0x06, 0x08, 0x0a, 0x0a, 0xfd, 0xfb, 0x08, 0x14,
-
3115  0x24, 0x38, 0x27, 0x37, 0x57, 0x3a, 0x1f, 0x00, 0x00, 0x02, 0x00, 0x2e,
-
3116  0x00, 0x00, 0x01, 0xc9, 0x02, 0x9c, 0x00, 0x03, 0x00, 0x1d, 0x00, 0x17,
-
3117  0x40, 0x09, 0x00, 0x00, 0x04, 0x19, 0x19, 0x09, 0x0f, 0x01, 0x04, 0x00,
-
3118  0x2f, 0xcd, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x39, 0x2f, 0x30, 0x31, 0x77,
-
3119  0x11, 0x33, 0x11, 0x03, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34,
-
3120  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x16, 0x16, 0x15,
-
3121  0x23, 0x11, 0x34, 0x36, 0x36, 0xd6, 0x49, 0x25, 0x3f, 0x5d, 0x33, 0x4b,
-
3122  0x18, 0x3a, 0x31, 0x30, 0x39, 0x18, 0x04, 0x03, 0x53, 0x2e, 0x5b, 0x60,
-
3123  0x02, 0x3c, 0xfd, 0xc4, 0x01, 0xf3, 0x32, 0x66, 0x50, 0xfe, 0x95, 0x01,
-
3124  0x6c, 0x32, 0x48, 0x27, 0x27, 0x46, 0x31, 0xfe, 0xb2, 0x0a, 0x0a, 0x08,
-
3125  0x05, 0x01, 0x6e, 0x49, 0x66, 0x36, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00,
-
3126  0x01, 0xe9, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x12, 0x00, 0x21, 0x40, 0x10,
-
3127  0x03, 0x01, 0x06, 0x12, 0x10, 0x00, 0x00, 0x04, 0x0f, 0x12, 0x0c, 0x72,
-
3128  0x07, 0x04, 0x04, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f,
-
3129  0x39, 0x12, 0x39, 0x33, 0x33, 0x30, 0x31, 0x53, 0x21, 0x15, 0x21, 0x13,
-
3130  0x33, 0x13, 0x03, 0x33, 0x33, 0x15, 0x06, 0x06, 0x15, 0x11, 0x23, 0x03,
-
3131  0x11, 0x23, 0x0e, 0x01, 0xdb, 0xfe, 0x25, 0x33, 0x4c, 0xdd, 0x02, 0x45,
-
3132  0x09, 0x05, 0x03, 0x40, 0xe7, 0x46, 0x01, 0x4a, 0x33, 0x01, 0x58, 0xfe,
-
3133  0x43, 0x01, 0xbd, 0x08, 0x06, 0x0e, 0x11, 0xfd, 0xbe, 0x01, 0xd8, 0xfe,
-
3134  0x28, 0x00, 0x00, 0x05, 0x00, 0x2f, 0xff, 0xf2, 0x01, 0xea, 0x02, 0x6f,
-
3135  0x00, 0x0c, 0x00, 0x28, 0x00, 0x2c, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x39,
-
3136  0x40, 0x1b, 0x54, 0x48, 0x2d, 0x39, 0x2d, 0x16, 0x16, 0x29, 0x29, 0x2c,
-
3137  0x2c, 0x21, 0x21, 0x0d, 0x28, 0x0d, 0x28, 0x0c, 0x61, 0x2d, 0x0d, 0x2d,
-
3138  0x0c, 0x0c, 0x6b, 0x00, 0x04, 0x00, 0x3f, 0x32, 0x3f, 0x33, 0x3f, 0x33,
-
3139  0x11, 0x33, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x7c,
-
3140  0x2f, 0x11, 0x33, 0x18, 0x10, 0xc4, 0x32, 0x30, 0x31, 0x53, 0x33, 0x32,
-
3141  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x23, 0x17, 0x22,
-
3142  0x26, 0x26, 0x3f, 0x02, 0x35, 0x37, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15,
-
3143  0x07, 0x07, 0x06, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06,
-
3144  0x23, 0x03, 0x33, 0x07, 0x23, 0x05, 0x22, 0x26, 0x27, 0x37, 0x37, 0x17,
-
3145  0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
3146  0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
-
3147  0x07, 0x07, 0x27, 0x34, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15,
-
3148  0x14, 0x16, 0x17, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23, 0x01, 0x32, 0x36,
-
3149  0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x15, 0x2f, 0x52, 0x34, 0x42,
-
3150  0x20, 0x21, 0x40, 0x30, 0x17, 0x40, 0xcd, 0x1f, 0x25, 0x0e, 0x02, 0x06,
-
3151  0x01, 0x37, 0x0a, 0x01, 0x04, 0x07, 0x01, 0x04, 0x01, 0x04, 0x0e, 0x0e,
-
3152  0x0d, 0x19, 0x0f, 0x13, 0x12, 0x28, 0x16, 0x76, 0x9f, 0x08, 0x9e, 0x01,
-
3153  0x07, 0x20, 0x37, 0x16, 0x1c, 0x04, 0x06, 0x03, 0x05, 0x09, 0x0b, 0x19,
-
3154  0x11, 0x0f, 0x15, 0x0a, 0x09, 0x15, 0x14, 0x27, 0x2e, 0x17, 0x28, 0x19,
-
3155  0x20, 0x2f, 0x14, 0x1e, 0x06, 0x06, 0x07, 0x0a, 0x09, 0x11, 0x0b, 0x13,
-
3156  0x11, 0x17, 0x1d, 0x1e, 0x25, 0x10, 0x36, 0x2e, 0xfe, 0xf8, 0x20, 0x26,
-
3157  0x12, 0x12, 0x26, 0x1f, 0x10, 0x02, 0x6f, 0x2a, 0x44, 0x28, 0x2d, 0x47,
-
3158  0x2a, 0xfe, 0xc5, 0x0c, 0x1c, 0x38, 0x2d, 0x77, 0x08, 0x3d, 0x0a, 0x02,
-
3159  0x08, 0x07, 0x0f, 0x11, 0x19, 0x08, 0x73, 0x20, 0x24, 0x0e, 0x10, 0x0e,
-
3160  0x30, 0x11, 0x11, 0x01, 0x10, 0x34, 0xde, 0x18, 0x17, 0x35, 0x09, 0x03,
-
3161  0x08, 0x10, 0x0c, 0x09, 0x08, 0x08, 0x0c, 0x08, 0x09, 0x0e, 0x0e, 0x06,
-
3162  0x0d, 0x25, 0x21, 0x17, 0x20, 0x11, 0x14, 0x18, 0x29, 0x08, 0x04, 0x08,
-
3163  0x0c, 0x0b, 0x05, 0x05, 0x0d, 0x0a, 0x0b, 0x10, 0x0b, 0x0b, 0x17, 0x1c,
-
3164  0x14, 0x26, 0x32, 0x01, 0x80, 0x18, 0x2e, 0x1f, 0x1a, 0x29, 0x1a, 0xc2,
-
3165  0x00, 0x04, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x6f, 0x00, 0x07,
-
3166  0x00, 0x0f, 0x00, 0x1d, 0x00, 0x28, 0x00, 0x25, 0x40, 0x10, 0x1c, 0x1e,
-
3167  0x40, 0x08, 0x09, 0x80, 0x00, 0x01, 0x01, 0x28, 0x28, 0x11, 0x04, 0x72,
-
3168  0x10, 0x0c, 0x00, 0x3f, 0x2b, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x33, 0x1a,
-
3169  0x18, 0xde, 0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
-
3170  0x15, 0x23, 0x27, 0x21, 0x07, 0x07, 0x35, 0x21, 0x15, 0x23, 0x27, 0x21,
-
3171  0x07, 0x03, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23,
-
3172  0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3173  0x23, 0x0d, 0x01, 0xe5, 0x56, 0x0e, 0xfe, 0xe0, 0x0c, 0x55, 0x01, 0xe5,
-
3174  0x54, 0x10, 0xfe, 0xdb, 0x0c, 0x27, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30,
-
3175  0x4a, 0x33, 0x7b, 0x73, 0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01,
-
3176  0xce, 0x29, 0x29, 0x01, 0x01, 0x4d, 0x29, 0x29, 0x01, 0x01, 0xfe, 0x7f,
-
3177  0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b, 0xfe, 0xf2, 0x01,
-
3178  0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x00, 0x04, 0x00, 0x12,
-
3179  0x00, 0x00, 0x01, 0xd7, 0x02, 0x6f, 0x00, 0x03, 0x00, 0x07, 0x00, 0x15,
-
3180  0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x04, 0x05, 0x02, 0x03, 0x03, 0x16,
-
3181  0x14, 0x14, 0x08, 0x20, 0x09, 0x04, 0x72, 0x08, 0x0c, 0x00, 0x3f, 0x2b,
-
3182  0x32, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0xcc, 0x32, 0x30, 0x31,
-
3183  0x53, 0x35, 0x33, 0x15, 0x07, 0x35, 0x21, 0x15, 0x07, 0x11, 0x33, 0x32,
-
3184  0x16, 0x16, 0x15, 0x14, 0x0e, 0x02, 0x23, 0x23, 0x11, 0x11, 0x33, 0x32,
-
3185  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x12, 0x62, 0x62, 0x01,
-
3186  0x1a, 0xeb, 0xcd, 0x46, 0x59, 0x2a, 0x17, 0x30, 0x4a, 0x33, 0x7b, 0x73,
-
3187  0x29, 0x34, 0x19, 0x19, 0x34, 0x28, 0x74, 0x01, 0x0e, 0x49, 0x49, 0x80,
-
3188  0x48, 0x48, 0x8e, 0x02, 0x6f, 0x31, 0x50, 0x31, 0x25, 0x3f, 0x30, 0x1b,
-
3189  0xfe, 0xf2, 0x01, 0x57, 0x19, 0x2e, 0x1d, 0x1d, 0x2e, 0x1c, 0x00, 0x03,
-
3190  0x00, 0x34, 0x00, 0x00, 0x01, 0xcc, 0x02, 0x6f, 0x00, 0x18, 0x00, 0x1c,
-
3191  0x00, 0x20, 0x00, 0x20, 0x40, 0x0f, 0x14, 0x18, 0x18, 0x00, 0x1e, 0x80,
-
3192  0x09, 0x19, 0x19, 0x0c, 0x1a, 0x04, 0x72, 0x16, 0x0c, 0x00, 0x3f, 0x2b,
-
3193  0x32, 0x32, 0x11, 0x33, 0x1a, 0xde, 0xcc, 0x32, 0x11, 0x33, 0x30, 0x31,
-
3194  0x53, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35,
-
3195  0x17, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x13, 0x23, 0x03,
-
3196  0x23, 0x03, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x35, 0x83, 0x29,
-
3197  0x33, 0x18, 0x18, 0x33, 0x29, 0x84, 0x7c, 0x4b, 0x5d, 0x2b, 0x1f, 0x38,
-
3198  0x26, 0x91, 0x5e, 0x87, 0x7d, 0x01, 0x01, 0x98, 0xfe, 0x68, 0x01, 0x98,
-
3199  0x01, 0x54, 0x1a, 0x2e, 0x1e, 0x1f, 0x30, 0x1c, 0x4a, 0x21, 0x27, 0x47,
-
3200  0x30, 0x22, 0x41, 0x30, 0x09, 0xfe, 0xec, 0x01, 0x0d, 0x01, 0x23, 0x3f,
-
3201  0x3f, 0x98, 0x40, 0x40, 0x00, 0x01, 0x00, 0x24, 0xff, 0xf1, 0x01, 0xd8,
-
3202  0x02, 0x70, 0x00, 0x3d, 0x00, 0x2b, 0x40, 0x16, 0x0b, 0x20, 0x20, 0x08,
-
3203  0x23, 0x23, 0x12, 0x2f, 0x36, 0x0d, 0x72, 0x19, 0x12, 0x04, 0x72, 0x2a,
-
3204  0x3b, 0x3b, 0x01, 0x00, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x11, 0x33,
-
3205  0x2b, 0x32, 0x2b, 0x32, 0x11, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
-
3206  0x31, 0x57, 0x27, 0x3e, 0x02, 0x35, 0x34, 0x26, 0x27, 0x23, 0x35, 0x33,
-
3207  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26,
-
3208  0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x33, 0x15, 0x23,
-
3209  0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x36, 0x1e, 0x02, 0x33, 0x32,
-
3210  0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06,
-
3211  0x42, 0x1e, 0x29, 0x2e, 0x15, 0x06, 0x08, 0x41, 0x32, 0x03, 0x03, 0x30,
-
3212  0x52, 0x30, 0x27, 0x42, 0x1d, 0x31, 0x10, 0x29, 0x2a, 0x19, 0x26, 0x15,
-
3213  0x03, 0x04, 0x80, 0x71, 0x07, 0x05, 0x07, 0x0f, 0x0b, 0x19, 0x2f, 0x2c,
-
3214  0x2c, 0x15, 0x12, 0x23, 0x13, 0x1d, 0x1b, 0x35, 0x1c, 0x0f, 0x2c, 0x34,
-
3215  0x31, 0x15, 0x18, 0x39, 0x0a, 0x43, 0x14, 0x28, 0x3b, 0x2f, 0x12, 0x2e,
-
3216  0x1d, 0x44, 0x10, 0x1d, 0x0e, 0x38, 0x50, 0x2d, 0x1b, 0x1b, 0x3e, 0x14,
-
3217  0x1d, 0x1c, 0x32, 0x23, 0x0c, 0x1d, 0x13, 0x44, 0x1a, 0x2e, 0x13, 0x18,
-
3218  0x2c, 0x28, 0x13, 0x03, 0x0b, 0x11, 0x0d, 0x0f, 0x0f, 0x3d, 0x16, 0x16,
-
3219  0x0e, 0x11, 0x0e, 0x14, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x00, 0x01, 0xe9,
-
3220  0x02, 0x6f, 0x00, 0x03, 0x00, 0x10, 0x00, 0x26, 0x40, 0x12, 0x01, 0x0f,
-
3221  0x05, 0x07, 0x0a, 0x04, 0x00, 0x00, 0x04, 0x0b, 0x08, 0x08, 0x05, 0x04,
-
3222  0x72, 0x0e, 0x04, 0x0c, 0x00, 0x3f, 0x33, 0x2b, 0x32, 0x2f, 0x32, 0x11,
-
3223  0x39, 0x2f, 0x12, 0x39, 0x39, 0x12, 0x39, 0x33, 0x30, 0x31, 0x53, 0x35,
-
3224  0x21, 0x15, 0x01, 0x03, 0x33, 0x13, 0x13, 0x33, 0x13, 0x13, 0x33, 0x03,
-
3225  0x23, 0x03, 0x03, 0x0e, 0x01, 0xdb, 0xfe, 0x8e, 0x54, 0x44, 0x35, 0x54,
-
3226  0x1f, 0x55, 0x2c, 0x3f, 0x54, 0x25, 0x5a, 0x5e, 0x01, 0x1e, 0x2c, 0x2c,
-
3227  0xfe, 0xe2, 0x02, 0x6f, 0xfe, 0x65, 0x01, 0x6c, 0xfe, 0x93, 0x01, 0x9c,
-
3228  0xfd, 0x91, 0x01, 0x8f, 0xfe, 0x71, 0x00, 0x05, 0x00, 0x1e, 0x00, 0x00,
-
3229  0x01, 0xd8, 0x02, 0x70, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
3230  0x00, 0x18, 0x00, 0x35, 0x40, 0x1a, 0x07, 0x01, 0x01, 0x04, 0x02, 0x0f,
-
3231  0x09, 0x09, 0x0c, 0x0a, 0x12, 0x18, 0x15, 0x03, 0x13, 0x02, 0x0a, 0x02,
-
3232  0x0a, 0x11, 0x16, 0x13, 0x04, 0x72, 0x11, 0x0c, 0x00, 0x3f, 0x2b, 0x32,
-
3233  0x12, 0x39, 0x39, 0x2f, 0x7c, 0x2f, 0x12, 0x17, 0x39, 0x11, 0x33, 0x33,
-
3234  0x11, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x23, 0x35,
-
3235  0x3b, 0x02, 0x15, 0x23, 0x07, 0x23, 0x35, 0x3b, 0x02, 0x15, 0x23, 0x17,
-
3236  0x23, 0x11, 0x03, 0x33, 0x17, 0x37, 0x33, 0x03, 0xe8, 0x97, 0x96, 0x35,
-
3237  0x91, 0x91, 0x34, 0x97, 0x97, 0x34, 0x91, 0x91, 0x0f, 0x52, 0xbb, 0x5d,
-
3238  0x88, 0x7c, 0x59, 0xad, 0xdb, 0x3c, 0x3c, 0x76, 0x3b, 0x3b, 0x65, 0x01,
-
3239  0x23, 0x01, 0x4d, 0xfd, 0xfc, 0xfe, 0xb6, 0x00, 0x00, 0x01, 0x00, 0x26,
-
3240  0x00, 0x83, 0x01, 0xce, 0x02, 0x27, 0x00, 0x0e, 0x00, 0x1b, 0x40, 0x0f,
-
3241  0x02, 0x05, 0x08, 0x0e, 0x0b, 0x03, 0x04, 0x0a, 0x09, 0x09, 0x06, 0x0d,
-
3242  0x00, 0x00, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30,
-
3243  0x31, 0x77, 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17,
-
3244  0x07, 0x17, 0x07, 0x27, 0x90, 0x42, 0x7f, 0xa7, 0x1e, 0x9b, 0x12, 0x60,
-
3245  0x15, 0x97, 0x1f, 0xa6, 0x7b, 0x43, 0x66, 0x83, 0x35, 0x90, 0x32, 0x4d,
-
3246  0x4b, 0xab, 0xab, 0x46, 0x49, 0x30, 0x91, 0x34, 0xa1, 0x00, 0x00, 0x01,
-
3247  0x00, 0x84, 0x00, 0x9b, 0x01, 0x6f, 0x01, 0x7e, 0x00, 0x0f, 0x00, 0x08,
-
3248  0xb1, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x26, 0x26,
-
3249  0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06,
-
3250  0xf9, 0x20, 0x35, 0x20, 0x21, 0x35, 0x1f, 0x1e, 0x36, 0x22, 0x20, 0x36,
-
3251  0x9b, 0x1e, 0x34, 0x20, 0x20, 0x33, 0x1e, 0x1e, 0x33, 0x20, 0x1f, 0x34,
-
3252  0x1f, 0x00, 0x00, 0x01, 0x00, 0x33, 0xff, 0x65, 0x01, 0xb7, 0x03, 0x0c,
-
3253  0x00, 0x03, 0x00, 0x0c, 0xb3, 0x03, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
3254  0x2f, 0x33, 0x30, 0x31, 0x57, 0x27, 0x01, 0x17, 0x6f, 0x3c, 0x01, 0x48,
-
3255  0x3c, 0x9b, 0x15, 0x03, 0x92, 0x16, 0x00, 0x02, 0x00, 0x27, 0x00, 0x00,
-
3256  0x01, 0xc0, 0x01, 0xc9, 0x00, 0x15, 0x00, 0x19, 0x00, 0x14, 0xb6, 0x18,
-
3257  0x19, 0x19, 0x0b, 0x08, 0x13, 0x00, 0x00, 0x2f, 0x32, 0x7c, 0x2f, 0x33,
-
3258  0x39, 0x18, 0x2f, 0x33, 0x30, 0x31, 0x61, 0x22, 0x26, 0x26, 0x35, 0x34,
-
3259  0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
3260  0x16, 0x33, 0x33, 0x15, 0x25, 0x27, 0x21, 0x15, 0x01, 0x11, 0x48, 0x69,
-
3261  0x39, 0x3b, 0x68, 0x45, 0xb1, 0xa1, 0x41, 0x59, 0x2d, 0x2b, 0x58, 0x44,
-
3262  0xa1, 0xfe, 0x85, 0x01, 0x01, 0x7c, 0x36, 0x66, 0x45, 0x46, 0x68, 0x3a,
-
3263  0x30, 0x2a, 0x51, 0x3d, 0x3c, 0x4f, 0x26, 0x30, 0xca, 0x30, 0x30, 0x00,
-
3264  0xff, 0xff, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb, 0x01, 0x65, 0x06, 0x06,
-
3265  0x02, 0x6d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x00, 0x68, 0x01, 0xcb,
-
3266  0x02, 0x0d, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x05, 0x04, 0x04, 0x0a,
-
3267  0x00, 0xc0, 0x01, 0x00, 0x2f, 0x1a, 0xcd, 0x33, 0x33, 0x10, 0xcd, 0x33,
-
3268  0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15,
-
3269  0x23, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8, 0xa8, 0x68, 0xb7, 0x46, 0xa8,
-
3270  0xa8, 0x46, 0xb7, 0x00, 0x00, 0x01, 0x00, 0x2b, 0x01, 0x1f, 0x01, 0xcb,
-
3271  0x01, 0x65, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
3272  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x2b, 0x01, 0xa0, 0x01, 0x1f, 0x46,
-
3273  0x46, 0x00, 0x00, 0x01, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
-
3274  0x00, 0x0b, 0x00, 0x16, 0x40, 0x0a, 0x01, 0x04, 0x0a, 0x07, 0x04, 0x02,
-
3275  0x08, 0x06, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x12, 0x17, 0x39,
-
3276  0x30, 0x31, 0x65, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17,
-
3277  0x07, 0x17, 0x01, 0x7a, 0x7c, 0x7a, 0x34, 0x7b, 0x7b, 0x37, 0x79, 0x7a,
-
3278  0x39, 0x7f, 0x7c, 0x90, 0x82, 0x7e, 0x34, 0x80, 0x82, 0x36, 0x80, 0x7f,
-
3279  0x33, 0x83, 0x83, 0x00, 0x00, 0x03, 0x00, 0x44, 0x00, 0x64, 0x01, 0xb2,
-
3280  0x02, 0x0e, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x17, 0x40, 0x09,
-
3281  0x10, 0x16, 0x01, 0x80, 0x0a, 0x04, 0x04, 0x00, 0x01, 0x00, 0x2f, 0x33,
-
3282  0x33, 0x2f, 0x33, 0x1a, 0x10, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21,
-
3283  0x15, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
3284  0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
3285  0x06, 0x44, 0x01, 0x6e, 0xb3, 0x14, 0x1c, 0x1d, 0x13, 0x15, 0x1c, 0x1c,
-
3286  0x14, 0x14, 0x1e, 0x1f, 0x13, 0x13, 0x1d, 0x1c, 0x01, 0x13, 0x4e, 0x4e,
-
3287  0x99, 0x1c, 0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0xfe, 0xb8, 0x1c,
-
3288  0x14, 0x15, 0x1d, 0x1e, 0x14, 0x14, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x2c,
-
3289  0x00, 0xb1, 0x01, 0xca, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e,
-
3290  0xb4, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33,
-
3291  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2c, 0x01,
-
3292  0x9e, 0xfe, 0x62, 0x01, 0x9e, 0x01, 0x81, 0x46, 0x46, 0xd0, 0x46, 0x46,
-
3293  0x00, 0x03, 0x00, 0x2c, 0x00, 0x1c, 0x01, 0xca, 0x02, 0x5d, 0x00, 0x03,
-
3294  0x00, 0x07, 0x00, 0x0b, 0x00, 0x21, 0x40, 0x0e, 0x03, 0x02, 0x02, 0x08,
-
3295  0x08, 0x09, 0x09, 0x04, 0x01, 0x00, 0x00, 0x05, 0x05, 0x04, 0x00, 0x2f,
-
3296  0x33, 0x11, 0x33, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x2f,
-
3297  0x33, 0x30, 0x31, 0x41, 0x17, 0x01, 0x27, 0x03, 0x35, 0x21, 0x15, 0x05,
-
3298  0x35, 0x21, 0x15, 0x01, 0x80, 0x31, 0xfe, 0xc4, 0x31, 0x18, 0x01, 0x9e,
-
3299  0xfe, 0x62, 0x01, 0x9e, 0x02, 0x5d, 0x1d, 0xfd, 0xdc, 0x1b, 0x01, 0x4a,
-
3300  0x46, 0x46, 0xd0, 0x46, 0x46, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x2b,
-
3301  0x01, 0xd4, 0x02, 0x3c, 0x00, 0x06, 0x00, 0x12, 0xb7, 0x06, 0x02, 0x05,
-
3302  0x03, 0x03, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39,
-
3303  0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x27, 0x01, 0x52,
-
3304  0xfe, 0xb0, 0x01, 0xab, 0x2b, 0x57, 0xbe, 0xaa, 0x52, 0xe1, 0x34, 0x00,
-
3305  0x00, 0x01, 0x00, 0x22, 0x00, 0x2b, 0x01, 0xcf, 0x02, 0x3c, 0x00, 0x06,
-
3306  0x00, 0x12, 0xb7, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x06, 0x00, 0x00,
-
3307  0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25,
-
3308  0x15, 0x05, 0x05, 0x01, 0xcf, 0xfe, 0x53, 0x01, 0xaa, 0xfe, 0xb0, 0x01,
-
3309  0x53, 0x2b, 0xfc, 0x34, 0xe1, 0x52, 0xaa, 0xbd, 0x00, 0x02, 0x00, 0x1f,
-
3310  0x00, 0x13, 0x01, 0xcb, 0x02, 0x25, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b,
-
3311  0x40, 0x0c, 0x06, 0x02, 0x05, 0x03, 0x03, 0x04, 0x04, 0x01, 0x00, 0x80,
-
3312  0x09, 0x08, 0x00, 0x2f, 0x33, 0x1a, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x17,
-
3313  0x39, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x03, 0x21,
-
3314  0x35, 0x21, 0x1f, 0x01, 0x50, 0xfe, 0xb0, 0x01, 0xac, 0x0c, 0xfe, 0x61,
-
3315  0x01, 0x9f, 0x76, 0x4d, 0x91, 0x80, 0x51, 0xb6, 0x33, 0xfe, 0xd7, 0x45,
-
3316  0x00, 0x02, 0x00, 0x22, 0x00, 0x13, 0x01, 0xcd, 0x02, 0x25, 0x00, 0x06,
-
3317  0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03, 0x04, 0x03,
-
3318  0x03, 0x06, 0x00, 0x80, 0x08, 0x07, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32,
-
3319  0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15,
-
3320  0x0d, 0x02, 0x35, 0x21, 0x15, 0x01, 0xcd, 0xfe, 0x55, 0x01, 0xab, 0xfe,
-
3321  0xb0, 0x01, 0x50, 0xfe, 0x60, 0x01, 0xa0, 0x76, 0xc6, 0x33, 0xb6, 0x51,
-
3322  0x80, 0x91, 0xb0, 0x45, 0x45, 0x00, 0x00, 0x02, 0x00, 0x2b, 0x00, 0x0c,
-
3323  0x01, 0xcb, 0x02, 0x40, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3324  0x07, 0x05, 0x04, 0x04, 0x01, 0x0c, 0x0d, 0x0d, 0x00, 0xc0, 0x0a, 0x01,
-
3325  0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x32, 0x2f, 0x33, 0x11, 0x33, 0x10, 0xcd,
-
3326  0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33,
-
3327  0x15, 0x23, 0x15, 0x07, 0x35, 0x21, 0x15, 0xd9, 0xae, 0xae, 0x4a, 0xa8,
-
3328  0xa8, 0xf7, 0x01, 0x9f, 0x9a, 0xb8, 0x46, 0xa8, 0xa8, 0x46, 0xb8, 0x8e,
-
3329  0x49, 0x49, 0xff, 0xff, 0x00, 0x3f, 0x00, 0xae, 0x01, 0xd0, 0x01, 0xd1,
-
3330  0x06, 0x26, 0x02, 0x78, 0x00, 0x54, 0x02, 0x06, 0x02, 0x78, 0x00, 0xaa,
-
3331  0x00, 0x01, 0x00, 0x3f, 0x01, 0x04, 0x01, 0xd0, 0x01, 0x7d, 0x00, 0x19,
-
3332  0x00, 0x1c, 0x40, 0x0c, 0x16, 0x15, 0x15, 0x05, 0x0d, 0x80, 0x09, 0x08,
-
3333  0x08, 0x12, 0x00, 0x12, 0x00, 0x3f, 0x32, 0x32, 0x11, 0x33, 0x1a, 0xcd,
-
3334  0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x22, 0x2e, 0x02, 0x23, 0x22,
-
3335  0x06, 0x07, 0x27, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
3336  0x37, 0x17, 0x0e, 0x02, 0x01, 0x5b, 0x1a, 0x28, 0x21, 0x20, 0x14, 0x18,
-
3337  0x24, 0x11, 0x38, 0x0c, 0x24, 0x31, 0x1f, 0x1a, 0x26, 0x21, 0x21, 0x14,
-
3338  0x16, 0x20, 0x12, 0x33, 0x11, 0x24, 0x28, 0x01, 0x04, 0x10, 0x16, 0x10,
-
3339  0x14, 0x1a, 0x21, 0x17, 0x24, 0x15, 0x10, 0x16, 0x10, 0x17, 0x1b, 0x28,
-
3340  0x1b, 0x22, 0x10, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x9c, 0x01, 0xa1,
-
3341  0x01, 0x61, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x02, 0x00, 0x03, 0x00, 0x2f,
-
3342  0xcc, 0x33, 0x30, 0x31, 0x65, 0x35, 0x23, 0x35, 0x21, 0x15, 0x01, 0x54,
-
3343  0xfc, 0x01, 0x49, 0x9c, 0x7c, 0x49, 0xc5, 0x00, 0x00, 0x01, 0x00, 0x56,
-
3344  0x01, 0x53, 0x01, 0x99, 0x02, 0x6f, 0x00, 0x06, 0x00, 0x17, 0x40, 0x0a,
-
3345  0x06, 0x00, 0x02, 0x02, 0x72, 0x04, 0x05, 0x05, 0x01, 0x00, 0x00, 0x2f,
-
3346  0x32, 0x32, 0x11, 0x33, 0x2b, 0x12, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37,
-
3347  0x33, 0x17, 0x07, 0x27, 0x94, 0x3e, 0x99, 0x21, 0x89, 0x40, 0x5d, 0x01,
-
3348  0x53, 0x1e, 0xfe, 0xfd, 0x1f, 0xa8, 0x00, 0x03, 0x00, 0x0c, 0x00, 0xac,
-
3349  0x01, 0xea, 0x01, 0xaf, 0x00, 0x1b, 0x00, 0x2a, 0x00, 0x3a, 0x00, 0x27,
-
3350  0x40, 0x12, 0x2f, 0x18, 0x18, 0x07, 0x33, 0x1c, 0x15, 0x04, 0x0a, 0x1f,
-
3351  0x12, 0x12, 0x0a, 0x37, 0x04, 0x04, 0x27, 0x0a, 0x00, 0x2f, 0x33, 0x33,
-
3352  0x11, 0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x12, 0x17, 0x39, 0x33, 0x11,
-
3353  0x33, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06,
-
3354  0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16,
-
3355  0x17, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x05, 0x26, 0x26, 0x23, 0x22,
-
3356  0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x34,
-
3357  0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x1e, 0x02, 0x33, 0x32, 0x36,
-
3358  0x36, 0x01, 0xea, 0x1f, 0x37, 0x24, 0x23, 0x3a, 0x19, 0x19, 0x39, 0x21,
-
3359  0x23, 0x37, 0x21, 0x20, 0x38, 0x23, 0x22, 0x3b, 0x18, 0x18, 0x38, 0x25,
-
3360  0x23, 0x37, 0x1f, 0xfe, 0xec, 0x12, 0x25, 0x15, 0x12, 0x1a, 0x0e, 0x0e,
-
3361  0x1a, 0x12, 0x11, 0x1a, 0x16, 0xdc, 0x0f, 0x19, 0x11, 0x0f, 0x1b, 0x17,
-
3362  0x0d, 0x0c, 0x19, 0x1a, 0x0e, 0x12, 0x1a, 0x0e, 0x01, 0x2d, 0x24, 0x3a,
-
3363  0x23, 0x24, 0x26, 0x24, 0x25, 0x21, 0x3a, 0x26, 0x25, 0x3a, 0x22, 0x20,
-
3364  0x29, 0x25, 0x24, 0x20, 0x3b, 0x26, 0x23, 0x1c, 0x10, 0x1c, 0x13, 0x11,
-
3365  0x1d, 0x10, 0x0f, 0x1c, 0x13, 0x12, 0x1d, 0x0f, 0x0d, 0x1c, 0x15, 0x15,
-
3366  0x1d, 0x0e, 0x11, 0x1d, 0x00, 0x03, 0x00, 0x0e, 0x00, 0x68, 0x01, 0xe8,
-
3367  0x02, 0x25, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2b, 0x00, 0x17, 0x40, 0x09,
-
3368  0x03, 0x02, 0x02, 0x22, 0x0e, 0x01, 0x00, 0x18, 0x04, 0x00, 0x2f, 0x33,
-
3369  0x33, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27, 0x01,
-
3370  0x17, 0x03, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
3371  0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
-
3372  0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x2f, 0x21, 0x01,
-
3373  0xba, 0x20, 0xee, 0x2d, 0x4f, 0x3d, 0x22, 0x22, 0x3d, 0x4f, 0x2d, 0x2d,
-
3374  0x50, 0x3d, 0x23, 0x23, 0x3d, 0x50, 0x2d, 0x21, 0x39, 0x2a, 0x19, 0x19,
-
3375  0x2a, 0x39, 0x21, 0x20, 0x39, 0x2a, 0x18, 0x18, 0x2a, 0x39, 0x68, 0x24,
-
3376  0x01, 0x99, 0x24, 0xfe, 0x69, 0x22, 0x3d, 0x50, 0x2d, 0x2d, 0x50, 0x3c,
-
3377  0x22, 0x22, 0x3c, 0x50, 0x2d, 0x2d, 0x50, 0x3d, 0x22, 0x3f, 0x19, 0x2b,
-
3378  0x39, 0x20, 0x20, 0x38, 0x2a, 0x19, 0x19, 0x2a, 0x38, 0x20, 0x20, 0x39,
-
3379  0x2b, 0x19, 0x00, 0x01, 0x00, 0x42, 0xff, 0x10, 0x01, 0xb6, 0x02, 0xf8,
-
3380  0x00, 0x1f, 0x00, 0x0c, 0xb3, 0x17, 0x10, 0x07, 0x00, 0x00, 0x2f, 0x32,
-
3381  0x2f, 0x33, 0x30, 0x31, 0x57, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33,
-
3382  0x32, 0x36, 0x36, 0x35, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17,
-
3383  0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x14, 0x06, 0x06,
-
3384  0x8e, 0x15, 0x25, 0x12, 0x0f, 0x20, 0x11, 0x19, 0x24, 0x13, 0x25, 0x46,
-
3385  0x32, 0x16, 0x23, 0x0e, 0x0e, 0x21, 0x0f, 0x19, 0x24, 0x13, 0x26, 0x46,
-
3386  0xf0, 0x07, 0x08, 0x48, 0x06, 0x08, 0x17, 0x33, 0x28, 0x02, 0x73, 0x40,
-
3387  0x52, 0x28, 0x08, 0x06, 0x48, 0x06, 0x07, 0x16, 0x35, 0x30, 0xfd, 0x8f,
-
3388  0x3d, 0x50, 0x26, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, 0x01, 0xe7,
-
3389  0x02, 0xa3, 0x00, 0x29, 0x00, 0x1f, 0x40, 0x0f, 0x00, 0x16, 0x01, 0x72,
-
3390  0x09, 0x22, 0x22, 0x1e, 0x1e, 0x21, 0x21, 0x0c, 0x0b, 0x12, 0x72, 0x00,
-
3391  0x2b, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2b, 0x32, 0x30,
-
3392  0x31, 0x53, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x15, 0x23,
-
3393  0x35, 0x33, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
3394  0x15, 0x14, 0x06, 0x06, 0x07, 0x33, 0x15, 0x23, 0x35, 0x3e, 0x02, 0x35,
-
3395  0x34, 0x26, 0x26, 0xff, 0x2f, 0x44, 0x25, 0x12, 0x21, 0x2b, 0x19, 0xbd,
-
3396  0x70, 0x1b, 0x2e, 0x21, 0x13, 0x39, 0x69, 0x49, 0x46, 0x68, 0x3a, 0x1f,
-
3397  0x38, 0x27, 0x71, 0xbe, 0x29, 0x35, 0x1a, 0x23, 0x43, 0x02, 0x50, 0x37,
-
3398  0x6a, 0x4f, 0x2e, 0x52, 0x45, 0x32, 0x10, 0x59, 0x4d, 0x15, 0x38, 0x4a,
-
3399  0x57, 0x32, 0x66, 0x8a, 0x46, 0x45, 0x8a, 0x68, 0x42, 0x6e, 0x53, 0x1c,
-
3400  0x4d, 0x59, 0x17, 0x4c, 0x67, 0x3d, 0x50, 0x6a, 0x36, 0x00, 0x00, 0x02,
-
3401  0x00, 0x1d, 0x00, 0x01, 0x01, 0xd6, 0x02, 0x9c, 0x00, 0x05, 0x00, 0x09,
-
3402  0x00, 0x19, 0x40, 0x0c, 0x04, 0x01, 0x09, 0x09, 0x07, 0x00, 0x03, 0x12,
-
3403  0x72, 0x00, 0x01, 0x72, 0x00, 0x2b, 0x2b, 0x11, 0x39, 0x32, 0x11, 0x33,
-
3404  0x33, 0x30, 0x31, 0x41, 0x13, 0x15, 0x21, 0x35, 0x13, 0x13, 0x03, 0x31,
-
3405  0x03, 0x01, 0x2f, 0xa7, 0xfe, 0x47, 0xa9, 0xb9, 0x84, 0x87, 0x02, 0x9c,
-
3406  0xfd, 0x98, 0x33, 0x34, 0x02, 0x67, 0xfd, 0xab, 0x02, 0x0f, 0xfd, 0xf1,
-
3407  0x00, 0x01, 0x00, 0x32, 0xff, 0x42, 0x01, 0xc4, 0x02, 0x6f, 0x00, 0x0b,
-
3408  0x00, 0x10, 0xb6, 0x08, 0x00, 0x0a, 0x01, 0x02, 0x72, 0x00, 0x00, 0x2f,
-
3409  0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x14, 0x06, 0x06,
-
3410  0x07, 0x11, 0x23, 0x11, 0x23, 0x11, 0x32, 0x01, 0x92, 0x03, 0x02, 0x01,
-
3411  0x56, 0xdf, 0xbe, 0x03, 0x2d, 0x05, 0x07, 0x08, 0x06, 0xfc, 0xed, 0x02,
-
3412  0xe8, 0xfd, 0x18, 0x00, 0x00, 0x01, 0x00, 0x20, 0xff, 0x55, 0x01, 0xd4,
-
3413  0x02, 0x9c, 0x00, 0x0d, 0x00, 0x1d, 0x40, 0x0c, 0x08, 0x03, 0x07, 0x07,
-
3414  0x09, 0x02, 0x04, 0x0a, 0x01, 0x0b, 0x0b, 0x00, 0x00, 0x2f, 0x32, 0x11,
-
3415  0x33, 0x33, 0x2f, 0x39, 0x39, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x57,
-
3416  0x35, 0x13, 0x03, 0x35, 0x21, 0x15, 0x21, 0x37, 0x13, 0x03, 0x27, 0x21,
-
3417  0x15, 0x20, 0xc5, 0xc3, 0x01, 0xad, 0xfe, 0x96, 0x17, 0xbf, 0xc7, 0x16,
-
3418  0x01, 0x76, 0xab, 0x3d, 0x01, 0x67, 0x01, 0x62, 0x41, 0x46, 0x08, 0xfe,
-
3419  0x9d, 0xfe, 0x99, 0x07, 0x46, 0x00, 0x00, 0x01, 0x00, 0x0b, 0xff, 0xf9,
-
3420  0x01, 0xeb, 0x02, 0xa3, 0x00, 0x08, 0x00, 0x10, 0xb6, 0x03, 0x02, 0x02,
-
3421  0x06, 0x00, 0x13, 0x72, 0x00, 0x2b, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
3422  0x57, 0x03, 0x23, 0x35, 0x33, 0x17, 0x13, 0x33, 0x03, 0xc9, 0x67, 0x57,
-
3423  0x86, 0x55, 0xbc, 0x49, 0xe4, 0x07, 0x01, 0x1b, 0x41, 0xee, 0x02, 0x3c,
-
3424  0xfd, 0x56, 0x00, 0x01, 0x00, 0x15, 0xff, 0x5d, 0x01, 0xee, 0x01, 0xcc,
-
3425  0x00, 0x32, 0x00, 0x1c, 0x40, 0x0e, 0x32, 0x2d, 0x0e, 0x0e, 0x29, 0x0b,
-
3426  0x72, 0x19, 0x21, 0x0b, 0x13, 0x07, 0x06, 0x72, 0x00, 0x2b, 0x32, 0x3f,
-
3427  0x33, 0x2b, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x57, 0x34, 0x3e, 0x03,
-
3428  0x35, 0x11, 0x33, 0x11, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35,
-
3429  0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x17,
-
3430  0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26,
-
3431  0x26, 0x27, 0x14, 0x14, 0x06, 0x06, 0x15, 0x15, 0x04, 0x05, 0x06, 0x04,
-
3432  0x51, 0x0e, 0x17, 0x1f, 0x12, 0x1d, 0x28, 0x14, 0x4f, 0x08, 0x10, 0x0c,
-
3433  0x0c, 0x1b, 0x06, 0x06, 0x20, 0x14, 0x2d, 0x1a, 0x13, 0x22, 0x16, 0x04,
-
3434  0x0a, 0x25, 0x2d, 0x18, 0x16, 0x2c, 0x22, 0x0a, 0x01, 0x01, 0xa3, 0x11,
-
3435  0x40, 0x52, 0x58, 0x52, 0x21, 0x01, 0x01, 0xfe, 0xed, 0x26, 0x33, 0x1d,
-
3436  0x0d, 0x21, 0x3c, 0x29, 0x01, 0x10, 0xfe, 0xab, 0x14, 0x1b, 0x0d, 0x16,
-
3437  0x0c, 0x0d, 0x3c, 0x1d, 0x1b, 0x13, 0x1f, 0x13, 0x17, 0x1e, 0x10, 0x0e,
-
3438  0x1d, 0x16, 0x19, 0x38, 0x38, 0x37, 0x1a, 0x00, 0x00, 0x02, 0x00, 0x1a,
-
3439  0xff, 0xf5, 0x01, 0xda, 0x02, 0x95, 0x00, 0x24, 0x00, 0x38, 0x00, 0x17,
-
3440  0x40, 0x0c, 0x14, 0x1b, 0x01, 0x72, 0x2f, 0x09, 0x06, 0x72, 0x25, 0x00,
-
3441  0x0b, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x2b, 0x32, 0x30, 0x31, 0x57,
-
3442  0x22, 0x26, 0x26, 0x27, 0x26, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17,
-
3443  0x36, 0x26, 0x27, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36,
-
3444  0x33, 0x32, 0x16, 0x16, 0x17, 0x16, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02,
-
3445  0x37, 0x2e, 0x03, 0x23, 0x22, 0x0e, 0x02, 0x17, 0x1e, 0x03, 0xe0, 0x3b,
-
3446  0x52, 0x2d, 0x06, 0x06, 0x14, 0x32, 0x55, 0x3b, 0x20, 0x33, 0x2c, 0x10,
-
3447  0x02, 0x03, 0x01, 0x05, 0x21, 0x3e, 0x32, 0x1b, 0x41, 0x19, 0x08, 0x1e,
-
3448  0x41, 0x1e, 0x4d, 0x63, 0x35, 0x08, 0x06, 0x08, 0x1e, 0x3a, 0x5b, 0x3d,
-
3449  0x28, 0x38, 0x24, 0x14, 0x03, 0x0b, 0x19, 0x1f, 0x21, 0x13, 0x29, 0x3a,
-
3450  0x22, 0x0c, 0x04, 0x03, 0x12, 0x1b, 0x24, 0x0b, 0x2f, 0x53, 0x34, 0x31,
-
3451  0x63, 0x52, 0x32, 0x12, 0x22, 0x1a, 0x0d, 0x1a, 0x0c, 0x32, 0x4f, 0x2c,
-
3452  0x0e, 0x0e, 0x43, 0x0e, 0x0b, 0x3d, 0x6f, 0x4b, 0x37, 0x76, 0x6e, 0x59,
-
3453  0x35, 0x40, 0x2c, 0x49, 0x57, 0x2c, 0x17, 0x22, 0x15, 0x0a, 0x29, 0x42,
-
3454  0x4d, 0x25, 0x1c, 0x2c, 0x1d, 0x0e, 0x00, 0x05, 0x00, 0x19, 0xff, 0xf6,
-
3455  0x01, 0xe3, 0x02, 0x7a, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33,
-
3456  0x00, 0x44, 0x00, 0x25, 0x40, 0x12, 0x34, 0x24, 0x24, 0x3d, 0x01, 0x01,
-
3457  0x2c, 0x05, 0x72, 0x1c, 0x0c, 0x0c, 0x14, 0x03, 0x03, 0x04, 0x0d, 0x72,
-
3458  0x00, 0x2b, 0x32, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x2f, 0x32,
-
3459  0x32, 0x2f, 0x33, 0x30, 0x31, 0x73, 0x01, 0x33, 0x01, 0x05, 0x22, 0x26,
-
3460  0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
-
3461  0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06,
-
3462  0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36,
-
3463  0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36,
-
3464  0x36, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
3465  0x16, 0x2a, 0x01, 0x5b, 0x42, 0xfe, 0xa2, 0x01, 0x09, 0x1f, 0x34, 0x20,
-
3466  0x20, 0x34, 0x1f, 0x1f, 0x34, 0x1e, 0x1e, 0x34, 0x1e, 0x0d, 0x16, 0x0d,
-
3467  0x0c, 0x16, 0x10, 0x0d, 0x16, 0x0e, 0x0e, 0x18, 0xdb, 0x1e, 0x34, 0x20,
-
3468  0x20, 0x34, 0x1e, 0x20, 0x33, 0x20, 0x1e, 0x34, 0x21, 0x0d, 0x15, 0x0d,
-
3469  0x08, 0x0d, 0x12, 0x09, 0x0c, 0x15, 0x0e, 0x0e, 0x15, 0x02, 0x6f, 0xfd,
-
3470  0x91, 0x0a, 0x22, 0x3c, 0x25, 0x25, 0x3b, 0x23, 0x24, 0x3b, 0x25, 0x24,
-
3471  0x3c, 0x22, 0x38, 0x11, 0x21, 0x18, 0x15, 0x22, 0x14, 0x10, 0x20, 0x1a,
-
3472  0x19, 0x22, 0x10, 0x01, 0x45, 0x22, 0x3c, 0x26, 0x25, 0x3b, 0x23, 0x23,
-
3473  0x3c, 0x25, 0x27, 0x3b, 0x21, 0x3a, 0x0f, 0x21, 0x1a, 0x13, 0x1c, 0x12,
-
3474  0x08, 0x0f, 0x20, 0x1a, 0x1a, 0x20, 0x10, 0x00, 0x00, 0x07, 0x00, 0x14,
-
3475  0xff, 0xf5, 0x01, 0xe0, 0x02, 0x79, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23,
-
3476  0x00, 0x33, 0x00, 0x43, 0x00, 0x53, 0x00, 0x63, 0x00, 0x35, 0x40, 0x1b,
-
3477  0x54, 0x44, 0x44, 0x03, 0x02, 0x02, 0x5c, 0x4c, 0x05, 0x72, 0x3c, 0x2c,
-
3478  0x2c, 0x34, 0x24, 0x0d, 0x72, 0x01, 0x00, 0x00, 0x1c, 0x0c, 0x0c, 0x14,
-
3479  0x04, 0x0d, 0x72, 0x00, 0x2b, 0x32, 0x32, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
3480  0x2b, 0x32, 0x32, 0x2f, 0x33, 0x2b, 0x32, 0x32, 0x11, 0x33, 0x32, 0x2f,
-
3481  0x33, 0x30, 0x31, 0x77, 0x35, 0x01, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35,
-
3482  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
3483  0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
3484  0x14, 0x16, 0x16, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
3485  0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35,
-
3486  0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03,
-
3487  0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15,
-
3488  0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23,
-
3489  0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x14, 0x01, 0xcc, 0xfe, 0xa1,
-
3490  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
-
3491  0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xfe,
-
3492  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1d, 0x2f, 0x1c, 0x1c, 0x2f, 0x1d,
-
3493  0x0b, 0x13, 0x0c, 0x0c, 0x14, 0x0c, 0x0a, 0x14, 0x0c, 0x0d, 0x14, 0xe9,
-
3494  0x1c, 0x30, 0x1c, 0x1c, 0x30, 0x1c, 0x1e, 0x2f, 0x1b, 0x1b, 0x2f, 0x1d,
-
3495  0x0a, 0x13, 0x0c, 0x0b, 0x14, 0x0c, 0x0b, 0x13, 0x0c, 0x0c, 0x15, 0xe1,
-
3496  0x3b, 0x01, 0x01, 0x3c, 0xfe, 0x14, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20,
-
3497  0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17, 0x17, 0x1c,
-
3498  0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x38, 0x20, 0x37, 0x23, 0x22,
-
3499  0x37, 0x20, 0x20, 0x37, 0x23, 0x22, 0x37, 0x20, 0x38, 0x0e, 0x1d, 0x17,
-
3500  0x17, 0x1c, 0x0f, 0x0e, 0x1c, 0x18, 0x17, 0x1e, 0x0d, 0x01, 0x59, 0x20,
-
3501  0x37, 0x23, 0x22, 0x37, 0x20, 0x21, 0x37, 0x22, 0x23, 0x37, 0x1f, 0x38,
-
3502  0x0d, 0x1d, 0x17, 0x17, 0x1d, 0x0e, 0x0d, 0x1c, 0x18, 0x18, 0x1d, 0x0d,
-
3503  0x00, 0x03, 0x00, 0x25, 0x00, 0x5f, 0x01, 0xce, 0x02, 0x09, 0x00, 0x13,
-
3504  0x00, 0x27, 0x00, 0x33, 0x00, 0x1a, 0x40, 0x0d, 0x33, 0x32, 0x29, 0x2c,
-
3505  0x2f, 0x2d, 0x06, 0x0a, 0x14, 0x00, 0x00, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
-
3506  0x33, 0x2f, 0x32, 0x11, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
-
3507  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
3508  0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02,
-
3509  0x15, 0x14, 0x1e, 0x02, 0x37, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
-
3510  0x33, 0x15, 0x23, 0x15, 0xf9, 0x2c, 0x4d, 0x3b, 0x20, 0x20, 0x3b, 0x4d,
-
3511  0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x22, 0x3c, 0x2e,
-
3512  0x1a, 0x1a, 0x2e, 0x3c, 0x22, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2e, 0x3c,
-
3513  0x0b, 0x6d, 0x6d, 0x31, 0x6a, 0x6a, 0x5f, 0x21, 0x3b, 0x4d, 0x2c, 0x2c,
-
3514  0x4d, 0x3b, 0x21, 0x21, 0x3b, 0x4d, 0x2c, 0x2c, 0x4d, 0x3b, 0x21, 0x2f,
-
3515  0x1a, 0x2e, 0x3d, 0x21, 0x22, 0x3b, 0x2e, 0x1a, 0x1a, 0x2e, 0x3b, 0x22,
-
3516  0x21, 0x3d, 0x2e, 0x1a, 0x1e, 0x73, 0x30, 0x69, 0x69, 0x30, 0x73, 0x00,
-
3517  0xff, 0xff, 0x00, 0x3f, 0x01, 0xcc, 0x01, 0xd0, 0x02, 0x45, 0x06, 0x07,
-
3518  0x02, 0x78, 0x00, 0x00, 0x00, 0xc8, 0xff, 0xff, 0x00, 0x58, 0x01, 0x77,
-
3519  0x01, 0x9c, 0x02, 0x93, 0x04, 0x06, 0x02, 0x7a, 0x02, 0x24, 0x00, 0x01,
-
3520  0x00, 0x30, 0x00, 0x05, 0x01, 0xc4, 0x02, 0x50, 0x00, 0x09, 0x00, 0x1d,
-
3521  0x40, 0x0c, 0x09, 0x06, 0x07, 0x07, 0x03, 0x02, 0x02, 0x04, 0x08, 0x01,
-
3522  0x01, 0x04, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
-
3523  0x11, 0x33, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x07, 0x27, 0x37, 0x33, 0x17,
-
3524  0x07, 0x27, 0x11, 0xd3, 0x6b, 0x38, 0xbe, 0x22, 0xb4, 0x3c, 0x64, 0x05,
-
3525  0x01, 0xb6, 0x86, 0x2f, 0xec, 0xee, 0x2d, 0x85, 0xfe, 0x4b, 0x00, 0x01,
-
3526  0x00, 0x0f, 0x00, 0x70, 0x01, 0xdb, 0x02, 0x37, 0x00, 0x09, 0x00, 0x16,
-
3527  0x40, 0x0c, 0x00, 0x07, 0x06, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
-
3528  0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x77, 0x01,
-
3529  0x07, 0x27, 0x25, 0x17, 0x03, 0x27, 0x37, 0x01, 0x0f, 0x01, 0x37, 0xaa,
-
3530  0x07, 0x01, 0x2d, 0x19, 0x29, 0x4b, 0x17, 0xfe, 0xcb, 0xaa, 0x01, 0x37,
-
3531  0x13, 0x48, 0x21, 0x18, 0xfe, 0xd8, 0x0b, 0xa5, 0xfe, 0xc9, 0x00, 0x01,
-
3532  0x00, 0x0f, 0x00, 0x5e, 0x01, 0xdb, 0x01, 0xf2, 0x00, 0x09, 0x00, 0x1b,
-
3533  0x40, 0x0b, 0x06, 0x07, 0x07, 0x09, 0x03, 0x02, 0x02, 0x04, 0x00, 0x05,
-
3534  0x09, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3535  0x33, 0x30, 0x31, 0x53, 0x21, 0x27, 0x37, 0x17, 0x15, 0x07, 0x27, 0x37,
-
3536  0x21, 0x0f, 0x01, 0x37, 0x86, 0x2e, 0xed, 0xee, 0x2d, 0x85, 0xfe, 0xca,
-
3537  0x01, 0x4f, 0x6c, 0x37, 0xbd, 0x23, 0xb4, 0x3c, 0x65, 0x00, 0x00, 0x01,
-
3538  0x00, 0x0f, 0x00, 0x20, 0x01, 0xdb, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
-
3539  0x40, 0x0c, 0x00, 0x03, 0x04, 0x07, 0x08, 0x09, 0x02, 0x05, 0x08, 0x01,
-
3540  0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x37,
-
3541  0x01, 0x27, 0x37, 0x13, 0x07, 0x25, 0x37, 0x17, 0x0f, 0x3a, 0x01, 0x35,
-
3542  0x17, 0x4b, 0x29, 0x19, 0xfe, 0xd3, 0x07, 0xaa, 0x01, 0xad, 0x3a, 0xfe,
-
3543  0xc9, 0xa5, 0x0b, 0xfe, 0xd8, 0x18, 0x21, 0x48, 0x13, 0x00, 0x00, 0x01,
-
3544  0x00, 0x30, 0x00, 0x12, 0x01, 0xc4, 0x02, 0x5d, 0x00, 0x09, 0x00, 0x1d,
-
3545  0x40, 0x0c, 0x02, 0x09, 0x09, 0x05, 0x07, 0x08, 0x08, 0x04, 0x03, 0x03,
-
3546  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x11,
-
3547  0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x37, 0x17, 0x07, 0x23,
-
3548  0x27, 0x37, 0x17, 0xd3, 0x51, 0x64, 0x3c, 0xb4, 0x22, 0xbe, 0x38, 0x6b,
-
3549  0x02, 0x5d, 0xfe, 0x4b, 0x85, 0x2d, 0xee, 0xec, 0x2f, 0x86, 0x00, 0x01,
-
3550  0x00, 0x0d, 0x00, 0x20, 0x01, 0xd9, 0x01, 0xe7, 0x00, 0x09, 0x00, 0x16,
-
3551  0x40, 0x0c, 0x00, 0x06, 0x07, 0x08, 0x01, 0x02, 0x03, 0x05, 0x08, 0x04,
-
3552  0x09, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x01,
-
3553  0x37, 0x17, 0x05, 0x27, 0x13, 0x17, 0x07, 0x01, 0x01, 0xd9, 0xfe, 0xc9,
-
3554  0xaa, 0x07, 0xfe, 0xd3, 0x19, 0x29, 0x4b, 0x17, 0x01, 0x35, 0x01, 0xad,
-
3555  0xfe, 0xc9, 0x13, 0x48, 0x21, 0x18, 0x01, 0x28, 0x0b, 0xa5, 0x01, 0x37,
-
3556  0x00, 0x01, 0x00, 0x15, 0x00, 0x5e, 0x01, 0xe1, 0x01, 0xf2, 0x00, 0x09,
-
3557  0x00, 0x1b, 0x40, 0x0b, 0x04, 0x03, 0x03, 0x01, 0x07, 0x08, 0x08, 0x06,
-
3558  0x00, 0x05, 0x01, 0x00, 0x2f, 0x33, 0x33, 0x32, 0x32, 0x11, 0x33, 0x11,
-
3559  0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x21, 0x17, 0x07, 0x27, 0x35,
-
3560  0x37, 0x17, 0x07, 0x01, 0xe1, 0xfe, 0xca, 0x85, 0x2d, 0xee, 0xed, 0x2e,
-
3561  0x86, 0x01, 0x4f, 0x50, 0x65, 0x3c, 0xb4, 0x23, 0xbd, 0x37, 0x6c, 0x00,
-
3562  0x00, 0x01, 0x00, 0x0d, 0x00, 0x71, 0x01, 0xd9, 0x02, 0x38, 0x00, 0x09,
-
3563  0x00, 0x16, 0x40, 0x0c, 0x00, 0x04, 0x03, 0x02, 0x09, 0x08, 0x07, 0x05,
-
3564  0x08, 0x01, 0x06, 0x01, 0x00, 0x2f, 0x2f, 0x12, 0x17, 0x39, 0x30, 0x31,
-
3565  0x65, 0x07, 0x01, 0x17, 0x07, 0x03, 0x37, 0x05, 0x07, 0x27, 0x01, 0xd9,
-
3566  0x3a, 0xfe, 0xcb, 0x17, 0x4b, 0x29, 0x19, 0x01, 0x2d, 0x07, 0xaa, 0xab,
-
3567  0x3a, 0x01, 0x37, 0xa5, 0x0b, 0x01, 0x28, 0x18, 0x21, 0x48, 0x13, 0x00,
-
3568  0x00, 0x01, 0x00, 0x0a, 0x00, 0x69, 0x01, 0xea, 0x01, 0xe9, 0x00, 0x0f,
-
3569  0x00, 0x2e, 0x40, 0x15, 0x00, 0x0f, 0x0f, 0x0b, 0x0c, 0x0c, 0x0a, 0x01,
-
3570  0x0d, 0x0d, 0x06, 0x03, 0x04, 0x04, 0x08, 0x07, 0x07, 0x09, 0x02, 0x06,
-
3571  0x12, 0x00, 0x3f, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x11,
-
3572  0x33, 0x11, 0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31,
-
3573  0x41, 0x17, 0x15, 0x07, 0x27, 0x37, 0x23, 0x17, 0x07, 0x27, 0x35, 0x37,
-
3574  0x17, 0x07, 0x33, 0x27, 0x01, 0x4a, 0xa0, 0xa2, 0x33, 0x5a, 0xee, 0x5d,
-
3575  0x33, 0xa1, 0xa0, 0x35, 0x5f, 0xf0, 0x5b, 0x01, 0xe9, 0xb3, 0x1e, 0xaf,
-
3576  0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f, 0x00, 0x01,
-
3577  0x00, 0x3a, 0x00, 0x38, 0x01, 0xba, 0x02, 0x20, 0x00, 0x0f, 0x00, 0x11,
-
3578  0xb7, 0x0e, 0x05, 0x06, 0x0d, 0x04, 0x01, 0x09, 0x01, 0x00, 0x2f, 0x2f,
-
3579  0x12, 0x17, 0x39, 0x30, 0x31, 0x65, 0x07, 0x23, 0x27, 0x37, 0x17, 0x35,
-
3580  0x07, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x15, 0x37, 0x01, 0xba, 0xb3,
-
3581  0x1e, 0xaf, 0x2f, 0x67, 0x67, 0x2f, 0xaf, 0x1e, 0xb3, 0x2a, 0x6f, 0x6f,
-
3582  0xd8, 0xa0, 0xa2, 0x33, 0x5a, 0xf6, 0x5d, 0x33, 0xa1, 0xa0, 0x35, 0x5f,
-
3583  0xf8, 0x5b, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c,
-
3584  0x00, 0x09, 0x00, 0x12, 0x00, 0x21, 0x40, 0x0e, 0x08, 0x06, 0x0c, 0x03,
-
3585  0x02, 0x11, 0x0c, 0x11, 0x0c, 0x11, 0x0f, 0x04, 0x0a, 0x00, 0x00, 0x2f,
-
3586  0x32, 0x2f, 0x33, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x33, 0x11, 0x33,
-
3587  0x33, 0x30, 0x31, 0x73, 0x11, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23,
-
3588  0x11, 0x27, 0x33, 0x11, 0x33, 0x07, 0x27, 0x07, 0x27, 0x33, 0x8c, 0x6a,
-
3589  0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x06, 0xb6, 0xb4, 0x16, 0x87,
-
3590  0x01, 0x6d, 0x2c, 0xe3, 0xe3, 0x2c, 0xfe, 0x93, 0x2c, 0x01, 0x6e, 0x1c,
-
3591  0xcb, 0xcb, 0x1c, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
-
3592  0x01, 0xf5, 0x00, 0x09, 0x00, 0x12, 0x00, 0x2d, 0x40, 0x15, 0x05, 0x0f,
-
3593  0x04, 0x03, 0x0a, 0x0b, 0x0b, 0x09, 0x0d, 0x0e, 0x0e, 0x07, 0x07, 0x09,
-
3594  0x0a, 0x10, 0x11, 0x11, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
3595  0x11, 0x33, 0x32, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3596  0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07,
-
3597  0x23, 0x35, 0x23, 0x37, 0x15, 0x33, 0x15, 0x27, 0x37, 0x27, 0x37, 0x15,
-
3598  0x0a, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xd1, 0x2c, 0xd2, 0x1f, 0xce, 0xce,
-
3599  0x1f, 0x01, 0x8b, 0x6a, 0xcc, 0x1b, 0xcb, 0x69, 0xb3, 0x87, 0x78, 0x05,
-
3600  0xb7, 0xb7, 0x13, 0x87, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4,
-
3601  0x02, 0x7c, 0x00, 0x09, 0x00, 0x12, 0x00, 0x27, 0x40, 0x11, 0x07, 0x0d,
-
3602  0x0d, 0x09, 0x04, 0x0f, 0x0f, 0x11, 0x02, 0x02, 0x0b, 0x09, 0x09, 0x0e,
-
3603  0x06, 0x0a, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33,
-
3604  0x2f, 0x33, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53,
-
3605  0x33, 0x11, 0x33, 0x15, 0x07, 0x23, 0x27, 0x35, 0x33, 0x13, 0x11, 0x23,
-
3606  0x37, 0x17, 0x37, 0x17, 0x23, 0x11, 0x8c, 0xdf, 0x69, 0xcb, 0x1b, 0xcc,
-
3607  0x6a, 0x2c, 0x87, 0x16, 0xb4, 0xb6, 0x06, 0x78, 0x02, 0x7c, 0xfe, 0x93,
-
3608  0x2c, 0xe3, 0xe3, 0x2c, 0x01, 0x41, 0xfe, 0x92, 0x1c, 0xcb, 0xcb, 0x1c,
-
3609  0x01, 0x6e, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5,
-
3610  0x00, 0x09, 0x00, 0x12, 0x00, 0x2f, 0x40, 0x16, 0x05, 0x0e, 0x06, 0x03,
-
3611  0x0b, 0x11, 0x0b, 0x09, 0x0d, 0x0c, 0x0c, 0x08, 0x08, 0x09, 0x11, 0x02,
-
3612  0x10, 0x0f, 0x0f, 0x03, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11,
-
3613  0x33, 0x11, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3614  0x12, 0x17, 0x39, 0x30, 0x31, 0x41, 0x15, 0x23, 0x15, 0x23, 0x27, 0x35,
-
3615  0x37, 0x33, 0x15, 0x17, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07, 0x35, 0x33,
-
3616  0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xa5, 0xd2, 0x1f, 0xce, 0xce,
-
3617  0x1f, 0xd2, 0x01, 0x8b, 0xdf, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x2c, 0x87,
-
3618  0x13, 0xb7, 0xb7, 0x05, 0x78, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00,
-
3619  0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09, 0x00, 0x17, 0x40, 0x09, 0x00, 0x07,
-
3620  0x07, 0x02, 0x05, 0x05, 0x04, 0x08, 0x04, 0x00, 0x2f, 0x2f, 0x12, 0x39,
-
3621  0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41, 0x15, 0x23, 0x11, 0x23,
-
3622  0x11, 0x23, 0x35, 0x37, 0x33, 0x01, 0xd4, 0x69, 0xdf, 0x6a, 0xcc, 0x1b,
-
3623  0x01, 0x99, 0x2c, 0xfe, 0x93, 0x01, 0x6d, 0x2c, 0xe3, 0x00, 0x00, 0x01,
-
3624  0x00, 0x0a, 0x00, 0x43, 0x01, 0xea, 0x01, 0xf5, 0x00, 0x09, 0x00, 0x19,
-
3625  0x40, 0x0a, 0x05, 0x06, 0x01, 0x03, 0x03, 0x01, 0x01, 0x08, 0x08, 0x00,
-
3626  0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x11, 0x39, 0x39, 0x30,
-
3627  0x31, 0x77, 0x35, 0x33, 0x35, 0x33, 0x17, 0x15, 0x07, 0x23, 0x35, 0x0a,
-
3628  0xd1, 0x2c, 0xe3, 0xe3, 0x2c, 0xac, 0xdf, 0x6a, 0xcc, 0x1b, 0xcb, 0x69,
-
3629  0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x09,
-
3630  0x00, 0x17, 0x40, 0x09, 0x00, 0x08, 0x08, 0x03, 0x05, 0x05, 0x01, 0x06,
-
3631  0x01, 0x00, 0x2f, 0x2f, 0x12, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30,
-
3632  0x31, 0x65, 0x07, 0x23, 0x27, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01,
-
3633  0xd4, 0xcb, 0x1b, 0xcc, 0x6a, 0xdf, 0x69, 0xe3, 0xe3, 0xe3, 0x2c, 0x01,
-
3634  0x6d, 0xfe, 0x93, 0x00, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x43, 0x01, 0xea,
-
3635  0x01, 0xf5, 0x00, 0x09, 0x00, 0x19, 0x40, 0x0a, 0x05, 0x04, 0x09, 0x07,
-
3636  0x07, 0x09, 0x09, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x32, 0x11,
-
3637  0x33, 0x2f, 0x11, 0x39, 0x39, 0x30, 0x31, 0x65, 0x23, 0x15, 0x23, 0x27,
-
3638  0x35, 0x37, 0x33, 0x15, 0x33, 0x01, 0xea, 0xd1, 0x2c, 0xe3, 0xe3, 0x2c,
-
3639  0xd1, 0xac, 0x69, 0xcb, 0x1b, 0xcc, 0x6a, 0x00, 0x00, 0x01, 0x00, 0x00,
-
3640  0xfe, 0x70, 0x01, 0xf4, 0xff, 0x1f, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3641  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x51, 0x35, 0x21, 0x15, 0x01, 0xf4,
-
3642  0xfe, 0x70, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3643  0xff, 0xce, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3644  0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x01, 0x5e,
-
3645  0xfe, 0xa2, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x00, 0x7d,
-
3646  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3647  0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0x0d, 0xfd, 0xf3,
-
3648  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c, 0x00, 0x03,
-
3649  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3650  0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x01,
-
3651  0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0xdb, 0x00, 0x03, 0x00, 0x08,
-
3652  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
-
3653  0x01, 0xf4, 0xfe, 0x70, 0x03, 0x6b, 0xfc, 0x95, 0x00, 0x01, 0x00, 0x00,
-
3654  0xfe, 0x70, 0x01, 0xf4, 0x02, 0x8a, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3655  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4,
-
3656  0xfe, 0x70, 0x04, 0x1a, 0xfb, 0xe6, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3657  0x01, 0xf4, 0x03, 0x39, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3658  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70,
-
3659  0x04, 0xc9, 0xfb, 0x37, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3660  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3661  0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0xfe, 0x70, 0x05, 0x78,
-
3662  0xfa, 0x88, 0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x01, 0xf4, 0x03, 0xe8,
-
3663  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3664  0x51, 0x11, 0x21, 0x11, 0x01, 0xf4, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44,
-
3665  0x00, 0x01, 0x00, 0x00, 0x03, 0x39, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03,
-
3666  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x35,
-
3667  0x21, 0x15, 0x01, 0xf4, 0x03, 0x39, 0xaf, 0xaf, 0x00, 0x01, 0x00, 0x00,
-
3668  0xfe, 0x70, 0x00, 0x3f, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3669  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x3f, 0xfe,
-
3670  0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3671  0x00, 0x7d, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3672  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x7d, 0xfe, 0x70, 0x05,
-
3673  0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xbc,
-
3674  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3675  0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xbc, 0xfe, 0x70, 0x05, 0x78, 0xfa,
-
3676  0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa, 0x03, 0xe8,
-
3677  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3678  0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
-
3679  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0x39, 0x03, 0xe8, 0x00, 0x03,
-
3680  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3681  0x21, 0x11, 0x01, 0x39, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01,
-
3682  0x00, 0x00, 0xfe, 0x70, 0x01, 0x77, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
-
3683  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11,
-
3684  0x01, 0x77, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0x00,
-
3685  0xfe, 0x70, 0x01, 0xb6, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
3686  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x01, 0xb6,
-
3687  0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70,
-
3688  0x01, 0xf4, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
3689  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70,
-
3690  0x05, 0x78, 0xfa, 0x88, 0x00, 0x01, 0x01, 0xb6, 0xfe, 0x70, 0x01, 0xf4,
-
3691  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3692  0x30, 0x31, 0x41, 0x11, 0x33, 0x11, 0x01, 0xb6, 0x3e, 0xfe, 0x70, 0x05,
-
3693  0x78, 0xfa, 0x88, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x00, 0xfa,
-
3694  0x01, 0x2c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3695  0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd,
-
3696  0x44, 0x00, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0x70, 0x01, 0xf4, 0x01, 0x2c,
-
3697  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3698  0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44,
-
3699  0x00, 0x01, 0x00, 0x00, 0x01, 0x2c, 0x00, 0xfa, 0x03, 0xe8, 0x00, 0x03,
-
3700  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11,
-
3701  0x33, 0x11, 0xfa, 0x01, 0x2c, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01,
-
3702  0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08,
-
3703  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11,
-
3704  0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44,
-
3705  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x07,
-
3706  0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
3707  0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0x70,
-
3708  0x02, 0xbc, 0x02, 0xbc, 0xfd, 0x44, 0xfd, 0x44, 0x00, 0x01, 0x00, 0x00,
-
3709  0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x01,
-
3710  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x21, 0x11, 0x23, 0x11,
-
3711  0x01, 0xf4, 0xfa, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x44, 0xfd, 0x44, 0x00,
-
3712  0x00, 0x01, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05,
-
3713  0x00, 0x08, 0xb1, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
3714  0x23, 0x11, 0x21, 0x11, 0xfa, 0xfa, 0x01, 0xf4, 0xfe, 0x70, 0x02, 0xbc,
-
3715  0x02, 0xbc, 0xfa, 0x88, 0x00, 0x01, 0x00, 0xfa, 0x01, 0x2c, 0x01, 0xf4,
-
3716  0x03, 0xe8, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3717  0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0xfa, 0xfa, 0x01, 0x2c, 0x02, 0xbc,
-
3718  0xfd, 0x44, 0x00, 0x02, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4, 0x03, 0xe8,
-
3719  0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x01, 0x04, 0x04, 0x05, 0x00,
-
3720  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x51, 0x11, 0x33, 0x19,
-
3721  0x02, 0x33, 0x11, 0xfa, 0xfa, 0xfe, 0x70, 0x02, 0xbc, 0xfd, 0x44, 0x02,
-
3722  0xbc, 0x02, 0xbc, 0xfd, 0x44, 0x00, 0x00, 0x01, 0x00, 0x00, 0xfe, 0x70,
-
3723  0x01, 0xf4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
-
3724  0x2f, 0x2f, 0x30, 0x31, 0x51, 0x11, 0x33, 0x11, 0x33, 0x11, 0xfa, 0xfa,
-
3725  0xfe, 0x70, 0x02, 0xbc, 0x02, 0xbc, 0xfa, 0x88, 0x00, 0x2a, 0x00, 0x0f,
-
3726  0xfe, 0x87, 0x01, 0xe5, 0x03, 0xd1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
-
3727  0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b, 0x00, 0x1f, 0x00, 0x23,
-
3728  0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3b,
-
3729  0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53,
-
3730  0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b,
-
3731  0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83,
-
3732  0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b,
-
3733  0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15,
-
3734  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3735  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3736  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3737  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3738  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3739  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3740  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3741  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3742  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3743  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3744  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3745  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3746  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0x35, 0x33, 0x15,
-
3747  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x0f, 0x36, 0x70, 0x36,
-
3748  0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36,
-
3749  0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe,
-
3750  0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70,
-
3751  0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71,
-
3752  0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36, 0xfe, 0xd0,
-
3753  0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36, 0x71, 0x36,
-
3754  0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x2a, 0x36, 0x70, 0x36,
-
3755  0x71, 0x36, 0xfe, 0xd0, 0x36, 0x71, 0x36, 0x70, 0x36, 0xfe, 0x87, 0x36,
-
3756  0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3757  0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36,
-
3758  0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36,
-
3759  0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64,
-
3760  0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3761  0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36,
-
3762  0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36,
-
3763  0x36, 0x36, 0x36, 0x36, 0x36, 0x64, 0x36, 0x36, 0x36, 0x36, 0x36, 0x36,
-
3764  0x00, 0x2a, 0x00, 0x02, 0xfe, 0x79, 0x01, 0xf2, 0x03, 0xdf, 0x00, 0x03,
-
3765  0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1b,
-
3766  0x00, 0x1f, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x33,
-
3767  0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4b,
-
3768  0x00, 0x4f, 0x00, 0x53, 0x00, 0x57, 0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63,
-
3769  0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x77, 0x00, 0x7b,
-
3770  0x00, 0x7f, 0x00, 0x83, 0x00, 0x87, 0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93,
-
3771  0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f, 0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00,
-
3772  0x53, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3773  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3774  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3775  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3776  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3777  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3778  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3779  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3780  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3781  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3782  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3783  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3784  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3785  0x25, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15,
-
3786  0x02, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
-
3787  0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55,
-
3788  0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4,
-
3789  0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52, 0x55, 0x52,
-
3790  0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51, 0x54, 0x52,
-
3791  0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe, 0x10, 0x51,
-
3792  0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54, 0x51, 0xfe,
-
3793  0x10, 0x51, 0x54, 0x52, 0x55, 0x52, 0xfe, 0xb4, 0x52, 0x55, 0x52, 0x54,
-
3794  0x51, 0xfe, 0x79, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
-
3795  0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64,
-
3796  0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52,
-
3797  0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52,
-
3798  0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52,
-
3799  0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52,
-
3800  0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52,
-
3801  0x52, 0x52, 0x64, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x64, 0x52, 0x52,
-
3802  0x52, 0x52, 0x52, 0x52, 0x00, 0x19, 0x00, 0x00, 0xfe, 0x70, 0x01, 0xf4,
-
3803  0x03, 0xe8, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x4f, 0x00, 0x53, 0x00, 0x57,
-
3804  0x00, 0x5b, 0x00, 0x5f, 0x00, 0x63, 0x00, 0x67, 0x00, 0x6b, 0x00, 0x6f,
-
3805  0x00, 0x73, 0x00, 0x77, 0x00, 0x7b, 0x00, 0x7f, 0x00, 0x83, 0x00, 0x87,
-
3806  0x00, 0x8b, 0x00, 0x8f, 0x00, 0x93, 0x00, 0x97, 0x00, 0x9b, 0x00, 0x9f,
-
3807  0x00, 0xa3, 0x00, 0xa7, 0x00, 0x00, 0x51, 0x35, 0x33, 0x35, 0x23, 0x35,
-
3808  0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35,
-
3809  0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15,
-
3810  0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
-
3811  0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15,
-
3812  0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35,
-
3813  0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x37, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3814  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3815  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3816  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3817  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3818  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3819  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35,
-
3820  0x23, 0x15, 0x27, 0x35, 0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x27, 0x35,
-
3821  0x23, 0x15, 0x33, 0x35, 0x23, 0x15, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
-
3822  0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x67,
-
3823  0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
-
3824  0x40, 0x7a, 0x2d, 0x7a, 0x2c, 0x80, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
-
3825  0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
-
3826  0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3,
-
3827  0x2d, 0x26, 0x2d, 0xd3, 0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0x26, 0x2d, 0xd3,
-
3828  0x2c, 0xce, 0x2c, 0xd3, 0x2d, 0xfe, 0x70, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a,
-
3829  0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59,
-
3830  0x59, 0x6f, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a, 0x4e, 0x7a,
-
3831  0x4e, 0x7a, 0x59, 0x59, 0x59, 0x59, 0x59, 0x6f, 0x4e, 0x4e, 0x4e, 0x4e,
-
3832  0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e,
-
3833  0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e,
-
3834  0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64,
-
3835  0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x64, 0x4e, 0x4e,
-
3836  0x4e, 0x4e, 0x64, 0x4e, 0x4e, 0x4e, 0x4e, 0x00, 0x00, 0x01, 0x00, 0x29,
-
3837  0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x08, 0xb1, 0x0a,
-
3838  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34,
-
3839  0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0xf9, 0x2b,
-
3840  0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
-
3841  0x39, 0x4c, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21,
-
3842  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x00, 0x00, 0x02, 0x00, 0x29,
-
3843  0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x0c,
-
3844  0xb3, 0x14, 0x1e, 0x0a, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31,
-
3845  0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
3846  0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
3847  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0xf9, 0x2b, 0x4c, 0x39,
-
3848  0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
-
3849  0x2b, 0x21, 0x39, 0x2c, 0x19, 0x19, 0x2c, 0x39, 0x21, 0x20, 0x39, 0x2c,
-
3850  0x19, 0x19, 0x2c, 0x39, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
3851  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x32, 0x1a, 0x2b,
-
3852  0x3a, 0x20, 0x21, 0x38, 0x2c, 0x19, 0x19, 0x2c, 0x38, 0x21, 0x20, 0x3a,
-
3853  0x2b, 0x1a, 0x00, 0x01, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
-
3854  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
3855  0x53, 0x17, 0x07, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x01, 0xf7, 0xe1, 0xe1,
-
3856  0xe1, 0x00, 0x00, 0x02, 0x00, 0x19, 0x00, 0x35, 0x01, 0xdb, 0x01, 0xf7,
-
3857  0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x02, 0x07, 0x00, 0x02,
-
3858  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x17, 0x07, 0x27,
-
3859  0x33, 0x17, 0x37, 0x27, 0xfa, 0xe1, 0xe1, 0xe1, 0x43, 0x9e, 0x9e, 0x9e,
-
3860  0x01, 0xf7, 0xe1, 0xe1, 0xe1, 0x9e, 0x9e, 0x9e, 0x00, 0x02, 0x00, 0x2f,
-
3861  0x00, 0x00, 0x01, 0xd8, 0x02, 0x81, 0x00, 0x05, 0x00, 0x09, 0x00, 0x13,
-
3862  0x40, 0x09, 0x06, 0x00, 0x08, 0x02, 0x03, 0x72, 0x00, 0x12, 0x72, 0x00,
-
3863  0x2b, 0x2b, 0x32, 0x11, 0x33, 0x30, 0x31, 0x73, 0x03, 0x13, 0x33, 0x13,
-
3864  0x03, 0x27, 0x37, 0x27, 0x07, 0xf3, 0xc4, 0xc4, 0x21, 0xc4, 0xc4, 0x10,
-
3865  0x80, 0x80, 0x81, 0x01, 0x40, 0x01, 0x41, 0xfe, 0xbf, 0xfe, 0xc0, 0x6c,
-
3866  0xd4, 0xd6, 0xd6, 0x00, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
3867  0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x1b, 0x40, 0x0b,
-
3868  0x0b, 0x02, 0x03, 0x03, 0x0d, 0x0a, 0x07, 0x07, 0x0c, 0x0d, 0x00, 0x00,
-
3869  0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x30,
-
3870  0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
-
3871  0x11, 0x01, 0x35, 0x21, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14,
-
3872  0x90, 0xfd, 0xfc, 0x02, 0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
-
3873  0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x84, 0x00, 0x00, 0x02,
-
3874  0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b,
-
3875  0x00, 0x12, 0xb6, 0x0b, 0x02, 0x03, 0x03, 0x08, 0x09, 0x00, 0x00, 0x2f,
-
3876  0x2f, 0x33, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3877  0x21, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x11, 0x40, 0x90, 0x01, 0x14,
-
3878  0x6c, 0xfe, 0x80, 0x02, 0x04, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd, 0x7a,
-
3879  0x02, 0xf2, 0x84, 0xfc, 0x8a, 0x00, 0x00, 0x02, 0x00, 0x40, 0xfe, 0x70,
-
3880  0x02, 0x44, 0x01, 0xe6, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x12, 0xb6, 0x0b,
-
3881  0x0a, 0x07, 0x07, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f,
-
3882  0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11,
-
3883  0x21, 0x15, 0x23, 0x11, 0x40, 0x02, 0x04, 0xfe, 0x80, 0x6c, 0x01, 0x14,
-
3884  0x90, 0xfe, 0x70, 0x03, 0x76, 0x84, 0xfd, 0x0e, 0x02, 0x86, 0x84, 0xfd,
-
3885  0xfe, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x01, 0xe6,
-
3886  0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x01, 0x04, 0x05, 0x00, 0x00,
-
3887  0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35,
-
3888  0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x02, 0x94, 0x72, 0x84, 0x84,
-
3889  0xf0, 0x84, 0x84, 0x00, 0x00, 0x03, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44,
-
3890  0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3891  0x0c, 0x07, 0x01, 0x05, 0x04, 0x04, 0x07, 0x0d, 0x0a, 0x0a, 0x07, 0x00,
-
3892  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
3893  0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x33, 0x11, 0x33,
-
3894  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c,
-
3895  0x90, 0x84, 0x6c, 0x84, 0x90, 0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02,
-
3896  0xfd, 0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x00, 0x02, 0xff, 0xb0,
-
3897  0x00, 0x72, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14,
-
3898  0xb7, 0x0a, 0x03, 0x01, 0x07, 0x06, 0x06, 0x03, 0x00, 0x00, 0x2f, 0x2f,
-
3899  0x39, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
-
3900  0x33, 0x11, 0x25, 0x35, 0x33, 0x11, 0x33, 0x11, 0x50, 0x01, 0x80, 0x84,
-
3901  0xfd, 0xfc, 0x90, 0x84, 0x72, 0x84, 0x02, 0xf2, 0xfc, 0x8a, 0xf0, 0x84,
-
3902  0x02, 0x02, 0xfd, 0x7a, 0x00, 0x02, 0x00, 0x40, 0x00, 0x72, 0x02, 0x44,
-
3903  0x03, 0xe8, 0x00, 0x05, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x01, 0x03,
-
3904  0x09, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32,
-
3905  0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x25, 0x11,
-
3906  0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x01, 0x80, 0xfe, 0xec, 0x84, 0x90,
-
3907  0x72, 0x03, 0x76, 0xfd, 0x0e, 0x84, 0xf0, 0x02, 0x86, 0xfd, 0xfe, 0x84,
-
3908  0x00, 0x02, 0x00, 0x40, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8, 0x00, 0x03,
-
3909  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3910  0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3911  0x40, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
-
3912  0xfa, 0x88, 0x00, 0x04, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
3913  0x00, 0x05, 0x00, 0x0b, 0x00, 0x11, 0x00, 0x17, 0x00, 0x1d, 0x40, 0x0c,
-
3914  0x13, 0x0f, 0x15, 0x0d, 0x0d, 0x12, 0x0c, 0x07, 0x02, 0x03, 0x06, 0x00,
-
3915  0x00, 0x2f, 0x32, 0x2f, 0x33, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f,
-
3916  0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21,
-
3917  0x15, 0x23, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
-
3918  0x11, 0x33, 0x15, 0x40, 0x90, 0x01, 0x14, 0x6c, 0x01, 0x14, 0x90, 0xfd,
-
3919  0xfc, 0x90, 0x84, 0x6c, 0x84, 0x90, 0xfe, 0x70, 0x02, 0x02, 0x84, 0xfd,
-
3920  0x7a, 0x02, 0x86, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84, 0x02, 0x02, 0xfd,
-
3921  0x7a, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x03, 0xff, 0xb0, 0xfe, 0x70,
-
3922  0x01, 0xb4, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x14,
-
3923  0xb7, 0x07, 0x0d, 0x0b, 0x0a, 0x02, 0x03, 0x06, 0x00, 0x00, 0x2f, 0x32,
-
3924  0x2f, 0x33, 0x2f, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3925  0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x35, 0x33, 0x11, 0x33, 0x11,
-
3926  0x40, 0x90, 0x01, 0x14, 0x6c, 0x84, 0xfd, 0xfc, 0x90, 0x84, 0xfe, 0x70,
-
3927  0x02, 0x02, 0x84, 0xfd, 0x7a, 0x05, 0x78, 0xfa, 0x88, 0x02, 0xf2, 0x84,
-
3928  0x02, 0x02, 0xfd, 0x7a, 0x00, 0x03, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44,
-
3929  0x03, 0xe8, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x1d, 0x40, 0x0c,
-
3930  0x0c, 0x01, 0x09, 0x05, 0x08, 0x08, 0x01, 0x0a, 0x0d, 0x0d, 0x01, 0x00,
-
3931  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x39, 0x2f, 0x33, 0x32, 0x11,
-
3932  0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23,
-
3933  0x11, 0x03, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x01, 0x14,
-
3934  0x90, 0x84, 0x84, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x02, 0x86,
-
3935  0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x02, 0x86, 0xfd, 0xfe, 0x84, 0x00, 0x01,
-
3936  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x0b, 0x00, 0x12,
-
3937  0xb6, 0x08, 0x06, 0x0a, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33,
-
3938  0x11, 0x33, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15,
-
3939  0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x94, 0x90, 0x84,
-
3940  0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
-
3941  0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x01, 0x6e,
-
3942  0x00, 0x09, 0x00, 0x10, 0xb5, 0x06, 0x08, 0x02, 0x02, 0x03, 0x00, 0x00,
-
3943  0x2f, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
3944  0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x02, 0x04, 0x84, 0x6c,
-
3945  0xfe, 0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x02, 0x7a, 0xfd, 0x86, 0x00,
-
3946  0x00, 0x01, 0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x09,
-
3947  0x00, 0x10, 0xb5, 0x06, 0x04, 0x08, 0x08, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
3948  0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
-
3949  0x23, 0x11, 0x23, 0x11, 0x40, 0x02, 0x04, 0x90, 0x84, 0x6c, 0xfe, 0x70,
-
3950  0x02, 0xfe, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
3951  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e,
-
3952  0xb4, 0x06, 0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33,
-
3953  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
3954  0x02, 0x94, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
-
3955  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0x6e, 0x00, 0x05,
-
3956  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
3957  0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70,
-
3958  0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
3959  0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x12, 0xb6, 0x07, 0x03, 0x03,
-
3960  0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33,
-
3961  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11,
-
3962  0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
-
3963  0x7a, 0xfd, 0x86, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
3964  0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
-
3965  0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11,
-
3966  0x76, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86, 0x00,
-
3967  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
-
3968  0x00, 0x12, 0xb6, 0x01, 0x05, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f,
-
3969  0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
-
3970  0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6,
-
3971  0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
-
3972  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
3973  0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
-
3974  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3975  0x23, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
3976  0x01, 0x08, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02,
-
3977  0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
3978  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x02, 0x02,
-
3979  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3980  0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe,
-
3981  0xf8, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00,
-
3982  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x05,
-
3983  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
3984  0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
-
3985  0x70, 0x02, 0x38, 0x01, 0x08, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0xff, 0xb0,
-
3986  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08,
-
3987  0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
3988  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11,
-
3989  0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x38, 0x01,
-
3990  0x08, 0x02, 0x38, 0xfc, 0xc0, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0xb8,
-
3991  0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04,
-
3992  0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
-
3993  0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x03, 0x40, 0xfe,
-
3994  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
-
3995  0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x01, 0x08, 0x08, 0x03,
-
3996  0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31, 0x53, 0x11,
-
3997  0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42, 0x01, 0x08,
-
3998  0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
-
3999  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4000  0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x04, 0x04, 0x0a, 0x01,
-
4001  0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
4002  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4003  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe,
-
4004  0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd,
-
4005  0xc8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6,
-
4006  0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x06, 0x02, 0x02, 0x03, 0x03,
-
4007  0x08, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33,
-
4008  0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x01, 0x35,
-
4009  0x21, 0x15, 0xb8, 0xfe, 0xf8, 0x02, 0x94, 0xfe, 0xf8, 0xfe, 0x74, 0x02,
-
4010  0x94, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x84, 0xfd, 0xfe, 0x02, 0xf2, 0x84,
-
4011  0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0xe6,
-
4012  0x00, 0x09, 0x00, 0x10, 0xb5, 0x02, 0x03, 0x03, 0x06, 0x07, 0x00, 0x00,
-
4013  0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
-
4014  0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4015  0xf8, 0x01, 0x8c, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0xfc, 0x8a,
-
4016  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xe6, 0x00, 0x09,
-
4017  0x00, 0x10, 0xb5, 0x08, 0x05, 0x05, 0x04, 0x01, 0x00, 0x00, 0x2f, 0x2f,
-
4018  0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4019  0x21, 0x15, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4020  0xf8, 0xfe, 0x70, 0x03, 0x76, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00, 0x02,
-
4021  0x00, 0x3f, 0x00, 0xa8, 0x01, 0xb6, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07,
-
4022  0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32,
-
4023  0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x3f, 0x7d,
-
4024  0x7d, 0x7d, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00,
-
4025  0x00, 0x02, 0x00, 0x76, 0xff, 0x1f, 0x01, 0x7e, 0x03, 0x39, 0x00, 0x03,
-
4026  0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
4027  0x2f, 0x33, 0x30, 0x31, 0x57, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11,
-
4028  0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xe1, 0x01, 0x5e, 0xfe, 0xa2,
-
4029  0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
4030  0x01, 0x7e, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00,
-
4031  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
-
4032  0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4033  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x01,
-
4034  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4035  0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x02, 0x94, 0xc6, 0xfe,
-
4036  0x70, 0x02, 0x38, 0x01, 0x08, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
-
4037  0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a,
-
4038  0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4039  0x23, 0x11, 0x21, 0x11, 0x76, 0xc6, 0x01, 0xce, 0xfe, 0x70, 0x02, 0x38,
-
4040  0x01, 0x08, 0xfc, 0xc0, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44,
-
4041  0x01, 0xb0, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00, 0x00, 0x2f,
-
4042  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0x01,
-
4043  0xce, 0xc6, 0xfe, 0x70, 0x03, 0x40, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4044  0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08,
-
4045  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11,
-
4046  0x50, 0x02, 0x94, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0,
-
4047  0x00, 0xa8, 0x01, 0x3c, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
4048  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x50, 0x01,
-
4049  0x8c, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4050  0x02, 0x44, 0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x01,
-
4051  0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x67, 0x11,
-
4052  0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x50, 0x01, 0x8c, 0x01, 0x08, 0xfe,
-
4053  0xf8, 0xa8, 0x01, 0x08, 0x42, 0x84, 0x42, 0x00, 0x00, 0x04, 0x00, 0x10,
-
4054  0x00, 0xa8, 0x01, 0xe4, 0x01, 0xb0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b,
-
4055  0x00, 0x0f, 0x00, 0x14, 0xb7, 0x0c, 0x0d, 0x08, 0x09, 0x04, 0x05, 0x01,
-
4056  0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x33, 0x32, 0x33, 0x32, 0x30, 0x31,
-
4057  0x77, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4058  0x33, 0x11, 0x33, 0x11, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d,
-
4059  0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4060  0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x76, 0xfe, 0x9c,
-
4061  0x01, 0x7e, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4062  0x00, 0x1f, 0x40, 0x0d, 0x0d, 0x0c, 0x0c, 0x09, 0x09, 0x08, 0x01, 0x01,
-
4063  0x04, 0x04, 0x05, 0x05, 0x08, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x33,
-
4064  0x2f, 0x11, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21,
-
4065  0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21,
-
4066  0x11, 0x76, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4067  0xfe, 0xf8, 0x01, 0x08, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
-
4068  0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e,
-
4069  0x01, 0x06, 0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xa8, 0x02, 0x44,
-
4070  0x01, 0xb0, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
4071  0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0xb8, 0x01, 0x8c, 0xa8, 0x01, 0x08,
-
4072  0xfe, 0xf8, 0x00, 0x03, 0x00, 0x1c, 0x00, 0xa8, 0x01, 0xd8, 0x01, 0xb0,
-
4073  0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04,
-
4074  0x04, 0x09, 0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33,
-
4075  0x11, 0x33, 0x32, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11, 0x33,
-
4076  0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x1c, 0x6f, 0x37, 0x70, 0x37,
-
4077  0x6f, 0xa8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4078  0xfe, 0xf8, 0x00, 0x03, 0x00, 0x76, 0xfe, 0xbe, 0x01, 0x7e, 0x03, 0x9a,
-
4079  0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04, 0x05, 0x09,
-
4080  0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11,
-
4081  0x01, 0x11, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xfe,
-
4082  0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xbe, 0x01, 0x37, 0xfe,
-
4083  0xc9, 0x01, 0xd2, 0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe,
-
4084  0xc9, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea, 0x01, 0x7e, 0x03, 0xe8,
-
4085  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4086  0x77, 0x11, 0x21, 0x11, 0x76, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd, 0x02,
-
4087  0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4088  0x00, 0x0e, 0xb4, 0x03, 0x05, 0x02, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x11,
-
4089  0x33, 0x2f, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4090  0x50, 0xc6, 0x01, 0x08, 0xc6, 0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8,
-
4091  0xfe, 0xf8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x7e, 0x03, 0xe8,
-
4092  0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f,
-
4093  0x30, 0x31, 0x67, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6, 0x01, 0x08,
-
4094  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76,
-
4095  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
-
4096  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11,
-
4097  0x23, 0x11, 0xb8, 0x42, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x02,
-
4098  0xfe, 0xfd, 0x02, 0xfd, 0x86, 0x00, 0x00, 0x01, 0x00, 0x76, 0x00, 0xa8,
-
4099  0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
-
4100  0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4101  0x76, 0x01, 0x08, 0xc6, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe, 0xf8, 0x00,
-
4102  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x03,
-
4103  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
4104  0x21, 0x11, 0x76, 0x01, 0x08, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x00,
-
4105  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4106  0x00, 0x14, 0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00,
-
4107  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4108  0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x76, 0xc6,
-
4109  0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02,
-
4110  0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0,
-
4111  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04,
-
4112  0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4113  0x53, 0x11, 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x76, 0xc6, 0xc6, 0x01,
-
4114  0x08, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88, 0x00,
-
4115  0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4116  0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4117  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11,
-
4118  0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe,
-
4119  0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4120  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x10, 0xb7, 0x01, 0x0c, 0x09, 0x07, 0x04,
-
4121  0x05, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x53, 0x11,
-
4122  0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
-
4123  0x76, 0xc6, 0x01, 0x08, 0x84, 0x42, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38,
-
4124  0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x01,
-
4125  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10,
-
4126  0xb5, 0x08, 0x05, 0x05, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39,
-
4127  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4128  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0x01, 0x08, 0xfe, 0xf8, 0xfe,
-
4129  0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
4130  0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e,
-
4131  0xb4, 0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4132  0x30, 0x31, 0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15,
-
4133  0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xa8, 0x01, 0x08, 0x02,
-
4134  0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4135  0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x07, 0x0a, 0x0a,
-
4136  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4137  0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
-
4138  0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38,
-
4139  0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01,
-
4140  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e,
-
4141  0xb4, 0x02, 0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4142  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x35, 0x21, 0x11, 0x23, 0x11,
-
4143  0x76, 0xc6, 0xc6, 0x01, 0xce, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
-
4144  0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
-
4145  0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00,
-
4146  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35, 0x23, 0x35,
-
4147  0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6,
-
4148  0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
-
4149  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x0e,
-
4150  0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4151  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11,
-
4152  0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02,
-
4153  0x7a, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4154  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e,
-
4155  0xb4, 0x07, 0x0a, 0x0a, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33,
-
4156  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4157  0x23, 0x15, 0x23, 0x11, 0xb8, 0xfe, 0xf8, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
-
4158  0x42, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84,
-
4159  0x42, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c,
-
4160  0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x06, 0x07, 0x0f, 0x00, 0x2f,
-
4161  0x2f, 0x33, 0x30, 0x31, 0x77, 0x34, 0x2e, 0x02, 0x23, 0x23, 0x35, 0x33,
-
4162  0x32, 0x1e, 0x03, 0x15, 0x11, 0x23, 0xb8, 0x1d, 0x32, 0x43, 0x26, 0x50,
-
4163  0x50, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x32, 0x26, 0x43, 0x32, 0x1d,
-
4164  0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0xfe, 0x3e, 0x00, 0x01, 0x00, 0xb8,
-
4165  0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x0b,
-
4166  0x08, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x41, 0x23, 0x11, 0x34,
-
4167  0x3e, 0x03, 0x33, 0x33, 0x15, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x01, 0x3c,
-
4168  0x84, 0x20, 0x3a, 0x4f, 0x5f, 0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d,
-
4169  0xfe, 0x70, 0x01, 0xc2, 0x34, 0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32,
-
4170  0x43, 0x26, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8,
-
4171  0x00, 0x10, 0x00, 0x0c, 0xb3, 0x0a, 0x09, 0x00, 0x09, 0x00, 0x2f, 0x2f,
-
4172  0x11, 0x33, 0x30, 0x31, 0x53, 0x33, 0x11, 0x14, 0x0e, 0x03, 0x23, 0x23,
-
4173  0x35, 0x33, 0x32, 0x3e, 0x02, 0x35, 0xb8, 0x84, 0x20, 0x3a, 0x4f, 0x5f,
-
4174  0x34, 0x50, 0x50, 0x26, 0x43, 0x32, 0x1d, 0x03, 0xe8, 0xfe, 0x3e, 0x34,
-
4175  0x5f, 0x4f, 0x3a, 0x20, 0x84, 0x1d, 0x32, 0x43, 0x26, 0x00, 0x00, 0x01,
-
4176  0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x10, 0x00, 0x0c,
-
4177  0xb3, 0x05, 0x08, 0x0f, 0x08, 0x00, 0x2f, 0x2f, 0x11, 0x33, 0x30, 0x31,
-
4178  0x41, 0x14, 0x1e, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x2e, 0x03, 0x35,
-
4179  0x11, 0x33, 0x01, 0x3c, 0x1d, 0x32, 0x43, 0x26, 0x50, 0x50, 0x34, 0x5f,
-
4180  0x4f, 0x3a, 0x20, 0x84, 0x02, 0x26, 0x26, 0x43, 0x32, 0x1d, 0x84, 0x20,
-
4181  0x3a, 0x4f, 0x5f, 0x34, 0x01, 0xc2, 0x00, 0x02, 0x00, 0x3f, 0x00, 0xea,
-
4182  0x01, 0xb6, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05,
-
4183  0x01, 0x01, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31,
-
4184  0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x3f, 0x7d, 0x7d, 0x7d,
-
4185  0xea, 0x84, 0x84, 0x84, 0x84, 0x00, 0x00, 0x02, 0x00, 0xb8, 0xff, 0x1f,
-
4186  0x01, 0x3c, 0x03, 0x39, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0c, 0xb3, 0x04,
-
4187  0x05, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x11,
-
4188  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0xe1, 0x01,
-
4189  0x5e, 0xfe, 0xa2, 0x02, 0xbc, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x00, 0x02,
-
4190  0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05, 0x00, 0x0b,
-
4191  0x00, 0x14, 0x40, 0x09, 0x04, 0x07, 0x0a, 0x01, 0x04, 0x08, 0x02, 0x06,
-
4192  0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x17, 0x39, 0x30, 0x31, 0x51, 0x35,
-
4193  0x01, 0x33, 0x15, 0x01, 0x21, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac,
-
4194  0x48, 0xfe, 0x54, 0x01, 0x64, 0xfe, 0x54, 0x48, 0x01, 0xac, 0xfe, 0xd4,
-
4195  0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac,
-
4196  0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
-
4197  0x00, 0x0c, 0xb3, 0x01, 0x02, 0x04, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
4198  0x30, 0x31, 0x41, 0x01, 0x35, 0x33, 0x01, 0x15, 0x01, 0xac, 0xfe, 0x54,
-
4199  0x48, 0x01, 0xac, 0xfe, 0xd4, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0xac, 0x00,
-
4200  0x00, 0x01, 0x00, 0x00, 0xfe, 0xd4, 0x01, 0xf4, 0x03, 0x84, 0x00, 0x05,
-
4201  0x00, 0x0c, 0xb3, 0x04, 0x02, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33,
-
4202  0x30, 0x31, 0x51, 0x35, 0x01, 0x33, 0x15, 0x01, 0x01, 0xac, 0x48, 0xfe,
-
4203  0x54, 0xfe, 0xd4, 0xac, 0x04, 0x04, 0xac, 0xfb, 0xfc, 0x00, 0x00, 0x01,
-
4204  0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08,
-
4205  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11,
-
4206  0xb8, 0x84, 0xfe, 0x70, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0,
-
4207  0xfe, 0x70, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06,
-
4208  0x02, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31,
-
4209  0x53, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x02,
-
4210  0x94, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x84, 0xfd, 0x86, 0x00,
-
4211  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x05,
-
4212  0x00, 0x0a, 0xb2, 0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31,
-
4213  0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x8c, 0xfe,
-
4214  0x70, 0x02, 0x7a, 0x84, 0xfd, 0x02, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70,
-
4215  0x02, 0x44, 0x01, 0x6e, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x04, 0x01, 0x00,
-
4216  0x00, 0x2f, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x15, 0x21, 0x11,
-
4217  0xb8, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0xfe, 0x84, 0xfd, 0x86,
-
4218  0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e, 0x00, 0x03,
-
4219  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35,
-
4220  0x21, 0x15, 0x50, 0x02, 0x94, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0,
-
4221  0x00, 0xea, 0x01, 0x3c, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
4222  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x50, 0x01,
-
4223  0x8c, 0xea, 0x84, 0x84, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44,
-
4224  0x01, 0xb0, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x04, 0x01, 0x05, 0x05, 0x00,
-
4225  0x00, 0x2f, 0x32, 0x11, 0x39, 0x39, 0x30, 0x31, 0x77, 0x35, 0x21, 0x35,
-
4226  0x21, 0x35, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x01, 0x8c, 0xa8,
-
4227  0x42, 0x84, 0x42, 0xfe, 0xf8, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0xea,
-
4228  0x01, 0xe4, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4229  0x00, 0x1f, 0x40, 0x0d, 0x0c, 0x08, 0x08, 0x04, 0x04, 0x0d, 0x09, 0x09,
-
4230  0x05, 0x05, 0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33,
-
4231  0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x35, 0x33,
-
4232  0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33,
-
4233  0x15, 0x10, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0x20, 0x5d, 0xea, 0x84, 0x84,
-
4234  0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x00, 0x04, 0x00, 0xb8, 0xfe, 0x9c,
-
4235  0x01, 0x3c, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0f,
-
4236  0x00, 0x18, 0x40, 0x0a, 0x0d, 0x0c, 0x09, 0x08, 0x05, 0x00, 0x01, 0x04,
-
4237  0x05, 0x12, 0x00, 0x3f, 0xdd, 0xde, 0xcd, 0x10, 0xde, 0xdd, 0xde, 0xcd,
-
4238  0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11,
-
4239  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84, 0x84, 0x84, 0x84, 0x84,
-
4240  0x84, 0x84, 0xfe, 0x9c, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
-
4241  0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06, 0xfe, 0xfa, 0x01, 0x5e, 0x01, 0x06,
-
4242  0xfe, 0xfa, 0x00, 0x01, 0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x01, 0x6e,
-
4243  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
4244  0x77, 0x35, 0x21, 0x15, 0xb8, 0x01, 0x8c, 0xea, 0x84, 0x84, 0x00, 0x03,
-
4245  0x00, 0x1c, 0x00, 0xea, 0x01, 0xd8, 0x01, 0x6e, 0x00, 0x03, 0x00, 0x07,
-
4246  0x00, 0x0b, 0x00, 0x17, 0x40, 0x09, 0x08, 0x04, 0x04, 0x09, 0x05, 0x05,
-
4247  0x01, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11,
-
4248  0x33, 0x30, 0x31, 0x77, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33,
-
4249  0x35, 0x33, 0x15, 0x1c, 0x6f, 0x37, 0x70, 0x37, 0x6f, 0xea, 0x84, 0x84,
-
4250  0x84, 0x84, 0x84, 0x84, 0x00, 0x03, 0x00, 0xb8, 0xfe, 0xbe, 0x01, 0x3c,
-
4251  0x03, 0x9a, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x0c, 0xb3, 0x04,
-
4252  0x05, 0x09, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
-
4253  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xb8, 0x84,
-
4254  0x84, 0x84, 0x84, 0x84, 0xfe, 0xbe, 0x01, 0x37, 0xfe, 0xc9, 0x01, 0xd2,
-
4255  0x01, 0x38, 0xfe, 0xc8, 0x01, 0xd3, 0x01, 0x37, 0xfe, 0xc9, 0x00, 0x01,
-
4256  0x00, 0xb8, 0x00, 0xea, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x08,
-
4257  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4258  0xb8, 0x84, 0xea, 0x02, 0xfe, 0xfd, 0x02, 0x00, 0x00, 0x01, 0x00, 0x76,
-
4259  0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x08, 0xb1, 0x03,
-
4260  0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4261  0x33, 0x11, 0x76, 0x42, 0x84, 0x42, 0xfe, 0x70, 0x02, 0xfe, 0x02, 0x7a,
-
4262  0xfd, 0x86, 0xfd, 0x02, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x02, 0x44,
-
4263  0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01, 0x03, 0x00,
-
4264  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11,
-
4265  0x33, 0x11, 0x21, 0x15, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08, 0xea, 0x84,
-
4266  0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
-
4267  0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00,
-
4268  0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x11, 0x33, 0x11,
-
4269  0x50, 0x01, 0x08, 0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01,
-
4270  0x00, 0xb8, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a,
-
4271  0xb2, 0x03, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11,
-
4272  0x33, 0x11, 0x21, 0x15, 0xb8, 0x84, 0x01, 0x08, 0xea, 0x02, 0xfe, 0xfd,
-
4273  0x86, 0x84, 0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
-
4274  0x00, 0x03, 0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4275  0x53, 0x11, 0x33, 0x11, 0xb8, 0x84, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88,
-
4276  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4277  0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00,
-
4278  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4279  0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0xb8, 0xfe,
-
4280  0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a,
-
4281  0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0,
-
4282  0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03,
-
4283  0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4284  0x53, 0x11, 0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4285  0x08, 0x84, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfa, 0x88, 0x00,
-
4286  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4287  0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4288  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11,
-
4289  0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0x86,
-
4290  0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4291  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x07, 0x00,
-
4292  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
4293  0x33, 0x35, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6,
-
4294  0xc6, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x42,
-
4295  0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0,
-
4296  0xfe, 0x70, 0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x02,
-
4297  0x03, 0x03, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4298  0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe,
-
4299  0xf8, 0x01, 0x08, 0x01, 0x8c, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84,
-
4300  0x42, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4301  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02,
-
4302  0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x77, 0x35,
-
4303  0x21, 0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4304  0x08, 0x84, 0x01, 0x08, 0xa8, 0x42, 0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe,
-
4305  0xf8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4306  0x00, 0x0b, 0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f,
-
4307  0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x11,
-
4308  0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84,
-
4309  0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd,
-
4310  0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4311  0x02, 0x44, 0x01, 0xb0, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x05, 0x05,
-
4312  0x02, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31,
-
4313  0x53, 0x11, 0x23, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6,
-
4314  0x01, 0xce, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x42, 0x84,
-
4315  0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8,
-
4316  0x00, 0x09, 0x00, 0x10, 0xb5, 0x05, 0x08, 0x08, 0x03, 0x01, 0x00, 0x00,
-
4317  0x2f, 0x32, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x67, 0x11, 0x33, 0x11,
-
4318  0x21, 0x11, 0x33, 0x15, 0x23, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xc6,
-
4319  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0x86, 0x84, 0x42, 0x00, 0x00, 0x01,
-
4320  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4321  0xb7, 0x07, 0x0a, 0x0a, 0x04, 0x01, 0x01, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4322  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4323  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01,
-
4324  0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd,
-
4325  0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4326  0x03, 0xe8, 0x00, 0x0d, 0x00, 0x0e, 0xb4, 0x05, 0x04, 0x04, 0x07, 0x00,
-
4327  0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35,
-
4328  0x23, 0x35, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0xb8, 0x42,
-
4329  0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x38, 0x42,
-
4330  0x84, 0x02, 0x7a, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x00, 0x01,
-
4331  0xff, 0xb0, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4332  0xb7, 0x08, 0x03, 0x09, 0x05, 0x01, 0x01, 0x03, 0x00, 0x00, 0x2f, 0x2f,
-
4333  0x32, 0x11, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11,
-
4334  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x50, 0x90, 0x84, 0x6c,
-
4335  0x84, 0x90, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86,
-
4336  0x84, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0xb4, 0x03, 0xe8,
-
4337  0x00, 0x09, 0x00, 0x12, 0xb6, 0x08, 0x03, 0x05, 0x01, 0x01, 0x03, 0x00,
-
4338  0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
-
4339  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x50, 0x90, 0x84, 0x6c,
-
4340  0x84, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x02, 0x00,
-
4341  0x00, 0x01, 0x00, 0x40, 0x00, 0xea, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09,
-
4342  0x00, 0x12, 0xb6, 0x06, 0x01, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x2f,
-
4343  0x2f, 0x32, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4344  0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x40, 0x84, 0x6c, 0x84, 0x90, 0xea,
-
4345  0x02, 0xfe, 0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x00, 0x01,
-
4346  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14,
-
4347  0xb7, 0x07, 0x03, 0x0a, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4348  0x39, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35,
-
4349  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11, 0xb8, 0xfe, 0xf8, 0xc6,
-
4350  0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4351  0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea,
-
4352  0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x05, 0x01, 0x01,
-
4353  0x03, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x11, 0x33, 0x30, 0x31, 0x67, 0x35,
-
4354  0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x50, 0xc6, 0x01, 0x08, 0xc6, 0xea,
-
4355  0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4356  0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x08, 0x03, 0x02,
-
4357  0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33, 0x30, 0x31,
-
4358  0x53, 0x11, 0x21, 0x35, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0xb8, 0xfe,
-
4359  0xf8, 0xc6, 0x01, 0x08, 0x42, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4360  0xfd, 0x02, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xea, 0x01, 0x7e,
-
4361  0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01, 0x03, 0x00, 0x00, 0x2f,
-
4362  0x2f, 0x32, 0x30, 0x31, 0x67, 0x35, 0x33, 0x11, 0x21, 0x11, 0x50, 0xc6,
-
4363  0x01, 0x08, 0xea, 0x84, 0x02, 0x7a, 0xfd, 0x02, 0x00, 0x01, 0x00, 0x76,
-
4364  0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x02,
-
4365  0x05, 0x08, 0x08, 0x03, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
4366  0x30, 0x31, 0x53, 0x11, 0x23, 0x11, 0x21, 0x11, 0x33, 0x15, 0x21, 0x11,
-
4367  0xb8, 0x42, 0x01, 0x08, 0xc6, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x7a, 0x02,
-
4368  0xfe, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0x00, 0x76, 0x00, 0xea,
-
4369  0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x03, 0x01, 0x00,
-
4370  0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4371  0x76, 0x01, 0x08, 0xc6, 0xea, 0x02, 0xfe, 0xfd, 0x86, 0x84, 0x00, 0x01,
-
4372  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08,
-
4373  0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4374  0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x76, 0xc6, 0x01, 0x08,
-
4375  0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38,
-
4376  0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8,
-
4377  0x02, 0x44, 0x03, 0xe8, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x05, 0x01,
-
4378  0x01, 0x00, 0x00, 0x2f, 0x32, 0x11, 0x33, 0x2f, 0x30, 0x31, 0x67, 0x11,
-
4379  0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x50, 0x01, 0x08, 0x84, 0x01, 0x08,
-
4380  0xa8, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0x00, 0x00, 0x01,
-
4381  0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08,
-
4382  0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x23, 0x11,
-
4383  0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x76, 0xc6, 0x01, 0x08, 0x84, 0x42,
-
4384  0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfc, 0xc0,
-
4385  0x00, 0x01, 0xff, 0xb0, 0x00, 0xa8, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x05,
-
4386  0x00, 0x0a, 0xb2, 0x03, 0x02, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31,
-
4387  0x67, 0x11, 0x21, 0x11, 0x33, 0x11, 0x50, 0x01, 0x08, 0x84, 0xa8, 0x01,
-
4388  0x08, 0x02, 0x38, 0xfc, 0xc0, 0x00, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70,
-
4389  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x08, 0xb1, 0x03, 0x00, 0x00,
-
4390  0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11,
-
4391  0x23, 0x11, 0x76, 0x42, 0x84, 0x01, 0x08, 0xc6, 0xfe, 0x70, 0x03, 0x40,
-
4392  0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01, 0x00, 0xb8,
-
4393  0x00, 0xa8, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x05, 0x00, 0x0a, 0xb2, 0x01,
-
4394  0x03, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x30, 0x31, 0x77, 0x11, 0x33, 0x11,
-
4395  0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xa8, 0x03, 0x40, 0xfd, 0xc8, 0xfe,
-
4396  0xf8, 0x00, 0x00, 0x02, 0xff, 0xb0, 0x00, 0x72, 0x02, 0x44, 0x03, 0xe8,
-
4397  0x00, 0x03, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x01, 0x09, 0x05, 0x05, 0x04,
-
4398  0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
-
4399  0x30, 0x31, 0x67, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x11, 0x33, 0x11,
-
4400  0x21, 0x15, 0x50, 0x02, 0x94, 0xfd, 0x6c, 0x01, 0x08, 0x84, 0x01, 0x08,
-
4401  0x72, 0x84, 0x84, 0xf0, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x00, 0x01,
-
4402  0xff, 0xb0, 0x00, 0x72, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10,
-
4403  0xb5, 0x01, 0x05, 0x04, 0x04, 0x07, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
-
4404  0x33, 0x32, 0x30, 0x31, 0x67, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21, 0x11,
-
4405  0x33, 0x11, 0x50, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x72, 0x84,
-
4406  0x6c, 0x84, 0x02, 0x02, 0xfc, 0x8a, 0x00, 0x01, 0x00, 0xb8, 0x00, 0x72,
-
4407  0x02, 0x44, 0x03, 0xe8, 0x00, 0x09, 0x00, 0x10, 0xb5, 0x07, 0x03, 0x06,
-
4408  0x06, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x32, 0x30, 0x31,
-
4409  0x77, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0xb8, 0x84,
-
4410  0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x72, 0x03, 0x76, 0xfd, 0xfe, 0x84,
-
4411  0x6c, 0x84, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4412  0x00, 0x13, 0x00, 0x1f, 0x40, 0x0d, 0x10, 0x0a, 0x05, 0x0b, 0x07, 0x03,
-
4413  0x0e, 0x12, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f,
-
4414  0x33, 0x33, 0x33, 0x11, 0x33, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53,
-
4415  0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33,
-
4416  0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c,
-
4417  0x84, 0x90, 0x90, 0x84, 0x6c, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4418  0xfd, 0x86, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x02, 0x7a, 0xfd,
-
4419  0x86, 0x00, 0x00, 0x02, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0xb4, 0x03, 0xe8,
-
4420  0x00, 0x07, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x08, 0x09, 0x05, 0x03, 0x02,
-
4421  0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32,
-
4422  0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4423  0x33, 0x11, 0x40, 0x90, 0x90, 0x84, 0x6c, 0x84, 0xfe, 0x70, 0x02, 0x7a,
-
4424  0x84, 0x02, 0x7a, 0xfa, 0x88, 0x05, 0x78, 0xfa, 0x88, 0x00, 0x00, 0x02,
-
4425  0x00, 0x40, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x03, 0x00, 0x0b,
-
4426  0x00, 0x14, 0xb7, 0x0b, 0x06, 0x01, 0x07, 0x0a, 0x0a, 0x01, 0x00, 0x00,
-
4427  0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x32, 0x30, 0x31, 0x53, 0x11,
-
4428  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x11, 0x40, 0x84,
-
4429  0x6c, 0x84, 0x90, 0x90, 0xfe, 0x70, 0x05, 0x78, 0xfa, 0x88, 0x05, 0x78,
-
4430  0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70,
-
4431  0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b, 0x00, 0x14, 0xb7, 0x07, 0x03, 0x0a,
-
4432  0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x2f, 0x33, 0x33,
-
4433  0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
-
4434  0x33, 0x15, 0x23, 0x11, 0x76, 0xc6, 0xc6, 0x01, 0x08, 0xc6, 0xc6, 0xfe,
-
4435  0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a, 0xfd, 0x86, 0x84, 0xfd, 0x86, 0x00,
-
4436  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x7e, 0x03, 0xe8, 0x00, 0x07,
-
4437  0x00, 0x0e, 0xb4, 0x03, 0x02, 0x02, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x39,
-
4438  0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x11, 0x21, 0x11,
-
4439  0x76, 0xc6, 0xc6, 0x01, 0x08, 0xfe, 0x70, 0x02, 0x7a, 0x84, 0x02, 0x7a,
-
4440  0xfa, 0x88, 0x00, 0x01, 0x00, 0x76, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8,
-
4441  0x00, 0x07, 0x00, 0x0e, 0xb4, 0x03, 0x06, 0x06, 0x01, 0x00, 0x00, 0x2f,
-
4442  0x2f, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x33, 0x15,
-
4443  0x23, 0x11, 0x76, 0x01, 0x08, 0xc6, 0xc6, 0xfe, 0x70, 0x05, 0x78, 0xfd,
-
4444  0x86, 0x84, 0xfd, 0x86, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44,
-
4445  0x03, 0xe8, 0x00, 0x0b, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f,
-
4446  0x30, 0x31, 0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11,
-
4447  0x21, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01, 0x08, 0xfe, 0xf8,
-
4448  0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfd, 0xc8, 0xfe, 0xf8,
-
4449  0xfd, 0xc8, 0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8,
-
4450  0x00, 0x07, 0x00, 0x08, 0xb1, 0x05, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4451  0x53, 0x11, 0x21, 0x11, 0x21, 0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01,
-
4452  0x08, 0x84, 0xfe, 0x70, 0x02, 0x38, 0x01, 0x08, 0x02, 0x38, 0xfa, 0x88,
-
4453  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x07,
-
4454  0x00, 0x08, 0xb1, 0x01, 0x00, 0x00, 0x2f, 0x2f, 0x30, 0x31, 0x53, 0x11,
-
4455  0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8,
-
4456  0xfe, 0x70, 0x05, 0x78, 0xfd, 0xc8, 0xfe, 0xf8, 0xfd, 0xc8, 0x00, 0x01,
-
4457  0xff, 0xb0, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x13, 0x00, 0x1d,
-
4458  0x40, 0x0c, 0x09, 0x0b, 0x08, 0x08, 0x0e, 0x05, 0x12, 0x01, 0x01, 0x0f,
-
4459  0x04, 0x00, 0x00, 0x2f, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x2f, 0x33, 0x33,
-
4460  0x11, 0x33, 0x2f, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21,
-
4461  0x35, 0x21, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21,
-
4462  0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0x84, 0x01,
-
4463  0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0xfe, 0x70, 0x02, 0x02, 0x84,
-
4464  0x6c, 0x84, 0x02, 0x02, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe, 0x00,
-
4465  0x00, 0x01, 0xff, 0xb0, 0xfe, 0x70, 0x01, 0x3c, 0x03, 0xe8, 0x00, 0x0b,
-
4466  0x00, 0x19, 0x40, 0x0a, 0x08, 0x05, 0x01, 0x04, 0x05, 0x04, 0x05, 0x04,
-
4467  0x09, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
4468  0x33, 0x30, 0x31, 0x53, 0x11, 0x21, 0x35, 0x21, 0x35, 0x21, 0x35, 0x21,
-
4469  0x11, 0x33, 0x11, 0xb8, 0xfe, 0xf8, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08,
-
4470  0x84, 0xfe, 0x70, 0x02, 0x02, 0x84, 0x6c, 0x84, 0x02, 0x02, 0xfa, 0x88,
-
4471  0x00, 0x01, 0x00, 0xb8, 0xfe, 0x70, 0x02, 0x44, 0x03, 0xe8, 0x00, 0x0b,
-
4472  0x00, 0x19, 0x40, 0x0a, 0x03, 0x06, 0x0a, 0x07, 0x06, 0x07, 0x06, 0x07,
-
4473  0x01, 0x00, 0x00, 0x2f, 0x2f, 0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x11,
-
4474  0x33, 0x30, 0x31, 0x53, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x21,
-
4475  0x15, 0x21, 0x11, 0xb8, 0x84, 0x01, 0x08, 0xfe, 0xf8, 0x01, 0x08, 0xfe,
-
4476  0xf8, 0xfe, 0x70, 0x05, 0x78, 0xfd, 0xfe, 0x84, 0x6c, 0x84, 0xfd, 0xfe,
-
4477  0x00, 0x05, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca, 0x02, 0x05, 0x00, 0x13,
-
4478  0x00, 0x27, 0x00, 0x36, 0x00, 0x42, 0x00, 0x4e, 0x00, 0x1b, 0x40, 0x09,
-
4479  0x2f, 0x28, 0x43, 0x37, 0x3d, 0x49, 0x06, 0x14, 0x00, 0xb8, 0x01, 0x40,
-
4480  0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30,
-
4481  0x31, 0x77, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
4482  0x02, 0x15, 0x14, 0x0e, 0x02, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e,
-
4483  0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x37, 0x32, 0x16,
-
4484  0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36,
-
4485  0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
4486  0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
4487  0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
4488  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b,
-
4489  0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x1e, 0x38, 0x12,
-
4490  0x15, 0x13, 0x2a, 0x16, 0x10, 0x1e, 0x18, 0x09, 0x1b, 0x16, 0x36, 0x25,
-
4491  0x0d, 0x14, 0x14, 0x0d, 0x0c, 0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c,
-
4492  0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
-
4493  0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c,
-
4494  0x21, 0x22, 0x3a, 0x2d, 0x19, 0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c,
-
4495  0x1a, 0x90, 0x1f, 0x1a, 0x20, 0x1a, 0x18, 0x0d, 0x16, 0x0f, 0x22, 0x1b,
-
4496  0x1c, 0x1c, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4497  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x00, 0x05, 0x00, 0x29, 0x00, 0x63,
-
4498  0x01, 0xca, 0x02, 0x05, 0x00, 0x13, 0x00, 0x27, 0x00, 0x37, 0x00, 0x43,
-
4499  0x00, 0x4f, 0x00, 0x1b, 0x40, 0x09, 0x28, 0x30, 0x44, 0x38, 0x4a, 0x3e,
-
4500  0x06, 0x14, 0x00, 0xb8, 0x01, 0x40, 0xb1, 0x1e, 0x0a, 0x00, 0x2f, 0x33,
-
4501  0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02, 0x35,
-
4502  0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x27,
-
4503  0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
4504  0x14, 0x1e, 0x02, 0x37, 0x22, 0x26, 0x27, 0x37, 0x1e, 0x02, 0x33, 0x32,
-
4505  0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x26, 0x35, 0x34, 0x36,
-
4506  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36,
-
4507  0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xf9, 0x2b, 0x4c, 0x39, 0x20, 0x20,
-
4508  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x22,
-
4509  0x3b, 0x2d, 0x19, 0x19, 0x2d, 0x3b, 0x22, 0x21, 0x3b, 0x2d, 0x19, 0x19,
-
4510  0x2d, 0x3b, 0x22, 0x1e, 0x37, 0x15, 0x1a, 0x09, 0x19, 0x1d, 0x11, 0x0f,
-
4511  0x1c, 0x1b, 0x0c, 0x16, 0x13, 0x38, 0x60, 0x0d, 0x14, 0x14, 0x0d, 0x0c,
-
4512  0x14, 0x14, 0x7a, 0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x14, 0x14, 0x63, 0x21,
-
4513  0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2b, 0x2b,
-
4514  0x4c, 0x39, 0x21, 0x2e, 0x1a, 0x2c, 0x3c, 0x21, 0x22, 0x3a, 0x2d, 0x19,
-
4515  0x19, 0x2d, 0x3a, 0x22, 0x21, 0x3c, 0x2c, 0x1a, 0x2d, 0x1d, 0x1a, 0x22,
-
4516  0x0e, 0x17, 0x0c, 0x0b, 0x16, 0x10, 0x20, 0x19, 0x20, 0x7f, 0x14, 0x0c,
-
4517  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4518  0x0c, 0x14, 0x00, 0x04, 0x00, 0x28, 0x00, 0x63, 0x01, 0xc9, 0x02, 0x05,
-
4519  0x00, 0x13, 0x00, 0x23, 0x00, 0x2f, 0x00, 0x3b, 0x00, 0x16, 0xb7, 0x14,
-
4520  0x1c, 0x30, 0x24, 0x2a, 0x36, 0x06, 0x00, 0xb8, 0x01, 0x40, 0xb0, 0x0a,
-
4521  0x00, 0x2f, 0x1a, 0xcc, 0x17, 0x39, 0x30, 0x31, 0x77, 0x22, 0x2e, 0x02,
-
4522  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02,
-
4523  0x27, 0x32, 0x36, 0x37, 0x27, 0x0e, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27,
-
4524  0x07, 0x16, 0x16, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
-
4525  0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06,
-
4526  0x15, 0x14, 0x16, 0xf8, 0x2b, 0x4c, 0x39, 0x20, 0x20, 0x39, 0x4c, 0x2b,
-
4527  0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c, 0x2a, 0x1e, 0x37, 0x14, 0x17,
-
4528  0x0c, 0x1a, 0x1d, 0x0f, 0x10, 0x1e, 0x19, 0x09, 0x1a, 0x15, 0x37, 0x25,
-
4529  0x0c, 0x14, 0x14, 0x0c, 0x0d, 0x13, 0x13, 0x94, 0x0c, 0x14, 0x14, 0x0c,
-
4530  0x0d, 0x14, 0x14, 0x63, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21,
-
4531  0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39, 0x21, 0x5b, 0x20, 0x19, 0x20,
-
4532  0x10, 0x16, 0x0b, 0x0c, 0x17, 0x0e, 0x22, 0x1a, 0x1d, 0x7f, 0x14, 0x0c,
-
4533  0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x0c, 0x14, 0x14, 0x0c,
-
4534  0x0c, 0x14, 0x00, 0x02, 0x00, 0x0d, 0x00, 0x00, 0x01, 0xe7, 0x02, 0x59,
-
4535  0x00, 0x0b, 0x00, 0x29, 0x00, 0x17, 0x40, 0x09, 0x1b, 0x18, 0x0b, 0x1d,
-
4536  0x1d, 0x06, 0x0c, 0x07, 0x06, 0x00, 0x2f, 0x33, 0x2f, 0x12, 0x39, 0x2f,
-
4537  0x33, 0x33, 0x33, 0x30, 0x31, 0x65, 0x1e, 0x02, 0x17, 0x17, 0x21, 0x37,
-
4538  0x3e, 0x02, 0x35, 0x13, 0x1e, 0x06, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22,
-
4539  0x27, 0x23, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x05, 0x35,
-
4540  0x01, 0x09, 0x01, 0x1d, 0x3f, 0x34, 0x03, 0xfe, 0xba, 0x03, 0x37, 0x40,
-
4541  0x1c, 0x21, 0x02, 0x1a, 0x27, 0x2d, 0x2d, 0x25, 0x17, 0x1d, 0x30, 0x1e,
-
4542  0x55, 0x2b, 0x04, 0x2b, 0x55, 0x1d, 0x31, 0x1d, 0x18, 0x26, 0x2f, 0x2e,
-
4543  0x26, 0x18, 0xfa, 0x4e, 0x64, 0x32, 0x04, 0x12, 0x12, 0x03, 0x31, 0x65,
-
4544  0x4f, 0x01, 0x5f, 0x24, 0x35, 0x2a, 0x25, 0x27, 0x2d, 0x3b, 0x27, 0x23,
-
4545  0x35, 0x1d, 0x37, 0x37, 0x1d, 0x35, 0x23, 0x27, 0x3b, 0x2d, 0x27, 0x25,
-
4546  0x2a, 0x35, 0x24, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x01, 0xef,
-
4547  0x02, 0x49, 0x00, 0x06, 0x00, 0x2a, 0x00, 0x31, 0x00, 0x25, 0x40, 0x10,
-
4548  0x2c, 0x12, 0x0f, 0x0f, 0x06, 0x15, 0x15, 0x24, 0x2f, 0x30, 0x30, 0x01,
-
4549  0x03, 0x02, 0x02, 0x01, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4550  0x33, 0x2f, 0x33, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x33, 0x30, 0x31, 0x77,
-
4551  0x15, 0x23, 0x37, 0x36, 0x36, 0x35, 0x37, 0x32, 0x16, 0x16, 0x15, 0x14,
-
4552  0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26,
-
4553  0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33,
-
4554  0x32, 0x16, 0x16, 0x15, 0x14, 0x07, 0x07, 0x33, 0x14, 0x16, 0x17, 0x17,
-
4555  0x23, 0xfa, 0x5e, 0x03, 0x20, 0x19, 0x98, 0x23, 0x3a, 0x22, 0x22, 0x3a,
-
4556  0x23, 0x28, 0x40, 0x0e, 0x0e, 0x3f, 0x28, 0x23, 0x3b, 0x22, 0x22, 0x3b,
-
4557  0x23, 0x05, 0x10, 0x22, 0x3b, 0x23, 0x23, 0x3a, 0x22, 0x10, 0x6f, 0x22,
-
4558  0x19, 0x20, 0x03, 0x5e, 0xfa, 0xfa, 0x12, 0x04, 0x6d, 0x77, 0x91, 0x22,
-
4559  0x3a, 0x23, 0x23, 0x3b, 0x22, 0x2c, 0x22, 0x22, 0x2c, 0x22, 0x3b, 0x23,
-
4560  0x23, 0x3a, 0x22, 0x1d, 0x22, 0x23, 0x3a, 0x22, 0x22, 0x3a, 0x23, 0x22,
-
4561  0x1d, 0x91, 0x77, 0x6d, 0x04, 0x12, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x00,
-
4562  0x01, 0xe8, 0x02, 0x4f, 0x00, 0x21, 0x00, 0x13, 0xb2, 0x1d, 0x19, 0x0d,
-
4563  0xb8, 0xff, 0xff, 0xb2, 0x72, 0x19, 0x00, 0x00, 0x2f, 0x32, 0x2b, 0x11,
-
4564  0x39, 0x30, 0x31, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x05, 0x15,
-
4565  0x23, 0x34, 0x2e, 0x05, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16,
-
4566  0x15, 0x33, 0x34, 0x36, 0x36, 0x01, 0x76, 0x20, 0x33, 0x1f, 0x18, 0x26,
-
4567  0x2f, 0x2f, 0x26, 0x18, 0x28, 0x18, 0x26, 0x2f, 0x2f, 0x26, 0x18, 0x1f,
-
4568  0x34, 0x1f, 0x22, 0x36, 0x1f, 0x0a, 0x23, 0x37, 0x02, 0x4f, 0x20, 0x38,
-
4569  0x24, 0x30, 0x4b, 0x3d, 0x36, 0x36, 0x3b, 0x47, 0x2d, 0x2d, 0x47, 0x3b,
-
4570  0x36, 0x36, 0x3d, 0x4b, 0x30, 0x24, 0x38, 0x20, 0x1a, 0x33, 0x25, 0x25,
-
4571  0x32, 0x1b, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x01, 0x01, 0xe5, 0x02, 0x5c,
-
4572  0x00, 0x07, 0x00, 0x08, 0xb1, 0x00, 0x04, 0x00, 0x2f, 0x2f, 0x30, 0x31,
-
4573  0x53, 0x33, 0x13, 0x15, 0x03, 0x23, 0x03, 0x35, 0xf0, 0x1e, 0xd7, 0xd7,
-
4574  0x1e, 0xe1, 0x02, 0x5c, 0xfe, 0xe6, 0x1e, 0xfe, 0xdd, 0x01, 0x23, 0x1e,
-
4575  0x00, 0x01, 0x00, 0x09, 0xff, 0xf0, 0x01, 0xd6, 0x02, 0x77, 0x00, 0x0d,
-
4576  0x00, 0x0f, 0xb6, 0x09, 0x07, 0x08, 0x01, 0x04, 0x06, 0x00, 0x00, 0x2f,
-
4577  0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x03, 0x07, 0x27, 0x37,
-
4578  0x17, 0x3e, 0x03, 0x01, 0x72, 0x64, 0x16, 0x44, 0x54, 0x5a, 0x2d, 0x98,
-
4579  0x41, 0x57, 0x21, 0x3d, 0x35, 0x2c, 0x02, 0x77, 0x1e, 0x64, 0xb4, 0x9c,
-
4580  0x82, 0x33, 0xa9, 0x38, 0x6b, 0x2f, 0x6c, 0x7f, 0x9a, 0x00, 0x00, 0x01,
-
4581  0x00, 0x00, 0x00, 0x00, 0x01, 0xf2, 0x02, 0x79, 0x00, 0x0e, 0x00, 0x12,
-
4582  0x40, 0x09, 0x06, 0x09, 0x0a, 0x07, 0x08, 0x01, 0x06, 0x05, 0x00, 0x00,
-
4583  0x2f, 0x2f, 0x17, 0x39, 0x30, 0x31, 0x41, 0x17, 0x0e, 0x02, 0x07, 0x27,
-
4584  0x27, 0x37, 0x17, 0x27, 0x3e, 0x03, 0x01, 0x7e, 0x74, 0x27, 0x72, 0x87,
-
4585  0x47, 0x5a, 0x31, 0x71, 0x31, 0x4c, 0x21, 0x4f, 0x52, 0x4a, 0x02, 0x79,
-
4586  0x27, 0x85, 0xdc, 0xaf, 0x42, 0x30, 0xf3, 0x19, 0xfd, 0x1f, 0x22, 0x67,
-
4587  0x88, 0xa7, 0xff, 0xff, 0x00, 0x50, 0x00, 0x90, 0x01, 0xb3, 0x02, 0x00,
-
4588  0x06, 0x06, 0x02, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x0c,
-
4589  0x01, 0xf4, 0x02, 0x75, 0x00, 0x09, 0x00, 0x12, 0x00, 0x0a, 0xb2, 0x0a,
-
4590  0x0e, 0x00, 0x00, 0x2f, 0x2f, 0x32, 0x30, 0x31, 0x77, 0x27, 0x3e, 0x02,
-
4591  0x37, 0x17, 0x0e, 0x02, 0x17, 0x26, 0x02, 0x27, 0x37, 0x1e, 0x02, 0x17,
-
4592  0x45, 0x45, 0x40, 0x8a, 0x9e, 0x5a, 0x32, 0x58, 0x96, 0x83, 0xf1, 0x4f,
-
4593  0x71, 0x23, 0x54, 0x16, 0x3b, 0x4f, 0x34, 0x0c, 0x39, 0x60, 0xac, 0xa6,
-
4594  0x58, 0x3c, 0x51, 0xa7, 0xb0, 0x5d, 0x76, 0x01, 0x26, 0xb2, 0x19, 0x6f,
-
4595  0xc4, 0xa8, 0x48, 0x00, 0x00, 0x02, 0x00, 0x04, 0xff, 0xfd, 0x02, 0x0b,
-
4596  0x02, 0x91, 0x00, 0x0d, 0x00, 0x17, 0x00, 0x0e, 0xb4, 0x00, 0x0e, 0x06,
-
4597  0x14, 0x0e, 0x00, 0x2f, 0x2f, 0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x27,
-
4598  0x3e, 0x03, 0x37, 0x17, 0x0e, 0x05, 0x17, 0x2e, 0x03, 0x27, 0x37, 0x16,
-
4599  0x12, 0x17, 0x6a, 0x66, 0x37, 0x66, 0x66, 0x70, 0x43, 0x51, 0x31, 0x51,
-
4600  0x46, 0x3e, 0x3c, 0x3d, 0xea, 0x2e, 0x4e, 0x42, 0x33, 0x12, 0x77, 0x20,
-
4601  0x6f, 0x56, 0x06, 0x53, 0x50, 0x8c, 0x7d, 0x76, 0x3b, 0x4e, 0x2c, 0x54,
-
4602  0x52, 0x53, 0x57, 0x5e, 0x3e, 0x39, 0x86, 0x9b, 0xae, 0x61, 0x2b, 0xa6,
-
4603  0xfe, 0xe0, 0x80, 0x00, 0x00, 0x02, 0x00, 0x1d, 0xff, 0xf5, 0x01, 0xd4,
-
4604  0x02, 0x79, 0x00, 0x32, 0x00, 0x3e, 0x00, 0x29, 0x40, 0x14, 0x38, 0x1e,
-
4605  0x33, 0x15, 0x11, 0x11, 0x15, 0x1e, 0x15, 0x1e, 0x15, 0x00, 0x22, 0x0a,
-
4606  0x03, 0x72, 0x2c, 0x00, 0x09, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12,
-
4607  0x39, 0x39, 0x2f, 0x2f, 0x11, 0x33, 0x2f, 0x11, 0x33, 0x11, 0x33, 0x30,
-
4608  0x31, 0x45, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e,
-
4609  0x02, 0x15, 0x15, 0x23, 0x35, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35,
-
4610  0x34, 0x3e, 0x02, 0x17, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0e, 0x02, 0x15,
-
4611  0x14, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x32,
-
4612  0x3e, 0x02, 0x35, 0x26, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x27, 0x32,
-
4613  0x60, 0x4b, 0x2d, 0x2a, 0x46, 0x56, 0x2c, 0x28, 0x48, 0x36, 0x1f, 0x46,
-
4614  0x11, 0x2e, 0x1d, 0x26, 0x3c, 0x22, 0x1a, 0x37, 0x54, 0x38, 0x1f, 0x38,
-
4615  0x28, 0x22, 0x3e, 0x30, 0x1c, 0x22, 0x3b, 0x49, 0x27, 0x1c, 0x36, 0x19,
-
4616  0x20, 0x20, 0x4a, 0x11, 0x15, 0x1f, 0x14, 0x0a, 0x35, 0x44, 0x22, 0x24,
-
4617  0x0b, 0x27, 0x50, 0x7a, 0x54, 0x52, 0x79, 0x4e, 0x26, 0x1c, 0x39, 0x58,
-
4618  0x3a, 0xe5, 0x23, 0x15, 0x16, 0x22, 0x3d, 0x26, 0x23, 0x39, 0x29, 0x14,
-
4619  0x03, 0x25, 0x38, 0x20, 0x1d, 0x3e, 0x5e, 0x41, 0x46, 0x65, 0x42, 0x20,
-
4620  0x11, 0x12, 0x38, 0x15, 0x17, 0xee, 0x11, 0x26, 0x3e, 0x2d, 0x04, 0x14,
-
4621  0x29, 0x1d, 0x24, 0x28, 0x00, 0x03, 0x00, 0x22, 0xff, 0xf3, 0x01, 0xe3,
-
4622  0x02, 0x76, 0x00, 0x2e, 0x00, 0x3d, 0x00, 0x4d, 0x00, 0x23, 0x40, 0x15,
-
4623  0x01, 0x33, 0x2d, 0x20, 0x34, 0x1f, 0x0e, 0x3e, 0x08, 0x05, 0x46, 0x16,
-
4624  0x03, 0x72, 0x2f, 0x05, 0x09, 0x72, 0x2e, 0x00, 0x09, 0x00, 0x3f, 0x32,
-
4625  0x2b, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x45, 0x27, 0x0e,
-
4626  0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x37, 0x26, 0x26,
-
4627  0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x02,
-
4628  0x07, 0x17, 0x3e, 0x03, 0x37, 0x34, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x07,
-
4629  0x17, 0x25, 0x32, 0x36, 0x36, 0x37, 0x27, 0x0e, 0x03, 0x15, 0x14, 0x1e,
-
4630  0x02, 0x13, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15,
-
4631  0x14, 0x16, 0x16, 0x01, 0x9b, 0x35, 0x14, 0x35, 0x3c, 0x20, 0x2f, 0x48,
-
4632  0x28, 0x11, 0x1f, 0x2e, 0x1c, 0x23, 0x21, 0x16, 0x27, 0x33, 0x1d, 0x29,
-
4633  0x3d, 0x23, 0x10, 0x1c, 0x26, 0x17, 0x69, 0x0b, 0x0f, 0x0a, 0x05, 0x01,
-
4634  0x02, 0x03, 0x46, 0x0b, 0x18, 0x19, 0x0e, 0x42, 0xfe, 0xee, 0x16, 0x27,
-
4635  0x25, 0x10, 0x76, 0x13, 0x1c, 0x14, 0x0b, 0x0d, 0x16, 0x1d, 0x26, 0x11,
-
4636  0x1a, 0x12, 0x09, 0x23, 0x1a, 0x12, 0x1d, 0x11, 0x0b, 0x1a, 0x0d, 0x54,
-
4637  0x19, 0x25, 0x13, 0x29, 0x46, 0x2a, 0x20, 0x39, 0x33, 0x2c, 0x10, 0x2a,
-
4638  0x4d, 0x23, 0x1c, 0x31, 0x24, 0x14, 0x27, 0x3c, 0x22, 0x1a, 0x33, 0x2c,
-
4639  0x25, 0x0c, 0x92, 0x0d, 0x18, 0x17, 0x17, 0x0c, 0x03, 0x06, 0x03, 0x30,
-
4640  0x15, 0x27, 0x25, 0x13, 0x55, 0x17, 0x0f, 0x1c, 0x13, 0xa3, 0x0b, 0x1f,
-
4641  0x23, 0x25, 0x13, 0x14, 0x21, 0x19, 0x0e, 0x01, 0x3d, 0x09, 0x18, 0x1f,
-
4642  0x21, 0x0f, 0x1e, 0x29, 0x11, 0x1e, 0x14, 0x0f, 0x24, 0x29, 0x00, 0x01,
-
4643  0x00, 0x38, 0xff, 0xbc, 0x01, 0xbd, 0x02, 0x99, 0x00, 0x10, 0x00, 0x10,
-
4644  0xb6, 0x0d, 0x00, 0x0f, 0x0a, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b, 0x32,
-
4645  0x11, 0x33, 0x30, 0x31, 0x57, 0x11, 0x2e, 0x03, 0x35, 0x34, 0x36, 0x36,
-
4646  0x33, 0x33, 0x11, 0x23, 0x11, 0x23, 0x11, 0xe6, 0x24, 0x41, 0x2e, 0x1b,
-
4647  0x2f, 0x6c, 0x5d, 0x8d, 0x48, 0x46, 0x44, 0x01, 0x84, 0x04, 0x1d, 0x31,
-
4648  0x3f, 0x24, 0x2b, 0x4b, 0x2e, 0xfd, 0x23, 0x02, 0x9a, 0xfd, 0x66, 0x00,
-
4649  0x00, 0x02, 0x00, 0x3c, 0xff, 0xc9, 0x01, 0xa5, 0x02, 0xa2, 0x00, 0x4c,
-
4650  0x00, 0x63, 0x00, 0x1e, 0x40, 0x12, 0x12, 0x48, 0x45, 0x4d, 0x51, 0x1a,
-
4651  0x57, 0x1f, 0x22, 0x37, 0x0a, 0x00, 0x33, 0x26, 0x01, 0x72, 0x0d, 0x00,
-
4652  0x00, 0x2f, 0x32, 0x2b, 0x32, 0x12, 0x17, 0x39, 0x30, 0x31, 0x57, 0x22,
-
4653  0x26, 0x27, 0x37, 0x1e, 0x03, 0x17, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
4654  0x35, 0x34, 0x26, 0x26, 0x27, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x37,
-
4655  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07,
-
4656  0x26, 0x26, 0x27, 0x2e, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1e,
-
4657  0x02, 0x17, 0x1e, 0x03, 0x15, 0x14, 0x06, 0x06, 0x07, 0x16, 0x16, 0x15,
-
4658  0x14, 0x0e, 0x02, 0x13, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02, 0x27, 0x27,
-
4659  0x0e, 0x03, 0x15, 0x14, 0x1e, 0x02, 0x17, 0x16, 0x16, 0xee, 0x34, 0x5e,
-
4660  0x20, 0x39, 0x06, 0x02, 0x02, 0x0a, 0x0e, 0x0b, 0x18, 0x1e, 0x11, 0x16,
-
4661  0x24, 0x17, 0x0d, 0x13, 0x2f, 0x2b, 0x33, 0x3f, 0x1c, 0x0b, 0x15, 0x1d,
-
4662  0x12, 0x20, 0x21, 0x2c, 0x4b, 0x30, 0x22, 0x3d, 0x31, 0x11, 0x40, 0x02,
-
4663  0x04, 0x01, 0x02, 0x10, 0x17, 0x1e, 0x12, 0x16, 0x26, 0x15, 0x10, 0x23,
-
4664  0x36, 0x25, 0x17, 0x24, 0x1c, 0x0f, 0x12, 0x20, 0x15, 0x1e, 0x1f, 0x1a,
-
4665  0x2e, 0x40, 0x1f, 0x0b, 0x0d, 0x07, 0x0c, 0x19, 0x25, 0x19, 0x27, 0x09,
-
4666  0x0e, 0x0b, 0x05, 0x0b, 0x17, 0x25, 0x19, 0x10, 0x19, 0x37, 0x2b, 0x2c,
-
4667  0x49, 0x01, 0x07, 0x0b, 0x13, 0x0d, 0x0b, 0x0d, 0x08, 0x0b, 0x14, 0x1a,
-
4668  0x0f, 0x15, 0x1e, 0x1a, 0x0c, 0x11, 0x26, 0x30, 0x1e, 0x11, 0x1d, 0x1c,
-
4669  0x15, 0x06, 0x13, 0x37, 0x25, 0x27, 0x42, 0x29, 0x16, 0x2a, 0x1e, 0x38,
-
4670  0x03, 0x06, 0x04, 0x0d, 0x18, 0x13, 0x0b, 0x13, 0x1f, 0x14, 0x14, 0x1c,
-
4671  0x16, 0x17, 0x0e, 0x09, 0x19, 0x1e, 0x24, 0x15, 0x14, 0x27, 0x1d, 0x09,
-
4672  0x16, 0x36, 0x20, 0x22, 0x39, 0x29, 0x18, 0x01, 0x1f, 0x07, 0x11, 0x16,
-
4673  0x0d, 0x10, 0x18, 0x15, 0x12, 0x09, 0x0e, 0x03, 0x0c, 0x0f, 0x12, 0x0a,
-
4674  0x0f, 0x19, 0x14, 0x11, 0x08, 0x05, 0x08, 0x00, 0x00, 0x03, 0x00, 0x0b,
-
4675  0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x25, 0x00, 0x3a, 0x00, 0x4e,
-
4676  0x00, 0x18, 0xb6, 0x00, 0x1e, 0x15, 0x09, 0x04, 0x45, 0x30, 0xb8, 0x01,
-
4677  0xc0, 0xb1, 0x3b, 0x26, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39,
-
4678  0x30, 0x31, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
-
4679  0x16, 0x17, 0x07, 0x26, 0x34, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22,
-
4680  0x0e, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17,
-
4681  0x06, 0x06, 0x07, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32,
-
4682  0x1e, 0x02, 0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34,
-
4683  0x2e, 0x02, 0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x02,
-
4684  0x29, 0x40, 0x26, 0x17, 0x27, 0x31, 0x1a, 0x37, 0x44, 0x0b, 0x3b, 0x04,
-
4685  0x01, 0x09, 0x0e, 0x07, 0x15, 0x0b, 0x0c, 0x1b, 0x19, 0x10, 0x16, 0x26,
-
4686  0x18, 0x0e, 0x1b, 0x14, 0x06, 0x33, 0x14, 0x42, 0x2c, 0x32, 0x57, 0x43,
-
4687  0x25, 0x26, 0x43, 0x58, 0x32, 0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d,
-
4688  0x4a, 0x26, 0x28, 0x47, 0x35, 0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46,
-
4689  0x35, 0x1f, 0x1f, 0x35, 0x46, 0x7c, 0x29, 0x47, 0x28, 0x20, 0x34, 0x28,
-
4690  0x16, 0x35, 0x2b, 0x13, 0x06, 0x09, 0x0a, 0x0d, 0x0a, 0x05, 0x06, 0x0a,
-
4691  0x14, 0x21, 0x16, 0x1c, 0x2c, 0x1b, 0x0a, 0x13, 0x0d, 0x1e, 0x21, 0x25,
-
4692  0x69, 0x28, 0x46, 0x5d, 0x34, 0x35, 0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c,
-
4693  0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a, 0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a,
-
4694  0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d, 0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00,
-
4695  0x00, 0x04, 0x00, 0x0b, 0x00, 0x13, 0x01, 0xf2, 0x02, 0x11, 0x00, 0x0e,
-
4696  0x00, 0x17, 0x00, 0x2c, 0x00, 0x40, 0x00, 0x1c, 0x40, 0x0a, 0x00, 0x03,
-
4697  0x02, 0x0d, 0x0f, 0x17, 0x05, 0x07, 0x37, 0x22, 0xb8, 0x01, 0xc0, 0xb1,
-
4698  0x2d, 0x18, 0x00, 0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x30, 0x31,
-
4699  0x65, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
4700  0x06, 0x07, 0x17, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23,
-
4701  0x13, 0x22, 0x2e, 0x02, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x1e, 0x02,
-
4702  0x15, 0x14, 0x0e, 0x03, 0x27, 0x32, 0x3e, 0x02, 0x35, 0x34, 0x2e, 0x02,
-
4703  0x23, 0x22, 0x0e, 0x02, 0x15, 0x14, 0x1e, 0x02, 0x01, 0x3f, 0x39, 0x37,
-
4704  0x33, 0x5b, 0x2b, 0x34, 0x18, 0x1b, 0x1b, 0x3c, 0xa5, 0x2d, 0x1f, 0x1f,
-
4705  0x20, 0x21, 0x2a, 0x2d, 0x32, 0x57, 0x43, 0x25, 0x26, 0x43, 0x58, 0x32,
-
4706  0x32, 0x58, 0x43, 0x27, 0x19, 0x2d, 0x3d, 0x4a, 0x26, 0x28, 0x47, 0x35,
-
4707  0x1e, 0x1f, 0x35, 0x46, 0x28, 0x27, 0x46, 0x35, 0x1f, 0x1f, 0x35, 0x46,
-
4708  0x87, 0x77, 0x74, 0x01, 0x19, 0x15, 0x25, 0x19, 0x18, 0x2a, 0x08, 0x77,
-
4709  0x99, 0x14, 0x13, 0x13, 0x14, 0xfe, 0x9d, 0x28, 0x46, 0x5d, 0x34, 0x35,
-
4710  0x5c, 0x46, 0x28, 0x28, 0x46, 0x5c, 0x35, 0x2b, 0x4c, 0x40, 0x2e, 0x1a,
-
4711  0x30, 0x21, 0x38, 0x4c, 0x2b, 0x2a, 0x4c, 0x38, 0x22, 0x21, 0x38, 0x4d,
-
4712  0x2b, 0x2b, 0x4b, 0x39, 0x20, 0x00, 0x00, 0x02, 0x00, 0x12, 0x01, 0x40,
-
4713  0x01, 0xe3, 0x02, 0x7b, 0x00, 0x07, 0x00, 0x14, 0x00, 0x2b, 0x40, 0x15,
-
4714  0x0c, 0x09, 0x09, 0x06, 0x02, 0x02, 0x0b, 0x13, 0x10, 0x03, 0x12, 0x12,
-
4715  0x00, 0x0f, 0x08, 0x08, 0x00, 0x00, 0x03, 0x03, 0x72, 0x00, 0x2b, 0x32,
-
4716  0x2f, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x17, 0x39, 0x32, 0x11, 0x33,
-
4717  0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x11, 0x23, 0x35, 0x33, 0x15, 0x23,
-
4718  0x11, 0x33, 0x11, 0x33, 0x17, 0x37, 0x33, 0x11, 0x23, 0x35, 0x07, 0x23,
-
4719  0x27, 0x15, 0x64, 0x52, 0xdc, 0x54, 0x6d, 0x2a, 0x43, 0x47, 0x28, 0x34,
-
4720  0x33, 0x14, 0x2e, 0x01, 0x40, 0x01, 0x0b, 0x30, 0x30, 0xfe, 0xf5, 0x01,
-
4721  0x3b, 0x8b, 0x8b, 0xfe, 0xc5, 0xc9, 0x5f, 0x5e, 0xc8, 0x00, 0x00, 0x02,
-
4722  0x00, 0x75, 0x01, 0x76, 0x01, 0x8b, 0x02, 0x88, 0x00, 0x10, 0x00, 0x20,
-
4723  0x00, 0x10, 0xb6, 0x11, 0x00, 0xc0, 0x19, 0x09, 0x03, 0x72, 0x00, 0x2b,
-
4724  0x32, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34,
-
4725  0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
4726  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
4727  0x16, 0x16, 0x01, 0x00, 0x26, 0x40, 0x25, 0x17, 0x26, 0x32, 0x1c, 0x26,
-
4728  0x3f, 0x26, 0x25, 0x3f, 0x27, 0x14, 0x1e, 0x12, 0x12, 0x1d, 0x14, 0x13,
-
4729  0x1f, 0x12, 0x12, 0x1f, 0x01, 0x76, 0x25, 0x3e, 0x26, 0x1d, 0x32, 0x25,
-
4730  0x15, 0x26, 0x3e, 0x25, 0x25, 0x3e, 0x26, 0x40, 0x14, 0x22, 0x14, 0x14,
-
4731  0x22, 0x15, 0x15, 0x22, 0x14, 0x14, 0x22, 0x14, 0x00, 0x01, 0x00, 0xca,
-
4732  0x02, 0x05, 0x01, 0x30, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
-
4733  0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xfc, 0x32,
-
4734  0x17, 0x4f, 0x02, 0x05, 0xb8, 0x00, 0xff, 0xff, 0x00, 0x8c, 0x02, 0x05,
-
4735  0x01, 0x76, 0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x46, 0x00, 0x00, 0x06,
-
4736  0x03, 0x55, 0xc2, 0x00, 0x00, 0x01, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
-
4737  0x02, 0x8c, 0x00, 0x03, 0x00, 0x0a, 0xb3, 0x01, 0x03, 0x72, 0x00, 0x00,
-
4738  0x2f, 0x2b, 0x30, 0x31, 0x57, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x97, 0x03,
-
4739  0x23, 0xfc, 0xdd, 0x00, 0x00, 0x02, 0x00, 0xd3, 0xff, 0x69, 0x01, 0x22,
-
4740  0x02, 0x8c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0e, 0xb5, 0x05, 0x04, 0x00,
-
4741  0x01, 0x03, 0x72, 0x00, 0x2b, 0x32, 0x2f, 0x33, 0x30, 0x31, 0x53, 0x11,
-
4742  0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0xd3, 0x4f, 0x4f, 0x4f, 0x01, 0x23,
-
4743  0x01, 0x69, 0xfe, 0x97, 0xfe, 0x46, 0x01, 0x5e, 0xfe, 0xa2, 0x00, 0x01,
-
4744  0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x0b, 0x00, 0x18,
-
4745  0x40, 0x0a, 0x07, 0x03, 0x0a, 0x02, 0x02, 0x03, 0x03, 0x05, 0x01, 0x00,
-
4746  0x00, 0x2f, 0x3f, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31,
-
4747  0x57, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11,
-
4748  0xd2, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0x97, 0x02, 0x1f, 0x46, 0xbe, 0xbe,
-
4749  0x46, 0xfd, 0xe1, 0x00, 0x00, 0x02, 0x00, 0x12, 0xff, 0xf8, 0x01, 0xb8,
-
4750  0x02, 0xac, 0x00, 0x2d, 0x00, 0x3a, 0x00, 0x20, 0x40, 0x11, 0x11, 0x28,
-
4751  0x1a, 0x37, 0x04, 0x1f, 0x05, 0x05, 0x0b, 0x32, 0x1f, 0x01, 0x72, 0x00,
-
4752  0x0b, 0x13, 0x72, 0x00, 0x2b, 0x32, 0x2b, 0x32, 0x12, 0x39, 0x2f, 0x12,
-
4753  0x17, 0x39, 0x30, 0x31, 0x65, 0x32, 0x3e, 0x02, 0x37, 0x33, 0x0e, 0x03,
-
4754  0x23, 0x22, 0x2e, 0x02, 0x35, 0x35, 0x0e, 0x02, 0x07, 0x35, 0x3e, 0x02,
-
4755  0x37, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x06,
-
4756  0x06, 0x07, 0x15, 0x14, 0x1e, 0x02, 0x13, 0x34, 0x26, 0x26, 0x23, 0x22,
-
4757  0x06, 0x06, 0x15, 0x15, 0x3e, 0x02, 0x01, 0x1b, 0x13, 0x1d, 0x12, 0x0a,
-
4758  0x01, 0x50, 0x02, 0x14, 0x29, 0x3f, 0x2e, 0x28, 0x3b, 0x27, 0x13, 0x11,
-
4759  0x20, 0x1d, 0x0f, 0x10, 0x20, 0x1e, 0x0f, 0x24, 0x47, 0x33, 0x26, 0x38,
-
4760  0x26, 0x13, 0x2e, 0x5e, 0x4c, 0x0b, 0x15, 0x1c, 0x45, 0x0e, 0x1c, 0x16,
-
4761  0x12, 0x1e, 0x11, 0x29, 0x39, 0x1f, 0x3e, 0x0f, 0x1d, 0x29, 0x19, 0x29,
-
4762  0x43, 0x2f, 0x19, 0x1a, 0x2f, 0x42, 0x2a, 0x3a, 0x06, 0x0a, 0x08, 0x04,
-
4763  0x46, 0x04, 0x09, 0x0a, 0x06, 0xd5, 0x36, 0x4c, 0x27, 0x15, 0x2b, 0x3c,
-
4764  0x26, 0x38, 0x62, 0x50, 0x1d, 0x55, 0x1e, 0x2b, 0x1b, 0x0c, 0x01, 0xcf,
-
4765  0x1d, 0x2a, 0x16, 0x11, 0x27, 0x20, 0xc5, 0x14, 0x37, 0x48, 0x00, 0x01,
-
4766  0x00, 0x2e, 0xff, 0x69, 0x01, 0xc4, 0x02, 0x8c, 0x00, 0x13, 0x00, 0x29,
-
4767  0x40, 0x13, 0x0f, 0x03, 0x12, 0x03, 0x02, 0x02, 0x00, 0x0b, 0x07, 0x0e,
-
4768  0x06, 0x06, 0x07, 0x07, 0x00, 0x09, 0x01, 0x72, 0x00, 0x00, 0x2f, 0x2b,
-
4769  0x11, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x39, 0x2f, 0x33,
-
4770  0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x23, 0x35, 0x33, 0x11, 0x23,
-
4771  0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23,
-
4772  0x15, 0xd2, 0xa4, 0xa4, 0xa4, 0xa4, 0x4f, 0xa3, 0xa3, 0xa3, 0xa3, 0x97,
-
4773  0xcf, 0x46, 0x01, 0x0a, 0x46, 0xbe, 0xbe, 0x46, 0xfe, 0xf6, 0x46, 0xcf,
-
4774  0x00, 0x04, 0x00, 0x2a, 0x00, 0x00, 0x01, 0xd5, 0x02, 0x7a, 0x00, 0x0e,
-
4775  0x00, 0x12, 0x00, 0x22, 0x00, 0x32, 0x00, 0x27, 0x40, 0x14, 0x0f, 0x10,
-
4776  0x23, 0x13, 0x2b, 0x1b, 0x1b, 0x04, 0x03, 0x0c, 0x0d, 0x04, 0x00, 0x05,
-
4777  0x01, 0x04, 0x72, 0x0b, 0x00, 0x0c, 0x00, 0x3f, 0x32, 0x2b, 0x32, 0x12,
-
4778  0x17, 0x39, 0x33, 0x2f, 0x33, 0xdc, 0x32, 0xce, 0x32, 0x30, 0x31, 0x73,
-
4779  0x11, 0x33, 0x13, 0x07, 0x11, 0x33, 0x14, 0x06, 0x15, 0x11, 0x23, 0x03,
-
4780  0x37, 0x11, 0x13, 0x35, 0x33, 0x15, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34,
-
4781  0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32,
-
4782  0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14,
-
4783  0x16, 0x16, 0x2a, 0x47, 0x71, 0x19, 0x4a, 0x07, 0x38, 0x7e, 0x19, 0xbe,
-
4784  0xa8, 0x55, 0x17, 0x26, 0x16, 0x18, 0x27, 0x17, 0x16, 0x26, 0x16, 0x18,
-
4785  0x26, 0x16, 0x0b, 0x11, 0x0b, 0x0a, 0x11, 0x0b, 0x0b, 0x12, 0x0c, 0x0b,
-
4786  0x13, 0x02, 0x6f, 0xfe, 0x11, 0x05, 0x01, 0xf4, 0x08, 0x0a, 0x0c, 0xfd,
-
4787  0xaf, 0x02, 0x0a, 0x05, 0xfd, 0xf1, 0x01, 0x64, 0x2f, 0x2f, 0x4d, 0x19,
-
4788  0x2c, 0x1d, 0x1e, 0x2e, 0x1b, 0x17, 0x2c, 0x20, 0x20, 0x2d, 0x19, 0x2c,
-
4789  0x0d, 0x19, 0x12, 0x13, 0x19, 0x0e, 0x0e, 0x19, 0x13, 0x11, 0x1a, 0x0d,
-
4790  0x00, 0x02, 0x00, 0x19, 0xff, 0xf9, 0x01, 0xdf, 0x01, 0xdd, 0x00, 0x19,
-
4791  0x00, 0x22, 0x00, 0x12, 0xb6, 0x22, 0x0e, 0x0e, 0x1e, 0x09, 0x12, 0x00,
-
4792  0x00, 0x2f, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x30, 0x31, 0x57, 0x22,
-
4793  0x26, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x21,
-
4794  0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x13, 0x35,
-
4795  0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0xfc, 0x4a, 0x65, 0x34, 0x28,
-
4796  0x42, 0x51, 0x28, 0x41, 0x66, 0x3c, 0xfe, 0x9e, 0x14, 0x44, 0x27, 0x40,
-
4797  0x4c, 0x1e, 0x1e, 0x14, 0x34, 0x49, 0x49, 0x10, 0x43, 0x2e, 0x2b, 0x3f,
-
4798  0x14, 0x07, 0x44, 0x6f, 0x3f, 0x3f, 0x5b, 0x3c, 0x1c, 0x3b, 0x6c, 0x4b,
-
4799  0x99, 0x14, 0x21, 0x35, 0x2f, 0x11, 0x20, 0x37, 0x20, 0x01, 0x16, 0x77,
-
4800  0x11, 0x22, 0x1e, 0x14, 0x78, 0x00, 0x00, 0x01, 0x00, 0x2e, 0xff, 0xb6,
-
4801  0x01, 0xc6, 0x00, 0x46, 0x00, 0x07, 0x00, 0x0e, 0xb4, 0x06, 0x01, 0x80,
-
4802  0x03, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x57, 0x35,
-
4803  0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x2e, 0x3d, 0x01, 0x1d, 0x3e, 0x4a,
-
4804  0x90, 0x58, 0x58, 0x90, 0x00, 0x03, 0x00, 0x29, 0x00, 0x63, 0x01, 0xca,
-
4805  0x02, 0x05, 0x00, 0x1f, 0x00, 0x26, 0x00, 0x2a, 0x00, 0x1d, 0x40, 0x0c,
-
4806  0x28, 0x29, 0x29, 0x0a, 0x21, 0x23, 0x23, 0x15, 0x0a, 0x27, 0x1f, 0x00,
-
4807  0x00, 0x2f, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x11, 0x33, 0x11,
-
4808  0x33, 0x30, 0x31, 0x53, 0x32, 0x1e, 0x02, 0x15, 0x14, 0x0e, 0x02, 0x23,
-
4809  0x22, 0x2e, 0x02, 0x35, 0x33, 0x14, 0x1e, 0x02, 0x33, 0x32, 0x3e, 0x02,
-
4810  0x35, 0x34, 0x2e, 0x02, 0x23, 0x07, 0x23, 0x35, 0x37, 0x33, 0x15, 0x23,
-
4811  0x37, 0x17, 0x07, 0x27, 0xf9, 0x2b, 0x4c, 0x39, 0x21, 0x21, 0x39, 0x4c,
-
4812  0x2b, 0x2b, 0x4c, 0x39, 0x20, 0x2c, 0x19, 0x2e, 0x3b, 0x22, 0x22, 0x3c,
-
4813  0x2e, 0x19, 0x19, 0x2e, 0x3c, 0x22, 0xa9, 0x27, 0x0b, 0x66, 0x4a, 0x01,
-
4814  0xb7, 0x1c, 0xb7, 0x02, 0x05, 0x21, 0x39, 0x4c, 0x2b, 0x2b, 0x4c, 0x39,
-
4815  0x21, 0x21, 0x39, 0x4c, 0x2b, 0x21, 0x3c, 0x2e, 0x1a, 0x1a, 0x2d, 0x3d,
-
4816  0x21, 0x22, 0x3b, 0x2e, 0x19, 0x42, 0x65, 0x0a, 0x27, 0x1c, 0xb9, 0x1b,
-
4817  0xb9, 0x00, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x00, 0x01, 0xd8, 0x01, 0xcf,
-
4818  0x00, 0x04, 0x00, 0x09, 0x00, 0x1d, 0x40, 0x0c, 0x00, 0x08, 0x08, 0x09,
-
4819  0x03, 0x05, 0x05, 0x09, 0x09, 0x04, 0x06, 0x02, 0x00, 0x2f, 0x33, 0x2f,
-
4820  0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x30, 0x31, 0x41,
-
4821  0x11, 0x21, 0x11, 0x37, 0x07, 0x11, 0x21, 0x11, 0x27, 0x01, 0xd8, 0xfe,
-
4822  0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x01, 0x48, 0xfe, 0xb8, 0x01, 0x48,
-
4823  0x87, 0xa1, 0xfe, 0xfe, 0x01, 0x02, 0x6b, 0x00, 0x00, 0x04, 0x00, 0x22,
-
4824  0xff, 0xd4, 0x01, 0xd4, 0x02, 0x7c, 0x00, 0x03, 0x00, 0x07, 0x00, 0x11,
-
4825  0x00, 0x1a, 0x00, 0x31, 0x40, 0x16, 0x0e, 0x14, 0x14, 0x0b, 0x1a, 0x1a,
-
4826  0x10, 0x09, 0x09, 0x17, 0x0c, 0x0c, 0x12, 0x08, 0x01, 0x40, 0x04, 0x00,
-
4827  0x00, 0xc0, 0x07, 0x01, 0x00, 0x2f, 0x33, 0x1a, 0xcd, 0x2f, 0x32, 0x1a,
-
4828  0x10, 0xce, 0x32, 0x32, 0x2f, 0x33, 0x39, 0x2f, 0x33, 0x33, 0x11, 0x33,
-
4829  0x33, 0x11, 0x33, 0x30, 0x31, 0x57, 0x35, 0x33, 0x15, 0x27, 0x33, 0x35,
-
4830  0x23, 0x27, 0x35, 0x23, 0x35, 0x37, 0x33, 0x17, 0x15, 0x23, 0x15, 0x27,
-
4831  0x33, 0x35, 0x33, 0x17, 0x27, 0x07, 0x27, 0x33, 0x8c, 0xdf, 0xb3, 0x87,
-
4832  0x87, 0x2c, 0x6a, 0xca, 0x1f, 0xc9, 0x69, 0xb3, 0x87, 0x78, 0x02, 0xbe,
-
4833  0xbf, 0x0d, 0x89, 0x2c, 0x9f, 0x9f, 0x2c, 0x47, 0x85, 0x9d, 0x30, 0xe3,
-
4834  0xe3, 0x30, 0x9d, 0x2c, 0x9e, 0x21, 0xd6, 0xd6, 0x21, 0x00, 0x00, 0x03,
-
4835  0x00, 0x3d, 0x00, 0x4e, 0x01, 0xb7, 0x02, 0x0a, 0x00, 0x03, 0x00, 0x07,
-
4836  0x00, 0x13, 0x00, 0x1c, 0x40, 0x0f, 0x10, 0x12, 0x11, 0x0e, 0x08, 0x0b,
-
4837  0x0c, 0x0a, 0x08, 0x07, 0x04, 0x07, 0x04, 0x03, 0x00, 0x00, 0x2f, 0xcd,
-
4838  0x32, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x21, 0x11, 0x21,
-
4839  0x37, 0x21, 0x11, 0x21, 0x17, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17,
-
4840  0x07, 0x27, 0x07, 0x27, 0x3d, 0x01, 0x7a, 0xfe, 0x86, 0x2c, 0x01, 0x22,
-
4841  0xfe, 0xde, 0x76, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50,
-
4842  0x50, 0x1b, 0x02, 0x0a, 0xfe, 0x44, 0x2c, 0x01, 0x64, 0xb2, 0x50, 0x1b,
-
4843  0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x00, 0x03,
-
4844  0x00, 0x02, 0x00, 0x4e, 0x01, 0xce, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09,
-
4845  0x00, 0x15, 0x00, 0x22, 0x40, 0x15, 0x12, 0x14, 0x15, 0x11, 0x13, 0x04,
-
4846  0x10, 0x0a, 0x09, 0x0d, 0x0f, 0x0b, 0x0e, 0x0c, 0x0e, 0x08, 0x05, 0x05,
-
4847  0x03, 0x08, 0x00, 0x00, 0x2f, 0x32, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39,
-
4848  0x30, 0x31, 0x53, 0x21, 0x11, 0x21, 0x27, 0x17, 0x21, 0x11, 0x21, 0x07,
-
4849  0x33, 0x27, 0x37, 0x17, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x07, 0x27,
-
4850  0x86, 0x01, 0x48, 0xfe, 0xb8, 0x84, 0x9d, 0x01, 0x03, 0xfe, 0xfd, 0x6a,
-
4851  0xc0, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b,
-
4852  0x02, 0x0a, 0xfe, 0x44, 0xde, 0xb2, 0x01, 0x64, 0xb2, 0x50, 0x1b, 0x50,
-
4853  0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x03, 0x00, 0x16,
-
4854  0x00, 0x4e, 0x01, 0xe2, 0x02, 0x0a, 0x00, 0x04, 0x00, 0x09, 0x00, 0x15,
-
4855  0x00, 0x22, 0x40, 0x15, 0x0e, 0x0c, 0x0b, 0x0f, 0x0d, 0x01, 0x0a, 0x10,
-
4856  0x06, 0x13, 0x15, 0x11, 0x12, 0x14, 0x0e, 0x08, 0x09, 0x08, 0x04, 0x09,
-
4857  0x03, 0x00, 0x2f, 0x33, 0x2f, 0x33, 0x11, 0x12, 0x17, 0x39, 0x30, 0x31,
-
4858  0x41, 0x17, 0x07, 0x21, 0x11, 0x01, 0x37, 0x27, 0x21, 0x11, 0x37, 0x17,
-
4859  0x07, 0x27, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, 0x17, 0x01, 0x5e,
-
4860  0x84, 0x84, 0xfe, 0xb8, 0x01, 0x2f, 0x6a, 0x6a, 0xfe, 0xfd, 0xad, 0x50,
-
4861  0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x02, 0x0a,
-
4862  0xde, 0xde, 0x01, 0xbc, 0xfe, 0x70, 0xb2, 0xb2, 0xfe, 0x9c, 0xb2, 0x50,
-
4863  0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x50, 0x50, 0x1b, 0x00, 0x02,
-
4864  0x00, 0x00, 0xff, 0xff, 0x01, 0xf4, 0x01, 0xcb, 0x00, 0x07, 0x00, 0x0b,
-
4865  0x00, 0x13, 0xb7, 0x08, 0x09, 0x09, 0x02, 0x03, 0x06, 0x05, 0x00, 0x00,
-
4866  0x2f, 0x32, 0x3f, 0x33, 0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x03, 0x23,
-
4867  0x35, 0x33, 0x13, 0x33, 0x15, 0x03, 0x35, 0x33, 0x15, 0x01, 0x56, 0xd6,
-
4868  0x80, 0x9d, 0xd6, 0x81, 0xb1, 0xb1, 0x01, 0x01, 0x9e, 0x2e, 0xfe, 0x62,
-
4869  0x2e, 0x01, 0x9e, 0x2e, 0x2e, 0x00, 0x00, 0x06, 0x00, 0x16, 0x00, 0x06,
-
4870  0x01, 0xde, 0x01, 0xcd, 0x00, 0x33, 0x00, 0x41, 0x00, 0x4f, 0x00, 0x53,
-
4871  0x00, 0x61, 0x00, 0x6f, 0x00, 0x47, 0x40, 0x21, 0x22, 0x53, 0x53, 0x09,
-
4872  0x62, 0x15, 0x15, 0x43, 0x43, 0x09, 0x6b, 0x1a, 0x1a, 0x48, 0x11, 0x11,
-
4873  0x09, 0x23, 0x50, 0x50, 0x5d, 0x30, 0x30, 0x39, 0x39, 0x54, 0x2b, 0x2b,
-
4874  0x34, 0x00, 0x00, 0x08, 0x09, 0x00, 0x2f, 0xce, 0x32, 0x2f, 0x33, 0x33,
-
4875  0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33, 0x32, 0x11, 0x33, 0x11, 0x33,
-
4876  0x2f, 0x33, 0x33, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4877  0x33, 0x11, 0x33, 0x30, 0x31, 0x77, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36,
-
4878  0x33, 0x33, 0x35, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
4879  0x16, 0x15, 0x15, 0x33, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
4880  0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06,
-
4881  0x23, 0x22, 0x26, 0x35, 0x35, 0x23, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36,
-
4882  0x36, 0x35, 0x35, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13,
-
4883  0x33, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16,
-
4884  0x16, 0x17, 0x33, 0x35, 0x23, 0x17, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26,
-
4885  0x26, 0x23, 0x23, 0x15, 0x14, 0x16, 0x16, 0x03, 0x33, 0x32, 0x36, 0x36,
-
4886  0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x75, 0x27, 0x38,
-
4887  0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b, 0x1a, 0x38, 0x27, 0x27, 0x37,
-
4888  0x4e, 0x37, 0x27, 0x27, 0x38, 0x1a, 0x2b, 0x1a, 0x32, 0x32, 0x1a, 0x2b,
-
4889  0x1a, 0x38, 0x27, 0x27, 0x37, 0x4e, 0x37, 0x27, 0x0f, 0x16, 0x0d, 0x32,
-
4890  0x0e, 0x18, 0x0d, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
-
4891  0x0d, 0x0d, 0x18, 0x6c, 0x4e, 0x4e, 0xac, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
-
4892  0x0f, 0x32, 0x0d, 0x17, 0x24, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f,
-
4893  0x0e, 0x17, 0x0d, 0x06, 0x38, 0x27, 0x1a, 0x2a, 0x1a, 0x4d, 0x1a, 0x2a,
-
4894  0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32, 0x27, 0x38, 0x38, 0x27, 0x1a,
-
4895  0x2a, 0x1a, 0x4d, 0x1a, 0x2a, 0x1a, 0x27, 0x38, 0x38, 0x27, 0x32, 0x32,
-
4896  0x27, 0x38, 0x2c, 0x0d, 0x18, 0x0e, 0x32, 0x0d, 0x16, 0x0f, 0x0e, 0x18,
-
4897  0x0d, 0x01, 0x0a, 0x32, 0x0f, 0x17, 0x0d, 0x0d, 0x17, 0x0f, 0x0e, 0x17,
-
4898  0x0d, 0x79, 0x4d, 0xde, 0x0d, 0x18, 0x0e, 0x0f, 0x16, 0x0d, 0x32, 0x0e,
-
4899  0x18, 0x0d, 0x01, 0x0a, 0x0d, 0x17, 0x0e, 0x0f, 0x17, 0x0d, 0x0d, 0x17,
-
4900  0x0f, 0x00, 0x00, 0x02, 0x00, 0x1f, 0x00, 0x21, 0x01, 0xce, 0x01, 0xc9,
-
4901  0x00, 0x0b, 0x00, 0x16, 0x00, 0x3a, 0x40, 0x1a, 0x13, 0x12, 0x12, 0x06,
-
4902  0x11, 0x07, 0x03, 0x09, 0x04, 0x04, 0x03, 0x03, 0x14, 0x0e, 0x0f, 0x10,
-
4903  0x10, 0x09, 0x0c, 0x00, 0x00, 0x09, 0x09, 0x0a, 0x0a, 0x0e, 0x00, 0x2f,
-
4904  0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x18, 0x2f, 0x32, 0x11, 0x33, 0x11,
-
4905  0x33, 0x10, 0xce, 0x32, 0x11, 0x33, 0x7d, 0x2f, 0x12, 0x17, 0x39, 0x33,
-
4906  0x11, 0x33, 0x30, 0x31, 0x41, 0x33, 0x11, 0x21, 0x15, 0x23, 0x27, 0x35,
-
4907  0x37, 0x33, 0x15, 0x33, 0x37, 0x15, 0x23, 0x35, 0x17, 0x07, 0x17, 0x07,
-
4908  0x35, 0x21, 0x35, 0x01, 0x3e, 0x90, 0xfe, 0xee, 0x12, 0x8b, 0x8b, 0x14,
-
4909  0x80, 0x2c, 0xd1, 0x1d, 0x66, 0x63, 0x1c, 0x01, 0x0b, 0x01, 0xc9, 0xfe,
-
4910  0xb2, 0x5a, 0x9b, 0x1a, 0x8d, 0x58, 0x92, 0xbe, 0x61, 0x0f, 0x6a, 0x70,
-
4911  0x0d, 0x5d, 0xf6, 0x00, 0x00, 0x03, 0x00, 0x0f, 0x00, 0x02, 0x01, 0xe5,
-
4912  0x02, 0x59, 0x00, 0x07, 0x00, 0x14, 0x00, 0x37, 0x00, 0x13, 0x40, 0x09,
-
4913  0x08, 0x0e, 0x37, 0x2c, 0x1f, 0x05, 0x02, 0x07, 0x02, 0x00, 0x2f, 0x2f,
-
4914  0x12, 0x17, 0x39, 0x30, 0x31, 0x53, 0x35, 0x13, 0x33, 0x13, 0x15, 0x03,
-
4915  0x23, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14,
-
4916  0x16, 0x33, 0x37, 0x35, 0x34, 0x3e, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22,
-
4917  0x06, 0x06, 0x07, 0x17, 0x17, 0x37, 0x26, 0x36, 0x37, 0x36, 0x36, 0x33,
-
4918  0x32, 0x16, 0x16, 0x15, 0x14, 0x0e, 0x03, 0x15, 0x15, 0x0f, 0xe1, 0x1e,
-
4919  0xd7, 0xd7, 0x1e, 0x10, 0x0e, 0x16, 0x16, 0x0e, 0x0f, 0x14, 0x14, 0x0f,
-
4920  0x0f, 0x13, 0x1c, 0x1b, 0x13, 0x3c, 0x2f, 0x1d, 0x2c, 0x22, 0x10, 0x1c,
-
4921  0x08, 0x05, 0x01, 0x09, 0x0b, 0x0d, 0x1e, 0x11, 0x12, 0x1e, 0x13, 0x12,
-
4922  0x1c, 0x1b, 0x12, 0x01, 0x23, 0x1e, 0x01, 0x18, 0xfe, 0xe8, 0x1e, 0xfe,
-
4923  0xdf, 0x37, 0x15, 0x0e, 0x0f, 0x15, 0x15, 0x0f, 0x0e, 0x15, 0x7a, 0x19,
-
4924  0x1b, 0x22, 0x1a, 0x19, 0x23, 0x1a, 0x2e, 0x36, 0x10, 0x1d, 0x14, 0x16,
-
4925  0x07, 0x06, 0x08, 0x0c, 0x0c, 0x08, 0x0a, 0x0b, 0x1c, 0x18, 0x16, 0x1f,
-
4926  0x1a, 0x1c, 0x26, 0x1b, 0x19, 0x00, 0x00, 0x03, 0x00, 0x2d, 0x00, 0x05,
-
4927  0x05, 0xaf, 0x01, 0xc7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0b, 0x00, 0x13,
-
4928  0xb7, 0x08, 0x09, 0x80, 0x01, 0x00, 0x04, 0x05, 0x12, 0x00, 0x3f, 0x33,
-
4929  0xce, 0x32, 0x1a, 0xce, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x05,
-
4930  0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x2d, 0x05, 0x82, 0xfb, 0x28,
-
4931  0x04, 0x2e, 0xfb, 0x28, 0x05, 0x82, 0x01, 0x82, 0x45, 0x45, 0xbf, 0x45,
-
4932  0x45, 0xbe, 0x45, 0x45, 0x00, 0x05, 0x00, 0x2c, 0x00, 0x16, 0x03, 0xa8,
-
4933  0x02, 0x6a, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x0e, 0x00, 0x12, 0x00, 0x16,
-
4934  0x00, 0x34, 0x40, 0x18, 0x0d, 0x14, 0x14, 0x02, 0x05, 0x01, 0x03, 0x15,
-
4935  0x10, 0x0c, 0x06, 0x06, 0x00, 0x15, 0x08, 0x11, 0x11, 0x10, 0x09, 0x04,
-
4936  0x04, 0x03, 0x03, 0x10, 0x00, 0x2f, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11,
-
4937  0x33, 0x11, 0x33, 0x7c, 0x2f, 0x33, 0x32, 0x11, 0x33, 0x11, 0x12, 0x17,
-
4938  0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x01, 0x15, 0x01, 0x35, 0x25,
-
4939  0x25, 0x11, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x23, 0x15, 0x21, 0x35,
-
4940  0x21, 0x35, 0x21, 0x35, 0x21, 0x01, 0xad, 0x01, 0xfb, 0xfe, 0x05, 0x01,
-
4941  0x9a, 0xfe, 0x66, 0x45, 0x45, 0x45, 0x45, 0xfe, 0x7f, 0x01, 0x81, 0xfe,
-
4942  0x7f, 0x01, 0x81, 0x02, 0x6a, 0xfe, 0xf2, 0x38, 0xfe, 0xf2, 0x4e, 0xdc,
-
4943  0xdc, 0xfe, 0xd9, 0xba, 0x25, 0x02, 0x54, 0x25, 0xb6, 0xdf, 0x45, 0x9a,
-
4944  0x45, 0x00, 0x00, 0x02, 0x00, 0x93, 0xff, 0xb9, 0x03, 0x53, 0x02, 0x99,
-
4945  0x00, 0x06, 0x00, 0x0a, 0x00, 0x21, 0x40, 0x0f, 0x0a, 0x09, 0x08, 0x06,
-
4946  0x02, 0x05, 0x03, 0x03, 0x04, 0x40, 0x01, 0x00, 0x80, 0x07, 0x08, 0x00,
-
4947  0x2f, 0x33, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x10, 0xcd,
-
4948  0x32, 0x30, 0x31, 0x77, 0x35, 0x25, 0x25, 0x35, 0x05, 0x15, 0x01, 0x35,
-
4949  0x01, 0x15, 0x93, 0x01, 0xa8, 0xfe, 0x5a, 0x02, 0x02, 0xfd, 0xfc, 0x02,
-
4950  0xc0, 0x89, 0x57, 0xbc, 0xab, 0x52, 0xe1, 0x33, 0xfe, 0x34, 0x54, 0x01,
-
4951  0x5c, 0x54, 0x00, 0x02, 0x00, 0x3c, 0x00, 0x17, 0x03, 0xbf, 0x02, 0x65,
-
4952  0x00, 0x06, 0x00, 0x0a, 0x00, 0x1b, 0x40, 0x0c, 0x01, 0x05, 0x02, 0x03,
-
4953  0x04, 0x03, 0x03, 0x09, 0x09, 0x06, 0x00, 0x08, 0x00, 0x2f, 0x33, 0x32,
-
4954  0x33, 0x11, 0x33, 0x11, 0x33, 0x17, 0x39, 0x30, 0x31, 0x65, 0x01, 0x35,
-
4955  0x01, 0x15, 0x05, 0x05, 0x25, 0x21, 0x35, 0x21, 0x02, 0x3d, 0xfd, 0xff,
-
4956  0x02, 0x01, 0xfe, 0x66, 0x01, 0x9a, 0x01, 0x82, 0xfd, 0xa9, 0x02, 0x57,
-
4957  0x17, 0x01, 0x0c, 0x3b, 0x01, 0x07, 0x52, 0xd2, 0xd7, 0xb3, 0x47, 0x00,
-
4958  0x00, 0x02, 0x00, 0x95, 0xff, 0xb9, 0x03, 0x55, 0x02, 0x99, 0x00, 0x06,
-
4959  0x00, 0x0a, 0x00, 0x25, 0x40, 0x11, 0x09, 0x08, 0x08, 0x07, 0x07, 0x0a,
-
4960  0x01, 0x05, 0x02, 0x03, 0x04, 0x03, 0x40, 0x06, 0x00, 0x80, 0x0a, 0x00,
-
4961  0x2f, 0x1a, 0xde, 0x32, 0x1a, 0xcc, 0x32, 0x17, 0x39, 0x11, 0x33, 0x11,
-
4962  0x33, 0x2f, 0x33, 0x30, 0x31, 0x65, 0x25, 0x35, 0x25, 0x15, 0x05, 0x05,
-
4963  0x11, 0x01, 0x35, 0x01, 0x03, 0x55, 0xfd, 0xfc, 0x02, 0x02, 0xfe, 0x5a,
-
4964  0x01, 0xa8, 0xfd, 0x40, 0x02, 0xc0, 0x89, 0xfc, 0x33, 0xe1, 0x52, 0xab,
-
4965  0xbc, 0xfe, 0xd9, 0x01, 0x5c, 0x54, 0xfe, 0xa4, 0x00, 0x01, 0x00, 0xad,
-
4966  0xff, 0xb4, 0x01, 0x3b, 0x00, 0x6c, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x00,
-
4967  0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x57, 0x23, 0x37, 0x33, 0xdf, 0x32,
-
4968  0x3f, 0x4f, 0x4c, 0xb8, 0x00, 0x01, 0x00, 0xb0, 0x01, 0xc1, 0x01, 0x30,
-
4969  0x02, 0xa3, 0x00, 0x13, 0x00, 0x0e, 0xb5, 0x01, 0x00, 0xc0, 0x0d, 0x03,
-
4970  0x72, 0x00, 0x2b, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x3e, 0x02,
-
4971  0x35, 0x34, 0x2e, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14,
-
4972  0x06, 0x06, 0xd6, 0x26, 0x10, 0x18, 0x0d, 0x0c, 0x10, 0x0c, 0x1f, 0x18,
-
4973  0x17, 0x25, 0x14, 0x27, 0x01, 0xc1, 0x20, 0x0f, 0x1e, 0x1b, 0x0a, 0x07,
-
4974  0x0d, 0x0d, 0x11, 0x0b, 0x16, 0x1d, 0x27, 0x1f, 0x15, 0x32, 0x37, 0x00,
-
4975  0x00, 0x01, 0x00, 0xac, 0x01, 0x82, 0x01, 0x35, 0x02, 0x82, 0x00, 0x11,
-
4976  0x00, 0x0e, 0xb5, 0x0b, 0xc0, 0x01, 0x00, 0x03, 0x72, 0x00, 0x2b, 0x32,
-
4977  0x1a, 0xcc, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16,
-
4978  0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x0e,
-
4979  0x27, 0x19, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c, 0x02,
-
4980  0x82, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20, 0x2d,
-
4981  0x24, 0x19, 0x37, 0x3d, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x05, 0x01, 0x76,
-
4982  0x02, 0xbd, 0x04, 0x26, 0x03, 0x55, 0x45, 0x00, 0x00, 0x06, 0x03, 0x55,
-
4983  0xc3, 0x00, 0x00, 0x01, 0x00, 0x76, 0x02, 0x31, 0x01, 0x7d, 0x02, 0x74,
-
4984  0x00, 0x03, 0x00, 0x0a, 0xb3, 0x00, 0x01, 0x02, 0x72, 0x00, 0x2b, 0x32,
-
4985  0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x76, 0x01, 0x07, 0x02, 0x31, 0x43,
-
4986  0x43, 0x00, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x08, 0x01, 0x4c, 0x02, 0xc0,
-
4987  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
-
4988  0x41, 0x27, 0x37, 0x17, 0x01, 0x18, 0x66, 0x45, 0x55, 0x02, 0x08, 0x89,
-
4989  0x2f, 0x99, 0xff, 0xff, 0x00, 0xca, 0x02, 0x05, 0x01, 0x30, 0x02, 0xbd,
-
4990  0x06, 0x06, 0x03, 0x55, 0x00, 0x00, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5,
-
4991  0x01, 0x32, 0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x10, 0x00, 0x09,
-
4992  0x08, 0x00, 0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x22, 0x26, 0x26,
-
4993  0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16,
-
4994  0x33, 0x01, 0x32, 0x1f, 0x33, 0x1e, 0x1f, 0x33, 0x1e, 0x15, 0x1f, 0x0e,
-
4995  0x18, 0x0e, 0x01, 0xc5, 0x1d, 0x32, 0x1e, 0x20, 0x31, 0x1d, 0x33, 0x22,
-
4996  0x18, 0x0f, 0x1a, 0x0f, 0x00, 0x01, 0x00, 0xc2, 0x01, 0xc5, 0x01, 0x32,
-
4997  0x02, 0xa0, 0x00, 0x10, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x08, 0x09, 0x00,
-
4998  0x2f, 0x33, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x35, 0x32, 0x36, 0x36, 0x35,
-
4999  0x34, 0x26, 0x23, 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xc2,
-
5000  0x0f, 0x17, 0x0e, 0x1f, 0x15, 0x1e, 0x33, 0x1f, 0x1e, 0x33, 0x01, 0xc5,
-
5001  0x36, 0x0f, 0x1a, 0x0f, 0x18, 0x22, 0x33, 0x1d, 0x31, 0x20, 0x1e, 0x32,
-
5002  0x1d, 0x00, 0x00, 0x01, 0x00, 0xb8, 0x02, 0x2c, 0x01, 0x69, 0x02, 0xc0,
-
5003  0x00, 0x03, 0x00, 0x0a, 0xb2, 0x01, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd,
-
5004  0x30, 0x31, 0x53, 0x23, 0x37, 0x33, 0xf6, 0x3e, 0x5c, 0x55, 0x02, 0x2c,
-
5005  0x94, 0x00, 0x00, 0x01, 0x00, 0xd1, 0xff, 0x42, 0x01, 0x24, 0x00, 0x1e,
-
5006  0x00, 0x03, 0x00, 0x08, 0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31,
-
5007  0x45, 0x23, 0x35, 0x33, 0x01, 0x24, 0x53, 0x53, 0xbe, 0xdc, 0x00, 0x01,
-
5008  0x00, 0xdb, 0x01, 0xbd, 0x01, 0x2c, 0x02, 0x99, 0x00, 0x03, 0x00, 0x08,
-
5009  0xb1, 0x00, 0x02, 0x00, 0x2f, 0xcd, 0x30, 0x31, 0x41, 0x23, 0x35, 0x33,
-
5010  0x01, 0x2c, 0x51, 0x51, 0x01, 0xbd, 0xdc, 0x00, 0xff, 0xff, 0x00, 0x69,
-
5011  0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x04, 0x06, 0x03, 0x93, 0x00, 0x00,
-
5012  0xff, 0xff, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97, 0x04, 0x06,
-
5013  0x03, 0x94, 0x00, 0x00, 0xff, 0xff, 0x00, 0x96, 0x01, 0xfa, 0x01, 0x29,
-
5014  0x02, 0xb1, 0x04, 0x06, 0x03, 0x95, 0x00, 0x00, 0xff, 0xff, 0x00, 0xd4,
-
5015  0x01, 0xfa, 0x01, 0x67, 0x02, 0xb1, 0x04, 0x06, 0x03, 0x96, 0x00, 0xf4,
-
5016  0xff, 0xff, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2, 0x02, 0xc0, 0x04, 0x06,
-
5017  0x03, 0x97, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5e, 0x01, 0xfc, 0x01, 0x94,
-
5018  0x02, 0xae, 0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05,
-
5019  0x05, 0x01, 0x00, 0x00, 0x02, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x32, 0x11,
-
5020  0x33, 0x11, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27,
-
5021  0x8a, 0x2c, 0x8d, 0x1c, 0x8d, 0x2c, 0x6f, 0x01, 0xfc, 0x26, 0x8c, 0x8c,
-
5022  0x26, 0x6b, 0x00, 0x01, 0x00, 0x63, 0x02, 0x03, 0x01, 0x99, 0x02, 0xb5,
-
5023  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02, 0x02, 0x01, 0x05, 0x06,
-
5024  0x00, 0x00, 0x05, 0x00, 0x2f, 0x33, 0x2f, 0x32, 0x12, 0x39, 0x33, 0x11,
-
5025  0x33, 0x30, 0x31, 0x53, 0x17, 0x37, 0x17, 0x07, 0x23, 0x27, 0x8f, 0x6f,
-
5026  0x6f, 0x2c, 0x8d, 0x1c, 0x8d, 0x02, 0xb5, 0x6b, 0x6b, 0x27, 0x8b, 0x8b,
-
5027  0x00, 0x01, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x02, 0x93, 0x00, 0x0e,
-
5028  0x00, 0x14, 0xb7, 0x01, 0x00, 0x00, 0x07, 0x08, 0x80, 0x0b, 0x04, 0x00,
-
5029  0x2f, 0x33, 0x1a, 0xcc, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
-
5030  0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36,
-
5031  0x36, 0x01, 0x59, 0x3a, 0x17, 0x4a, 0x30, 0x2f, 0x4b, 0x17, 0x3a, 0x11,
-
5032  0x29, 0x1d, 0x13, 0x20, 0x1a, 0x02, 0x93, 0x1b, 0x2e, 0x33, 0x33, 0x2e,
-
5033  0x1b, 0x24, 0x22, 0x0f, 0x1f, 0x00, 0xff, 0xff, 0x00, 0x9f, 0x02, 0x03,
-
5034  0x01, 0x5e, 0x02, 0xbb, 0x04, 0x06, 0x03, 0x9b, 0x00, 0x00, 0x00, 0x01,
-
5035  0x00, 0x5f, 0x02, 0x38, 0x01, 0xae, 0x02, 0xac, 0x00, 0x17, 0x00, 0x1b,
-
5036  0x40, 0x0b, 0x01, 0x00, 0x00, 0x09, 0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15,
-
5037  0x04, 0x00, 0x2f, 0x33, 0x33, 0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11,
-
5038  0x33, 0x30, 0x31, 0x41, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23,
-
5039  0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32,
-
5040  0x36, 0x01, 0x7c, 0x32, 0x15, 0x2b, 0x1e, 0x19, 0x24, 0x1c, 0x1b, 0x10,
-
5041  0x11, 0x1b, 0x0b, 0x36, 0x0f, 0x34, 0x27, 0x17, 0x22, 0x1c, 0x1c, 0x11,
-
5042  0x10, 0x14, 0x02, 0xa2, 0x1d, 0x2a, 0x23, 0x11, 0x17, 0x11, 0x16, 0x1a,
-
5043  0x19, 0x25, 0x2d, 0x11, 0x16, 0x11, 0x14, 0x00, 0xff, 0xff, 0x00, 0x76,
-
5044  0x02, 0x35, 0x01, 0x7d, 0x02, 0x73, 0x04, 0x06, 0x03, 0x9d, 0x00, 0xff,
-
5045  0x00, 0x01, 0x00, 0x98, 0x02, 0x0a, 0x01, 0x4b, 0x02, 0xc9, 0x00, 0x1a,
-
5046  0x00, 0x0c, 0xb3, 0x10, 0x06, 0x80, 0x17, 0x00, 0x2f, 0x1a, 0xcc, 0x33,
-
5047  0x30, 0x31, 0x41, 0x14, 0x0e, 0x02, 0x15, 0x15, 0x23, 0x35, 0x34, 0x3e,
-
5048  0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33,
-
5049  0x1e, 0x02, 0x01, 0x4b, 0x12, 0x17, 0x13, 0x39, 0x11, 0x16, 0x11, 0x12,
-
5050  0x0e, 0x0f, 0x1a, 0x07, 0x26, 0x12, 0x2e, 0x1b, 0x19, 0x28, 0x17, 0x02,
-
5051  0x7a, 0x15, 0x19, 0x12, 0x16, 0x12, 0x08, 0x1c, 0x0e, 0x16, 0x12, 0x12,
-
5052  0x09, 0x0e, 0x0f, 0x0d, 0x15, 0x2b, 0x18, 0x14, 0x01, 0x13, 0x23, 0x00,
-
5053  0xff, 0xff, 0x00, 0x5b, 0x01, 0xfa, 0x01, 0x8e, 0x02, 0xb1, 0x04, 0x26,
-
5054  0x03, 0x7c, 0xc5, 0x00, 0x00, 0x06, 0x03, 0x7c, 0x65, 0x00, 0x00, 0x01,
-
5055  0x00, 0x6f, 0x02, 0x0d, 0x01, 0x91, 0x02, 0x89, 0x00, 0x0e, 0x00, 0x14,
-
5056  0xb7, 0x07, 0x08, 0x08, 0x0b, 0x04, 0x80, 0x01, 0x00, 0x00, 0x2f, 0x32,
-
5057  0x1a, 0xcc, 0x32, 0x33, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36,
-
5058  0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0xa9,
-
5059  0x3a, 0x18, 0x4a, 0x2f, 0x30, 0x4b, 0x16, 0x3a, 0x10, 0x2a, 0x1d, 0x13,
-
5060  0x1f, 0x1a, 0x02, 0x0d, 0x1b, 0x2e, 0x33, 0x33, 0x2e, 0x1b, 0x24, 0x22,
-
5061  0x0f, 0x1e, 0x00, 0x01, 0x00, 0xa0, 0x02, 0x1a, 0x01, 0x37, 0x03, 0x36,
-
5062  0x00, 0x13, 0x00, 0x08, 0xb1, 0x0c, 0x00, 0x00, 0x2f, 0xcc, 0x30, 0x31,
-
5063  0x41, 0x17, 0x06, 0x06, 0x15, 0x14, 0x1e, 0x02, 0x15, 0x14, 0x06, 0x23,
-
5064  0x22, 0x26, 0x35, 0x34, 0x3e, 0x02, 0x01, 0x0c, 0x2b, 0x1c, 0x22, 0x0e,
-
5065  0x15, 0x0e, 0x25, 0x1c, 0x1e, 0x2b, 0x0d, 0x1b, 0x29, 0x03, 0x36, 0x25,
-
5066  0x1a, 0x39, 0x13, 0x0a, 0x12, 0x11, 0x16, 0x0f, 0x1c, 0x23, 0x32, 0x27,
-
5067  0x15, 0x2d, 0x31, 0x34, 0x00, 0x01, 0x01, 0x85, 0x01, 0x94, 0x01, 0xe8,
-
5068  0x02, 0x24, 0x00, 0x08, 0x00, 0x0c, 0xb3, 0x05, 0x04, 0x80, 0x00, 0x00,
-
5069  0x2f, 0x1a, 0xcd, 0x32, 0x30, 0x31, 0x41, 0x14, 0x06, 0x06, 0x23, 0x35,
-
5070  0x32, 0x36, 0x35, 0x01, 0xe8, 0x11, 0x2b, 0x27, 0x0f, 0x0d, 0x02, 0x24,
-
5071  0x35, 0x40, 0x1b, 0x38, 0x24, 0x34, 0xff, 0xff, 0x00, 0xb6, 0xff, 0x65,
-
5072  0x01, 0x2a, 0xff, 0xd7, 0x04, 0x07, 0x03, 0x7b, 0xff, 0xf1, 0xfd, 0x40,
-
5073  0xff, 0xff, 0x00, 0x69, 0xff, 0x55, 0x01, 0x8d, 0xff, 0xc3, 0x06, 0x07,
-
5074  0x03, 0x7a, 0x00, 0x00, 0xfd, 0x26, 0x00, 0x01, 0x00, 0xad, 0xfe, 0xe6,
-
5075  0x01, 0x35, 0xff, 0xe6, 0x00, 0x11, 0x00, 0x0a, 0xb2, 0x01, 0x00, 0x0b,
-
5076  0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x27, 0x36, 0x36, 0x35, 0x34,
-
5077  0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06,
-
5078  0xd3, 0x26, 0x18, 0x20, 0x16, 0x17, 0x22, 0x19, 0x1b, 0x27, 0x15, 0x2c,
-
5079  0xfe, 0xe6, 0x22, 0x17, 0x33, 0x10, 0x0d, 0x15, 0x17, 0x12, 0x19, 0x20,
-
5080  0x2d, 0x24, 0x19, 0x37, 0x3d, 0x00, 0xff, 0xff, 0x00, 0xa1, 0xff, 0x38,
-
5081  0x01, 0x85, 0x00, 0x00, 0x04, 0x06, 0x03, 0x9e, 0x00, 0x00, 0x00, 0x01,
-
5082  0x00, 0x8b, 0xff, 0x19, 0x01, 0x29, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a,
-
5083  0xb2, 0x00, 0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07,
-
5084  0x2e, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14,
-
5085  0x16, 0x01, 0x1b, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18,
-
5086  0x23, 0x12, 0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33,
-
5087  0x17, 0x14, 0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x71,
-
5088  0xff, 0x4c, 0x01, 0x93, 0xff, 0xc8, 0x06, 0x07, 0x03, 0x81, 0x00, 0x00,
-
5089  0xfd, 0x35, 0xff, 0xff, 0x00, 0x76, 0xff, 0x65, 0x01, 0x7d, 0xff, 0xa3,
-
5090  0x06, 0x07, 0x03, 0x84, 0x00, 0x00, 0xfd, 0x30, 0x00, 0x01, 0x00, 0x77,
-
5091  0x01, 0x1e, 0x01, 0x86, 0x01, 0x5b, 0x00, 0x03, 0x00, 0x08, 0xb1, 0x01,
-
5092  0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15, 0x77, 0x01,
-
5093  0x0f, 0x01, 0x1e, 0x3d, 0x3d, 0x00, 0xff, 0xff, 0x00, 0x6d, 0x01, 0x16,
-
5094  0x01, 0x89, 0x01, 0x62, 0x04, 0x06, 0x02, 0x31, 0x00, 0x00, 0x00, 0x02,
-
5095  0x00, 0x69, 0x02, 0x2f, 0x01, 0x8d, 0x02, 0x9d, 0x00, 0x0b, 0x00, 0x17,
-
5096  0x00, 0x0e, 0xb4, 0x12, 0x0c, 0x0c, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x32,
-
5097  0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
5098  0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32,
-
5099  0x16, 0x15, 0x14, 0x06, 0xa2, 0x17, 0x22, 0x22, 0x17, 0x17, 0x21, 0x22,
-
5100  0x9e, 0x17, 0x21, 0x21, 0x17, 0x17, 0x20, 0x21, 0x02, 0x2f, 0x20, 0x16,
-
5101  0x16, 0x22, 0x21, 0x17, 0x16, 0x20, 0x1f, 0x17, 0x17, 0x21, 0x22, 0x16,
-
5102  0x16, 0x20, 0x00, 0x01, 0x00, 0xc4, 0x02, 0x25, 0x01, 0x38, 0x02, 0x97,
-
5103  0x00, 0x0b, 0x00, 0x08, 0xb1, 0x06, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31,
-
5104  0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06,
-
5105  0xfe, 0x18, 0x22, 0x21, 0x19, 0x17, 0x23, 0x23, 0x02, 0x25, 0x22, 0x17,
-
5106  0x19, 0x20, 0x22, 0x17, 0x17, 0x22, 0x00, 0x01, 0x00, 0x96, 0x01, 0xfa,
-
5107  0x01, 0x29, 0x02, 0xb1, 0x00, 0x03, 0x00, 0x0c, 0xb3, 0x01, 0x03, 0x02,
-
5108  0x00, 0x00, 0x2f, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17,
-
5109  0xfe, 0x68, 0x3f, 0x54, 0x01, 0xfa, 0x89, 0x2e, 0x9b, 0x00, 0x00, 0x01,
-
5110  0x00, 0xd4, 0x02, 0x06, 0x01, 0x67, 0x02, 0xbd, 0x00, 0x03, 0x00, 0x0e,
-
5111  0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39,
-
5112  0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xff, 0x2b, 0x54, 0x3f, 0x02, 0x06,
-
5113  0x1c, 0x9b, 0x2e, 0x00, 0x00, 0x02, 0x00, 0x7b, 0x02, 0x08, 0x01, 0xb2,
-
5114  0x02, 0xc0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x40, 0x09, 0x03, 0x02,
-
5115  0x02, 0x07, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5116  0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x27, 0x37, 0x17, 0x05,
-
5117  0x27, 0x37, 0x17, 0x01, 0x4b, 0x35, 0x57, 0x45, 0xfe, 0xfe, 0x35, 0x57,
-
5118  0x45, 0x02, 0x08, 0x20, 0x98, 0x2f, 0x89, 0x20, 0x98, 0x2f, 0x00, 0x01,
-
5119  0x00, 0x75, 0x02, 0x02, 0x01, 0x87, 0x02, 0xb1, 0x00, 0x06, 0x00, 0x10,
-
5120  0xb5, 0x01, 0x04, 0x06, 0x00, 0x03, 0x02, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5121  0xcd, 0x39, 0x30, 0x31, 0x41, 0x27, 0x07, 0x27, 0x37, 0x33, 0x17, 0x01,
-
5122  0x59, 0x5a, 0x61, 0x29, 0x7e, 0x19, 0x7b, 0x02, 0x04, 0x65, 0x67, 0x22,
-
5123  0x8d, 0x8d, 0x00, 0x01, 0x00, 0x83, 0x02, 0x04, 0x01, 0x7c, 0x02, 0xb9,
-
5124  0x00, 0x06, 0x00, 0x12, 0xb6, 0x05, 0x04, 0x04, 0x03, 0x01, 0x02, 0x00,
-
5125  0x00, 0x2f, 0xcd, 0x32, 0x39, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x27,
-
5126  0x37, 0x17, 0x37, 0x17, 0x07, 0xf2, 0x6f, 0x31, 0x4e, 0x51, 0x29, 0x70,
-
5127  0x02, 0x04, 0x8e, 0x27, 0x64, 0x63, 0x27, 0x8d, 0x00, 0x01, 0x00, 0x60,
-
5128  0x02, 0x0a, 0x01, 0x92, 0x02, 0x90, 0x00, 0x0e, 0x00, 0x14, 0xb7, 0x0b,
-
5129  0x0a, 0x0a, 0x03, 0x04, 0x80, 0x07, 0x00, 0x00, 0x2f, 0x32, 0x1a, 0xcc,
-
5130  0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16,
-
5131  0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0e, 0x02, 0xfb, 0x2a, 0x4e, 0x23,
-
5132  0x2c, 0x14, 0x3a, 0x21, 0x1e, 0x3b, 0x1b, 0x23, 0x14, 0x31, 0x36, 0x02,
-
5133  0x0a, 0x27, 0x28, 0x37, 0x21, 0x26, 0x22, 0x25, 0x34, 0x19, 0x25, 0x14,
-
5134  0x00, 0x02, 0x00, 0x9f, 0x02, 0x03, 0x01, 0x5e, 0x02, 0xbb, 0x00, 0x0f,
-
5135  0x00, 0x1b, 0x00, 0x0f, 0xb4, 0x16, 0x08, 0x80, 0x10, 0x00, 0x00, 0x2f,
-
5136  0x32, 0x1a, 0x7c, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22, 0x26, 0x26, 0x35,
-
5137  0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27,
-
5138  0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xfe,
-
5139  0x1a, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x19,
-
5140  0x0f, 0x17, 0x17, 0x0f, 0x10, 0x16, 0x16, 0x02, 0x03, 0x19, 0x2a, 0x19,
-
5141  0x19, 0x2a, 0x19, 0x19, 0x29, 0x1a, 0x19, 0x2a, 0x19, 0x32, 0x19, 0x12,
-
5142  0x12, 0x1a, 0x1a, 0x12, 0x12, 0x19, 0xff, 0xff, 0x00, 0x5f, 0x02, 0x38,
-
5143  0x01, 0xae, 0x02, 0xac, 0x04, 0x06, 0x03, 0x83, 0x00, 0x00, 0x00, 0x01,
-
5144  0x00, 0x76, 0x02, 0x35, 0x01, 0x7d, 0x02, 0x74, 0x00, 0x03, 0x00, 0x08,
-
5145  0xb1, 0x01, 0x00, 0x00, 0x2f, 0x32, 0x30, 0x31, 0x53, 0x35, 0x21, 0x15,
-
5146  0x76, 0x01, 0x07, 0x02, 0x35, 0x3f, 0x3f, 0x00, 0x00, 0x01, 0x00, 0xa1,
-
5147  0xff, 0x38, 0x01, 0x85, 0x00, 0x00, 0x00, 0x17, 0x00, 0x13, 0xb6, 0x11,
-
5148  0x0e, 0x0e, 0x07, 0x00, 0x80, 0x0f, 0x00, 0x2f, 0x1a, 0x7c, 0xcc, 0x32,
-
5149  0x33, 0x11, 0x33, 0x30, 0x31, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16,
-
5150  0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, 0x07, 0x1e,
-
5151  0x02, 0x15, 0x14, 0x06, 0x01, 0x0d, 0x1c, 0x36, 0x1a, 0x1d, 0x16, 0x2c,
-
5152  0x19, 0x18, 0x19, 0x1b, 0x17, 0x24, 0x0b, 0x38, 0x05, 0x1c, 0x25, 0x12,
-
5153  0x3d, 0xc8, 0x10, 0x13, 0x32, 0x12, 0x0f, 0x11, 0x0f, 0x0f, 0x0f, 0x56,
-
5154  0x2a, 0x02, 0x14, 0x1d, 0x10, 0x25, 0x36, 0x00, 0x00, 0x01, 0x00, 0xef,
-
5155  0xff, 0x19, 0x01, 0x8d, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0a, 0xb2, 0x00,
-
5156  0x01, 0x09, 0x00, 0x2f, 0xcc, 0x32, 0x30, 0x31, 0x45, 0x07, 0x2e, 0x02,
-
5157  0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0e, 0x02, 0x15, 0x14, 0x16, 0x01,
-
5158  0x7f, 0x19, 0x25, 0x35, 0x1d, 0x1d, 0x39, 0x29, 0x1f, 0x18, 0x23, 0x12,
-
5159  0x1f, 0xa9, 0x3e, 0x08, 0x1a, 0x27, 0x19, 0x1a, 0x35, 0x33, 0x17, 0x14,
-
5160  0x13, 0x29, 0x26, 0x10, 0x14, 0x1d, 0xff, 0xff, 0x00, 0x68, 0x02, 0xae,
-
5161  0x01, 0x8c, 0x03, 0x1d, 0x04, 0x06, 0x03, 0xab, 0x03, 0x00, 0xff, 0xff,
-
5162  0x00, 0xc0, 0x02, 0xb1, 0x01, 0x34, 0x03, 0x23, 0x04, 0x06, 0x03, 0xac,
-
5163  0xf4, 0x00, 0xff, 0xff, 0x00, 0x8e, 0x02, 0x92, 0x01, 0x54, 0x03, 0x1b,
-
5164  0x04, 0x06, 0x03, 0xad, 0xdc, 0x00, 0xff, 0xff, 0x00, 0xab, 0x02, 0x92,
-
5165  0x01, 0x70, 0x03, 0x1b, 0x04, 0x06, 0x03, 0xae, 0x00, 0x00, 0xff, 0xff,
-
5166  0x00, 0x6a, 0x02, 0x84, 0x01, 0xd3, 0x03, 0x2b, 0x04, 0x06, 0x03, 0xaf,
-
5167  0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0x1a,
-
5168  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x04, 0x05, 0x05, 0x01,
-
5169  0x00, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
-
5170  0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x78, 0x22,
-
5171  0x95, 0x19, 0x9a, 0x21, 0x84, 0x02, 0x8d, 0x2c, 0x61, 0x61, 0x2b, 0x44,
-
5172  0xff, 0xff, 0x00, 0x54, 0x02, 0x92, 0x01, 0x9b, 0x03, 0x1f, 0x04, 0x06,
-
5173  0x03, 0xb0, 0x0a, 0x04, 0xff, 0xff, 0x00, 0x69, 0x02, 0x9d, 0x01, 0x8b,
-
5174  0x03, 0x18, 0x04, 0x06, 0x03, 0xb1, 0xfb, 0x07, 0xff, 0xff, 0x00, 0x9a,
-
5175  0x02, 0x6a, 0x01, 0x59, 0x03, 0x22, 0x04, 0x06, 0x03, 0xb2, 0xff, 0x00,
-
5176  0xff, 0xff, 0x00, 0x5a, 0x02, 0xac, 0x01, 0xa9, 0x03, 0x20, 0x04, 0x06,
-
5177  0x03, 0x83, 0xfb, 0x74, 0x00, 0x01, 0x01, 0x8e, 0x02, 0x36, 0x01, 0xf1,
-
5178  0x02, 0xcd, 0x00, 0x09, 0x00, 0x0c, 0xb3, 0x01, 0x00, 0x80, 0x05, 0x00,
-
5179  0x2f, 0x1a, 0xcc, 0x32, 0x30, 0x31, 0x41, 0x27, 0x32, 0x36, 0x36, 0x35,
-
5180  0x33, 0x14, 0x06, 0x06, 0x01, 0x98, 0x0a, 0x11, 0x10, 0x04, 0x3e, 0x0c,
-
5181  0x25, 0x02, 0x36, 0x39, 0x10, 0x29, 0x25, 0x34, 0x43, 0x20, 0x00, 0x02,
-
5182  0x00, 0x65, 0x02, 0xae, 0x01, 0x89, 0x03, 0x1d, 0x00, 0x0b, 0x00, 0x17,
-
5183  0x00, 0x0c, 0xb3, 0x06, 0x00, 0x12, 0x0c, 0x00, 0x2f, 0x33, 0x33, 0x32,
-
5184  0x30, 0x31, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
5185  0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15,
-
5186  0x14, 0x06, 0x9d, 0x16, 0x22, 0x22, 0x16, 0x18, 0x21, 0x22, 0x9d, 0x16,
-
5187  0x21, 0x21, 0x16, 0x18, 0x20, 0x21, 0x02, 0xae, 0x21, 0x16, 0x16, 0x22,
-
5188  0x22, 0x16, 0x16, 0x21, 0x20, 0x17, 0x17, 0x21, 0x22, 0x16, 0x16, 0x21,
-
5189  0xff, 0xff, 0x00, 0xcc, 0x02, 0xb1, 0x01, 0x40, 0x03, 0x23, 0x04, 0x07,
-
5190  0x03, 0x94, 0x00, 0x08, 0x00, 0x8c, 0x00, 0x01, 0x00, 0xb2, 0x02, 0x92,
-
5191  0x01, 0x78, 0x03, 0x1b, 0x00, 0x03, 0x00, 0x0e, 0xb4, 0x01, 0x03, 0x02,
-
5192  0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd, 0x39, 0x39, 0x30, 0x31, 0x41, 0x27,
-
5193  0x37, 0x17, 0x01, 0x5f, 0xad, 0x2a, 0x9c, 0x02, 0x92, 0x3e, 0x4b, 0x5b,
-
5194  0x00, 0x01, 0x00, 0xab, 0x02, 0x92, 0x01, 0x70, 0x03, 0x1b, 0x00, 0x03,
-
5195  0x00, 0x0e, 0xb4, 0x03, 0x01, 0x02, 0x80, 0x00, 0x00, 0x2f, 0x1a, 0xcd,
-
5196  0x39, 0x39, 0x30, 0x31, 0x53, 0x27, 0x37, 0x17, 0xc3, 0x18, 0x9b, 0x2a,
-
5197  0x02, 0x92, 0x2e, 0x5b, 0x4b, 0x00, 0x00, 0x02, 0x00, 0x6a, 0x02, 0x84,
-
5198  0x01, 0xd3, 0x03, 0x2b, 0x00, 0x03, 0x00, 0x07, 0x00, 0x19, 0x40, 0x0a,
-
5199  0x03, 0x02, 0x02, 0x07, 0x06, 0x80, 0x01, 0x00, 0x05, 0x04, 0x00, 0x2f,
-
5200  0x33, 0x33, 0x32, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41,
-
5201  0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x01, 0x3f, 0x22, 0x85, 0x31,
-
5202  0xfe, 0xb9, 0x22, 0x86, 0x31, 0x02, 0x84, 0x2b, 0x7c, 0x42, 0x65, 0x2b,
-
5203  0x7c, 0x42, 0x00, 0x01, 0x00, 0x4a, 0x02, 0x8e, 0x01, 0x91, 0x03, 0x1b,
-
5204  0x00, 0x06, 0x00, 0x17, 0x40, 0x09, 0x06, 0x02, 0x01, 0x00, 0x00, 0x04,
-
5205  0x05, 0x80, 0x02, 0x00, 0x2f, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x11,
-
5206  0x39, 0x30, 0x31, 0x41, 0x17, 0x07, 0x23, 0x27, 0x37, 0x17, 0x01, 0x6f,
-
5207  0x22, 0x95, 0x19, 0x99, 0x20, 0x84, 0x03, 0x1b, 0x2b, 0x62, 0x62, 0x2b,
-
5208  0x45, 0x00, 0xff, 0xff, 0x00, 0x6e, 0x02, 0x96, 0x01, 0x90, 0x03, 0x11,
-
5209  0x04, 0x06, 0x03, 0x81, 0xfd, 0x7e, 0x00, 0x02, 0x00, 0x9b, 0x02, 0x6a,
-
5210  0x01, 0x5a, 0x03, 0x22, 0x00, 0x0f, 0x00, 0x1b, 0x00, 0x0c, 0xb3, 0x16,
-
5211  0x08, 0x10, 0x00, 0x00, 0x2f, 0x32, 0xcc, 0x32, 0x30, 0x31, 0x53, 0x22,
-
5212  0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14,
-
5213  0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15,
-
5214  0x14, 0x16, 0xfb, 0x1a, 0x2c, 0x1a, 0x1b, 0x2b, 0x1a, 0x1a, 0x2b, 0x1a,
-
5215  0x19, 0x2b, 0x1a, 0x0f, 0x17, 0x17, 0x0f, 0x10, 0x17, 0x17, 0x02, 0x6a,
-
5216  0x19, 0x2a, 0x19, 0x19, 0x2a, 0x19, 0x19, 0x2a, 0x1a, 0x18, 0x2a, 0x19,
-
5217  0x32, 0x18, 0x12, 0x13, 0x19, 0x19, 0x13, 0x12, 0x18, 0x00, 0xff, 0xff,
-
5218  0x00, 0x5f, 0x02, 0xba, 0x01, 0xae, 0x03, 0x2e, 0x04, 0x07, 0x03, 0x83,
-
5219  0x00, 0x00, 0x00, 0x82, 0x00, 0x01, 0x00, 0x73, 0x02, 0x3d, 0x01, 0x95,
-
5220  0x02, 0xad, 0x00, 0x17, 0x00, 0x1c, 0x40, 0x0c, 0x01, 0x00, 0x00, 0x09,
-
5221  0x10, 0x80, 0x0d, 0x0c, 0x0c, 0x15, 0x04, 0x10, 0x00, 0x3f, 0x33, 0x33,
-
5222  0x11, 0x33, 0x1a, 0xcd, 0x32, 0x32, 0x11, 0x33, 0x30, 0x31, 0x41, 0x17,
-
5223  0x06, 0x06, 0x23, 0x22, 0x2e, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36,
-
5224  0x36, 0x33, 0x32, 0x1e, 0x02, 0x33, 0x32, 0x36, 0x01, 0x63, 0x32, 0x13,
-
5225  0x29, 0x1a, 0x13, 0x1f, 0x19, 0x17, 0x0c, 0x0d, 0x17, 0x08, 0x32, 0x0c,
-
5226  0x32, 0x19, 0x13, 0x21, 0x1c, 0x18, 0x0b, 0x0b, 0x12, 0x02, 0xa0, 0x18,
-
5227  0x29, 0x22, 0x10, 0x15, 0x10, 0x15, 0x14, 0x18, 0x22, 0x2a, 0x10, 0x16,
-
5228  0x10, 0x13, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
-
5229  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x08,
-
5230  0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x34,
-
5231  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x08,
-
5232  0x00, 0x83, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x93, 0x03, 0x50,
-
5233  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x10,
-
5234  0x00, 0x87, 0xff, 0xff, 0x00, 0x71, 0x02, 0x17, 0x01, 0x94, 0x03, 0x29,
-
5235  0x06, 0x26, 0x03, 0x81, 0x00, 0x00, 0x00, 0x06, 0x03, 0xb4, 0xff, 0x7d,
-
5236  0xff, 0xff, 0x00, 0x64, 0x01, 0xfc, 0x01, 0xf2, 0x03, 0x2d, 0x04, 0x26,
-
5237  0x03, 0x7f, 0x07, 0x00, 0x00, 0x07, 0x03, 0x7d, 0x00, 0x8b, 0x00, 0x7c,
-
5238  0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0xaa, 0x03, 0x43, 0x04, 0x26,
-
5239  0x03, 0x7f, 0x08, 0x00, 0x00, 0x07, 0x03, 0x7c, 0x00, 0x81, 0x00, 0x92,
-
5240  0xff, 0xff, 0x00, 0x5f, 0x01, 0xfc, 0x01, 0xd4, 0x03, 0x2f, 0x04, 0x26,
-
5241  0x03, 0x7f, 0x01, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0x66,
-
5242  0xff, 0xff, 0x00, 0x66, 0x01, 0xfc, 0x01, 0x9d, 0x03, 0x3d, 0x04, 0x26,
-
5243  0x03, 0x7f, 0x09, 0x00, 0x02, 0x07, 0x03, 0xb4, 0xff, 0xfa, 0x00, 0x90,
-
5244  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x02, 0x20, 0x03, 0x88, 0x06, 0x26,
-
5245  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa3, 0x00, 0xb1, 0x00, 0x6d,
-
5246  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xaa, 0x06, 0x26,
-
5247  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xa2, 0x00, 0x04, 0x00, 0x8f,
-
5248  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0xd5, 0x03, 0xac, 0x06, 0x26,
-
5249  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0x85, 0x00, 0x89, 0x00, 0xe4,
-
5250  0xff, 0xff, 0x00, 0x56, 0x02, 0x8d, 0x01, 0x9e, 0x03, 0xa9, 0x06, 0x26,
-
5251  0x03, 0xa5, 0x00, 0x00, 0x00, 0x07, 0x03, 0xb4, 0xff, 0xf2, 0x00, 0xfd,
-
5252  0x00, 0x01, 0x00, 0x00, 0x03, 0xc2, 0x00, 0xa8, 0x00, 0x2a, 0x00, 0x73,
-
5253  0x00, 0x05, 0x00, 0x02, 0x00, 0x10, 0x00, 0x2f, 0x00, 0x9a, 0x00, 0x00,
-
5254  0x02, 0xdb, 0x0f, 0x83, 0x00, 0x03, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
-
5255  0x00, 0x26, 0x00, 0x38, 0x00, 0x4a, 0x00, 0x64, 0x00, 0x7f, 0x00, 0x9a,
-
5256  0x00, 0xb5, 0x00, 0xd0, 0x00, 0xe2, 0x00, 0xf9, 0x01, 0x14, 0x01, 0x2b,
-
5257  0x01, 0x42, 0x01, 0x59, 0x01, 0x6d, 0x01, 0x80, 0x01, 0x93, 0x01, 0xa5,
-
5258  0x01, 0xb8, 0x01, 0xcb, 0x01, 0xde, 0x01, 0xf1, 0x02, 0x05, 0x02, 0x22,
-
5259  0x02, 0x34, 0x02, 0x69, 0x02, 0x7b, 0x02, 0xc9, 0x03, 0x18, 0x03, 0x2a,
-
5260  0x03, 0x3c, 0x03, 0x4e, 0x03, 0x68, 0x03, 0x7a, 0x03, 0x8c, 0x03, 0xbf,
-
5261  0x04, 0x03, 0x04, 0x15, 0x04, 0x1d, 0x04, 0x30, 0x04, 0x43, 0x04, 0x65,
-
5262  0x04, 0x77, 0x04, 0x89, 0x04, 0x9b, 0x04, 0xb5, 0x04, 0xc7, 0x04, 0xde,
-
5263  0x04, 0xf9, 0x05, 0x10, 0x05, 0x27, 0x05, 0x3e, 0x05, 0x52, 0x05, 0x65,
-
5264  0x05, 0x77, 0x05, 0x8a, 0x05, 0x9c, 0x05, 0xaf, 0x05, 0xc2, 0x05, 0xd5,
-
5265  0x05, 0xf1, 0x06, 0x0d, 0x06, 0x1f, 0x06, 0x31, 0x06, 0x7f, 0x06, 0x9e,
-
5266  0x06, 0xf4, 0x07, 0x06, 0x07, 0x18, 0x07, 0x2a, 0x07, 0x3d, 0x07, 0x4f,
-
5267  0x07, 0x62, 0x07, 0x91, 0x07, 0xca, 0x07, 0xdd, 0x07, 0xef, 0x08, 0x02,
-
5268  0x08, 0x23, 0x08, 0x35, 0x08, 0x47, 0x08, 0x59, 0x08, 0x6d, 0x08, 0x80,
-
5269  0x08, 0x9c, 0x08, 0xae, 0x08, 0xc1, 0x08, 0xd3, 0x08, 0xe6, 0x08, 0xf9,
-
5270  0x09, 0x0c, 0x09, 0x1e, 0x09, 0x30, 0x09, 0x68, 0x09, 0x7a, 0x09, 0xac,
-
5271  0x09, 0xbf, 0x0a, 0x06, 0x0a, 0x23, 0x0a, 0x6b, 0x0a, 0x7d, 0x0a, 0xb6,
-
5272  0x0a, 0xc9, 0x0a, 0xdc, 0x0a, 0xef, 0x0b, 0x46, 0x0b, 0x59, 0x0b, 0x89,
-
5273  0x0b, 0xaf, 0x0b, 0xc2, 0x0b, 0xea, 0x0b, 0xfc, 0x0c, 0x0e, 0x0c, 0x21,
-
5274  0x0c, 0x33, 0x0c, 0x46, 0x0c, 0x82, 0x0c, 0x95, 0x0c, 0xa7, 0x0c, 0xe0,
-
5275  0x0c, 0xf2, 0x0d, 0x04, 0x0d, 0x16, 0x0d, 0x2d, 0x0d, 0x48, 0x0d, 0x5f,
-
5276  0x0d, 0x76, 0x0d, 0x8d, 0x0d, 0xa1, 0x0d, 0xb4, 0x0d, 0xd0, 0x0d, 0xeb,
-
5277  0x0d, 0xfe, 0x0e, 0x10, 0x0e, 0x23, 0x0e, 0x36, 0x0e, 0x48, 0x0e, 0x5b,
-
5278  0x0e, 0x6d, 0x0e, 0x80, 0x0e, 0x92, 0x0e, 0xa5, 0x0e, 0xb8, 0x0e, 0xcb,
-
5279  0x0e, 0xe7, 0x0f, 0x03, 0x0f, 0x15, 0x0f, 0x5e, 0x0f, 0x70, 0x0f, 0x82,
-
5280  0x0f, 0x9d, 0x0f, 0xb9, 0x0f, 0xd5, 0x10, 0x29, 0x10, 0x5b, 0x10, 0x99,
-
5281  0x10, 0xee, 0x11, 0x26, 0x11, 0x38, 0x11, 0x4a, 0x11, 0x5d, 0x11, 0x71,
-
5282  0x11, 0x84, 0x11, 0x97, 0x11, 0xaa, 0x12, 0x12, 0x12, 0x24, 0x12, 0x3e,
-
5283  0x12, 0x50, 0x12, 0x6b, 0x12, 0x7d, 0x12, 0x8f, 0x12, 0xa2, 0x12, 0xb4,
-
5284  0x12, 0xc7, 0x12, 0xe2, 0x13, 0x3c, 0x13, 0x44, 0x13, 0x5e, 0x13, 0x82,
-
5285  0x13, 0x94, 0x13, 0xa6, 0x13, 0xb9, 0x13, 0xcc, 0x13, 0xdf, 0x14, 0x0d,
-
5286  0x14, 0x1f, 0x14, 0x31, 0x14, 0x43, 0x14, 0x57, 0x14, 0x6a, 0x14, 0x7d,
-
5287  0x14, 0x8f, 0x14, 0xa2, 0x14, 0xb5, 0x14, 0xc7, 0x14, 0xda, 0x14, 0xec,
-
5288  0x14, 0xff, 0x15, 0x11, 0x15, 0x24, 0x15, 0x37, 0x15, 0x4a, 0x15, 0x67,
-
5289  0x15, 0x79, 0x15, 0x8d, 0x15, 0x9f, 0x15, 0xba, 0x15, 0xd6, 0x16, 0x01,
-
5290  0x16, 0x13, 0x16, 0x25, 0x16, 0x38, 0x16, 0x4a, 0x16, 0x71, 0x16, 0x92,
-
5291  0x16, 0xa4, 0x16, 0xb6, 0x16, 0xc9, 0x16, 0xdb, 0x16, 0xee, 0x17, 0x00,
-
5292  0x17, 0x13, 0x17, 0x26, 0x17, 0x38, 0x17, 0x61, 0x17, 0x73, 0x17, 0x85,
-
5293  0x17, 0x97, 0x17, 0xaa, 0x17, 0xd8, 0x18, 0x38, 0x18, 0x4a, 0x18, 0x5c,
-
5294  0x18, 0x73, 0x18, 0x8e, 0x18, 0xa5, 0x18, 0xbc, 0x18, 0xd3, 0x18, 0xe5,
-
5295  0x18, 0xfc, 0x19, 0x17, 0x19, 0x2e, 0x19, 0x45, 0x19, 0x5c, 0x19, 0x6f,
-
5296  0x19, 0x82, 0x19, 0x95, 0x19, 0xa7, 0x19, 0xb9, 0x19, 0xcb, 0x19, 0xdd,
-
5297  0x19, 0xef, 0x1a, 0x02, 0x1a, 0x1e, 0x1a, 0x30, 0x1a, 0xba, 0x1a, 0xcc,
-
5298  0x1b, 0x23, 0x1b, 0x70, 0x1b, 0xb6, 0x1b, 0xc8, 0x1b, 0xda, 0x1b, 0xec,
-
5299  0x1c, 0x06, 0x1c, 0x18, 0x1c, 0x2a, 0x1c, 0x87, 0x1c, 0xef, 0x1d, 0x65,
-
5300  0x1d, 0x78, 0x1d, 0x8b, 0x1d, 0x9e, 0x1d, 0xec, 0x1d, 0xfe, 0x1e, 0x10,
-
5301  0x1e, 0x22, 0x1e, 0x3c, 0x1e, 0x4e, 0x1e, 0x65, 0x1e, 0x80, 0x1e, 0x97,
-
5302  0x1e, 0xae, 0x1e, 0xc5, 0x1e, 0xd8, 0x1e, 0xeb, 0x1e, 0xfd, 0x1f, 0x10,
-
5303  0x1f, 0x22, 0x1f, 0x34, 0x1f, 0x46, 0x1f, 0x58, 0x1f, 0x73, 0x1f, 0x8e,
-
5304  0x1f, 0xa0, 0x1f, 0xfe, 0x20, 0x10, 0x20, 0x5d, 0x20, 0x66, 0x20, 0xa2,
-
5305  0x21, 0x45, 0x21, 0x57, 0x21, 0x69, 0x21, 0x7b, 0x21, 0x8d, 0x21, 0x9f,
-
5306  0x21, 0xb1, 0x21, 0xeb, 0x21, 0xfe, 0x22, 0x11, 0x22, 0x24, 0x22, 0x37,
-
5307  0x22, 0x49, 0x22, 0x67, 0x22, 0x79, 0x22, 0x8b, 0x22, 0x9d, 0x22, 0xb0,
-
5308  0x22, 0xc3, 0x22, 0xe0, 0x22, 0xf2, 0x23, 0x05, 0x23, 0x17, 0x23, 0x29,
-
5309  0x23, 0x3b, 0x23, 0x4d, 0x23, 0x67, 0x23, 0x79, 0x23, 0x8b, 0x23, 0xbe,
-
5310  0x23, 0xd0, 0x24, 0x02, 0x24, 0x15, 0x24, 0x49, 0x24, 0x66, 0x24, 0x78,
-
5311  0x24, 0x8b, 0x24, 0x9e, 0x24, 0xcf, 0x24, 0xe2, 0x25, 0x3a, 0x25, 0x4d,
-
5312  0x25, 0x78, 0x25, 0xc9, 0x25, 0xdc, 0x26, 0x0f, 0x26, 0x21, 0x26, 0x33,
-
5313  0x26, 0x46, 0x26, 0x58, 0x26, 0x6b, 0x26, 0xb9, 0x26, 0xcc, 0x26, 0xde,
-
5314  0x27, 0x19, 0x27, 0x2b, 0x27, 0x3d, 0x27, 0x4f, 0x27, 0x66, 0x27, 0x81,
-
5315  0x27, 0x98, 0x27, 0xaf, 0x27, 0xc6, 0x27, 0xd9, 0x27, 0xec, 0x28, 0x08,
-
5316  0x28, 0x23, 0x28, 0x36, 0x28, 0x48, 0x28, 0x5a, 0x28, 0x6d, 0x28, 0x7f,
-
5317  0x28, 0x92, 0x28, 0xa4, 0x28, 0xb6, 0x28, 0xc8, 0x28, 0xdb, 0x28, 0xed,
-
5318  0x28, 0xff, 0x29, 0x1a, 0x29, 0x35, 0x29, 0x40, 0x29, 0x89, 0x29, 0x9b,
-
5319  0x29, 0xad, 0x29, 0xc8, 0x29, 0xe4, 0x29, 0xff, 0x2a, 0x81, 0x2a, 0xd0,
-
5320  0x2b, 0x26, 0x2b, 0x75, 0x2b, 0xaf, 0x2b, 0xc1, 0x2b, 0xd3, 0x2b, 0xe6,
-
5321  0x2b, 0xf9, 0x2c, 0x0c, 0x2c, 0x5f, 0x2c, 0x71, 0x2c, 0x84, 0x2c, 0xc6,
-
5322  0x2d, 0x2a, 0x2d, 0x3c, 0x2d, 0x57, 0x2d, 0x69, 0x2d, 0x84, 0x2d, 0x96,
-
5323  0x2d, 0xa8, 0x2d, 0xbb, 0x2d, 0xcd, 0x2d, 0xe0, 0x2d, 0xfb, 0x2e, 0x5d,
-
5324  0x2e, 0x9f, 0x2e, 0xea, 0x2e, 0xfe, 0x2f, 0x10, 0x2f, 0x23, 0x2f, 0x36,
-
5325  0x2f, 0x49, 0x2f, 0x5c, 0x2f, 0x9c, 0x2f, 0xae, 0x2f, 0xc0, 0x2f, 0xd2,
-
5326  0x2f, 0xe5, 0x2f, 0xf8, 0x30, 0x0b, 0x30, 0x1d, 0x30, 0x2f, 0x30, 0x42,
-
5327  0x30, 0x54, 0x30, 0x67, 0x30, 0x79, 0x30, 0x8b, 0x30, 0x9d, 0x30, 0xb0,
-
5328  0x30, 0xc2, 0x30, 0xd4, 0x30, 0xf0, 0x31, 0x03, 0x31, 0x16, 0x31, 0x28,
-
5329  0x31, 0x43, 0x31, 0x69, 0x31, 0x9c, 0x31, 0xae, 0x31, 0xc0, 0x31, 0xd3,
-
5330  0x31, 0xe5, 0x32, 0x09, 0x32, 0x4f, 0x32, 0x61, 0x32, 0x73, 0x32, 0x86,
-
5331  0x32, 0x98, 0x32, 0xab, 0x32, 0xbd, 0x32, 0xcf, 0x32, 0xe1, 0x32, 0xf3,
-
5332  0x33, 0x1b, 0x33, 0x2d, 0x33, 0x3f, 0x33, 0x51, 0x33, 0x64, 0x33, 0xa3,
-
5333  0x34, 0x09, 0x34, 0x4d, 0x34, 0x55, 0x34, 0x8b, 0x34, 0xd4, 0x34, 0xf0,
-
5334  0x35, 0x3a, 0x35, 0x9b, 0x35, 0xc6, 0x36, 0x18, 0x36, 0x7f, 0x36, 0xa2,
-
5335  0x37, 0x12, 0x37, 0x72, 0x37, 0xc0, 0x37, 0xf9, 0x38, 0x02, 0x38, 0x0b,
-
5336  0x38, 0x14, 0x38, 0x1d, 0x38, 0x26, 0x38, 0x2f, 0x38, 0x38, 0x38, 0x41,
-
5337  0x38, 0x4a, 0x38, 0x53, 0x38, 0x5b, 0x38, 0x63, 0x38, 0x6c, 0x38, 0x75,
-
5338  0x38, 0x7e, 0x38, 0x86, 0x38, 0x8e, 0x38, 0x96, 0x38, 0x9e, 0x38, 0xa6,
-
5339  0x38, 0xae, 0x38, 0xb6, 0x38, 0xbe, 0x38, 0xc6, 0x38, 0xce, 0x38, 0xd6,
-
5340  0x38, 0xde, 0x38, 0xe6, 0x38, 0xee, 0x38, 0xf6, 0x39, 0x37, 0x39, 0x53,
-
5341  0x39, 0x97, 0x39, 0xef, 0x3a, 0x17, 0x3a, 0x62, 0x3a, 0xbe, 0x3a, 0xde,
-
5342  0x3b, 0x41, 0x3b, 0x95, 0x3b, 0xa9, 0x3c, 0x06, 0x3c, 0x52, 0x3c, 0xd3,
-
5343  0x3c, 0xdc, 0x3c, 0xe5, 0x3c, 0xed, 0x3d, 0x23, 0x3d, 0x2c, 0x3d, 0x34,
-
5344  0x3d, 0x3c, 0x3d, 0x85, 0x3d, 0xa0, 0x3d, 0xc5, 0x3d, 0xf2, 0x3e, 0x2a,
-
5345  0x3e, 0x6a, 0x3e, 0x9a, 0x3e, 0xc8, 0x3f, 0x1b, 0x3f, 0x6d, 0x3f, 0x87,
-
5346  0x3f, 0xa7, 0x3f, 0xd2, 0x3f, 0xf5, 0x40, 0x48, 0x40, 0x5c, 0x40, 0x72,
-
5347  0x40, 0x7a, 0x40, 0xa5, 0x40, 0xcd, 0x40, 0xf4, 0x41, 0x3e, 0x41, 0x89,
-
5348  0x41, 0xa0, 0x41, 0xb8, 0x41, 0xc9, 0x41, 0xd1, 0x41, 0xe2, 0x41, 0xf3,
-
5349  0x41, 0xfb, 0x42, 0x03, 0x42, 0x0b, 0x42, 0x1b, 0x42, 0x24, 0x42, 0x68,
-
5350  0x42, 0xae, 0x42, 0xf5, 0x43, 0x1d, 0x43, 0x45, 0x43, 0x67, 0x43, 0x8a,
-
5351  0x43, 0xa0, 0x43, 0xb5, 0x43, 0xc0, 0x43, 0xdb, 0x43, 0xe6, 0x44, 0x07,
-
5352  0x44, 0x2e, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65,
-
5353  0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0x65, 0x44, 0xb4, 0x45, 0x04,
-
5354  0x45, 0x5d, 0x45, 0xb2, 0x46, 0x3c, 0x46, 0xa5, 0x47, 0x0b, 0x47, 0x5f,
-
5355  0x47, 0x72, 0x47, 0xc5, 0x48, 0x09, 0x48, 0x11, 0x48, 0x58, 0x48, 0x93,
-
5356  0x48, 0xc7, 0x49, 0x80, 0x49, 0xd2, 0x4a, 0x15, 0x4a, 0x5a, 0x4a, 0xc6,
-
5357  0x4a, 0xfd, 0x4b, 0x40, 0x4b, 0x6b, 0x4b, 0x8b, 0x4b, 0x9f, 0x4b, 0xd2,
-
5358  0x4b, 0xda, 0x4b, 0xf8, 0x4c, 0x09, 0x4c, 0x2e, 0x4c, 0x66, 0x4c, 0x80,
-
5359  0x4c, 0xad, 0x4c, 0xc8, 0x4c, 0xe4, 0x4d, 0x0a, 0x4d, 0x31, 0x4d, 0x59,
-
5360  0x4d, 0x64, 0x4d, 0x9c, 0x4d, 0xb0, 0x4d, 0xcd, 0x4e, 0x38, 0x4e, 0x85,
-
5361  0x4e, 0xbc, 0x4f, 0x07, 0x4f, 0x2c, 0x4f, 0x4c, 0x4f, 0x77, 0x4f, 0x93,
-
5362  0x4f, 0xea, 0x50, 0x49, 0x50, 0xc2, 0x51, 0x6c, 0x51, 0xc0, 0x51, 0xc9,
-
5363  0x51, 0xd1, 0x51, 0xf5, 0x52, 0x19, 0x52, 0x3d, 0x52, 0x61, 0x52, 0x85,
-
5364  0x52, 0xaa, 0x52, 0xce, 0x52, 0xf2, 0x53, 0x27, 0x53, 0x4d, 0x53, 0x7e,
-
5365  0x53, 0xb4, 0x53, 0xe9, 0x54, 0x21, 0x54, 0x41, 0x54, 0x60, 0x54, 0x80,
-
5366  0x54, 0xa0, 0x54, 0xb0, 0x54, 0xc1, 0x54, 0xd2, 0x54, 0xe3, 0x54, 0xf4,
-
5367  0x55, 0x05, 0x55, 0x16, 0x55, 0x27, 0x55, 0x38, 0x55, 0x48, 0x55, 0x59,
-
5368  0x55, 0x6a, 0x55, 0x7b, 0x55, 0x8c, 0x55, 0x9d, 0x55, 0xae, 0x55, 0xbf,
-
5369  0x55, 0xd0, 0x55, 0xe2, 0x55, 0xf3, 0x56, 0x04, 0x56, 0x15, 0x56, 0x28,
-
5370  0x56, 0x3e, 0x56, 0x52, 0x56, 0x66, 0x56, 0x77, 0x56, 0x91, 0x56, 0xa4,
-
5371  0x57, 0x8a, 0x58, 0x70, 0x59, 0x3e, 0x59, 0x62, 0x59, 0xa1, 0x59, 0xb3,
-
5372  0x59, 0xce, 0x59, 0xf0, 0x5a, 0x1d, 0x5a, 0x3f, 0x5a, 0x61, 0x5a, 0x7a,
-
5373  0x5a, 0xa6, 0x5a, 0xc8, 0x5a, 0xea, 0x5b, 0x03, 0x5b, 0x3b, 0x5b, 0x64,
-
5374  0x5b, 0x91, 0x5b, 0xb1, 0x5b, 0xce, 0x5b, 0xeb, 0x5c, 0x04, 0x5c, 0x19,
-
5375  0x5c, 0x37, 0x5c, 0x4c, 0x5c, 0x6a, 0x5c, 0x8b, 0x5c, 0xa6, 0x5c, 0xbc,
-
5376  0x5c, 0xda, 0x5c, 0xf0, 0x5d, 0x0e, 0x5d, 0x31, 0x5d, 0x55, 0x5d, 0x72,
-
5377  0x5d, 0x8f, 0x5d, 0xa8, 0x5d, 0xc3, 0x5d, 0xd5, 0x5d, 0xef, 0x5e, 0x04,
-
5378  0x5e, 0x19, 0x5e, 0x2a, 0x5e, 0x3b, 0x5e, 0x54, 0x5e, 0x7d, 0x5e, 0xb2,
-
5379  0x5e, 0xc3, 0x5e, 0xe7, 0x5f, 0x0b, 0x5f, 0x1c, 0x5f, 0x35, 0x5f, 0x4a,
-
5380  0x5f, 0x61, 0x5f, 0x76, 0x5f, 0x88, 0x5f, 0xaa, 0x5f, 0xc4, 0x5f, 0xde,
-
5381  0x5f, 0xff, 0x60, 0x1d, 0x60, 0x39, 0x60, 0x59, 0x60, 0x74, 0x60, 0x8f,
-
5382  0x60, 0xad, 0x60, 0xce, 0x60, 0xee, 0x61, 0x0f, 0x61, 0x31, 0x61, 0x53,
-
5383  0x61, 0x6b, 0x61, 0x85, 0x61, 0xaa, 0x61, 0xc2, 0x61, 0xd9, 0x61, 0xea,
-
5384  0x62, 0x04, 0x62, 0x19, 0x62, 0x2e, 0x62, 0x3e, 0x62, 0x4e, 0x62, 0x67,
-
5385  0x62, 0x91, 0x62, 0xbf, 0x62, 0xcf, 0x62, 0xf0, 0x63, 0x11, 0x63, 0x22,
-
5386  0x63, 0x38, 0x63, 0x51, 0x63, 0x65, 0x63, 0x79, 0x63, 0x8a, 0x63, 0xac,
-
5387  0x63, 0xc6, 0x63, 0xe0, 0x64, 0x00, 0x64, 0x1d, 0x64, 0x39, 0x64, 0x59,
-
5388  0x64, 0x75, 0x64, 0x91, 0x64, 0xb2, 0x64, 0xd3, 0x64, 0xf3, 0x65, 0x10,
-
5389  0x65, 0x2d, 0x65, 0x4f, 0x65, 0x67, 0x65, 0x84, 0x65, 0x98, 0x65, 0xb5,
-
5390  0x65, 0xc9, 0x65, 0xe5, 0x65, 0xff, 0x66, 0x18, 0x66, 0x2d, 0x66, 0x46,
-
5391  0x66, 0x5b, 0x66, 0x7d, 0x66, 0x99, 0x66, 0xb5, 0x66, 0xe5, 0x67, 0x07,
-
5392  0x67, 0x29, 0x67, 0x4a, 0x67, 0x63, 0x67, 0x7c, 0x67, 0x99, 0x67, 0xb0,
-
5393  0x67, 0xc7, 0x67, 0xf8, 0x68, 0x1c, 0x68, 0x40, 0x68, 0xbb, 0x69, 0x37,
-
5394  0x69, 0x97, 0x69, 0xe0, 0x6a, 0x3b, 0x6a, 0x75, 0x6a, 0x8c, 0x6a, 0xaf,
-
5395  0x6a, 0xd5, 0x6a, 0xdd, 0x6b, 0x06, 0x6b, 0x36, 0x6b, 0xa2, 0x6c, 0x23,
-
5396  0x6c, 0x48, 0x6c, 0xe2, 0x6d, 0x5c, 0x6d, 0xc5, 0x6d, 0xfd, 0x6e, 0x38,
-
5397  0x6e, 0x49, 0x6e, 0x54, 0x6e, 0x66, 0x6e, 0x81, 0x6e, 0xa2, 0x6f, 0x05,
-
5398  0x6f, 0x36, 0x6f, 0x96, 0x6f, 0xd5, 0x6f, 0xec, 0x70, 0x39, 0x70, 0x60,
-
5399  0x70, 0xa3, 0x70, 0xd9, 0x71, 0x14, 0x71, 0x51, 0x71, 0x73, 0x72, 0x2b,
-
5400  0x72, 0x6e, 0x72, 0xc9, 0x72, 0xec, 0x73, 0x33, 0x73, 0x5d, 0x73, 0x86,
-
5401  0x73, 0xb4, 0x73, 0xc4, 0x73, 0xec, 0x74, 0x12, 0x74, 0x1d, 0x74, 0x2f,
-
5402  0x74, 0x41, 0x74, 0x49, 0x74, 0x6c, 0x74, 0x8f, 0x74, 0xa1, 0x74, 0xb1,
-
5403  0x74, 0xc2, 0x74, 0xca, 0x74, 0xd2, 0x74, 0xda, 0x74, 0xe2, 0x74, 0xea,
-
5404  0x75, 0x07, 0x75, 0x24, 0x75, 0x4b, 0x75, 0x53, 0x75, 0x88, 0x75, 0x90,
-
5405  0x75, 0xc0, 0x75, 0xcb, 0x75, 0xf1, 0x76, 0x16, 0x76, 0x2f, 0x76, 0x38,
-
5406  0x76, 0x41, 0x76, 0x65, 0x76, 0x6d, 0x76, 0x90, 0x76, 0x99, 0x76, 0xa2,
-
5407  0x76, 0xb3, 0x76, 0xbb, 0x76, 0xe7, 0x77, 0x01, 0x77, 0x15, 0x77, 0x2a,
-
5408  0x77, 0x4b, 0x77, 0x65, 0x77, 0x80, 0x77, 0xa6, 0x77, 0xd9, 0x77, 0xe1,
-
5409  0x77, 0xf2, 0x78, 0x22, 0x78, 0x45, 0x78, 0x4d, 0x78, 0x55, 0x78, 0x5d,
-
5410  0x78, 0x65, 0x78, 0x6d, 0x78, 0x8a, 0x78, 0x92, 0x78, 0x9a, 0x78, 0xa2,
-
5411  0x78, 0xaa, 0x78, 0xc5, 0x78, 0xf0, 0x78, 0xf9, 0x79, 0x0e, 0x79, 0x23,
-
5412  0x79, 0x45, 0x79, 0x63, 0x79, 0x6b, 0x79, 0x9d, 0x79, 0xa6, 0x79, 0xdb,
-
5413  0x79, 0xe7, 0x79, 0xf3, 0x79, 0xff, 0x7a, 0x0a, 0x7a, 0x16, 0x7a, 0x22,
-
5414  0x7a, 0x2e, 0x7a, 0x3a, 0x7a, 0x46, 0x7a, 0x52, 0x7a, 0x5e, 0x7a, 0x6a,
-
5415  0x7a, 0x6a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x42,
-
5416  0x1c, 0xaf, 0x64, 0x2c, 0x5f, 0x0f, 0x3c, 0xf5, 0x00, 0x0b, 0x03, 0xe8,
-
5417  0x00, 0x00, 0x00, 0x00, 0xda, 0x17, 0x06, 0x51, 0x00, 0x00, 0x00, 0x00,
-
5418  0xda, 0xaa, 0x43, 0x42, 0xff, 0xb0, 0xfe, 0x70, 0x05, 0xaf, 0x03, 0xe8,
-
5419  0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5420  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5421  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5422  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5423  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5424  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5425  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5426  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5427  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5428  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0a,
-
5429  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x26,
-
5430  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5431  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5432  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32,
-
5433  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5434  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5435  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5436  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5437  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5438  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5439  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5440  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38,
-
5441  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3f,
-
5442  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
-
5443  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20,
-
5444  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x2e,
-
5445  0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5446  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5447  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x41,
-
5448  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5449  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5450  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x4d,
-
5451  0x01, 0xf4, 0x00, 0x4d, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
-
5452  0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x29,
-
5453  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3c, 0x01, 0xf4, 0x00, 0x3f,
-
5454  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
-
5455  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x3f,
-
5456  0x01, 0xf4, 0x00, 0x11, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x26,
-
5457  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5458  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5459  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5460  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5461  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5462  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5463  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5464  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5465  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5466  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5467  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5468  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5469  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5470  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5471  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x37,
-
5472  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x1a, 0x01, 0xf4, 0x00, 0x34,
-
5473  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
-
5474  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x34,
-
5475  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5476  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5477  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5478  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5479  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x1c,
-
5480  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
-
5481  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x1c,
-
5482  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5483  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5484  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5485  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5486  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5487  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5488  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5489  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x16,
-
5490  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5491  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x25,
-
5492  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5493  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5494  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x18,
-
5495  0x01, 0xf4, 0x00, 0x18, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5496  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5497  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5498  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5499  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5500  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5501  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5502  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5503  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5504  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d,
-
5505  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x07,
-
5506  0x01, 0xf4, 0x00, 0x07, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x18,
-
5507  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5508  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5509  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x26,
-
5510  0x01, 0xf4, 0x00, 0x20, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5511  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5512  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5513  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5514  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5515  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5516  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5517  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e,
-
5518  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x28,
-
5519  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x33, 0x01, 0xf4, 0x00, 0x4e,
-
5520  0x01, 0xf4, 0x00, 0x37, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5521  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5522  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x43,
-
5523  0x01, 0xf4, 0xff, 0xff, 0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0xff, 0xd2,
-
5524  0x01, 0xf4, 0x00, 0x43, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5525  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5e,
-
5526  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5527  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5528  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f,
-
5529  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x2c,
-
5530  0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x3d,
-
5531  0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x4a,
-
5532  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
-
5533  0x01, 0xf4, 0x00, 0x41, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x15,
-
5534  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4b, 0x01, 0xf4, 0x00, 0x23,
-
5535  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5536  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5537  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x42,
-
5538  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5539  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5540  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5541  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5542  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5543  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5544  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5545  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5546  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5547  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5548  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5549  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x06,
-
5550  0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x25,
-
5551  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5552  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5553  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d,
-
5554  0x01, 0xf4, 0x00, 0x21, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5555  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5556  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5557  0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x35,
-
5558  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x3a,
-
5559  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5560  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x42,
-
5561  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5562  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5563  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5564  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5565  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x23,
-
5566  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5567  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b,
-
5568  0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x3b, 0x01, 0xf4, 0x00, 0x24,
-
5569  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e,
-
5570  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x29,
-
5571  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5572  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5573  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x14,
-
5574  0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
-
5575  0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f, 0x01, 0xf4, 0x00, 0x2f,
-
5576  0x01, 0xf4, 0x00, 0x23, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4a,
-
5577  0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32,
-
5578  0x01, 0xf4, 0x00, 0x52, 0x01, 0xf4, 0x00, 0x35, 0x01, 0xf4, 0x00, 0x3d,
-
5579  0x01, 0xf4, 0x00, 0x2d, 0x01, 0xf4, 0x00, 0x3d, 0x01, 0xf4, 0x00, 0x3e,
-
5580  0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x3d,
-
5581  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x6e,
-
5582  0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
-
5583  0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
-
5584  0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
-
5585  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70,
-
5586  0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77,
-
5587  0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72,
-
5588  0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x85,
-
5589  0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6c,
-
5590  0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x7f,
-
5591  0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0x6e,
-
5592  0x01, 0xf4, 0x00, 0x85, 0x01, 0xf4, 0x00, 0x70, 0x01, 0xf4, 0x00, 0x74,
-
5593  0x01, 0xf4, 0x00, 0x6c, 0x01, 0xf4, 0x00, 0x77, 0x01, 0xf4, 0x00, 0x77,
-
5594  0x01, 0xf4, 0x00, 0x7f, 0x01, 0xf4, 0x00, 0x72, 0x01, 0xf4, 0x00, 0x75,
-
5595  0x01, 0xf4, 0x00, 0x47, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5596  0x01, 0xf4, 0x00, 0x01, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5597  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5598  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x6e,
-
5599  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0xa1, 0x01, 0xf4, 0x00, 0xad,
-
5600  0x01, 0xf4, 0x00, 0xa0, 0x01, 0xf4, 0x00, 0x06, 0x01, 0xf4, 0x00, 0xad,
-
5601  0x01, 0xf4, 0x00, 0xad, 0x01, 0xf4, 0x00, 0x3e, 0x01, 0xf4, 0x00, 0x3c,
-
5602  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9d, 0x01, 0xf4, 0x00, 0x26,
-
5603  0x01, 0xf4, 0x00, 0xc8, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x3a,
-
5604  0x01, 0xf4, 0x00, 0x3a, 0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x26,
-
5605  0x01, 0xf4, 0x00, 0x74, 0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x2f,
-
5606  0x01, 0xf4, 0x00, 0x34, 0x01, 0xf4, 0x00, 0x7e, 0x01, 0xf4, 0x00, 0x7f,
-
5607  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x45,
-
5608  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x45, 0x01, 0xf4, 0x00, 0x0a,
-
5609  0x01, 0xf4, 0x00, 0x6d, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x9f,
-
5610  0x01, 0xf4, 0x00, 0x36, 0x01, 0xf4, 0x00, 0x4a, 0x01, 0xf4, 0x00, 0x4d,
-
5611  0x01, 0xf4, 0x00, 0xae, 0x01, 0xf4, 0x00, 0x9f, 0x01, 0xf4, 0x00, 0x40,
-
5612  0x01, 0xf4, 0x00, 0x46, 0x01, 0xf4, 0x00, 0x89, 0x01, 0xf4, 0x00, 0x8a,
-
5613  0x01, 0xf4, 0x00, 0x82, 0x01, 0xf4, 0x00, 0xce, 0x01, 0xf4, 0x00, 0x6b,
-
5614  0x01, 0xf4, 0x00, 0xc7, 0x03, 0xe8, 0x00, 0x29, 0x05, 0xdc, 0x00, 0x2d,
-
5615  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5616  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5617  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x26,
-
5618  0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x3f,
-
5619  0x01, 0xf4, 0x00, 0x39, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x1c,
-
5620  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x13, 0x01, 0xf4, 0x00, 0x1d,
-
5621  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x19,
-
5622  0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x2f,
-
5623  0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x34,
-
5624  0x01, 0xf4, 0x00, 0x24, 0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x1e,
-
5625  0x01, 0xf4, 0x00, 0x26, 0x01, 0xf4, 0x00, 0x84, 0x01, 0xf4, 0x00, 0x33,
-
5626  0x01, 0xf4, 0x00, 0x27, 0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x2b,
-
5627  0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x44,
-
5628  0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x2c, 0x01, 0xf4, 0x00, 0x27,
-
5629  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x22,
-
5630  0x01, 0xf4, 0x00, 0x2b, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x3f,
-
5631  0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x0c,
-
5632  0x01, 0xf4, 0x00, 0x0e, 0x01, 0xf4, 0x00, 0x42, 0x01, 0xf4, 0x00, 0x14,
-
5633  0x01, 0xf4, 0x00, 0x1d, 0x01, 0xf4, 0x00, 0x32, 0x01, 0xf4, 0x00, 0x20,
-
5634  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x15, 0x01, 0xf4, 0x00, 0x1a,
-
5635  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x14, 0x01, 0xf4, 0x00, 0x25,
-
5636  0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0x58, 0x01, 0xf4, 0x00, 0x30,
-
5637  0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x0f,
-
5638  0x01, 0xf4, 0x00, 0x30, 0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x15,
-
5639  0x01, 0xf4, 0x00, 0x0d, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x3a,
-
5640  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22,
-
5641  0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a,
-
5642  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x0a, 0x01, 0xf4, 0x00, 0x00,
-
5643  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5644  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5645  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5646  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5647  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5648  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x01, 0xb6,
-
5649  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
-
5650  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5651  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0xfa, 0x01, 0xf4, 0x00, 0x00,
-
5652  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x0f, 0x01, 0xf4, 0x00, 0x02,
-
5653  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x29,
-
5654  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2f,
-
5655  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40,
-
5656  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5657  0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5658  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5659  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5660  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76,
-
5661  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5662  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
-
5663  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5664  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f,
-
5665  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5666  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5667  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10,
-
5668  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c,
-
5669  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5670  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76,
-
5671  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5672  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5673  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5674  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5675  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5676  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x3f, 0x01, 0xf4, 0x00, 0xb8,
-
5677  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00,
-
5678  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5679  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5680  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x10, 0x01, 0xf4, 0x00, 0xb8,
-
5681  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0xb8,
-
5682  0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5683  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0xb8,
-
5684  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8,
-
5685  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5686  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5687  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5688  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5689  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5690  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5691  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0xff, 0xb0,
-
5692  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5693  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5694  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x40, 0x01, 0xf4, 0xff, 0xb0,
-
5695  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0xff, 0xb0,
-
5696  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0xff, 0xb0,
-
5697  0x01, 0xf4, 0xff, 0xb0, 0x01, 0xf4, 0x00, 0xb8, 0x01, 0xf4, 0x00, 0x29,
-
5698  0x01, 0xf4, 0x00, 0x29, 0x01, 0xf4, 0x00, 0x28, 0x01, 0xf4, 0x00, 0x0d,
-
5699  0x01, 0xf4, 0x00, 0x05, 0x01, 0xf4, 0x00, 0x0c, 0x01, 0xf4, 0x00, 0x0f,
-
5700  0x01, 0xf4, 0x00, 0x09, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x50,
-
5701  0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, 0x01, 0xf4, 0x00, 0x1d,
-
5702  0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x38, 0x01, 0xf4, 0x00, 0x3c,
-
5703  0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x0b, 0x01, 0xf4, 0x00, 0x12,
-
5704  0x01, 0xf4, 0x00, 0x75, 0x01, 0xf4, 0x00, 0xca, 0x01, 0xf4, 0x00, 0x8c,
-
5705  0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0xd3, 0x01, 0xf4, 0x00, 0x2e,
-
5706  0x01, 0xf4, 0x00, 0x12, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x2a,
-
5707  0x01, 0xf4, 0x00, 0x19, 0x01, 0xf4, 0x00, 0x2e, 0x01, 0xf4, 0x00, 0x29,
-
5708  0x01, 0xf4, 0x00, 0x1c, 0x01, 0xf4, 0x00, 0x22, 0x01, 0xf4, 0x00, 0x3d,
-
5709  0x01, 0xf4, 0x00, 0x02, 0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x00,
-
5710  0x01, 0xf4, 0x00, 0x16, 0x01, 0xf4, 0x00, 0x1f, 0x01, 0xf4, 0x00, 0x0f,
-
5711  0x05, 0xdc, 0x00, 0x2d, 0x03, 0xe8, 0x00, 0x2c, 0x03, 0xe8, 0x00, 0x93,
-
5712  0x03, 0xe8, 0x00, 0x3c, 0x03, 0xe8, 0x00, 0x95, 0x01, 0xf4, 0x00, 0xad,
-
5713  0x01, 0xf4, 0x00, 0xb0, 0x01, 0xf4, 0x00, 0xac, 0x01, 0xf4, 0x00, 0x8e,
-
5714  0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xb2, 0x01, 0xf4, 0x00, 0xca,
-
5715  0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xc2, 0x01, 0xf4, 0x00, 0xb8,
-
5716  0x01, 0xf4, 0x00, 0xd1, 0x01, 0xf4, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x69,
-
5717  0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xd4,
-
5718  0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x63,
-
5719  0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x5f,
-
5720  0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x5b,
-
5721  0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x01, 0x85,
-
5722  0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0xad,
-
5723  0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x71,
-
5724  0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x6d,
-
5725  0x01, 0xf4, 0x00, 0x69, 0x01, 0xf4, 0x00, 0xc4, 0x01, 0xf4, 0x00, 0x96,
-
5726  0x01, 0xf4, 0x00, 0xd4, 0x01, 0xf4, 0x00, 0x7b, 0x01, 0xf4, 0x00, 0x75,
-
5727  0x01, 0xf4, 0x00, 0x83, 0x01, 0xf4, 0x00, 0x60, 0x01, 0xf4, 0x00, 0x9f,
-
5728  0x01, 0xf4, 0x00, 0x5f, 0x01, 0xf4, 0x00, 0x76, 0x01, 0xf4, 0x00, 0xa1,
-
5729  0x01, 0xf4, 0x00, 0xef, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0xc0,
-
5730  0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x6a,
-
5731  0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x69,
-
5732  0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x01, 0x8e,
-
5733  0x01, 0xf4, 0x00, 0x65, 0x01, 0xf4, 0x00, 0xcc, 0x01, 0xf4, 0x00, 0xb2,
-
5734  0x01, 0xf4, 0x00, 0xab, 0x01, 0xf4, 0x00, 0x6a, 0x01, 0xf4, 0x00, 0x4a,
-
5735  0x01, 0xf4, 0x00, 0x6e, 0x01, 0xf4, 0x00, 0x9b, 0x01, 0xf4, 0x00, 0x5f,
-
5736  0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71,
-
5737  0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x64,
-
5738  0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x66,
-
5739  0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56,
-
5740  0x00, 0x00, 0x00, 0x56, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
-
5741  0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x05, 0xdc, 0xff, 0xb0, 0xfd, 0xe5,
-
5742  0x05, 0xaf, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5743  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xc2, 0x00, 0x04, 0x01, 0xf9,
-
5744  0x01, 0xf4, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00,
-
5745  0x00, 0x4b, 0x02, 0x8a, 0x02, 0x58, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x32,
-
5746  0x01, 0x12, 0x00, 0x00, 0x00, 0x00, 0x05, 0x09, 0x00, 0x00, 0x00, 0x00,
-
5747  0x00, 0x00, 0xa0, 0x00, 0x00, 0xff, 0x00, 0x00, 0xf9, 0xeb, 0x00, 0x00,
-
5748  0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x43, 0x59, 0x52, 0x45, 0x00, 0xc0,
-
5749  0x00, 0x00, 0xff, 0xfd, 0x03, 0x5b, 0xff, 0x42, 0x00, 0x00, 0x03, 0xec,
-
5750  0x01, 0xc6, 0x60, 0x00, 0x01, 0x93, 0xcd, 0xd4, 0x00, 0x00, 0x01, 0xc9,
-
5751  0x02, 0x6f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02,
-
5752  0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01,
-
5753  0x00, 0x00, 0x00, 0x14, 0x00, 0x04, 0x0a, 0x2c, 0x00, 0x00, 0x01, 0x0a,
-
5754  0x01, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x2f,
-
5755  0x00, 0x39, 0x00, 0x7e, 0x01, 0x31, 0x01, 0x48, 0x01, 0x7e, 0x01, 0x8f,
-
5756  0x01, 0x92, 0x01, 0x98, 0x01, 0xa1, 0x01, 0xb0, 0x01, 0xb9, 0x01, 0xc9,
-
5757  0x01, 0xe7, 0x01, 0xeb, 0x02, 0x1b, 0x02, 0x2d, 0x02, 0x33, 0x02, 0x37,
-
5758  0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98, 0x02, 0x9a, 0x02, 0xbc,
-
5759  0x02, 0xbf, 0x02, 0xcc, 0x02, 0xdd, 0x03, 0x04, 0x03, 0x0c, 0x03, 0x0f,
-
5760  0x03, 0x12, 0x03, 0x1b, 0x03, 0x24, 0x03, 0x28, 0x03, 0x2e, 0x03, 0x31,
-
5761  0x03, 0x36, 0x03, 0x75, 0x1e, 0x09, 0x1e, 0x0f, 0x1e, 0x17, 0x1e, 0x1d,
-
5762  0x1e, 0x21, 0x1e, 0x25, 0x1e, 0x2b, 0x1e, 0x2f, 0x1e, 0x37, 0x1e, 0x3b,
-
5763  0x1e, 0x49, 0x1e, 0x53, 0x1e, 0x5b, 0x1e, 0x69, 0x1e, 0x6f, 0x1e, 0x7b,
-
5764  0x1e, 0x85, 0x1e, 0x8f, 0x1e, 0x93, 0x1e, 0x97, 0x1e, 0x9e, 0x1e, 0xf9,
-
5765  0x20, 0x0b, 0x20, 0x10, 0x20, 0x15, 0x20, 0x1a, 0x20, 0x1e, 0x20, 0x22,
-
5766  0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3a, 0x20, 0x44, 0x20, 0x70,
-
5767  0x20, 0x79, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x89, 0x20, 0xa1, 0x20, 0xa4,
-
5768  0x20, 0xa7, 0x20, 0xa9, 0x20, 0xad, 0x20, 0xb2, 0x20, 0xb5, 0x20, 0xba,
-
5769  0x20, 0xbd, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x24, 0x21, 0x26,
-
5770  0x21, 0x2e, 0x21, 0x99, 0x21, 0xea, 0x22, 0x02, 0x22, 0x06, 0x22, 0x08,
-
5771  0x22, 0x0f, 0x22, 0x12, 0x22, 0x15, 0x22, 0x17, 0x22, 0x1a, 0x22, 0x1e,
-
5772  0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x22, 0x95, 0x23, 0x02,
-
5773  0x23, 0x18, 0x23, 0x27, 0x23, 0x2b, 0x23, 0x8b, 0x23, 0xce, 0x24, 0x23,
-
5774  0x25, 0x94, 0x25, 0x9f, 0x25, 0xc7, 0x25, 0xcb, 0x25, 0xcf, 0x26, 0x3b,
-
5775  0x26, 0x60, 0x26, 0x63, 0x26, 0x66, 0x27, 0x15, 0x27, 0x18, 0x2b, 0x07,
-
5776  0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
-
5777  0x00, 0x0d, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3a, 0x00, 0xa0, 0x01, 0x34,
-
5778  0x01, 0x4a, 0x01, 0x8f, 0x01, 0x92, 0x01, 0x98, 0x01, 0xa0, 0x01, 0xaf,
-
5779  0x01, 0xb8, 0x01, 0xc7, 0x01, 0xe6, 0x01, 0xea, 0x01, 0xfa, 0x02, 0x2a,
-
5780  0x02, 0x30, 0x02, 0x37, 0x02, 0x4d, 0x02, 0x59, 0x02, 0x7b, 0x02, 0x98,
-
5781  0x02, 0x9a, 0x02, 0xb9, 0x02, 0xbe, 0x02, 0xc6, 0x02, 0xd8, 0x03, 0x00,
-
5782  0x03, 0x06, 0x03, 0x0f, 0x03, 0x11, 0x03, 0x1b, 0x03, 0x23, 0x03, 0x26,
-
5783  0x03, 0x2e, 0x03, 0x31, 0x03, 0x35, 0x03, 0x75, 0x1e, 0x08, 0x1e, 0x0c,
-
5784  0x1e, 0x14, 0x1e, 0x1c, 0x1e, 0x20, 0x1e, 0x24, 0x1e, 0x2a, 0x1e, 0x2e,
-
5785  0x1e, 0x36, 0x1e, 0x3a, 0x1e, 0x42, 0x1e, 0x4c, 0x1e, 0x5a, 0x1e, 0x5e,
-
5786  0x1e, 0x6c, 0x1e, 0x78, 0x1e, 0x80, 0x1e, 0x8e, 0x1e, 0x92, 0x1e, 0x97,
-
5787  0x1e, 0x9e, 0x1e, 0xa0, 0x20, 0x07, 0x20, 0x10, 0x20, 0x12, 0x20, 0x18,
-
5788  0x20, 0x1c, 0x20, 0x20, 0x20, 0x26, 0x20, 0x30, 0x20, 0x32, 0x20, 0x39,
-
5789  0x20, 0x44, 0x20, 0x70, 0x20, 0x74, 0x20, 0x7b, 0x20, 0x7f, 0x20, 0x80,
-
5790  0x20, 0xa1, 0x20, 0xa3, 0x20, 0xa6, 0x20, 0xa9, 0x20, 0xab, 0x20, 0xb1,
-
5791  0x20, 0xb5, 0x20, 0xb9, 0x20, 0xbc, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22,
-
5792  0x21, 0x24, 0x21, 0x26, 0x21, 0x2e, 0x21, 0x90, 0x21, 0xe6, 0x22, 0x02,
-
5793  0x22, 0x05, 0x22, 0x08, 0x22, 0x0f, 0x22, 0x11, 0x22, 0x15, 0x22, 0x17,
-
5794  0x22, 0x19, 0x22, 0x1e, 0x22, 0x2b, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64,
-
5795  0x22, 0x95, 0x23, 0x02, 0x23, 0x18, 0x23, 0x25, 0x23, 0x2b, 0x23, 0x8b,
-
5796  0x23, 0xce, 0x24, 0x23, 0x25, 0x00, 0x25, 0x95, 0x25, 0xc6, 0x25, 0xca,
-
5797  0x25, 0xcf, 0x26, 0x39, 0x26, 0x60, 0x26, 0x63, 0x26, 0x65, 0x27, 0x13,
-
5798  0x27, 0x17, 0x2b, 0x05, 0x2b, 0x95, 0x2e, 0x12, 0xff, 0xfd, 0xff, 0xff,
-
5799  0x03, 0xc1, 0x02, 0x43, 0x00, 0x00, 0x01, 0xa9, 0x00, 0x00, 0x00, 0x00,
-
5800  0x00, 0x00, 0x00, 0x00, 0xff, 0x23, 0x00, 0xc6, 0xfe, 0xca, 0x00, 0x00,
-
5801  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5802  0x00, 0x00, 0x00, 0x00, 0xff, 0x13, 0xff, 0x45, 0xfe, 0xd1, 0xff, 0x14,
-
5803  0xfe, 0x6c, 0xfe, 0x8e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5804  0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x76, 0x00, 0x6e, 0x00, 0x67,
-
5805  0x00, 0x66, 0x00, 0x61, 0x00, 0x5f, 0x00, 0x5c, 0xff, 0xf9, 0x00, 0x00,
-
5806  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5807  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5808  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5809  0xe3, 0x0d, 0xe2, 0x13, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x27, 0x00, 0x00,
-
5810  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xf7, 0xe2, 0x56, 0xe3, 0x23,
-
5811  0xe2, 0x08, 0xe1, 0xc9, 0xe1, 0x93, 0xe1, 0x93, 0xe1, 0xf0, 0xe1, 0x58,
-
5812  0xe1, 0x65, 0xe1, 0xb2, 0x00, 0x00, 0xe1, 0xb9, 0xe1, 0xbc, 0x00, 0x00,
-
5813  0x00, 0x00, 0xe1, 0x9c, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x47, 0xe2, 0x46,
-
5814  0xe2, 0x31, 0xe0, 0xb4, 0xe1, 0x58, 0xe2, 0x2f, 0x00, 0x00, 0x00, 0x00,
-
5815  0xe0, 0x82, 0x00, 0x00, 0xe0, 0x62, 0xe0, 0x71, 0x00, 0x00, 0xe0, 0x54,
-
5816  0xe0, 0x50, 0x00, 0x00, 0xe0, 0x5d, 0xe0, 0x52, 0xe0, 0x2f, 0xe0, 0x11,
-
5817  0x00, 0x00, 0xdf, 0xf2, 0xe0, 0x5e, 0xe0, 0x4e, 0x00, 0x00, 0xe0, 0x38,
-
5818  0xdf, 0xd4, 0xdf, 0x99, 0xdf, 0x3b, 0x00, 0x00, 0xdd, 0x19, 0xdc, 0xf8,
-
5819  0x00, 0x00, 0xdc, 0xed, 0xdd, 0x08, 0xdc, 0xe4, 0xdc, 0xe2, 0xdc, 0xe1,
-
5820  0xdc, 0x35, 0xdc, 0x34, 0x00, 0x00, 0xd7, 0x04, 0xd4, 0x13, 0x03, 0x6b,
-
5821  0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x22,
-
5822  0x01, 0xaa, 0x02, 0xcc, 0x02, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5823  0x03, 0x56, 0x03, 0x58, 0x03, 0x5a, 0x03, 0x5c, 0x03, 0x60, 0x03, 0x62,
-
5824  0x03, 0x64, 0x03, 0xa6, 0x03, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5825  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xa6, 0x03, 0xac, 0x03, 0xae,
-
5826  0x03, 0xba, 0x03, 0xc4, 0x03, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5827  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5828  0x03, 0xc6, 0x03, 0xc8, 0x03, 0xce, 0x03, 0xd4, 0x03, 0xd6, 0x03, 0xd8,
-
5829  0x03, 0xda, 0x03, 0xdc, 0x03, 0xde, 0x03, 0xe0, 0x03, 0xe2, 0x03, 0xf0,
-
5830  0x03, 0xfe, 0x04, 0x00, 0x04, 0x16, 0x04, 0x1c, 0x04, 0x22, 0x04, 0x2c,
-
5831  0x04, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x04, 0x2c, 0x04, 0xde, 0x00, 0x00,
-
5832  0x04, 0xe4, 0x04, 0xea, 0x04, 0xee, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00,
-
5833  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5834  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00, 0x00, 0x00,
-
5835  0x04, 0xde, 0x04, 0xe2, 0x00, 0x00, 0x04, 0xe2, 0x04, 0xe4, 0x00, 0x00,
-
5836  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xda,
-
5837  0x04, 0xec, 0x00, 0x00, 0x04, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x04, 0xf0,
-
5838  0x00, 0x00, 0x00, 0x00, 0x04, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5839  0x00, 0x00, 0x04, 0xe8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe4,
-
5840  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xe0, 0x00, 0x00,
-
5841  0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
5842  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0xf8, 0x00, 0x00, 0x00, 0x00,
-
5843  0x00, 0x00, 0x00, 0x00, 0x02, 0x4c, 0x02, 0x1e, 0x02, 0x43, 0x02, 0x26,
-
5844  0x02, 0x55, 0x02, 0x85, 0x03, 0x4e, 0x02, 0x44, 0x02, 0x2b, 0x02, 0x2c,
-
5845  0x02, 0x24, 0x02, 0x6c, 0x02, 0x1a, 0x02, 0x31, 0x02, 0x19, 0x02, 0x27,
-
5846  0x02, 0x1b, 0x02, 0x1c, 0x02, 0x73, 0x02, 0x70, 0x02, 0x72, 0x02, 0x20,
-
5847  0x03, 0x4d, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x1d, 0x00, 0x24, 0x00, 0x2a,
-
5848  0x00, 0x42, 0x00, 0x43, 0x00, 0x4a, 0x00, 0x4f, 0x00, 0x5e, 0x00, 0x60,
-
5849  0x00, 0x63, 0x00, 0x6d, 0x00, 0x6f, 0x00, 0x78, 0x00, 0x9b, 0x00, 0x9d,
-
5850  0x00, 0x9e, 0x00, 0xa6, 0x00, 0xb3, 0x00, 0xba, 0x00, 0xd1, 0x00, 0xd2,
-
5851  0x00, 0xd7, 0x00, 0xd8, 0x00, 0xe2, 0x02, 0x2f, 0x02, 0x28, 0x02, 0x30,
-
5852  0x02, 0x7a, 0x02, 0x38, 0x03, 0x95, 0x00, 0xe8, 0x01, 0x03, 0x01, 0x05,
-
5853  0x01, 0x0c, 0x01, 0x12, 0x01, 0x2c, 0x01, 0x2d, 0x01, 0x34, 0x01, 0x39,
-
5854  0x01, 0x49, 0x01, 0x4c, 0x01, 0x4f, 0x01, 0x58, 0x01, 0x5a, 0x01, 0x63,
-
5855  0x01, 0x86, 0x01, 0x88, 0x01, 0x89, 0x01, 0x93, 0x01, 0x9f, 0x01, 0xa7,
-
5856  0x01, 0xbe, 0x01, 0xbf, 0x01, 0xc4, 0x01, 0xc5, 0x01, 0xcf, 0x02, 0x2d,
-
5857  0x03, 0x57, 0x02, 0x2e, 0x02, 0x78, 0x02, 0x4d, 0x02, 0x1f, 0x02, 0x52,
-
5858  0x02, 0x64, 0x02, 0x54, 0x02, 0x66, 0x03, 0x58, 0x03, 0x50, 0x03, 0x93,
-
5859  0x03, 0x51, 0x01, 0xd5, 0x02, 0x3f, 0x02, 0x79, 0x02, 0x32, 0x03, 0x52,
-
5860  0x03, 0x9d, 0x03, 0x54, 0x02, 0x76, 0x02, 0x05, 0x02, 0x06, 0x03, 0x96,
-
5861  0x02, 0x83, 0x03, 0x4f, 0x02, 0x22, 0x03, 0x9e, 0x02, 0x04, 0x01, 0xd6,
-
5862  0x02, 0x40, 0x02, 0x0f, 0x02, 0x0e, 0x02, 0x10, 0x02, 0x21, 0x00, 0x12,
-
5863  0x00, 0x02, 0x00, 0x09, 0x00, 0x19, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1a,
-
5864  0x00, 0x20, 0x00, 0x39, 0x00, 0x2b, 0x00, 0x2f, 0x00, 0x36, 0x00, 0x58,
-
5865  0x00, 0x50, 0x00, 0x52, 0x00, 0x54, 0x00, 0x25, 0x00, 0x77, 0x00, 0x86,
-
5866  0x00, 0x79, 0x00, 0x7b, 0x00, 0x96, 0x00, 0x82, 0x02, 0x6e, 0x00, 0x94,
-
5867  0x00, 0xc1, 0x00, 0xbb, 0x00, 0xbd, 0x00, 0xbf, 0x00, 0xd9, 0x00, 0x9c,
-
5868  0x01, 0x9e, 0x00, 0xf9, 0x00, 0xe9, 0x00, 0xf0, 0x01, 0x00, 0x00, 0xf7,
-
5869  0x00, 0xfe, 0x01, 0x01, 0x01, 0x08, 0x01, 0x21, 0x01, 0x13, 0x01, 0x17,
-
5870  0x01, 0x1e, 0x01, 0x43, 0x01, 0x3b, 0x01, 0x3d, 0x01, 0x3f, 0x01, 0x0d,
-
5871  0x01, 0x62, 0x01, 0x71, 0x01, 0x64, 0x01, 0x66, 0x01, 0x81, 0x01, 0x6d,
-
5872  0x02, 0x6f, 0x01, 0x7f, 0x01, 0xae, 0x01, 0xa8, 0x01, 0xaa, 0x01, 0xac,
-
5873  0x01, 0xc6, 0x01, 0x87, 0x01, 0xc8, 0x00, 0x15, 0x00, 0xfc, 0x00, 0x03,
-
5874  0x00, 0xea, 0x00, 0x16, 0x00, 0xfd, 0x00, 0x1e, 0x01, 0x06, 0x00, 0x22,
-
5875  0x01, 0x0a, 0x00, 0x23, 0x01, 0x0b, 0x00, 0x1f, 0x01, 0x07, 0x00, 0x26,
-
5876  0x01, 0x0e, 0x00, 0x27, 0x01, 0x0f, 0x00, 0x3c, 0x01, 0x24, 0x00, 0x2c,
-
5877  0x01, 0x14, 0x00, 0x37, 0x01, 0x1f, 0x00, 0x3f, 0x01, 0x27, 0x00, 0x2d,
-
5878  0x01, 0x15, 0x00, 0x46, 0x01, 0x30, 0x00, 0x44, 0x01, 0x2e, 0x00, 0x48,
-
5879  0x01, 0x32, 0x00, 0x47, 0x01, 0x31, 0x00, 0x4d, 0x01, 0x37, 0x00, 0x4b,
-
5880  0x01, 0x35, 0x00, 0x5d, 0x01, 0x48, 0x00, 0x5b, 0x01, 0x46, 0x00, 0x51,
-
5881  0x01, 0x3c, 0x00, 0x5c, 0x01, 0x47, 0x00, 0x56, 0x01, 0x3a, 0x00, 0x5f,
-
5882  0x01, 0x4b, 0x00, 0x61, 0x01, 0x4d, 0x01, 0x4e, 0x00, 0x65, 0x01, 0x50,
-
5883  0x00, 0x67, 0x01, 0x52, 0x00, 0x66, 0x01, 0x51, 0x00, 0x68, 0x01, 0x53,
-
5884  0x00, 0x6c, 0x01, 0x57, 0x00, 0x70, 0x01, 0x5b, 0x00, 0x72, 0x01, 0x5d,
-
5885  0x00, 0x71, 0x01, 0x5c, 0x00, 0x75, 0x01, 0x60, 0x00, 0x90, 0x01, 0x7b,
-
5886  0x00, 0x7a, 0x01, 0x65, 0x00, 0x8e, 0x01, 0x79, 0x00, 0x9a, 0x01, 0x85,
-
5887  0x00, 0x9f, 0x01, 0x8a, 0x00, 0xa1, 0x01, 0x8c, 0x00, 0xa0, 0x01, 0x8b,
-
5888  0x00, 0xa7, 0x01, 0x94, 0x00, 0xac, 0x01, 0x99, 0x00, 0xab, 0x01, 0x98,
-
5889  0x00, 0xa9, 0x01, 0x96, 0x00, 0xb6, 0x01, 0xa2, 0x00, 0xb5, 0x01, 0xa1,
-
5890  0x00, 0xb4, 0x01, 0xa0, 0x00, 0xcf, 0x01, 0xbc, 0x00, 0xcb, 0x01, 0xb8,
-
5891  0x00, 0xbc, 0x01, 0xa9, 0x00, 0xce, 0x01, 0xbb, 0x00, 0xc9, 0x01, 0xb6,
-
5892  0x00, 0xcd, 0x01, 0xba, 0x00, 0xd4, 0x01, 0xc1, 0x00, 0xda, 0x01, 0xc7,
-
5893  0x00, 0xdb, 0x00, 0xe3, 0x01, 0xd0, 0x00, 0xe5, 0x01, 0xd2, 0x00, 0xe4,
-
5894  0x01, 0xd1, 0x00, 0x88, 0x01, 0x73, 0x00, 0xc3, 0x01, 0xb0, 0x00, 0x41,
-
5895  0x01, 0x2b, 0x00, 0x64, 0x00, 0x6a, 0x01, 0x55, 0x00, 0x45, 0x01, 0x2f,
-
5896  0x00, 0x93, 0x01, 0x7e, 0x00, 0x18, 0x00, 0xff, 0x00, 0x1b, 0x01, 0x02,
-
5897  0x00, 0x95, 0x01, 0x80, 0x00, 0x0f, 0x00, 0xf6, 0x00, 0x14, 0x00, 0xfb,
-
5898  0x00, 0x35, 0x01, 0x1d, 0x00, 0x3b, 0x01, 0x23, 0x00, 0x53, 0x01, 0x3e,
-
5899  0x00, 0x5a, 0x01, 0x45, 0x00, 0x81, 0x01, 0x6c, 0x00, 0x8f, 0x01, 0x7a,
-
5900  0x00, 0xa2, 0x01, 0x8d, 0x00, 0xa4, 0x01, 0x90, 0x00, 0xbe, 0x01, 0xab,
-
5901  0x00, 0xca, 0x01, 0xb7, 0x00, 0xad, 0x01, 0x9a, 0x00, 0xb7, 0x01, 0xa3,
-
5902  0x00, 0x83, 0x01, 0x6e, 0x00, 0x99, 0x01, 0x84, 0x00, 0x84, 0x01, 0x6f,
-
5903  0x00, 0xe0, 0x01, 0xcd, 0x03, 0x74, 0x03, 0x71, 0x03, 0x70, 0x03, 0x6f,
-
5904  0x03, 0x76, 0x03, 0x75, 0x03, 0x98, 0x03, 0x99, 0x03, 0x79, 0x03, 0x72,
-
5905  0x03, 0x77, 0x03, 0x73, 0x03, 0x78, 0x03, 0x9a, 0x03, 0x94, 0x03, 0x9b,
-
5906  0x03, 0x9f, 0x03, 0x9c, 0x03, 0x97, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7f,
-
5907  0x03, 0x83, 0x03, 0x84, 0x03, 0x81, 0x03, 0x7b, 0x03, 0x7a, 0x03, 0x85,
-
5908  0x03, 0x82, 0x03, 0x7e, 0x03, 0x80, 0x00, 0x21, 0x01, 0x09, 0x00, 0x28,
-
5909  0x01, 0x10, 0x00, 0x29, 0x01, 0x11, 0x00, 0x3e, 0x01, 0x26, 0x00, 0x3d,
-
5910  0x01, 0x25, 0x00, 0x2e, 0x01, 0x16, 0x00, 0x49, 0x01, 0x33, 0x00, 0x4e,
-
5911  0x01, 0x38, 0x00, 0x4c, 0x01, 0x36, 0x00, 0x55, 0x01, 0x40, 0x00, 0x69,
-
5912  0x01, 0x54, 0x00, 0x6b, 0x01, 0x56, 0x00, 0x6e, 0x01, 0x59, 0x00, 0x73,
-
5913  0x01, 0x5e, 0x00, 0x74, 0x01, 0x5f, 0x00, 0x76, 0x01, 0x61, 0x00, 0x97,
-
5914  0x01, 0x82, 0x00, 0x98, 0x01, 0x83, 0x00, 0x92, 0x01, 0x7d, 0x00, 0x91,
-
5915  0x01, 0x7c, 0x00, 0xa3, 0x01, 0x8e, 0x00, 0xa5, 0x01, 0x91, 0x00, 0xae,
-
5916  0x01, 0x9b, 0x00, 0xaf, 0x01, 0x9c, 0x00, 0xa8, 0x01, 0x95, 0x00, 0xaa,
-
5917  0x01, 0x97, 0x00, 0xb0, 0x01, 0x9d, 0x00, 0xb8, 0x01, 0xa5, 0x00, 0xb9,
-
5918  0x01, 0xa6, 0x00, 0xd0, 0x01, 0xbd, 0x00, 0xcc, 0x01, 0xb9, 0x00, 0xd6,
-
5919  0x01, 0xc3, 0x00, 0xd3, 0x01, 0xc0, 0x00, 0xd5, 0x01, 0xc2, 0x00, 0xdc,
-
5920  0x01, 0xc9, 0x00, 0xe6, 0x01, 0xd3, 0x00, 0x11, 0x00, 0xf8, 0x00, 0x13,
-
5921  0x00, 0xfa, 0x00, 0x0a, 0x00, 0xf1, 0x00, 0x0c, 0x00, 0xf3, 0x00, 0x0d,
-
5922  0x00, 0xf4, 0x00, 0x0e, 0x00, 0xf5, 0x00, 0x0b, 0x00, 0xf2, 0x00, 0x04,
-
5923  0x00, 0xeb, 0x00, 0x06, 0x00, 0xed, 0x00, 0x07, 0x00, 0xee, 0x00, 0x08,
-
5924  0x00, 0xef, 0x00, 0x05, 0x00, 0xec, 0x00, 0x38, 0x01, 0x20, 0x00, 0x3a,
-
5925  0x01, 0x22, 0x00, 0x40, 0x01, 0x29, 0x00, 0x30, 0x01, 0x18, 0x00, 0x32,
-
5926  0x01, 0x1a, 0x00, 0x33, 0x01, 0x1b, 0x00, 0x34, 0x01, 0x1c, 0x00, 0x31,
-
5927  0x01, 0x19, 0x00, 0x59, 0x01, 0x44, 0x00, 0x57, 0x01, 0x42, 0x00, 0x85,
-
5928  0x01, 0x70, 0x00, 0x87, 0x01, 0x72, 0x00, 0x7c, 0x01, 0x67, 0x00, 0x7e,
-
5929  0x01, 0x69, 0x00, 0x7f, 0x01, 0x6a, 0x00, 0x80, 0x01, 0x6b, 0x00, 0x7d,
-
5930  0x01, 0x68, 0x00, 0x89, 0x01, 0x74, 0x00, 0x8b, 0x01, 0x76, 0x00, 0x8c,
-
5931  0x01, 0x77, 0x00, 0x8d, 0x01, 0x78, 0x00, 0x8a, 0x01, 0x75, 0x00, 0xc0,
-
5932  0x01, 0xad, 0x00, 0xc2, 0x01, 0xaf, 0x00, 0xc4, 0x01, 0xb1, 0x00, 0xc6,
-
5933  0x01, 0xb3, 0x00, 0xc7, 0x01, 0xb4, 0x00, 0xc8, 0x01, 0xb5, 0x00, 0xc5,
-
5934  0x01, 0xb2, 0x00, 0xde, 0x01, 0xcb, 0x00, 0xdd, 0x01, 0xca, 0x00, 0xdf,
-
5935  0x01, 0xcc, 0x00, 0xe1, 0x01, 0xce, 0x02, 0x49, 0x02, 0x4b, 0x02, 0x4e,
-
5936  0x02, 0x4a, 0x02, 0x4f, 0x02, 0x35, 0x02, 0x33, 0x02, 0x34, 0x02, 0x36,
-
5937  0x02, 0x3d, 0x02, 0x3e, 0x02, 0x39, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3a,
-
5938  0x03, 0x59, 0x03, 0x5b, 0x02, 0x23, 0x02, 0x59, 0x02, 0x5c, 0x02, 0x56,
-
5939  0x02, 0x57, 0x02, 0x5b, 0x02, 0x61, 0x02, 0x5a, 0x02, 0x63, 0x02, 0x5d,
-
5940  0x02, 0x5e, 0x02, 0x62, 0x02, 0x90, 0x02, 0x8a, 0x02, 0x8c, 0x02, 0x8e,
-
5941  0x02, 0x92, 0x02, 0x93, 0x02, 0x91, 0x02, 0x8b, 0x02, 0x8d, 0x02, 0x8f,
-
5942  0x02, 0x97, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x03, 0x61, 0x02, 0x7c,
-
5943  0x02, 0x7f, 0x02, 0x81, 0x02, 0x6d, 0x02, 0x68, 0x02, 0x82, 0x02, 0x75,
-
5944  0x02, 0x74, 0x03, 0x65, 0x03, 0x64, 0x03, 0x62, 0x03, 0x0a, 0x02, 0xe4,
-
5945  0x03, 0x17, 0x02, 0xf1, 0x03, 0x10, 0x02, 0xea, 0x03, 0x11, 0x02, 0xeb,
-
5946  0x03, 0x0d, 0x02, 0xe7, 0x03, 0x0e, 0x02, 0xe8, 0x03, 0x09, 0x02, 0xd8,
-
5947  0x02, 0xd2, 0x02, 0xe3, 0x03, 0x08, 0x02, 0xd6, 0x02, 0xd0, 0x02, 0xe2,
-
5948  0x03, 0x16, 0x03, 0x31, 0x03, 0x2b, 0x02, 0xf0, 0x03, 0x15, 0x03, 0x2f,
-
5949  0x03, 0x29, 0x02, 0xee, 0x03, 0x1a, 0x03, 0x3d, 0x03, 0x2a, 0x02, 0xd3,
-
5950  0x03, 0x3a, 0x02, 0xd9, 0x03, 0x30, 0x02, 0xf4, 0x03, 0x19, 0x03, 0x3c,
-
5951  0x03, 0x28, 0x02, 0xd1, 0x03, 0x39, 0x02, 0xd7, 0x03, 0x2e, 0x02, 0xf3,
-
5952  0x03, 0x07, 0x02, 0xf6, 0x03, 0x1c, 0x02, 0xd5, 0x02, 0xcf, 0x03, 0x1f,
-
5953  0x02, 0xf9, 0x02, 0xe1, 0x03, 0x14, 0x02, 0xf7, 0x03, 0x1d, 0x03, 0x2d,
-
5954  0x03, 0x27, 0x03, 0x20, 0x02, 0xfa, 0x02, 0xed, 0x03, 0x18, 0x02, 0xf8,
-
5955  0x03, 0x1e, 0x03, 0x3b, 0x03, 0x26, 0x02, 0xd4, 0x03, 0x38, 0x02, 0xfc,
-
5956  0x03, 0x22, 0x02, 0xf5, 0x03, 0x1b, 0x02, 0xda, 0x03, 0x2c, 0x03, 0x21,
-
5957  0x02, 0xfb, 0x02, 0xf2, 0x03, 0x01, 0x02, 0xde, 0x03, 0x02, 0x02, 0xdf,
-
5958  0x02, 0xc4, 0x02, 0xc8, 0x02, 0xdd, 0x02, 0xce, 0x02, 0xc3, 0x02, 0xdc,
-
5959  0x02, 0xcd, 0x02, 0xc2, 0x03, 0x34, 0x03, 0x25, 0x02, 0xc7, 0x03, 0x33,
-
5960  0x03, 0x24, 0x02, 0xc6, 0x03, 0x40, 0x03, 0x37, 0x02, 0xcb, 0x03, 0x3f,
-
5961  0x03, 0x36, 0x02, 0xca, 0x02, 0xdb, 0x02, 0xcc, 0x02, 0xc1, 0x03, 0x32,
-
5962  0x03, 0x23, 0x02, 0xc5, 0x03, 0x3e, 0x03, 0x35, 0x02, 0xc9, 0x02, 0xfe,
-
5963  0x02, 0xfd, 0x02, 0xff, 0x03, 0x00, 0x03, 0x05, 0x03, 0x04, 0x03, 0x03,
-
5964  0x03, 0x0b, 0x03, 0x12, 0x03, 0x0f, 0x03, 0x06, 0x02, 0xe5, 0x02, 0xec,
-
5965  0x02, 0xe9, 0x02, 0xe0, 0x03, 0x0c, 0x03, 0x13, 0x02, 0xe6, 0x02, 0xef,
-
5966  0x02, 0xa4, 0x02, 0x9c, 0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0,
-
5967  0x02, 0xa1, 0x02, 0xa2, 0x02, 0xa3, 0x02, 0xac, 0x02, 0xab, 0x02, 0xaa,
-
5968  0x02, 0xa9, 0x02, 0xa8, 0x02, 0xa7, 0x02, 0xa6, 0x02, 0xad, 0x02, 0xb9,
-
5969  0x02, 0xba, 0x02, 0xbb, 0x02, 0xa5, 0x02, 0xc0, 0x02, 0xbd, 0x02, 0x9b,
-
5970  0x02, 0x98, 0x02, 0x9a, 0x40, 0x4a, 0x99, 0x98, 0x97, 0x96, 0x87, 0x86,
-
5971  0x85, 0x84, 0x83, 0x82, 0x81, 0x80, 0x7f, 0x7e, 0x7d, 0x7c, 0x7b, 0x7a,
-
5972  0x79, 0x78, 0x77, 0x76, 0x75, 0x74, 0x73, 0x72, 0x71, 0x70, 0x6f, 0x6e,
-
5973  0x6d, 0x6c, 0x6b, 0x6a, 0x69, 0x68, 0x67, 0x66, 0x65, 0x64, 0x63, 0x62,
-
5974  0x61, 0x60, 0x5f, 0x5e, 0x5d, 0x5c, 0x5b, 0x5a, 0x59, 0x58, 0x57, 0x56,
-
5975  0x55, 0x54, 0x53, 0x51, 0x50, 0x4f, 0x4e, 0x4d, 0x4c, 0x4b, 0x4a, 0x49,
-
5976  0x48, 0x47, 0x46, 0x28, 0x1f, 0x10, 0x0a, 0x09, 0x2c, 0x01, 0xb1, 0x0b,
-
5977  0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a, 0x2d, 0x2c, 0x00, 0xb1, 0x0a, 0x0b,
-
5978  0x43, 0x23, 0x43, 0x0b, 0x2d, 0x2c, 0x01, 0xb0, 0x06, 0x43, 0xb0, 0x07,
-
5979  0x43, 0x65, 0x0a, 0x2d, 0x2c, 0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51,
-
5980  0x58, 0x21, 0x4b, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x1b,
-
5981  0x23, 0x21, 0xb0, 0x40, 0xb0, 0x04, 0x25, 0x45, 0xb0, 0x04, 0x25, 0x45,
-
5982  0x61, 0x64, 0x8a, 0x63, 0x52, 0x58, 0x45, 0x44, 0x1b, 0x21, 0x21, 0x59,
-
5983  0x59, 0x2d, 0x2c, 0x00, 0xb0, 0x07, 0x43, 0xb0, 0x06, 0x43, 0x0b, 0x2d,
-
5984  0x2c, 0x4b, 0x53, 0x23, 0x4b, 0x51, 0x5a, 0x58, 0x20, 0x45, 0x8a, 0x60,
-
5985  0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x54, 0x58, 0x20, 0x45,
-
5986  0x8a, 0x60, 0x44, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b, 0x53, 0x23,
-
5987  0x4b, 0x51, 0x5a, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x4b,
-
5988  0x54, 0x58, 0x38, 0x1b, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43,
-
5989  0x54, 0x58, 0xb0, 0x46, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
-
5990  0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x47, 0x2b, 0x1b, 0x21, 0x21,
-
5991  0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0xb0, 0x48, 0x2b,
-
5992  0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54,
-
5993  0x58, 0xb0, 0x49, 0x2b, 0x1b, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x23,
-
5994  0x20, 0xb0, 0x00, 0x50, 0x8a, 0x8a, 0x64, 0xb1, 0x00, 0x03, 0x25, 0x54,
-
5995  0x58, 0xb0, 0x40, 0x1b, 0xb1, 0x01, 0x03, 0x25, 0x54, 0x58, 0xb0, 0x05,
-
5996  0x43, 0x8b, 0x59, 0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb0, 0x62, 0x2b, 0x23,
-
5997  0x21, 0x23, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0xb1, 0x08, 0x00, 0x0c, 0x21,
-
5998  0x54, 0x60, 0x43, 0x2d, 0x2c, 0xb1, 0x0c, 0x00, 0x0c, 0x21, 0x54, 0x60,
-
5999  0x43, 0x2d, 0x2c, 0x01, 0x20, 0x47, 0xb0, 0x02, 0x43, 0x20, 0xb8, 0x10,
-
6000  0x00, 0x62, 0xb8, 0x10, 0x00, 0x63, 0x57, 0x23, 0xb8, 0x01, 0x00, 0x62,
-
6001  0xb8, 0x10, 0x00, 0x63, 0x57, 0x5a, 0x58, 0xb0, 0x20, 0x60, 0x66, 0x59,
-
6002  0x48, 0x2d, 0x2c, 0xb1, 0x00, 0x02, 0x25, 0xb0, 0x02, 0x25, 0xb0, 0x02,
-
6003  0x25, 0x53, 0xb8, 0x00, 0x35, 0x23, 0x78, 0xb0, 0x02, 0x25, 0xb0, 0x02,
-
6004  0x25, 0x60, 0xb0, 0x20, 0x63, 0x20, 0x20, 0xb0, 0x06, 0x25, 0x23, 0x62,
-
6005  0x50, 0x58, 0x8a, 0x21, 0xb0, 0x01, 0x60, 0x23, 0x1b, 0x20, 0x20, 0xb0,
-
6006  0x06, 0x25, 0x23, 0x62, 0x52, 0x58, 0x23, 0x21, 0xb0, 0x01, 0x61, 0x1b,
-
6007  0x8a, 0x21, 0x23, 0x21, 0x20, 0x59, 0x59, 0xb8, 0xff, 0xc1, 0x1c, 0x60,
-
6008  0xb0, 0x20, 0x63, 0x23, 0x21, 0x2d, 0x2c, 0xb1, 0x02, 0x00, 0x42, 0xb1,
-
6009  0x23, 0x01, 0x88, 0x51, 0xb1, 0x40, 0x01, 0x88, 0x53, 0x5a, 0x58, 0xb8,
-
6010  0x10, 0x00, 0xb0, 0x20, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x01, 0x02, 0x43,
-
6011  0x60, 0x42, 0x59, 0xb1, 0x24, 0x01, 0x88, 0x51, 0x58, 0xb8, 0x20, 0x00,
-
6012  0xb0, 0x40, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x02, 0x02, 0x43, 0x60, 0x42,
-
6013  0xb1, 0x24, 0x01, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x20, 0x02, 0x43, 0x60,
-
6014  0x42, 0x00, 0x4b, 0x01, 0x4b, 0x52, 0x58, 0xb2, 0x02, 0x08, 0x02, 0x43,
-
6015  0x60, 0x42, 0x59, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x54, 0x58,
-
6016  0xb2, 0x02, 0x04, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb8, 0x40, 0x00, 0xb0,
-
6017  0x80, 0x63, 0xb8, 0x01, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x08, 0x02,
-
6018  0x43, 0x60, 0x42, 0x59, 0xb9, 0x40, 0x00, 0x01, 0x00, 0x63, 0xb8, 0x02,
-
6019  0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x10, 0x02, 0x43, 0x60, 0x42, 0x59,
-
6020  0xb1, 0x26, 0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x02, 0x00, 0x63,
-
6021  0xb8, 0x04, 0x00, 0x88, 0x54, 0x58, 0xb2, 0x02, 0x40, 0x02, 0x43, 0x60,
-
6022  0x42, 0x59, 0xb9, 0x40, 0x00, 0x04, 0x00, 0x63, 0xb8, 0x08, 0x00, 0x88,
-
6023  0x54, 0x58, 0xb2, 0x02, 0x80, 0x02, 0x43, 0x60, 0x42, 0x59, 0xb1, 0x28,
-
6024  0x01, 0x88, 0x51, 0x58, 0xb9, 0x40, 0x00, 0x08, 0x00, 0x63, 0xb8, 0x10,
-
6025  0x00, 0x88, 0x54, 0x58, 0xb9, 0x00, 0x02, 0x01, 0x00, 0xb0, 0x02, 0x43,
-
6026  0x60, 0x42, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0xb1, 0x00, 0x02,
-
6027  0x43, 0x54, 0x58, 0x40, 0x0a, 0x05, 0x40, 0x08, 0x40, 0x09, 0x40, 0x0c,
-
6028  0x02, 0x0d, 0x02, 0x1b, 0xb1, 0x01, 0x02, 0x43, 0x54, 0x58, 0xb2, 0x05,
-
6029  0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0xb3, 0x0c, 0x01,
-
6030  0x0d, 0x01, 0x1b, 0xb1, 0x80, 0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40,
-
6031  0x08, 0xb8, 0x01, 0x80, 0xb1, 0x09, 0x40, 0x1b, 0xb8, 0x01, 0x00, 0xb0,
-
6032  0x02, 0x43, 0x52, 0x58, 0xb2, 0x05, 0x40, 0x08, 0xba, 0x01, 0x80, 0x00,
-
6033  0x09, 0x01, 0x40, 0x1b, 0xb8, 0x01, 0x80, 0xb0, 0x02, 0x43, 0x52, 0x58,
-
6034  0xb2, 0x05, 0x40, 0x08, 0xb8, 0x02, 0x00, 0xb1, 0x09, 0x40, 0x1b, 0xb2,
-
6035  0x05, 0x40, 0x08, 0xba, 0x01, 0x00, 0x00, 0x09, 0x01, 0x00, 0x59, 0x59,
-
6036  0x59, 0xb8, 0x40, 0x00, 0xb0, 0x80, 0x88, 0x55, 0xb9, 0x40, 0x00, 0x02,
-
6037  0x00, 0x63, 0xb8, 0x04, 0x00, 0x88, 0x55, 0x5a, 0x58, 0xb3, 0x0c, 0x00,
-
6038  0x0d, 0x01, 0x1b, 0xb3, 0x0c, 0x00, 0x0d, 0x01, 0x59, 0x59, 0x59, 0x42,
-
6039  0x42, 0x42, 0x42, 0x42, 0x2d, 0x2c, 0x45, 0xb1, 0x02, 0x4e, 0x2b, 0x23,
-
6040  0xb0, 0x4f, 0x2b, 0x20, 0xb0, 0x40, 0x51, 0x58, 0x21, 0x4b, 0x51, 0x58,
-
6041  0xb0, 0x02, 0x25, 0x45, 0xb1, 0x01, 0x4e, 0x2b, 0x60, 0x59, 0x1b, 0x23,
-
6042  0x4b, 0x51, 0x58, 0xb0, 0x03, 0x25, 0x45, 0x20, 0x64, 0x8a, 0x63, 0xb0,
-
6043  0x40, 0x53, 0x58, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x1b, 0x21, 0x59, 0x1b,
-
6044  0x21, 0x59, 0x59, 0x44, 0x2d, 0x2c, 0x20, 0xb0, 0x00, 0x50, 0x20, 0x58,
-
6045  0x23, 0x65, 0x1b, 0x23, 0x59, 0xb1, 0x14, 0x14, 0x8a, 0x70, 0x45, 0xb1,
-
6046  0x10, 0x10, 0x43, 0x4b, 0x8a, 0x43, 0x51, 0x5a, 0x58, 0xb0, 0x40, 0x1b,
-
6047  0xb0, 0x4f, 0x2b, 0x59, 0x23, 0xb1, 0x61, 0x06, 0x26, 0x60, 0x2b, 0x8a,
-
6048  0x58, 0xb0, 0x05, 0x43, 0x8b, 0x59, 0x23, 0x58, 0x65, 0x59, 0x23, 0x10,
-
6049  0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x49, 0x63, 0x23, 0x46, 0x60, 0xb0,
-
6050  0x4f, 0x2b, 0x23, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0xb0, 0x03,
-
6051  0x25, 0x63, 0x56, 0x20, 0x60, 0xb0, 0x62, 0x60, 0x2b, 0xb0, 0x03, 0x25,
-
6052  0x20, 0x10, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61, 0x3a, 0x2d,
-
6053  0x2c, 0xb0, 0x00, 0x16, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01, 0x04, 0x25,
-
6054  0x01, 0x3e, 0x00, 0x3e, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0, 0x0a, 0x23,
-
6055  0x65, 0x42, 0xb0, 0x0b, 0x23, 0x42, 0xb1, 0x02, 0x03, 0x25, 0xb1, 0x01,
-
6056  0x04, 0x25, 0x01, 0x3f, 0x00, 0x3f, 0xb1, 0x01, 0x02, 0x06, 0x0c, 0xb0,
-
6057  0x06, 0x23, 0x65, 0x42, 0xb0, 0x07, 0x23, 0x42, 0xb0, 0x01, 0x16, 0xb1,
-
6058  0x00, 0x02, 0x43, 0x54, 0x58, 0x45, 0x23, 0x45, 0x20, 0x18, 0x69, 0x8a,
-
6059  0x63, 0x23, 0x62, 0x20, 0x20, 0xb0, 0x40, 0x50, 0x58, 0x67, 0x1b, 0x66,
-
6060  0x59, 0x61, 0xb0, 0x20, 0x63, 0xb0, 0x40, 0x23, 0x61, 0xb0, 0x04, 0x23,
-
6061  0x42, 0x1b, 0xb1, 0x04, 0x00, 0x42, 0x21, 0x21, 0x59, 0x18, 0x01, 0x2d,
-
6062  0x2c, 0x20, 0x45, 0xb1, 0x00, 0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x4b, 0x51,
-
6063  0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x20, 0x45, 0xb1, 0x01, 0x4e,
-
6064  0x2b, 0x20, 0x8a, 0x8a, 0x44, 0x20, 0xb1, 0x40, 0x04, 0x26, 0x61, 0x63,
-
6065  0x61, 0xb1, 0x01, 0x4e, 0x2b, 0x44, 0x21, 0x1b, 0x23, 0x21, 0x8a, 0x45,
-
6066  0xb1, 0x01, 0x4e, 0x2b, 0x20, 0x8a, 0x23, 0x44, 0x44, 0x59, 0x2d, 0x2c,
-
6067  0x4b, 0x51, 0xb1, 0x40, 0x4f, 0x2b, 0x50, 0x5b, 0x58, 0x45, 0x20, 0x8a,
-
6068  0xb0, 0x40, 0x61, 0x63, 0x60, 0x1b, 0x23, 0x21, 0x45, 0x59, 0xb1, 0x01,
-
6069  0x4e, 0x2b, 0x44, 0x2d, 0x2c, 0x23, 0x45, 0x20, 0x8a, 0x45, 0x23, 0x61,
-
6070  0x20, 0x64, 0xb0, 0x40, 0x51, 0xb0, 0x04, 0x25, 0x20, 0xb0, 0x00, 0x53,
-
6071  0x23, 0xb0, 0x40, 0x51, 0x5a, 0x5a, 0xb1, 0x40, 0x4f, 0x2b, 0x54, 0x5a,
-
6072  0x58, 0x8a, 0x0c, 0x64, 0x23, 0x64, 0x23, 0x53, 0x58, 0xb1, 0x40, 0x40,
-
6073  0x8a, 0x61, 0x20, 0x63, 0x61, 0x1b, 0x20, 0x63, 0x59, 0x1b, 0x8a, 0x59,
-
6074  0x63, 0xb1, 0x02, 0x4e, 0x2b, 0x60, 0x44, 0x2d, 0x2c, 0x01, 0x2d, 0x2c,
-
6075  0x00, 0x2d, 0x2c, 0x05, 0xb1, 0x0b, 0x0a, 0x43, 0x23, 0x43, 0x65, 0x0a,
-
6076  0x2d, 0x2c, 0xb1, 0x0a, 0x0b, 0x43, 0x23, 0x43, 0x0b, 0x02, 0x2d, 0x2c,
-
6077  0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62,
-
6078  0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0xb0, 0x20, 0x60,
-
6079  0x66, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62, 0x2d,
-
6080  0x2c, 0xb0, 0x02, 0x25, 0x63, 0x67, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00,
-
6081  0x62, 0x60, 0x23, 0x62, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x63, 0x66, 0xb0,
-
6082  0x20, 0x60, 0xb0, 0x02, 0x25, 0xb8, 0x20, 0x00, 0x62, 0x60, 0x23, 0x62,
-
6083  0x2d, 0x2c, 0x23, 0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x4a,
-
6084  0xb1, 0x01, 0x4e, 0x2b, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45, 0x64,
-
6085  0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03, 0x43,
-
6086  0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0xb0,
-
6087  0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x23, 0x8a, 0x4a, 0x23, 0x45,
-
6088  0x64, 0xb0, 0x02, 0x25, 0x64, 0xb0, 0x02, 0x25, 0x61, 0x64, 0xb0, 0x03,
-
6089  0x43, 0x52, 0x58, 0x21, 0x20, 0x64, 0x59, 0xb1, 0x01, 0x4e, 0x2b, 0x23,
-
6090  0xb0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x03, 0x25,
-
6091  0x4a, 0xb1, 0x02, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0x20, 0xb0,
-
6092  0x03, 0x25, 0x4a, 0xb1, 0x01, 0x4e, 0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c,
-
6093  0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x67, 0x2b, 0x8a, 0x10,
-
6094  0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25, 0x8a, 0xb0, 0x68,
-
6095  0x2b, 0x8a, 0x10, 0x3b, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03,
-
6096  0x25, 0x46, 0x60, 0xb0, 0x04, 0x25, 0x2e, 0xb0, 0x04, 0x25, 0xb0, 0x04,
-
6097  0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a,
-
6098  0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x03, 0x25, 0x46, 0xb0, 0x03, 0x25,
-
6099  0x46, 0x60, 0x61, 0xb0, 0x80, 0x62, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a,
-
6100  0x23, 0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0xb0, 0x03, 0x25, 0x47, 0xb0,
-
6101  0x03, 0x25, 0x47, 0x60, 0xb0, 0x05, 0x25, 0x47, 0xb0, 0x80, 0x63, 0x61,
-
6102  0xb0, 0x02, 0x25, 0xb0, 0x06, 0x25, 0x49, 0x63, 0x23, 0xb0, 0x05, 0x25,
-
6103  0x4a, 0xb0, 0x80, 0x63, 0x20, 0x58, 0x62, 0x1b, 0x21, 0x59, 0xb0, 0x04,
-
6104  0x26, 0x46, 0x60, 0x8a, 0x46, 0x8a, 0x46, 0x60, 0xb0, 0x20, 0x63, 0x61,
-
6105  0x2d, 0x2c, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0,
-
6106  0x04, 0x26, 0xb0, 0x6e, 0x2b, 0x20, 0x8a, 0x20, 0x10, 0x23, 0x3a, 0x23,
-
6107  0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0x20, 0xb0, 0x01, 0x54, 0x58,
-
6108  0x21, 0xb0, 0x02, 0x25, 0xb1, 0x02, 0x4e, 0x2b, 0xb0, 0x80, 0x50, 0x20,
-
6109  0x60, 0x59, 0x20, 0x60, 0x60, 0x20, 0xb0, 0x01, 0x51, 0x58, 0x21, 0x21,
-
6110  0x1b, 0x20, 0xb0, 0x05, 0x51, 0x58, 0x21, 0x20, 0x66, 0x61, 0xb0, 0x40,
-
6111  0x23, 0x61, 0xb1, 0x00, 0x03, 0x25, 0x50, 0xb0, 0x03, 0x25, 0xb0, 0x03,
-
6112  0x25, 0x50, 0x5a, 0x58, 0x20, 0xb0, 0x03, 0x25, 0x61, 0x8a, 0x53, 0x58,
-
6113  0x21, 0xb0, 0x00, 0x59, 0x1b, 0x21, 0x59, 0x1b, 0xb0, 0x07, 0x54, 0x58,
-
6114  0x20, 0x66, 0x61, 0x65, 0x23, 0x21, 0x1b, 0x21, 0x21, 0xb0, 0x00, 0x59,
-
6115  0x59, 0x59, 0xb1, 0x02, 0x4e, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0xb0,
-
6116  0x04, 0x25, 0x4a, 0xb0, 0x00, 0x53, 0x58, 0xb0, 0x00, 0x1b, 0x8a, 0x8a,
-
6117  0x23, 0x8a, 0xb0, 0x01, 0x59, 0xb0, 0x04, 0x25, 0x46, 0x20, 0x66, 0x61,
-
6118  0x20, 0xb0, 0x05, 0x26, 0xb0, 0x06, 0x26, 0x49, 0xb0, 0x05, 0x26, 0xb0,
-
6119  0x05, 0x26, 0xb0, 0x70, 0x2b, 0x23, 0x61, 0x65, 0xb0, 0x20, 0x60, 0x20,
-
6120  0x66, 0x61, 0xb0, 0x20, 0x61, 0x65, 0x2d, 0x2c, 0xb0, 0x02, 0x25, 0x46,
-
6121  0x20, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb1, 0x02, 0x4e, 0x2b,
-
6122  0x1b, 0x45, 0x23, 0x21, 0x59, 0x61, 0x65, 0xb0, 0x02, 0x25, 0x10, 0x3b,
-
6123  0x2d, 0x2c, 0xb0, 0x04, 0x26, 0x20, 0xb8, 0x02, 0x00, 0x62, 0x20, 0xb8,
-
6124  0x02, 0x00, 0x63, 0x8a, 0x23, 0x61, 0x20, 0xb0, 0x5d, 0x60, 0x2b, 0xb0,
-
6125  0x05, 0x25, 0x11, 0x8a, 0x12, 0x8a, 0x20, 0x39, 0x8a, 0x58, 0xb9, 0x00,
-
6126  0x5d, 0x10, 0x00, 0xb0, 0x04, 0x26, 0x63, 0x56, 0x60, 0x2b, 0x23, 0x21,
-
6127  0x20, 0x10, 0x20, 0x46, 0x20, 0xb1, 0x02, 0x4e, 0x2b, 0x23, 0x61, 0x1b,
-
6128  0x23, 0x21, 0x20, 0x8a, 0x20, 0x10, 0x49, 0xb1, 0x02, 0x4e, 0x2b, 0x59,
-
6129  0x3b, 0x2d, 0x2c, 0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x09, 0x25, 0x63,
-
6130  0x56, 0x60, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26,
-
6131  0xb0, 0x6d, 0x2b, 0xb1, 0x5d, 0x07, 0x25, 0x60, 0x2b, 0xb0, 0x05, 0x25,
-
6132  0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x6f, 0x2b,
-
6133  0xb9, 0x00, 0x5d, 0x10, 0x00, 0xb0, 0x08, 0x26, 0x63, 0x56, 0x60, 0x2b,
-
6134  0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x50, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
-
6135  0x05, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x05, 0x25, 0xb0,
-
6136  0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0xb0, 0x00, 0x52, 0xb0, 0x02, 0x25,
-
6137  0xb0, 0x01, 0x52, 0x5a, 0x58, 0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49,
-
6138  0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20, 0xb0, 0x40, 0x52,
-
6139  0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0x20, 0xb0, 0x02, 0x54, 0x58,
-
6140  0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
-
6141  0x49, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6142  0xb0, 0x04, 0x25, 0xb0, 0x06, 0x25, 0x49, 0xb0, 0x02, 0x17, 0x38, 0x59,
-
6143  0x59, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb9,
-
6144  0x00, 0x5d, 0x10, 0x00, 0xb0, 0x0b, 0x25, 0x63, 0x56, 0x60, 0x2b, 0xb0,
-
6145  0x07, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0,
-
6146  0x0c, 0x25, 0xb0, 0x0c, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x08, 0x25, 0xb0,
-
6147  0x6e, 0x2b, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x07, 0x25, 0xb0, 0x07, 0x25,
-
6148  0xb0, 0x07, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6149  0xb0, 0x04, 0x26, 0xb0, 0x6d, 0x2b, 0xb0, 0x50, 0x2b, 0xb0, 0x06, 0x25,
-
6150  0xb0, 0x06, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x05, 0x25,
-
6151  0xb0, 0x05, 0x25, 0xb0, 0x03, 0x25, 0xb0, 0x02, 0x17, 0x38, 0x20, 0xb0,
-
6152  0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0x60,
-
6153  0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x04, 0x25, 0x65, 0xb0, 0x02,
-
6154  0x17, 0x38, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x60, 0x20, 0xb0, 0x40,
-
6155  0x53, 0x58, 0x21, 0xb0, 0x40, 0x61, 0x23, 0xb0, 0x40, 0x61, 0x23, 0x1b,
-
6156  0xb8, 0xff, 0xc0, 0x50, 0x58, 0xb0, 0x40, 0x60, 0x23, 0xb0, 0x40, 0x60,
-
6157  0x23, 0x59, 0x59, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x04, 0x26,
-
6158  0xb0, 0x02, 0x17, 0x38, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x25, 0x8a, 0xb0,
-
6159  0x02, 0x17, 0x38, 0x20, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06, 0x25, 0xb0,
-
6160  0x08, 0x25, 0x49, 0xb0, 0x03, 0x25, 0xb0, 0x05, 0x25, 0x49, 0x60, 0x20,
-
6161  0xb0, 0x40, 0x52, 0x58, 0x21, 0x1b, 0xb0, 0x00, 0x52, 0x58, 0xb0, 0x06,
-
6162  0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0b,
-
6163  0x25, 0xb0, 0x0b, 0x25, 0x49, 0xb0, 0x04, 0x17, 0x38, 0xb0, 0x06, 0x25,
-
6164  0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25,
-
6165  0xb0, 0x0a, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x04, 0x17,
-
6166  0x38, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x07,
-
6167  0x25, 0xb0, 0x05, 0x25, 0xb0, 0x71, 0x2b, 0xb0, 0x02, 0x17, 0x38, 0x1b,
-
6168  0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0xb8, 0xff, 0xc0, 0xb0, 0x02, 0x17,
-
6169  0x38, 0x59, 0x59, 0x59, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21, 0x21,
-
6170  0x2d, 0x2c, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x87, 0xb0, 0x03, 0x25,
-
6171  0xb0, 0x03, 0x25, 0x8a, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x65,
-
6172  0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x64, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25,
-
6173  0x06, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x25, 0x49, 0x20, 0x20, 0x63, 0xb0,
-
6174  0x03, 0x25, 0x20, 0x63, 0x51, 0xb1, 0x00, 0x03, 0x25, 0x54, 0x5b, 0x58,
-
6175  0x21, 0x21, 0x23, 0x21, 0x07, 0x1b, 0x20, 0x63, 0xb0, 0x02, 0x25, 0x20,
-
6176  0x63, 0x61, 0x20, 0xb0, 0x53, 0x2b, 0x8a, 0x63, 0xb0, 0x05, 0x25, 0xb0,
-
6177  0x05, 0x25, 0x87, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x4a, 0xb0, 0x00,
-
6178  0x50, 0x58, 0x65, 0x59, 0xb0, 0x04, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00,
-
6179  0x46, 0xb0, 0x05, 0x26, 0x20, 0x01, 0x46, 0x23, 0x00, 0x46, 0xb0, 0x00,
-
6180  0x16, 0x00, 0xb0, 0x00, 0x23, 0x48, 0x01, 0xb0, 0x00, 0x23, 0x48, 0x00,
-
6181  0x20, 0xb0, 0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x01, 0x20, 0xb0,
-
6182  0x01, 0x23, 0x48, 0xb0, 0x02, 0x23, 0x48, 0x23, 0xb2, 0x02, 0x00, 0x01,
-
6183  0x08, 0x23, 0x38, 0xb2, 0x02, 0x00, 0x01, 0x09, 0x23, 0x38, 0xb1, 0x02,
-
6184  0x01, 0x07, 0xb0, 0x01, 0x16, 0x59, 0x2d, 0x2c, 0x23, 0x10, 0x0d, 0x0c,
-
6185  0x8a, 0x63, 0x23, 0x8a, 0x63, 0x60, 0x64, 0xb9, 0x40, 0x00, 0x04, 0x00,
-
6186  0x63, 0x50, 0x58, 0xb0, 0x00, 0x38, 0x1b, 0x3c, 0x59, 0x2d, 0x2c, 0xb0,
-
6187  0x06, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x07, 0x26, 0xb0,
-
6188  0x76, 0x2b, 0x23, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0,
-
6189  0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25, 0xb0,
-
6190  0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b, 0xb0,
-
6191  0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d, 0x2c,
-
6192  0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26,
-
6193  0xb0, 0x76, 0x2b, 0x8a, 0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59,
-
6194  0xb0, 0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25,
-
6195  0xb0, 0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b,
-
6196  0x08, 0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25,
-
6197  0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x26, 0xb0, 0x76, 0x2b, 0x8a, 0x8a, 0x08,
-
6198  0xb0, 0x04, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x05, 0x25,
-
6199  0xb0, 0x05, 0x26, 0xb0, 0x05, 0x25, 0xb0, 0x05, 0x26, 0xb0, 0x76, 0x2b,
-
6200  0xb0, 0x00, 0x54, 0x58, 0x05, 0x1b, 0x04, 0x59, 0xb0, 0x77, 0x2b, 0x2d,
-
6201  0x2c, 0xb0, 0x08, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x0b, 0x25, 0xb0, 0x09,
-
6202  0x26, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0x08, 0xb0,
-
6203  0x05, 0x25, 0xb0, 0x07, 0x26, 0xb0, 0x77, 0x2b, 0xb0, 0x06, 0x25, 0xb0,
-
6204  0x06, 0x26, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x26, 0xb0, 0x76, 0x2b, 0x08,
-
6205  0xb0, 0x77, 0x2b, 0x2d, 0x2c, 0x03, 0xb0, 0x03, 0x25, 0xb0, 0x03, 0x25,
-
6206  0x4a, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x4a, 0x02, 0xb0, 0x05, 0x25,
-
6207  0xb0, 0x05, 0x26, 0x4a, 0xb0, 0x05, 0x26, 0xb0, 0x05, 0x26, 0x4a, 0xb0,
-
6208  0x04, 0x26, 0x63, 0x8a, 0x8a, 0x63, 0x61, 0x2d, 0x2c, 0xb1, 0x5d, 0x0e,
-
6209  0x25, 0x60, 0x2b, 0xb0, 0x0c, 0x26, 0x11, 0xb0, 0x05, 0x26, 0x12, 0xb0,
-
6210  0x0a, 0x25, 0x39, 0xb0, 0x07, 0x25, 0x39, 0xb0, 0x0a, 0x25, 0xb0, 0x0a,
-
6211  0x25, 0xb0, 0x09, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00, 0x50, 0xb0, 0x0b,
-
6212  0x25, 0xb0, 0x08, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x7c, 0x2b, 0xb0, 0x00,
-
6213  0x50, 0x54, 0x58, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0x87, 0xb0, 0x04,
-
6214  0x25, 0xb0, 0x04, 0x25, 0x0b, 0xb0, 0x0a, 0x25, 0x10, 0xb0, 0x09, 0x25,
-
6215  0xc1, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0x10,
-
6216  0xb0, 0x06, 0x25, 0xc1, 0x1b, 0xb0, 0x07, 0x25, 0xb0, 0x0b, 0x25, 0xb0,
-
6217  0x0b, 0x25, 0xb8, 0xff, 0xff, 0xb0, 0x76, 0x2b, 0xb0, 0x04, 0x25, 0xb0,
-
6218  0x04, 0x25, 0x0b, 0xb0, 0x07, 0x25, 0xb0, 0x0a, 0x25, 0xb0, 0x77, 0x2b,
-
6219  0xb0, 0x0a, 0x25, 0xb0, 0x08, 0x25, 0xb0, 0x08, 0x25, 0xb8, 0xff, 0xff,
-
6220  0xb0, 0x76, 0x2b, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x0b, 0xb0, 0x0a,
-
6221  0x25, 0xb0, 0x07, 0x25, 0xb0, 0x77, 0x2b, 0x59, 0xb0, 0x0a, 0x25, 0x46,
-
6222  0xb0, 0x0a, 0x25, 0x46, 0x60, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25,
-
6223  0x46, 0x60, 0xb0, 0x06, 0x25, 0xb0, 0x06, 0x25, 0x0b, 0xb0, 0x0c, 0x25,
-
6224  0xb0, 0x0c, 0x25, 0xb0, 0x0c, 0x26, 0x20, 0xb0, 0x00, 0x50, 0x58, 0x21,
-
6225  0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0xb0, 0x04, 0x25, 0xb0, 0x04,
-
6226  0x25, 0x0b, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x25, 0xb0, 0x09, 0x26, 0x20,
-
6227  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
-
6228  0x23, 0xb0, 0x0a, 0x25, 0x46, 0xb0, 0x0a, 0x25, 0x46, 0x60, 0x61, 0xb0,
-
6229  0x20, 0x63, 0x23, 0xb0, 0x08, 0x25, 0x46, 0xb0, 0x08, 0x25, 0x46, 0x60,
-
6230  0x61, 0xb0, 0x20, 0x63, 0xb1, 0x01, 0x0c, 0x25, 0x54, 0x58, 0x04, 0x1b,
-
6231  0x05, 0x59, 0xb0, 0x0a, 0x26, 0x20, 0x10, 0xb0, 0x03, 0x25, 0x3a, 0xb0,
-
6232  0x06, 0x26, 0xb0, 0x06, 0x26, 0x0b, 0xb0, 0x07, 0x26, 0x20, 0x10, 0x8a,
-
6233  0x3a, 0xb1, 0x01, 0x07, 0x26, 0x54, 0x58, 0x04, 0x1b, 0x05, 0x59, 0xb0,
-
6234  0x05, 0x26, 0x20, 0x10, 0xb0, 0x02, 0x25, 0x3a, 0x8a, 0x8a, 0x0b, 0x23,
-
6235  0x20, 0x10, 0x23, 0x3a, 0x2d, 0x2c, 0x23, 0xb0, 0x01, 0x54, 0x58, 0xb9,
-
6236  0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0x8a,
-
6237  0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
-
6238  0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x8a, 0x8a, 0x08,
-
6239  0x0d, 0x8a, 0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b,
-
6240  0xb8, 0x40, 0x00, 0xb0, 0x00, 0x59, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x08,
-
6241  0xb0, 0x01, 0x54, 0x58, 0xb9, 0x00, 0x00, 0x40, 0x00, 0x1b, 0xb8, 0x40,
-
6242  0x00, 0xb0, 0x00, 0x59, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0xb0, 0x04,
-
6243  0x26, 0xb0, 0x04, 0x26, 0x08, 0x0d, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
-
6244  0x08, 0x0d, 0xb0, 0x7d, 0x2b, 0x2d, 0x2c, 0x20, 0x01, 0x46, 0x23, 0x00,
-
6245  0x46, 0xb0, 0x0a, 0x43, 0xb0, 0x0b, 0x43, 0x8a, 0x63, 0x23, 0x62, 0x61,
-
6246  0x2d, 0x2c, 0xb0, 0x09, 0x2b, 0xb0, 0x06, 0x25, 0x2e, 0xb0, 0x05, 0x25,
-
6247  0x7d, 0xc5, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0x20,
-
6248  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b,
-
6249  0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0x20, 0xb0, 0x00,
-
6250  0x50, 0x58, 0x21, 0xb0, 0x6a, 0x1b, 0xb0, 0x6c, 0x59, 0x2b, 0x18, 0xb0,
-
6251  0x08, 0x25, 0xb0, 0x07, 0x25, 0xb0, 0x06, 0x25, 0xb0, 0x0a, 0x25, 0xb0,
-
6252  0x6f, 0x2b, 0xb0, 0x06, 0x25, 0xb0, 0x05, 0x25, 0xb0, 0x04, 0x26, 0x20,
-
6253  0xb0, 0x00, 0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b,
-
6254  0xb0, 0x05, 0x25, 0xb0, 0x04, 0x25, 0xb0, 0x04, 0x26, 0x20, 0xb0, 0x00,
-
6255  0x50, 0x58, 0x21, 0xb0, 0x66, 0x1b, 0xb0, 0x68, 0x59, 0x2b, 0x54, 0x58,
-
6256  0x7d, 0xb0, 0x04, 0x25, 0x10, 0xb0, 0x03, 0x25, 0xc5, 0xb0, 0x02, 0x25,
-
6257  0x10, 0xb0, 0x01, 0x25, 0xc5, 0xb0, 0x05, 0x26, 0x21, 0xb0, 0x05, 0x26,
-
6258  0x21, 0x1b, 0xb0, 0x06, 0x26, 0xb0, 0x04, 0x25, 0xb0, 0x03, 0x25, 0xb0,
-
6259  0x08, 0x26, 0xb0, 0x6f, 0x2b, 0x59, 0xb1, 0x00, 0x02, 0x43, 0x54, 0x58,
-
6260  0x7d, 0xb0, 0x02, 0x25, 0xb0, 0x82, 0x2b, 0xb0, 0x05, 0x25, 0xb0, 0x82,
-
6261  0x2b, 0x20, 0x20, 0x69, 0x61, 0xb0, 0x04, 0x43, 0x01, 0x23, 0x61, 0xb0,
-
6262  0x60, 0x60, 0x20, 0x69, 0x61, 0xb0, 0x20, 0x61, 0x20, 0xb0, 0x08, 0x26,
-
6263  0xb0, 0x08, 0x26, 0x8a, 0xb0, 0x02, 0x17, 0x38, 0x8a, 0x8a, 0x61, 0x20,
-
6264  0x69, 0x61, 0x61, 0xb0, 0x02, 0x17, 0x38, 0x1b, 0x21, 0x21, 0x21, 0x21,
-
6265  0x59, 0x18, 0x2d, 0x2c, 0x4b, 0x52, 0xb1, 0x01, 0x02, 0x43, 0x53, 0x5a,
-
6266  0x58, 0x23, 0x10, 0x20, 0x01, 0x3c, 0x00, 0x3c, 0x1b, 0x21, 0x21, 0x59,
-
6267  0x2d, 0x2c, 0x23, 0xb0, 0x02, 0x25, 0xb0, 0x02, 0x25, 0x53, 0x58, 0x20,
-
6268  0xb0, 0x04, 0x25, 0x58, 0x3c, 0x1b, 0x39, 0x59, 0xb0, 0x01, 0x60, 0xb8,
-
6269  0xff, 0xe9, 0x1c, 0x59, 0x21, 0x21, 0x21, 0x2d, 0x2c, 0xb0, 0x02, 0x25,
-
6270  0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x8a, 0x20, 0x20, 0x10, 0x11, 0xb0,
-
6271  0x01, 0x60, 0x8a, 0x20, 0x12, 0xb0, 0x01, 0x61, 0xb0, 0x85, 0x2b, 0x2d,
-
6272  0x2c, 0xb0, 0x04, 0x25, 0x47, 0xb0, 0x02, 0x25, 0x47, 0x54, 0x23, 0x20,
-
6273  0x12, 0xb0, 0x01, 0x61, 0x23, 0x20, 0xb0, 0x06, 0x26, 0x20, 0x20, 0x10,
-
6274  0x11, 0xb0, 0x01, 0x60, 0xb0, 0x06, 0x26, 0xb0, 0x85, 0x2b, 0x8a, 0x8a,
-
6275  0xb0, 0x85, 0x2b, 0x2d, 0x2c, 0xb0, 0x02, 0x43, 0x54, 0x58, 0x0c, 0x02,
-
6276  0x8a, 0x4b, 0x53, 0xb0, 0x04, 0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38,
-
6277  0x1b, 0x0a, 0x21, 0x21, 0x59, 0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d,
-
6278  0x2c, 0xb0, 0x98, 0x2b, 0x58, 0x0c, 0x02, 0x8a, 0x4b, 0x53, 0xb0, 0x04,
-
6279  0x26, 0x4b, 0x51, 0x5a, 0x58, 0x0a, 0x38, 0x1b, 0x0a, 0x21, 0x21, 0x59,
-
6280  0x1b, 0x21, 0x21, 0x21, 0x21, 0x59, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
-
6281  0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x68, 0x23, 0x78, 0x21, 0xb1, 0x00,
-
6282  0x02, 0x43, 0xb8, 0x00, 0x5e, 0x23, 0x79, 0x21, 0xb0, 0x02, 0x43, 0x23,
-
6283  0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
-
6284  0x4d, 0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10,
-
6285  0x00, 0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0x21, 0x21,
-
6286  0x21, 0xb0, 0x01, 0xb8, 0x00, 0x30, 0x1c, 0x59, 0x1b, 0x21, 0x59, 0xb0,
-
6287  0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb0, 0x00, 0xb8, 0x00,
-
6288  0x1d, 0x1c, 0x59, 0x23, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
-
6289  0x21, 0xb0, 0x00, 0xb8, 0x00, 0x0c, 0x1c, 0x59, 0x8a, 0xb0, 0x01, 0x61,
-
6290  0xb8, 0xff, 0xab, 0x1c, 0x23, 0x21, 0x2d, 0x2c, 0x20, 0xb0, 0x02, 0x43,
-
6291  0x54, 0xb0, 0x01, 0x23, 0xb8, 0x00, 0x81, 0x23, 0x78, 0x21, 0xb1, 0x00,
-
6292  0x02, 0x43, 0xb8, 0x00, 0x77, 0x23, 0x79, 0x21, 0xb1, 0x00, 0x02, 0x43,
-
6293  0x8a, 0xb0, 0x20, 0x20, 0x5c, 0x58, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x67,
-
6294  0x1c, 0x59, 0x8a, 0x8a, 0x20, 0x8a, 0x20, 0x8a, 0x23, 0xb8, 0x10, 0x00,
-
6295  0x63, 0x56, 0x58, 0xb8, 0x10, 0x00, 0x63, 0x56, 0x58, 0xb0, 0x04, 0x26,
-
6296  0xb0, 0x01, 0x5b, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26, 0xb0, 0x04, 0x26,
-
6297  0x1b, 0x21, 0x21, 0x21, 0x21, 0xb8, 0x00, 0x38, 0xb0, 0x00, 0x23, 0x1c,
-
6298  0x59, 0x1b, 0x21, 0x59, 0xb0, 0x04, 0x26, 0x23, 0xb0, 0x80, 0x62, 0x20,
-
6299  0x5c, 0x58, 0x8a, 0x5c, 0x8a, 0x5a, 0x23, 0x21, 0x23, 0x21, 0xb8, 0x00,
-
6300  0x1e, 0x1c, 0x59, 0x8a, 0xb0, 0x80, 0x62, 0x20, 0x5c, 0x58, 0x21, 0x21,
-
6301  0x23, 0x21, 0xb8, 0x00, 0x0e, 0x1c, 0x59, 0xb0, 0x04, 0x26, 0xb0, 0x01,
-
6302  0x61, 0xb8, 0xff, 0x93, 0x1c, 0x23, 0x21, 0x2d, 0x40, 0xff, 0x76, 0x34,
-
6303  0x22, 0x1f, 0x75, 0x34, 0x48, 0x1f, 0x74, 0x34, 0x64, 0x1f, 0x73, 0x34,
-
6304  0xfa, 0x1f, 0x72, 0x34, 0xff, 0x1f, 0x71, 0x34, 0xa7, 0x1f, 0x70, 0x33,
-
6305  0xff, 0x1f, 0x6f, 0x33, 0xfa, 0x1f, 0x6e, 0x32, 0x48, 0x1f, 0x6d, 0x32,
-
6306  0xa7, 0x1f, 0x6c, 0x32, 0xff, 0x1f, 0x6b, 0x31, 0xff, 0x1f, 0x6a, 0x30,
-
6307  0xff, 0x1f, 0x69, 0x2f, 0xff, 0x1f, 0x68, 0x2f, 0xfa, 0x1f, 0x67, 0x2e,
-
6308  0x7d, 0x1f, 0x66, 0x2e, 0xfa, 0x1f, 0x65, 0x2e, 0xff, 0x1f, 0x64, 0x2e,
-
6309  0x7d, 0x1f, 0x63, 0x2e, 0x3f, 0x1f, 0x62, 0x2d, 0xff, 0x1f, 0x61, 0x2c,
-
6310  0xff, 0x1f, 0x60, 0x2c, 0x64, 0x1f, 0x5f, 0x2b, 0x64, 0x1f, 0x5e, 0x2b,
-
6311  0xfa, 0x1f, 0x5d, 0x2b, 0xff, 0x1f, 0x5c, 0x2b, 0xfa, 0x1f, 0x5b, 0x2a,
-
6312  0xfa, 0x1f, 0x5a, 0x2a, 0xff, 0x1f, 0x59, 0x2a, 0xa7, 0x1f, 0x58, 0x29,
-
6313  0xff, 0x1f, 0x57, 0x26, 0x32, 0x1f, 0x56, 0x28, 0x7d, 0x1f, 0x55, 0x28,
-
6314  0xff, 0x1f, 0x54, 0x26, 0xff, 0x1f, 0x53, 0x26, 0xfa, 0x1f, 0x52, 0x27,
-
6315  0xff, 0x1f, 0x51, 0x27, 0xfa, 0x1f, 0x50, 0x26, 0x38, 0x1f, 0x4f, 0x25,
-
6316  0xff, 0x1f, 0x4e, 0x25, 0x54, 0x1f, 0x4d, 0x24, 0x7d, 0x1f, 0x4c, 0x24,
-
6317  0xff, 0x1f, 0x4b, 0x24, 0x7d, 0x1f, 0x4a, 0x23, 0xa7, 0x1f, 0x49, 0x23,
-
6318  0xff, 0x1f, 0x48, 0x23, 0xfa, 0x1f, 0x47, 0x23, 0x54, 0x1f, 0x46, 0x22,
-
6319  0xff, 0x1f, 0x45, 0x1f, 0x20, 0x1f, 0x44, 0x21, 0xff, 0x1f, 0x43, 0x1f,
-
6320  0xa7, 0x1f, 0x42, 0x1f, 0xff, 0x1f, 0x41, 0x1f, 0xa7, 0x1f, 0x40, 0x20,
-
6321  0xfa, 0x1f, 0x3f, 0x20, 0xff, 0x1f, 0x3e, 0x20, 0x7d, 0x1f, 0x3d, 0x20,
-
6322  0x54, 0x1f, 0x3c, 0x1e, 0xff, 0x1f, 0x3b, 0x1d, 0x64, 0x1f, 0x3a, 0x1d,
-
6323  0xff, 0x1f, 0x39, 0x1d, 0xfa, 0x1f, 0x38, 0x1d, 0x54, 0x1f, 0x37, 0x1c,
-
6324  0xfa, 0x40, 0xdf, 0x1f, 0x36, 0x1c, 0xff, 0x1f, 0x35, 0x1c, 0xfa, 0x1f,
-
6325  0x32, 0x31, 0x7d, 0x1f, 0x28, 0x26, 0xa7, 0x1f, 0x27, 0x26, 0x64, 0x1f,
-
6326  0x26, 0x1b, 0x1b, 0x19, 0x5c, 0x25, 0x1b, 0x38, 0x1f, 0x24, 0x04, 0x1a,
-
6327  0x19, 0x5c, 0x23, 0x19, 0xff, 0x1f, 0x22, 0x09, 0x1a, 0x19, 0x5c, 0x21,
-
6328  0x1f, 0x3f, 0x1f, 0x20, 0x1f, 0x3f, 0x1f, 0x1f, 0x35, 0x18, 0x16, 0x5c,
-
6329  0x1e, 0x18, 0x2a, 0x1f, 0x1d, 0x17, 0xff, 0x1f, 0x1c, 0x16, 0xa7, 0x1f,
-
6330  0x1b, 0x33, 0x19, 0x24, 0x5b, 0x18, 0x3a, 0x16, 0x4f, 0x5b, 0x1a, 0x33,
-
6331  0x19, 0x24, 0x5b, 0x17, 0x3a, 0x16, 0x4f, 0x5b, 0x15, 0x19, 0x45, 0x16,
-
6332  0x61, 0x5a, 0x13, 0x32, 0x12, 0x55, 0x11, 0x32, 0x10, 0x55, 0x12, 0x59,
-
6333  0x10, 0x59, 0x0d, 0x2e, 0x0c, 0x55, 0x05, 0x7d, 0x04, 0x55, 0x0c, 0x59,
-
6334  0x04, 0x59, 0x0f, 0x04, 0x1f, 0x04, 0x3f, 0x04, 0x4f, 0x04, 0x7f, 0x04,
-
6335  0x9f, 0x04, 0xef, 0x04, 0x07, 0x0f, 0x64, 0x0e, 0x55, 0x0b, 0x3f, 0x0a,
-
6336  0x55, 0x07, 0x32, 0x06, 0x55, 0x01, 0x54, 0x00, 0x55, 0x0e, 0x59, 0x6f,
-
6337  0x0e, 0x01, 0x0a, 0x59, 0x06, 0x59, 0x0f, 0x06, 0x3f, 0x06, 0x4f, 0x06,
-
6338  0x5f, 0x06, 0x7f, 0x06, 0x9f, 0x06, 0x06, 0x00, 0x59, 0x0f, 0x00, 0x4f,
-
6339  0x00, 0x5f, 0x00, 0x9f, 0x00, 0xef, 0x00, 0x05, 0x09, 0x2e, 0x08, 0x55,
-
6340  0x03, 0x7d, 0x02, 0x55, 0x08, 0x59, 0x02, 0x59, 0xef, 0x02, 0x01, 0xd0,
-
6341  0x02, 0x01, 0x0f, 0x02, 0x1f, 0x02, 0x3f, 0x02, 0x4f, 0x02, 0x7f, 0x02,
-
6342  0x9f, 0x02, 0x06, 0x10, 0x00, 0x03, 0x40, 0x40, 0x05, 0x01, 0xb8, 0x01,
-
6343  0x90, 0xb0, 0x54, 0x2b, 0x4b, 0xb8, 0x07, 0xff, 0x52, 0x4b, 0xb0, 0x09,
-
6344  0x50, 0x5b, 0xb0, 0x01, 0x88, 0xb0, 0x25, 0x53, 0xb0, 0x01, 0x88, 0xb0,
-
6345  0x40, 0x51, 0x5a, 0xb0, 0x06, 0x88, 0xb0, 0x00, 0x55, 0x5a, 0x5b, 0x58,
-
6346  0xb1, 0x01, 0x01, 0x8e, 0x59, 0x85, 0x8d, 0x8d, 0x00, 0x1d, 0x42, 0x4b,
-
6347  0xb0, 0x90, 0x53, 0x58, 0xb2, 0x03, 0x00, 0x00, 0x1d, 0x42, 0x59, 0xb1,
-
6348  0x02, 0x02, 0x43, 0x51, 0x58, 0xb1, 0x04, 0x03, 0x8e, 0x59, 0x42, 0x73,
-
6349  0x73, 0x73, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x73, 0x00, 0x2b, 0x73,
-
6350  0x00, 0x2b, 0x00, 0x2b, 0x73, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x73,
-
6351  0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
-
6352  0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x01, 0x2b,
-
6353  0x00, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x01, 0x2b, 0x00,
-
6354  0x2b, 0x00, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b,
-
6355  0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
-
6356  0x2b, 0x2b, 0x2b, 0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b,
-
6357  0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x01,
-
6358  0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b,
-
6359  0x01, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x00, 0x2b, 0x2b, 0x2b,
-
6360  0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x2b, 0x18, 0x00,
-
6361  0x02, 0x99, 0x00, 0x06, 0x02, 0x6f, 0x00, 0x04, 0x02, 0x6f, 0x00, 0x04,
-
6362  0x01, 0xc9, 0x00, 0x0a, 0x00, 0x00, 0xff, 0xf5, 0x00, 0x00, 0xff, 0xf8,
-
6363  0x00, 0x00, 0xff, 0xf5, 0xff, 0x59, 0xff, 0xfb, 0x02, 0x70, 0x00, 0x0a,
-
6364  0x00, 0x00, 0xff, 0xf6, 0x00, 0x00, 0x00, 0x46, 0x00, 0x43, 0x00, 0x3d,
-
6365  0x00, 0x3d, 0x00, 0x48, 0x00, 0x3a, 0x00, 0x3a, 0x00, 0x46, 0x00, 0x3d,
-
6366  0x00, 0x31, 0x00, 0x42, 0x00, 0x3b, 0x00, 0x4b, 0x00, 0x3c, 0x00, 0x48,
-
6367  0x00, 0x3b, 0x00, 0x31, 0x00, 0x40, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x3a,
-
6368  0x00, 0x47, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x4a, 0x00, 0x43, 0x00, 0x4c,
-
6369  0x00, 0x2d, 0x00, 0x38, 0x00, 0x3c, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43,
-
6370  0x00, 0x45, 0x00, 0x48, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x42,
-
6371  0x00, 0x31, 0x00, 0x35, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x40,
-
6372  0x00, 0x44, 0x00, 0x47, 0x00, 0x4b, 0x00, 0x52, 0x00, 0x3c, 0x00, 0x42,
-
6373  0x00, 0x46, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x37, 0x00, 0x3b, 0x00, 0x3f,
-
6374  0x00, 0x2b, 0x00, 0x31, 0x00, 0x37, 0x00, 0x39, 0x00, 0x3b, 0x00, 0x3e,
-
6375  0x00, 0x40, 0x00, 0x43, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x3a, 0x00, 0x44,
-
6376  0x00, 0x48, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3d, 0x00, 0x3f, 0x00, 0x42,
-
6377  0x00, 0x3a, 0x00, 0x40, 0x00, 0x4a, 0x00, 0x3b, 0x00, 0x3f, 0x00, 0x43,
-
6378  0x00, 0x45, 0x00, 0x47, 0x00, 0x4a, 0x00, 0x4c, 0x00, 0x2d, 0x00, 0x38,
-
6379  0x00, 0x3d, 0x00, 0x40, 0x00, 0x43, 0x00, 0x2f, 0x00, 0x32, 0x00, 0x37,
-
6380  0x00, 0x3a, 0x00, 0x3c, 0x00, 0x3f, 0x00, 0x42, 0x00, 0x4a, 0x01, 0x8b,
-
6381  0x00, 0x00, 0x00, 0x13, 0x00, 0xea, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6382  0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6383  0x00, 0x01, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6384  0x00, 0x02, 0x00, 0x0e, 0x00, 0xd8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6385  0x00, 0x03, 0x00, 0x3a, 0x00, 0xe6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6386  0x00, 0x04, 0x00, 0x24, 0x00, 0xb4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6387  0x00, 0x05, 0x00, 0x1a, 0x01, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6388  0x00, 0x06, 0x00, 0x24, 0x01, 0x3a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6389  0x00, 0x08, 0x00, 0x36, 0x01, 0x5e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6390  0x00, 0x09, 0x00, 0x48, 0x01, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6391  0x00, 0x0b, 0x00, 0x8e, 0x01, 0xdc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6392  0x00, 0x0c, 0x00, 0x92, 0x02, 0x6a, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6393  0x00, 0x0d, 0x01, 0x20, 0x02, 0xfc, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6394  0x00, 0x0e, 0x00, 0x34, 0x04, 0x1c, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6395  0x00, 0x10, 0x00, 0x16, 0x04, 0x50, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6396  0x00, 0x11, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6397  0x01, 0x00, 0x00, 0x0c, 0x04, 0x72, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6398  0x01, 0x01, 0x00, 0x0a, 0x04, 0x7e, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6399  0x01, 0x50, 0x00, 0x0c, 0x04, 0x88, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09,
-
6400  0x01, 0x58, 0x00, 0x0c, 0x04, 0x66, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x70,
-
6401  0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74,
-
6402  0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x30, 0x00, 0x36, 0x00, 0x20,
-
6403  0x00, 0x54, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6e,
-
6404  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
-
6405  0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x50, 0x00, 0x72,
-
6406  0x00, 0x6f, 0x00, 0x6a, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20,
-
6407  0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6f, 0x00, 0x72,
-
6408  0x00, 0x73, 0x00, 0x20, 0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74,
-
6409  0x00, 0x70, 0x00, 0x73, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f, 0x00, 0x67,
-
6410  0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2e,
-
6411  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x2f, 0x00, 0x63, 0x00, 0x79,
-
6412  0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x74, 0x00, 0x79,
-
6413  0x00, 0x70, 0x00, 0x65, 0x00, 0x2f, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6414  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6415  0x00, 0x74, 0x00, 0x61, 0x00, 0x29, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6416  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6417  0x00, 0x74, 0x00, 0x61, 0x00, 0x20, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
-
6418  0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67,
-
6419  0x00, 0x75, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x72, 0x00, 0x33, 0x00, 0x2e,
-
6420  0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3b, 0x00, 0x43, 0x00, 0x59,
-
6421  0x00, 0x52, 0x00, 0x45, 0x00, 0x3b, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6422  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6423  0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64,
-
6424  0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72,
-
6425  0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x33,
-
6426  0x00, 0x2e, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x49, 0x00, 0x6e,
-
6427  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c,
-
6428  0x00, 0x61, 0x00, 0x74, 0x00, 0x61, 0x00, 0x2d, 0x00, 0x4d, 0x00, 0x65,
-
6429  0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6d, 0x00, 0x52, 0x00, 0x61,
-
6430  0x00, 0x70, 0x00, 0x68, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x65, 0x00, 0x76,
-
6431  0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x43,
-
6432  0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c,
-
6433  0x00, 0x20, 0x00, 0x47, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67, 0x00, 0x6c,
-
6434  0x00, 0x65, 0x00, 0x52, 0x00, 0x61, 0x00, 0x70, 0x00, 0x68, 0x00, 0x20,
-
6435  0x00, 0x4c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
-
6436  0x00, 0x2c, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65,
-
6437  0x00, 0x61, 0x00, 0x6c, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x42, 0x00, 0x72,
-
6438  0x00, 0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x20,
-
6439  0x00, 0x53, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x73, 0x00, 0x6f,
-
6440  0x00, 0x6e, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6441  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
-
6442  0x00, 0x6c, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e,
-
6443  0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c,
-
6444  0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6445  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e,
-
6446  0x00, 0x63, 0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c,
-
6447  0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c,
-
6448  0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6449  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x66, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74,
-
6450  0x00, 0x73, 0x00, 0x2e, 0x00, 0x67, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x67,
-
6451  0x00, 0x6c, 0x00, 0x65, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d,
-
6452  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6453  0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x6c,
-
6454  0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x2e,
-
6455  0x00, 0x63, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
-
6456  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6457  0x00, 0x2f, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2e, 0x00, 0x63,
-
6458  0x00, 0x79, 0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x2e,
-
6459  0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x20, 0x00, 0x7c, 0x00, 0x20,
-
6460  0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f,
-
6461  0x00, 0x2f, 0x00, 0x61, 0x00, 0x70, 0x00, 0x70, 0x00, 0x73, 0x00, 0x66,
-
6462  0x00, 0x6f, 0x00, 0x72, 0x00, 0x61, 0x00, 0x72, 0x00, 0x74, 0x00, 0x69,
-
6463  0x00, 0x73, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x63, 0x00, 0x6f,
-
6464  0x00, 0x6d, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20,
-
6465  0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53,
-
6466  0x00, 0x6f, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72,
-
6467  0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
-
6468  0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
-
6469  0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x65,
-
6470  0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20,
-
6471  0x00, 0x53, 0x00, 0x49, 0x00, 0x4c, 0x00, 0x20, 0x00, 0x4f, 0x00, 0x70,
-
6472  0x00, 0x65, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6f, 0x00, 0x6e,
-
6473  0x00, 0x74, 0x00, 0x20, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65,
-
6474  0x00, 0x6e, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 0x20, 0x00, 0x56,
-
6475  0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e,
-
6476  0x00, 0x20, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x31, 0x00, 0x2e, 0x00, 0x20,
-
6477  0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6c,
-
6478  0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x65,
-
6479  0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76,
-
6480  0x00, 0x61, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6c,
-
6481  0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68,
-
6482  0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51,
-
6483  0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3a, 0x00, 0x20, 0x00, 0x68,
-
6484  0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a, 0x00, 0x2f, 0x00, 0x2f,
-
6485  0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74,
-
6486  0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6c, 0x00, 0x2e,
-
6487  0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f, 0x00, 0x4f, 0x00, 0x46,
-
6488  0x00, 0x4c, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3a,
-
6489  0x00, 0x2f, 0x00, 0x2f, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69,
-
6490  0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2e, 0x00, 0x73, 0x00, 0x69,
-
6491  0x00, 0x6c, 0x00, 0x2e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2f,
-
6492  0x00, 0x4f, 0x00, 0x46, 0x00, 0x4c, 0x00, 0x49, 0x00, 0x6e, 0x00, 0x63,
-
6493  0x00, 0x6f, 0x00, 0x6e, 0x00, 0x73, 0x00, 0x6f, 0x00, 0x6c, 0x00, 0x61,
-
6494  0x00, 0x74, 0x00, 0x61, 0x00, 0x4d, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69,
-
6495  0x00, 0x75, 0x00, 0x6d, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67,
-
6496  0x00, 0x68, 0x00, 0x74, 0x00, 0x57, 0x00, 0x69, 0x00, 0x64, 0x00, 0x74,
-
6497  0x00, 0x68, 0x00, 0x4e, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x6d, 0x00, 0x61,
-
6498  0x00, 0x6c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
6499  0xff, 0x38, 0x00, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
-
6500  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
6501  0x03, 0xc2, 0x00, 0x00, 0x00, 0x24, 0x00, 0xc9, 0x01, 0x02, 0x01, 0x03,
-
6502  0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x00, 0xc7, 0x01, 0x08,
-
6503  0x01, 0x09, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x0c, 0x01, 0x0d, 0x00, 0x62,
-
6504  0x01, 0x0e, 0x00, 0xad, 0x01, 0x0f, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12,
-
6505  0x00, 0x63, 0x01, 0x13, 0x00, 0xae, 0x00, 0x90, 0x01, 0x14, 0x00, 0x25,
-
6506  0x00, 0x26, 0x00, 0xfd, 0x00, 0xff, 0x00, 0x64, 0x01, 0x15, 0x01, 0x16,
-
6507  0x01, 0x17, 0x00, 0x27, 0x00, 0xe9, 0x01, 0x18, 0x01, 0x19, 0x01, 0x1a,
-
6508  0x01, 0x1b, 0x00, 0x28, 0x00, 0x65, 0x01, 0x1c, 0x01, 0x1d, 0x01, 0x1e,
-
6509  0x00, 0xc8, 0x01, 0x1f, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23,
-
6510  0x01, 0x24, 0x00, 0xca, 0x01, 0x25, 0x01, 0x26, 0x00, 0xcb, 0x01, 0x27,
-
6511  0x01, 0x28, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x2b, 0x01, 0x2c, 0x01, 0x2d,
-
6512  0x01, 0x2e, 0x00, 0x29, 0x00, 0x2a, 0x00, 0xf8, 0x01, 0x2f, 0x01, 0x30,
-
6513  0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x00, 0x2b, 0x01, 0x34, 0x01, 0x35,
-
6514  0x01, 0x36, 0x01, 0x37, 0x00, 0x2c, 0x00, 0xcc, 0x01, 0x38, 0x00, 0xcd,
-
6515  0x01, 0x39, 0x00, 0xce, 0x01, 0x3a, 0x00, 0xfa, 0x01, 0x3b, 0x00, 0xcf,
-
6516  0x01, 0x3c, 0x01, 0x3d, 0x01, 0x3e, 0x01, 0x3f, 0x01, 0x40, 0x00, 0x2d,
-
6517  0x01, 0x41, 0x00, 0x2e, 0x01, 0x42, 0x01, 0x43, 0x00, 0x2f, 0x01, 0x44,
-
6518  0x01, 0x45, 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4a,
-
6519  0x01, 0x4b, 0x00, 0xe2, 0x00, 0x30, 0x01, 0x4c, 0x00, 0x31, 0x01, 0x4d,
-
6520  0x01, 0x4e, 0x01, 0x4f, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53,
-
6521  0x00, 0x66, 0x00, 0x32, 0x00, 0xd0, 0x01, 0x54, 0x00, 0xd1, 0x01, 0x55,
-
6522  0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5a, 0x00, 0x67,
-
6523  0x01, 0x5b, 0x01, 0x5c, 0x01, 0x5d, 0x00, 0xd3, 0x01, 0x5e, 0x01, 0x5f,
-
6524  0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65,
-
6525  0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6a, 0x00, 0x91,
-
6526  0x01, 0x6b, 0x00, 0xaf, 0x01, 0x6c, 0x01, 0x6d, 0x01, 0x6e, 0x00, 0xb0,
-
6527  0x00, 0x33, 0x00, 0xed, 0x00, 0x34, 0x00, 0x35, 0x01, 0x6f, 0x01, 0x70,
-
6528  0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x00, 0x36,
-
6529  0x01, 0x76, 0x01, 0x77, 0x00, 0xe4, 0x01, 0x78, 0x00, 0xfb, 0x01, 0x79,
-
6530  0x01, 0x7a, 0x01, 0x7b, 0x01, 0x7c, 0x01, 0x7d, 0x01, 0x7e, 0x01, 0x7f,
-
6531  0x00, 0x37, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84,
-
6532  0x01, 0x85, 0x00, 0x38, 0x00, 0xd4, 0x01, 0x86, 0x00, 0xd5, 0x01, 0x87,
-
6533  0x00, 0x68, 0x01, 0x88, 0x00, 0xd6, 0x01, 0x89, 0x01, 0x8a, 0x01, 0x8b,
-
6534  0x01, 0x8c, 0x01, 0x8d, 0x01, 0x8e, 0x01, 0x8f, 0x01, 0x90, 0x01, 0x91,
-
6535  0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97,
-
6536  0x00, 0x39, 0x00, 0x3a, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9a, 0x01, 0x9b,
-
6537  0x00, 0x3b, 0x00, 0x3c, 0x00, 0xeb, 0x01, 0x9c, 0x00, 0xbb, 0x01, 0x9d,
-
6538  0x01, 0x9e, 0x01, 0x9f, 0x01, 0xa0, 0x01, 0xa1, 0x01, 0xa2, 0x00, 0x3d,
-
6539  0x01, 0xa3, 0x00, 0xe6, 0x01, 0xa4, 0x01, 0xa5, 0x01, 0xa6, 0x00, 0x44,
-
6540  0x00, 0x69, 0x01, 0xa7, 0x01, 0xa8, 0x01, 0xa9, 0x01, 0xaa, 0x01, 0xab,
-
6541  0x01, 0xac, 0x00, 0x6b, 0x01, 0xad, 0x01, 0xae, 0x01, 0xaf, 0x01, 0xb0,
-
6542  0x01, 0xb1, 0x01, 0xb2, 0x00, 0x6c, 0x01, 0xb3, 0x00, 0x6a, 0x01, 0xb4,
-
6543  0x01, 0xb5, 0x01, 0xb6, 0x01, 0xb7, 0x00, 0x6e, 0x01, 0xb8, 0x00, 0x6d,
-
6544  0x00, 0xa0, 0x01, 0xb9, 0x00, 0x45, 0x01, 0xba, 0x00, 0x46, 0x00, 0xfe,
-
6545  0x01, 0x00, 0x00, 0x6f, 0x01, 0xbb, 0x01, 0xbc, 0x01, 0xbd, 0x00, 0x47,
-
6546  0x00, 0xea, 0x01, 0xbe, 0x01, 0x01, 0x01, 0xbf, 0x01, 0xc0, 0x00, 0x48,
-
6547  0x00, 0x70, 0x01, 0xc1, 0x01, 0xc2, 0x01, 0xc3, 0x00, 0x72, 0x01, 0xc4,
-
6548  0x01, 0xc5, 0x01, 0xc6, 0x01, 0xc7, 0x01, 0xc8, 0x01, 0xc9, 0x00, 0x73,
-
6549  0x01, 0xca, 0x01, 0xcb, 0x00, 0x71, 0x01, 0xcc, 0x01, 0xcd, 0x01, 0xce,
-
6550  0x01, 0xcf, 0x01, 0xd0, 0x01, 0xd1, 0x01, 0xd2, 0x01, 0xd3, 0x01, 0xd4,
-
6551  0x01, 0xd5, 0x00, 0x49, 0x00, 0x4a, 0x00, 0xf9, 0x01, 0xd6, 0x01, 0xd7,
-
6552  0x01, 0xd8, 0x01, 0xd9, 0x01, 0xda, 0x00, 0x4b, 0x01, 0xdb, 0x01, 0xdc,
-
6553  0x01, 0xdd, 0x01, 0xde, 0x00, 0x4c, 0x00, 0xd7, 0x00, 0x74, 0x01, 0xdf,
-
6554  0x00, 0x76, 0x01, 0xe0, 0x00, 0x77, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe3,
-
6555  0x00, 0x75, 0x01, 0xe4, 0x01, 0xe5, 0x01, 0xe6, 0x01, 0xe7, 0x01, 0xe8,
-
6556  0x00, 0x4d, 0x01, 0xe9, 0x01, 0xea, 0x00, 0x4e, 0x01, 0xeb, 0x01, 0xec,
-
6557  0x00, 0x4f, 0x01, 0xed, 0x01, 0xee, 0x01, 0xef, 0x01, 0xf0, 0x01, 0xf1,
-
6558  0x01, 0xf2, 0x01, 0xf3, 0x00, 0xe3, 0x00, 0x50, 0x01, 0xf4, 0x00, 0x51,
-
6559  0x01, 0xf5, 0x01, 0xf6, 0x01, 0xf7, 0x01, 0xf8, 0x01, 0xf9, 0x01, 0xfa,
-
6560  0x01, 0xfb, 0x00, 0x78, 0x00, 0x52, 0x00, 0x79, 0x01, 0xfc, 0x00, 0x7b,
-
6561  0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
-
6562  0x00, 0x7c, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x00, 0x7a, 0x02, 0x06,
-
6563  0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c,
-
6564  0x02, 0x0d, 0x02, 0x0e, 0x02, 0x0f, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12,
-
6565  0x00, 0xa1, 0x02, 0x13, 0x00, 0x7d, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16,
-
6566  0x00, 0xb1, 0x00, 0x53, 0x00, 0xee, 0x00, 0x54, 0x00, 0x55, 0x02, 0x17,
-
6567  0x02, 0x18, 0x02, 0x19, 0x02, 0x1a, 0x02, 0x1b, 0x02, 0x1c, 0x02, 0x1d,
-
6568  0x02, 0x1e, 0x02, 0x1f, 0x00, 0x56, 0x02, 0x20, 0x02, 0x21, 0x00, 0xe5,
-
6569  0x02, 0x22, 0x00, 0xfc, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26,
-
6570  0x02, 0x27, 0x00, 0x89, 0x00, 0x57, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2a,
-
6571  0x02, 0x2b, 0x02, 0x2c, 0x02, 0x2d, 0x02, 0x2e, 0x00, 0x58, 0x00, 0x7e,
-
6572  0x02, 0x2f, 0x00, 0x80, 0x02, 0x30, 0x00, 0x81, 0x02, 0x31, 0x00, 0x7f,
-
6573  0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37,
-
6574  0x02, 0x38, 0x02, 0x39, 0x02, 0x3a, 0x02, 0x3b, 0x02, 0x3c, 0x02, 0x3d,
-
6575  0x02, 0x3e, 0x02, 0x3f, 0x02, 0x40, 0x00, 0x59, 0x00, 0x5a, 0x02, 0x41,
-
6576  0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x00, 0x5b, 0x00, 0x5c, 0x00, 0xec,
-
6577  0x02, 0x45, 0x00, 0xba, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49,
-
6578  0x02, 0x4a, 0x02, 0x4b, 0x00, 0x5d, 0x02, 0x4c, 0x00, 0xe7, 0x02, 0x4d,
-
6579  0x02, 0x4e, 0x02, 0x4f, 0x00, 0x9d, 0x00, 0x9e, 0x02, 0x50, 0x02, 0x51,
-
6580  0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18,
-
6581  0x00, 0x19, 0x00, 0x1a, 0x00, 0x1b, 0x00, 0x1c, 0x02, 0x52, 0x02, 0x53,
-
6582  0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59,
-
6583  0x02, 0x5a, 0x02, 0x5b, 0x02, 0x5c, 0x02, 0x5d, 0x02, 0x5e, 0x02, 0x5f,
-
6584  0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65,
-
6585  0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, 0x02, 0x6a, 0x02, 0x6b,
-
6586  0x02, 0x6c, 0x02, 0x6d, 0x02, 0x6e, 0x02, 0x6f, 0x02, 0x70, 0x02, 0x71,
-
6587  0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77,
-
6588  0x02, 0x78, 0x02, 0x79, 0x02, 0x7a, 0x02, 0x7b, 0x00, 0xbc, 0x00, 0xf4,
-
6589  0x00, 0xf5, 0x00, 0xf6, 0x02, 0x7c, 0x02, 0x7d, 0x02, 0x7e, 0x02, 0x7f,
-
6590  0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x00, 0x11, 0x00, 0x0f,
-
6591  0x00, 0x1d, 0x00, 0x1e, 0x00, 0xab, 0x00, 0x04, 0x00, 0xa3, 0x00, 0x22,
-
6592  0x00, 0xa2, 0x00, 0xc3, 0x00, 0x87, 0x00, 0x0d, 0x02, 0x84, 0x00, 0x06,
-
6593  0x00, 0x12, 0x00, 0x3f, 0x02, 0x85, 0x02, 0x86, 0x00, 0x0b, 0x00, 0x0c,
-
6594  0x00, 0x5e, 0x00, 0x60, 0x00, 0x3e, 0x00, 0x40, 0x00, 0x10, 0x02, 0x87,
-
6595  0x00, 0xb2, 0x00, 0xb3, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8a, 0x00, 0x42,
-
6596  0x00, 0xc4, 0x00, 0xc5, 0x00, 0xb4, 0x00, 0xb5, 0x00, 0xb6, 0x00, 0xb7,
-
6597  0x00, 0xa9, 0x00, 0xaa, 0x00, 0xbe, 0x00, 0xbf, 0x00, 0x05, 0x00, 0x0a,
-
6598  0x02, 0x8b, 0x02, 0x8c, 0x02, 0x8d, 0x02, 0x8e, 0x02, 0x8f, 0x02, 0x90,
-
6599  0x02, 0x91, 0x00, 0x03, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95,
-
6600  0x02, 0x96, 0x00, 0x84, 0x02, 0x97, 0x00, 0xbd, 0x00, 0x07, 0x02, 0x98,
-
6601  0x02, 0x99, 0x00, 0xa6, 0x00, 0xf7, 0x02, 0x9a, 0x02, 0x9b, 0x02, 0x9c,
-
6602  0x02, 0x9d, 0x02, 0x9e, 0x02, 0x9f, 0x02, 0xa0, 0x02, 0xa1, 0x02, 0xa2,
-
6603  0x02, 0xa3, 0x00, 0x85, 0x02, 0xa4, 0x00, 0x96, 0x02, 0xa5, 0x02, 0xa6,
-
6604  0x02, 0xa7, 0x02, 0xa8, 0x02, 0xa9, 0x00, 0x0e, 0x00, 0xef, 0x00, 0xf0,
-
6605  0x00, 0xb8, 0x00, 0x20, 0x00, 0x8f, 0x00, 0x21, 0x00, 0x1f, 0x00, 0x95,
-
6606  0x00, 0x94, 0x00, 0x93, 0x00, 0xa7, 0x00, 0x61, 0x00, 0xa4, 0x00, 0x41,
-
6607  0x00, 0x92, 0x02, 0xaa, 0x00, 0x9c, 0x02, 0xab, 0x02, 0xac, 0x00, 0x9a,
-
6608  0x00, 0x99, 0x00, 0xa5, 0x02, 0xad, 0x00, 0x98, 0x00, 0x08, 0x00, 0xc6,
-
6609  0x02, 0xae, 0x02, 0xaf, 0x02, 0xb0, 0x02, 0xb1, 0x02, 0xb2, 0x02, 0xb3,
-
6610  0x02, 0xb4, 0x02, 0xb5, 0x02, 0xb6, 0x02, 0xb7, 0x02, 0xb8, 0x02, 0xb9,
-
6611  0x02, 0xba, 0x02, 0xbb, 0x02, 0xbc, 0x02, 0xbd, 0x02, 0xbe, 0x02, 0xbf,
-
6612  0x02, 0xc0, 0x02, 0xc1, 0x02, 0xc2, 0x02, 0xc3, 0x02, 0xc4, 0x02, 0xc5,
-
6613  0x02, 0xc6, 0x02, 0xc7, 0x02, 0xc8, 0x02, 0xc9, 0x02, 0xca, 0x02, 0xcb,
-
6614  0x02, 0xcc, 0x02, 0xcd, 0x02, 0xce, 0x02, 0xcf, 0x02, 0xd0, 0x02, 0xd1,
-
6615  0x02, 0xd2, 0x02, 0xd3, 0x02, 0xd4, 0x02, 0xd5, 0x02, 0xd6, 0x02, 0xd7,
-
6616  0x02, 0xd8, 0x02, 0xd9, 0x02, 0xda, 0x02, 0xdb, 0x02, 0xdc, 0x02, 0xdd,
-
6617  0x02, 0xde, 0x02, 0xdf, 0x02, 0xe0, 0x02, 0xe1, 0x02, 0xe2, 0x02, 0xe3,
-
6618  0x02, 0xe4, 0x02, 0xe5, 0x02, 0xe6, 0x00, 0xb9, 0x02, 0xe7, 0x02, 0xe8,
-
6619  0x02, 0xe9, 0x02, 0xea, 0x02, 0xeb, 0x02, 0xec, 0x02, 0xed, 0x02, 0xee,
-
6620  0x02, 0xef, 0x02, 0xf0, 0x02, 0xf1, 0x02, 0xf2, 0x02, 0xf3, 0x02, 0xf4,
-
6621  0x02, 0xf5, 0x02, 0xf6, 0x02, 0xf7, 0x02, 0xf8, 0x02, 0xf9, 0x02, 0xfa,
-
6622  0x02, 0xfb, 0x02, 0xfc, 0x02, 0xfd, 0x02, 0xfe, 0x02, 0xff, 0x03, 0x00,
-
6623  0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, 0x03, 0x06,
-
6624  0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0a, 0x03, 0x0b, 0x03, 0x0c,
-
6625  0x03, 0x0d, 0x03, 0x0e, 0x03, 0x0f, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12,
-
6626  0x03, 0x13, 0x03, 0x14, 0x03, 0x15, 0x03, 0x16, 0x03, 0x17, 0x03, 0x18,
-
6627  0x03, 0x19, 0x03, 0x1a, 0x03, 0x1b, 0x03, 0x1c, 0x03, 0x1d, 0x03, 0x1e,
-
6628  0x03, 0x1f, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24,
-
6629  0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2a,
-
6630  0x03, 0x2b, 0x03, 0x2c, 0x03, 0x2d, 0x03, 0x2e, 0x03, 0x2f, 0x03, 0x30,
-
6631  0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36,
-
6632  0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3a, 0x03, 0x3b, 0x03, 0x3c,
-
6633  0x03, 0x3d, 0x03, 0x3e, 0x03, 0x3f, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42,
-
6634  0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48,
-
6635  0x03, 0x49, 0x03, 0x4a, 0x03, 0x4b, 0x03, 0x4c, 0x03, 0x4d, 0x03, 0x4e,
-
6636  0x03, 0x4f, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54,
-
6637  0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x03, 0x58, 0x03, 0x59, 0x03, 0x5a,
-
6638  0x03, 0x5b, 0x03, 0x5c, 0x03, 0x5d, 0x03, 0x5e, 0x03, 0x5f, 0x03, 0x60,
-
6639  0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, 0x03, 0x66,
-
6640  0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6a, 0x03, 0x6b, 0x03, 0x6c,
-
6641  0x03, 0x6d, 0x03, 0x6e, 0x03, 0x6f, 0x03, 0x70, 0x03, 0x71, 0x03, 0x72,
-
6642  0x00, 0x23, 0x00, 0x09, 0x00, 0x88, 0x00, 0x86, 0x00, 0x8b, 0x00, 0x8a,
-
6643  0x00, 0x8c, 0x00, 0x83, 0x03, 0x73, 0x03, 0x74, 0x00, 0x5f, 0x00, 0xe8,
-
6644  0x00, 0x82, 0x03, 0x75, 0x00, 0xc2, 0x03, 0x76, 0x03, 0x77, 0x03, 0x78,
-
6645  0x03, 0x79, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d, 0x03, 0x7e,
-
6646  0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84,
-
6647  0x03, 0x85, 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8a,
-
6648  0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8e, 0x03, 0x8f, 0x03, 0x90,
-
6649  0x03, 0x91, 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96,
-
6650  0x03, 0x97, 0x03, 0x98, 0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c,
-
6651  0x03, 0x9d, 0x03, 0x9e, 0x03, 0x9f, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2,
-
6652  0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8,
-
6653  0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x00, 0x8e, 0x00, 0xdc,
-
6654  0x00, 0x43, 0x00, 0x8d, 0x00, 0xdf, 0x00, 0xd8, 0x00, 0xe1, 0x00, 0xdb,
-
6655  0x00, 0xdd, 0x00, 0xd9, 0x00, 0xda, 0x00, 0xde, 0x00, 0xe0, 0x03, 0xad,
-
6656  0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
-
6657  0x03, 0xb4, 0x03, 0xb5, 0x03, 0xb6, 0x03, 0xb7, 0x03, 0xb8, 0x03, 0xb9,
-
6658  0x03, 0xba, 0x03, 0xbb, 0x03, 0xbc, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
-
6659  0x03, 0xc0, 0x03, 0xc1, 0x03, 0xc2, 0x03, 0xc3, 0x03, 0xc4, 0x03, 0xc5,
-
6660  0x03, 0xc6, 0x03, 0xc7, 0x03, 0xc8, 0x03, 0xc9, 0x03, 0xca, 0x03, 0xcb,
-
6661  0x03, 0xcc, 0x03, 0xcd, 0x03, 0xce, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76,
-
6662  0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6e,
-
6663  0x69, 0x31, 0x45, 0x42, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42,
-
6664  0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6e,
-
6665  0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6666  0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6e,
-
6667  0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6668  0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6e,
-
6669  0x69, 0x30, 0x32, 0x30, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41,
-
6670  0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6e,
-
6671  0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x41, 0x6d, 0x61, 0x63, 0x72, 0x6f,
-
6672  0x6e, 0x07, 0x41, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x0a, 0x41, 0x72,
-
6673  0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61,
-
6674  0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x38,
-
6675  0x0b, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78,
-
6676  0x0a, 0x43, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06,
-
6677  0x44, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x06, 0x44, 0x63, 0x72, 0x6f, 0x61,
-
6678  0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x43, 0x07, 0x75, 0x6e,
-
6679  0x69, 0x31, 0x45, 0x30, 0x45, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, 0x65,
-
6680  0x06, 0x45, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6681  0x45, 0x31, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07,
-
6682  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6683  0x45, 0x43, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x32, 0x07,
-
6684  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6685  0x32, 0x30, 0x34, 0x0a, 0x45, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65,
-
6686  0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x38, 0x07, 0x75,
-
6687  0x6e, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6688  0x30, 0x36, 0x07, 0x45, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
-
6689  0x6e, 0x69, 0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6690  0x31, 0x34, 0x07, 0x45, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x07, 0x75,
-
6691  0x6e, 0x69, 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6692  0x42, 0x38, 0x06, 0x47, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x47, 0x63,
-
6693  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6694  0x69, 0x30, 0x31, 0x32, 0x32, 0x0a, 0x47, 0x64, 0x6f, 0x74, 0x61, 0x63,
-
6695  0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x30,
-
6696  0x04, 0x48, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32,
-
6697  0x41, 0x0b, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65,
-
6698  0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x34, 0x06, 0x49, 0x62,
-
6699  0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x38,
-
6700  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, 0x6e, 0x69,
-
6701  0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x38,
-
6702  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x49, 0x6d, 0x61,
-
6703  0x63, 0x72, 0x6f, 0x6e, 0x07, 0x49, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
-
6704  0x06, 0x49, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x0b, 0x4a, 0x63, 0x69, 0x72,
-
6705  0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6706  0x31, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x39, 0x38, 0x07,
-
6707  0x75, 0x6e, 0x69, 0x30, 0x31, 0x43, 0x37, 0x06, 0x4c, 0x61, 0x63, 0x75,
-
6708  0x74, 0x65, 0x06, 0x4c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e,
-
6709  0x69, 0x30, 0x31, 0x33, 0x42, 0x04, 0x4c, 0x64, 0x6f, 0x74, 0x07, 0x75,
-
6710  0x6e, 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6711  0x43, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75,
-
6712  0x6e, 0x69, 0x31, 0x45, 0x34, 0x32, 0x06, 0x4e, 0x61, 0x63, 0x75, 0x74,
-
6713  0x65, 0x06, 0x4e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6714  0x30, 0x31, 0x34, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x34,
-
6715  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x36, 0x03, 0x45, 0x6e, 0x67,
-
6716  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x38, 0x06, 0x4f, 0x62, 0x72,
-
6717  0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x30, 0x07,
-
6718  0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6719  0x45, 0x44, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07,
-
6720  0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6721  0x32, 0x30, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x41, 0x07,
-
6722  0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6723  0x45, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x45, 0x05,
-
6724  0x4f, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
-
6725  0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x32, 0x07, 0x75, 0x6e,
-
6726  0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44,
-
6727  0x45, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x30, 0x0d, 0x4f, 0x68,
-
6728  0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
-
6729  0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x45, 0x07, 0x4f, 0x6d, 0x61, 0x63,
-
6730  0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x32, 0x07,
-
6731  0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6732  0x31, 0x45, 0x41, 0x0b, 0x4f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63,
-
6733  0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x43, 0x07,
-
6734  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6735  0x32, 0x32, 0x43, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52,
-
6736  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35,
-
6737  0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x30, 0x07, 0x75, 0x6e,
-
6738  0x69, 0x31, 0x45, 0x35, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31,
-
6739  0x32, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x45, 0x06, 0x53, 0x61,
-
6740  0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x34,
-
6741  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x36, 0x0b, 0x53, 0x63, 0x69,
-
6742  0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69,
-
6743  0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x30,
-
6744  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69,
-
6745  0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x45,
-
6746  0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x38, 0x46, 0x04, 0x54, 0x62, 0x61,
-
6747  0x72, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6748  0x30, 0x31, 0x36, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x41,
-
6749  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x43, 0x07, 0x75, 0x6e, 0x69,
-
6750  0x31, 0x45, 0x36, 0x45, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07,
-
6751  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6752  0x45, 0x45, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x36, 0x05,
-
6753  0x55, 0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
-
6754  0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6e,
-
6755  0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45,
-
6756  0x43, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x45, 0x0d, 0x55, 0x68,
-
6757  0x75, 0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07,
-
6758  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x36, 0x07, 0x55, 0x6d, 0x61, 0x63,
-
6759  0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x41, 0x07,
-
6760  0x55, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x05, 0x55, 0x72, 0x69, 0x6e,
-
6761  0x67, 0x06, 0x55, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
-
6762  0x31, 0x45, 0x37, 0x38, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b,
-
6763  0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09,
-
6764  0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, 0x67,
-
6765  0x72, 0x61, 0x76, 0x65, 0x0b, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d,
-
6766  0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x45,
-
6767  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x34, 0x06, 0x59, 0x67, 0x72,
-
6768  0x61, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x36, 0x07,
-
6769  0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6770  0x45, 0x46, 0x38, 0x06, 0x5a, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x5a,
-
6771  0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e,
-
6772  0x69, 0x31, 0x45, 0x39, 0x32, 0x03, 0x55, 0x2e, 0x69, 0x06, 0x61, 0x62,
-
6773  0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x46,
-
6774  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6775  0x31, 0x45, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x33,
-
6776  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6777  0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x44,
-
6778  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6779  0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x42,
-
6780  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6781  0x31, 0x45, 0x41, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x41, 0x33,
-
6782  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x33, 0x07, 0x61, 0x6d, 0x61,
-
6783  0x63, 0x72, 0x6f, 0x6e, 0x07, 0x61, 0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b,
-
6784  0x0a, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07,
-
6785  0x61, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6786  0x32, 0x39, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x39, 0x0b,
-
6787  0x63, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x0a,
-
6788  0x63, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x06, 0x64,
-
6789  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30,
-
6790  0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x30, 0x46, 0x06, 0x65, 0x62,
-
6791  0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07,
-
6792  0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6793  0x45, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07,
-
6794  0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6795  0x45, 0x43, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x35, 0x07,
-
6796  0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x35, 0x0a, 0x65, 0x64, 0x6f, 0x74,
-
6797  0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6798  0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75,
-
6799  0x6e, 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x65, 0x6d, 0x61, 0x63, 0x72,
-
6800  0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75,
-
6801  0x6e, 0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x65, 0x6f, 0x67, 0x6f, 0x6e,
-
6802  0x65, 0x6b, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x39, 0x41, 0x07, 0x75,
-
6803  0x6e, 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6804  0x35, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x42, 0x39, 0x06, 0x67,
-
6805  0x63, 0x61, 0x72, 0x6f, 0x6e, 0x0b, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75,
-
6806  0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x32,
-
6807  0x33, 0x0a, 0x67, 0x64, 0x6f, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74,
-
6808  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x31, 0x04, 0x68, 0x62, 0x61,
-
6809  0x72, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x32, 0x42, 0x0b, 0x68, 0x63,
-
6810  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6811  0x69, 0x31, 0x45, 0x32, 0x35, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65,
-
6812  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x30, 0x39, 0x07, 0x75, 0x6e, 0x69,
-
6813  0x31, 0x45, 0x32, 0x46, 0x09, 0x69, 0x2e, 0x6c, 0x6f, 0x63, 0x6c, 0x54,
-
6814  0x52, 0x4b, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x42, 0x07, 0x75,
-
6815  0x6e, 0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6816  0x30, 0x42, 0x07, 0x69, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x69,
-
6817  0x6f, 0x67, 0x6f, 0x6e, 0x65, 0x6b, 0x06, 0x69, 0x74, 0x69, 0x6c, 0x64,
-
6818  0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0b, 0x6a, 0x63,
-
6819  0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07, 0x75, 0x6e,
-
6820  0x69, 0x30, 0x31, 0x33, 0x37, 0x0c, 0x6b, 0x67, 0x72, 0x65, 0x65, 0x6e,
-
6821  0x6c, 0x61, 0x6e, 0x64, 0x69, 0x63, 0x06, 0x6c, 0x61, 0x63, 0x75, 0x74,
-
6822  0x65, 0x06, 0x6c, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69,
-
6823  0x30, 0x31, 0x33, 0x43, 0x04, 0x6c, 0x64, 0x6f, 0x74, 0x07, 0x75, 0x6e,
-
6824  0x69, 0x31, 0x45, 0x33, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x43,
-
6825  0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x33, 0x42, 0x07, 0x75, 0x6e,
-
6826  0x69, 0x31, 0x45, 0x34, 0x33, 0x06, 0x6e, 0x61, 0x63, 0x75, 0x74, 0x65,
-
6827  0x06, 0x6e, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6828  0x31, 0x34, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x35, 0x07,
-
6829  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x37, 0x03, 0x65, 0x6e, 0x67, 0x07,
-
6830  0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x39, 0x06, 0x6f, 0x62, 0x72, 0x65,
-
6831  0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x31, 0x07, 0x75,
-
6832  0x6e, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6833  0x44, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75,
-
6834  0x6e, 0x69, 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6835  0x30, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x32, 0x42, 0x07, 0x75,
-
6836  0x6e, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45,
-
6837  0x43, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x43, 0x46, 0x05, 0x6f,
-
6838  0x68, 0x6f, 0x72, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x42,
-
6839  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, 0x6e, 0x69,
-
6840  0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x44, 0x46,
-
6841  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x31, 0x0d, 0x6f, 0x68, 0x75,
-
6842  0x6e, 0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75,
-
6843  0x6e, 0x69, 0x30, 0x32, 0x30, 0x46, 0x07, 0x6f, 0x6d, 0x61, 0x63, 0x72,
-
6844  0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x35, 0x33, 0x07, 0x75,
-
6845  0x6e, 0x69, 0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31,
-
6846  0x45, 0x42, 0x0b, 0x6f, 0x73, 0x6c, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75,
-
6847  0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x34, 0x44, 0x07, 0x75,
-
6848  0x6e, 0x69, 0x31, 0x45, 0x34, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6849  0x32, 0x44, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63,
-
6850  0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x31, 0x35, 0x37,
-
6851  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6852  0x31, 0x45, 0x35, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x37, 0x42,
-
6853  0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69,
-
6854  0x31, 0x45, 0x35, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x34, 0x44,
-
6855  0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6856  0x45, 0x36, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x37, 0x0b,
-
6857  0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
-
6858  0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6859  0x45, 0x36, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x33, 0x07,
-
6860  0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x39, 0x04, 0x74, 0x62, 0x61, 0x72,
-
6861  0x06, 0x74, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6862  0x31, 0x36, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x31, 0x42, 0x07,
-
6863  0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6864  0x45, 0x36, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x36, 0x46, 0x06,
-
6865  0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6866  0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75,
-
6867  0x6e, 0x69, 0x31, 0x45, 0x45, 0x37, 0x05, 0x75, 0x68, 0x6f, 0x72, 0x6e,
-
6868  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69,
-
6869  0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x42,
-
6870  0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6e, 0x69,
-
6871  0x31, 0x45, 0x45, 0x46, 0x0d, 0x75, 0x68, 0x75, 0x6e, 0x67, 0x61, 0x72,
-
6872  0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6873  0x31, 0x37, 0x07, 0x75, 0x6d, 0x61, 0x63, 0x72, 0x6f, 0x6e, 0x07, 0x75,
-
6874  0x6e, 0x69, 0x31, 0x45, 0x37, 0x42, 0x07, 0x75, 0x6f, 0x67, 0x6f, 0x6e,
-
6875  0x65, 0x6b, 0x05, 0x75, 0x72, 0x69, 0x6e, 0x67, 0x06, 0x75, 0x74, 0x69,
-
6876  0x6c, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x37, 0x39, 0x06,
-
6877  0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0b, 0x77, 0x63, 0x69, 0x72, 0x63,
-
6878  0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72,
-
6879  0x65, 0x73, 0x69, 0x73, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0b,
-
6880  0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6d, 0x66, 0x6c, 0x65, 0x78, 0x07,
-
6881  0x75, 0x6e, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x31,
-
6882  0x45, 0x46, 0x35, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75,
-
6883  0x6e, 0x69, 0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32,
-
6884  0x33, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x46, 0x39, 0x06, 0x7a,
-
6885  0x61, 0x63, 0x75, 0x74, 0x65, 0x0a, 0x7a, 0x64, 0x6f, 0x74, 0x61, 0x63,
-
6886  0x63, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x31, 0x45, 0x39, 0x33,
-
6887  0x03, 0x75, 0x2e, 0x69, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x46,
-
6888  0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x34, 0x09, 0x7a, 0x65, 0x72,
-
6889  0x6f, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e,
-
6890  0x73, 0x73, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
-
6891  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
6892  0x32, 0x30, 0x38, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x33,
-
6893  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x34, 0x07, 0x75, 0x6e, 0x69,
-
6894  0x32, 0x30, 0x38, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x36,
-
6895  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
6896  0x32, 0x30, 0x38, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x39,
-
6897  0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x6f,
-
6898  0x6e, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08, 0x74, 0x77, 0x6f, 0x2e,
-
6899  0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2e, 0x64,
-
6900  0x6e, 0x6f, 0x6d, 0x09, 0x66, 0x6f, 0x75, 0x72, 0x2e, 0x64, 0x6e, 0x6f,
-
6901  0x6d, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x08,
-
6902  0x73, 0x69, 0x78, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x73, 0x65, 0x76,
-
6903  0x65, 0x6e, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x0a, 0x65, 0x69, 0x67, 0x68,
-
6904  0x74, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x6e, 0x69, 0x6e, 0x65, 0x2e,
-
6905  0x64, 0x6e, 0x6f, 0x6d, 0x09, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
-
6906  0x6d, 0x72, 0x08, 0x6f, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x08,
-
6907  0x74, 0x77, 0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a, 0x74, 0x68, 0x72,
-
6908  0x65, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x6f, 0x75, 0x72,
-
6909  0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2e, 0x6e,
-
6910  0x75, 0x6d, 0x72, 0x08, 0x73, 0x69, 0x78, 0x2e, 0x6e, 0x75, 0x6d, 0x72,
-
6911  0x0a, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x0a,
-
6912  0x65, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x09, 0x6e,
-
6913  0x69, 0x6e, 0x65, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x07, 0x75, 0x6e, 0x69,
-
6914  0x32, 0x30, 0x37, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x39,
-
6915  0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6e, 0x69,
-
6916  0x30, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x34,
-
6917  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6918  0x32, 0x30, 0x37, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x37,
-
6919  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x38, 0x07, 0x75, 0x6e, 0x69,
-
6920  0x32, 0x30, 0x37, 0x39, 0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30,
-
6921  0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64,
-
6922  0x6e, 0x6f, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0e, 0x7a, 0x65, 0x72,
-
6923  0x6f, 0x2e, 0x6e, 0x75, 0x6d, 0x72, 0x2e, 0x73, 0x73, 0x30, 0x32, 0x0c,
-
6924  0x75, 0x6e, 0x69, 0x32, 0x30, 0x37, 0x30, 0x2e, 0x73, 0x73, 0x30, 0x32,
-
6925  0x0c, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x38, 0x30, 0x2e, 0x7a, 0x65, 0x72,
-
6926  0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x64, 0x6e, 0x6f, 0x6d, 0x2e,
-
6927  0x7a, 0x65, 0x72, 0x6f, 0x0e, 0x7a, 0x65, 0x72, 0x6f, 0x2e, 0x6e, 0x75,
-
6928  0x6d, 0x72, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x0c, 0x75, 0x6e, 0x69, 0x32,
-
6929  0x30, 0x37, 0x30, 0x2e, 0x7a, 0x65, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69,
-
6930  0x32, 0x45, 0x31, 0x32, 0x16, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x63,
-
6931  0x65, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2e, 0x6c, 0x6f, 0x63, 0x6c,
-
6932  0x43, 0x41, 0x54, 0x0d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6b,
-
6933  0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x41,
-
6934  0x44, 0x0a, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, 0x68,
-
6935  0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69,
-
6936  0x32, 0x30, 0x31, 0x30, 0x0d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x64, 0x62,
-
6937  0x6c, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x10, 0x71, 0x75, 0x6f, 0x74, 0x65,
-
6938  0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x2e, 0x73, 0x73, 0x30, 0x33, 0x13,
-
6939  0x68, 0x79, 0x70, 0x68, 0x65, 0x6e, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
-
6940  0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x17, 0x65, 0x78, 0x63, 0x6c,
-
6941  0x61, 0x6d, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75,
-
6942  0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6943  0x30, 0x30, 0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07,
-
6944  0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
6945  0x30, 0x41, 0x30, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07,
-
6946  0x75, 0x6e, 0x69, 0x32, 0x30, 0x30, 0x42, 0x02, 0x43, 0x52, 0x07, 0x75,
-
6947  0x6e, 0x69, 0x32, 0x30, 0x42, 0x35, 0x0d, 0x63, 0x6f, 0x6c, 0x6f, 0x6e,
-
6948  0x6d, 0x6f, 0x6e, 0x65, 0x74, 0x61, 0x72, 0x79, 0x04, 0x64, 0x6f, 0x6e,
-
6949  0x67, 0x04, 0x45, 0x75, 0x72, 0x6f, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
-
6950  0x42, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x41, 0x44, 0x04, 0x6c,
-
6951  0x69, 0x72, 0x61, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07,
-
6952  0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6953  0x30, 0x41, 0x36, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x07, 0x75,
-
6954  0x6e, 0x69, 0x32, 0x30, 0x42, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30,
-
6955  0x42, 0x44, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x30, 0x42, 0x39, 0x07, 0x75,
-
6956  0x6e, 0x69, 0x32, 0x30, 0x41, 0x39, 0x0c, 0x61, 0x73, 0x74, 0x65, 0x72,
-
6957  0x69, 0x73, 0x6b, 0x6d, 0x61, 0x74, 0x68, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6958  0x32, 0x31, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x32, 0x31, 0x35, 0x07,
-
6959  0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6960  0x30, 0x37, 0x42, 0x08, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74,
-
6961  0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69,
-
6962  0x32, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x30, 0x42, 0x35,
-
6963  0x0a, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x70, 0x6c, 0x75, 0x73, 0x0f,
-
6964  0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x2e, 0x73,
-
6965  0x73, 0x30, 0x31, 0x10, 0x61, 0x73, 0x63, 0x69, 0x69, 0x63, 0x69, 0x72,
-
6966  0x63, 0x75, 0x6d, 0x2e, 0x73, 0x73, 0x30, 0x31, 0x07, 0x61, 0x72, 0x72,
-
6967  0x6f, 0x77, 0x75, 0x70, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x37,
-
6968  0x0a, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07,
-
6969  0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x38, 0x09, 0x61, 0x72, 0x72, 0x6f,
-
6970  0x77, 0x64, 0x6f, 0x77, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x39,
-
6971  0x39, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x6c, 0x65, 0x66, 0x74, 0x07,
-
6972  0x75, 0x6e, 0x69, 0x32, 0x31, 0x39, 0x36, 0x09, 0x61, 0x72, 0x72, 0x6f,
-
6973  0x77, 0x62, 0x6f, 0x74, 0x68, 0x09, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x75,
-
6974  0x70, 0x64, 0x6e, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x37, 0x07,
-
6975  0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6976  0x31, 0x45, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x45, 0x36, 0x07,
-
6977  0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
6978  0x42, 0x39, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x37, 0x07,
-
6979  0x75, 0x6e, 0x69, 0x32, 0x42, 0x30, 0x35, 0x0d, 0x64, 0x6e, 0x65, 0x69,
-
6980  0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e,
-
6981  0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6982  0x13, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68,
-
6983  0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x64, 0x6e, 0x68,
-
6984  0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x64, 0x6e, 0x66,
-
6985  0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
-
6986  0x6f, 0x63, 0x6b, 0x14, 0x64, 0x6e, 0x74, 0x68, 0x72, 0x65, 0x65, 0x71,
-
6987  0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6988  0x13, 0x64, 0x6e, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65, 0x69, 0x67, 0x68,
-
6989  0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x09, 0x66, 0x75, 0x6c,
-
6990  0x6c, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0b, 0x75, 0x70, 0x68, 0x61, 0x6c,
-
6991  0x66, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0d, 0x75, 0x70, 0x65, 0x69, 0x67,
-
6992  0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0f, 0x6c, 0x65, 0x66,
-
6993  0x74, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b,
-
6994  0x10, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72,
-
6995  0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68,
-
6996  0x72, 0x65, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c,
-
6997  0x6f, 0x63, 0x6b, 0x0d, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x61, 0x6c, 0x66,
-
6998  0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x14, 0x6c, 0x65, 0x66, 0x74, 0x66, 0x69,
-
6999  0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f,
-
7000  0x63, 0x6b, 0x16, 0x6c, 0x65, 0x66, 0x74, 0x74, 0x68, 0x72, 0x65, 0x65,
-
7001  0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x73, 0x62, 0x6c, 0x6f, 0x63,
-
7002  0x6b, 0x15, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x65, 0x76, 0x65, 0x6e, 0x65,
-
7003  0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e,
-
7004  0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x61, 0x6c, 0x66, 0x62, 0x6c, 0x6f,
-
7005  0x63, 0x6b, 0x10, 0x72, 0x69, 0x67, 0x68, 0x74, 0x65, 0x69, 0x67, 0x68,
-
7006  0x74, 0x68, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x0e, 0x64, 0x6e, 0x6c, 0x65,
-
7007  0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0f, 0x64,
-
7008  0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61,
-
7009  0x6e, 0x74, 0x0e, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75, 0x61,
-
7010  0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74,
-
7011  0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68,
-
7012  0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70,
-
7013  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71,
-
7014  0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1b, 0x75, 0x70, 0x6c, 0x65,
-
7015  0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c,
-
7016  0x65, 0x66, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c,
-
7017  0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68,
-
7018  0x74, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64,
-
7019  0x72, 0x61, 0x6e, 0x74, 0x0f, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7020  0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x15, 0x75, 0x70, 0x72,
-
7021  0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x71, 0x75,
-
7022  0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x1c, 0x75, 0x70, 0x72, 0x69, 0x67,
-
7023  0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72, 0x69,
-
7024  0x67, 0x68, 0x74, 0x71, 0x75, 0x61, 0x64, 0x72, 0x61, 0x6e, 0x74, 0x0a,
-
7025  0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x68, 0x61, 0x64, 0x65, 0x0b, 0x6d,
-
7026  0x65, 0x64, 0x69, 0x75, 0x6d, 0x73, 0x68, 0x61, 0x64, 0x65, 0x09, 0x64,
-
7027  0x61, 0x72, 0x6b, 0x73, 0x68, 0x61, 0x64, 0x65, 0x07, 0x75, 0x6e, 0x69,
-
7028  0x32, 0x35, 0x43, 0x46, 0x06, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x07,
-
7029  0x75, 0x6e, 0x69, 0x32, 0x35, 0x43, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7030  0x35, 0x43, 0x37, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x68, 0x6f, 0x72,
-
7031  0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x6c, 0x65,
-
7032  0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c, 0x64, 0x6e, 0x72,
-
7033  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64, 0x62, 0x6c, 0x68,
-
7034  0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75, 0x70,
-
7035  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x64, 0x62, 0x6c, 0x75,
-
7036  0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x64, 0x62, 0x6c,
-
7037  0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x64,
-
7038  0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0e, 0x64, 0x62,
-
7039  0x6c, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7040  0x0e, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7041  0x62, 0x78, 0x64, 0x0f, 0x64, 0x62, 0x6c, 0x76, 0x65, 0x72, 0x74, 0x72,
-
7042  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x64, 0x62,
-
7043  0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x0f,
-
7044  0x64, 0x6e, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
-
7045  0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x64, 0x62, 0x6c, 0x72, 0x69, 0x67,
-
7046  0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68,
-
7047  0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7048  0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7049  0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
-
7050  0x15, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
-
7051  0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x64,
-
7052  0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c,
-
7053  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x68, 0x65,
-
7054  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
-
7055  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x68, 0x65, 0x61,
-
7056  0x76, 0x79, 0x75, 0x70, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7057  0x74, 0x62, 0x78, 0x64, 0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7058  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7059  0x13, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7060  0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c,
-
7061  0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65,
-
7062  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7063  0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7064  0x62, 0x78, 0x64, 0x16, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
-
7065  0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7066  0x78, 0x64, 0x15, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70,
-
7067  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7068  0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a, 0x64, 0x62,
-
7069  0x6c, 0x62, 0x78, 0x64, 0x0f, 0x64, 0x6e, 0x73, 0x6e, 0x67, 0x6c, 0x65,
-
7070  0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x64, 0x6e, 0x73,
-
7071  0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78,
-
7072  0x64, 0x13, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61,
-
7073  0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x13, 0x68, 0x65,
-
7074  0x61, 0x76, 0x79, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
-
7075  0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64,
-
7076  0x6e, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e,
-
7077  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
-
7078  0x79, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x68,
-
7079  0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62,
-
7080  0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
-
7081  0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
-
7082  0x74, 0x62, 0x78, 0x64, 0x16, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
-
7083  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7084  0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61,
-
7085  0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7086  0x14, 0x68, 0x65, 0x61, 0x76, 0x79, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61,
-
7087  0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0d, 0x68, 0x65,
-
7088  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14,
-
7089  0x68, 0x65, 0x61, 0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73,
-
7090  0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x14, 0x68, 0x65, 0x61,
-
7091  0x76, 0x79, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65,
-
7092  0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75,
-
7093  0x70, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
-
7094  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x68, 0x65, 0x61, 0x76,
-
7095  0x79, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68,
-
7096  0x65, 0x61, 0x76, 0x79, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7097  0x6e, 0x62, 0x78, 0x64, 0x0f, 0x68, 0x65, 0x61, 0x76, 0x79, 0x75, 0x70,
-
7098  0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x68, 0x65, 0x61,
-
7099  0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x10, 0x68, 0x65,
-
7100  0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x62,
-
7101  0x78, 0x64, 0x10, 0x68, 0x65, 0x61, 0x76, 0x79, 0x76, 0x65, 0x72, 0x74,
-
7102  0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11, 0x68, 0x65, 0x61, 0x76,
-
7103  0x79, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
-
7104  0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76,
-
7105  0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
-
7106  0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61,
-
7107  0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7108  0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
-
7109  0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x6c, 0x69,
-
7110  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x68,
-
7111  0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72,
-
7112  0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x6c, 0x65,
-
7113  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7114  0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x18, 0x6c,
-
7115  0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68,
-
7116  0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a,
-
7117  0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67,
-
7118  0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7119  0x78, 0x64, 0x1a, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61,
-
7120  0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67,
-
7121  0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61,
-
7122  0x72, 0x63, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x12,
-
7123  0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x64, 0x6e, 0x72, 0x69,
-
7124  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7125  0x61, 0x72, 0x63, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64,
-
7126  0x12, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x72, 0x63, 0x75, 0x70, 0x72,
-
7127  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68,
-
7128  0x74, 0x64, 0x62, 0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a,
-
7129  0x62, 0x78, 0x64, 0x13, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
-
7130  0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x11,
-
7131  0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x69, 0x61, 0x67, 0x63, 0x72, 0x6f,
-
7132  0x73, 0x73, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7133  0x69, 0x61, 0x67, 0x75, 0x70, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x72,
-
7134  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x19, 0x6c, 0x69, 0x67, 0x68,
-
7135  0x74, 0x64, 0x69, 0x61, 0x67, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7136  0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
-
7137  0x67, 0x68, 0x74, 0x64, 0x6e, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67,
-
7138  0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e,
-
7139  0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x6c, 0x65, 0x66, 0x74, 0x62,
-
7140  0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x72, 0x69,
-
7141  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7142  0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x0c, 0x6c, 0x69, 0x67, 0x68,
-
7143  0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x16, 0x6c, 0x69, 0x67,
-
7144  0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72,
-
7145  0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68,
-
7146  0x74, 0x71, 0x75, 0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72,
-
7147  0x7a, 0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x71, 0x75,
-
7148  0x61, 0x64, 0x64, 0x61, 0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
-
7149  0x64, 0x0d, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7150  0x62, 0x78, 0x64, 0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70,
-
7151  0x6c, 0x64, 0x61, 0x73, 0x68, 0x68, 0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64,
-
7152  0x14, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x74, 0x72, 0x70, 0x6c, 0x64, 0x61,
-
7153  0x73, 0x68, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78, 0x64, 0x0a, 0x6c, 0x69,
-
7154  0x67, 0x68, 0x74, 0x75, 0x70, 0x62, 0x78, 0x64, 0x11, 0x6c, 0x69, 0x67,
-
7155  0x68, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x62,
-
7156  0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75, 0x70, 0x68, 0x6f,
-
7157  0x72, 0x7a, 0x62, 0x78, 0x64, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x75,
-
7158  0x70, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x6c, 0x69, 0x67,
-
7159  0x68, 0x74, 0x75, 0x70, 0x72, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64,
-
7160  0x0c, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x62, 0x78,
-
7161  0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68,
-
7162  0x6f, 0x72, 0x7a, 0x62, 0x78, 0x64, 0x10, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7163  0x76, 0x65, 0x72, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x62, 0x78, 0x64, 0x11,
-
7164  0x6c, 0x69, 0x67, 0x68, 0x74, 0x76, 0x65, 0x72, 0x74, 0x72, 0x69, 0x67,
-
7165  0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7166  0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70,
-
7167  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69, 0x67,
-
7168  0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
-
7169  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x18, 0x72, 0x69,
-
7170  0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74,
-
7171  0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x1a, 0x72,
-
7172  0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66,
-
7173  0x74, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78,
-
7174  0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7175  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7176  0x78, 0x64, 0x18, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67, 0x68,
-
7177  0x74, 0x6c, 0x65, 0x66, 0x74, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7178  0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
-
7179  0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x76, 0x65, 0x72, 0x74, 0x68, 0x65,
-
7180  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x1a, 0x72, 0x69, 0x67, 0x68, 0x74,
-
7181  0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x64,
-
7182  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70,
-
7183  0x64, 0x62, 0x6c, 0x68, 0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78,
-
7184  0x64, 0x0f, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73,
-
7185  0x6e, 0x67, 0x62, 0x78, 0x64, 0x10, 0x75, 0x70, 0x64, 0x62, 0x6c, 0x72,
-
7186  0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x75,
-
7187  0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a,
-
7188  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x68,
-
7189  0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a, 0x6c, 0x69, 0x67, 0x68,
-
7190  0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7191  0x6c, 0x65, 0x66, 0x74, 0x64, 0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62,
-
7192  0x78, 0x64, 0x13, 0x75, 0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65,
-
7193  0x66, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x75,
-
7194  0x70, 0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64,
-
7195  0x6e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70,
-
7196  0x68, 0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69,
-
7197  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x75, 0x70, 0x6c, 0x69, 0x67,
-
7198  0x68, 0x74, 0x64, 0x6e, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76,
-
7199  0x79, 0x62, 0x78, 0x64, 0x13, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74,
-
7200  0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7201  0x15, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74,
-
7202  0x64, 0x6e, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x13, 0x75,
-
7203  0x70, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65,
-
7204  0x61, 0x76, 0x79, 0x62, 0x78, 0x64, 0x16, 0x75, 0x70, 0x6c, 0x69, 0x67,
-
7205  0x68, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x6e, 0x68, 0x65, 0x61,
-
7206  0x76, 0x79, 0x62, 0x78, 0x64, 0x14, 0x75, 0x70, 0x6c, 0x69, 0x67, 0x68,
-
7207  0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62,
-
7208  0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
-
7209  0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x0f, 0x75, 0x70, 0x73, 0x6e, 0x67,
-
7210  0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x10, 0x75,
-
7211  0x70, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x64, 0x62, 0x6c,
-
7212  0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x68,
-
7213  0x6f, 0x72, 0x7a, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65,
-
7214  0x72, 0x74, 0x64, 0x62, 0x6c, 0x6c, 0x65, 0x66, 0x74, 0x73, 0x6e, 0x67,
-
7215  0x62, 0x78, 0x64, 0x12, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6c, 0x72,
-
7216  0x69, 0x67, 0x68, 0x74, 0x73, 0x6e, 0x67, 0x62, 0x78, 0x64, 0x15, 0x76,
-
7217  0x65, 0x72, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x68, 0x6f, 0x72, 0x7a,
-
7218  0x6c, 0x69, 0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72,
-
7219  0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x6c, 0x65, 0x66, 0x74, 0x6c, 0x69,
-
7220  0x67, 0x68, 0x74, 0x62, 0x78, 0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x68,
-
7221  0x65, 0x61, 0x76, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x6c, 0x69, 0x67,
-
7222  0x68, 0x74, 0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69,
-
7223  0x67, 0x68, 0x74, 0x68, 0x6f, 0x72, 0x7a, 0x68, 0x65, 0x61, 0x76, 0x79,
-
7224  0x62, 0x78, 0x64, 0x15, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68,
-
7225  0x74, 0x6c, 0x65, 0x66, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78,
-
7226  0x64, 0x16, 0x76, 0x65, 0x72, 0x74, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x72,
-
7227  0x69, 0x67, 0x68, 0x74, 0x68, 0x65, 0x61, 0x76, 0x79, 0x62, 0x78, 0x64,
-
7228  0x11, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x68, 0x6f, 0x72, 0x7a,
-
7229  0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x11, 0x76, 0x65, 0x72, 0x74, 0x73,
-
7230  0x6e, 0x67, 0x6c, 0x65, 0x66, 0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64,
-
7231  0x12, 0x76, 0x65, 0x72, 0x74, 0x73, 0x6e, 0x67, 0x72, 0x69, 0x67, 0x68,
-
7232  0x74, 0x64, 0x62, 0x6c, 0x62, 0x78, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7233  0x36, 0x33, 0x39, 0x09, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61, 0x63,
-
7234  0x65, 0x0c, 0x69, 0x6e, 0x76, 0x73, 0x6d, 0x69, 0x6c, 0x65, 0x66, 0x61,
-
7235  0x63, 0x65, 0x05, 0x73, 0x70, 0x61, 0x64, 0x65, 0x04, 0x63, 0x6c, 0x75,
-
7236  0x62, 0x05, 0x68, 0x65, 0x61, 0x72, 0x74, 0x07, 0x64, 0x69, 0x61, 0x6d,
-
7237  0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x33, 0x07,
-
7238  0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7239  0x37, 0x31, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x37, 0x07,
-
7240  0x75, 0x6e, 0x69, 0x32, 0x37, 0x31, 0x38, 0x06, 0x6d, 0x69, 0x6e, 0x75,
-
7241  0x74, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x07, 0x75, 0x6e,
-
7242  0x69, 0x32, 0x31, 0x31, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x31, 0x31,
-
7243  0x36, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x07,
-
7244  0x75, 0x6e, 0x69, 0x32, 0x34, 0x32, 0x33, 0x07, 0x75, 0x6e, 0x69, 0x32,
-
7245  0x33, 0x38, 0x42, 0x05, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x07, 0x75, 0x6e,
-
7246  0x69, 0x32, 0x31, 0x45, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
-
7247  0x37, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32, 0x42, 0x07, 0x75, 0x6e,
-
7248  0x69, 0x32, 0x33, 0x32, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x32,
-
7249  0x35, 0x07, 0x75, 0x6e, 0x69, 0x32, 0x33, 0x31, 0x38, 0x07, 0x75, 0x6e,
-
7250  0x69, 0x32, 0x33, 0x43, 0x45, 0x07, 0x75, 0x6e, 0x69, 0x46, 0x46, 0x46,
-
7251  0x44, 0x16, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61,
-
7252  0x6c, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67,
-
7253  0x12, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x5f, 0x67, 0x72, 0x65, 0x61, 0x74,
-
7254  0x65, 0x72, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x12, 0x67, 0x72, 0x65, 0x61,
-
7255  0x74, 0x65, 0x72, 0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c,
-
7256  0x69, 0x67, 0x10, 0x6c, 0x65, 0x73, 0x73, 0x5f, 0x68, 0x79, 0x70, 0x68,
-
7257  0x65, 0x6e, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x0f, 0x6c, 0x65, 0x73, 0x73,
-
7258  0x5f, 0x65, 0x71, 0x75, 0x61, 0x6c, 0x2e, 0x64, 0x6c, 0x69, 0x67, 0x07,
-
7259  0x75, 0x6e, 0x69, 0x30, 0x33, 0x37, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7260  0x32, 0x42, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07,
-
7261  0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7262  0x32, 0x43, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x42, 0x07,
-
7263  0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x39, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7264  0x32, 0x42, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07,
-
7265  0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x41, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7266  0x32, 0x43, 0x43, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x32, 0x43, 0x38, 0x07,
-
7267  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7268  0x33, 0x30, 0x37, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d,
-
7269  0x62, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
-
7270  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x42, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7271  0x33, 0x30, 0x32, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07,
-
7272  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7273  0x33, 0x30, 0x41, 0x09, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d,
-
7274  0x62, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x34, 0x0d, 0x68, 0x6f,
-
7275  0x6f, 0x6b, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x07,
-
7276  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, 0x6e, 0x69, 0x30,
-
7277  0x33, 0x31, 0x31, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x32, 0x07,
-
7278  0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42, 0x0c, 0x64, 0x6f, 0x74, 0x62,
-
7279  0x65, 0x6c, 0x6f, 0x77, 0x63, 0x6f, 0x6d, 0x62, 0x07, 0x75, 0x6e, 0x69,
-
7280  0x30, 0x33, 0x32, 0x34, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x36,
-
7281  0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6e, 0x69,
-
7282  0x30, 0x33, 0x32, 0x38, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x32, 0x45,
-
7283  0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x31, 0x07, 0x75, 0x6e, 0x69,
-
7284  0x30, 0x33, 0x33, 0x35, 0x07, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x33, 0x36,
-
7285  0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x38, 0x2e, 0x63, 0x61, 0x73,
-
7286  0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x37, 0x2e, 0x63, 0x61,
-
7287  0x73, 0x65, 0x0e, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6f, 0x6d, 0x62,
-
7288  0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63,
-
7289  0x6f, 0x6d, 0x62, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69,
-
7290  0x30, 0x33, 0x30, 0x42, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e,
-
7291  0x69, 0x30, 0x33, 0x30, 0x32, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c, 0x75,
-
7292  0x6e, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0c,
-
7293  0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x36, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7294  0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x41, 0x2e, 0x63, 0x61, 0x73,
-
7295  0x65, 0x0e, 0x74, 0x69, 0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e,
-
7296  0x63, 0x61, 0x73, 0x65, 0x0c, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x31, 0x42,
-
7297  0x2e, 0x63, 0x61, 0x73, 0x65, 0x0d, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73,
-
7298  0x69, 0x73, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0e, 0x64, 0x6f, 0x74, 0x61,
-
7299  0x63, 0x63, 0x65, 0x6e, 0x74, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x67,
-
7300  0x72, 0x61, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x61, 0x63,
-
7301  0x75, 0x74, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x11, 0x68, 0x75, 0x6e,
-
7302  0x67, 0x61, 0x72, 0x75, 0x6d, 0x6c, 0x61, 0x75, 0x74, 0x2e, 0x63, 0x61,
-
7303  0x73, 0x65, 0x0a, 0x63, 0x61, 0x72, 0x6f, 0x6e, 0x2e, 0x63, 0x61, 0x73,
-
7304  0x65, 0x0a, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7305  0x09, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0a, 0x74,
-
7306  0x69, 0x6c, 0x64, 0x65, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x0b, 0x74, 0x69,
-
7307  0x6c, 0x64, 0x65, 0x63, 0x6f, 0x6d, 0x62, 0x2e, 0x69, 0x0b, 0x75, 0x6e,
-
7308  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
-
7309  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
-
7310  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
-
7311  0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x33, 0x0b, 0x75, 0x6e,
-
7312  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x0b, 0x75, 0x6e,
-
7313  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x0b, 0x75, 0x6e,
-
7314  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x0b, 0x75, 0x6e,
-
7315  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33, 0x10, 0x75, 0x6e,
-
7316  0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x2e, 0x63, 0x61,
-
7317  0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33,
-
7318  0x30, 0x30, 0x2e, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6e, 0x69, 0x30,
-
7319  0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x2e, 0x63, 0x61, 0x73, 0x65,
-
7320  0x10, 0x75, 0x6e, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33,
-
7321  0x2e, 0x63, 0x61, 0x73, 0x65, 0x04, 0x4e, 0x55, 0x4c, 0x4c, 0x00, 0x00,
-
7322  0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x02,
-
7323  0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x02,
-
7324  0x00, 0x26, 0x00, 0x01, 0x00, 0x19, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x24,
-
7325  0x00, 0x01, 0x00, 0x26, 0x00, 0x26, 0x00, 0x01, 0x00, 0x28, 0x00, 0x40,
-
7326  0x00, 0x01, 0x00, 0x42, 0x00, 0x5f, 0x00, 0x01, 0x00, 0x63, 0x00, 0x63,
-
7327  0x00, 0x01, 0x00, 0x65, 0x00, 0x69, 0x00, 0x01, 0x00, 0x6b, 0x00, 0x6b,
-
7328  0x00, 0x01, 0x00, 0x6d, 0x00, 0x99, 0x00, 0x01, 0x00, 0x9b, 0x00, 0x9b,
-
7329  0x00, 0x01, 0x00, 0x9d, 0x00, 0xb0, 0x00, 0x01, 0x00, 0xb2, 0x00, 0xe6,
-
7330  0x00, 0x01, 0x00, 0xe8, 0x01, 0x00, 0x00, 0x01, 0x01, 0x03, 0x01, 0x0c,
-
7331  0x00, 0x01, 0x01, 0x0f, 0x01, 0x27, 0x00, 0x01, 0x01, 0x29, 0x01, 0x2a,
-
7332  0x00, 0x01, 0x01, 0x2d, 0x01, 0x52, 0x00, 0x01, 0x01, 0x54, 0x01, 0x54,
-
7333  0x00, 0x01, 0x01, 0x56, 0x01, 0x56, 0x00, 0x01, 0x01, 0x58, 0x01, 0x5f,
-
7334  0x00, 0x01, 0x01, 0x61, 0x01, 0x84, 0x00, 0x01, 0x01, 0x86, 0x01, 0x86,
-
7335  0x00, 0x01, 0x01, 0x89, 0x01, 0x8e, 0x00, 0x01, 0x01, 0x90, 0x01, 0x92,
-
7336  0x00, 0x01, 0x01, 0x9f, 0x01, 0xd3, 0x00, 0x01, 0x01, 0xd7, 0x01, 0xd7,
-
7337  0x00, 0x01, 0x02, 0x51, 0x02, 0x53, 0x00, 0x01, 0x02, 0x56, 0x02, 0x56,
-
7338  0x00, 0x01, 0x02, 0x59, 0x02, 0x59, 0x00, 0x01, 0x02, 0x5f, 0x02, 0x5f,
-
7339  0x00, 0x01, 0x02, 0x61, 0x02, 0x62, 0x00, 0x01, 0x02, 0x65, 0x02, 0x65,
-
7340  0x00, 0x01, 0x03, 0x70, 0x03, 0x70, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x92,
-
7341  0x00, 0x03, 0x03, 0x95, 0x03, 0x95, 0x00, 0x01, 0x03, 0xa0, 0x03, 0xaa,
-
7342  0x00, 0x03, 0x03, 0xb0, 0x03, 0xb0, 0x00, 0x01, 0x03, 0xb5, 0x03, 0xc0,
-
7343  0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00,
-
7344  0x00, 0x20, 0x00, 0x00, 0x00, 0x36, 0x00, 0x01, 0x00, 0x06, 0x03, 0x8a,
-
7345  0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f, 0x03, 0x90, 0x00, 0x02,
-
7346  0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
-
7347  0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x01, 0x00, 0x02,
-
7348  0x03, 0x89, 0x03, 0xaa, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x26,
-
7349  0x00, 0x44, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
-
7350  0x74, 0x6e, 0x00, 0x0e, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
-
7351  0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x6d, 0x61, 0x72, 0x6b,
-
7352  0x00, 0x0e, 0x6d, 0x6b, 0x6d, 0x6b, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01,
-
7353  0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03,
-
7354  0x00, 0x04, 0x00, 0x0a, 0x1a, 0x40, 0x1a, 0xd0, 0x1d, 0x3a, 0x00, 0x04,
-
7355  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x22,
-
7356  0x00, 0x05, 0x00, 0xf8, 0x01, 0xc6, 0x00, 0x02, 0x00, 0x03, 0x03, 0x7a,
-
7357  0x03, 0x92, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xaa, 0x00, 0x19, 0x03, 0xb5,
-
7358  0x03, 0xc0, 0x00, 0x24, 0x00, 0x02, 0x00, 0x23, 0x00, 0x01, 0x00, 0x19,
-
7359  0x00, 0x00, 0x00, 0x1c, 0x00, 0x24, 0x00, 0x19, 0x00, 0x26, 0x00, 0x26,
-
7360  0x00, 0x22, 0x00, 0x28, 0x00, 0x40, 0x00, 0x23, 0x00, 0x42, 0x00, 0x5f,
-
7361  0x00, 0x3c, 0x00, 0x63, 0x00, 0x63, 0x00, 0x5a, 0x00, 0x65, 0x00, 0x69,
-
7362  0x00, 0x5b, 0x00, 0x6b, 0x00, 0x6b, 0x00, 0x60, 0x00, 0x6d, 0x00, 0x99,
-
7363  0x00, 0x61, 0x00, 0x9b, 0x00, 0x9b, 0x00, 0x8e, 0x00, 0x9d, 0x00, 0xb0,
-
7364  0x00, 0x8f, 0x00, 0xb2, 0x00, 0xe6, 0x00, 0xa3, 0x00, 0xe8, 0x01, 0x00,
-
7365  0x00, 0xd8, 0x01, 0x03, 0x01, 0x0c, 0x00, 0xf1, 0x01, 0x0f, 0x01, 0x27,
-
7366  0x00, 0xfb, 0x01, 0x29, 0x01, 0x2a, 0x01, 0x14, 0x01, 0x2d, 0x01, 0x52,
-
7367  0x01, 0x16, 0x01, 0x54, 0x01, 0x54, 0x01, 0x3c, 0x01, 0x56, 0x01, 0x56,
-
7368  0x01, 0x3d, 0x01, 0x58, 0x01, 0x5f, 0x01, 0x3e, 0x01, 0x61, 0x01, 0x84,
-
7369  0x01, 0x46, 0x01, 0x86, 0x01, 0x86, 0x01, 0x6a, 0x01, 0x89, 0x01, 0x8e,
-
7370  0x01, 0x6b, 0x01, 0x90, 0x01, 0x92, 0x01, 0x71, 0x01, 0x9f, 0x01, 0xd3,
-
7371  0x01, 0x74, 0x01, 0xd7, 0x01, 0xd7, 0x01, 0xa9, 0x02, 0x51, 0x02, 0x53,
-
7372  0x01, 0xaa, 0x02, 0x56, 0x02, 0x56, 0x01, 0xad, 0x02, 0x59, 0x02, 0x59,
-
7373  0x01, 0xae, 0x02, 0x5f, 0x02, 0x5f, 0x01, 0xaf, 0x02, 0x61, 0x02, 0x62,
-
7374  0x01, 0xb0, 0x02, 0x65, 0x02, 0x65, 0x01, 0xb2, 0x03, 0x70, 0x03, 0x70,
-
7375  0x01, 0xb3, 0x03, 0x95, 0x03, 0x95, 0x01, 0xb4, 0x03, 0xb0, 0x03, 0xb0,
-
7376  0x01, 0xb5, 0x00, 0x30, 0x00, 0x00, 0x1a, 0x88, 0x00, 0x00, 0x1a, 0x8e,
-
7377  0x00, 0x00, 0x1a, 0x94, 0x00, 0x00, 0x1a, 0x9a, 0x00, 0x00, 0x1a, 0xa0,
-
7378  0x00, 0x00, 0x1a, 0xa6, 0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xd6,
-
7379  0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xac, 0x00, 0x00, 0x1a, 0xe8,
-
7380  0x00, 0x00, 0x1a, 0xb2, 0x00, 0x00, 0x1a, 0xb8, 0x00, 0x00, 0x1a, 0xe2,
-
7381  0x00, 0x00, 0x1a, 0xbe, 0x00, 0x01, 0x1c, 0x5e, 0x00, 0x02, 0x19, 0x76,
-
7382  0x00, 0x02, 0x19, 0x7c, 0x00, 0x02, 0x19, 0x82, 0x00, 0x02, 0x19, 0x88,
-
7383  0x00, 0x03, 0x00, 0xc2, 0x00, 0x02, 0x19, 0x8e, 0x00, 0x02, 0x19, 0x8e,
-
7384  0x00, 0x04, 0x00, 0xc8, 0x00, 0x04, 0x00, 0xc8, 0x00, 0x00, 0x1b, 0x06,
-
7385  0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xc4, 0x00, 0x00, 0x1a, 0xca,
-
7386  0x00, 0x00, 0x1a, 0xd0, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1a, 0xfa,
-
7387  0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x06, 0x00, 0x00, 0x1a, 0xf4,
-
7388  0x00, 0x01, 0x1c, 0x64, 0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xd6,
-
7389  0x00, 0x00, 0x1a, 0xd6, 0x00, 0x00, 0x1a, 0xdc, 0x00, 0x00, 0x1a, 0xe2,
-
7390  0x00, 0x00, 0x1a, 0xe2, 0x00, 0x00, 0x1a, 0xe8, 0x00, 0x00, 0x1a, 0xee,
-
7391  0x00, 0x00, 0x1a, 0xf4, 0x00, 0x00, 0x1a, 0xfa, 0x00, 0x00, 0x1b, 0x00,
-
7392  0x00, 0x00, 0x1b, 0x06, 0x00, 0x01, 0x00, 0xee, 0x00, 0x00, 0x00, 0x01,
-
7393  0x00, 0xfb, 0x01, 0x3c, 0x01, 0xb6, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7394  0x11, 0x4e, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7395  0x00, 0x00, 0x1b, 0x0e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7396  0x11, 0x1e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x0e,
-
7397  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x24, 0x00, 0x00,
-
7398  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x2a, 0x00, 0x00, 0x18, 0x50,
-
7399  0x11, 0x4e, 0x00, 0x00, 0x11, 0x30, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7400  0x00, 0x00, 0x1b, 0x02, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7401  0x11, 0x36, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x02,
-
7402  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x1b, 0x50, 0x00, 0x00,
-
7403  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x3c, 0x00, 0x00, 0x18, 0x50,
-
7404  0x11, 0x4e, 0x00, 0x00, 0x11, 0x42, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7405  0x00, 0x00, 0x13, 0x52, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7406  0x1a, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c,
-
7407  0x00, 0x00, 0x17, 0xea, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xe8, 0x00, 0x00,
-
7408  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xee, 0x00, 0x00, 0x18, 0x50,
-
7409  0x11, 0x4e, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e,
-
7410  0x00, 0x00, 0x13, 0xf4, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00,
-
7411  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0x94,
-
7412  0x00, 0x00, 0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x11, 0x48, 0x00, 0x00,
-
7413  0x18, 0x50, 0x11, 0x4e, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x18, 0x50,
-
7414  0x11, 0x4e, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7415  0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7416  0x11, 0x5a, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x11, 0x54,
-
7417  0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00,
-
7418  0x11, 0x60, 0x00, 0x00, 0x00, 0x00, 0x11, 0x5a, 0x00, 0x00, 0x11, 0x60,
-
7419  0x00, 0x00, 0x00, 0x00, 0x11, 0x66, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00,
-
7420  0x00, 0x00, 0x11, 0x6c, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7421  0x11, 0x7e, 0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x72,
-
7422  0x00, 0x00, 0x18, 0xc0, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00,
-
7423  0x11, 0x78, 0x00, 0x00, 0x14, 0xc0, 0x11, 0x7e, 0x00, 0x00, 0x18, 0xf2,
-
7424  0x00, 0x00, 0x14, 0xc0, 0x11, 0xea, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7425  0x00, 0x00, 0x11, 0x84, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7426  0x11, 0x90, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x8a,
-
7427  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x90, 0x00, 0x00,
-
7428  0x13, 0x46, 0x11, 0xf6, 0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7429  0x11, 0xf6, 0x00, 0x00, 0x11, 0x96, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7430  0x00, 0x00, 0x11, 0x9c, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00,
-
7431  0x11, 0xa2, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xa8,
-
7432  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xae, 0x00, 0x00,
-
7433  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xb4, 0x00, 0x00, 0x18, 0x50,
-
7434  0x11, 0xf6, 0x00, 0x00, 0x11, 0xba, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7435  0x00, 0x00, 0x11, 0xc0, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7436  0x11, 0xea, 0x00, 0x00, 0x17, 0xea, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xc6,
-
7437  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xcc, 0x00, 0x00,
-
7438  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xd2, 0x00, 0x00, 0x18, 0x50,
-
7439  0x11, 0xf6, 0x00, 0x00, 0x11, 0xd8, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6,
-
7440  0x00, 0x00, 0x11, 0xde, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00,
-
7441  0x11, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xea,
-
7442  0x00, 0x00, 0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x11, 0xf0, 0x00, 0x00,
-
7443  0x18, 0x50, 0x11, 0xf6, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7444  0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
-
7445  0x00, 0x00, 0x11, 0xfc, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00,
-
7446  0x12, 0x02, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x08,
-
7447  0x00, 0x00, 0x12, 0x26, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0e, 0x00, 0x00,
-
7448  0x12, 0x14, 0x00, 0x00, 0x00, 0x00, 0x12, 0x1a, 0x00, 0x00, 0x12, 0x26,
-
7449  0x00, 0x00, 0x00, 0x00, 0x12, 0x20, 0x00, 0x00, 0x12, 0x26, 0x00, 0x00,
-
7450  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0,
-
7451  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c,
-
7452  0x00, 0x00, 0x15, 0xa4, 0x00, 0x00, 0x14, 0xc0, 0x1b, 0x02, 0x00, 0x00,
-
7453  0x18, 0x50, 0x00, 0x00, 0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea,
-
7454  0x00, 0x00, 0x14, 0xc0, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7455  0x00, 0x00, 0x12, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7456  0x12, 0x32, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x38,
-
7457  0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x3e, 0x00, 0x00,
-
7458  0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x44, 0x00, 0x00, 0x18, 0x50,
-
7459  0x12, 0x74, 0x00, 0x00, 0x12, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7460  0x00, 0x00, 0x12, 0x50, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7461  0x12, 0x6e, 0x00, 0x00, 0x17, 0xea, 0x12, 0x74, 0x00, 0x00, 0x12, 0x56,
-
7462  0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x5c, 0x00, 0x00,
-
7463  0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x62, 0x00, 0x00, 0x18, 0x50,
-
7464  0x12, 0x74, 0x00, 0x00, 0x12, 0x68, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74,
-
7465  0x00, 0x00, 0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00,
-
7466  0x12, 0x6e, 0x00, 0x00, 0x18, 0x50, 0x12, 0x74, 0x00, 0x00, 0x12, 0x7a,
-
7467  0x00, 0x00, 0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x80, 0x00, 0x00,
-
7468  0x12, 0x86, 0x00, 0x00, 0x00, 0x00, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50,
-
7469  0x00, 0x00, 0x12, 0x9e, 0x12, 0x8c, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00,
-
7470  0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e,
-
7471  0x12, 0x92, 0x12, 0x98, 0x15, 0xfe, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92,
-
7472  0x12, 0x98, 0x18, 0x50, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98,
-
7473  0x17, 0xea, 0x00, 0x00, 0x12, 0x9e, 0x12, 0x92, 0x12, 0x98, 0x16, 0x10,
-
7474  0x00, 0x00, 0x12, 0x9e, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7475  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7476  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
-
7477  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x08, 0x00, 0x00,
-
7478  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
-
7479  0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7480  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7481  0x1a, 0x26, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c,
-
7482  0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00,
-
7483  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4,
-
7484  0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7485  0x14, 0xc0, 0x12, 0xa4, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7486  0x12, 0xaa, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x94,
-
7487  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xaa, 0x14, 0xae,
-
7488  0x12, 0xda, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xb0, 0x14, 0xae, 0x14, 0xb4,
-
7489  0x14, 0xba, 0x14, 0xc0, 0x12, 0xb6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7490  0x14, 0xc0, 0x12, 0xbc, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7491  0x12, 0xc2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xc8,
-
7492  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xce, 0x14, 0xae,
-
7493  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xd4, 0x14, 0xae, 0x14, 0xb4,
-
7494  0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda, 0x14, 0xba,
-
7495  0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7496  0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
-
7497  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
-
7498  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40, 0x14, 0xae, 0x12, 0xda,
-
7499  0x14, 0xba, 0x14, 0xc0, 0x12, 0xe0, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7500  0x14, 0xc0, 0x12, 0xe6, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7501  0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xec,
-
7502  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x88, 0x14, 0xae,
-
7503  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x16, 0x52, 0x14, 0xae, 0x14, 0xb4,
-
7504  0x14, 0xba, 0x14, 0xc0, 0x12, 0xf2, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7505  0x14, 0xc0, 0x12, 0xf8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7506  0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x13, 0x40,
-
7507  0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x12, 0xfe, 0x14, 0xae,
-
7508  0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1b, 0x0e, 0x14, 0xae, 0x14, 0xb4,
-
7509  0x14, 0xba, 0x14, 0xc0, 0x13, 0x04, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7510  0x14, 0xc0, 0x13, 0x0a, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7511  0x13, 0x10, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0, 0x1a, 0x2c,
-
7512  0x00, 0x00, 0x18, 0x38, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
-
7513  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50,
-
7514  0x00, 0x00, 0x00, 0x00, 0x13, 0xd0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7515  0x00, 0x00, 0x1b, 0x08, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7516  0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x13, 0x52,
-
7517  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00,
-
7518  0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x3e, 0x00, 0x00, 0x18, 0x50,
-
7519  0x00, 0x00, 0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00,
-
7520  0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
-
7521  0x13, 0xb2, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x16,
-
7522  0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x1c, 0x00, 0x00,
-
7523  0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0x22, 0x00, 0x00, 0x18, 0x2c,
-
7524  0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00, 0x13, 0x28, 0x00, 0x00,
-
7525  0x00, 0x00, 0x13, 0xb8, 0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00,
-
7526  0x13, 0xac, 0x00, 0x00, 0x13, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34,
-
7527  0x00, 0x00, 0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x13, 0xac, 0x00, 0x00,
-
7528  0x13, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x13, 0x34, 0x00, 0x00, 0x13, 0x3a,
-
7529  0x00, 0x00, 0x00, 0x00, 0x13, 0x40, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba,
-
7530  0x14, 0xc0, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c,
-
7531  0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1b, 0x08,
-
7532  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00,
-
7533  0x13, 0x46, 0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x15, 0xfe,
-
7534  0x00, 0x00, 0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7535  0x13, 0x4c, 0x1a, 0x2c, 0x00, 0x00, 0x16, 0x10, 0x00, 0x00, 0x13, 0x4c,
-
7536  0x1a, 0x2c, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xd0,
-
7537  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x0e, 0x13, 0xa0,
-
7538  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1b, 0x02, 0x13, 0xa0, 0x18, 0x50,
-
7539  0x13, 0xa6, 0x00, 0x00, 0x13, 0x52, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7540  0x00, 0x00, 0x13, 0xd6, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
-
7541  0x1a, 0x2c, 0x13, 0xa0, 0x17, 0xea, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xe8,
-
7542  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xee, 0x13, 0xa0,
-
7543  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x7c,
-
7544  0x13, 0x82, 0x00, 0x00, 0x13, 0x58, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82,
-
7545  0x00, 0x00, 0x13, 0x5e, 0x1b, 0x96, 0x13, 0x64, 0x13, 0x82, 0x00, 0x00,
-
7546  0x13, 0x6a, 0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x70,
-
7547  0x1b, 0x96, 0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x76, 0x1b, 0x96,
-
7548  0x13, 0x7c, 0x13, 0x82, 0x00, 0x00, 0x13, 0x88, 0x13, 0xa0, 0x18, 0x50,
-
7549  0x13, 0xa6, 0x00, 0x00, 0x1b, 0x3e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7550  0x00, 0x00, 0x13, 0xf4, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00,
-
7551  0x13, 0x8e, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x1a, 0x2c,
-
7552  0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0x94, 0x13, 0xa0,
-
7553  0x18, 0x50, 0x13, 0xa6, 0x00, 0x00, 0x13, 0xfa, 0x13, 0xa0, 0x18, 0x50,
-
7554  0x13, 0xa6, 0x00, 0x00, 0x13, 0x9a, 0x13, 0xa0, 0x18, 0x50, 0x13, 0xa6,
-
7555  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7556  0x13, 0xac, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb2,
-
7557  0x00, 0x00, 0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xb8, 0x00, 0x00,
-
7558  0x13, 0xca, 0x00, 0x00, 0x00, 0x00, 0x13, 0xbe, 0x00, 0x00, 0x13, 0xca,
-
7559  0x00, 0x00, 0x00, 0x00, 0x13, 0xc4, 0x00, 0x00, 0x13, 0xca, 0x00, 0x00,
-
7560  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7561  0x1a, 0x2c, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd0,
-
7562  0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x02, 0x00, 0x00,
-
7563  0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xd6, 0x00, 0x00, 0x14, 0x00,
-
7564  0x00, 0x00, 0x00, 0x00, 0x13, 0xdc, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
-
7565  0x00, 0x00, 0x1a, 0x2c, 0x00, 0x00, 0x13, 0xe2, 0x00, 0x00, 0x00, 0x00,
-
7566  0x13, 0xe8, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xee,
-
7567  0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xf4, 0x00, 0x00,
-
7568  0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0xfa, 0x00, 0x00, 0x14, 0x00,
-
7569  0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00,
-
7570  0x00, 0x00, 0x14, 0x06, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00,
-
7571  0x14, 0x0c, 0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x14, 0x12,
-
7572  0x00, 0x00, 0x14, 0x18, 0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00,
-
7573  0x14, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x14, 0x84, 0x00, 0x00, 0x18, 0x50,
-
7574  0x14, 0x9c, 0x00, 0x00, 0x14, 0x24, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7575  0x00, 0x00, 0x14, 0x2a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7576  0x14, 0x30, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x2a,
-
7577  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x30, 0x00, 0x00,
-
7578  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x36, 0x00, 0x00, 0x18, 0x50,
-
7579  0x14, 0x9c, 0x00, 0x00, 0x14, 0x3c, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7580  0x00, 0x00, 0x14, 0x48, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7581  0x14, 0x42, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x48,
-
7582  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x4e, 0x00, 0x00,
-
7583  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x54, 0x00, 0x00, 0x18, 0x50,
-
7584  0x14, 0x9c, 0x00, 0x00, 0x14, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7585  0x00, 0x00, 0x14, 0x60, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7586  0x14, 0x66, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x84,
-
7587  0x00, 0x00, 0x17, 0xea, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x6c, 0x00, 0x00,
-
7588  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x72, 0x00, 0x00, 0x18, 0x50,
-
7589  0x14, 0x9c, 0x00, 0x00, 0x14, 0x78, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c,
-
7590  0x00, 0x00, 0x14, 0x7e, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00,
-
7591  0x14, 0x84, 0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x8a,
-
7592  0x00, 0x00, 0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x90, 0x00, 0x00,
-
7593  0x18, 0x50, 0x14, 0x9c, 0x00, 0x00, 0x14, 0x96, 0x00, 0x00, 0x18, 0x50,
-
7594  0x14, 0x9c, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x14, 0xa2, 0x00, 0x00,
-
7595  0x00, 0x00, 0x14, 0xa8, 0x14, 0xae, 0x14, 0xb4, 0x14, 0xba, 0x14, 0xc0,
-
7596  0x14, 0xcc, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xd2,
-
7597  0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xc6, 0x00, 0x00,
-
7598  0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x14, 0xcc, 0x00, 0x00, 0x14, 0xd8,
-
7599  0x00, 0x00, 0x00, 0x00, 0x14, 0xd2, 0x00, 0x00, 0x14, 0xd8, 0x00, 0x00,
-
7600  0x00, 0x00, 0x14, 0xde, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00,
-
7601  0x14, 0xe4, 0x00, 0x00, 0x14, 0xea, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
-
7602  0x14, 0xf0, 0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0,
-
7603  0x18, 0x50, 0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x17, 0xea,
-
7604  0x00, 0x00, 0x14, 0xf6, 0x1a, 0x1a, 0x14, 0xf0, 0x16, 0x10, 0x00, 0x00,
-
7605  0x14, 0xf6, 0x19, 0xde, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7606  0x14, 0xfc, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08,
-
7607  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x02, 0x00, 0x00,
-
7608  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x08, 0x00, 0x00, 0x15, 0x0e,
-
7609  0x15, 0x62, 0x00, 0x00, 0x15, 0x1a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7610  0x00, 0x00, 0x15, 0x14, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7611  0x15, 0x1a, 0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x20,
-
7612  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x26, 0x00, 0x00,
-
7613  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x2c, 0x00, 0x00, 0x16, 0xca,
-
7614  0x15, 0x62, 0x00, 0x00, 0x15, 0x32, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7615  0x00, 0x00, 0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7616  0x15, 0x38, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde,
-
7617  0x00, 0x00, 0x16, 0xb2, 0x15, 0x62, 0x00, 0x00, 0x15, 0x3e, 0x00, 0x00,
-
7618  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x44, 0x00, 0x00, 0x16, 0xca,
-
7619  0x15, 0x62, 0x00, 0x00, 0x15, 0x4a, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62,
-
7620  0x00, 0x00, 0x15, 0x50, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00,
-
7621  0x15, 0x56, 0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x15, 0x5c,
-
7622  0x00, 0x00, 0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x19, 0xde, 0x00, 0x00,
-
7623  0x16, 0xca, 0x15, 0x62, 0x00, 0x00, 0x1a, 0xc0, 0x00, 0x00, 0x16, 0xca,
-
7624  0x15, 0x62, 0x00, 0x00, 0x15, 0x68, 0x00, 0x00, 0x15, 0x6e, 0x15, 0x74,
-
7625  0x00, 0x00, 0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
-
7626  0x15, 0x7a, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x80,
-
7627  0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x86, 0x00, 0x00,
-
7628  0x15, 0x9e, 0x00, 0x00, 0x00, 0x00, 0x15, 0x8c, 0x00, 0x00, 0x15, 0x9e,
-
7629  0x00, 0x00, 0x00, 0x00, 0x15, 0x92, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00,
-
7630  0x00, 0x00, 0x15, 0x98, 0x00, 0x00, 0x15, 0x9e, 0x00, 0x00, 0x00, 0x00,
-
7631  0x15, 0xb0, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0,
-
7632  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00,
-
7633  0x15, 0xa4, 0x00, 0x00, 0x15, 0xb6, 0x15, 0xaa, 0x00, 0x00, 0x18, 0x50,
-
7634  0x00, 0x00, 0x15, 0xb6, 0x15, 0xb0, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7635  0x15, 0xb6, 0x15, 0xc2, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7636  0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x1a, 0x1a,
-
7637  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x06, 0x00, 0x00,
-
7638  0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x17, 0x90, 0x00, 0x00, 0x18, 0x50,
-
7639  0x15, 0xce, 0x00, 0x00, 0x17, 0x0c, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
-
7640  0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7641  0x15, 0xbc, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
-
7642  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2, 0x00, 0x00,
-
7643  0x17, 0xea, 0x15, 0xce, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7644  0x15, 0xce, 0x00, 0x00, 0x17, 0x18, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce,
-
7645  0x00, 0x00, 0x17, 0x5a, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00,
-
7646  0x1a, 0xc6, 0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc2,
-
7647  0x00, 0x00, 0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xc8, 0x00, 0x00,
-
7648  0x18, 0x50, 0x15, 0xce, 0x00, 0x00, 0x15, 0xd4, 0x00, 0x00, 0x15, 0xe6,
-
7649  0x00, 0x00, 0x00, 0x00, 0x15, 0xda, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00,
-
7650  0x00, 0x00, 0x15, 0xe0, 0x00, 0x00, 0x15, 0xe6, 0x00, 0x00, 0x00, 0x00,
-
7651  0x15, 0xec, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x15, 0xec,
-
7652  0x00, 0x00, 0x15, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x15, 0xf2, 0x00, 0x00,
-
7653  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50,
-
7654  0x00, 0x00, 0x16, 0x88, 0x15, 0xf8, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00,
-
7655  0x16, 0x88, 0x16, 0x04, 0x16, 0x0a, 0x18, 0x50, 0x00, 0x00, 0x16, 0x88,
-
7656  0x16, 0x04, 0x16, 0x0a, 0x15, 0xfe, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04,
-
7657  0x16, 0x0a, 0x17, 0xea, 0x00, 0x00, 0x16, 0x88, 0x16, 0x04, 0x16, 0x0a,
-
7658  0x16, 0x10, 0x00, 0x00, 0x16, 0x88, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50,
-
7659  0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x17, 0xea, 0x00, 0x00,
-
7660  0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00,
-
7661  0x16, 0x16, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1c,
-
7662  0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
-
7663  0x16, 0x22, 0x00, 0x00, 0x00, 0x00, 0x16, 0x28, 0x00, 0x00, 0x17, 0xf6,
-
7664  0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x2e, 0x00, 0x00,
-
7665  0x00, 0x00, 0x17, 0xf0, 0x00, 0x00, 0x16, 0x34, 0x00, 0x00, 0x00, 0x00,
-
7666  0x16, 0x3a, 0x00, 0x00, 0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a,
-
7667  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x8a, 0x16, 0x7c,
-
7668  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x06, 0x16, 0x7c, 0x18, 0x50,
-
7669  0x16, 0x82, 0x16, 0x88, 0x17, 0x90, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7670  0x16, 0x88, 0x16, 0x40, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7671  0x17, 0x90, 0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x16, 0x46,
-
7672  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x4c, 0x16, 0x7c,
-
7673  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x52, 0x16, 0x7c, 0x18, 0x50,
-
7674  0x16, 0x82, 0x16, 0x88, 0x17, 0x0c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7675  0x16, 0x88, 0x17, 0x96, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7676  0x17, 0x60, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x58,
-
7677  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c,
-
7678  0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c, 0x18, 0x50,
-
7679  0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7680  0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7681  0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a,
-
7682  0x16, 0x7c, 0x17, 0xea, 0x16, 0x82, 0x16, 0x88, 0x17, 0x9c, 0x16, 0x7c,
-
7683  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x18, 0x16, 0x7c, 0x18, 0x50,
-
7684  0x16, 0x82, 0x16, 0x88, 0x17, 0x6c, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7685  0x16, 0x88, 0x17, 0x54, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7686  0x17, 0x5a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x1a, 0xc6,
-
7687  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x5e, 0x16, 0x7c,
-
7688  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x64, 0x16, 0x7c, 0x18, 0x50,
-
7689  0x16, 0x82, 0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7690  0x16, 0x88, 0x1a, 0x1a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88,
-
7691  0x17, 0x8a, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x17, 0x6c,
-
7692  0x16, 0x7c, 0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x6a, 0x16, 0x7c,
-
7693  0x18, 0x50, 0x16, 0x82, 0x16, 0x88, 0x16, 0x70, 0x16, 0x7c, 0x18, 0x50,
-
7694  0x16, 0x82, 0x16, 0x88, 0x16, 0x76, 0x16, 0x7c, 0x18, 0x50, 0x16, 0x82,
-
7695  0x16, 0x88, 0x16, 0x8e, 0x00, 0x00, 0x16, 0x94, 0x00, 0x00, 0x00, 0x00,
-
7696  0x16, 0xc4, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9a,
-
7697  0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xa0, 0x00, 0x00,
-
7698  0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xa6,
-
7699  0x00, 0x00, 0x00, 0x00, 0x16, 0xac, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00,
-
7700  0x00, 0x00, 0x16, 0xc4, 0x00, 0x00, 0x16, 0xb2, 0x00, 0x00, 0x00, 0x00,
-
7701  0x16, 0xb8, 0x00, 0x00, 0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4,
-
7702  0x00, 0x00, 0x16, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x16, 0xc4, 0x00, 0x00,
-
7703  0x16, 0xca, 0x00, 0x00, 0x00, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2,
-
7704  0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00,
-
7705  0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe2, 0x00, 0x00, 0x17, 0x00,
-
7706  0x16, 0xee, 0x16, 0xf4, 0x16, 0xd0, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee,
-
7707  0x16, 0xf4, 0x16, 0xd6, 0x00, 0x00, 0x17, 0x00, 0x16, 0xdc, 0x16, 0xf4,
-
7708  0x16, 0xe2, 0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xe8,
-
7709  0x00, 0x00, 0x17, 0x00, 0x16, 0xee, 0x16, 0xf4, 0x16, 0xfa, 0x00, 0x00,
-
7710  0x17, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
-
7711  0x17, 0x8a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x06,
-
7712  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x90, 0x17, 0x78,
-
7713  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x0c, 0x17, 0x78, 0x17, 0x7e,
-
7714  0x17, 0x84, 0x00, 0x00, 0x17, 0x96, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
-
7715  0x00, 0x00, 0x1a, 0x1a, 0x17, 0x78, 0x17, 0x12, 0x17, 0x84, 0x00, 0x00,
-
7716  0x17, 0x9c, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x18,
-
7717  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42,
-
7718  0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x1e, 0x17, 0x42, 0x17, 0x48,
-
7719  0x17, 0x4e, 0x00, 0x00, 0x17, 0x24, 0x17, 0x42, 0x17, 0x2a, 0x17, 0x4e,
-
7720  0x00, 0x00, 0x17, 0x30, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00,
-
7721  0x17, 0x36, 0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x3c,
-
7722  0x17, 0x42, 0x17, 0x48, 0x17, 0x4e, 0x00, 0x00, 0x17, 0x54, 0x17, 0x78,
-
7723  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x5a, 0x17, 0x78, 0x17, 0x7e,
-
7724  0x17, 0x84, 0x00, 0x00, 0x1a, 0xc6, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84,
-
7725  0x00, 0x00, 0x17, 0x60, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00,
-
7726  0x1a, 0x1a, 0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x66,
-
7727  0x17, 0x78, 0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x6c, 0x17, 0x78,
-
7728  0x17, 0x7e, 0x17, 0x84, 0x00, 0x00, 0x17, 0x72, 0x17, 0x78, 0x17, 0x7e,
-
7729  0x17, 0x84, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7730  0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7731  0x17, 0x8a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x90,
-
7732  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x96, 0x00, 0x00,
-
7733  0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x17, 0x9c, 0x00, 0x00, 0x18, 0x50,
-
7734  0x00, 0x00, 0x00, 0x00, 0x1a, 0x1a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7735  0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
-
7736  0x17, 0xa2, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xa8,
-
7737  0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x90, 0x00, 0x00,
-
7738  0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xae, 0x00, 0x00, 0x17, 0xd8,
-
7739  0x00, 0x00, 0x00, 0x00, 0x17, 0xb4, 0x00, 0x00, 0x17, 0xba, 0x00, 0x00,
-
7740  0x00, 0x00, 0x17, 0xc0, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00,
-
7741  0x17, 0xc6, 0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xcc,
-
7742  0x00, 0x00, 0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x17, 0xd2, 0x00, 0x00,
-
7743  0x17, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba, 0x00, 0x00, 0x18, 0x50,
-
7744  0x00, 0x00, 0x00, 0x00, 0x17, 0xde, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00,
-
7745  0x00, 0x00, 0x17, 0xe4, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7746  0x19, 0xba, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x19, 0xba,
-
7747  0x00, 0x00, 0x17, 0xea, 0x00, 0x00, 0x00, 0x00, 0x17, 0xf0, 0x00, 0x00,
-
7748  0x17, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e,
-
7749  0x00, 0x00, 0x00, 0x00, 0x17, 0xfc, 0x00, 0x00, 0x18, 0x02, 0x00, 0x00,
-
7750  0x00, 0x00, 0x18, 0x08, 0x00, 0x00, 0x18, 0x0e, 0x00, 0x00, 0x00, 0x00,
-
7751  0x18, 0x14, 0x18, 0x1a, 0x18, 0x20, 0x00, 0x00, 0x18, 0x26, 0x1a, 0x2c,
-
7752  0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00,
-
7753  0x18, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x32, 0x00, 0x00, 0x18, 0x38,
-
7754  0x00, 0x00, 0x00, 0x00, 0x18, 0x3e, 0x00, 0x00, 0x18, 0x44, 0x00, 0x00,
-
7755  0x00, 0x00, 0x18, 0x4a, 0x00, 0x00, 0x18, 0x50, 0x00, 0x00, 0x00, 0x00,
-
7756  0x18, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x5c,
-
7757  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-
7758  0x18, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x18, 0x03, 0x60,
-
7759  0x00, 0x01, 0x00, 0xdd, 0x03, 0xbe, 0x00, 0x01, 0x00, 0xf8, 0x03, 0xa0,
-
7760  0x00, 0x01, 0x00, 0xf0, 0x03, 0x62, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1e,
-
7761  0x00, 0x01, 0x00, 0xfa, 0x03, 0x1b, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x93,
-
7762  0x00, 0x01, 0x00, 0xfa, 0x03, 0x98, 0x00, 0x01, 0x01, 0x93, 0x00, 0x00,
-
7763  0x00, 0x01, 0x01, 0x0e, 0x03, 0x09, 0x00, 0x01, 0x01, 0x0e, 0x02, 0xe8,
-
7764  0x00, 0x01, 0x01, 0x16, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xaa, 0x02, 0xda,
-
7765  0x00, 0x01, 0x01, 0x0d, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xdc, 0x03, 0x09,
-
7766  0x00, 0x01, 0x00, 0xf8, 0xff, 0x51, 0x00, 0x01, 0x00, 0xdc, 0x02, 0x6f,
-
7767  0x00, 0x01, 0x01, 0x05, 0x02, 0xe8, 0x00, 0x01, 0x01, 0x05, 0x03, 0x09,
-
7768  0x00, 0x01, 0x01, 0x05, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x05, 0x03, 0x1e,
-
7769  0x00, 0x01, 0x01, 0xa1, 0x02, 0xda, 0x00, 0x01, 0x01, 0x05, 0x03, 0xa8,
-
7770  0x00, 0x01, 0x01, 0x05, 0x03, 0x1b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x93,
-
7771  0x00, 0x01, 0x00, 0xf5, 0x03, 0x20, 0x00, 0x01, 0x01, 0x04, 0x03, 0x02,
-
7772  0x00, 0x01, 0x01, 0x04, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf2, 0x03, 0x1c,
-
7773  0x00, 0x01, 0x01, 0x0d, 0x03, 0x4b, 0x00, 0x01, 0x01, 0x05, 0x03, 0x2c,
-
7774  0x00, 0x01, 0x01, 0x05, 0x03, 0x07, 0x00, 0x01, 0x01, 0x05, 0x03, 0x80,
-
7775  0x00, 0x01, 0x00, 0xf2, 0x03, 0xb4, 0x00, 0x01, 0x01, 0x05, 0x02, 0x6f,
-
7776  0x00, 0x01, 0x01, 0x05, 0x03, 0x0d, 0x00, 0x01, 0x01, 0xb5, 0x00, 0x08,
-
7777  0x00, 0x01, 0x01, 0x11, 0x03, 0x0e, 0x00, 0x01, 0x01, 0x11, 0x03, 0x09,
-
7778  0x00, 0x01, 0x01, 0xac, 0x02, 0xda, 0x00, 0x01, 0x01, 0x11, 0x02, 0x6f,
-
7779  0x00, 0x01, 0x01, 0x0a, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x10, 0x02, 0xe4,
-
7780  0x00, 0x01, 0x01, 0x11, 0x03, 0x07, 0x00, 0x01, 0x01, 0x0a, 0x00, 0x00,
-
7781  0x00, 0x01, 0x00, 0xf1, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x0e,
-
7782  0x00, 0x01, 0x01, 0x8d, 0x02, 0xda, 0x00, 0x01, 0x00, 0xe1, 0x03, 0x20,
-
7783  0x00, 0x01, 0x00, 0xf0, 0x03, 0x02, 0x00, 0x01, 0x00, 0xf0, 0x03, 0x7b,
-
7784  0x00, 0x01, 0x00, 0xf0, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xde, 0x03, 0x1c,
-
7785  0x00, 0x01, 0x00, 0xf9, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xf1, 0x03, 0x2c,
-
7786  0x00, 0x01, 0x00, 0xf1, 0x03, 0x07, 0x00, 0x01, 0x00, 0xf1, 0x02, 0x6f,
-
7787  0x00, 0x01, 0x01, 0x62, 0x00, 0x00, 0x00, 0x01, 0x01, 0x46, 0x02, 0x6f,
-
7788  0x00, 0x01, 0x01, 0xe2, 0x02, 0xda, 0x00, 0x01, 0x00, 0xef, 0x00, 0x00,
-
7789  0x00, 0x01, 0x00, 0xd2, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xd2, 0x02, 0x6f,
-
7790  0x00, 0x01, 0x00, 0xbb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0x6f, 0x01, 0x38,
-
7791  0x00, 0x01, 0x00, 0xfa, 0x03, 0x0f, 0x00, 0x01, 0x01, 0x96, 0x02, 0xdb,
-
7792  0x00, 0x01, 0x00, 0xfa, 0x03, 0xa9, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x1c,
-
7793  0x00, 0x01, 0x00, 0xfa, 0x03, 0x94, 0x00, 0x01, 0x00, 0xea, 0x03, 0x21,
-
7794  0x00, 0x01, 0x00, 0xf9, 0x03, 0x03, 0x00, 0x01, 0x00, 0xf9, 0x03, 0x9c,
-
7795  0x00, 0x01, 0x00, 0xfa, 0x03, 0x7e, 0x00, 0x01, 0x00, 0xfb, 0xff, 0x51,
-
7796  0x00, 0x01, 0x00, 0xe7, 0x03, 0x1d, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4c,
-
7797  0x00, 0x01, 0x00, 0xfa, 0x03, 0x2e, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x81,
-
7798  0x00, 0x01, 0x00, 0xe7, 0x03, 0xb5, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe9,
-
7799  0x00, 0x01, 0x00, 0xfa, 0x03, 0x87, 0x00, 0x01, 0x00, 0xf9, 0x03, 0xa2,
-
7800  0x00, 0x01, 0x00, 0xf5, 0x03, 0x9c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x5d,
-
7801  0x00, 0x01, 0x01, 0x03, 0x03, 0x09, 0x00, 0x01, 0x01, 0x02, 0x03, 0x7e,
-
7802  0x00, 0x01, 0x00, 0xf9, 0xff, 0x4c, 0x00, 0x01, 0x00, 0xf9, 0xfe, 0xed,
-
7803  0x00, 0x01, 0x01, 0x02, 0x02, 0xe4, 0x00, 0x01, 0x00, 0xf9, 0xff, 0x51,
-
7804  0x00, 0x01, 0x00, 0xfa, 0x02, 0x70, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x4c,
-
7805  0x00, 0x01, 0x00, 0xf4, 0x01, 0x38, 0x00, 0x01, 0x00, 0xea, 0x03, 0x20,
-
7806  0x00, 0x01, 0x00, 0xe0, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xe0, 0x02, 0x6f,
-
7807  0x00, 0x01, 0x00, 0xe0, 0xff, 0x51, 0x00, 0x01, 0x00, 0xcd, 0x03, 0x1c,
-
7808  0x00, 0x01, 0x00, 0xe8, 0x03, 0x4b, 0x00, 0x01, 0x00, 0xe0, 0x03, 0x0d,
-
7809  0x00, 0x01, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x01, 0x01, 0xa0, 0x00, 0x0f,
-
7810  0x00, 0x01, 0x00, 0xfa, 0x03, 0x2d, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x9b,
-
7811  0x00, 0x01, 0x00, 0xfa, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x86,
-
7812  0x00, 0x01, 0x01, 0xc8, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x27, 0x00, 0x0a,
-
7813  0x00, 0x01, 0x01, 0x03, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe8,
-
7814  0x00, 0x01, 0x01, 0x9f, 0x02, 0xda, 0x00, 0x01, 0x01, 0x01, 0x03, 0x02,
-
7815  0x00, 0x01, 0x00, 0xf0, 0x03, 0x1c, 0x00, 0x01, 0x00, 0xfd, 0x00, 0x00,
-
7816  0x00, 0x01, 0x00, 0xfa, 0x02, 0xe8, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x02,
-
7817  0x00, 0x01, 0x00, 0xf9, 0x02, 0xe4, 0x00, 0x01, 0x01, 0x03, 0xff, 0x51,
-
7818  0x00, 0x01, 0x00, 0xe7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x02, 0x03, 0x4b,
-
7819  0x00, 0x01, 0x00, 0xfa, 0x03, 0x07, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0d,
-
7820  0x00, 0x01, 0x01, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0xe8,
-
7821  0x00, 0x01, 0x01, 0x04, 0x03, 0x09, 0x00, 0x01, 0x01, 0x03, 0x02, 0xe4,
-
7822  0x00, 0x01, 0x01, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0d, 0xff, 0x51,
-
7823  0x00, 0x01, 0x01, 0x07, 0x02, 0x6a, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x8b,
-
7824  0x00, 0x01, 0x00, 0xf8, 0x03, 0x23, 0x00, 0x01, 0x00, 0xf6, 0x03, 0x5b,
-
7825  0x00, 0x01, 0x00, 0xf8, 0x03, 0x0b, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb3,
-
7826  0x00, 0x01, 0x01, 0x8e, 0x02, 0x37, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xd2,
-
7827  0x00, 0x01, 0x00, 0xf8, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xf8, 0x03, 0x08,
-
7828  0x00, 0x01, 0x00, 0xe8, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x60,
-
7829  0x00, 0x01, 0x00, 0xd2, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x00, 0x02, 0xa7,
-
7830  0x00, 0x01, 0x00, 0xf8, 0x02, 0x88, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x63,
-
7831  0x00, 0x01, 0x00, 0xf8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf8, 0x02, 0xb9,
-
7832  0x00, 0x01, 0x01, 0x07, 0x03, 0x58, 0x00, 0x01, 0x00, 0xf8, 0x02, 0x7f,
-
7833  0x00, 0x01, 0x01, 0x7d, 0x00, 0x00, 0x00, 0x01, 0x00, 0xfe, 0x00, 0x00,
-
7834  0x00, 0x01, 0x00, 0xfd, 0x01, 0x3b, 0x00, 0x01, 0x01, 0x84, 0x02, 0x46,
-
7835  0x00, 0x01, 0x00, 0xfb, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1d, 0x00, 0x0b,
-
7836  0x00, 0x01, 0x00, 0xfa, 0x01, 0x38, 0x00, 0x01, 0x01, 0x1b, 0x02, 0x5c,
-
7837  0x00, 0x01, 0x01, 0x1b, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x2a, 0x02, 0x6a,
-
7838  0x00, 0x01, 0x01, 0x1b, 0xff, 0x4c, 0x00, 0x01, 0x01, 0xb0, 0x02, 0x37,
-
7839  0x00, 0x01, 0x01, 0x1b, 0x02, 0x60, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x00,
-
7840  0x00, 0x01, 0x01, 0xd6, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x68, 0x02, 0x28,
-
7841  0x00, 0x01, 0x01, 0x13, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x04, 0x02, 0x5c,
-
7842  0x00, 0x01, 0x01, 0x04, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x14, 0xff, 0x4c,
-
7843  0x00, 0x01, 0x01, 0x04, 0x02, 0xb3, 0x00, 0x01, 0x01, 0x99, 0x02, 0x37,
-
7844  0x00, 0x01, 0x01, 0x04, 0x02, 0xd2, 0x00, 0x01, 0x01, 0x04, 0x03, 0x2c,
-
7845  0x00, 0x01, 0x01, 0x04, 0x03, 0x08, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7c,
-
7846  0x00, 0x01, 0x01, 0x04, 0x02, 0x60, 0x00, 0x01, 0x00, 0xde, 0x02, 0xa3,
-
7847  0x00, 0x01, 0x01, 0x0b, 0x02, 0xa7, 0x00, 0x01, 0x01, 0x04, 0x02, 0x88,
-
7848  0x00, 0x01, 0x01, 0x04, 0x02, 0x63, 0x00, 0x01, 0x01, 0x13, 0x03, 0x02,
-
7849  0x00, 0x01, 0x00, 0xde, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x3b, 0x00, 0x09,
-
7850  0x00, 0x01, 0x00, 0xe0, 0x01, 0xcc, 0x00, 0x01, 0x00, 0xf0, 0x00, 0x01,
-
7851  0x00, 0x01, 0x00, 0xb9, 0x01, 0xc3, 0x00, 0x01, 0x00, 0xe4, 0x01, 0xcb,
-
7852  0x00, 0x01, 0x00, 0xe4, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x79, 0x02, 0x37,
-
7853  0x00, 0x01, 0x00, 0xe4, 0x03, 0x2a, 0x00, 0x01, 0x00, 0xe4, 0x02, 0x60,
-
7854  0x00, 0x01, 0x00, 0xe4, 0x02, 0x63, 0x00, 0x01, 0x00, 0xf0, 0xff, 0x5d,
-
7855  0x00, 0x01, 0x00, 0xfa, 0xff, 0x41, 0x00, 0x01, 0x01, 0x12, 0x03, 0x06,
-
7856  0x00, 0x01, 0x00, 0x76, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x84, 0x02, 0x26,
-
7857  0x00, 0x01, 0x01, 0x0a, 0x02, 0xff, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x60,
-
7858  0x00, 0x01, 0x00, 0xfa, 0x02, 0x61, 0x00, 0x01, 0x01, 0x59, 0x00, 0x00,
-
7859  0x00, 0x01, 0x01, 0x44, 0x02, 0x60, 0x00, 0x01, 0x01, 0x44, 0x01, 0xcb,
-
7860  0x00, 0x01, 0x01, 0xda, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x42,
-
7861  0x00, 0x01, 0x00, 0x69, 0x02, 0x9b, 0x00, 0x01, 0x00, 0x6b, 0x01, 0xcb,
-
7862  0x00, 0x01, 0x00, 0xfa, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0xfe, 0xed,
-
7863  0x00, 0x01, 0x00, 0xfa, 0x02, 0x9b, 0x00, 0x01, 0x01, 0xe0, 0x01, 0xcb,
-
7864  0x00, 0x01, 0x00, 0xfa, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x17, 0x02, 0x6a,
-
7865  0x00, 0x01, 0x01, 0x08, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x04, 0xfe, 0xed,
-
7866  0x00, 0x01, 0x01, 0x08, 0x02, 0x60, 0x00, 0x01, 0x01, 0x04, 0xff, 0x51,
-
7867  0x00, 0x01, 0x01, 0x04, 0xff, 0x5a, 0x00, 0x01, 0x01, 0x08, 0x02, 0x7f,
-
7868  0x00, 0x01, 0x00, 0xfa, 0x02, 0xb3, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xd2,
-
7869  0x00, 0x01, 0x00, 0xfb, 0x03, 0x2c, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x08,
-
7870  0x00, 0x01, 0x00, 0xfa, 0x02, 0xf8, 0x00, 0x01, 0x01, 0x09, 0x03, 0x02,
-
7871  0x00, 0x01, 0x00, 0xd4, 0x03, 0x3c, 0x00, 0x01, 0x01, 0x0a, 0x03, 0x1e,
-
7872  0x00, 0x01, 0x00, 0xfb, 0x03, 0x14, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x17,
-
7873  0x00, 0x01, 0x01, 0x68, 0x01, 0xb6, 0x00, 0x01, 0x01, 0x1f, 0x00, 0x0f,
-
7874  0x00, 0x01, 0x00, 0xfa, 0x00, 0xe6, 0x00, 0x01, 0x01, 0x0e, 0x01, 0xcb,
-
7875  0x00, 0x01, 0x01, 0x0e, 0x00, 0x00, 0x00, 0x01, 0x01, 0x2f, 0x02, 0x6a,
-
7876  0x00, 0x01, 0x01, 0x20, 0x02, 0x5c, 0x00, 0x01, 0x01, 0x14, 0xfe, 0xed,
-
7877  0x00, 0x01, 0x01, 0x10, 0x02, 0x7c, 0x00, 0x01, 0x01, 0x14, 0xff, 0x51,
-
7878  0x00, 0x01, 0x01, 0x20, 0x02, 0x88, 0x00, 0x01, 0x01, 0x14, 0xff, 0x5a,
-
7879  0x00, 0x01, 0x01, 0x20, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x14, 0x00, 0x00,
-
7880  0x00, 0x01, 0x01, 0x02, 0xff, 0x4c, 0x00, 0x01, 0x01, 0x02, 0xfe, 0xed,
-
7881  0x00, 0x01, 0x00, 0xed, 0x02, 0xdd, 0x00, 0x01, 0x01, 0x02, 0x00, 0x00,
-
7882  0x00, 0x01, 0x01, 0x02, 0xff, 0x51, 0x00, 0x01, 0x00, 0xec, 0x02, 0x48,
-
7883  0x00, 0x01, 0x01, 0x34, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x02, 0xff, 0x5a,
-
7884  0x00, 0x01, 0x00, 0xd4, 0x01, 0x34, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x8b,
-
7885  0x00, 0x01, 0x00, 0xea, 0x02, 0x7c, 0x00, 0x01, 0x00, 0xe5, 0xff, 0x51,
-
7886  0x00, 0x01, 0x01, 0x02, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xf7, 0x02, 0x6a,
-
7887  0x00, 0x01, 0x00, 0xe8, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xd6, 0xff, 0x51,
-
7888  0x00, 0x01, 0x00, 0xc2, 0x02, 0xa3, 0x00, 0x01, 0x00, 0xf0, 0x02, 0xa7,
-
7889  0x00, 0x01, 0x00, 0xe0, 0x02, 0x62, 0x00, 0x01, 0x01, 0x7c, 0x01, 0xcb,
-
7890  0x00, 0x01, 0x00, 0xd6, 0x00, 0x00, 0x00, 0x01, 0x01, 0x53, 0x00, 0x00,
-
7891  0x00, 0x01, 0x01, 0x1a, 0x02, 0xbe, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x88,
-
7892  0x00, 0x01, 0x00, 0xfb, 0x02, 0xf8, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xb9,
-
7893  0x00, 0x01, 0x00, 0xfa, 0x02, 0x7f, 0x00, 0x01, 0x01, 0x09, 0x03, 0x1e,
-
7894  0x00, 0x01, 0x01, 0xb2, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xe5, 0x00, 0x00,
-
7895  0x00, 0x01, 0x01, 0x74, 0x00, 0x00, 0x00, 0x01, 0x01, 0x09, 0x02, 0x6a,
-
7896  0x00, 0x01, 0x01, 0x90, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x60,
-
7897  0x00, 0x01, 0x00, 0xd4, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x0e, 0x02, 0x6a,
-
7898  0x00, 0x01, 0x01, 0x94, 0x02, 0x37, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x60,
-
7899  0x00, 0x01, 0x00, 0xfe, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x77, 0xff, 0x51,
-
7900  0x00, 0x01, 0x00, 0xd8, 0x02, 0xa3, 0x00, 0x01, 0x01, 0x06, 0x02, 0xa7,
-
7901  0x00, 0x01, 0x00, 0xfe, 0x02, 0x63, 0x00, 0x01, 0x00, 0xff, 0x02, 0x7f,
-
7902  0x00, 0x01, 0x01, 0x77, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6a,
-
7903  0x00, 0x01, 0x00, 0xfb, 0x02, 0x5c, 0x00, 0x01, 0x00, 0xfa, 0xff, 0x51,
-
7904  0x00, 0x01, 0x01, 0x08, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x04, 0x00, 0x00,
-
7905  0x00, 0x01, 0x01, 0x1b, 0x01, 0xf6, 0x00, 0x01, 0x01, 0x1b, 0x00, 0x2b,
-
7906  0x00, 0x01, 0x01, 0x0e, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x16, 0x00, 0x00,
-
7907  0x00, 0x01, 0x00, 0xe9, 0x01, 0xda, 0x00, 0x01, 0x01, 0x9a, 0x01, 0xda,
-
7908  0x00, 0x01, 0x00, 0xe9, 0x00, 0x6d, 0x00, 0x01, 0x01, 0x42, 0x02, 0x24,
-
7909  0x00, 0x01, 0x00, 0xf9, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf9, 0x02, 0x6f,
-
7910  0x00, 0x01, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x01, 0x01, 0x04, 0x02, 0x6f,
-
7911  0x00, 0x01, 0x00, 0x87, 0x00, 0x00, 0x00, 0x01, 0x00, 0xff, 0x02, 0x6f,
-
7912  0x00, 0x01, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf4, 0x02, 0x7b,
-
7913  0x00, 0x01, 0x00, 0xe5, 0x02, 0x6a, 0x00, 0x01, 0x00, 0x51, 0x02, 0xce,
-
7914  0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01,
-
7915  0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x1c, 0x00, 0x54, 0x00, 0x01,
-
7916  0x00, 0x06, 0x03, 0x8a, 0x03, 0x8b, 0x03, 0x8c, 0x03, 0x8d, 0x03, 0x8f,
-
7917  0x03, 0x90, 0x00, 0x06, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x20,
-
7918  0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x32,
-
7919  0x00, 0x00, 0x00, 0x32, 0x00, 0x01, 0x00, 0xf1, 0x00, 0x00, 0x00, 0x01,
-
7920  0x00, 0xfc, 0x00, 0x00, 0x00, 0x01, 0x00, 0xed, 0x00, 0x00, 0x00, 0x01,
-
7921  0x01, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0xf8, 0x00, 0x00, 0x00, 0x06,
-
7922  0x00, 0x0e, 0x00, 0x14, 0x00, 0x1a, 0x00, 0x20, 0x00, 0x26, 0x00, 0x2c,
-
7923  0x00, 0x01, 0x00, 0xf1, 0xff, 0x51, 0x00, 0x01, 0x00, 0xfc, 0xff, 0x5a,
-
7924  0x00, 0x01, 0x00, 0xed, 0xfe, 0xed, 0x00, 0x01, 0x01, 0x0f, 0xff, 0x4c,
-
7925  0x00, 0x01, 0x00, 0xf8, 0xff, 0x41, 0x00, 0x01, 0x00, 0xf8, 0xff, 0x5a,
-
7926  0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x01,
-
7927  0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01, 0x00, 0x22, 0x01, 0x3c, 0x00, 0x02,
-
7928  0x00, 0x03, 0x03, 0x7a, 0x03, 0x88, 0x00, 0x00, 0x03, 0xa0, 0x03, 0xa9,
-
7929  0x00, 0x0f, 0x03, 0xb5, 0x03, 0xc0, 0x00, 0x19, 0x00, 0x25, 0x00, 0x00,
-
7930  0x00, 0x96, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00,
-
7931  0x00, 0xa8, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00,
-
7932  0x00, 0xf0, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
-
7933  0x00, 0xba, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00,
-
7934  0x00, 0xc6, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00,
-
7935  0x01, 0x14, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00,
-
7936  0x00, 0xd8, 0x00, 0x00, 0x00, 0xde, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00,
-
7937  0x01, 0x08, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00,
-
7938  0x01, 0x02, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00,
-
7939  0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00,
-
7940  0x00, 0xf0, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00,
-
7941  0x01, 0x02, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x0e, 0x00, 0x00,
-
7942  0x01, 0x14, 0x00, 0x01, 0x00, 0xfb, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xff,
-
7943  0x01, 0xcb, 0x00, 0x01, 0x01, 0x05, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x09,
-
7944  0x01, 0xcb, 0x00, 0x01, 0x00, 0xf3, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xf9,
-
7945  0x01, 0xcc, 0x00, 0x01, 0x01, 0x04, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xed,
-
7946  0x01, 0xcc, 0x00, 0x01, 0x01, 0x0b, 0x01, 0xcb, 0x00, 0x01, 0x00, 0xec,
-
7947  0x01, 0xd3, 0x00, 0x01, 0x01, 0x0a, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x0d,
-
7948  0x02, 0x6f, 0x00, 0x01, 0x01, 0x20, 0x02, 0x6f, 0x00, 0x01, 0x01, 0x02,
-
7949  0x01, 0xcb, 0x00, 0x01, 0x01, 0x06, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x00,
-
7950  0x01, 0xcb, 0x00, 0x01, 0x00, 0xfa, 0x01, 0xcb, 0x00, 0x01, 0x01, 0x01,
-
7951  0x01, 0xcb, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfa,
-
7952  0x02, 0x6f, 0x00, 0x01, 0x00, 0xfe, 0x02, 0x6f, 0x00, 0x01, 0x00, 0xfb,
-
7953  0x02, 0x6f, 0x00, 0x25, 0x00, 0x4c, 0x00, 0x52, 0x00, 0x58, 0x00, 0x5e,
-
7954  0x00, 0x64, 0x00, 0x6a, 0x00, 0x70, 0x00, 0x76, 0x00, 0x7c, 0x00, 0x82,
-
7955  0x00, 0x88, 0x00, 0x8e, 0x00, 0x94, 0x00, 0x9a, 0x00, 0xa0, 0x00, 0xa6,
-
7956  0x00, 0xac, 0x00, 0xb2, 0x00, 0xb8, 0x00, 0xbe, 0x00, 0xc4, 0x00, 0xca,
-
7957  0x00, 0xd0, 0x00, 0xd6, 0x00, 0xdc, 0x00, 0xe2, 0x00, 0xe2, 0x00, 0xe8,
-
7958  0x00, 0xee, 0x00, 0xf4, 0x00, 0xfa, 0x01, 0x00, 0x01, 0x06, 0x01, 0x0c,
-
7959  0x01, 0x12, 0x01, 0x18, 0x01, 0x1e, 0x00, 0x01, 0x00, 0xfc, 0x02, 0x60,
-
7960  0x00, 0x01, 0x00, 0xff, 0x02, 0x60, 0x00, 0x01, 0x00, 0xdf, 0x02, 0xa3,
-
7961  0x00, 0x01, 0x01, 0x18, 0x02, 0x6a, 0x00, 0x01, 0x01, 0x13, 0x02, 0xbe,
-
7962  0x00, 0x01, 0x01, 0x8f, 0x02, 0x38, 0x00, 0x01, 0x01, 0x00, 0x02, 0x5c,
-
7963  0x00, 0x01, 0x01, 0x02, 0x02, 0x8b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb9,
-
7964  0x00, 0x01, 0x01, 0x04, 0x02, 0x7f, 0x00, 0x01, 0x00, 0xfa, 0x02, 0x63,
-
7965  0x00, 0x01, 0x00, 0xf5, 0x02, 0xa7, 0x00, 0x01, 0x00, 0xfb, 0x02, 0x7c,
-
7966  0x00, 0x01, 0x01, 0x00, 0x02, 0x88, 0x00, 0x01, 0x00, 0xec, 0x03, 0x32,
-
7967  0x00, 0x01, 0x00, 0xf9, 0x03, 0x02, 0x00, 0x01, 0x00, 0xfa, 0x02, 0xe4,
-
7968  0x00, 0x01, 0x00, 0xf7, 0x03, 0x1c, 0x00, 0x01, 0x01, 0x0d, 0x02, 0xe8,
-
7969  0x00, 0x01, 0x01, 0x20, 0x03, 0x2d, 0x00, 0x01, 0x01, 0x96, 0x02, 0xda,
-
7970  0x00, 0x01, 0x00, 0xfa, 0x03, 0x09, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x0e,
-
7971  0x00, 0x01, 0x00, 0xfb, 0x03, 0x1f, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x0d,
-
7972  0x00, 0x01, 0x01, 0x02, 0x03, 0x23, 0x00, 0x01, 0x01, 0x00, 0x03, 0x5b,
-
7973  0x00, 0x01, 0x01, 0x06, 0x03, 0x0b, 0x00, 0x01, 0x01, 0x00, 0x02, 0xb3,
-
7974  0x00, 0x01, 0x01, 0x00, 0x02, 0xd2, 0x00, 0x01, 0x00, 0xfa, 0x03, 0x2c,
-
7975  0x00, 0x01, 0x01, 0x01, 0x03, 0x08, 0x00, 0x01, 0x00, 0xfc, 0x03, 0x1e,
-
7976  0x00, 0x01, 0x00, 0xfa, 0x03, 0xa8, 0x00, 0x01, 0x00, 0xfe, 0x03, 0x1b,
-
7977  0x00, 0x01, 0x00, 0xfb, 0x03, 0x93, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01,
-
7978  0x00, 0x0a, 0x00, 0x02, 0x00, 0x01, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x01,
-
7979  0x00, 0x14, 0x00, 0x1e, 0x00, 0x01, 0x00, 0x02, 0x03, 0x89, 0x03, 0xaa,
-
7980  0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x02,
-
7981  0x00, 0x06, 0x00, 0x0c, 0x00, 0x01, 0x01, 0x88, 0x01, 0xcc, 0x00, 0x01,
-
7982  0x01, 0x9a, 0x02, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x01, 0xc8,
-
7983  0x02, 0xf8, 0x00, 0x02, 0x44, 0x46, 0x4c, 0x54, 0x00, 0x0e, 0x6c, 0x61,
-
7984  0x74, 0x6e, 0x00, 0x36, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
-
7985  0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
-
7986  0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
-
7987  0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x34, 0x00, 0x08,
-
7988  0x41, 0x5a, 0x45, 0x20, 0x00, 0x58, 0x43, 0x41, 0x54, 0x20, 0x00, 0x7e,
-
7989  0x43, 0x52, 0x54, 0x20, 0x00, 0xa4, 0x4b, 0x41, 0x5a, 0x20, 0x00, 0xca,
-
7990  0x4d, 0x4f, 0x4c, 0x20, 0x00, 0xf0, 0x52, 0x4f, 0x4d, 0x20, 0x01, 0x16,
-
7991  0x54, 0x41, 0x54, 0x20, 0x01, 0x3c, 0x54, 0x52, 0x4b, 0x20, 0x01, 0x62,
-
7992  0x00, 0x00, 0xff, 0xff, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03,
-
7993  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
-
7994  0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
-
7995  0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
-
7996  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x10,
-
7997  0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
-
7998  0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
-
7999  0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x08, 0x00, 0x0f,
-
8000  0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
-
8001  0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00,
-
8002  0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x09,
-
8003  0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14,
-
8004  0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10,
-
8005  0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06,
-
8006  0x00, 0x0a, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13,
-
8007  0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xff, 0xff,
-
8008  0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05,
-
8009  0x00, 0x06, 0x00, 0x0b, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12,
-
8010  0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00,
-
8011  0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04,
-
8012  0x00, 0x05, 0x00, 0x06, 0x00, 0x0c, 0x00, 0x0f, 0x00, 0x10, 0x00, 0x11,
-
8013  0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17,
-
8014  0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02,
-
8015  0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0d, 0x00, 0x0f, 0x00, 0x10,
-
8016  0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16,
-
8017  0x00, 0x17, 0x00, 0x00, 0xff, 0xff, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01,
-
8018  0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x0f,
-
8019  0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15,
-
8020  0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x61, 0x61, 0x6c, 0x74, 0x00, 0x92,
-
8021  0x63, 0x61, 0x73, 0x65, 0x00, 0x9a, 0x63, 0x63, 0x6d, 0x70, 0x00, 0xa0,
-
8022  0x63, 0x63, 0x6d, 0x70, 0x00, 0xa8, 0x64, 0x6c, 0x69, 0x67, 0x00, 0xb2,
-
8023  0x64, 0x6e, 0x6f, 0x6d, 0x00, 0xb8, 0x66, 0x72, 0x61, 0x63, 0x00, 0xbe,
-
8024  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xc8, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xce,
-
8025  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xd4, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xda,
-
8026  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe0, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xe6,
-
8027  0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xec, 0x6c, 0x6f, 0x63, 0x6c, 0x00, 0xf2,
-
8028  0x6e, 0x75, 0x6d, 0x72, 0x00, 0xf8, 0x6f, 0x72, 0x64, 0x6e, 0x00, 0xfe,
-
8029  0x73, 0x61, 0x6c, 0x74, 0x01, 0x06, 0x73, 0x73, 0x30, 0x31, 0x01, 0x0c,
-
8030  0x73, 0x73, 0x30, 0x32, 0x01, 0x12, 0x73, 0x73, 0x30, 0x33, 0x01, 0x18,
-
8031  0x73, 0x75, 0x62, 0x73, 0x01, 0x1e, 0x73, 0x75, 0x70, 0x73, 0x01, 0x24,
-
8032  0x7a, 0x65, 0x72, 0x6f, 0x01, 0x2a, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
-
8033  0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x02,
-
8034  0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x05,
-
8035  0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x00, 0x01,
-
8036  0x00, 0x16, 0x00, 0x00, 0x00, 0x03, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19,
-
8037  0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09,
-
8038  0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e,
-
8039  0x00, 0x00, 0x00, 0x01, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0c,
-
8040  0x00, 0x00, 0x00, 0x01, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10,
-
8041  0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1c,
-
8042  0x00, 0x1e, 0x00, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01,
-
8043  0x00, 0x23, 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0x00, 0x00, 0x00, 0x01,
-
8044  0x00, 0x25, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x00, 0x01,
-
8045  0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0x00, 0x26, 0x00, 0x4e,
-
8046  0x01, 0x28, 0x01, 0xfe, 0x02, 0x88, 0x02, 0x88, 0x02, 0xf8, 0x05, 0x8e,
-
8047  0x05, 0x8e, 0x03, 0x36, 0x03, 0xb2, 0x03, 0xf0, 0x03, 0xf0, 0x04, 0x04,
-
8048  0x04, 0x04, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26, 0x04, 0x26,
-
8049  0x04, 0x3a, 0x04, 0x48, 0x04, 0x9e, 0x04, 0x7c, 0x04, 0x8a, 0x04, 0x9e,
-
8050  0x04, 0xac, 0x04, 0xea, 0x04, 0xea, 0x05, 0x02, 0x05, 0x4a, 0x05, 0x6c,
-
8051  0x05, 0x8e, 0x05, 0xee, 0x06, 0x5a, 0x06, 0x72, 0x06, 0x72, 0x06, 0x90,
-
8052  0x06, 0xb6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8053  0x00, 0x6a, 0x00, 0x32, 0x01, 0xd5, 0x01, 0xd6, 0x00, 0xad, 0x00, 0xb7,
-
8054  0x01, 0xd5, 0x01, 0x4a, 0x01, 0xd6, 0x01, 0x9a, 0x01, 0xa3, 0x01, 0xf0,
-
8055  0x01, 0xf1, 0x01, 0xf2, 0x01, 0xf3, 0x01, 0xf4, 0x01, 0xf5, 0x01, 0xf6,
-
8056  0x01, 0xf7, 0x01, 0xf8, 0x02, 0x29, 0x02, 0x2a, 0x02, 0x0d, 0x02, 0x45,
-
8057  0x02, 0x46, 0x02, 0x6b, 0x02, 0x88, 0x02, 0x89, 0x03, 0xa0, 0x03, 0xa1,
-
8058  0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7,
-
8059  0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad,
-
8060  0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3,
-
8061  0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf, 0x03, 0xc0, 0x00, 0x01, 0x00, 0x32,
-
8062  0x00, 0x01, 0x00, 0x78, 0x00, 0xab, 0x00, 0xb6, 0x00, 0xe8, 0x01, 0x49,
-
8063  0x01, 0x63, 0x01, 0x98, 0x01, 0xa2, 0x01, 0xfa, 0x01, 0xfb, 0x01, 0xfc,
-
8064  0x01, 0xfd, 0x01, 0xfe, 0x01, 0xff, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02,
-
8065  0x02, 0x22, 0x02, 0x24, 0x02, 0x27, 0x02, 0x43, 0x02, 0x44, 0x02, 0x6d,
-
8066  0x02, 0x78, 0x02, 0x7a, 0x03, 0x7a, 0x03, 0x7b, 0x03, 0x7c, 0x03, 0x7d,
-
8067  0x03, 0x7e, 0x03, 0x7f, 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83,
-
8068  0x03, 0x89, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97,
-
8069  0x03, 0x99, 0x03, 0x9a, 0x03, 0x9b, 0x03, 0x9c, 0x03, 0xb9, 0x03, 0xba,
-
8070  0x03, 0xbb, 0x03, 0xbc, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8071  0x00, 0x01, 0x00, 0xac, 0x00, 0x0f, 0x00, 0x24, 0x00, 0x2a, 0x00, 0x38,
-
8072  0x00, 0x42, 0x00, 0x4c, 0x00, 0x56, 0x00, 0x60, 0x00, 0x6a, 0x00, 0x74,
-
8073  0x00, 0x7e, 0x00, 0x88, 0x00, 0x92, 0x00, 0x98, 0x00, 0x9e, 0x00, 0xa6,
-
8074  0x00, 0x02, 0x01, 0x3a, 0x01, 0x41, 0x00, 0x06, 0x01, 0xe3, 0x01, 0xe4,
-
8075  0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x04, 0x01, 0xe6,
-
8076  0x01, 0xf0, 0x01, 0xfa, 0x02, 0x04, 0x00, 0x04, 0x01, 0xe7, 0x01, 0xf1,
-
8077  0x01, 0xfb, 0x02, 0x05, 0x00, 0x04, 0x01, 0xe8, 0x01, 0xf2, 0x01, 0xfc,
-
8078  0x02, 0x06, 0x00, 0x04, 0x01, 0xe9, 0x01, 0xf3, 0x01, 0xfd, 0x02, 0x07,
-
8079  0x00, 0x04, 0x01, 0xea, 0x01, 0xf4, 0x01, 0xfe, 0x02, 0x08, 0x00, 0x04,
-
8080  0x01, 0xeb, 0x01, 0xf5, 0x01, 0xff, 0x02, 0x09, 0x00, 0x04, 0x01, 0xec,
-
8081  0x01, 0xf6, 0x02, 0x00, 0x02, 0x0a, 0x00, 0x04, 0x01, 0xed, 0x01, 0xf7,
-
8082  0x02, 0x01, 0x02, 0x0b, 0x00, 0x04, 0x01, 0xee, 0x01, 0xf8, 0x02, 0x02,
-
8083  0x02, 0x0c, 0x00, 0x02, 0x02, 0x11, 0x02, 0x15, 0x00, 0x02, 0x02, 0x12,
-
8084  0x02, 0x16, 0x00, 0x03, 0x01, 0xef, 0x02, 0x13, 0x02, 0x17, 0x00, 0x02,
-
8085  0x02, 0x14, 0x02, 0x18, 0x00, 0x01, 0x00, 0x0f, 0x01, 0x39, 0x01, 0xd9,
-
8086  0x01, 0xda, 0x01, 0xdb, 0x01, 0xdc, 0x01, 0xdd, 0x01, 0xde, 0x01, 0xdf,
-
8087  0x01, 0xe0, 0x01, 0xe1, 0x01, 0xe2, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9,
-
8088  0x02, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x20,
-
8089  0x00, 0x56, 0x00, 0x68, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26,
-
8090  0x00, 0x01, 0x00, 0x3e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
-
8091  0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0x1c, 0x00, 0x2c,
-
8092  0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x02, 0x01, 0x39,
-
8093  0x01, 0x49, 0x00, 0x02, 0x00, 0x02, 0x03, 0x89, 0x03, 0x8b, 0x00, 0x00,
-
8094  0x03, 0x8d, 0x03, 0x92, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x03, 0x7a,
-
8095  0x03, 0x88, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x03, 0x78, 0x00, 0x01,
-
8096  0x03, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03,
-
8097  0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x03, 0x66, 0x00, 0x00, 0x00, 0x01,
-
8098  0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x00, 0x01, 0x00, 0xe6,
-
8099  0x00, 0x00, 0x01, 0xd8, 0x01, 0xd8, 0x00, 0xe6, 0x00, 0x01, 0x00, 0x00,
-
8100  0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x3a, 0x00, 0x1a, 0x01, 0x3a,
-
8101  0x01, 0x4a, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3, 0x03, 0xa4,
-
8102  0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9, 0x03, 0xaa,
-
8103  0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf, 0x03, 0xb0,
-
8104  0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe, 0x03, 0xbf,
-
8105  0x03, 0xc0, 0x00, 0x02, 0x00, 0x07, 0x01, 0x39, 0x01, 0x39, 0x00, 0x00,
-
8106  0x01, 0x49, 0x01, 0x49, 0x00, 0x01, 0x03, 0x7a, 0x03, 0x83, 0x00, 0x02,
-
8107  0x03, 0x89, 0x03, 0x89, 0x00, 0x0c, 0x03, 0x93, 0x03, 0x97, 0x00, 0x0d,
-
8108  0x03, 0x99, 0x03, 0x9c, 0x00, 0x12, 0x03, 0xb9, 0x03, 0xbc, 0x00, 0x16,
-
8109  0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a, 0x00, 0x1c, 0x00, 0x03,
-
8110  0x00, 0x00, 0x00, 0x01, 0x02, 0xca, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01,
-
8111  0x00, 0x00, 0x00, 0x06, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01,
-
8112  0x02, 0xb8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02,
-
8113  0x00, 0x02, 0x03, 0xa0, 0x03, 0xb3, 0x00, 0x00, 0x03, 0xbd, 0x03, 0xc0,
-
8114  0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8115  0x00, 0x6a, 0x00, 0x03, 0x00, 0x0c, 0x00, 0x2e, 0x00, 0x50, 0x00, 0x04,
-
8116  0x00, 0x0a, 0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb9, 0x00, 0x02,
-
8117  0x03, 0x7d, 0x03, 0xba, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xbb, 0x00, 0x02,
-
8118  0x03, 0x85, 0x03, 0xbc, 0x00, 0x02, 0x03, 0x83, 0x00, 0x04, 0x00, 0x0a,
-
8119  0x00, 0x10, 0x00, 0x16, 0x00, 0x1c, 0x03, 0xb5, 0x00, 0x02, 0x03, 0x7d,
-
8120  0x03, 0xb6, 0x00, 0x02, 0x03, 0x7c, 0x03, 0xb7, 0x00, 0x02, 0x03, 0x85,
-
8121  0x03, 0xb8, 0x00, 0x02, 0x03, 0x83, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0e,
-
8122  0x00, 0x14, 0x03, 0xbd, 0x00, 0x02, 0x03, 0xa3, 0x03, 0xbe, 0x00, 0x02,
-
8123  0x03, 0xa2, 0x03, 0xc0, 0x00, 0x02, 0x03, 0xa9, 0x00, 0x01, 0x00, 0x03,
-
8124  0x03, 0x7f, 0x03, 0x81, 0x03, 0xa5, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
-
8125  0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01,
-
8126  0x00, 0x42, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a,
-
8127  0x00, 0x01, 0x00, 0x01, 0x01, 0x4f, 0x00, 0x03, 0x00, 0x01, 0x00, 0x14,
-
8128  0x00, 0x01, 0x00, 0x28, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00,
-
8129  0x00, 0x0b, 0x00, 0x01, 0x00, 0x01, 0x00, 0x63, 0x00, 0x01, 0x00, 0x00,
-
8130  0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x07, 0x00, 0x01,
-
8131  0x00, 0x01, 0x02, 0x22, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8132  0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x00, 0xad, 0x00, 0xb7, 0x01, 0x9a,
-
8133  0x01, 0xa3, 0x00, 0x01, 0x00, 0x04, 0x00, 0xab, 0x00, 0xb6, 0x01, 0x98,
-
8134  0x01, 0xa2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8135  0x00, 0x06, 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x01, 0x39, 0x00, 0x01,
-
8136  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0xf6, 0x00, 0x0c,
-
8137  0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1c,
-
8138  0x00, 0x0b, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07,
-
8139  0x02, 0x08, 0x02, 0x09, 0x02, 0x0a, 0x02, 0x0b, 0x02, 0x0c, 0x02, 0x6b,
-
8140  0x00, 0x02, 0x00, 0x02, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x02, 0x6d,
-
8141  0x02, 0x6d, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8142  0x00, 0x01, 0x00, 0xb4, 0x00, 0x16, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8143  0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xe6, 0x00, 0x01, 0x00, 0x01,
-
8144  0x02, 0x27, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8145  0x00, 0x92, 0x00, 0x20, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0a,
-
8146  0x00, 0x22, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x42,
-
8147  0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x01, 0x00, 0x01,
-
8148  0x02, 0x0d, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x2a,
-
8149  0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x02, 0x00, 0x01,
-
8150  0x01, 0xef, 0x01, 0xf8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8151  0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xff, 0xf6, 0x00, 0x02, 0x00, 0x01,
-
8152  0x01, 0xf9, 0x02, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02,
-
8153  0x00, 0x0a, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, 0x00, 0x2c, 0x00, 0x01,
-
8154  0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x01,
-
8155  0x00, 0x02, 0x00, 0x01, 0x00, 0xe8, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12,
-
8156  0x00, 0x01, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d,
-
8157  0x00, 0x02, 0x00, 0x01, 0x01, 0xd9, 0x01, 0xe2, 0x00, 0x00, 0x00, 0x01,
-
8158  0x00, 0x02, 0x00, 0x78, 0x01, 0x63, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
-
8159  0x00, 0x08, 0x00, 0x02, 0x00, 0x0e, 0x00, 0x04, 0x01, 0xd5, 0x01, 0xd6,
-
8160  0x01, 0xd5, 0x01, 0xd6, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x78,
-
8161  0x00, 0xe8, 0x01, 0x63, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08,
-
8162  0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04,
-
8163  0x03, 0x5c, 0x00, 0x03, 0x01, 0x63, 0x02, 0x19, 0x00, 0x01, 0x00, 0x01,
-
8164  0x00, 0x6f, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8165  0x00, 0x36, 0x00, 0x18, 0x03, 0xa0, 0x03, 0xa1, 0x03, 0xa2, 0x03, 0xa3,
-
8166  0x03, 0xa4, 0x03, 0xa5, 0x03, 0xa6, 0x03, 0xa7, 0x03, 0xa8, 0x03, 0xa9,
-
8167  0x03, 0xaa, 0x03, 0xab, 0x03, 0xac, 0x03, 0xad, 0x03, 0xae, 0x03, 0xaf,
-
8168  0x03, 0xb0, 0x03, 0xb1, 0x03, 0xb2, 0x03, 0xb3, 0x03, 0xbd, 0x03, 0xbe,
-
8169  0x03, 0xbf, 0x03, 0xc0, 0x00, 0x02, 0x00, 0x05, 0x03, 0x7a, 0x03, 0x83,
-
8170  0x00, 0x00, 0x03, 0x89, 0x03, 0x89, 0x00, 0x0a, 0x03, 0x93, 0x03, 0x97,
-
8171  0x00, 0x0b, 0x03, 0x99, 0x03, 0x9c, 0x00, 0x10, 0x03, 0xb9, 0x03, 0xbc,
-
8172  0x00, 0x14, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01,
-
8173  0x00, 0x56, 0x00, 0x05, 0x00, 0x10, 0x00, 0x1c, 0x00, 0x26, 0x00, 0x3a,
-
8174  0x00, 0x44, 0x00, 0x01, 0x00, 0x04, 0x02, 0x48, 0x00, 0x03, 0x02, 0x70,
-
8175  0x02, 0x70, 0x00, 0x01, 0x00, 0x04, 0x02, 0x47, 0x00, 0x02, 0x02, 0x72,
-
8176  0x00, 0x02, 0x00, 0x06, 0x00, 0x0e, 0x03, 0x69, 0x00, 0x03, 0x02, 0x70,
-
8177  0x02, 0x70, 0x03, 0x6a, 0x00, 0x02, 0x02, 0x72, 0x00, 0x01, 0x00, 0x04,
-
8178  0x03, 0x6b, 0x00, 0x02, 0x02, 0x70, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0c,
-
8179  0x03, 0x6d, 0x00, 0x02, 0x02, 0x70, 0x03, 0x6c, 0x00, 0x02, 0x02, 0x31,
-
8180  0x00, 0x01, 0x00, 0x05, 0x02, 0x1e, 0x02, 0x31, 0x02, 0x70, 0x02, 0x72,
-
8181  0x02, 0x73, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8182  0x00, 0x46, 0x00, 0x05, 0x01, 0xe3, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17,
-
8183  0x02, 0x18, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
-
8184  0x00, 0x0c, 0x00, 0x03, 0x02, 0x2a, 0x02, 0x88, 0x02, 0x89, 0x00, 0x01,
-
8185  0x00, 0x03, 0x02, 0x24, 0x02, 0x78, 0x02, 0x7a, 0x00, 0x01, 0x00, 0x00,
-
8186  0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x10, 0x00, 0x05, 0x01, 0xe4,
-
8187  0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x00, 0x01, 0x00, 0x05,
-
8188  0x01, 0xd9, 0x01, 0xe5, 0x01, 0xef, 0x01, 0xf9, 0x02, 0x03, 0x00, 0x01,
-
8189  0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02,
-
8190  0x00, 0x01, 0x00, 0x02, 0x02, 0x43, 0x02, 0x44, 0x00, 0x01, 0x00, 0x01,
-
8191  0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x14, 0x00, 0x02, 0x00, 0x00,
-
8192  0x00, 0x24, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x01,
-
8193  0x77, 0x64, 0x74, 0x68, 0x01, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10,
-
8194  0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x01, 0x50, 0x00, 0x64, 0x00, 0x00,
-
8195  0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x58, 0x01, 0xf4, 0x00, 0x00};
-
-
- - - - diff --git a/abcg/doc/html/abcg__exception_8cpp.html b/abcg/doc/html/abcg__exception_8cpp.html deleted file mode 100644 index b4e8c1e7c..000000000 --- a/abcg/doc/html/abcg__exception_8cpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_exception.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_exception.cpp File Reference
-
-
- -

Definition of abcg::Exception members. -More...

-
#include "abcg_exception.hpp"
-#include "SDL_image.h"
-#include "abcg_external.hpp"
-
-Include dependency graph for abcg_exception.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::Exception members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__exception_8cpp__incl.map b/abcg/doc/html/abcg__exception_8cpp__incl.map deleted file mode 100644 index 4bcbffc41..000000000 --- a/abcg/doc/html/abcg__exception_8cpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/abcg/doc/html/abcg__exception_8cpp__incl.md5 b/abcg/doc/html/abcg__exception_8cpp__incl.md5 deleted file mode 100644 index e786fff8d..000000000 --- a/abcg/doc/html/abcg__exception_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -1e9d4c679b91c1345d2279a9fa197698 \ No newline at end of file diff --git a/abcg/doc/html/abcg__exception_8cpp__incl.svg b/abcg/doc/html/abcg__exception_8cpp__incl.svg deleted file mode 100644 index de6042553..000000000 --- a/abcg/doc/html/abcg__exception_8cpp__incl.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_exception.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_exception.cpp - - - - - -Node2 - - -abcg_exception.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -SDL_image.h - - - - - -Node1->Node6 - - - - - -Node7 - - -abcg_external.hpp - - - - - -Node1->Node7 - - - - - -Node3 - - -source_location - - - - - -Node2->Node3 - - - - - -Node4 - - -stdexcept - - - - - -Node2->Node4 - - - - - -Node5 - - -string - - - - - -Node2->Node5 - - - - - diff --git a/abcg/doc/html/abcg__exception_8hpp.html b/abcg/doc/html/abcg__exception_8hpp.html deleted file mode 100644 index 677599607..000000000 --- a/abcg/doc/html/abcg__exception_8hpp.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_exception.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_exception.hpp File Reference
-
-
- -

Header file of abcg::Exception and derived classes. -More...

-
#include <source_location>
-#include <stdexcept>
-#include <string>
-
-Include dependency graph for abcg_exception.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - - - - - - - - - - -

-Classes

class  abcg::Exception
 Base class for ABCg exception objects. More...
 
class  abcg::RuntimeError
 Represents an exception object for runtime errors. More...
 
class  abcg::SDLError
 Represents an exception object for SDL errors. More...
 
class  abcg::SDLImageError
 Represents an exception object for SDL_image errors. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::Exception and derived classes.

-

Declaration of abcg::Exception and derived classes.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__exception_8hpp__dep__incl.map b/abcg/doc/html/abcg__exception_8hpp__dep__incl.map deleted file mode 100644 index 47d5dab4c..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__dep__incl.map +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__exception_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__exception_8hpp__dep__incl.md5 deleted file mode 100644 index ef1271782..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -142fd849729ae19ce8faf6c7287777a6 \ No newline at end of file diff --git a/abcg/doc/html/abcg__exception_8hpp__dep__incl.svg b/abcg/doc/html/abcg__exception_8hpp__dep__incl.svg deleted file mode 100644 index 3664edaf7..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__dep__incl.svg +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_exception.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_exception.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_exception.cpp - - - - - -Node1->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.hpp - - - - - -Node1->Node5 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.cpp - - - - - -Node1->Node8 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node1->Node9 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node1->Node10 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node1->Node11 - - - - - -Node12 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.hpp - - - - - -Node1->Node12 - - - - - -Node14 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node14 - - - - - -Node15 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node1->Node15 - - - - - -Node16 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node1->Node16 - - - - - -Node17 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node17 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.cpp - - - - - -Node5->Node6 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.cpp - - - - - -Node5->Node7 - - - - - -Node13 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.cpp - - - - - -Node12->Node13 - - - - - -Node12->Node14 - - - - - diff --git a/abcg/doc/html/abcg__exception_8hpp__incl.map b/abcg/doc/html/abcg__exception_8hpp__incl.map deleted file mode 100644 index 99b27c3b8..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__exception_8hpp__incl.md5 b/abcg/doc/html/abcg__exception_8hpp__incl.md5 deleted file mode 100644 index 9586ae83f..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -904bea4b5367c244449a75c33f93b375 \ No newline at end of file diff --git a/abcg/doc/html/abcg__exception_8hpp__incl.svg b/abcg/doc/html/abcg__exception_8hpp__incl.svg deleted file mode 100644 index 0cdc6187d..000000000 --- a/abcg/doc/html/abcg__exception_8hpp__incl.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_exception.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_exception.hpp - - - - - -Node2 - - -source_location - - - - - -Node1->Node2 - - - - - -Node3 - - -stdexcept - - - - - -Node1->Node3 - - - - - -Node4 - - -string - - - - - -Node1->Node4 - - - - - diff --git a/abcg/doc/html/abcg__exception_8hpp_source.html b/abcg/doc/html/abcg__exception_8hpp_source.html deleted file mode 100644 index 48e837423..000000000 --- a/abcg/doc/html/abcg__exception_8hpp_source.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_exception.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_exception.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_EXCEPTION_HPP_
-
14 #define ABCG_EXCEPTION_HPP_
-
15 
-
16 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
-
20 // @cond Skipped by Doxygen
- -
22 // @endcond
-
23 } // namespace abcg
-
24 #else
-
25 #include <source_location>
-
26 namespace abcg {
-
27 // @cond Skipped by Doxygen
- -
29 // @endcond
-
30 } // namespace abcg
-
31 #endif
-
32 #endif
-
33 
-
34 #include <stdexcept>
-
35 #include <string>
-
36 
-
37 namespace abcg {
-
38 class Exception;
-
39 class RuntimeError;
-
40 class SDLError;
-
41 class SDLImageError;
-
42 
-
43 // @cond Skipped by Doxygen
-
44 constexpr inline auto codeBoldRed{"\033[1;31m"};
-
45 constexpr inline auto codeBoldYellow{"\033[1;33m"};
-
46 constexpr inline auto codeBoldBlue{"\033[1;34m"};
-
47 constexpr inline auto codeReset{"\033[0m"};
-
48 
-
49 [[maybe_unused]] [[nodiscard]] inline std::string
-
50 toRedString(std::string_view str) {
-
51  return std::string{codeBoldRed} + str.data() + std::string{codeReset};
-
52 }
-
53 
-
54 [[maybe_unused]] [[nodiscard]] inline std::string
-
55 toYellowString(std::string_view str) {
-
56  return std::string{codeBoldYellow} + str.data() + std::string{codeReset};
-
57 }
-
58 
-
59 [[maybe_unused]] [[nodiscard]] inline std::string
-
60 toBlueString(std::string_view str) {
-
61  return std::string{codeBoldBlue} + str.data() + std::string{codeReset};
-
62 }
-
63 // @endcond
-
64 } // namespace abcg
-
65 
-
71 class abcg::Exception : public std::exception {
-
72 public:
-
73  explicit Exception(std::string_view what);
-
74 
-
80  [[nodiscard]] const char *what() const noexcept override {
-
81  return m_what.data();
-
82  };
-
83 
-
84 private:
-
85  std::string m_what{};
-
86 };
-
87 
- -
97 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
98 public:
-
99  explicit RuntimeError(
-
100  std::string_view what,
-
101  source_location const &sourceLocation = source_location::current());
-
102 
-
103 private:
-
104  [[nodiscard]] static std::string
-
105  prettyPrint(std::string_view what, source_location const &sourceLocation);
-
106 #else
-
107 public:
-
108  explicit RuntimeError(std::string_view what);
-
109 
-
110 private:
-
111  [[nodiscard]] static std::string prettyPrint(std::string_view what);
-
112 #endif
-
113 };
-
114 
- -
125 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
126 public:
-
127  explicit SDLError(
-
128  std::string_view what,
-
129  source_location const &sourceLocation = source_location::current());
-
130 
-
131 private:
-
132  [[nodiscard]] static std::string
-
133  prettyPrint(std::string_view what, source_location const &sourceLocation);
-
134 #else
-
135 public:
-
136  explicit SDLError(std::string_view what);
-
137 
-
138 private:
-
139  [[nodiscard]] static std::string prettyPrint(std::string_view what);
-
140 #endif
-
141 };
-
142 
- -
153 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
154 public:
-
155  explicit SDLImageError(
-
156  std::string_view what,
-
157  source_location const &sourceLocation = source_location::current());
-
158 
-
159 private:
-
160  [[nodiscard]] static std::string
-
161  prettyPrint(std::string_view what, source_location const &sourceLocation);
-
162 #else
-
163 public:
-
164  explicit SDLImageError(std::string_view what);
-
165 
-
166 private:
-
167  [[nodiscard]] static std::string prettyPrint(std::string_view what);
-
168 #endif
-
169 };
-
170 
-
171 #endif
-
Base class for ABCg exception objects.
Definition: abcg_exception.hpp:71
-
Exception(std::string_view what)
Constructs an abcg::Exception object.
Definition: abcg_exception.cpp:23
-
const char * what() const noexcept override
Returns the explanatory string.
Definition: abcg_exception.hpp:80
-
Represents an exception object for runtime errors.
Definition: abcg_exception.hpp:96
-
RuntimeError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::RuntimeError object.
Definition: abcg_exception.cpp:35
-
Represents an exception object for SDL errors.
Definition: abcg_exception.hpp:124
-
SDLError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::SDLError object.
Definition: abcg_exception.cpp:56
-
Represents an exception object for SDL_image errors.
Definition: abcg_exception.hpp:152
-
SDLImageError(std::string_view what, source_location const &sourceLocation=source_location::current())
Constructs an abcg::SDLError object.
Definition: abcg_exception.cpp:77
-
Root namespace.
Definition: abcg_application.hpp:23
-
std::source_location source_location
Definition: abcg_opengl_error.hpp:25
-
-
- - - - diff --git a/abcg/doc/html/abcg__external_8hpp.html b/abcg/doc/html/abcg__external_8hpp.html deleted file mode 100644 index 8d9c55164..000000000 --- a/abcg/doc/html/abcg__external_8hpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_external.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_external.hpp File Reference
-
-
- -

Header file for including third-party dependencies. -More...

-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

-

Detailed Description

-

Header file for including third-party dependencies.

-

Preprocessor definitions and includes of third-party dependencies.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__external_8hpp__dep__incl.map b/abcg/doc/html/abcg__external_8hpp__dep__incl.map deleted file mode 100644 index d46083b1b..000000000 --- a/abcg/doc/html/abcg__external_8hpp__dep__incl.map +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__external_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__external_8hpp__dep__incl.md5 deleted file mode 100644 index 79d08f840..000000000 --- a/abcg/doc/html/abcg__external_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -23162175fe5603a15927de9912408b78 \ No newline at end of file diff --git a/abcg/doc/html/abcg__external_8hpp__dep__incl.svg b/abcg/doc/html/abcg__external_8hpp__dep__incl.svg deleted file mode 100644 index d1208b6b6..000000000 --- a/abcg/doc/html/abcg__external_8hpp__dep__incl.svg +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_external.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_external.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_exception.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.cpp - - - - - -Node1->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node1->Node5 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.hpp - - - - - -Node1->Node8 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.hpp - - - - - -Node1->Node10 - - - - - -Node12 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.hpp - - - - - -Node1->Node12 - - - - - -Node17 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.hpp - - - - - -Node1->Node17 - - - - - -Node20 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node20 - - - - - -Node21 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.hpp - - - - - -Node1->Node21 - - - - - -Node22 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.hpp - - - - - -Node1->Node22 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node5->Node6 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node5->Node7 - - - - - -Node8->Node2 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.cpp - - - - - -Node8->Node9 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.cpp - - - - - -Node10->Node11 - - - - - -Node10->Node12 - - - - - -Node15 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node10->Node15 - - - - - -Node10->Node17 - - - - - -Node10->Node20 - - - - - -Node10->Node21 - - - - - -Node13 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node12->Node13 - - - - - -Node14 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node12->Node14 - - - - - -Node12->Node15 - - - - - -Node15->Node14 - - - - - -Node16 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node15->Node16 - - - - - -Node17->Node15 - - - - - -Node17->Node16 - - - - - -Node18 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node17->Node18 - - - - - -Node19 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node17->Node19 - - - - - -Node20->Node11 - - - - - -Node20->Node13 - - - - - -Node20->Node14 - - - - - -Node20->Node15 - - - - - -Node20->Node19 - - - - - -Node21->Node14 - - - - - -Node21->Node15 - - - - - -Node22->Node5 - - - - - -Node22->Node7 - - - - - -Node22->Node15 - - - - - -Node22->Node16 - - - - - -Node22->Node18 - - - - - -Node23 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node22->Node23 - - - - - -Node24 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.cpp - - - - - -Node22->Node24 - - - - - diff --git a/abcg/doc/html/abcg__external_8hpp_source.html b/abcg/doc/html/abcg__external_8hpp_source.html deleted file mode 100644 index 439fc8ff4..000000000 --- a/abcg/doc/html/abcg__external_8hpp_source.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_external.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_external.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_EXTERNAL_HPP_
-
14 #define ABCG_EXTERNAL_HPP_
-
15 
-
16 // @cond Skipped by Doxygen
-
17 
-
18 #define GLM_ENABLE_EXPERIMENTAL
-
19 
-
20 #include <SDL.h>
-
21 #include <cppitertools/itertools.hpp>
-
22 #include <fmt/core.h>
-
23 #include <glm/glm.hpp>
-
24 #include <glm/gtc/matrix_inverse.hpp>
-
25 #include <glm/gtx/hash.hpp>
-
26 #include <glm/gtx/quaternion.hpp>
-
27 #include <gsl/gsl>
-
28 #include <imgui.h>
-
29 #include <tiny_obj_loader.h>
-
30 
-
31 // @endcond
-
32 
-
33 #endif
-
-
- - - - diff --git a/abcg/doc/html/abcg__image_8cpp.html b/abcg/doc/html/abcg__image_8cpp.html deleted file mode 100644 index 1b70793d9..000000000 --- a/abcg/doc/html/abcg__image_8cpp.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_image.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_image.cpp File Reference
-
-
- -

Definition of texture loading helper functions. -More...

-
#include "abcg_image.hpp"
-#include <cppitertools/itertools.hpp>
-#include <span>
-#include <vector>
-
-Include dependency graph for abcg_image.cpp:
-
-
-
-
-

Detailed Description

-

Definition of texture loading helper functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__image_8cpp__incl.map b/abcg/doc/html/abcg__image_8cpp__incl.map deleted file mode 100644 index 4d67563b6..000000000 --- a/abcg/doc/html/abcg__image_8cpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/abcg/doc/html/abcg__image_8cpp__incl.md5 b/abcg/doc/html/abcg__image_8cpp__incl.md5 deleted file mode 100644 index 6aa38054c..000000000 --- a/abcg/doc/html/abcg__image_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -84ff12f58cb93ec81333806f49806d70 \ No newline at end of file diff --git a/abcg/doc/html/abcg__image_8cpp__incl.svg b/abcg/doc/html/abcg__image_8cpp__incl.svg deleted file mode 100644 index 43a896864..000000000 --- a/abcg/doc/html/abcg__image_8cpp__incl.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_image.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_image.cpp - - - - - -Node2 - - -abcg_image.hpp - - - - - -Node1->Node2 - - - - - -Node5 - - -cppitertools/itertools.hpp - - - - - -Node1->Node5 - - - - - -Node6 - - -span - - - - - -Node1->Node6 - - - - - -Node7 - - -vector - - - - - -Node1->Node7 - - - - - -Node3 - - -gsl/gsl - - - - - -Node2->Node3 - - - - - -Node4 - - -SDL_image.h - - - - - -Node2->Node4 - - - - - diff --git a/abcg/doc/html/abcg__image_8hpp.html b/abcg/doc/html/abcg__image_8hpp.html deleted file mode 100644 index 40ceeeb3d..000000000 --- a/abcg/doc/html/abcg__image_8hpp.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_image.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_image.hpp File Reference
-
-
- -

Declaration of texture loading helper functions. -More...

-
#include <gsl/gsl>
-#include "SDL_image.h"
-
-Include dependency graph for abcg_image.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - -

-Functions

void abcg::flipHorizontally (gsl::not_null< SDL_Surface * > surface)
 
void abcg::flipVertically (gsl::not_null< SDL_Surface * > surface)
 
-

Detailed Description

-

Declaration of texture loading helper functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__image_8hpp.js b/abcg/doc/html/abcg__image_8hpp.js deleted file mode 100644 index 969ac19d7..000000000 --- a/abcg/doc/html/abcg__image_8hpp.js +++ /dev/null @@ -1,5 +0,0 @@ -var abcg__image_8hpp = -[ - [ "flipHorizontally", "abcg__image_8hpp.html#a0d46e744a39225a18d381362cea62104", null ], - [ "flipVertically", "abcg__image_8hpp.html#abc2b77e7547e5e73f00d7167f7a2f6b9", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__image_8hpp__dep__incl.map b/abcg/doc/html/abcg__image_8hpp__dep__incl.map deleted file mode 100644 index dea57ab7a..000000000 --- a/abcg/doc/html/abcg__image_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__image_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__image_8hpp__dep__incl.md5 deleted file mode 100644 index db8b5b526..000000000 --- a/abcg/doc/html/abcg__image_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6f4a80065d29b3225b4e83c7385df0ec \ No newline at end of file diff --git a/abcg/doc/html/abcg__image_8hpp__dep__incl.svg b/abcg/doc/html/abcg__image_8hpp__dep__incl.svg deleted file mode 100644 index 854f27af3..000000000 --- a/abcg/doc/html/abcg__image_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_image.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_image.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_image.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__image_8hpp__incl.map b/abcg/doc/html/abcg__image_8hpp__incl.map deleted file mode 100644 index da1c7b28c..000000000 --- a/abcg/doc/html/abcg__image_8hpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__image_8hpp__incl.md5 b/abcg/doc/html/abcg__image_8hpp__incl.md5 deleted file mode 100644 index 2af5a3ce9..000000000 --- a/abcg/doc/html/abcg__image_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6891ae594df953bf394405afbac10b3b \ No newline at end of file diff --git a/abcg/doc/html/abcg__image_8hpp__incl.svg b/abcg/doc/html/abcg__image_8hpp__incl.svg deleted file mode 100644 index 9c88547fc..000000000 --- a/abcg/doc/html/abcg__image_8hpp__incl.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_image.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_image.hpp - - - - - -Node2 - - -gsl/gsl - - - - - -Node1->Node2 - - - - - -Node3 - - -SDL_image.h - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__image_8hpp_source.html b/abcg/doc/html/abcg__image_8hpp_source.html deleted file mode 100644 index a7e91e96e..000000000 --- a/abcg/doc/html/abcg__image_8hpp_source.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_image.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_image.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_IMAGE_HPP_
-
12 #define ABCG_IMAGE_HPP_
-
13 
-
14 #include <gsl/gsl>
-
15 
-
16 #include "SDL_image.h"
-
17 
-
18 namespace abcg {
-
19 void flipHorizontally(gsl::not_null<SDL_Surface *> surface);
-
20 void flipVertically(gsl::not_null<SDL_Surface *> surface);
-
21 } // namespace abcg
-
22 
-
23 #endif
-
Root namespace.
Definition: abcg_application.hpp:23
-
void flipHorizontally(gsl::not_null< SDL_Surface * > surface)
Definition: abcg_image.cpp:17
-
void flipVertically(gsl::not_null< SDL_Surface * > surface)
Definition: abcg_image.cpp:42
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl_8hpp.html b/abcg/doc/html/abcg__opengl_8hpp.html deleted file mode 100644 index c278b267a..000000000 --- a/abcg/doc/html/abcg__opengl_8hpp.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl.hpp File Reference
-
-
- -

Header file for OpenGL-related functions and classes. -More...

-
-Include dependency graph for abcg_opengl.hpp:
-
-
-
-
-
-

Go to the source code of this file.

-

Detailed Description

-

Header file for OpenGL-related functions and classes.

-

This is a shortcut for other OpenGL-related headers used in ABCg.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl_8hpp__incl.map b/abcg/doc/html/abcg__opengl_8hpp__incl.map deleted file mode 100644 index 78bb60f40..000000000 --- a/abcg/doc/html/abcg__opengl_8hpp__incl.map +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl_8hpp__incl.md5 deleted file mode 100644 index a81fc5da8..000000000 --- a/abcg/doc/html/abcg__opengl_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -3cd390aafb4e1acc866ace7116a13450 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl_8hpp__incl.svg b/abcg/doc/html/abcg__opengl_8hpp__incl.svg deleted file mode 100644 index 25c16d77d..000000000 --- a/abcg/doc/html/abcg__opengl_8hpp__incl.svg +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node2 - - -abcg_opengl_image.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -abcg_opengl_shader.hpp - - - - - -Node1->Node6 - - - - - -Node10 - - -abcg_opengl_window.hpp - - - - - -Node1->Node10 - - - - - -Node3 - - -abcg_opengl_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -array - - - - - -Node2->Node4 - - - - - -Node5 - - -string_view - - - - - -Node2->Node5 - - - - - -Node6->Node3 - - - - - -Node6->Node5 - - - - - -Node7 - - -abcg_shader.hpp - - - - - -Node6->Node7 - - - - - -Node8 - - -string - - - - - -Node6->Node8 - - - - - -Node9 - - -vector - - - - - -Node6->Node9 - - - - - -Node7->Node8 - - - - - -Node10->Node6 - - - - - -Node10->Node8 - - - - - -Node11 - - -abcg_external.hpp - - - - - -Node10->Node11 - - - - - -Node12 - - -abcg_opengl_function.hpp - - - - - -Node10->Node12 - - - - - -Node15 - - -abcg_window.hpp - - - - - -Node10->Node15 - - - - - -Node12->Node3 - - - - - -Node12->Node5 - - - - - -Node13 - - -source_location - - - - - -Node12->Node13 - - - - - -Node14 - - -type_traits - - - - - -Node12->Node14 - - - - - -Node15->Node8 - - - - - -Node15->Node11 - - - - - -Node16 - - -abcg_elapsedtimer.hpp - - - - - -Node15->Node16 - - - - - -Node17 - - -chrono - - - - - -Node16->Node17 - - - - - diff --git a/abcg/doc/html/abcg__opengl_8hpp_source.html b/abcg/doc/html/abcg__opengl_8hpp_source.html deleted file mode 100644 index 2f7041473..000000000 --- a/abcg/doc/html/abcg__opengl_8hpp_source.html +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_HPP_
-
14 #define ABCG_OPENGL_HPP_
-
15 
-
16 #include "abcg_opengl_image.hpp"
-
17 #include "abcg_opengl_shader.hpp"
-
18 #include "abcg_opengl_window.hpp"
-
19 
-
20 #endif
-
Declaration of OpenGL texture loading helper functions.
-
Declaration of helper functions for building OpenGL shaders.
-
Header file of abcg::OpenGLWindow.
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__error_8cpp.html b/abcg/doc/html/abcg__opengl__error_8cpp.html deleted file mode 100644 index f71b9e698..000000000 --- a/abcg/doc/html/abcg__opengl__error_8cpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_error.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_error.cpp File Reference
-
-
- -

Definition of abcg::OpenGLError members. -More...

-
-Include dependency graph for abcg_opengl_error.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::OpenGLError members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__error_8cpp__incl.map b/abcg/doc/html/abcg__opengl__error_8cpp__incl.map deleted file mode 100644 index f34bd6492..000000000 --- a/abcg/doc/html/abcg__opengl__error_8cpp__incl.map +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8cpp__incl.md5 b/abcg/doc/html/abcg__opengl__error_8cpp__incl.md5 deleted file mode 100644 index b14a85adb..000000000 --- a/abcg/doc/html/abcg__opengl__error_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -95c316af88ab4adb2f0496a573d3e06d \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__error_8cpp__incl.svg b/abcg/doc/html/abcg__opengl__error_8cpp__incl.svg deleted file mode 100644 index bb6ba50cd..000000000 --- a/abcg/doc/html/abcg__opengl__error_8cpp__incl.svg +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_error.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.cpp - - - - - -Node2 - - -abcg_opengl_error.hpp - - - - - -Node1->Node2 - - - - - -Node7 - - -abcg_external.hpp - - - - - -Node1->Node7 - - - - - -Node8 - - -abcg_opengl_external.hpp - - - - - -Node1->Node8 - - - - - -Node3 - - -source_location - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_exception.hpp - - - - - -Node2->Node4 - - - - - -Node4->Node3 - - - - - -Node5 - - -stdexcept - - - - - -Node4->Node5 - - - - - -Node6 - - -string - - - - - -Node4->Node6 - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp.html b/abcg/doc/html/abcg__opengl__error_8hpp.html deleted file mode 100644 index 932addf0b..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp File Reference
-
-
- -

Header file of abcg::OpenGLError and derived classes. -More...

-
#include <source_location>
-#include "abcg_exception.hpp"
-
-Include dependency graph for abcg_opengl_error.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::OpenGLError
 Represents an exception object for OpenGL errors. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - -

-Typedefs

using abcg::source_location = std::source_location
 
-

Detailed Description

-

Header file of abcg::OpenGLError and derived classes.

-

Declaration of abcg::OpenGLError and derived classes.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp.js b/abcg/doc/html/abcg__opengl__error_8hpp.js deleted file mode 100644 index 385c904d3..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp.js +++ /dev/null @@ -1,5 +0,0 @@ -var abcg__opengl__error_8hpp = -[ - [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], - [ "source_location", "abcg__opengl__error_8hpp.html#acb1d90de1449e0e743214d0ae8bddff2", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.map deleted file mode 100644 index 783be3255..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.md5 deleted file mode 100644 index 47019e969..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -30d1209783d4632929dd793e05774632 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.svg deleted file mode 100644 index cd6416398..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__incl.map b/abcg/doc/html/abcg__opengl__error_8hpp__incl.map deleted file mode 100644 index e0d9903fe..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl__error_8hpp__incl.md5 deleted file mode 100644 index da67a87ec..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -5e9838d477c64fb1126b5307c161564f \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__error_8hpp__incl.svg b/abcg/doc/html/abcg__opengl__error_8hpp__incl.svg deleted file mode 100644 index bab26b371..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp__incl.svg +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.hpp - - - - - -Node2 - - -source_location - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_exception.hpp - - - - - -Node1->Node3 - - - - - -Node3->Node2 - - - - - -Node4 - - -stdexcept - - - - - -Node3->Node4 - - - - - -Node5 - - -string - - - - - -Node3->Node5 - - - - - diff --git a/abcg/doc/html/abcg__opengl__error_8hpp_source.html b/abcg/doc/html/abcg__opengl__error_8hpp_source.html deleted file mode 100644 index c5841f3a2..000000000 --- a/abcg/doc/html/abcg__opengl__error_8hpp_source.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_error.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_ERROR_HPP_
-
14 #define ABCG_OPENGL_ERROR_HPP_
-
15 
-
16 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
- -
21 } // namespace abcg
-
22 #else
-
23 #include <source_location>
-
24 namespace abcg {
- -
26 } // namespace abcg
-
27 #endif
-
28 #endif
-
29 
-
30 #include "abcg_exception.hpp"
-
31 
-
32 namespace abcg {
-
33 class OpenGLError;
-
34 } // namespace abcg
-
35 
- -
46 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
47 public:
-
48  explicit OpenGLError(
-
49  std::string_view what, unsigned int errorCode,
-
50  source_location const &sourceLocation = source_location::current());
-
51 
-
52 private:
-
53  [[nodiscard]] static std::string
-
54  prettyPrint(std::string_view what, unsigned int errorCode,
-
55  source_location const &sourceLocation);
-
56 #else
-
57 public:
-
58  explicit OpenGLError(std::string_view what, unsigned int errorCode);
-
59 
-
60 private:
-
61  [[nodiscard]] static std::string prettyPrint(std::string_view what,
-
62  unsigned int errorCode);
-
63 #endif
-
64 
-
65  [[nodiscard]] static std::string_view
-
66  getGLErrorString(unsigned int errorCode);
-
67 };
-
68 
-
69 #endif
-
Header file of abcg::Exception and derived classes.
-
Base class for ABCg exception objects.
Definition: abcg_exception.hpp:71
-
const char * what() const noexcept override
Returns the explanatory string.
Definition: abcg_exception.hpp:80
-
Represents an exception object for OpenGL errors.
Definition: abcg_opengl_error.hpp:45
-
OpenGLError(std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())
Constructs an abcg::OpenGLError object.
Definition: abcg_opengl_error.cpp:27
-
Root namespace.
Definition: abcg_application.hpp:23
-
std::source_location source_location
Definition: abcg_opengl_error.hpp:25
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__external_8hpp.html b/abcg/doc/html/abcg__opengl__external_8hpp.html deleted file mode 100644 index 8aa19e76e..000000000 --- a/abcg/doc/html/abcg__opengl__external_8hpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_external.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_external.hpp File Reference
-
-
- -

Header file for including OpenGL-related third-party dependencies. -More...

-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

-

Detailed Description

-

Header file for including OpenGL-related third-party dependencies.

-

Preprocessor definitions and includes of OpenGL-related third-party dependencies.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.map deleted file mode 100644 index 1e15aeb28..000000000 --- a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.map +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.md5 deleted file mode 100644 index 010c5f0a7..000000000 --- a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -9f8ca0e01fb1265cdab732b9038e8706 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.svg deleted file mode 100644 index ac3619841..000000000 --- a/abcg/doc/html/abcg__opengl__external_8hpp__dep__incl.svg +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_external.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_external.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_error.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.hpp - - - - - -Node1->Node3 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.hpp - - - - - -Node1->Node8 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.hpp - - - - - -Node1->Node10 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.cpp - - - - - -Node3->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node3->Node5 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node5->Node6 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node5->Node7 - - - - - -Node8->Node6 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.cpp - - - - - -Node8->Node9 - - - - - -Node10->Node5 - - - - - -Node10->Node6 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node10->Node11 - - - - - diff --git a/abcg/doc/html/abcg__opengl__external_8hpp_source.html b/abcg/doc/html/abcg__opengl__external_8hpp_source.html deleted file mode 100644 index d66d0d2d6..000000000 --- a/abcg/doc/html/abcg__opengl__external_8hpp_source.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_external.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_external.hpp
-
-
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_OPENGL_EXTERNAL_HPP_
-
15 #define ABCG_OPENGL_EXTERNAL_HPP_
-
16 
-
17 // @cond Skipped by Doxygen
-
18 
-
19 #if !defined(__EMSCRIPTEN__)
-
20 #if !defined(GLEW_STATIC)
-
21 #define GLEW_STATIC
-
22 #endif
-
23 #include <GL/glew.h>
-
24 #endif
-
25 
-
26 #if defined(__EMSCRIPTEN__)
-
27 #include <GLES3/gl3.h>
-
28 
-
29 #include "SDL_opengles2.h"
-
30 #include "emscripten.h"
-
31 #include "emscripten/html5.h"
-
32 #endif
-
33 
-
34 // @endcond
-
35 
-
36 #endif
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__function_8cpp.html b/abcg/doc/html/abcg__opengl__function_8cpp.html deleted file mode 100644 index a84425c7d..000000000 --- a/abcg/doc/html/abcg__opengl__function_8cpp.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_function.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_function.cpp File Reference
-
-
- -

Definition of OpenGL-related error checking functions. -More...

-
-Include dependency graph for abcg_opengl_function.cpp:
-
-
-
-
-

Detailed Description

-

Definition of OpenGL-related error checking functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__function_8cpp__incl.map b/abcg/doc/html/abcg__opengl__function_8cpp__incl.map deleted file mode 100644 index b074bcf49..000000000 --- a/abcg/doc/html/abcg__opengl__function_8cpp__incl.map +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8cpp__incl.md5 b/abcg/doc/html/abcg__opengl__function_8cpp__incl.md5 deleted file mode 100644 index 64d17772f..000000000 --- a/abcg/doc/html/abcg__opengl__function_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -48b60f173aa31e71fbc9c62527ad547a \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__function_8cpp__incl.svg b/abcg/doc/html/abcg__opengl__function_8cpp__incl.svg deleted file mode 100644 index 054b6472f..000000000 --- a/abcg/doc/html/abcg__opengl__function_8cpp__incl.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_function.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.cpp - - - - - -Node2 - - -abcg_opengl_function.hpp - - - - - -Node1->Node2 - - - - - -Node7 - - -abcg_opengl_error.hpp - - - - - -Node1->Node7 - - - - - -Node3 - - -source_location - - - - - -Node2->Node3 - - - - - -Node4 - - -string_view - - - - - -Node2->Node4 - - - - - -Node5 - - -type_traits - - - - - -Node2->Node5 - - - - - -Node6 - - -abcg_opengl_external.hpp - - - - - -Node2->Node6 - - - - - -Node7->Node3 - - - - - -Node8 - - -abcg_exception.hpp - - - - - -Node7->Node8 - - - - - -Node8->Node3 - - - - - -Node9 - - -stdexcept - - - - - -Node8->Node9 - - - - - -Node10 - - -string - - - - - -Node8->Node10 - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp.html b/abcg/doc/html/abcg__opengl__function_8hpp.html deleted file mode 100644 index 8350a34a1..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp.html +++ /dev/null @@ -1,657 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp File Reference
-
-
- -

Declaration of OpenGL-related error checking functions. -More...

-
#include <source_location>
-#include <string_view>
-#include <type_traits>
-#include "abcg_opengl_external.hpp"
-
-Include dependency graph for abcg_opengl_function.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Functions

void abcg::checkGLError (source_location const &sourceLocation, std::string_view appendString)
 Checks OpenGL error status and throws on error with a log message. More...
 
template<typename TFun , typename... TArgs>
auto abcg::callGL (source_location const &sourceLocation, TFun &&function, TArgs &&...args)
 Checks for OpenGL errors before and after a function call. More...
 
void abcg::glActiveTexture (GLenum texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glAttachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindAttribLocation (GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBuffer (GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindFramebuffer (GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindRenderbuffer (GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindTexture (GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendEquation (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendFunc (GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glBufferData (GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
 
void abcg::glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
 
GLenum abcg::glCheckFramebufferStatus (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glClear (GLbitfield mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearDepthf (GLfloat d, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearStencil (GLint s, source_location const &sourceLocation=source_location::current())
 
void abcg::glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompileShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glCreateProgram (source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glCreateShader (GLenum shaderType, source_location const &sourceLocation=source_location::current())
 
void abcg::glCullFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteBuffers (GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteFramebuffers (GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteTextures (GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthFunc (GLenum func, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthMask (GLboolean flag, source_location const &sourceLocation=source_location::current())
 
void abcg::glDepthRangef (GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
 
void abcg::glDetachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void abcg::glDisable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void abcg::glDisableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawArrays (GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawElements (GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void abcg::glEnable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void abcg::glEnableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glFinish (source_location const &sourceLocation=source_location::current())
 
void abcg::glFlush (source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void abcg::glFrontFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenBuffers (GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenerateMipmap (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenFramebuffers (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenTextures (GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetAttribLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBooleanv (GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetFloatv (GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetIntegerv (GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramiv (GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderiv (GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
 
const GLubyte * abcg::glGetString (GLenum name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformfv (GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformiv (GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetUniformLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glHint (GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsBuffer (GLuint buffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsEnabled (GLenum cap, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsFramebuffer (GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsRenderbuffer (GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsTexture (GLuint texture, source_location const &sourceLocation=source_location::current())
 
void abcg::glLineWidth (GLfloat width, source_location const &sourceLocation=source_location::current())
 
void abcg::glLinkProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glPixelStorei (GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glPolygonOffset (GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
 
void abcg::glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glReleaseShaderCompiler (source_location const &sourceLocation=source_location::current())
 
void abcg::glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glSampleCoverage (GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
 
void abcg::glScissor (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glShaderBinary (GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void abcg::glShaderSource (GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilFunc (GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilMask (GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilMaskSeparate (GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilOp (GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
 
void abcg::glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameterf (GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameterfv (GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameteri (GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexParameteriv (GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1f (GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1i (GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2f (GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2i (GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3i (GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUseProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glValidateProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib1f (GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib1fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib2fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib3fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttrib4fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glViewport (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glReadBuffer (GLenum src, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenQueries (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteQueries (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsQuery (GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glBeginQuery (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glEndQuery (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetQueryiv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glUnmapBuffer (GLenum target, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferPointerv (GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawBuffers (GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
 
void abcg::glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
 
void * abcg::glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
 
void abcg::glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteVertexArrays (GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenVertexArrays (GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetIntegeri_v (GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glBeginTransformFeedback (GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
 
void abcg::glEndTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindBufferBase (GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void abcg::glTransformFeedbackVaryings (GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4iv (GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribI4uiv (GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformuiv (GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLint abcg::glGetFragDataLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1ui (GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2ui (GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform1uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform2uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform3uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniform4uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferiv (GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferuiv (GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferfv (GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void abcg::glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
 
const GLubyte * abcg::glGetStringi (GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
 
void abcg::glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetUniformIndices (GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLuint abcg::glGetUniformBlockIndex (GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void abcg::glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
void abcg::glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
GLsync abcg::glFenceSync (GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
GLenum abcg::glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void abcg::glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInteger64v (GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenSamplers (GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteSamplers (GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsSampler (GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindSampler (GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameteri (GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameteriv (GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void abcg::glSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glVertexAttribDivisor (GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindTransformFeedback (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glDeleteTransformFeedbacks (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
void abcg::glGenTransformFeedbacks (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean abcg::glIsTransformFeedback (GLuint id, source_location const &sourceLocation=source_location::current())
 
void abcg::glPauseTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glResumeTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void abcg::glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
 
void abcg::glProgramBinary (GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void abcg::glProgramParameteri (GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
 
void abcg::glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
 
void abcg::glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glBindFragDataLocation (GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void abcg::glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void abcg::glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
 
void abcg::glGetDoublev (GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
 
-

Detailed Description

-

Declaration of OpenGL-related error checking functions.

-

Error checking wrappers for OpenGL functions are defined here as inline functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp.js b/abcg/doc/html/abcg__opengl__function_8hpp.js deleted file mode 100644 index 8db4343ac..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp.js +++ /dev/null @@ -1,256 +0,0 @@ -var abcg__opengl__function_8hpp = -[ - [ "callGL", "abcg__opengl__function_8hpp.html#a59fd1679b061fafcc7c087404e3e3ed1", null ], - [ "checkGLError", "abcg__opengl__function_8hpp.html#a319c7bd437a23751054bc1d092d9e0ae", null ], - [ "glActiveTexture", "abcg__opengl__function_8hpp.html#abebf61480d8b46ad61238624521c440c", null ], - [ "glAttachShader", "abcg__opengl__function_8hpp.html#aadc675d08443dfb3f52d136d1e867c54", null ], - [ "glBeginQuery", "abcg__opengl__function_8hpp.html#a43ea888d5366cd13f8559ae5c45e503e", null ], - [ "glBeginTransformFeedback", "abcg__opengl__function_8hpp.html#a4284264dbf0f5c318686f11bce8183cf", null ], - [ "glBindAttribLocation", "abcg__opengl__function_8hpp.html#ae5d99843e0bc8a0c59503a2530d56d48", null ], - [ "glBindBuffer", "abcg__opengl__function_8hpp.html#a3cd63c5a736b0e401ad6e4ab6ea1ec41", null ], - [ "glBindBufferBase", "abcg__opengl__function_8hpp.html#aa48f81c11025d9e8fc04c681932392ad", null ], - [ "glBindBufferRange", "abcg__opengl__function_8hpp.html#a88b58e0a1d0a1aa9d68a0e19e78657ce", null ], - [ "glBindFragDataLocation", "abcg__opengl__function_8hpp.html#a3f007c8f6d4d4ed049b66e03328d5b30", null ], - [ "glBindFramebuffer", "abcg__opengl__function_8hpp.html#aaef0756c5e371e4b80f652586438b594", null ], - [ "glBindRenderbuffer", "abcg__opengl__function_8hpp.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e", null ], - [ "glBindSampler", "abcg__opengl__function_8hpp.html#afb3c84a308e303b503c6f0cdefd5f426", null ], - [ "glBindTexture", "abcg__opengl__function_8hpp.html#adb43c7b544c334de5da3f6c2c30570ae", null ], - [ "glBindTransformFeedback", "abcg__opengl__function_8hpp.html#a8881b494dbdda2e680d2abf82dccadd9", null ], - [ "glBindVertexArray", "abcg__opengl__function_8hpp.html#afe4c4f9e797dcd01910528c13ff471d4", null ], - [ "glBlendColor", "abcg__opengl__function_8hpp.html#af87c9f438750ec5baa88caa3e204469c", null ], - [ "glBlendEquation", "abcg__opengl__function_8hpp.html#afa82d1d244c12d3f884e674b79a04f3e", null ], - [ "glBlendEquationSeparate", "abcg__opengl__function_8hpp.html#a2e813667e01f4ea1e3a4ca5a16d4847e", null ], - [ "glBlendFunc", "abcg__opengl__function_8hpp.html#a620308c51e62a88d78f44312b8931947", null ], - [ "glBlendFuncSeparate", "abcg__opengl__function_8hpp.html#a1156c925b568620ac51f94893db587ac", null ], - [ "glBlitFramebuffer", "abcg__opengl__function_8hpp.html#aee53221fba9cbf13c75d78c9533da27b", null ], - [ "glBufferData", "abcg__opengl__function_8hpp.html#a402e5079e8489cb8df8e3a6c5fcdbebf", null ], - [ "glBufferSubData", "abcg__opengl__function_8hpp.html#af7091aa59a245999d277ec71e54b687f", null ], - [ "glCheckFramebufferStatus", "abcg__opengl__function_8hpp.html#a14b00e8df85dc5b1930b051be0f6a13d", null ], - [ "glClear", "abcg__opengl__function_8hpp.html#a37cf087e190d68ae489d69c1c7fb8c1a", null ], - [ "glClearBufferfi", "abcg__opengl__function_8hpp.html#afd3d4e6a15e37502f806875152c161ec", null ], - [ "glClearBufferfv", "abcg__opengl__function_8hpp.html#a4ee2c8db262e80410ae7a854d16c8637", null ], - [ "glClearBufferiv", "abcg__opengl__function_8hpp.html#a1b9de47c64a177ed5daf99eeee3c3f05", null ], - [ "glClearBufferuiv", "abcg__opengl__function_8hpp.html#a9e5f02ca43e19e99dc0681be375b453d", null ], - [ "glClearColor", "abcg__opengl__function_8hpp.html#a71881ed09c733ef5db9301bfee7a2f5f", null ], - [ "glClearDepthf", "abcg__opengl__function_8hpp.html#ace2477348a520f6b554b8b34662c53ac", null ], - [ "glClearStencil", "abcg__opengl__function_8hpp.html#a3a4d7f77a063949bb602ac36ecc44319", null ], - [ "glClientWaitSync", "abcg__opengl__function_8hpp.html#a4f8e59d6c10733d194fc5a329e52245f", null ], - [ "glColorMask", "abcg__opengl__function_8hpp.html#a41326750eb174903b1bf4119b7f33e96", null ], - [ "glCompileShader", "abcg__opengl__function_8hpp.html#a9ab713ec7c6e93a8f09b5278133dfcf7", null ], - [ "glCompressedTexImage2D", "abcg__opengl__function_8hpp.html#aca8b5cd79464cb9dcb6bc0c2261407f1", null ], - [ "glCompressedTexImage3D", "abcg__opengl__function_8hpp.html#ad7bbab39db44f5da2ba62fe1de5a9dba", null ], - [ "glCompressedTexSubImage2D", "abcg__opengl__function_8hpp.html#a7a481529107e6f722c37ac9d559fc671", null ], - [ "glCompressedTexSubImage3D", "abcg__opengl__function_8hpp.html#a96b8b60242b097fb74451d423dc79fae", null ], - [ "glCopyBufferSubData", "abcg__opengl__function_8hpp.html#a914c501ed0eff87b4474d1594ecc2f04", null ], - [ "glCopyTexImage2D", "abcg__opengl__function_8hpp.html#a8788882dedc9d5a598dfad1f21f9d6eb", null ], - [ "glCopyTexSubImage2D", "abcg__opengl__function_8hpp.html#ab7826bb1da6c947977b5644c00538540", null ], - [ "glCopyTexSubImage3D", "abcg__opengl__function_8hpp.html#a9c896be2e2c6b41db3e1f4891e27bf8d", null ], - [ "glCreateProgram", "abcg__opengl__function_8hpp.html#a2449fe3ff11796b682ca51d2611e0f8c", null ], - [ "glCreateShader", "abcg__opengl__function_8hpp.html#a62dfd7c0cdb61a2971697e3980094a0e", null ], - [ "glCullFace", "abcg__opengl__function_8hpp.html#a1daed0c2b70ea52f0436053095125e44", null ], - [ "glDeleteBuffers", "abcg__opengl__function_8hpp.html#aab8d9786020b3f0a4a3f3a969579741c", null ], - [ "glDeleteFramebuffers", "abcg__opengl__function_8hpp.html#a6c490c5eb7640f40ae09f87b0c52d81e", null ], - [ "glDeleteProgram", "abcg__opengl__function_8hpp.html#a1c0feac412868f91511bc6cee51c0472", null ], - [ "glDeleteQueries", "abcg__opengl__function_8hpp.html#a6ce400968a396129fa47a1f2afa4f3da", null ], - [ "glDeleteRenderbuffers", "abcg__opengl__function_8hpp.html#aecca79eb3f54538532577cf2a21e067f", null ], - [ "glDeleteSamplers", "abcg__opengl__function_8hpp.html#a8d2a8ddcaa0d34736ef16578f2d159a2", null ], - [ "glDeleteShader", "abcg__opengl__function_8hpp.html#ad378a150bf0c2b569ff5b22cd435acd6", null ], - [ "glDeleteSync", "abcg__opengl__function_8hpp.html#a2f41106aca8b0948e9fb61a623413d08", null ], - [ "glDeleteTextures", "abcg__opengl__function_8hpp.html#a71fd7066e8b3aba42012e4f0136adc63", null ], - [ "glDeleteTransformFeedbacks", "abcg__opengl__function_8hpp.html#a65fc031e96cb6e9c23237520f257e174", null ], - [ "glDeleteVertexArrays", "abcg__opengl__function_8hpp.html#a5c7dcb111f3c739f8948b80a4a2d23e2", null ], - [ "glDepthFunc", "abcg__opengl__function_8hpp.html#aa46fa714ee9925690a7bb07c3ef52df9", null ], - [ "glDepthMask", "abcg__opengl__function_8hpp.html#a2c2a12a15c7b445dcee3d8656ca6dfbc", null ], - [ "glDepthRangef", "abcg__opengl__function_8hpp.html#a08dbe7a21733bff43ed976be14f99e9b", null ], - [ "glDetachShader", "abcg__opengl__function_8hpp.html#a045bd908a5989d1ed1b6a4d28cc2bab6", null ], - [ "glDisable", "abcg__opengl__function_8hpp.html#a84963ee1cf3177d6f23ca4641daf8b9b", null ], - [ "glDisableVertexAttribArray", "abcg__opengl__function_8hpp.html#a953dfc9ac20750b998c1b320c9c3177e", null ], - [ "glDrawArrays", "abcg__opengl__function_8hpp.html#a47e3bd5f6dc82daa656e76b655940338", null ], - [ "glDrawArraysInstanced", "abcg__opengl__function_8hpp.html#a32f7f0c0ce76c25248271a64c2b8e52b", null ], - [ "glDrawBuffers", "abcg__opengl__function_8hpp.html#ae03a93e0f048e849bb5e37d712d7000c", null ], - [ "glDrawElements", "abcg__opengl__function_8hpp.html#abaa5a136840114161dd2dca5dcfce646", null ], - [ "glDrawElementsInstanced", "abcg__opengl__function_8hpp.html#a67e3ae359f4840a60501e01a7ce4fb49", null ], - [ "glDrawRangeElements", "abcg__opengl__function_8hpp.html#aa5e970181c35e076181628df29de48e5", null ], - [ "glEnable", "abcg__opengl__function_8hpp.html#a5ee5802eb4646b281e426e550658124f", null ], - [ "glEnableVertexAttribArray", "abcg__opengl__function_8hpp.html#a2b8c6c76fcc9d16e4a29551cac8f428f", null ], - [ "glEndQuery", "abcg__opengl__function_8hpp.html#acebb037ad49e0f3714436346cb370a3e", null ], - [ "glEndTransformFeedback", "abcg__opengl__function_8hpp.html#a1427186fdcf12b9897523589b1ddf20f", null ], - [ "glFenceSync", "abcg__opengl__function_8hpp.html#acf7bb9039752df88aba99ed50675ceb6", null ], - [ "glFinish", "abcg__opengl__function_8hpp.html#a94ad89b8ca10fc632d08f6c9d04d162e", null ], - [ "glFlush", "abcg__opengl__function_8hpp.html#ae0c6f2648cab3d1cd82a7ba910776e2b", null ], - [ "glFlushMappedBufferRange", "abcg__opengl__function_8hpp.html#a9280491505581f2f303c3f11442a9d8d", null ], - [ "glFramebufferRenderbuffer", "abcg__opengl__function_8hpp.html#a24715a37b830d861d7cdb1f2f24bd32d", null ], - [ "glFramebufferTexture", "abcg__opengl__function_8hpp.html#adb0766367e9364b01040121a4c2c79ed", null ], - [ "glFramebufferTexture2D", "abcg__opengl__function_8hpp.html#a47dba8957f7121ceccfde94363e707e4", null ], - [ "glFramebufferTextureLayer", "abcg__opengl__function_8hpp.html#a399dc5200ed4b1c5ba36bc3aaa58c508", null ], - [ "glFrontFace", "abcg__opengl__function_8hpp.html#a6fa8b701a9a5003498e663163fe68729", null ], - [ "glGenBuffers", "abcg__opengl__function_8hpp.html#a5df92f4a085d8bca0fd0c52feee0128a", null ], - [ "glGenerateMipmap", "abcg__opengl__function_8hpp.html#acc670193ec022e761c4af8976494ed07", null ], - [ "glGenFramebuffers", "abcg__opengl__function_8hpp.html#a5fb50995430e196812ba5fa75a9bf25a", null ], - [ "glGenQueries", "abcg__opengl__function_8hpp.html#a86c415c268d7669e07339991c608e60b", null ], - [ "glGenRenderbuffers", "abcg__opengl__function_8hpp.html#a4c9b0c886972e7d983e58c367787572c", null ], - [ "glGenSamplers", "abcg__opengl__function_8hpp.html#ada23095347757d96190b853daddf8434", null ], - [ "glGenTextures", "abcg__opengl__function_8hpp.html#ae1015bd07641da254a331d9b3238d96f", null ], - [ "glGenTransformFeedbacks", "abcg__opengl__function_8hpp.html#a251e7d7579160c8fad43d5ce06ee9b06", null ], - [ "glGenVertexArrays", "abcg__opengl__function_8hpp.html#a7cc7561e9541d7841342173bec200d0d", null ], - [ "glGetActiveAttrib", "abcg__opengl__function_8hpp.html#ae0cdaa8143c25fdc5dd90b375a362816", null ], - [ "glGetActiveUniform", "abcg__opengl__function_8hpp.html#ac5aac5887d3a23fdd9e62db27eac53db", null ], - [ "glGetActiveUniformBlockiv", "abcg__opengl__function_8hpp.html#aac48b45e3026be3bc4270b9b98dd1b81", null ], - [ "glGetActiveUniformBlockName", "abcg__opengl__function_8hpp.html#a242378c05d9480103f5375c8a8826c28", null ], - [ "glGetActiveUniformsiv", "abcg__opengl__function_8hpp.html#aaf5e44d65badbc70664b1f392b0fb36f", null ], - [ "glGetAttachedShaders", "abcg__opengl__function_8hpp.html#a69e507a360bcf1ef4061f8c9a2731727", null ], - [ "glGetAttribLocation", "abcg__opengl__function_8hpp.html#aa28b9cf639287662cb747a5f48e62ac7", null ], - [ "glGetBooleanv", "abcg__opengl__function_8hpp.html#a96a319c6482b3dfc7e3375e5d2339ea8", null ], - [ "glGetBufferParameteri64v", "abcg__opengl__function_8hpp.html#a6b33c9c6944be9a18490575915090e22", null ], - [ "glGetBufferParameteriv", "abcg__opengl__function_8hpp.html#ac96ad909a86ceba40b0a92e7b227f992", null ], - [ "glGetBufferPointerv", "abcg__opengl__function_8hpp.html#ada9205a4af5b2d12c78c16b5176a6a82", null ], - [ "glGetDoublev", "abcg__opengl__function_8hpp.html#a8bd8be541ec50d33e34248aecd3f25b7", null ], - [ "glGetFloatv", "abcg__opengl__function_8hpp.html#af0c9e138d135378a3de00663c616cf46", null ], - [ "glGetFragDataLocation", "abcg__opengl__function_8hpp.html#a1468aeed842d55a612da7a8257f5006f", null ], - [ "glGetFramebufferAttachmentParameteriv", "abcg__opengl__function_8hpp.html#a4c721ad9d476be58c7fcc04da120288b", null ], - [ "glGetInteger64i_v", "abcg__opengl__function_8hpp.html#ac2e13dc4a2ded3237be1ca90bad68d4e", null ], - [ "glGetInteger64v", "abcg__opengl__function_8hpp.html#a59ea90fe9ec82ae3af1b3a29fe98de3f", null ], - [ "glGetIntegeri_v", "abcg__opengl__function_8hpp.html#ab3e060569fa74e0509c2a28806e4a847", null ], - [ "glGetIntegerv", "abcg__opengl__function_8hpp.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5", null ], - [ "glGetInternalformativ", "abcg__opengl__function_8hpp.html#a56430f42fc367519455b993473579b79", null ], - [ "glGetProgramBinary", "abcg__opengl__function_8hpp.html#a70e991b998cd93d8ae0cdf86a145ed37", null ], - [ "glGetProgramInfoLog", "abcg__opengl__function_8hpp.html#a9169273965372bf17961bafe2cd37f8c", null ], - [ "glGetProgramiv", "abcg__opengl__function_8hpp.html#afa031f5f52ad88625a88e1410478d892", null ], - [ "glGetQueryiv", "abcg__opengl__function_8hpp.html#a9c6d035dae7a9d2137cc484b6704f0c9", null ], - [ "glGetQueryObjectuiv", "abcg__opengl__function_8hpp.html#a73910bf72dd61e452b1776b00cdd7972", null ], - [ "glGetRenderbufferParameteriv", "abcg__opengl__function_8hpp.html#a3c9dd56405aa600ef77b3194ddec1c52", null ], - [ "glGetSamplerParameterfv", "abcg__opengl__function_8hpp.html#aa444f01ece43218d34ad9256c88eddf5", null ], - [ "glGetSamplerParameteriv", "abcg__opengl__function_8hpp.html#ae6ea1aa7744033cbe3a10ec3b646e30d", null ], - [ "glGetShaderInfoLog", "abcg__opengl__function_8hpp.html#a86aec026f1d1e876c7f47dfca141bc03", null ], - [ "glGetShaderiv", "abcg__opengl__function_8hpp.html#aa074570fbd8a39ce2e899245b407044b", null ], - [ "glGetShaderPrecisionFormat", "abcg__opengl__function_8hpp.html#a0690d7a9fb1fbe27f1630b51a6ef506f", null ], - [ "glGetShaderSource", "abcg__opengl__function_8hpp.html#abe63fd43e8ff35c953ca7a58a9f50f24", null ], - [ "glGetString", "abcg__opengl__function_8hpp.html#af419f0698487fc55f9fd8b7a424eb633", null ], - [ "glGetStringi", "abcg__opengl__function_8hpp.html#ac2b042cb4fcd350f3efd9925f90bb068", null ], - [ "glGetSynciv", "abcg__opengl__function_8hpp.html#a57fa9fe8caf214671576ed55b06f239f", null ], - [ "glGetTexLevelParameterfv", "abcg__opengl__function_8hpp.html#a720dffe7d97e8ebaba17b6d87583fd59", null ], - [ "glGetTexLevelParameteriv", "abcg__opengl__function_8hpp.html#aee3c58bf82ea8186bfab4f2942997022", null ], - [ "glGetTexParameterfv", "abcg__opengl__function_8hpp.html#a4a8a224da5a79b1029605b7e77218e7c", null ], - [ "glGetTexParameteriv", "abcg__opengl__function_8hpp.html#ac768bcd240c1d1ad80589e5a248408df", null ], - [ "glGetTransformFeedbackVarying", "abcg__opengl__function_8hpp.html#a9a5c4567cf69ddd662085c0f86b37fa4", null ], - [ "glGetUniformBlockIndex", "abcg__opengl__function_8hpp.html#a6710abf9cdd9e78d00280c40a56058da", null ], - [ "glGetUniformfv", "abcg__opengl__function_8hpp.html#ae51c6519e4ba4b2a237c148d5606d76c", null ], - [ "glGetUniformIndices", "abcg__opengl__function_8hpp.html#ace8f774eff785ea7e9f90c1c6b8e4425", null ], - [ "glGetUniformiv", "abcg__opengl__function_8hpp.html#a3ed72ff0a3751e87af8369466f3a1cbf", null ], - [ "glGetUniformLocation", "abcg__opengl__function_8hpp.html#a22cb6b45a1ae2153d289a0ee3ac7729a", null ], - [ "glGetUniformuiv", "abcg__opengl__function_8hpp.html#acffb14045c39d65f3f8bead758313fbc", null ], - [ "glGetVertexAttribfv", "abcg__opengl__function_8hpp.html#aedab4d42e7085a4bab268099b2d1346d", null ], - [ "glGetVertexAttribIiv", "abcg__opengl__function_8hpp.html#ad31542472e21428d05473b3ebe2489ee", null ], - [ "glGetVertexAttribIuiv", "abcg__opengl__function_8hpp.html#a6a360138b05890b13f8439344e08512f", null ], - [ "glGetVertexAttribiv", "abcg__opengl__function_8hpp.html#a78e9cb3ed811f7863b4a0c304a9fb278", null ], - [ "glGetVertexAttribPointerv", "abcg__opengl__function_8hpp.html#aca5b82d3582454e73b1a86192124d485", null ], - [ "glHint", "abcg__opengl__function_8hpp.html#a97c884a2a934bf40d378024d81be625e", null ], - [ "glInvalidateFramebuffer", "abcg__opengl__function_8hpp.html#a619e3d0de44a879aa6db3054c39130ec", null ], - [ "glInvalidateSubFramebuffer", "abcg__opengl__function_8hpp.html#a47b7481c9fc066c9cd54a0f010258818", null ], - [ "glIsBuffer", "abcg__opengl__function_8hpp.html#afb123afaf46459222024ea041cac15c7", null ], - [ "glIsEnabled", "abcg__opengl__function_8hpp.html#a2355d26ca6b32f64dd502ba787074e95", null ], - [ "glIsFramebuffer", "abcg__opengl__function_8hpp.html#abde059e7926e418ee7676f612480ca2e", null ], - [ "glIsProgram", "abcg__opengl__function_8hpp.html#ad8512fcd1782c81aaa121cd7e6c561d1", null ], - [ "glIsQuery", "abcg__opengl__function_8hpp.html#a7a5eac1646a59b2c8de24b4862d3b2d9", null ], - [ "glIsRenderbuffer", "abcg__opengl__function_8hpp.html#a15acb0b1b9464f294f99aa989c44dc70", null ], - [ "glIsSampler", "abcg__opengl__function_8hpp.html#ad85c0ff02a8b681ecb188752dd8ce9c0", null ], - [ "glIsShader", "abcg__opengl__function_8hpp.html#a36db9b553f7422ea79b751c5763d194c", null ], - [ "glIsSync", "abcg__opengl__function_8hpp.html#a6e39dbba1c1d91b8df99ab60da87c364", null ], - [ "glIsTexture", "abcg__opengl__function_8hpp.html#a913e9b053d880a383d8bf3d55cb5ead3", null ], - [ "glIsTransformFeedback", "abcg__opengl__function_8hpp.html#aed892da4fd2e2517f53ca8c902d36a31", null ], - [ "glIsVertexArray", "abcg__opengl__function_8hpp.html#a5afdcd1166d09049b9bea8f425bbd0db", null ], - [ "glLineWidth", "abcg__opengl__function_8hpp.html#aba2cae07b1fe8e188ff0fcc76ec9db8b", null ], - [ "glLinkProgram", "abcg__opengl__function_8hpp.html#af84c0f4d0816181cba506f1703c037c2", null ], - [ "glMapBufferRange", "abcg__opengl__function_8hpp.html#aaa863c0c9f439036f6d2b58e375ee105", null ], - [ "glPauseTransformFeedback", "abcg__opengl__function_8hpp.html#a03d850c93d16ad308516bb83bb8ffa0d", null ], - [ "glPixelStorei", "abcg__opengl__function_8hpp.html#a05ece875ff476f630548c8cf7a0d952b", null ], - [ "glPolygonOffset", "abcg__opengl__function_8hpp.html#afa173d8901021cb88486592fcc300a14", null ], - [ "glProgramBinary", "abcg__opengl__function_8hpp.html#aa836ddfde2ab9014c8322a66b1fc5bcc", null ], - [ "glProgramParameteri", "abcg__opengl__function_8hpp.html#ae48fb31c3e26632acba7e1a9753ee5c9", null ], - [ "glReadBuffer", "abcg__opengl__function_8hpp.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f", null ], - [ "glReadPixels", "abcg__opengl__function_8hpp.html#ae8720c564832cd331d886e24aaf68c29", null ], - [ "glReleaseShaderCompiler", "abcg__opengl__function_8hpp.html#a3e97ab629b7cc5d4c7259e521ebe5fb7", null ], - [ "glRenderbufferStorage", "abcg__opengl__function_8hpp.html#aae32d699a30865e7aa4c4de786a1d593", null ], - [ "glRenderbufferStorageMultisample", "abcg__opengl__function_8hpp.html#aee93697e0e0b92b0b73a9c374d4afff0", null ], - [ "glResumeTransformFeedback", "abcg__opengl__function_8hpp.html#a81e93970a280fc3782f7577db7060458", null ], - [ "glSampleCoverage", "abcg__opengl__function_8hpp.html#adee87442b65fa46fe96cceb6a21d496a", null ], - [ "glSamplerParameterf", "abcg__opengl__function_8hpp.html#aa12216132f4a0242e7f0882c99bc98ad", null ], - [ "glSamplerParameterfv", "abcg__opengl__function_8hpp.html#a03ba96b4728e99b4f58cce1f3e102b49", null ], - [ "glSamplerParameteri", "abcg__opengl__function_8hpp.html#ae9971e1b8abb781440101bac0968a897", null ], - [ "glSamplerParameteriv", "abcg__opengl__function_8hpp.html#a304af29cf7db15205236d97e1836e79a", null ], - [ "glScissor", "abcg__opengl__function_8hpp.html#ae1a3e82a002194c222284c5588998cfb", null ], - [ "glShaderBinary", "abcg__opengl__function_8hpp.html#af1c355ed607c699a2fbe6b56454b84db", null ], - [ "glShaderSource", "abcg__opengl__function_8hpp.html#a828f4d3a0f75f391780765df28ce8914", null ], - [ "glStencilFunc", "abcg__opengl__function_8hpp.html#ad1bc3b8d63e3b65fc3a1222ce789db3a", null ], - [ "glStencilFuncSeparate", "abcg__opengl__function_8hpp.html#a10f604e428c78fad5ca881ecae15f9df", null ], - [ "glStencilMask", "abcg__opengl__function_8hpp.html#a1f1123ce5bc6fade14962343ad3395f0", null ], - [ "glStencilMaskSeparate", "abcg__opengl__function_8hpp.html#aadbe72b51aec2a1355ab4a9fc312043c", null ], - [ "glStencilOp", "abcg__opengl__function_8hpp.html#a7b172b6de78b247898a24c61d6d1d25f", null ], - [ "glStencilOpSeparate", "abcg__opengl__function_8hpp.html#a86ed23edfe4b5ef502fe321f5a40b706", null ], - [ "glTexImage2D", "abcg__opengl__function_8hpp.html#ae220fd2c2bd61130ace06f851609903d", null ], - [ "glTexImage2DMultisample", "abcg__opengl__function_8hpp.html#aea5f1cc76074ee940772a749cd1b57ad", null ], - [ "glTexImage3D", "abcg__opengl__function_8hpp.html#a55111fa9ae85db9d5c62854dc5cfb735", null ], - [ "glTexParameterf", "abcg__opengl__function_8hpp.html#a3d91ea0fc162e4a0f5f6060418b6d61c", null ], - [ "glTexParameterfv", "abcg__opengl__function_8hpp.html#a9f00bcbf608a6489e1bcbffe964574ea", null ], - [ "glTexParameteri", "abcg__opengl__function_8hpp.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b", null ], - [ "glTexParameteriv", "abcg__opengl__function_8hpp.html#aa4c561c1f3f974025cbf25837f5b0b41", null ], - [ "glTexStorage2D", "abcg__opengl__function_8hpp.html#a4573fb1a4dd47d4a692b4602a4009918", null ], - [ "glTexStorage3D", "abcg__opengl__function_8hpp.html#af9d8885c892cfeadf62c7280254d57f9", null ], - [ "glTexSubImage2D", "abcg__opengl__function_8hpp.html#a7ff895f0b4b215b432009d5a23645b34", null ], - [ "glTexSubImage3D", "abcg__opengl__function_8hpp.html#a7aaad5778d19c5cc07e1259010dd406a", null ], - [ "glTransformFeedbackVaryings", "abcg__opengl__function_8hpp.html#a0f8299d53f2d5e195444be565301462c", null ], - [ "glUniform1f", "abcg__opengl__function_8hpp.html#a6f815dac65a78efa2afda323b1cadec9", null ], - [ "glUniform1fv", "abcg__opengl__function_8hpp.html#a0a55fd40d1c8f2dfc0fd072e5b2c5ebc", null ], - [ "glUniform1i", "abcg__opengl__function_8hpp.html#a17c9ec119f0c1c6d101a042131774ef9", null ], - [ "glUniform1iv", "abcg__opengl__function_8hpp.html#a2ac0fcc475813238eec19657e6d4899d", null ], - [ "glUniform1ui", "abcg__opengl__function_8hpp.html#a4566f93a590c2437fab4c2ac07ea1454", null ], - [ "glUniform1uiv", "abcg__opengl__function_8hpp.html#ae712e6a279573982c1c5e7c569a47add", null ], - [ "glUniform2f", "abcg__opengl__function_8hpp.html#aeed384502019a1ea9c53c5f79387f4a6", null ], - [ "glUniform2fv", "abcg__opengl__function_8hpp.html#aba238c1971fc805fb79cc9249a4b3979", null ], - [ "glUniform2i", "abcg__opengl__function_8hpp.html#ab923c4f8e4b6a7928d41e2c557083938", null ], - [ "glUniform2iv", "abcg__opengl__function_8hpp.html#adf14dfa164b234c7fbed7b45426b2d62", null ], - [ "glUniform2ui", "abcg__opengl__function_8hpp.html#ac9593131eae76be863d98795053363c5", null ], - [ "glUniform2uiv", "abcg__opengl__function_8hpp.html#abeafef647d9a881976fb42ecc4756c8d", null ], - [ "glUniform3f", "abcg__opengl__function_8hpp.html#a3ac2b6654fcb536e3d89e695b84d0229", null ], - [ "glUniform3fv", "abcg__opengl__function_8hpp.html#a97188797e9d2d99c779647cc2e3b1188", null ], - [ "glUniform3i", "abcg__opengl__function_8hpp.html#a8e3f7eba54f08608b79aa8f3b469a970", null ], - [ "glUniform3iv", "abcg__opengl__function_8hpp.html#a99d565ab142c3aade17d3bf0165dc348", null ], - [ "glUniform3ui", "abcg__opengl__function_8hpp.html#aea378f4807f17ed76e8129260b35c1a1", null ], - [ "glUniform3uiv", "abcg__opengl__function_8hpp.html#a15c8e64b115ca61dc7bd460af8447497", null ], - [ "glUniform4f", "abcg__opengl__function_8hpp.html#a26ef61adcd575428307b9b9a92dc618c", null ], - [ "glUniform4fv", "abcg__opengl__function_8hpp.html#a3dbe8b9316fce91031a864a1a7b91497", null ], - [ "glUniform4i", "abcg__opengl__function_8hpp.html#a3276a3ae4b0740216d4850df60881cfe", null ], - [ "glUniform4iv", "abcg__opengl__function_8hpp.html#afb64d90352e53e92718dd7f10a2822a6", null ], - [ "glUniform4ui", "abcg__opengl__function_8hpp.html#a506182a6eb4e8158ee10567344152470", null ], - [ "glUniform4uiv", "abcg__opengl__function_8hpp.html#ac21f205c4a058a639fd695c4b4bf76fc", null ], - [ "glUniformBlockBinding", "abcg__opengl__function_8hpp.html#a81f720eec72780a58bf7719461d97971", null ], - [ "glUniformMatrix2fv", "abcg__opengl__function_8hpp.html#abc150697687bc94d1ec422a5f2db1b88", null ], - [ "glUniformMatrix2x3fv", "abcg__opengl__function_8hpp.html#ad53649314374711d76ff0b032950e9d2", null ], - [ "glUniformMatrix2x4fv", "abcg__opengl__function_8hpp.html#ae942855746c560463aed347013e2e84f", null ], - [ "glUniformMatrix3fv", "abcg__opengl__function_8hpp.html#a5f5c89006586583bd0cbabbace3a1d94", null ], - [ "glUniformMatrix3x2fv", "abcg__opengl__function_8hpp.html#abb0b676883c3e5c717cea345b043a372", null ], - [ "glUniformMatrix3x4fv", "abcg__opengl__function_8hpp.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132", null ], - [ "glUniformMatrix4fv", "abcg__opengl__function_8hpp.html#a640ca79d0f9c8636c4161cea447a361d", null ], - [ "glUniformMatrix4x2fv", "abcg__opengl__function_8hpp.html#a549e5d5f67f44712248cf3e26af0ddd6", null ], - [ "glUniformMatrix4x3fv", "abcg__opengl__function_8hpp.html#a2a4e0b3c0401e2a85fe389191c5d768f", null ], - [ "glUnmapBuffer", "abcg__opengl__function_8hpp.html#a1f475772cbe67c5b2370ef179c99b614", null ], - [ "glUseProgram", "abcg__opengl__function_8hpp.html#ac050825096a0ef3f71c0dd6452f9dfc0", null ], - [ "glValidateProgram", "abcg__opengl__function_8hpp.html#a4ca1b9c8efcec40ef7506d115807a252", null ], - [ "glVertexAttrib1f", "abcg__opengl__function_8hpp.html#af725d24a5b6b6483d1cd3420dc6ec011", null ], - [ "glVertexAttrib1fv", "abcg__opengl__function_8hpp.html#aeff647ce94259b8e0fbe731595cf1931", null ], - [ "glVertexAttrib2f", "abcg__opengl__function_8hpp.html#ab0c88524f1c60a35e818cd6f8902c2e7", null ], - [ "glVertexAttrib2fv", "abcg__opengl__function_8hpp.html#a3be34bb76d1f704893e5ae334488f372", null ], - [ "glVertexAttrib3f", "abcg__opengl__function_8hpp.html#afa1466dac879205506b78b021aafff27", null ], - [ "glVertexAttrib3fv", "abcg__opengl__function_8hpp.html#aad00233878a4e63de78696409cb8cfe7", null ], - [ "glVertexAttrib4f", "abcg__opengl__function_8hpp.html#a16e4ed4c33c7e9abd8eb412c422c7f8a", null ], - [ "glVertexAttrib4fv", "abcg__opengl__function_8hpp.html#af15b80a8f2eb74ae9de6f26996d3d51d", null ], - [ "glVertexAttribDivisor", "abcg__opengl__function_8hpp.html#a6bc99961c0b460aff0c6176e08667ad5", null ], - [ "glVertexAttribI4i", "abcg__opengl__function_8hpp.html#a298da5e81cd558e36acc8517f183330a", null ], - [ "glVertexAttribI4iv", "abcg__opengl__function_8hpp.html#a2f957d37e18d6883d73b0c4d81c7925f", null ], - [ "glVertexAttribI4ui", "abcg__opengl__function_8hpp.html#a3f20fa49edff456e65bcbbfc40befa92", null ], - [ "glVertexAttribI4uiv", "abcg__opengl__function_8hpp.html#ac1ce439bbbfbaca867e112c7c75fdf2e", null ], - [ "glVertexAttribIPointer", "abcg__opengl__function_8hpp.html#aa76792de0db9acdbb75c5b7a228dc022", null ], - [ "glVertexAttribPointer", "abcg__opengl__function_8hpp.html#af56cc0ad4060e65221188cfa41a59168", null ], - [ "glViewport", "abcg__opengl__function_8hpp.html#a4488c395e82a5408c4321a611f039c78", null ], - [ "glWaitSync", "abcg__opengl__function_8hpp.html#a14893e8222fcaac3d07be752b3c72c04", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.map deleted file mode 100644 index 99bdca83b..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.md5 deleted file mode 100644 index 0653329b9..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -72bb2d2c81530cc245c17e06edafb7b5 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.svg deleted file mode 100644 index 72c2e9bf4..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__dep__incl.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node3->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node3->Node5 - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__incl.map b/abcg/doc/html/abcg__opengl__function_8hpp__incl.map deleted file mode 100644 index 967a3420f..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl__function_8hpp__incl.md5 deleted file mode 100644 index 753c1c618..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -28d904d69db7bc982716f115317f1c2a \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__function_8hpp__incl.svg b/abcg/doc/html/abcg__opengl__function_8hpp__incl.svg deleted file mode 100644 index 9e8711bbe..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp__incl.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_function.hpp - - - - - -Node2 - - -source_location - - - - - -Node1->Node2 - - - - - -Node3 - - -string_view - - - - - -Node1->Node3 - - - - - -Node4 - - -type_traits - - - - - -Node1->Node4 - - - - - -Node5 - - -abcg_opengl_external.hpp - - - - - -Node1->Node5 - - - - - diff --git a/abcg/doc/html/abcg__opengl__function_8hpp_source.html b/abcg/doc/html/abcg__opengl__function_8hpp_source.html deleted file mode 100644 index 6e1b71ee5..000000000 --- a/abcg/doc/html/abcg__opengl__function_8hpp_source.html +++ /dev/null @@ -1,1820 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_function.hpp
-
-
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_OPENGL_FUNCTION_HPP_
-
15 #define ABCG_OPENGL_FUNCTION_HPP_
-
16 
-
17 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
18 #if __clang__
-
19 #include <experimental/source_location>
-
20 namespace abcg {
- -
22 } // namespace abcg
-
23 #else
-
24 #include <source_location>
-
25 namespace abcg {
- -
27 } // namespace abcg
-
28 #endif
-
29 #endif
-
30 
-
31 #include <string_view>
-
32 #include <type_traits>
-
33 
-
34 #include "abcg_opengl_external.hpp"
-
35 
-
36 #if defined(_MSC_VER)
-
37 // Disable "unreachable code" warnings for the case callGl is not specialized
-
38 // for functions that return void
-
39 #pragma warning(push)
-
40 #pragma warning(disable : 4702)
-
41 #endif
-
42 
-
43 namespace abcg {
-
44 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
45 
-
46 void checkGLError(source_location const &sourceLocation,
-
47  std::string_view appendString);
-
48 
-
61 template <typename TFun, typename... TArgs>
-
62 auto callGL(source_location const &sourceLocation, TFun &&function,
-
63  TArgs &&...args) {
-
64  checkGLError(sourceLocation, "BEFORE function call");
-
65  if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
-
66  // Specialization for functions that do not return void
-
67  auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
-
68  checkGLError(sourceLocation, "AFTER function call");
-
69  return res;
-
70  }
-
71  // Specialization for functions that return void
-
72  std::forward<TFun>(function)(std::forward<TArgs>(args)...);
-
73  checkGLError(sourceLocation, "AFTER function call");
-
74 }
-
75 
-
76 #else
-
77 
-
78 struct source_location {
-
79  constexpr static source_location current() noexcept {
-
80  return source_location{};
-
81  }
-
82 };
-
83 
-
95 template <typename TFun, typename... TArgs>
-
96 auto callGL([[maybe_unused]] source_location, TFun &&function,
-
97  TArgs &&...args) {
-
98  if constexpr (!std::is_void_v<std::invoke_result_t<TFun, TArgs...>>) {
-
99  // Specialization for functions that do not return void
-
100  auto &&res{std::forward<TFun>(function)(std::forward<TArgs>(args)...)};
-
101  return res;
-
102  }
-
103  // Specialization for functions that return void
-
104  std::forward<TFun>(function)(std::forward<TArgs>(args)...);
-
105 }
-
106 #endif
-
107 
-
108 // NOLINTBEGIN(readability-identifier-length)
-
109 
-
110 // OpenGL ES 2.0 function definitions
-
111 
-
112 inline void glActiveTexture(
-
113  GLenum texture,
-
114  source_location const &sourceLocation = source_location::current()) {
-
115  callGL(sourceLocation, ::glActiveTexture, texture);
-
116 }
-
117 inline void glAttachShader(
-
118  GLuint program, GLuint shader,
-
119  source_location const &sourceLocation = source_location::current()) {
-
120  callGL(sourceLocation, ::glAttachShader, program, shader);
-
121 }
- -
123  GLuint program, GLuint index, GLchar const *name,
-
124  source_location const &sourceLocation = source_location::current()) {
-
125  callGL(sourceLocation, ::glBindAttribLocation, program, index, name);
-
126 }
-
127 inline void glBindBuffer(
-
128  GLenum target, GLuint buffer,
-
129  source_location const &sourceLocation = source_location::current()) {
-
130  callGL(sourceLocation, ::glBindBuffer, target, buffer);
-
131 }
-
132 inline void glBindFramebuffer(
-
133  GLenum target, GLuint framebuffer,
-
134  source_location const &sourceLocation = source_location::current()) {
-
135  callGL(sourceLocation, ::glBindFramebuffer, target, framebuffer);
-
136 }
-
137 inline void glBindRenderbuffer(
-
138  GLenum target, GLuint renderbuffer,
-
139  source_location const &sourceLocation = source_location::current()) {
-
140  callGL(sourceLocation, ::glBindRenderbuffer, target, renderbuffer);
-
141 }
-
142 inline void glBindTexture(
-
143  GLenum target, GLuint texture,
-
144  source_location const &sourceLocation = source_location::current()) {
-
145  callGL(sourceLocation, ::glBindTexture, target, texture);
-
146 }
-
147 inline void glBlendColor(
-
148  GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha,
-
149  source_location const &sourceLocation = source_location::current()) {
-
150  callGL(sourceLocation, ::glBlendColor, red, green, blue, alpha);
-
151 }
-
152 inline void glBlendEquation(GLenum mode, source_location const &sourceLocation =
-
153  source_location::current()) {
-
154  callGL(sourceLocation, ::glBlendEquation, mode);
-
155 }
- -
157  GLenum modeRGB, GLenum modeAlpha,
-
158  source_location const &sourceLocation = source_location::current()) {
-
159  callGL(sourceLocation, ::glBlendEquationSeparate, modeRGB, modeAlpha);
-
160 }
-
161 inline void glBlendFunc(
-
162  GLenum sfactor, GLenum dfactor,
-
163  source_location const &sourceLocation = source_location::current()) {
-
164  callGL(sourceLocation, ::glBlendFunc, sfactor, dfactor);
-
165 }
- -
167  GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha,
-
168  source_location const &sourceLocation = source_location::current()) {
-
169  callGL(sourceLocation, ::glBlendFuncSeparate, srcRGB, dstRGB, srcAlpha,
-
170  dstAlpha);
-
171 }
-
172 inline void glBufferData(
-
173  GLenum target, GLsizeiptr size, void const *data, GLenum usage,
-
174  source_location const &sourceLocation = source_location::current()) {
-
175  callGL(sourceLocation, ::glBufferData, target, size, data, usage);
-
176 }
-
177 inline void glBufferSubData(
-
178  GLenum target, GLintptr offset, GLsizeiptr size, void const *data,
-
179  source_location const &sourceLocation = source_location::current()) {
-
180  callGL(sourceLocation, ::glBufferSubData, target, offset, size, data);
-
181 }
- -
183  GLenum target,
-
184  source_location const &sourceLocation = source_location::current()) {
-
185  return callGL(sourceLocation, ::glCheckFramebufferStatus, target);
-
186 }
-
187 inline void
-
188 glClear(GLbitfield mask,
-
189  source_location const &sourceLocation = source_location::current()) {
-
190  callGL(sourceLocation, ::glClear, mask);
-
191 }
-
192 inline void glClearColor(
-
193  GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha,
-
194  source_location const &sourceLocation = source_location::current()) {
-
195  callGL(sourceLocation, ::glClearColor, red, green, blue, alpha);
-
196 }
-
197 inline void glClearDepthf(GLfloat d, source_location const &sourceLocation =
-
198  source_location::current()) {
-
199  callGL(sourceLocation, ::glClearDepthf, d);
-
200 }
-
201 inline void glClearStencil(GLint s, source_location const &sourceLocation =
-
202  source_location::current()) {
-
203  callGL(sourceLocation, ::glClearStencil, s);
-
204 }
-
205 inline void glColorMask(
-
206  GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha,
-
207  source_location const &sourceLocation = source_location::current()) {
-
208  callGL(sourceLocation, ::glColorMask, red, green, blue, alpha);
-
209 }
-
210 inline void glCompileShader(
-
211  GLuint shader,
-
212  source_location const &sourceLocation = source_location::current()) {
-
213  callGL(sourceLocation, ::glCompileShader, shader);
-
214 }
- -
216  GLenum target, GLint level, GLenum internalformat, GLsizei width,
-
217  GLsizei height, GLint border, GLsizei imageSize, void const *data,
-
218  source_location const &sourceLocation = source_location::current()) {
-
219  callGL(sourceLocation, ::glCompressedTexImage2D, target, level,
-
220  internalformat, width, height, border, imageSize, data);
-
221 }
- -
223  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
-
224  GLsizei height, GLenum format, GLsizei imageSize, void const *data,
-
225  source_location const &sourceLocation = source_location::current()) {
-
226  callGL(sourceLocation, ::glCompressedTexSubImage2D, target, level, xoffset,
-
227  yoffset, width, height, format, imageSize, data);
-
228 }
-
229 inline void glCopyTexImage2D(
-
230  GLenum target, GLint level, GLenum internalformat, GLint x, GLint y,
-
231  GLsizei width, GLsizei height, GLint border,
-
232  source_location const &sourceLocation = source_location::current()) {
-
233  callGL(sourceLocation, ::glCopyTexImage2D, target, level, internalformat, x,
-
234  y, width, height, border);
-
235 }
- -
237  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y,
-
238  GLsizei width, GLsizei height,
-
239  source_location const &sourceLocation = source_location::current()) {
-
240  callGL(sourceLocation, ::glCopyTexSubImage2D, target, level, xoffset, yoffset,
-
241  x, y, width, height);
-
242 }
-
243 inline GLuint glCreateProgram(
-
244  source_location const &sourceLocation = source_location::current()) {
-
245  return callGL(sourceLocation, ::glCreateProgram);
-
246 }
-
247 inline GLuint glCreateShader(
-
248  GLenum shaderType,
-
249  source_location const &sourceLocation = source_location::current()) {
-
250  return callGL(sourceLocation, ::glCreateShader, shaderType);
-
251 }
-
252 inline void
-
253 glCullFace(GLenum mode,
-
254  source_location const &sourceLocation = source_location::current()) {
-
255  return callGL(sourceLocation, ::glCullFace, mode);
-
256 }
-
257 inline void glDeleteBuffers(
-
258  GLsizei n, const GLuint *buffers,
-
259  source_location const &sourceLocation = source_location::current()) {
-
260  if (buffers == nullptr || *buffers == 0)
-
261  return;
-
262  callGL(sourceLocation, ::glDeleteBuffers, n, buffers);
-
263 }
- -
265  GLsizei n, GLuint const *framebuffers,
-
266  source_location const &sourceLocation = source_location::current()) {
-
267  if (framebuffers == nullptr || *framebuffers == 0)
-
268  return;
-
269  callGL(sourceLocation, ::glDeleteFramebuffers, n, framebuffers);
-
270 }
-
271 inline void glDeleteProgram(
-
272  GLuint program,
-
273  source_location const &sourceLocation = source_location::current()) {
-
274  if (program == 0)
-
275  return;
-
276  callGL(sourceLocation, ::glDeleteProgram, program);
-
277 }
- -
279  GLsizei n, GLuint *renderbuffers,
-
280  source_location const &sourceLocation = source_location::current()) {
-
281  if (renderbuffers == nullptr || *renderbuffers == 0)
-
282  return;
-
283  callGL(sourceLocation, ::glDeleteRenderbuffers, n, renderbuffers);
-
284 }
-
285 inline void glDeleteShader(
-
286  GLuint shader,
-
287  source_location const &sourceLocation = source_location::current()) {
-
288  if (shader == 0)
-
289  return;
-
290  callGL(sourceLocation, ::glDeleteShader, shader);
-
291 }
-
292 inline void glDeleteTextures(
-
293  GLsizei n, GLuint const *textures,
-
294  source_location const &sourceLocation = source_location::current()) {
-
295  if (textures == nullptr || *textures == 0)
-
296  return;
-
297  callGL(sourceLocation, ::glDeleteTextures, n, textures);
-
298 }
-
299 inline void glDepthFunc(GLenum func, source_location const &sourceLocation =
-
300  source_location::current()) {
-
301  callGL(sourceLocation, ::glDepthFunc, func);
-
302 }
-
303 inline void glDepthMask(GLboolean flag, source_location const &sourceLocation =
-
304  source_location::current()) {
-
305  callGL(sourceLocation, ::glDepthMask, flag);
-
306 }
-
307 inline void glDepthRangef(
-
308  GLfloat n, GLfloat f,
-
309  source_location const &sourceLocation = source_location::current()) {
-
310  callGL(sourceLocation, ::glDepthRangef, n, f);
-
311 }
-
312 inline void glDetachShader(
-
313  GLuint program, GLuint shader,
-
314  source_location const &sourceLocation = source_location::current()) {
-
315  callGL(sourceLocation, ::glDetachShader, program, shader);
-
316 }
-
317 inline void
-
318 glDisable(GLenum cap,
-
319  source_location const &sourceLocation = source_location::current()) {
-
320  callGL(sourceLocation, ::glDisable, cap);
-
321 }
- -
323  GLuint index,
-
324  source_location const &sourceLocation = source_location::current()) {
-
325  callGL(sourceLocation, ::glDisableVertexAttribArray, index);
-
326 }
-
327 inline void glDrawArrays(
-
328  GLenum mode, GLint first, GLsizei count,
-
329  source_location const &sourceLocation = source_location::current()) {
-
330  callGL(sourceLocation, ::glDrawArrays, mode, first, count);
-
331 }
-
332 inline void glDrawElements(
-
333  GLenum mode, GLsizei count, GLenum type, void const *indices,
-
334  source_location const &sourceLocation = source_location::current()) {
-
335  callGL(sourceLocation, ::glDrawElements, mode, count, type, indices);
-
336 }
-
337 inline void
-
338 glEnable(GLenum cap,
-
339  source_location const &sourceLocation = source_location::current()) {
-
340  callGL(sourceLocation, ::glEnable, cap);
-
341 }
- -
343  GLuint index,
-
344  source_location const &sourceLocation = source_location::current()) {
-
345  callGL(sourceLocation, ::glEnableVertexAttribArray, index);
-
346 }
-
347 inline void
-
348 glFinish(source_location const &sourceLocation = source_location::current()) {
-
349  callGL(sourceLocation, ::glFinish);
-
350 }
-
351 inline void
-
352 glFlush(source_location const &sourceLocation = source_location::current()) {
-
353  callGL(sourceLocation, ::glFlush);
-
354 }
- -
356  GLenum target, GLenum attachment, GLenum renderbuffertarget,
-
357  GLuint renderbuffer,
-
358  source_location const &sourceLocation = source_location::current()) {
-
359  callGL(sourceLocation, ::glFramebufferRenderbuffer, target, attachment,
-
360  renderbuffertarget, renderbuffer);
-
361 }
- -
363  GLenum target, GLenum attachment, GLenum textarget, GLuint texture,
-
364  GLint level,
-
365  source_location const &sourceLocation = source_location::current()) {
-
366  callGL(sourceLocation, ::glFramebufferTexture2D, target, attachment,
-
367  textarget, texture, level);
-
368 }
-
369 inline void glFrontFace(GLenum mode, source_location const &sourceLocation =
-
370  source_location::current()) {
-
371  callGL(sourceLocation, ::glFrontFace, mode);
-
372 }
-
373 inline void glGenBuffers(
-
374  GLsizei n, GLuint *buffers,
-
375  source_location const &sourceLocation = source_location::current()) {
-
376  callGL(sourceLocation, ::glGenBuffers, n, buffers);
-
377 }
-
378 inline void glGenerateMipmap(
-
379  GLenum target,
-
380  source_location const &sourceLocation = source_location::current()) {
-
381  callGL(sourceLocation, ::glGenerateMipmap, target);
-
382 }
-
383 inline void glGenFramebuffers(
-
384  GLsizei n, GLuint *ids,
-
385  source_location const &sourceLocation = source_location::current()) {
-
386  callGL(sourceLocation, ::glGenFramebuffers, n, ids);
-
387 }
-
388 inline void glGenRenderbuffers(
-
389  GLsizei n, GLuint *renderbuffers,
-
390  source_location const &sourceLocation = source_location::current()) {
-
391  callGL(sourceLocation, ::glGenRenderbuffers, n, renderbuffers);
-
392 }
-
393 inline void glGenTextures(
-
394  GLsizei n, GLuint *textures,
-
395  source_location const &sourceLocation = source_location::current()) {
-
396  callGL(sourceLocation, ::glGenTextures, n, textures);
-
397 }
-
398 inline void glGetActiveAttrib(
-
399  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
-
400  GLenum *type, GLchar *name,
-
401  source_location const &sourceLocation = source_location::current()) {
-
402  callGL(sourceLocation, ::glGetActiveAttrib, program, index, bufSize, length,
-
403  size, type, name);
-
404 }
-
405 inline void glGetActiveUniform(
-
406  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size,
-
407  GLenum *type, GLchar *name,
-
408  source_location const &sourceLocation = source_location::current()) {
-
409  callGL(sourceLocation, ::glGetActiveUniform, program, index, bufSize, length,
-
410  size, type, name);
-
411 }
- -
413  GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders,
-
414  source_location const &sourceLocation = source_location::current()) {
-
415  callGL(sourceLocation, ::glGetAttachedShaders, program, maxCount, count,
-
416  shaders);
-
417 }
-
418 inline GLint glGetAttribLocation(
-
419  GLuint program, GLchar const *name,
-
420  source_location const &sourceLocation = source_location::current()) {
-
421  return callGL(sourceLocation, ::glGetAttribLocation, program, name);
-
422 }
-
423 inline void glGetBooleanv(
-
424  GLenum pname, GLboolean *params,
-
425  source_location const &sourceLocation = source_location::current()) {
-
426  callGL(sourceLocation, ::glGetBooleanv, pname, params);
-
427 }
- -
429  GLenum target, GLenum pname, GLint *params,
-
430  source_location const &sourceLocation = source_location::current()) {
-
431  callGL(sourceLocation, ::glGetBufferParameteriv, target, pname, params);
-
432 }
-
433 inline void glGetFloatv(
-
434  GLenum pname, GLfloat *params,
-
435  source_location const &sourceLocation = source_location::current()) {
-
436  callGL(sourceLocation, ::glGetFloatv, pname, params);
-
437 }
- -
439  GLenum target, GLenum attachment, GLenum pname, GLint *params,
-
440  source_location const &sourceLocation = source_location::current()) {
-
441  callGL(sourceLocation, ::glGetFramebufferAttachmentParameteriv, target,
-
442  attachment, pname, params);
-
443 }
-
444 inline void glGetIntegerv(
-
445  GLenum pname, GLint *params,
-
446  source_location const &sourceLocation = source_location::current()) {
-
447  callGL(sourceLocation, ::glGetIntegerv, pname, params);
-
448 }
-
449 inline void glGetProgramiv(
-
450  GLuint program, GLenum pname, GLint *params,
-
451  source_location const &sourceLocation = source_location::current()) {
-
452  callGL(sourceLocation, ::glGetProgramiv, program, pname, params);
-
453 }
- -
455  GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
-
456  source_location const &sourceLocation = source_location::current()) {
-
457  callGL(sourceLocation, ::glGetProgramInfoLog, program, bufSize, length,
-
458  infoLog);
-
459 }
- -
461  GLenum target, GLenum pname, GLint *params,
-
462  source_location const &sourceLocation = source_location::current()) {
-
463  callGL(sourceLocation, ::glGetRenderbufferParameteriv, target, pname, params);
-
464 }
-
465 inline void glGetShaderiv(
-
466  GLuint shader, GLenum pname, GLint *params,
-
467  source_location const &sourceLocation = source_location::current()) {
-
468  callGL(sourceLocation, ::glGetShaderiv, shader, pname, params);
-
469 }
-
470 inline void glGetShaderInfoLog(
-
471  GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog,
-
472  source_location const &sourceLocation = source_location::current()) {
-
473  callGL(sourceLocation, ::glGetShaderInfoLog, shader, bufSize, length,
-
474  infoLog);
-
475 }
- -
477  GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision,
-
478  source_location const &sourceLocation = source_location::current()) {
-
479  callGL(sourceLocation, ::glGetShaderPrecisionFormat, shadertype,
-
480  precisiontype, range, precision);
-
481 }
-
482 inline void glGetShaderSource(
-
483  GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source,
-
484  source_location const &sourceLocation = source_location::current()) {
-
485  callGL(sourceLocation, ::glGetShaderSource, shader, bufSize, length, source);
-
486 }
-
487 inline const GLubyte *glGetString(
-
488  GLenum name,
-
489  source_location const &sourceLocation = source_location::current()) {
-
490  return callGL(sourceLocation, ::glGetString, name);
-
491 }
- -
493  GLenum target, GLenum pname, GLfloat *params,
-
494  source_location const &sourceLocation = source_location::current()) {
-
495  callGL(sourceLocation, ::glGetTexParameterfv, target, pname, params);
-
496 }
- -
498  GLenum target, GLenum pname, GLint *params,
-
499  source_location const &sourceLocation = source_location::current()) {
-
500  callGL(sourceLocation, ::glGetTexParameteriv, target, pname, params);
-
501 }
-
502 inline void glGetUniformfv(
-
503  GLuint program, GLint location, GLfloat *params,
-
504  source_location const &sourceLocation = source_location::current()) {
-
505  callGL(sourceLocation, ::glGetUniformfv, program, location, params);
-
506 }
-
507 inline void glGetUniformiv(
-
508  GLuint program, GLint location, GLint *params,
-
509  source_location const &sourceLocation = source_location::current()) {
-
510  callGL(sourceLocation, ::glGetUniformiv, program, location, params);
-
511 }
-
512 inline GLint glGetUniformLocation(
-
513  GLuint program, GLchar const *name,
-
514  source_location const &sourceLocation = source_location::current()) {
-
515  return callGL(sourceLocation, ::glGetUniformLocation, program, name);
-
516 }
- -
518  GLuint index, GLenum pname, GLfloat *params,
-
519  source_location const &sourceLocation = source_location::current()) {
-
520  callGL(sourceLocation, ::glGetVertexAttribfv, index, pname, params);
-
521 }
- -
523  GLuint index, GLenum pname, GLint *params,
-
524  source_location const &sourceLocation = source_location::current()) {
-
525  callGL(sourceLocation, ::glGetVertexAttribiv, index, pname, params);
-
526 }
- -
528  GLuint index, GLenum pname, void **pointer,
-
529  source_location const &sourceLocation = source_location::current()) {
-
530  callGL(sourceLocation, ::glGetVertexAttribPointerv, index, pname, pointer);
-
531 }
-
532 inline void
-
533 glHint(GLenum target, GLenum mode,
-
534  source_location const &sourceLocation = source_location::current()) {
-
535  callGL(sourceLocation, ::glHint, target, mode);
-
536 }
-
537 inline GLboolean
-
538 glIsBuffer(GLuint buffer,
-
539  source_location const &sourceLocation = source_location::current()) {
-
540  return callGL(sourceLocation, ::glIsBuffer, buffer);
-
541 }
-
542 inline GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation =
-
543  source_location::current()) {
-
544  return callGL(sourceLocation, ::glIsEnabled, cap);
-
545 }
-
546 inline GLboolean glIsFramebuffer(
-
547  GLuint framebuffer,
-
548  source_location const &sourceLocation = source_location::current()) {
-
549  return callGL(sourceLocation, ::glIsFramebuffer, framebuffer);
-
550 }
-
551 inline GLboolean glIsProgram(
-
552  GLuint program,
-
553  source_location const &sourceLocation = source_location::current()) {
-
554  return callGL(sourceLocation, ::glIsProgram, program);
-
555 }
-
556 inline GLboolean glIsRenderbuffer(
-
557  GLuint renderbuffer,
-
558  source_location const &sourceLocation = source_location::current()) {
-
559  return callGL(sourceLocation, ::glIsRenderbuffer, renderbuffer);
-
560 }
-
561 inline GLboolean
-
562 glIsShader(GLuint shader,
-
563  source_location const &sourceLocation = source_location::current()) {
-
564  return callGL(sourceLocation, ::glIsShader, shader);
-
565 }
-
566 inline GLboolean glIsTexture(
-
567  GLuint texture,
-
568  source_location const &sourceLocation = source_location::current()) {
-
569  return callGL(sourceLocation, ::glIsTexture, texture);
-
570 }
-
571 inline void glLineWidth(GLfloat width, source_location const &sourceLocation =
-
572  source_location::current()) {
-
573  callGL(sourceLocation, ::glLineWidth, width);
-
574 }
-
575 inline void glLinkProgram(
-
576  GLuint program,
-
577  source_location const &sourceLocation = source_location::current()) {
-
578  callGL(sourceLocation, ::glLinkProgram, program);
-
579 }
-
580 inline void glPixelStorei(
-
581  GLenum pname, GLint param,
-
582  source_location const &sourceLocation = source_location::current()) {
-
583  callGL(sourceLocation, ::glPixelStorei, pname, param);
-
584 }
-
585 inline void glPolygonOffset(
-
586  GLfloat factor, GLfloat units,
-
587  source_location const &sourceLocation = source_location::current()) {
-
588  callGL(sourceLocation, ::glPolygonOffset, factor, units);
-
589 }
-
590 inline void glReadPixels(
-
591  GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type,
-
592  void *pixels,
-
593  source_location const &sourceLocation = source_location::current()) {
-
594  callGL(sourceLocation, ::glReadPixels, x, y, width, height, format, type,
-
595  pixels);
-
596 }
- -
598  source_location const &sourceLocation = source_location::current()) {
-
599  callGL(sourceLocation, ::glReleaseShaderCompiler);
-
600 }
- -
602  GLenum target, GLenum internalformat, GLsizei width, GLsizei height,
-
603  source_location const &sourceLocation = source_location::current()) {
-
604  callGL(sourceLocation, ::glRenderbufferStorage, target, internalformat, width,
-
605  height);
-
606 }
-
607 inline void glSampleCoverage(
-
608  GLfloat value, GLboolean invert,
-
609  source_location const &sourceLocation = source_location::current()) {
-
610  callGL(sourceLocation, ::glSampleCoverage, value, invert);
-
611 }
-
612 inline void
-
613 glScissor(GLint x, GLint y, GLsizei width, GLsizei height,
-
614  source_location const &sourceLocation = source_location::current()) {
-
615  callGL(sourceLocation, ::glScissor, x, y, width, height);
-
616 }
-
617 inline void glShaderBinary(
-
618  GLsizei count, GLuint const *shaders, GLenum binaryformat,
-
619  void const *binary, GLsizei length,
-
620  source_location const &sourceLocation = source_location::current()) {
-
621  callGL(sourceLocation, ::glShaderBinary, count, shaders, binaryformat, binary,
-
622  length);
-
623 }
-
624 inline void glShaderSource(
-
625  GLuint shader, GLsizei count, GLchar const **string, GLint const *length,
-
626  source_location const &sourceLocation = source_location::current()) {
-
627  callGL(sourceLocation, ::glShaderSource, shader, count, string, length);
-
628 }
-
629 inline void glStencilFunc(
-
630  GLenum func, GLint ref, GLuint mask,
-
631  source_location const &sourceLocation = source_location::current()) {
-
632  callGL(sourceLocation, ::glStencilFunc, func, ref, mask);
-
633 }
- -
635  GLenum face, GLenum func, GLint ref, GLuint mask,
-
636  source_location const &sourceLocation = source_location::current()) {
-
637  callGL(sourceLocation, ::glStencilFuncSeparate, face, func, ref, mask);
-
638 }
-
639 inline void glStencilMask(GLuint mask, source_location const &sourceLocation =
-
640  source_location::current()) {
-
641  callGL(sourceLocation, ::glStencilMask, mask);
-
642 }
- -
644  GLenum face, GLuint mask,
-
645  source_location const &sourceLocation = source_location::current()) {
-
646  callGL(sourceLocation, ::glStencilMaskSeparate, face, mask);
-
647 }
-
648 inline void glStencilOp(
-
649  GLenum fail, GLenum zfail, GLenum zpass,
-
650  source_location const &sourceLocation = source_location::current()) {
-
651  callGL(sourceLocation, ::glStencilOp, fail, zfail, zpass);
-
652 }
- -
654  GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass,
-
655  source_location const &sourceLocation = source_location::current()) {
-
656  callGL(sourceLocation, ::glStencilOpSeparate, face, sfail, dpfail, dppass);
-
657 }
-
658 inline void glTexImage2D(
-
659  GLenum target, GLint level, GLint internalformat, GLsizei width,
-
660  GLsizei height, GLint border, GLenum format, GLenum type, void const *data,
-
661  source_location const &sourceLocation = source_location::current()) {
-
662  callGL(sourceLocation, ::glTexImage2D, target, level, internalformat, width,
-
663  height, border, format, type, data);
-
664 }
-
665 
-
666 inline void glTexParameterf(
-
667  GLenum target, GLenum pname, GLfloat param,
-
668  source_location const &sourceLocation = source_location::current()) {
-
669  callGL(sourceLocation, ::glTexParameterf, target, pname, param);
-
670 }
-
671 inline void glTexParameterfv(
-
672  GLenum target, GLenum pname, GLfloat const *params,
-
673  source_location const &sourceLocation = source_location::current()) {
-
674  callGL(sourceLocation, ::glTexParameterfv, target, pname, params);
-
675 }
-
676 inline void glTexParameteri(
-
677  GLenum target, GLenum pname, GLint param,
-
678  source_location const &sourceLocation = source_location::current()) {
-
679  callGL(sourceLocation, ::glTexParameteri, target, pname, param);
-
680 }
-
681 inline void glTexParameteriv(
-
682  GLenum target, GLenum pname, GLint const *params,
-
683  source_location const &sourceLocation = source_location::current()) {
-
684  callGL(sourceLocation, ::glTexParameteriv, target, pname, params);
-
685 }
-
686 inline void glTexSubImage2D(
-
687  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width,
-
688  GLsizei height, GLenum format, GLenum type, void const *pixels,
-
689  source_location const &sourceLocation = source_location::current()) {
-
690  callGL(sourceLocation, ::glTexSubImage2D, target, level, xoffset, yoffset,
-
691  width, height, format, type, pixels);
-
692 }
-
693 inline void glUniform1f(
-
694  GLint location, GLfloat v0,
-
695  source_location const &sourceLocation = source_location::current()) {
-
696  callGL(sourceLocation, ::glUniform1f, location, v0);
-
697 }
-
698 inline void glUniform1fv(
-
699  GLint location, GLsizei count, GLfloat const *value,
-
700  source_location const &sourceLocation = source_location::current()) {
-
701  callGL(sourceLocation, ::glUniform1fv, location, count, value);
-
702 }
-
703 inline void glUniform1i(
-
704  GLint location, GLint v0,
-
705  source_location const &sourceLocation = source_location::current()) {
-
706  callGL(sourceLocation, ::glUniform1i, location, v0);
-
707 }
-
708 inline void glUniform1iv(
-
709  GLint location, GLsizei count, GLint const *value,
-
710  source_location const &sourceLocation = source_location::current()) {
-
711  callGL(sourceLocation, ::glUniform1iv, location, count, value);
-
712 }
-
713 inline void glUniform2f(
-
714  GLint location, GLfloat v0, GLfloat v1,
-
715  source_location const &sourceLocation = source_location::current()) {
-
716  callGL(sourceLocation, ::glUniform2f, location, v0, v1);
-
717 }
-
718 inline void glUniform2fv(
-
719  GLint location, GLsizei count, GLfloat const *value,
-
720  source_location const &sourceLocation = source_location::current()) {
-
721  callGL(sourceLocation, ::glUniform2fv, location, count, value);
-
722 }
-
723 inline void glUniform2i(
-
724  GLint location, GLint v0, GLint v1,
-
725  source_location const &sourceLocation = source_location::current()) {
-
726  callGL(sourceLocation, ::glUniform2i, location, v0, v1);
-
727 }
-
728 inline void glUniform2iv(
-
729  GLint location, GLsizei count, GLint const *value,
-
730  source_location const &sourceLocation = source_location::current()) {
-
731  callGL(sourceLocation, ::glUniform2iv, location, count, value);
-
732 }
-
733 inline void glUniform3f(
-
734  GLint location, GLfloat v0, GLfloat v1, GLfloat v2,
-
735  source_location const &sourceLocation = source_location::current()) {
-
736  callGL(sourceLocation, ::glUniform3f, location, v0, v1, v2);
-
737 }
-
738 inline void glUniform3fv(
-
739  GLint location, GLsizei count, GLfloat const *value,
-
740  source_location const &sourceLocation = source_location::current()) {
-
741  callGL(sourceLocation, ::glUniform3fv, location, count, value);
-
742 }
-
743 inline void glUniform3i(
-
744  GLint location, GLint v0, GLint v1, GLint v2,
-
745  source_location const &sourceLocation = source_location::current()) {
-
746  callGL(sourceLocation, ::glUniform3i, location, v0, v1, v2);
-
747 }
-
748 inline void glUniform3iv(
-
749  GLint location, GLsizei count, GLint const *value,
-
750  source_location const &sourceLocation = source_location::current()) {
-
751  callGL(sourceLocation, ::glUniform3iv, location, count, value);
-
752 }
-
753 inline void glUniform4f(
-
754  GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3,
-
755  source_location const &sourceLocation = source_location::current()) {
-
756  callGL(sourceLocation, ::glUniform4f, location, v0, v1, v2, v3);
-
757 }
-
758 inline void glUniform4fv(
-
759  GLint location, GLsizei count, GLfloat const *value,
-
760  source_location const &sourceLocation = source_location::current()) {
-
761  callGL(sourceLocation, ::glUniform4fv, location, count, value);
-
762 }
-
763 inline void glUniform4i(
-
764  GLint location, GLint v0, GLint v1, GLint v2, GLint v3,
-
765  source_location const &sourceLocation = source_location::current()) {
-
766  callGL(sourceLocation, ::glUniform4i, location, v0, v1, v2, v3);
-
767 }
-
768 inline void glUniform4iv(
-
769  GLint location, GLsizei count, GLint const *value,
-
770  source_location const &sourceLocation = source_location::current()) {
-
771  callGL(sourceLocation, ::glUniform4iv, location, count, value);
-
772 }
-
773 inline void glUniformMatrix2fv(
-
774  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
775  source_location const &sourceLocation = source_location::current()) {
-
776  callGL(sourceLocation, ::glUniformMatrix2fv, location, count, transpose,
-
777  value);
-
778 }
-
779 inline void glUniformMatrix3fv(
-
780  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
781  source_location const &sourceLocation = source_location::current()) {
-
782  callGL(sourceLocation, ::glUniformMatrix3fv, location, count, transpose,
-
783  value);
-
784 }
-
785 inline void glUniformMatrix4fv(
-
786  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
787  source_location const &sourceLocation = source_location::current()) {
-
788  callGL(sourceLocation, ::glUniformMatrix4fv, location, count, transpose,
-
789  value);
-
790 }
-
791 inline void glUseProgram(GLuint program, source_location const &sourceLocation =
-
792  source_location::current()) {
-
793  callGL(sourceLocation, ::glUseProgram, program);
-
794 }
-
795 inline void glValidateProgram(
-
796  GLuint program,
-
797  source_location const &sourceLocation = source_location::current()) {
-
798  callGL(sourceLocation, ::glValidateProgram, program);
-
799 }
-
800 inline void glVertexAttrib1f(
-
801  GLuint index, GLfloat x,
-
802  source_location const &sourceLocation = source_location::current()) {
-
803  callGL(sourceLocation, ::glVertexAttrib1f, index, x);
-
804 }
-
805 inline void glVertexAttrib1fv(
-
806  GLuint index, GLfloat const *v,
-
807  source_location const &sourceLocation = source_location::current()) {
-
808  callGL(sourceLocation, ::glVertexAttrib1fv, index, v);
-
809 }
-
810 inline void glVertexAttrib2f(
-
811  GLuint index, GLfloat x, GLfloat y,
-
812  source_location const &sourceLocation = source_location::current()) {
-
813  callGL(sourceLocation, ::glVertexAttrib2f, index, x, y);
-
814 }
-
815 inline void glVertexAttrib2fv(
-
816  GLuint index, GLfloat const *v,
-
817  source_location const &sourceLocation = source_location::current()) {
-
818  callGL(sourceLocation, ::glVertexAttrib2fv, index, v);
-
819 }
-
820 inline void glVertexAttrib3f(
-
821  GLuint index, GLfloat x, GLfloat y, GLfloat z,
-
822  source_location const &sourceLocation = source_location::current()) {
-
823  callGL(sourceLocation, ::glVertexAttrib3f, index, x, y, z);
-
824 }
-
825 inline void glVertexAttrib3fv(
-
826  GLuint index, GLfloat const *v,
-
827  source_location const &sourceLocation = source_location::current()) {
-
828  callGL(sourceLocation, ::glVertexAttrib3fv, index, v);
-
829 }
-
830 inline void glVertexAttrib4f(
-
831  GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w,
-
832  source_location const &sourceLocation = source_location::current()) {
-
833  callGL(sourceLocation, ::glVertexAttrib4f, index, x, y, z, w);
-
834 }
-
835 inline void glVertexAttrib4fv(
-
836  GLuint index, GLfloat const *v,
-
837  source_location const &sourceLocation = source_location::current()) {
-
838  callGL(sourceLocation, ::glVertexAttrib4fv, index, v);
-
839 }
- -
841  GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride,
-
842  void const *pointer,
-
843  source_location const &sourceLocation = source_location::current()) {
-
844  callGL(sourceLocation, ::glVertexAttribPointer, index, size, type, normalized,
-
845  stride, pointer);
-
846 }
-
847 inline void
-
848 glViewport(GLint x, GLint y, GLsizei width, GLsizei height,
-
849  source_location const &sourceLocation = source_location::current()) {
-
850  callGL(sourceLocation, ::glViewport, x, y, width, height);
-
851 }
-
852 
-
853 // OpenGL ES 3.0 function definitions
-
854 
-
855 inline void glReadBuffer(GLenum src, source_location const &sourceLocation =
-
856  source_location::current()) {
-
857  callGL(sourceLocation, ::glReadBuffer, src);
-
858 }
- -
860  GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type,
-
861  void const *indices,
-
862  source_location const &sourceLocation = source_location::current()) {
-
863  callGL(sourceLocation, ::glDrawRangeElements, mode, start, end, count, type,
-
864  indices);
-
865 }
-
866 inline void glTexImage3D(
-
867  GLenum target, GLint level, GLint internalformat, GLsizei width,
-
868  GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type,
-
869  void const *pixels,
-
870  source_location const &sourceLocation = source_location::current()) {
-
871  callGL(sourceLocation, ::glTexImage3D, target, level, internalformat, width,
-
872  height, depth, border, format, type, pixels);
-
873 }
-
874 inline void glTexSubImage3D(
-
875  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
876  GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type,
-
877  void const *pixels,
-
878  source_location const &sourceLocation = source_location::current()) {
-
879  callGL(sourceLocation, ::glTexSubImage3D, target, level, xoffset, yoffset,
-
880  zoffset, width, height, depth, format, type, pixels);
-
881 }
- -
883  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
884  GLint x, GLint y, GLsizei width, GLsizei height,
-
885  source_location const &sourceLocation = source_location::current()) {
-
886  callGL(sourceLocation, ::glCopyTexSubImage3D, target, level, xoffset, yoffset,
-
887  zoffset, x, y, width, height);
-
888 }
- -
890  GLenum target, GLint level, GLenum internalformat, GLsizei width,
-
891  GLsizei height, GLsizei depth, GLint border, GLsizei imageSize,
-
892  void const *data,
-
893  source_location const &sourceLocation = source_location::current()) {
-
894  callGL(sourceLocation, ::glCompressedTexImage3D, target, level,
-
895  internalformat, width, height, depth, border, imageSize, data);
-
896 }
- -
898  GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset,
-
899  GLsizei width, GLsizei height, GLsizei depth, GLenum format,
-
900  GLsizei imageSize, void const *data,
-
901  source_location const &sourceLocation = source_location::current()) {
-
902  callGL(sourceLocation, ::glCompressedTexSubImage3D, target, level, xoffset,
-
903  yoffset, zoffset, width, height, depth, format, imageSize, data);
-
904 }
-
905 inline void glGenQueries(
-
906  GLsizei n, GLuint *ids,
-
907  source_location const &sourceLocation = source_location::current()) {
-
908  callGL(sourceLocation, ::glGenQueries, n, ids);
-
909 }
-
910 inline void glDeleteQueries(
-
911  GLsizei n, GLuint const *ids,
-
912  source_location const &sourceLocation = source_location::current()) {
-
913  callGL(sourceLocation, ::glDeleteQueries, n, ids);
-
914 }
-
915 inline GLboolean
-
916 glIsQuery(GLuint id,
-
917  source_location const &sourceLocation = source_location::current()) {
-
918  return callGL(sourceLocation, ::glIsQuery, id);
-
919 }
-
920 inline void glBeginQuery(
-
921  GLenum target, GLuint id,
-
922  source_location const &sourceLocation = source_location::current()) {
-
923  callGL(sourceLocation, ::glBeginQuery, target, id);
-
924 }
-
925 inline void
-
926 glEndQuery(GLenum target,
-
927  source_location const &sourceLocation = source_location::current()) {
-
928  callGL(sourceLocation, ::glEndQuery, target);
-
929 }
-
930 inline void glGetQueryiv(
-
931  GLenum target, GLenum pname, GLint *params,
-
932  source_location const &sourceLocation = source_location::current()) {
-
933  callGL(sourceLocation, ::glGetQueryiv, target, pname, params);
-
934 }
- -
936  GLuint id, GLenum pname, GLuint *params,
-
937  source_location const &sourceLocation = source_location::current()) {
-
938  callGL(sourceLocation, ::glGetQueryObjectuiv, id, pname, params);
-
939 }
-
940 inline GLboolean glUnmapBuffer(
-
941  GLenum target,
-
942  source_location const &sourceLocation = source_location::current()) {
-
943  return callGL(sourceLocation, ::glUnmapBuffer, target);
-
944 }
- -
946  GLenum target, GLenum pname, void **params,
-
947  source_location const &sourceLocation = source_location::current()) {
-
948  callGL(sourceLocation, ::glGetBufferPointerv, target, pname, params);
-
949 }
-
950 inline void glDrawBuffers(
-
951  GLsizei n, GLenum const *bufs,
-
952  source_location const &sourceLocation = source_location::current()) {
-
953  callGL(sourceLocation, ::glDrawBuffers, n, bufs);
-
954 }
- -
956  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
957  source_location const &sourceLocation = source_location::current()) {
-
958  callGL(sourceLocation, ::glUniformMatrix2x3fv, location, count, transpose,
-
959  value);
-
960 }
- -
962  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
963  source_location const &sourceLocation = source_location::current()) {
-
964  callGL(sourceLocation, ::glUniformMatrix3x2fv, location, count, transpose,
-
965  value);
-
966 }
- -
968  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
969  source_location const &sourceLocation = source_location::current()) {
-
970  callGL(sourceLocation, ::glUniformMatrix2x4fv, location, count, transpose,
-
971  value);
-
972 }
- -
974  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
975  source_location const &sourceLocation = source_location::current()) {
-
976  callGL(sourceLocation, ::glUniformMatrix4x2fv, location, count, transpose,
-
977  value);
-
978 }
- -
980  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
981  source_location const &sourceLocation = source_location::current()) {
-
982  callGL(sourceLocation, ::glUniformMatrix3x4fv, location, count, transpose,
-
983  value);
-
984 }
- -
986  GLint location, GLsizei count, GLboolean transpose, GLfloat const *value,
-
987  source_location const &sourceLocation = source_location::current()) {
-
988  callGL(sourceLocation, ::glUniformMatrix4x3fv, location, count, transpose,
-
989  value);
-
990 }
-
991 inline void glBlitFramebuffer(
-
992  GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0,
-
993  GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter,
-
994  source_location const &sourceLocation = source_location::current()) {
-
995  callGL(sourceLocation, ::glBlitFramebuffer, srcX0, srcY0, srcX1, srcY1, dstX0,
-
996  dstY0, dstX1, dstY1, mask, filter);
-
997 }
- -
999  GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
-
1000  GLsizei height,
-
1001  source_location const &sourceLocation = source_location::current()) {
-
1002  callGL(sourceLocation, ::glRenderbufferStorageMultisample, target, samples,
-
1003  internalformat, width, height);
-
1004 }
- -
1006  GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer,
-
1007  source_location const &sourceLocation = source_location::current()) {
-
1008  callGL(sourceLocation, ::glFramebufferTextureLayer, target, attachment,
-
1009  texture, level, layer);
-
1010 }
-
1011 inline void *glMapBufferRange(
-
1012  GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access,
-
1013  source_location const &sourceLocation = source_location::current()) {
-
1014  return callGL(sourceLocation, ::glMapBufferRange, target, offset, length,
-
1015  access);
-
1016 }
- -
1018  GLenum target, GLintptr offset, GLsizeiptr length,
-
1019  source_location const &sourceLocation = source_location::current()) {
-
1020  callGL(sourceLocation, ::glFlushMappedBufferRange, target, offset, length);
-
1021 }
-
1022 inline void glBindVertexArray(
-
1023  GLuint array,
-
1024  source_location const &sourceLocation = source_location::current()) {
-
1025  callGL(sourceLocation, ::glBindVertexArray, array);
-
1026 }
- -
1028  GLsizei n, GLuint const *arrays,
-
1029  source_location const &sourceLocation = source_location::current()) {
-
1030  callGL(sourceLocation, ::glDeleteVertexArrays, n, arrays);
-
1031 }
-
1032 inline void glGenVertexArrays(
-
1033  GLsizei n, GLuint *arrays,
-
1034  source_location const &sourceLocation = source_location::current()) {
-
1035  callGL(sourceLocation, ::glGenVertexArrays, n, arrays);
-
1036 }
-
1037 inline GLboolean glIsVertexArray(
-
1038  GLuint array,
-
1039  source_location const &sourceLocation = source_location::current()) {
-
1040  return callGL(sourceLocation, ::glIsVertexArray, array);
-
1041 }
-
1042 inline void glGetIntegeri_v(
-
1043  GLenum target, GLuint index, GLint *data,
-
1044  source_location const &sourceLocation = source_location::current()) {
-
1045  callGL(sourceLocation, ::glGetIntegeri_v, target, index, data);
-
1046 }
- -
1048  GLenum primitiveMode,
-
1049  source_location const &sourceLocation = source_location::current()) {
-
1050  callGL(sourceLocation, ::glBeginTransformFeedback, primitiveMode);
-
1051 }
- -
1053  source_location const &sourceLocation = source_location::current()) {
-
1054  callGL(sourceLocation, ::glEndTransformFeedback);
-
1055 }
-
1056 inline void glBindBufferRange(
-
1057  GLenum target, GLuint index, GLuint buffer, GLintptr offset,
-
1058  GLsizeiptr size,
-
1059  source_location const &sourceLocation = source_location::current()) {
-
1060  callGL(sourceLocation, ::glBindBufferRange, target, index, buffer, offset,
-
1061  size);
-
1062 }
-
1063 inline void glBindBufferBase(
-
1064  GLenum target, GLuint index, GLuint buffer,
-
1065  source_location const &sourceLocation = source_location::current()) {
-
1066  callGL(sourceLocation, ::glBindBufferBase, target, index, buffer);
-
1067 }
- -
1069  GLuint program, GLsizei count, GLchar const *const *varyings,
-
1070  GLenum bufferMode,
-
1071  source_location const &sourceLocation = source_location::current()) {
-
1072  callGL(sourceLocation, ::glTransformFeedbackVaryings, program, count,
-
1073  varyings, bufferMode);
-
1074 }
- -
1076  GLuint program, GLuint index, GLsizei bufSize, GLsizei *length,
-
1077  GLsizei *size, GLenum *type, GLchar *name,
-
1078  source_location const &sourceLocation = source_location::current()) {
-
1079  callGL(sourceLocation, ::glGetTransformFeedbackVarying, program, index,
-
1080  bufSize, length, size, type, name);
-
1081 }
- -
1083  GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer,
-
1084  source_location const &sourceLocation = source_location::current()) {
-
1085  callGL(sourceLocation, ::glVertexAttribIPointer, index, size, type, stride,
-
1086  pointer);
-
1087 }
- -
1089  GLuint index, GLenum pname, GLint *params,
-
1090  source_location const &sourceLocation = source_location::current()) {
-
1091  callGL(sourceLocation, ::glGetVertexAttribIiv, index, pname, params);
-
1092 }
- -
1094  GLuint index, GLenum pname, GLuint *params,
-
1095  source_location const &sourceLocation = source_location::current()) {
-
1096  callGL(sourceLocation, ::glGetVertexAttribIuiv, index, pname, params);
-
1097 }
-
1098 inline void glVertexAttribI4i(
-
1099  GLuint index, GLint x, GLint y, GLint z, GLint w,
-
1100  source_location const &sourceLocation = source_location::current()) {
-
1101  callGL(sourceLocation, ::glVertexAttribI4i, index, x, y, z, w);
-
1102 }
- -
1104  GLuint index, GLuint x, GLuint y, GLuint z, GLuint w,
-
1105  source_location const &sourceLocation = source_location::current()) {
-
1106  callGL(sourceLocation, ::glVertexAttribI4ui, index, x, y, z, w);
-
1107 }
- -
1109  GLuint index, GLint const *v,
-
1110  source_location const &sourceLocation = source_location::current()) {
-
1111  callGL(sourceLocation, ::glVertexAttribI4iv, index, v);
-
1112 }
- -
1114  GLuint index, GLuint const *v,
-
1115  source_location const &sourceLocation = source_location::current()) {
-
1116  callGL(sourceLocation, ::glVertexAttribI4uiv, index, v);
-
1117 }
-
1118 inline void glGetUniformuiv(
-
1119  GLuint program, GLint location, GLuint *params,
-
1120  source_location const &sourceLocation = source_location::current()) {
-
1121  callGL(sourceLocation, ::glGetUniformuiv, program, location, params);
-
1122 }
- -
1124  GLuint program, GLchar const *name,
-
1125  source_location const &sourceLocation = source_location::current()) {
-
1126  return callGL(sourceLocation, ::glGetFragDataLocation, program, name);
-
1127 }
-
1128 inline void glUniform1ui(
-
1129  GLint location, GLuint v0,
-
1130  source_location const &sourceLocation = source_location::current()) {
-
1131  callGL(sourceLocation, ::glUniform1ui, location, v0);
-
1132 }
-
1133 inline void glUniform2ui(
-
1134  GLint location, GLuint v0, GLuint v1,
-
1135  source_location const &sourceLocation = source_location::current()) {
-
1136  callGL(sourceLocation, ::glUniform2ui, location, v0, v1);
-
1137 }
-
1138 inline void glUniform3ui(
-
1139  GLint location, GLuint v0, GLuint v1, GLuint v2,
-
1140  source_location const &sourceLocation = source_location::current()) {
-
1141  callGL(sourceLocation, ::glUniform3ui, location, v0, v1, v2);
-
1142 }
-
1143 inline void glUniform4ui(
-
1144  GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3,
-
1145  source_location const &sourceLocation = source_location::current()) {
-
1146  callGL(sourceLocation, ::glUniform4ui, location, v0, v1, v2, v3);
-
1147 }
-
1148 inline void glUniform1uiv(
-
1149  GLint location, GLsizei count, GLuint const *value,
-
1150  source_location const &sourceLocation = source_location::current()) {
-
1151  callGL(sourceLocation, ::glUniform1uiv, location, count, value);
-
1152 }
-
1153 inline void glUniform2uiv(
-
1154  GLint location, GLsizei count, GLuint const *value,
-
1155  source_location const &sourceLocation = source_location::current()) {
-
1156  callGL(sourceLocation, ::glUniform2uiv, location, count, value);
-
1157 }
-
1158 inline void glUniform3uiv(
-
1159  GLint location, GLsizei count, GLuint const *value,
-
1160  source_location const &sourceLocation = source_location::current()) {
-
1161  callGL(sourceLocation, ::glUniform3uiv, location, count, value);
-
1162 }
-
1163 inline void glUniform4uiv(
-
1164  GLint location, GLsizei count, GLuint const *value,
-
1165  source_location const &sourceLocation = source_location::current()) {
-
1166  callGL(sourceLocation, ::glUniform4uiv, location, count, value);
-
1167 }
-
1168 inline void glClearBufferiv(
-
1169  GLenum buffer, GLint drawbuffer, GLint const *value,
-
1170  source_location const &sourceLocation = source_location::current()) {
-
1171  callGL(sourceLocation, ::glClearBufferiv, buffer, drawbuffer, value);
-
1172 }
-
1173 inline void glClearBufferuiv(
-
1174  GLenum buffer, GLint drawbuffer, GLuint const *value,
-
1175  source_location const &sourceLocation = source_location::current()) {
-
1176  callGL(sourceLocation, ::glClearBufferuiv, buffer, drawbuffer, value);
-
1177 }
-
1178 inline void glClearBufferfv(
-
1179  GLenum buffer, GLint drawbuffer, GLfloat const *value,
-
1180  source_location const &sourceLocation = source_location::current()) {
-
1181  callGL(sourceLocation, ::glClearBufferfv, buffer, drawbuffer, value);
-
1182 }
-
1183 inline void glClearBufferfi(
-
1184  GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil,
-
1185  source_location const &sourceLocation = source_location::current()) {
-
1186  callGL(sourceLocation, ::glClearBufferfi, buffer, drawbuffer, depth, stencil);
-
1187 }
-
1188 inline const GLubyte *glGetStringi(
-
1189  GLenum name, GLuint index,
-
1190  source_location const &sourceLocation = source_location::current()) {
-
1191  return callGL(sourceLocation, ::glGetStringi, name, index);
-
1192 }
- -
1194  GLenum readTarget, GLenum writeTarget, GLintptr readOffset,
-
1195  GLintptr writeOffset, GLsizeiptr size,
-
1196  source_location const &sourceLocation = source_location::current()) {
-
1197  callGL(sourceLocation, ::glCopyBufferSubData, readTarget, writeTarget,
-
1198  readOffset, writeOffset, size);
-
1199 }
- -
1201  GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames,
-
1202  GLuint *uniformIndices,
-
1203  source_location const &sourceLocation = source_location::current()) {
-
1204  callGL(sourceLocation, ::glGetUniformIndices, program, uniformCount,
-
1205  uniformNames, uniformIndices);
-
1206 }
- -
1208  GLuint program, GLsizei uniformCount, GLuint const *uniformIndices,
-
1209  GLenum pname, GLint *params,
-
1210  source_location const &sourceLocation = source_location::current()) {
-
1211  callGL(sourceLocation, ::glGetActiveUniformsiv, program, uniformCount,
-
1212  uniformIndices, pname, params);
-
1213 }
- -
1215  GLuint program, GLchar const *uniformBlockName,
-
1216  source_location const &sourceLocation = source_location::current()) {
-
1217  return callGL(sourceLocation, ::glGetUniformBlockIndex, program,
-
1218  uniformBlockName);
-
1219 }
- -
1221  GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params,
-
1222  source_location const &sourceLocation = source_location::current()) {
-
1223  callGL(sourceLocation, ::glGetActiveUniformBlockiv, program,
-
1224  uniformBlockIndex, pname, params);
-
1225 }
- -
1227  GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length,
-
1228  GLchar *uniformBlockName,
-
1229  source_location const &sourceLocation = source_location::current()) {
-
1230  callGL(sourceLocation, ::glGetActiveUniformBlockName, program,
-
1231  uniformBlockIndex, bufSize, length, uniformBlockName);
-
1232 }
- -
1234  GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding,
-
1235  source_location const &sourceLocation = source_location::current()) {
-
1236  callGL(sourceLocation, ::glUniformBlockBinding, program, uniformBlockIndex,
-
1237  uniformBlockBinding);
-
1238 }
-
1239 
- -
1241  GLenum mode, GLint first, GLsizei count, GLsizei instancecount,
-
1242  source_location const &sourceLocation = source_location::current()) {
-
1243  callGL(sourceLocation, ::glDrawArraysInstanced, mode, first, count,
-
1244  instancecount);
-
1245 }
- -
1247  GLenum mode, GLsizei count, GLenum type, void const *indices,
-
1248  GLsizei instancecount,
-
1249  source_location const &sourceLocation = source_location::current()) {
-
1250  callGL(sourceLocation, ::glDrawElementsInstanced, mode, count, type, indices,
-
1251  instancecount);
-
1252 }
-
1253 inline GLsync glFenceSync(
-
1254  GLenum condition, GLbitfield flags,
-
1255  source_location const &sourceLocation = source_location::current()) {
-
1256  return callGL(sourceLocation, ::glFenceSync, condition, flags);
-
1257 }
-
1258 inline GLboolean
-
1259 glIsSync(GLsync sync,
-
1260  source_location const &sourceLocation = source_location::current()) {
-
1261  return callGL(sourceLocation, ::glIsSync, sync);
-
1262 }
-
1263 inline void glDeleteSync(GLsync sync, source_location const &sourceLocation =
-
1264  source_location::current()) {
-
1265  callGL(sourceLocation, ::glDeleteSync, sync);
-
1266 }
-
1267 inline GLenum glClientWaitSync(
-
1268  GLsync sync, GLbitfield flags, GLuint64 timeout,
-
1269  source_location const &sourceLocation = source_location::current()) {
-
1270  return callGL(sourceLocation, ::glClientWaitSync, sync, flags, timeout);
-
1271 }
-
1272 inline void
-
1273 glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout,
-
1274  source_location const &sourceLocation = source_location::current()) {
-
1275  callGL(sourceLocation, ::glWaitSync, sync, flags, timeout);
-
1276 }
-
1277 inline void glGetInteger64v(
-
1278  GLenum pname, GLint64 *data,
-
1279  source_location const &sourceLocation = source_location::current()) {
-
1280  callGL(sourceLocation, ::glGetInteger64v, pname, data);
-
1281 }
-
1282 inline void glGetSynciv(
-
1283  GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values,
-
1284  source_location const &sourceLocation = source_location::current()) {
-
1285  callGL(sourceLocation, ::glGetSynciv, sync, pname, count, length, values);
-
1286 }
-
1287 inline void glGetInteger64i_v(
-
1288  GLenum target, GLuint index, GLint64 *data,
-
1289  source_location const &sourceLocation = source_location::current()) {
-
1290  callGL(sourceLocation, ::glGetInteger64i_v, target, index, data);
-
1291 }
- -
1293  GLenum target, GLenum pname, GLint64 *params,
-
1294  source_location const &sourceLocation = source_location::current()) {
-
1295  callGL(sourceLocation, ::glGetBufferParameteri64v, target, pname, params);
-
1296 }
-
1297 inline void glGenSamplers(
-
1298  GLsizei count, GLuint *samplers,
-
1299  source_location const &sourceLocation = source_location::current()) {
-
1300  callGL(sourceLocation, ::glGenSamplers, count, samplers);
-
1301 }
-
1302 inline void glDeleteSamplers(
-
1303  GLsizei count, GLuint const *samplers,
-
1304  source_location const &sourceLocation = source_location::current()) {
-
1305  callGL(sourceLocation, ::glDeleteSamplers, count, samplers);
-
1306 }
-
1307 inline GLboolean glIsSampler(
-
1308  GLuint sampler,
-
1309  source_location const &sourceLocation = source_location::current()) {
-
1310  return callGL(sourceLocation, ::glIsSampler, sampler);
-
1311 }
-
1312 inline void glBindSampler(
-
1313  GLuint unit, GLuint sampler,
-
1314  source_location const &sourceLocation = source_location::current()) {
-
1315  callGL(sourceLocation, ::glBindSampler, unit, sampler);
-
1316 }
- -
1318  GLuint sampler, GLenum pname, GLint param,
-
1319  source_location const &sourceLocation = source_location::current()) {
-
1320  callGL(sourceLocation, ::glSamplerParameteri, sampler, pname, param);
-
1321 }
- -
1323  GLuint sampler, GLenum pname, GLint const *param,
-
1324  source_location const &sourceLocation = source_location::current()) {
-
1325  callGL(sourceLocation, ::glSamplerParameteriv, sampler, pname, param);
-
1326 }
- -
1328  GLuint sampler, GLenum pname, GLfloat param,
-
1329  source_location const &sourceLocation = source_location::current()) {
-
1330  callGL(sourceLocation, ::glSamplerParameterf, sampler, pname, param);
-
1331 }
- -
1333  GLuint sampler, GLenum pname, GLfloat const *param,
-
1334  source_location const &sourceLocation = source_location::current()) {
-
1335  callGL(sourceLocation, ::glSamplerParameterfv, sampler, pname, param);
-
1336 }
- -
1338  GLuint sampler, GLenum pname, GLint *params,
-
1339  source_location const &sourceLocation = source_location::current()) {
-
1340  callGL(sourceLocation, ::glGetSamplerParameteriv, sampler, pname, params);
-
1341 }
- -
1343  GLuint sampler, GLenum pname, GLfloat *params,
-
1344  source_location const &sourceLocation = source_location::current()) {
-
1345  callGL(sourceLocation, ::glGetSamplerParameterfv, sampler, pname, params);
-
1346 }
- -
1348  GLuint index, GLuint divisor,
-
1349  source_location const &sourceLocation = source_location::current()) {
-
1350  callGL(sourceLocation, ::glVertexAttribDivisor, index, divisor);
-
1351 }
- -
1353  GLenum target, GLuint id,
-
1354  source_location const &sourceLocation = source_location::current()) {
-
1355  callGL(sourceLocation, ::glBindTransformFeedback, target, id);
-
1356 }
- -
1358  GLsizei n, GLuint const *ids,
-
1359  source_location const &sourceLocation = source_location::current()) {
-
1360  callGL(sourceLocation, ::glDeleteTransformFeedbacks, n, ids);
-
1361 }
- -
1363  GLsizei n, GLuint *ids,
-
1364  source_location const &sourceLocation = source_location::current()) {
-
1365  callGL(sourceLocation, ::glGenTransformFeedbacks, n, ids);
-
1366 }
-
1367 inline GLboolean glIsTransformFeedback(
-
1368  GLuint id,
-
1369  source_location const &sourceLocation = source_location::current()) {
-
1370  return callGL(sourceLocation, ::glIsTransformFeedback, id);
-
1371 }
- -
1373  source_location const &sourceLocation = source_location::current()) {
-
1374  callGL(sourceLocation, ::glPauseTransformFeedback);
-
1375 }
- -
1377  source_location const &sourceLocation = source_location::current()) {
-
1378  callGL(sourceLocation, ::glResumeTransformFeedback);
-
1379 }
- -
1381  GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat,
-
1382  void *binary,
-
1383  source_location const &sourceLocation = source_location::current()) {
-
1384  callGL(sourceLocation, ::glGetProgramBinary, program, bufSize, length,
-
1385  binaryFormat, binary);
-
1386 }
-
1387 inline void glProgramBinary(
-
1388  GLuint program, GLenum binaryFormat, void const *binary, GLsizei length,
-
1389  source_location const &sourceLocation = source_location::current()) {
-
1390  callGL(sourceLocation, ::glProgramBinary, program, binaryFormat, binary,
-
1391  length);
-
1392 }
- -
1394  GLuint program, GLenum pname, GLint value,
-
1395  source_location const &sourceLocation = source_location::current()) {
-
1396  callGL(sourceLocation, ::glProgramParameteri, program, pname, value);
-
1397 }
- -
1399  GLenum target, GLsizei numAttachments, GLenum const *attachments,
-
1400  source_location const &sourceLocation = source_location::current()) {
-
1401  callGL(sourceLocation, ::glInvalidateFramebuffer, target, numAttachments,
-
1402  attachments);
-
1403 }
- -
1405  GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x,
-
1406  GLint y, GLsizei width, GLsizei height,
-
1407  source_location const &sourceLocation = source_location::current()) {
-
1408  callGL(sourceLocation, ::glInvalidateSubFramebuffer, target, numAttachments,
-
1409  attachments, x, y, width, height);
-
1410 }
-
1411 inline void glTexStorage2D(
-
1412  GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
-
1413  GLsizei height,
-
1414  source_location const &sourceLocation = source_location::current()) {
-
1415  callGL(sourceLocation, ::glTexStorage2D, target, levels, internalformat,
-
1416  width, height);
-
1417 }
-
1418 inline void glTexStorage3D(
-
1419  GLenum target, GLsizei levels, GLenum internalformat, GLsizei width,
-
1420  GLsizei height, GLsizei depth,
-
1421  source_location const &sourceLocation = source_location::current()) {
-
1422  callGL(sourceLocation, ::glTexStorage3D, target, levels, internalformat,
-
1423  width, height, depth);
-
1424 }
- -
1426  GLenum target, GLenum internalformat, GLenum pname, GLsizei count,
-
1427  GLint *params,
-
1428  source_location const &sourceLocation = source_location::current()) {
-
1429  callGL(sourceLocation, ::glGetInternalformativ, target, internalformat, pname,
-
1430  count, params);
-
1431 }
-
1432 
-
1433 #if !defined(NDEBUG) && !defined(__EMSCRIPTEN__) && !defined(__APPLE__)
-
1434 
-
1435 // OpenGL 3.0+ function definitions
-
1436 
- -
1438  GLuint program, GLuint colorNumber, char const *name,
-
1439  source_location const &sourceLocation = source_location::current()) {
-
1440  callGL(sourceLocation, ::glBindFragDataLocation, program, colorNumber, name);
-
1441 }
-
1442 
-
1443 // OpenGL ES 3.1 function definitions
- -
1445  GLenum target, GLint level, GLenum pname, GLfloat *params,
-
1446  source_location const &sourceLocation = source_location::current()) {
-
1447  callGL(sourceLocation, ::glGetTexLevelParameterfv, target, level, pname,
-
1448  params);
-
1449 }
- -
1451  GLenum target, GLint level, GLenum pname, GLint *params,
-
1452  source_location const &sourceLocation = source_location::current()) {
-
1453  callGL(sourceLocation, ::glGetTexLevelParameteriv, target, level, pname,
-
1454  params);
-
1455 }
-
1456 
-
1457 // OpenGL 3.2+ function definitions
-
1458 // OpenGL ES 3.2 function definitions
- -
1460  GLenum target, GLenum attachment, GLuint texture, GLint level,
-
1461  source_location const &sourceLocation = source_location::current()) {
-
1462  callGL(sourceLocation, ::glFramebufferTexture, target, attachment, texture,
-
1463  level);
-
1464 }
-
1465 
- -
1467  GLenum target, GLsizei samples, GLenum internalformat, GLsizei width,
-
1468  GLsizei height, GLboolean fixedsamplelocations,
-
1469  source_location const &sourceLocation = source_location::current()) {
-
1470  callGL(sourceLocation, ::glTexImage2DMultisample, target, samples,
-
1471  internalformat, width, height, fixedsamplelocations);
-
1472 }
-
1473 
-
1474 // OpenGL 2.0+ function definitions
-
1475 
-
1476 inline void glGetDoublev(
-
1477  GLenum pname, GLdouble *params,
-
1478  source_location const &sourceLocation = source_location::current()) {
-
1479  callGL(sourceLocation, ::glGetDoublev, pname, params);
-
1480 }
-
1481 #endif
-
1482 // NOLINTEND(readability-identifier-length)
-
1483 
-
1484 } // namespace abcg
-
1485 
-
1486 #if defined(_MSC_VER)
-
1487 #pragma warning(pop)
-
1488 #endif
-
1489 
-
1490 #endif
-
Header file for including OpenGL-related third-party dependencies.
-
Root namespace.
Definition: abcg_application.hpp:23
-
void glSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1332
-
void glPauseTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1372
-
void glDetachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:312
-
void glPixelStorei(GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:580
-
void glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:476
-
void glDepthRangef(GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:307
-
void glUniform1fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:698
-
void glTransformFeedbackVaryings(GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1068
-
void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:634
-
void glBlendFuncSeparate(GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:166
-
void glEndTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1052
-
GLint glGetFragDataLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1123
-
void glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1273
-
GLenum glCheckFramebufferStatus(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:182
-
GLboolean glIsRenderbuffer(GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:556
-
void glUniform3uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1158
-
void glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:830
-
void glUniform1i(GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:703
-
void glClearBufferiv(GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1168
-
void glDeleteProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:271
-
void glCullFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:253
-
void glStencilMask(GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:639
-
GLboolean glUnmapBuffer(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:940
-
GLint glGetUniformLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:512
-
GLboolean glIsEnabled(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:542
-
void glGetActiveUniformBlockName(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1226
-
GLuint glCreateProgram(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:243
-
void glFramebufferRenderbuffer(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:355
-
void glGenTransformFeedbacks(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1362
-
void glUniform4f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:753
-
void glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1098
-
void glUniformMatrix4x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:985
-
void glUniform1iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:708
-
void glEnableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:342
-
void glDepthMask(GLboolean flag, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:303
-
void glBlendEquationSeparate(GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:156
-
void glDeleteSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1263
-
void glVertexAttribI4iv(GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1108
-
void glSamplerParameteriv(GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1322
-
void checkGLError(source_location const &sourceLocation, std::string_view appendString)
Checks OpenGL error status and throws on error with a log message.
Definition: abcg_opengl_function.cpp:25
-
void glUniform4i(GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:763
-
void glDrawArraysInstanced(GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1240
-
GLboolean glIsShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:562
-
void glClear(GLbitfield mask, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:188
-
void glFramebufferTextureLayer(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1005
-
void glClearStencil(GLint s, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:201
-
void glUniform3f(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:733
-
void glVertexAttrib2fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:815
-
void glGetRenderbufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:460
-
void glBindBuffer(GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:127
-
void glTexParameterf(GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:666
-
void glUniform4fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:758
-
void glReleaseShaderCompiler(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:597
-
void glGetUniformiv(GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:507
-
void glBindFragDataLocation(GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1437
-
void glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1103
-
void glBufferData(GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:172
-
void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:205
-
void glBeginTransformFeedback(GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1047
-
void glBeginQuery(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:920
-
void glViewport(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:848
-
void glUniform1ui(GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1128
-
void glTexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1411
-
void glInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1404
-
void glFramebufferTexture2D(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:362
-
void glDrawArrays(GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:327
-
void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:492
-
void glGetFramebufferAttachmentParameteriv(GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:438
-
void glGenRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:388
-
void glValidateProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:795
-
void glTexParameteri(GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:676
-
void glClearBufferfv(GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1178
-
GLenum glClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1267
-
void glUniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1143
-
void glUniformMatrix4x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:973
-
void glTexImage3D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:866
-
void glGetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1425
-
void glGetSynciv(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1282
-
void glGetInteger64v(GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1277
-
auto callGL(source_location const &sourceLocation, TFun &&function, TArgs &&...args)
Checks for OpenGL errors before and after a function call.
Definition: abcg_opengl_function.hpp:62
-
GLboolean glIsVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1037
-
void glDeleteVertexArrays(GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1027
-
void glGenBuffers(GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:373
-
void glEnable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:338
-
void glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:779
-
void glGenFramebuffers(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:383
-
void glGetIntegerv(GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:444
-
void glInvalidateFramebuffer(GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1398
-
void glBlendFunc(GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:161
-
GLuint glCreateShader(GLenum shaderType, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:247
-
void glUniformMatrix4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:785
-
void glDeleteTransformFeedbacks(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1357
-
GLuint glGetUniformBlockIndex(GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1214
-
void glDrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1246
-
void glGetAttachedShaders(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:412
-
void glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1093
-
void glGetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1292
-
void glVertexAttribDivisor(GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1347
-
void glDeleteFramebuffers(GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:264
-
void glDeleteQueries(GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:910
-
GLboolean glIsSync(GLsync sync, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1259
-
void glUniform1f(GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:693
-
void glFrontFace(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:369
-
void glGetProgramBinary(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1380
-
void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:192
-
void glDeleteTextures(GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:292
-
void glGetTexLevelParameterfv(GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1444
-
void glGetQueryObjectuiv(GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:935
-
void glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:522
-
void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:222
-
GLboolean glIsQuery(GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:916
-
void glTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:874
-
void glStencilOp(GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:648
-
void glGenVertexArrays(GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1032
-
void glTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:686
-
void glResumeTransformFeedback(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1376
-
void glUniformBlockBinding(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1233
-
void glShaderSource(GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:624
-
void glDisable(GLenum cap, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:318
-
void glGetShaderInfoLog(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:470
-
void glGenQueries(GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:905
-
void glStencilOpSeparate(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:653
-
void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:229
-
void glBindTransformFeedback(GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1352
-
void glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1056
-
void glUniformMatrix3x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:979
-
void glGetDoublev(GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1476
-
void glDeleteSamplers(GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1302
-
void glUniform3i(GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:743
-
GLboolean glIsTexture(GLuint texture, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:566
-
void glCopyBufferSubData(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1193
-
void glGetProgramInfoLog(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:454
-
void glFlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1017
-
void glFinish(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:348
-
void glDisableVertexAttribArray(GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:322
-
void glGetBooleanv(GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:423
-
void glCompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:897
-
void glUniform3fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:738
-
void glHint(GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:533
-
void glUniform3iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:748
-
void glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1075
-
void glCompileShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:210
-
void glGetQueryiv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:930
-
void glCopyTexSubImage3D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:882
-
void glClearBufferuiv(GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1173
-
void glTexParameterfv(GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:671
-
void glReadBuffer(GLenum src, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:855
-
void glGetShaderiv(GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:465
-
void glSamplerParameterf(GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1327
-
GLint glGetAttribLocation(GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:418
-
void glBindRenderbuffer(GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:137
-
void glGetSamplerParameterfv(GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1342
-
void glDepthFunc(GLenum func, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:299
-
void glBindBufferBase(GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1063
-
void glTexParameteriv(GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:681
-
void glDrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:859
-
void glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1082
-
void glProgramBinary(GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1387
-
void * glMapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1011
-
void glDeleteBuffers(GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:257
-
void glGetActiveUniformBlockiv(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1220
-
void glVertexAttrib3fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:825
-
void glStencilMaskSeparate(GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:643
-
void glAttachShader(GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:117
-
void glRenderbufferStorage(GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:601
-
void glBindFramebuffer(GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:132
-
void glGetActiveUniformsiv(GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1207
-
void glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:810
-
void glGetIntegeri_v(GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1042
-
void glCopyTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:236
-
void glUniform2i(GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:723
-
void glUniform2fv(GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:718
-
void glLineWidth(GLfloat width, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:571
-
void glDrawElements(GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:332
-
void glUniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:961
-
void glUniformMatrix2fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:773
-
GLboolean glIsFramebuffer(GLuint framebuffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:546
-
void glGetShaderSource(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:482
-
void glUniform2uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1153
-
void glActiveTexture(GLenum texture, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:112
-
void glUseProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:791
-
void glVertexAttribI4uiv(GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1113
-
void glUniform4uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1163
-
const GLubyte * glGetStringi(GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1188
-
void glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1287
-
void glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:405
-
void glGetTexParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:497
-
void glUniform2ui(GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1133
-
void glGetBufferParameteriv(GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:428
-
void glGetVertexAttribPointerv(GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:527
-
void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:215
-
std::source_location source_location
Definition: abcg_opengl_error.hpp:25
-
void glGenerateMipmap(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:378
-
void glClearDepthf(GLfloat d, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:197
-
void glGetUniformIndices(GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1200
-
void glEndQuery(GLenum target, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:926
-
GLsync glFenceSync(GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1253
-
void glGetUniformuiv(GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1118
-
void glStencilFunc(GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:629
-
void glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1088
-
void glDeleteShader(GLuint shader, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:285
-
void glUniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:955
-
void glCompressedTexImage3D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:889
-
GLboolean glIsProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:551
-
GLboolean glIsSampler(GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1307
-
void glGenSamplers(GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1297
-
void glGetBufferPointerv(GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:945
-
void glFramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1459
-
void glBindTexture(GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:142
-
void glSampleCoverage(GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:607
-
void glUniform2iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:728
-
void glDrawBuffers(GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:950
-
void glFlush(source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:352
-
void glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:398
-
void glGenTextures(GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:393
-
void glScissor(GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:613
-
void glTexImage2D(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:658
-
void glProgramParameteri(GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1393
-
void glGetUniformfv(GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:502
-
void glBindAttribLocation(GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:122
-
void glGetSamplerParameteriv(GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1337
-
void glUniform1uiv(GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1148
-
void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:590
-
void glUniformMatrix2x4fv(GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:967
-
void glSamplerParameteri(GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1317
-
void glUniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1138
-
void glTexImage2DMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1466
-
void glDeleteRenderbuffers(GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:278
-
GLboolean glIsTransformFeedback(GLuint id, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1367
-
void glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:517
-
void glGetTexLevelParameteriv(GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1450
-
void glBlitFramebuffer(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:991
-
void glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:998
-
void glUniform2f(GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:713
-
void glVertexAttrib1fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:805
-
void glGetFloatv(GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:433
-
void glVertexAttrib4fv(GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:835
-
void glShaderBinary(GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:617
-
const GLubyte * glGetString(GLenum name, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:487
-
void glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:840
-
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:177
-
void glVertexAttrib1f(GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:800
-
void glLinkProgram(GLuint program, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:575
-
void glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:147
-
void glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1418
-
void glGetProgramiv(GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:449
-
void glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:820
-
void glPolygonOffset(GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:585
-
void glBlendEquation(GLenum mode, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:152
-
GLboolean glIsBuffer(GLuint buffer, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:538
-
void glBindSampler(GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1312
-
void glUniform4iv(GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:768
-
void glClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1183
-
void glBindVertexArray(GLuint array, source_location const &sourceLocation=source_location::current())
Definition: abcg_opengl_function.hpp:1022
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__image_8cpp.html b/abcg/doc/html/abcg__opengl__image_8cpp.html deleted file mode 100644 index 02e8eb95f..000000000 --- a/abcg/doc/html/abcg__opengl__image_8cpp.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_image.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_image.cpp File Reference
-
-
- -

Definition of OpenGL texture loading helper functions. -More...

-
#include "abcg_opengl_image.hpp"
-#include "abcg_image.hpp"
-#include <cppitertools/itertools.hpp>
-#include <fmt/core.h>
-#include <fstream>
-#include <vector>
-#include "abcg_exception.hpp"
-
-Include dependency graph for abcg_opengl_image.cpp:
-
-
-
-
-

Detailed Description

-

Definition of OpenGL texture loading helper functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__image_8cpp__incl.map b/abcg/doc/html/abcg__opengl__image_8cpp__incl.map deleted file mode 100644 index 6c209fdc0..000000000 --- a/abcg/doc/html/abcg__opengl__image_8cpp__incl.map +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8cpp__incl.md5 b/abcg/doc/html/abcg__opengl__image_8cpp__incl.md5 deleted file mode 100644 index f6b21c6db..000000000 --- a/abcg/doc/html/abcg__opengl__image_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -118243e5a97359c55e375f6fdf0f38a9 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__image_8cpp__incl.svg b/abcg/doc/html/abcg__opengl__image_8cpp__incl.svg deleted file mode 100644 index 8d38c9292..000000000 --- a/abcg/doc/html/abcg__opengl__image_8cpp__incl.svg +++ /dev/null @@ -1,247 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_image.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.cpp - - - - - -Node2 - - -abcg_opengl_image.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -abcg_image.hpp - - - - - -Node1->Node6 - - - - - -Node9 - - -cppitertools/itertools.hpp - - - - - -Node1->Node9 - - - - - -Node10 - - -fmt/core.h - - - - - -Node1->Node10 - - - - - -Node11 - - -fstream - - - - - -Node1->Node11 - - - - - -Node12 - - -vector - - - - - -Node1->Node12 - - - - - -Node13 - - -abcg_exception.hpp - - - - - -Node1->Node13 - - - - - -Node3 - - -abcg_opengl_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -array - - - - - -Node2->Node4 - - - - - -Node5 - - -string_view - - - - - -Node2->Node5 - - - - - -Node7 - - -gsl/gsl - - - - - -Node6->Node7 - - - - - -Node8 - - -SDL_image.h - - - - - -Node6->Node8 - - - - - -Node14 - - -source_location - - - - - -Node13->Node14 - - - - - -Node15 - - -stdexcept - - - - - -Node13->Node15 - - - - - -Node16 - - -string - - - - - -Node13->Node16 - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp.html b/abcg/doc/html/abcg__opengl__image_8hpp.html deleted file mode 100644 index 8b199af37..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp File Reference
-
-
- -

Declaration of OpenGL texture loading helper functions. -More...

-
#include "abcg_opengl_external.hpp"
-#include <array>
-#include <string_view>
-
-Include dependency graph for abcg_opengl_image.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - -

-Functions

GLuint abcg::loadOpenGLTexture (std::string_view path, bool generateMipmaps=true, bool flipUpsideDown=true)
 
GLuint abcg::loadOpenGLCubemap (std::array< std::string, 6 > paths, bool generateMipmaps=true, bool rightHandedSystem=true)
 
-

Detailed Description

-

Declaration of OpenGL texture loading helper functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp.js b/abcg/doc/html/abcg__opengl__image_8hpp.js deleted file mode 100644 index ccce73f90..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp.js +++ /dev/null @@ -1,5 +0,0 @@ -var abcg__opengl__image_8hpp = -[ - [ "loadOpenGLCubemap", "abcg__opengl__image_8hpp.html#ac2a1c22a5e2f93c55846bbe47c49ab6a", null ], - [ "loadOpenGLTexture", "abcg__opengl__image_8hpp.html#ac91ee01db1707aa495613d72bcef7c3f", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.map deleted file mode 100644 index ec51e778c..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.md5 deleted file mode 100644 index a1b4cb6b4..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -f3206f65614c4823e52af7b6835d15c0 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.svg deleted file mode 100644 index 35e1c0ded..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__incl.map b/abcg/doc/html/abcg__opengl__image_8hpp__incl.map deleted file mode 100644 index de47508fd..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl__image_8hpp__incl.md5 deleted file mode 100644 index 9bbd62c88..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -0f0d041f21856f32f0821da9261d6253 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__image_8hpp__incl.svg b/abcg/doc/html/abcg__opengl__image_8hpp__incl.svg deleted file mode 100644 index b924699cb..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp__incl.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_image.hpp - - - - - -Node2 - - -abcg_opengl_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -array - - - - - -Node1->Node3 - - - - - -Node4 - - -string_view - - - - - -Node1->Node4 - - - - - diff --git a/abcg/doc/html/abcg__opengl__image_8hpp_source.html b/abcg/doc/html/abcg__opengl__image_8hpp_source.html deleted file mode 100644 index 81a867627..000000000 --- a/abcg/doc/html/abcg__opengl__image_8hpp_source.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_image.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_OPENGL_IMAGE_HPP_
-
12 #define ABCG_OPENGL_IMAGE_HPP_
-
13 
-
14 #include "abcg_opengl_external.hpp"
-
15 
-
16 #include <array>
-
17 #include <string_view>
-
18 
-
19 namespace abcg {
-
20 [[nodiscard]] GLuint loadOpenGLTexture(std::string_view path,
-
21  bool generateMipmaps = true,
-
22  bool flipUpsideDown = true);
-
23 [[nodiscard]] GLuint loadOpenGLCubemap(std::array<std::string, 6> paths,
-
24  bool generateMipmaps = true,
-
25  bool rightHandedSystem = true);
-
26 } // namespace abcg
-
27 
-
28 #endif
-
Header file for including OpenGL-related third-party dependencies.
-
Root namespace.
Definition: abcg_application.hpp:23
-
GLuint loadOpenGLCubemap(std::array< std::string, 6 > paths, bool generateMipmaps=true, bool rightHandedSystem=true)
Definition: abcg_opengl_image.cpp:91
-
GLuint loadOpenGLTexture(std::string_view path, bool generateMipmaps=true, bool flipUpsideDown=true)
Definition: abcg_opengl_image.cpp:21
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8cpp.html b/abcg/doc/html/abcg__opengl__shader_8cpp.html deleted file mode 100644 index 1a0ef9bcb..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8cpp.html +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_shader.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.cpp File Reference
-
-
- -

Definition of helper functions for building OpenGL shaders. -More...

-
#include "abcg_opengl_shader.hpp"
-#include "abcg_application.hpp"
-#include <cppitertools/itertools.hpp>
-#include <fmt/core.h>
-#include <filesystem>
-#include <fstream>
-#include <sstream>
-#include <vector>
-#include "abcg_exception.hpp"
-
-Include dependency graph for abcg_opengl_shader.cpp:
-
-
-
-
-

Detailed Description

-

Definition of helper functions for building OpenGL shaders.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.map b/abcg/doc/html/abcg__opengl__shader_8cpp__incl.map deleted file mode 100644 index ce7bd5466..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.map +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.md5 b/abcg/doc/html/abcg__opengl__shader_8cpp__incl.md5 deleted file mode 100644 index b30ee65d3..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -07b5bf2fce6a966ec388b53c40b3c02f \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.svg b/abcg/doc/html/abcg__opengl__shader_8cpp__incl.svg deleted file mode 100644 index 6006e32b4..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8cpp__incl.svg +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node2 - - -abcg_opengl_shader.hpp - - - - - -Node1->Node2 - - - - - -Node7 - - -vector - - - - - -Node1->Node7 - - - - - -Node8 - - -abcg_application.hpp - - - - - -Node1->Node8 - - - - - -Node9 - - -cppitertools/itertools.hpp - - - - - -Node1->Node9 - - - - - -Node10 - - -fmt/core.h - - - - - -Node1->Node10 - - - - - -Node11 - - -filesystem - - - - - -Node1->Node11 - - - - - -Node12 - - -fstream - - - - - -Node1->Node12 - - - - - -Node13 - - -sstream - - - - - -Node1->Node13 - - - - - -Node14 - - -abcg_exception.hpp - - - - - -Node1->Node14 - - - - - -Node3 - - -abcg_opengl_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_shader.hpp - - - - - -Node2->Node4 - - - - - -Node5 - - -string - - - - - -Node2->Node5 - - - - - -Node6 - - -string_view - - - - - -Node2->Node6 - - - - - -Node2->Node7 - - - - - -Node4->Node5 - - - - - -Node8->Node5 - - - - - -Node14->Node5 - - - - - -Node15 - - -source_location - - - - - -Node14->Node15 - - - - - -Node16 - - -stdexcept - - - - - -Node14->Node16 - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp.html b/abcg/doc/html/abcg__opengl__shader_8hpp.html deleted file mode 100644 index d5e449722..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp File Reference
-
-
- -

Declaration of helper functions for building OpenGL shaders. -More...

-
#include "abcg_opengl_external.hpp"
-#include "abcg_shader.hpp"
-#include <string>
-#include <string_view>
-#include <vector>
-
-Include dependency graph for abcg_opengl_shader.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - - - - - - - - - - - - -

-Functions

GLuint abcg::createOpenGLProgram (Shaders const &shaders, bool throwOnError=true)
 Creates a program object from a group of shader paths or source codes. More...
 
std::vector< GLuint > abcg::triggerOpenGLShaderCompile (Shaders const &shaders)
 Triggers the compilation of a group of shaders and returns immediately. More...
 
bool abcg::checkOpenGLShaderCompile (std::vector< GLuint > const &shaderIDs, bool throwOnError=true)
 Queries the compile status of shader objects. More...
 
GLuint abcg::triggerOpenGLShaderLink (std::vector< GLuint > const &shaderIDs, bool throwOnError=true)
 Triggers the linking of a group of shader objects. More...
 
bool abcg::checkOpenGLShaderLink (GLuint shaderProgram, bool throwOnError=true)
 Queries the link status of the shaders attached to a program object. More...
 
-

Detailed Description

-

Declaration of helper functions for building OpenGL shaders.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp.js b/abcg/doc/html/abcg__opengl__shader_8hpp.js deleted file mode 100644 index 9bdd9ede3..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp.js +++ /dev/null @@ -1,8 +0,0 @@ -var abcg__opengl__shader_8hpp = -[ - [ "checkOpenGLShaderCompile", "abcg__opengl__shader_8hpp.html#a6c75320e5f0b1f24d0ebb9e20b6da841", null ], - [ "checkOpenGLShaderLink", "abcg__opengl__shader_8hpp.html#aab59a12bb6313b5c58f5352ce6f380e5", null ], - [ "createOpenGLProgram", "abcg__opengl__shader_8hpp.html#a72f74c763a181d5a670cba8389b9686e", null ], - [ "triggerOpenGLShaderCompile", "abcg__opengl__shader_8hpp.html#adb64a7117629ae0a9ae196bc7e492e1e", null ], - [ "triggerOpenGLShaderLink", "abcg__opengl__shader_8hpp.html#a0ccfbceaf8ec168ac73d05bceb443aa9", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.map deleted file mode 100644 index 12d8ff9bf..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.md5 deleted file mode 100644 index b90e9e5d5..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ed2497e37e41ebe3e378aaa027a76c8d \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.svg deleted file mode 100644 index c60d5b53c..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__dep__incl.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node1->Node4 - - - - - -Node4->Node2 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node4->Node5 - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.map b/abcg/doc/html/abcg__opengl__shader_8hpp__incl.map deleted file mode 100644 index 641e75c9c..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.map +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl__shader_8hpp__incl.md5 deleted file mode 100644 index 42939ef15..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -0aea23e7f591dbf157fa14b53de09bae \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.svg b/abcg/doc/html/abcg__opengl__shader_8hpp__incl.svg deleted file mode 100644 index b0787c883..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp__incl.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.hpp - - - - - -Node2 - - -abcg_opengl_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_shader.hpp - - - - - -Node1->Node3 - - - - - -Node4 - - -string - - - - - -Node1->Node4 - - - - - -Node5 - - -string_view - - - - - -Node1->Node5 - - - - - -Node6 - - -vector - - - - - -Node1->Node6 - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__opengl__shader_8hpp_source.html b/abcg/doc/html/abcg__opengl__shader_8hpp_source.html deleted file mode 100644 index 3d9470fd1..000000000 --- a/abcg/doc/html/abcg__opengl__shader_8hpp_source.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_shader.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_OPENGL_SHADER_HPP_
-
12 #define ABCG_OPENGL_SHADER_HPP_
-
13 
-
14 #include "abcg_opengl_external.hpp"
-
15 #include "abcg_shader.hpp"
-
16 
-
17 #include <string>
-
18 #include <string_view>
-
19 #include <vector>
-
20 
-
21 namespace abcg {
-
22 [[nodiscard]] GLuint createOpenGLProgram(Shaders const &shaders,
-
23  bool throwOnError = true);
-
24 [[nodiscard]] std::vector<GLuint>
-
25 triggerOpenGLShaderCompile(Shaders const &shaders);
-
26 [[nodiscard]] bool
-
27 checkOpenGLShaderCompile(std::vector<GLuint> const &shaderIDs,
-
28  bool throwOnError = true);
-
29 [[nodiscard]] GLuint
-
30 triggerOpenGLShaderLink(std::vector<GLuint> const &shaderIDs,
-
31  bool throwOnError = true);
-
32 [[nodiscard]] bool checkOpenGLShaderLink(GLuint shaderProgram,
-
33  bool throwOnError = true);
-
34 } // namespace abcg
-
35 
-
36 #endif
-
Header file for including OpenGL-related third-party dependencies.
-
Declaration of helper functions for building shaders and programs.
-
Root namespace.
Definition: abcg_application.hpp:23
-
GLuint triggerOpenGLShaderLink(std::vector< GLuint > const &shaderIDs, bool throwOnError=true)
Triggers the linking of a group of shader objects.
Definition: abcg_opengl_shader.cpp:340
-
bool checkOpenGLShaderCompile(std::vector< GLuint > const &shaderIDs, bool throwOnError=true)
Queries the compile status of shader objects.
Definition: abcg_opengl_shader.cpp:283
-
GLuint createOpenGLProgram(Shaders const &shaders, bool throwOnError=true)
Creates a program object from a group of shader paths or source codes.
Definition: abcg_opengl_shader.cpp:85
-
bool checkOpenGLShaderLink(GLuint shaderProgram, bool throwOnError=true)
Queries the link status of the shaders attached to a program object.
Definition: abcg_opengl_shader.cpp:393
-
std::vector< GLuint > triggerOpenGLShaderCompile(Shaders const &shaders)
Triggers the compilation of a group of shaders and returns immediately.
Definition: abcg_opengl_shader.cpp:216
-
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__window_8cpp.html b/abcg/doc/html/abcg__opengl__window_8cpp.html deleted file mode 100644 index e60401112..000000000 --- a/abcg/doc/html/abcg__opengl__window_8cpp.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_window.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_window.cpp File Reference
-
-
- -

Definition of abcg::OpenGLWindow members. -More...

-
#include "abcg_opengl_window.hpp"
-#include <SDL_events.h>
-#include <SDL_image.h>
-#include <imgui_impl_opengl3.h>
-#include <imgui_impl_sdl.h>
-#include "abcg_embeddedfonts.hpp"
-#include "abcg_exception.hpp"
-#include "abcg_window.hpp"
-
-Include dependency graph for abcg_opengl_window.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::OpenGLWindow members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__window_8cpp__incl.map b/abcg/doc/html/abcg__opengl__window_8cpp__incl.map deleted file mode 100644 index 138b68db3..000000000 --- a/abcg/doc/html/abcg__opengl__window_8cpp__incl.map +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8cpp__incl.md5 b/abcg/doc/html/abcg__opengl__window_8cpp__incl.md5 deleted file mode 100644 index 40d1dc194..000000000 --- a/abcg/doc/html/abcg__opengl__window_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -0e394a3c5e943cae6bff1dadae0b6317 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__window_8cpp__incl.svg b/abcg/doc/html/abcg__opengl__window_8cpp__incl.svg deleted file mode 100644 index 63494622a..000000000 --- a/abcg/doc/html/abcg__opengl__window_8cpp__incl.svg +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_window.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node2 - - -abcg_opengl_window.hpp - - - - - -Node1->Node2 - - - - - -Node13 - - -abcg_window.hpp - - - - - -Node1->Node13 - - - - - -Node16 - - -SDL_events.h - - - - - -Node1->Node16 - - - - - -Node17 - - -SDL_image.h - - - - - -Node1->Node17 - - - - - -Node18 - - -imgui_impl_opengl3.h - - - - - -Node1->Node18 - - - - - -Node19 - - -imgui_impl_sdl.h - - - - - -Node1->Node19 - - - - - -Node20 - - -abcg_embeddedfonts.hpp - - - - - -Node1->Node20 - - - - - -Node22 - - -abcg_exception.hpp - - - - - -Node1->Node22 - - - - - -Node3 - - -string - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_external.hpp - - - - - -Node2->Node4 - - - - - -Node5 - - -abcg_opengl_function.hpp - - - - - -Node2->Node5 - - - - - -Node10 - - -abcg_opengl_shader.hpp - - - - - -Node2->Node10 - - - - - -Node2->Node13 - - - - - -Node6 - - -source_location - - - - - -Node5->Node6 - - - - - -Node7 - - -string_view - - - - - -Node5->Node7 - - - - - -Node8 - - -type_traits - - - - - -Node5->Node8 - - - - - -Node9 - - -abcg_opengl_external.hpp - - - - - -Node5->Node9 - - - - - -Node10->Node3 - - - - - -Node10->Node7 - - - - - -Node10->Node9 - - - - - -Node11 - - -abcg_shader.hpp - - - - - -Node10->Node11 - - - - - -Node12 - - -vector - - - - - -Node10->Node12 - - - - - -Node11->Node3 - - - - - -Node13->Node3 - - - - - -Node13->Node4 - - - - - -Node14 - - -abcg_elapsedtimer.hpp - - - - - -Node13->Node14 - - - - - -Node15 - - -chrono - - - - - -Node14->Node15 - - - - - -Node21 - - -array - - - - - -Node20->Node21 - - - - - -Node22->Node3 - - - - - -Node22->Node6 - - - - - -Node23 - - -stdexcept - - - - - -Node22->Node23 - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp.html b/abcg/doc/html/abcg__opengl__window_8hpp.html deleted file mode 100644 index 10d516f7e..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp File Reference
-
-
- -

Header file of abcg::OpenGLWindow. -More...

-
#include <string>
-#include "abcg_external.hpp"
-#include "abcg_opengl_function.hpp"
-#include "abcg_opengl_shader.hpp"
-#include "abcg_window.hpp"
-
-Include dependency graph for abcg_opengl_window.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - - - - -

-Classes

struct  abcg::OpenGLSettings
 Configuration settings for creating an OpenGL context. More...
 
class  abcg::OpenGLWindow
 Base class for a window that displays graphics using an OpenGL context. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - -

-Enumerations

enum class  abcg::OpenGLProfile { abcg::Core -, abcg::Compatibility -, abcg::ES - }
 Enumeration of OpenGL profiles. More...
 
-

Detailed Description

-

Header file of abcg::OpenGLWindow.

-

Declaration of abcg::OpenGLWindow.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp.js b/abcg/doc/html/abcg__opengl__window_8hpp.js deleted file mode 100644 index 98876ff62..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp.js +++ /dev/null @@ -1,10 +0,0 @@ -var abcg__opengl__window_8hpp = -[ - [ "OpenGLSettings", "structabcg_1_1OpenGLSettings.html", "structabcg_1_1OpenGLSettings" ], - [ "OpenGLWindow", "classabcg_1_1OpenGLWindow.html", "classabcg_1_1OpenGLWindow" ], - [ "OpenGLProfile", "abcg__opengl__window_8hpp.html#aef63a265616374ef2d9f1d63b0e9328e", [ - [ "Core", "abcg__opengl__window_8hpp.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153", null ], - [ "Compatibility", "abcg__opengl__window_8hpp.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53", null ], - [ "ES", "abcg__opengl__window_8hpp.html#aef63a265616374ef2d9f1d63b0e9328ea04c19fa1e772ab66f0aad2efe61f25cd", null ] - ] ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.map b/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.map deleted file mode 100644 index 14888091e..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.md5 deleted file mode 100644 index d1f94aa5f..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -fa70ba50da9957d7b964fafb72a0488c \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.svg b/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.svg deleted file mode 100644 index e520b3a80..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__incl.map b/abcg/doc/html/abcg__opengl__window_8hpp__incl.map deleted file mode 100644 index c0e55678e..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__incl.map +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__incl.md5 b/abcg/doc/html/abcg__opengl__window_8hpp__incl.md5 deleted file mode 100644 index 01a6a6dc1..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -a57db5ff5b6387f96bc2565a6b8654c5 \ No newline at end of file diff --git a/abcg/doc/html/abcg__opengl__window_8hpp__incl.svg b/abcg/doc/html/abcg__opengl__window_8hpp__incl.svg deleted file mode 100644 index 75c5d6f8e..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp__incl.svg +++ /dev/null @@ -1,253 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node2 - - -string - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node1->Node3 - - - - - -Node4 - - -abcg_opengl_function.hpp - - - - - -Node1->Node4 - - - - - -Node9 - - -abcg_opengl_shader.hpp - - - - - -Node1->Node9 - - - - - -Node12 - - -abcg_window.hpp - - - - - -Node1->Node12 - - - - - -Node5 - - -source_location - - - - - -Node4->Node5 - - - - - -Node6 - - -string_view - - - - - -Node4->Node6 - - - - - -Node7 - - -type_traits - - - - - -Node4->Node7 - - - - - -Node8 - - -abcg_opengl_external.hpp - - - - - -Node4->Node8 - - - - - -Node9->Node2 - - - - - -Node9->Node6 - - - - - -Node9->Node8 - - - - - -Node10 - - -abcg_shader.hpp - - - - - -Node9->Node10 - - - - - -Node11 - - -vector - - - - - -Node9->Node11 - - - - - -Node10->Node2 - - - - - -Node12->Node2 - - - - - -Node12->Node3 - - - - - -Node13 - - -abcg_elapsedtimer.hpp - - - - - -Node12->Node13 - - - - - -Node14 - - -chrono - - - - - -Node13->Node14 - - - - - diff --git a/abcg/doc/html/abcg__opengl__window_8hpp_source.html b/abcg/doc/html/abcg__opengl__window_8hpp_source.html deleted file mode 100644 index 8ebc7d619..000000000 --- a/abcg/doc/html/abcg__opengl__window_8hpp_source.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_opengl_window.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_OPENGL_WINDOW_HPP_
-
14 #define ABCG_OPENGL_WINDOW_HPP_
-
15 
-
16 #include <string>
-
17 
-
18 #include "abcg_external.hpp"
-
19 #include "abcg_opengl_function.hpp"
-
20 #include "abcg_opengl_shader.hpp"
-
21 #include "abcg_window.hpp"
-
22 
-
23 namespace abcg {
-
24 enum class OpenGLProfile;
-
25 class OpenGLWindow;
-
26 struct OpenGLSettings;
-
27 } // namespace abcg
-
28 
-
34 enum class abcg::OpenGLProfile {
-
39  Core,
- -
49  ES
-
50 };
-
51 
- - -
66  int majorVersion{3};
-
68  int minorVersion{3};
-
70  int depthBufferSize{24};
- -
75  int samples{0};
-
78  bool vSync{false};
-
80  bool doubleBuffering{true};
-
81 };
-
82 
-
101 class abcg::OpenGLWindow : public Window {
-
102 public:
-
103  [[nodiscard]] OpenGLSettings const &getOpenGLSettings() const noexcept;
-
104  void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept;
-
105  void saveScreenshotPNG(std::string_view filename) const;
-
106 
-
107 protected:
-
108  virtual void onEvent(SDL_Event &event);
-
109  virtual void onInitialize();
-
110  virtual void onPaint();
-
111  virtual void onPaintUI();
-
112  virtual void onResize(glm::ivec2 size);
-
113  virtual void onCleanup();
-
114 
-
115 private:
-
116  void handleEvent(SDL_Event &event) override;
-
117  void initialize() override;
-
118  void paint() override;
-
119  void cleanup() override;
-
120  [[nodiscard]] glm::ivec2 getWindowSize() const override;
-
121 
-
122  OpenGLSettings m_openGLSettings;
-
123 
-
124  std::string m_GLSLVersion;
-
125 
-
126  SDL_GLContext m_GLContext{};
-
127 };
-
128 
-
129 #endif
-
Header file for including third-party dependencies.
-
Declaration of OpenGL-related error checking functions.
-
Declaration of helper functions for building OpenGL shaders.
-
Header file of abcg::Window.
-
Base class for a window that displays graphics using an OpenGL context.
Definition: abcg_opengl_window.hpp:101
-
virtual void onResize(glm::ivec2 size)
Custom handler for window resizing events.
Definition: abcg_opengl_window.cpp:200
-
virtual void onEvent(SDL_Event &event)
Custom event handler.
Definition: abcg_opengl_window.cpp:89
-
virtual void onInitialize()
Custom handler for OpenGL initialization tasks to be performed before rendering the scene.
Definition: abcg_opengl_window.cpp:100
-
virtual void onPaint()
Custom handler for rendering the OpenGL scene.
Definition: abcg_opengl_window.cpp:112
-
void saveScreenshotPNG(std::string_view filename) const
Takes a snapshot of the screen and saves it to a file.
Definition: abcg_opengl_window.cpp:52
-
OpenGLSettings const & getOpenGLSettings() const noexcept
Returns the configuration settings of the OpenGL context.
Definition: abcg_opengl_window.cpp:29
-
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition: abcg_opengl_window.cpp:128
-
virtual void onCleanup()
Custom handler for cleaning up OpenGL resources.
Definition: abcg_opengl_window.cpp:209
-
void setOpenGLSettings(OpenGLSettings const &openGLSettings) noexcept
Sets the configuration settings that will be used for creating the OpenGL context.
Definition: abcg_opengl_window.cpp:40
-
Base abstract class that represents a SDL window.
Definition: abcg_window.hpp:86
-
Root namespace.
Definition: abcg_application.hpp:23
-
OpenGLProfile
Enumeration of OpenGL profiles.
Definition: abcg_opengl_window.hpp:34
-
@ ES
OpenGL ES profile.
-
@ Core
OpenGL core profile.
-
@ Compatibility
OpenGL compatibility profile.
-
Configuration settings for creating an OpenGL context.
Definition: abcg_opengl_window.hpp:62
-
int samples
Number of samples used around the current pixel used for multisample anti-aliasing.
Definition: abcg_opengl_window.hpp:75
-
bool vSync
Whether the swapping of the front and back frame buffers is synchronized with the vertical retrace.
Definition: abcg_opengl_window.hpp:78
-
int depthBufferSize
Minimum number of bits in the depth buffer.
Definition: abcg_opengl_window.hpp:70
-
bool doubleBuffering
Whether the output is double buffered.
Definition: abcg_opengl_window.hpp:80
-
int minorVersion
OpenGL context minor version.
Definition: abcg_opengl_window.hpp:68
-
int stencilBufferSize
Minimum number of bits in the stencil buffer.
Definition: abcg_opengl_window.hpp:72
-
OpenGLProfile profile
Type of OpenGL context.
Definition: abcg_opengl_window.hpp:64
-
int majorVersion
OpenGL context major version.
Definition: abcg_opengl_window.hpp:66
-
-
- - - - diff --git a/abcg/doc/html/abcg__shader_8hpp.html b/abcg/doc/html/abcg__shader_8hpp.html deleted file mode 100644 index f43eb6a64..000000000 --- a/abcg/doc/html/abcg__shader_8hpp.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_shader.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_shader.hpp File Reference
-
-
- -

Declaration of helper functions for building shaders and programs. -More...

-
#include <string>
-
-Include dependency graph for abcg_shader.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

struct  abcg::Shaders
 Simple structure of strings containing paths or source code of shaders to be compiled. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Declaration of helper functions for building shaders and programs.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__shader_8hpp__dep__incl.map b/abcg/doc/html/abcg__shader_8hpp__dep__incl.map deleted file mode 100644 index fe7ae0681..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__dep__incl.map +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/abcg/doc/html/abcg__shader_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__shader_8hpp__dep__incl.md5 deleted file mode 100644 index f8d641360..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -78d766cc3bf00668c0004b47811d7cdb \ No newline at end of file diff --git a/abcg/doc/html/abcg__shader_8hpp__dep__incl.svg b/abcg/doc/html/abcg__shader_8hpp__dep__incl.svg deleted file mode 100644 index ba215d5c0..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__dep__incl.svg +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_shader.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_shader.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_shader.cpp - - - - - -Node2->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node2->Node5 - - - - - -Node5->Node3 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node5->Node6 - - - - - diff --git a/abcg/doc/html/abcg__shader_8hpp__incl.map b/abcg/doc/html/abcg__shader_8hpp__incl.map deleted file mode 100644 index dec440968..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/abcg/doc/html/abcg__shader_8hpp__incl.md5 b/abcg/doc/html/abcg__shader_8hpp__incl.md5 deleted file mode 100644 index d155bd92e..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -54813940e7f2c00e77353a169bca3736 \ No newline at end of file diff --git a/abcg/doc/html/abcg__shader_8hpp__incl.svg b/abcg/doc/html/abcg__shader_8hpp__incl.svg deleted file mode 100644 index 4adc79af7..000000000 --- a/abcg/doc/html/abcg__shader_8hpp__incl.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_shader.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_shader.hpp - - - - - -Node2 - - -string - - - - - -Node1->Node2 - - - - - diff --git a/abcg/doc/html/abcg__shader_8hpp_source.html b/abcg/doc/html/abcg__shader_8hpp_source.html deleted file mode 100644 index a12c5242f..000000000 --- a/abcg/doc/html/abcg__shader_8hpp_source.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_shader.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_shader.hpp
-
-
-Go to the documentation of this file.
1 
-
11 #ifndef ABCG_SHADER_HPP_
-
12 #define ABCG_SHADER_HPP_
-
13 
-
14 #include <string>
-
15 
-
16 namespace abcg {
-
17 struct Shaders;
-
18 }; // namespace abcg
-
19 
-
35 struct abcg::Shaders {
-
39  std::string vertexShader{};
-
43  std::string fragmentShader{};
-
47  std::string geometryShader{};
-
55  std::string tessControlShader{};
-
63  std::string tessEvalShader{};
-
70  std::string computeShader{};
-
71 };
-
72 
-
73 #endif
-
Root namespace.
Definition: abcg_application.hpp:23
-
Simple structure of strings containing paths or source code of shaders to be compiled.
Definition: abcg_shader.hpp:35
-
std::string computeShader
String containing the path or source code of a computer shader.
Definition: abcg_shader.hpp:70
-
std::string fragmentShader
String containing the path or source code of a fragment shader.
Definition: abcg_shader.hpp:43
-
std::string vertexShader
String containing the path or source code of a vertex shader.
Definition: abcg_shader.hpp:39
-
std::string tessEvalShader
String containing the path or source code of a tessellation evaluation shader.
Definition: abcg_shader.hpp:63
-
std::string tessControlShader
String containing the path or source code of a tessellation control shader.
Definition: abcg_shader.hpp:55
-
std::string geometryShader
String containing the path or source code of a geometry shader.
Definition: abcg_shader.hpp:47
-
-
- - - - diff --git a/abcg/doc/html/abcg__trackball_8cpp.html b/abcg/doc/html/abcg__trackball_8cpp.html deleted file mode 100644 index 7be1edff3..000000000 --- a/abcg/doc/html/abcg__trackball_8cpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_trackball.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_trackball.cpp File Reference
-
-
- -

Definition of abcg::TrackBall members. -More...

-
#include "abcg_trackball.hpp"
-#include <algorithm>
-#include <limits>
-
-Include dependency graph for abcg_trackball.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::TrackBall members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__trackball_8cpp__incl.map b/abcg/doc/html/abcg__trackball_8cpp__incl.map deleted file mode 100644 index a64ebbc44..000000000 --- a/abcg/doc/html/abcg__trackball_8cpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/abcg/doc/html/abcg__trackball_8cpp__incl.md5 b/abcg/doc/html/abcg__trackball_8cpp__incl.md5 deleted file mode 100644 index 2e99f8ab4..000000000 --- a/abcg/doc/html/abcg__trackball_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -7f988fc6ead4d73fe69ad708ba90bf5c \ No newline at end of file diff --git a/abcg/doc/html/abcg__trackball_8cpp__incl.svg b/abcg/doc/html/abcg__trackball_8cpp__incl.svg deleted file mode 100644 index 0a80e2bb3..000000000 --- a/abcg/doc/html/abcg__trackball_8cpp__incl.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_trackball.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.cpp - - - - - -Node2 - - -abcg_trackball.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -algorithm - - - - - -Node1->Node6 - - - - - -Node7 - - -limits - - - - - -Node1->Node7 - - - - - -Node3 - - -abcg_elapsedtimer.hpp - - - - - -Node2->Node3 - - - - - -Node5 - - -abcg_external.hpp - - - - - -Node2->Node5 - - - - - -Node4 - - -chrono - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp.html b/abcg/doc/html/abcg__trackball_8hpp.html deleted file mode 100644 index 801c15e8f..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_trackball.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_trackball.hpp File Reference
-
-
- -

Header file of abcg::TrackBall. -More...

-
#include "abcg_elapsedtimer.hpp"
-#include "abcg_external.hpp"
-
-Include dependency graph for abcg_trackball.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::TrackBall
 Manages a virtual trackball. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::TrackBall.

-

Declaration of abcg::TrackBall class.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.map b/abcg/doc/html/abcg__trackball_8hpp__dep__incl.map deleted file mode 100644 index 515a931e7..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__trackball_8hpp__dep__incl.md5 deleted file mode 100644 index 295a5b130..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -cec6e4b5267fd5b9ee025b612f082470 \ No newline at end of file diff --git a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.svg b/abcg/doc/html/abcg__trackball_8hpp__dep__incl.svg deleted file mode 100644 index 6dc454e2c..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_trackball.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp__incl.map b/abcg/doc/html/abcg__trackball_8hpp__incl.map deleted file mode 100644 index 30427b6ef..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp__incl.md5 b/abcg/doc/html/abcg__trackball_8hpp__incl.md5 deleted file mode 100644 index bf1cd1544..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -c75e5c2c5bc064e63d4799850e49a910 \ No newline at end of file diff --git a/abcg/doc/html/abcg__trackball_8hpp__incl.svg b/abcg/doc/html/abcg__trackball_8hpp__incl.svg deleted file mode 100644 index cfedcbfc1..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp__incl.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_trackball.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_trackball.hpp - - - - - -Node2 - - -abcg_elapsedtimer.hpp - - - - - -Node1->Node2 - - - - - -Node4 - - -abcg_external.hpp - - - - - -Node1->Node4 - - - - - -Node3 - - -chrono - - - - - -Node2->Node3 - - - - - diff --git a/abcg/doc/html/abcg__trackball_8hpp_source.html b/abcg/doc/html/abcg__trackball_8hpp_source.html deleted file mode 100644 index f0ca36985..000000000 --- a/abcg/doc/html/abcg__trackball_8hpp_source.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_trackball.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_trackball.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_TRACKBALL_HPP_
-
14 #define ABCG_TRACKBALL_HPP_
-
15 
-
16 #include "abcg_elapsedtimer.hpp"
-
17 #include "abcg_external.hpp"
-
18 
-
19 namespace abcg {
-
20 class TrackBall;
-
21 } // namespace abcg
-
22 
- -
28 public:
-
29  void mouseMove(glm::ivec2 const &position);
-
30  void mousePress(glm::ivec2 const &position);
-
31  void mouseRelease(glm::ivec2 const &position);
-
32  void resizeViewport(glm::ivec2 const &size) noexcept;
-
33 
-
34  [[nodiscard]] glm::quat getRotation() const;
-
35 
-
43  void setAxis(glm::vec3 const axis) noexcept { m_axis = axis; }
-
44 
-
52  void setVelocity(float const velocity) noexcept { m_velocity = velocity; }
-
53 
-
54 private:
-
55  constexpr static float m_maxVelocity{glm::radians(720.0f / 1000.0f)};
-
56 
-
57  glm::vec3 m_axis{1.0f};
-
58  float m_velocity{};
-
59  glm::quat m_rotation{glm::quat(1.0, 0.0, 0.0, 0.0)};
-
60 
-
61  float m_durationSinceLastEvent{};
-
62 
-
63  glm::vec3 m_lastPosition{};
-
64  ElapsedTimer m_lastTime;
-
65  bool m_mouseTracking{};
-
66 
-
67  glm::ivec2 m_viewportSize{0};
-
68 
-
69  [[nodiscard]] glm::vec3 project(glm::vec2 const &mousePosition) const;
-
70 };
-
71 
-
72 #endif
-
Header file of abcg::ElapsedTimer.
-
Header file for including third-party dependencies.
-
Manages a virtual trackball.
Definition: abcg_trackball.hpp:27
-
void setVelocity(float const velocity) noexcept
Sets the trackball's rotation velocity.
Definition: abcg_trackball.hpp:52
-
void mousePress(glm::ivec2 const &position)
Function to be called on a mouse press event.
Definition: abcg_trackball.cpp:58
-
glm::quat getRotation() const
Returns the current trackball rotation as a quaternion.
Definition: abcg_trackball.cpp:97
-
void setAxis(glm::vec3 const axis) noexcept
Sets the trackball's axis of rotation.
Definition: abcg_trackball.hpp:43
-
void mouseRelease(glm::ivec2 const &position)
Function to be called on a mouse release event.
Definition: abcg_trackball.cpp:74
-
void resizeViewport(glm::ivec2 const &size) noexcept
Function to be called when the window is resized.
Definition: abcg_trackball.cpp:88
-
void mouseMove(glm::ivec2 const &position)
Function to be called on a mouse move event.
Definition: abcg_trackball.cpp:23
-
Root namespace.
Definition: abcg_application.hpp:23
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan_8cpp.html b/abcg/doc/html/abcg__vulkan_8cpp.html deleted file mode 100644 index f27fa564b..000000000 --- a/abcg/doc/html/abcg__vulkan_8cpp.html +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan.cpp File Reference
-
-
-
#include "abcg_vulkan.hpp"
-#include <set>
-#include <span>
-#include "abcg_vulkan_physical_device.hpp"
-
-Include dependency graph for abcg_vulkan.cpp:
-
-
-
-
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan_8cpp__incl.map b/abcg/doc/html/abcg__vulkan_8cpp__incl.map deleted file mode 100644 index a20a8ac57..000000000 --- a/abcg/doc/html/abcg__vulkan_8cpp__incl.map +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan_8cpp__incl.md5 deleted file mode 100644 index ef3a84837..000000000 --- a/abcg/doc/html/abcg__vulkan_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -4bc270f5b7a6fdace634ccddecc18960 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan_8cpp__incl.svg deleted file mode 100644 index 051e2c35c..000000000 --- a/abcg/doc/html/abcg__vulkan_8cpp__incl.svg +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.cpp - - - - - -Node2 - - -abcg_vulkan.hpp - - - - - -Node1->Node2 - - - - - -Node5 - - -set - - - - - -Node1->Node5 - - - - - -Node6 - - -span - - - - - -Node1->Node6 - - - - - -Node7 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node7 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_vulkan_external.hpp - - - - - -Node2->Node4 - - - - - -Node7->Node2 - - - - - -Node7->Node3 - - - - - -Node8 - - -vulkan/vulkan_handles.hpp - - - - - -Node7->Node8 - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp.html b/abcg/doc/html/abcg__vulkan_8hpp.html deleted file mode 100644 index c0603c9eb..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp.html +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp File Reference
-
-
- -

Header file for Vulkan-related functions and classes. -More...

-
-Include dependency graph for abcg_vulkan.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - - - - - - - - - - - - - - - - -

-Classes

struct  abcg::VulkanExtensions
 Data that represents extension names. More...
 
struct  abcg::VulkanLayers
 Data that represents layer names. More...
 
struct  abcg::VulkanQueues
 Data that represents the available queues. More...
 
struct  abcg::VulkanQueuesFamilies
 Data that represents the available queue families. More...
 
struct  abcg::VulkanCommandPools
 Data that represents the per-queue command pools. More...
 
struct  abcg::VulkanSwapchainSupport
 Data that represents the details of the swapchain support. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - - - -

-Typedefs

using abcg::OutVulkanLayers = std::optional< std::reference_wrapper< VulkanLayers > >
 
using abcg::OutVulkanExtensions = std::optional< std::reference_wrapper< VulkanExtensions > >
 
-

Detailed Description

-

Header file for Vulkan-related functions and classes.

-

Declaration of Vulkan-related classes and helper functions.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp.js b/abcg/doc/html/abcg__vulkan_8hpp.js deleted file mode 100644 index 5c52698c3..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp.js +++ /dev/null @@ -1,11 +0,0 @@ -var abcg__vulkan_8hpp = -[ - [ "VulkanExtensions", "structabcg_1_1VulkanExtensions.html", "structabcg_1_1VulkanExtensions" ], - [ "VulkanLayers", "structabcg_1_1VulkanLayers.html", "structabcg_1_1VulkanLayers" ], - [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], - [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], - [ "VulkanCommandPools", "structabcg_1_1VulkanCommandPools.html", "structabcg_1_1VulkanCommandPools" ], - [ "VulkanSwapchainSupport", "structabcg_1_1VulkanSwapchainSupport.html", "structabcg_1_1VulkanSwapchainSupport" ], - [ "OutVulkanExtensions", "abcg__vulkan_8hpp.html#a4efafd0a56acdb8e8afbc725a2f31b6b", null ], - [ "OutVulkanLayers", "abcg__vulkan_8hpp.html#aa6549036b0b495ac1e497a945cbb2030", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.map deleted file mode 100644 index af165c584..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.map +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.md5 deleted file mode 100644 index 3b3af7fb8..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -c0dd921d963b88d6312f31cc155b93e2 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.svg deleted file mode 100644 index 1f032b3dc..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__dep__incl.svg +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.hpp - - - - - -Node1->Node3 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node6 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.hpp - - - - - -Node1->Node8 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node11 - - - - - -Node12 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.hpp - - - - - -Node1->Node12 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node3->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node3->Node5 - - - - - -Node3->Node6 - - - - - -Node6->Node5 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node6->Node7 - - - - - -Node8->Node6 - - - - - -Node8->Node7 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node8->Node9 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node8->Node10 - - - - - -Node11->Node2 - - - - - -Node11->Node4 - - - - - -Node11->Node5 - - - - - -Node11->Node6 - - - - - -Node11->Node10 - - - - - -Node12->Node5 - - - - - -Node12->Node6 - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp__incl.map b/abcg/doc/html/abcg__vulkan_8hpp__incl.map deleted file mode 100644 index a8dac3fb4..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan_8hpp__incl.md5 deleted file mode 100644 index 3ae03b7c2..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -d33ea0f9c4224b97656ee47fd7c28d28 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan_8hpp__incl.svg deleted file mode 100644 index 8dedbb2e1..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp__incl.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.hpp - - - - - -Node2 - - -abcg_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_vulkan_external.hpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__vulkan_8hpp_source.html b/abcg/doc/html/abcg__vulkan_8hpp_source.html deleted file mode 100644 index aadde13c8..000000000 --- a/abcg/doc/html/abcg__vulkan_8hpp_source.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_HPP_
-
14 #define ABCG_VULKAN_HPP_
-
15 
-
16 #include "abcg_external.hpp"
-
17 #include "abcg_vulkan_external.hpp"
-
18 
-
19 namespace abcg {
-
20 class VulkanPhysicalDevice;
-
21 struct VulkanExtensions;
-
22 struct VulkanLayers;
-
23 struct VulkanQueues;
-
24 struct VulkanQueuesFamilies;
-
25 struct VulkanCommandPools;
-
26 struct VulkanSwapchainSupport;
-
27 
-
28 using OutVulkanLayers = std::optional<std::reference_wrapper<VulkanLayers>>;
- -
30  std::optional<std::reference_wrapper<VulkanExtensions>>;
-
31 } // namespace abcg
-
32 
- -
35  std::vector<char const *> names;
-
36 };
-
37 
- -
40  std::vector<char const *> names;
-
41 };
-
42 
- -
45  vk::Queue compute{};
-
46  vk::Queue graphics{};
-
47  vk::Queue present{};
-
48  vk::Queue transfer{};
-
49 };
-
50 
- -
53  std::optional<uint32_t> compute;
-
54  std::optional<uint32_t> graphics;
-
55  std::optional<uint32_t> present;
-
56  std::optional<uint32_t> transfer;
-
57 };
-
58 
- -
61  vk::CommandPool compute{};
-
62  vk::CommandPool graphics{};
-
63  vk::CommandPool transfer{};
-
64 };
-
65 
- -
68  vk::SurfaceCapabilitiesKHR capabilities;
-
69  std::vector<vk::SurfaceFormatKHR> formats;
-
70  std::vector<vk::PresentModeKHR> presentModes;
-
71 };
-
72 
-
73 #endif
-
Header file for including third-party dependencies.
-
Header file for including Vulkan-related dependencies.
-
Root namespace.
Definition: abcg_application.hpp:23
-
std::optional< std::reference_wrapper< VulkanExtensions > > OutVulkanExtensions
Definition: abcg_vulkan.hpp:30
-
std::optional< std::reference_wrapper< VulkanLayers > > OutVulkanLayers
Definition: abcg_vulkan.hpp:28
-
Data that represents the per-queue command pools.
Definition: abcg_vulkan.hpp:60
-
vk::CommandPool graphics
Definition: abcg_vulkan.hpp:62
-
vk::CommandPool transfer
Definition: abcg_vulkan.hpp:63
-
vk::CommandPool compute
Definition: abcg_vulkan.hpp:61
-
Data that represents extension names.
Definition: abcg_vulkan.hpp:34
-
std::vector< char const * > names
Definition: abcg_vulkan.hpp:35
-
Data that represents layer names.
Definition: abcg_vulkan.hpp:39
-
std::vector< char const * > names
Definition: abcg_vulkan.hpp:40
-
Data that represents the available queue families.
Definition: abcg_vulkan.hpp:52
-
std::optional< uint32_t > compute
Definition: abcg_vulkan.hpp:53
-
std::optional< uint32_t > transfer
Definition: abcg_vulkan.hpp:56
-
std::optional< uint32_t > present
Definition: abcg_vulkan.hpp:55
-
std::optional< uint32_t > graphics
Definition: abcg_vulkan.hpp:54
-
Data that represents the available queues.
Definition: abcg_vulkan.hpp:44
-
vk::Queue transfer
Definition: abcg_vulkan.hpp:48
-
vk::Queue graphics
Definition: abcg_vulkan.hpp:46
-
vk::Queue compute
Definition: abcg_vulkan.hpp:45
-
vk::Queue present
Definition: abcg_vulkan.hpp:47
-
Data that represents the details of the swapchain support.
Definition: abcg_vulkan.hpp:67
-
std::vector< vk::PresentModeKHR > presentModes
Definition: abcg_vulkan.hpp:70
-
vk::SurfaceCapabilitiesKHR capabilities
Definition: abcg_vulkan.hpp:68
-
std::vector< vk::SurfaceFormatKHR > formats
Definition: abcg_vulkan.hpp:69
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8cpp.html b/abcg/doc/html/abcg__vulkan__device_8cpp.html deleted file mode 100644 index bedd428c3..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8cpp.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_device.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.cpp File Reference
-
-
- -

Definition of abcg::VulkanDevice. -More...

-
#include "abcg_vulkan_device.hpp"
-#include <set>
-#include "abcg_exception.hpp"
-#include "abcg_vulkan_physical_device.hpp"
-
-Include dependency graph for abcg_vulkan_device.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::VulkanDevice.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__device_8cpp__incl.map deleted file mode 100644 index 3411e013e..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.map +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__device_8cpp__incl.md5 deleted file mode 100644 index d670b6b3b..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -b6f06d5a09f32d11e63e403878239ef5 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__device_8cpp__incl.svg deleted file mode 100644 index a557d1b7e..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8cpp__incl.svg +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node2 - - -abcg_vulkan_device.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -set - - - - - -Node1->Node6 - - - - - -Node7 - - -abcg_exception.hpp - - - - - -Node1->Node7 - - - - - -Node11 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node11 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_vulkan.hpp - - - - - -Node2->Node4 - - - - - -Node4->Node3 - - - - - -Node5 - - -abcg_vulkan_external.hpp - - - - - -Node4->Node5 - - - - - -Node8 - - -source_location - - - - - -Node7->Node8 - - - - - -Node9 - - -stdexcept - - - - - -Node7->Node9 - - - - - -Node10 - - -string - - - - - -Node7->Node10 - - - - - -Node11->Node3 - - - - - -Node11->Node4 - - - - - -Node12 - - -vulkan/vulkan_handles.hpp - - - - - -Node11->Node12 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp.html b/abcg/doc/html/abcg__vulkan__device_8hpp.html deleted file mode 100644 index 2fa22c56a..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp File Reference
-
-
- -

Header file of abcg::VulkanDevice. -More...

-
#include "abcg_external.hpp"
-#include "abcg_vulkan.hpp"
-
-Include dependency graph for abcg_vulkan_device.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::VulkanDevice
 A class for representing a Vulkan logical device and related resources. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::VulkanDevice.

-

Declaration of abcg::VulkanDevice.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.map deleted file mode 100644 index 8933bb51b..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.md5 deleted file mode 100644 index 115b24e4f..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -08a4ffa0aee7eec8c4017f5477ecd52a \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.svg deleted file mode 100644 index 115b75c83..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__dep__incl.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node4 - - - - - -Node4->Node3 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node4->Node5 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__device_8hpp__incl.map deleted file mode 100644 index 2af912c8d..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__device_8hpp__incl.md5 deleted file mode 100644 index 99ab62827..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -7531ae4db7332ffdd8866dd8c7e54760 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__device_8hpp__incl.svg deleted file mode 100644 index 538f41418..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp__incl.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.hpp - - - - - -Node2 - - -abcg_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_vulkan.hpp - - - - - -Node1->Node3 - - - - - -Node3->Node2 - - - - - -Node4 - - -abcg_vulkan_external.hpp - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__device_8hpp_source.html b/abcg/doc/html/abcg__vulkan__device_8hpp_source.html deleted file mode 100644 index 80329046e..000000000 --- a/abcg/doc/html/abcg__vulkan__device_8hpp_source.html +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_device.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_DEVICE_HPP_
-
14 #define ABCG_VULKAN_DEVICE_HPP_
-
15 
-
16 #include "abcg_external.hpp"
-
17 #include "abcg_vulkan.hpp"
-
18 
-
19 namespace abcg {
-
20 class VulkanDevice;
-
21 class VulkanPhysicalDevice;
-
22 } // namespace abcg
-
23 
- -
32 public:
-
33  void create(VulkanPhysicalDevice const &physicalDevice,
-
34  VulkanExtensions const &extensions = {});
-
35  void destroy();
-
36 
-
37  explicit operator vk::Device const &() const noexcept;
-
38 
-
39  [[nodiscard]] VulkanQueues const &getQueues() const noexcept;
-
40  [[nodiscard]] VulkanCommandPools const &getCommandPools() const noexcept;
-
41  [[nodiscard]] vk::DescriptorPool const &getDescriptorPool() const noexcept;
-
42 
-
43  // TODO (see https://github.com/jherico/Vulkan/blob/cpp/base/vks/context.hpp)
-
44  /*
-
45  [[nodiscard]] vk::CommandBuffer createCommandBuffer(vk::Queue queue,
-
46  vk::CommandBufferLevel level = vk::CommandBufferLevel::ePrimary) const;
-
47  void flushCommandBuffer(vk::CommandBuffer &commandBuffer) const;
-
48  void withGraphicsCommandBuffer(
-
49  std::function<void(vk::CommandBuffer const &commandBuffer)> const &fun)
-
50  const;
-
51  */
-
52 
-
53  [[nodiscard]] std::pair<vk::Buffer, vk::DeviceMemory>
-
54  createBuffer(vk::DeviceSize size, vk::BufferUsageFlags usage,
-
55  vk::MemoryPropertyFlags properties) const;
-
56  [[nodiscard]] std::pair<vk::Buffer, vk::DeviceMemory>
-
57  createVertexBuffer(void const *bufferData, vk::DeviceSize bufferSize) const;
-
58  void copyBuffer(vk::Buffer srcBuffer, vk::Buffer dstBuffer,
-
59  vk::DeviceSize size) const;
-
60  [[nodiscard]] std::pair<vk::Image, vk::DeviceMemory>
-
61  createImage(vk::ImageCreateInfo const &imageInfo,
-
62  vk::MemoryPropertyFlags properties) const;
-
63  [[nodiscard]] vk::ImageView
-
64  createImageView(vk::Image const &image, vk::Format format,
-
65  vk::ImageSubresourceRange const &subresourceRange) const;
-
66 
-
67 private:
-
68  void createDescriptorPool();
-
69  void createCommandPools();
-
70  void destroyDescriptorPool();
-
71  void destroyCommandPools();
-
72 
-
73  vk::Device m_device;
-
74 
-
75  VulkanQueues m_queues;
-
76  VulkanQueuesFamilies m_queuesFamilies;
-
77  vk::PhysicalDeviceMemoryProperties m_memoryProperties;
-
78 
-
79  VulkanCommandPools m_commandPools;
-
80  vk::DescriptorPool m_descriptorPool;
-
81 };
-
82 
-
83 #endif
-
Header file for including third-party dependencies.
-
Header file for Vulkan-related functions and classes.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcg_vulkan_device.hpp:31
-
void destroy()
Definition: abcg_vulkan_device.cpp:73
-
void create(VulkanPhysicalDevice const &physicalDevice, VulkanExtensions const &extensions={})
Definition: abcg_vulkan_device.cpp:18
-
void copyBuffer(vk::Buffer srcBuffer, vk::Buffer dstBuffer, vk::DeviceSize size) const
Definition: abcg_vulkan_device.cpp:202
-
std::pair< vk::Buffer, vk::DeviceMemory > createBuffer(vk::DeviceSize size, vk::BufferUsageFlags usage, vk::MemoryPropertyFlags properties) const
Definition: abcg_vulkan_device.cpp:98
-
VulkanCommandPools const & getCommandPools() const noexcept
Definition: abcg_vulkan_device.cpp:88
-
std::pair< vk::Image, vk::DeviceMemory > createImage(vk::ImageCreateInfo const &imageInfo, vk::MemoryPropertyFlags properties) const
Definition: abcg_vulkan_device.cpp:232
-
vk::ImageView createImageView(vk::Image const &image, vk::Format format, vk::ImageSubresourceRange const &subresourceRange) const
Definition: abcg_vulkan_device.cpp:256
-
std::pair< vk::Buffer, vk::DeviceMemory > createVertexBuffer(void const *bufferData, vk::DeviceSize bufferSize) const
Definition: abcg_vulkan_device.cpp:142
-
vk::DescriptorPool const & getDescriptorPool() const noexcept
Definition: abcg_vulkan_device.cpp:93
-
VulkanQueues const & getQueues() const noexcept
Definition: abcg_vulkan_device.cpp:83
-
A class for representing a Vulkan physical device.
Definition: abcg_vulkan_physical_device.hpp:28
-
Root namespace.
Definition: abcg_application.hpp:23
-
Data that represents the per-queue command pools.
Definition: abcg_vulkan.hpp:60
-
Data that represents extension names.
Definition: abcg_vulkan.hpp:34
-
Data that represents the available queue families.
Definition: abcg_vulkan.hpp:52
-
Data that represents the available queues.
Definition: abcg_vulkan.hpp:44
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8cpp.html b/abcg/doc/html/abcg__vulkan__error_8cpp.html deleted file mode 100644 index 760e5b43c..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8cpp.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_error.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.cpp File Reference
-
-
- -

Definition of abcg::VulkanError members. -More...

-
#include "abcg_vulkan_error.hpp"
-#include <fmt/core.h>
-
-Include dependency graph for abcg_vulkan_error.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::VulkanError members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__error_8cpp__incl.map deleted file mode 100644 index e1dde7023..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.map +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__error_8cpp__incl.md5 deleted file mode 100644 index bbb5ca263..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -85262b36d7b98b34145c457ac4bb444c \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__error_8cpp__incl.svg deleted file mode 100644 index 76ebe599c..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8cpp__incl.svg +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.cpp - - - - - -Node2 - - -abcg_vulkan_error.hpp - - - - - -Node1->Node2 - - - - - -Node9 - - -fmt/core.h - - - - - -Node1->Node9 - - - - - -Node3 - - -source_location - - - - - -Node2->Node3 - - - - - -Node4 - - -volk.h - - - - - -Node2->Node4 - - - - - -Node5 - - -vulkan/vulkan.hpp - - - - - -Node2->Node5 - - - - - -Node6 - - -abcg_exception.hpp - - - - - -Node2->Node6 - - - - - -Node6->Node3 - - - - - -Node7 - - -stdexcept - - - - - -Node6->Node7 - - - - - -Node8 - - -string - - - - - -Node6->Node8 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp.html b/abcg/doc/html/abcg__vulkan__error_8hpp.html deleted file mode 100644 index de56a07fe..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp File Reference
-
-
- -

Header file of abcg::VulkanError and derived classes. -More...

-
#include <source_location>
-#include <volk.h>
-#include <vulkan/vulkan.hpp>
-#include "abcg_exception.hpp"
-
-Include dependency graph for abcg_vulkan_error.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::VulkanError
 Represents an exception object for Vulkan runtime errors. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - -

-Functions

void abcg::checkVkResult (VkResult retCode, source_location const &sourceLocation=source_location::current())
 
-

Detailed Description

-

Header file of abcg::VulkanError and derived classes.

-

Declaration of abcg::VulkanError and derived classes.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp.js b/abcg/doc/html/abcg__vulkan__error_8hpp.js deleted file mode 100644 index 55fba3ed1..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp.js +++ /dev/null @@ -1,5 +0,0 @@ -var abcg__vulkan__error_8hpp = -[ - [ "VulkanError", "classabcg_1_1VulkanError.html", "classabcg_1_1VulkanError" ], - [ "checkVkResult", "abcg__vulkan__error_8hpp.html#a6dc603716e2c0c5a9ee71ff1ca9881d9", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.map deleted file mode 100644 index 4cc8fc85a..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.md5 deleted file mode 100644 index ded6857a5..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -a24a9daaab7dc69559c77355a183af18 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.svg deleted file mode 100644 index b3c896561..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__error_8hpp__incl.map deleted file mode 100644 index 90466f2d8..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__error_8hpp__incl.md5 deleted file mode 100644 index 392527a5a..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -eedee015bc4cc9866bf8f2d59f954277 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__error_8hpp__incl.svg deleted file mode 100644 index 37d11ece5..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp__incl.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_error.hpp - - - - - -Node2 - - -source_location - - - - - -Node1->Node2 - - - - - -Node3 - - -volk.h - - - - - -Node1->Node3 - - - - - -Node4 - - -vulkan/vulkan.hpp - - - - - -Node1->Node4 - - - - - -Node5 - - -abcg_exception.hpp - - - - - -Node1->Node5 - - - - - -Node5->Node2 - - - - - -Node6 - - -stdexcept - - - - - -Node5->Node6 - - - - - -Node7 - - -string - - - - - -Node5->Node7 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__error_8hpp_source.html b/abcg/doc/html/abcg__vulkan__error_8hpp_source.html deleted file mode 100644 index fa8c8083b..000000000 --- a/abcg/doc/html/abcg__vulkan__error_8hpp_source.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_error.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_ERROR_HPP_
-
14 #define ABCG_VULKAN_ERROR_HPP_
-
15 
-
16 #if !defined(NDEBUG)
-
17 #if defined(__clang__)
-
18 #include <experimental/source_location>
-
19 namespace abcg {
- -
21 } // namespace abcg
-
22 #else
-
23 #include <source_location>
-
24 namespace abcg {
- -
26 } // namespace abcg
-
27 #endif
-
28 #endif
-
29 
-
30 #include <volk.h>
-
31 #include <vulkan/vulkan.hpp>
-
32 
-
33 #include "abcg_exception.hpp"
-
34 
-
35 namespace abcg {
-
36 class VulkanError;
-
37 #if !defined(NDEBUG)
-
38 void checkVkResult(VkResult retCode, source_location const &sourceLocation =
-
39  source_location::current());
-
40 #else
-
41 void checkVkResult([[maybe_unused]] VkResult retCode);
-
42 #endif
-
43 } // namespace abcg
-
44 
- -
54 #if !defined(NDEBUG)
-
55 public:
-
56  explicit VulkanError(
-
57  VkResult errorCode,
-
58  source_location const &sourceLocation = source_location::current());
-
59 
-
60 private:
-
61  [[nodiscard]] static std::string
-
62  prettyPrint(VkResult errorCode, source_location const &sourceLocation);
-
63 #else
-
64 public:
-
65  explicit VulkanError(VkResult errorCode);
-
66  explicit VulkanError(vk::Result errorCode);
-
67 
-
68 private:
-
69  [[nodiscard]] static std::string prettyPrint(VkResult errorCode);
-
70 #endif
-
71 
-
72  [[nodiscard]] static std::string_view
-
73  getVulkanErrorString(VkResult errorCode);
-
74 };
-
75 
-
76 #endif
-
Header file of abcg::Exception and derived classes.
-
Base class for ABCg exception objects.
Definition: abcg_exception.hpp:71
-
Represents an exception object for Vulkan runtime errors.
Definition: abcg_vulkan_error.hpp:53
-
VulkanError(VkResult errorCode, source_location const &sourceLocation=source_location::current())
Constructs an abcg::VulkanError object.
Definition: abcg_vulkan_error.cpp:88
-
Root namespace.
Definition: abcg_application.hpp:23
-
void checkVkResult(VkResult retCode, source_location const &sourceLocation=source_location::current())
Definition: abcg_vulkan_error.cpp:17
-
std::source_location source_location
Definition: abcg_opengl_error.hpp:25
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__external_8hpp.html b/abcg/doc/html/abcg__vulkan__external_8hpp.html deleted file mode 100644 index 41012d974..000000000 --- a/abcg/doc/html/abcg__vulkan__external_8hpp.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_external.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_external.hpp File Reference
-
-
- -

Header file for including Vulkan-related dependencies. -More...

-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

-

Detailed Description

-

Header file for including Vulkan-related dependencies.

-

Preprocessor definitions and includes of Vulkan-related external dependencies.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.map deleted file mode 100644 index 796a8cc9a..000000000 --- a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.map +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.md5 deleted file mode 100644 index 8353e7f3d..000000000 --- a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -9c5c8847b9e86ce78c4f65ddb181c3bf \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.svg deleted file mode 100644 index 4a4010e5a..000000000 --- a/abcg/doc/html/abcg__vulkan__external_8hpp__dep__incl.svg +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_external.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_external.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.cpp - - - - - -Node2->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.hpp - - - - - -Node2->Node4 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node2->Node7 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.hpp - - - - - -Node2->Node9 - - - - - -Node12 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.hpp - - - - - -Node2->Node12 - - - - - -Node13 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.hpp - - - - - -Node2->Node13 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node4->Node5 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node4->Node6 - - - - - -Node4->Node7 - - - - - -Node7->Node6 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node7->Node8 - - - - - -Node9->Node7 - - - - - -Node9->Node8 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node9->Node10 - - - - - -Node11 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node9->Node11 - - - - - -Node12->Node3 - - - - - -Node12->Node5 - - - - - -Node12->Node6 - - - - - -Node12->Node7 - - - - - -Node12->Node11 - - - - - -Node13->Node6 - - - - - -Node13->Node7 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__external_8hpp_source.html b/abcg/doc/html/abcg__vulkan__external_8hpp_source.html deleted file mode 100644 index f1bb7b5ca..000000000 --- a/abcg/doc/html/abcg__vulkan__external_8hpp_source.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_external.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_external.hpp
-
-
-Go to the documentation of this file.
1 
-
14 #ifndef ABCG_VULKAN_EXTERNAL_HPP_
-
15 #define ABCG_VULKAN_EXTERNAL_HPP_
-
16 
-
17 // @cond Skipped by Doxygen
-
18 
-
19 #include <volk.h>
-
20 
-
21 // volk.h must be included before imgui_impl_vulkan.h
-
22 // #include <imgui_impl_vulkan.h>
-
23 
-
24 // Required for Vulkan-Hpp to work with Volk with a static dispatch
-
25 #undef VK_NO_PROTOTYPES
-
26 
-
27 // Enable designated initializers in Vulkan-Hpp
-
28 #define VULKAN_HPP_NO_CONSTRUCTORS
-
29 
-
30 #include <vulkan/vulkan.hpp>
-
31 
-
32 #if !defined(NDEBUG)
-
33 // When defined, enable validation layer and debug reporting
-
34 #define ABCG_VULKAN_DEBUG_REPORT
-
35 #endif
-
36 
-
37 // @endcond
-
38 
-
39 #endif
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8cpp.html b/abcg/doc/html/abcg__vulkan__instance_8cpp.html deleted file mode 100644 index e5c20d4dc..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8cpp.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.cpp File Reference
-
-
- -

Definition of abcg::VulkanInstance. -More...

-
#include "abcg_vulkan_instance.hpp"
-#include <span>
-#include "abcg_application.hpp"
-#include "abcg_exception.hpp"
-#include "abcg_window.hpp"
-
-Include dependency graph for abcg_vulkan_instance.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::VulkanInstance.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.map deleted file mode 100644 index a52edd547..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.map +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.md5 deleted file mode 100644 index cdcaa0495..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -e5ef312e844b7cbbc83f305da504977f \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.svg deleted file mode 100644 index 7e5c5fc63..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8cpp__incl.svg +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node2 - - -abcg_vulkan_instance.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -span - - - - - -Node1->Node6 - - - - - -Node7 - - -abcg_application.hpp - - - - - -Node1->Node7 - - - - - -Node9 - - -abcg_exception.hpp - - - - - -Node1->Node9 - - - - - -Node12 - - -abcg_window.hpp - - - - - -Node1->Node12 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_vulkan.hpp - - - - - -Node2->Node4 - - - - - -Node4->Node3 - - - - - -Node5 - - -abcg_vulkan_external.hpp - - - - - -Node4->Node5 - - - - - -Node8 - - -string - - - - - -Node7->Node8 - - - - - -Node9->Node8 - - - - - -Node10 - - -source_location - - - - - -Node9->Node10 - - - - - -Node11 - - -stdexcept - - - - - -Node9->Node11 - - - - - -Node12->Node3 - - - - - -Node12->Node8 - - - - - -Node13 - - -abcg_elapsedtimer.hpp - - - - - -Node12->Node13 - - - - - -Node14 - - -chrono - - - - - -Node13->Node14 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp.html b/abcg/doc/html/abcg__vulkan__instance_8hpp.html deleted file mode 100644 index 427d277b2..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp File Reference
-
-
- -

Header file of abcg::VulkanInstance. -More...

-
#include "abcg_external.hpp"
-#include "abcg_vulkan.hpp"
-
-Include dependency graph for abcg_vulkan_instance.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::VulkanInstance
 A class for representing a Vulkan instance. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::VulkanInstance.

-

Declaration of abcg::VulkanInstance.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.map deleted file mode 100644 index 2bb052391..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.map +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.md5 deleted file mode 100644 index 9769aa163..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -a5548336772f6dbcc0b18e96330532d2 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.svg deleted file mode 100644 index 91d8d7be1..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__dep__incl.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node5 - - - - - -Node5->Node4 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node5->Node6 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.map deleted file mode 100644 index ee9d8be18..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.md5 deleted file mode 100644 index cf486b920..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -04d22d36df6f8e8b3ab85b355496bed6 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.svg deleted file mode 100644 index 2cf467953..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp__incl.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.hpp - - - - - -Node2 - - -abcg_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_vulkan.hpp - - - - - -Node1->Node3 - - - - - -Node3->Node2 - - - - - -Node4 - - -abcg_vulkan_external.hpp - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__instance_8hpp_source.html b/abcg/doc/html/abcg__vulkan__instance_8hpp_source.html deleted file mode 100644 index 9e77519d5..000000000 --- a/abcg/doc/html/abcg__vulkan__instance_8hpp_source.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_instance.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_INSTANCE_HPP_
-
14 #define ABCG_VULKAN_INSTANCE_HPP_
-
15 
-
16 #include "abcg_external.hpp"
-
17 #include "abcg_vulkan.hpp"
-
18 
-
19 namespace abcg {
-
20 class VulkanInstance;
-
21 } // namespace abcg
-
22 
-
26 class abcg::VulkanInstance final {
-
27 public:
-
31  explicit VulkanInstance(VulkanLayers const &layers = {},
-
32  VulkanExtensions const &extensions = {},
-
33  std::string_view applicationName = {});
-
34  VulkanInstance(VulkanInstance const &) = delete;
- -
39  VulkanInstance const &operator=(VulkanInstance const &) = delete;
- - -
48 
-
52  explicit operator vk::Instance const &() const noexcept { return m_instance; }
-
53 
-
54  [[nodiscard]] static bool
-
55  isSupported(VulkanLayers const &layers,
-
56  OutVulkanLayers unsupported = std::nullopt);
-
57  [[nodiscard]] static bool
-
58  isSupported(VulkanExtensions const &extensions,
-
59  OutVulkanExtensions unsupported = std::nullopt);
-
60 
-
61 private:
-
62  vk::Instance m_instance;
-
63 
-
64 #if defined(ABCG_VULKAN_DEBUG_REPORT)
-
65  vk::DebugUtilsMessengerEXT m_debugMessenger;
-
66 #endif
-
67 };
-
68 
-
69 #endif
-
Header file for including third-party dependencies.
-
Header file for Vulkan-related functions and classes.
-
A class for representing a Vulkan instance.
Definition: abcg_vulkan_instance.hpp:26
-
~VulkanInstance()
Default destructor.
Definition: abcg_vulkan_instance.cpp:162
-
VulkanInstance(VulkanInstance const &)=delete
-
VulkanInstance const & operator=(VulkanInstance const &)=delete
-
static bool isSupported(VulkanLayers const &layers, OutVulkanLayers unsupported=std::nullopt)
Definition: abcg_vulkan_instance.cpp:170
-
VulkanInstance & operator=(VulkanInstance &&)=default
Default move assignment.
-
VulkanInstance(VulkanLayers const &layers={}, VulkanExtensions const &extensions={}, std::string_view applicationName={})
Constructor.
Definition: abcg_vulkan_instance.cpp:102
-
VulkanInstance(VulkanInstance &&)=default
Default move constructor.
-
Root namespace.
Definition: abcg_application.hpp:23
-
std::optional< std::reference_wrapper< VulkanExtensions > > OutVulkanExtensions
Definition: abcg_vulkan.hpp:30
-
std::optional< std::reference_wrapper< VulkanLayers > > OutVulkanLayers
Definition: abcg_vulkan.hpp:28
-
Data that represents extension names.
Definition: abcg_vulkan.hpp:34
-
Data that represents layer names.
Definition: abcg_vulkan.hpp:39
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8cpp.html b/abcg/doc/html/abcg__vulkan__physical__device_8cpp.html deleted file mode 100644 index 7674e0630..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8cpp.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.cpp File Reference
-
-
- -

Definition of abcg::VulkanPhysicalDevice. -More...

-
#include "abcg_vulkan_physical_device.hpp"
-#include <set>
-#include <span>
-#include "abcg_exception.hpp"
-#include "abcg_vulkan_instance.hpp"
-
-Include dependency graph for abcg_vulkan_physical_device.cpp:
-
-
-
-
-
- - - -

-Functions

vk::SampleCountFlagBits getMaxUsableSampleCount (vk::PhysicalDevice physicalDevice)
 
-

Detailed Description

-

Definition of abcg::VulkanPhysicalDevice.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -

Function Documentation

- -

◆ getMaxUsableSampleCount()

- -
-
- - - - - - - - -
vk::SampleCountFlagBits getMaxUsableSampleCount (vk::PhysicalDevice physicalDevice)
-
- -
-
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8cpp.js b/abcg/doc/html/abcg__vulkan__physical__device_8cpp.js deleted file mode 100644 index 6736a6ee8..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8cpp.js +++ /dev/null @@ -1,4 +0,0 @@ -var abcg__vulkan__physical__device_8cpp = -[ - [ "getMaxUsableSampleCount", "abcg__vulkan__physical__device_8cpp.html#a59f6ede647ea65767d87814a42cd177e", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.map deleted file mode 100644 index 0e2c6b726..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.map +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.md5 deleted file mode 100644 index 44ad8eacf..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -2cc1699141b1e9751f0dace4b05a61b8 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.svg deleted file mode 100644 index 8563a2be3..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8cpp__incl.svg +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node2 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node2 - - - - - -Node7 - - -set - - - - - -Node1->Node7 - - - - - -Node8 - - -span - - - - - -Node1->Node8 - - - - - -Node9 - - -abcg_exception.hpp - - - - - -Node1->Node9 - - - - - -Node13 - - -abcg_vulkan_instance.hpp - - - - - -Node1->Node13 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_vulkan.hpp - - - - - -Node2->Node4 - - - - - -Node6 - - -vulkan/vulkan_handles.hpp - - - - - -Node2->Node6 - - - - - -Node4->Node3 - - - - - -Node5 - - -abcg_vulkan_external.hpp - - - - - -Node4->Node5 - - - - - -Node10 - - -source_location - - - - - -Node9->Node10 - - - - - -Node11 - - -stdexcept - - - - - -Node9->Node11 - - - - - -Node12 - - -string - - - - - -Node9->Node12 - - - - - -Node13->Node3 - - - - - -Node13->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp.html b/abcg/doc/html/abcg__vulkan__physical__device_8hpp.html deleted file mode 100644 index ff343374c..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp File Reference
-
-
- -

Header file of abcg::VulkanPhysicalDevice. -More...

-
#include "abcg_external.hpp"
-#include "abcg_vulkan.hpp"
-#include <vulkan/vulkan_handles.hpp>
-
-Include dependency graph for abcg_vulkan_physical_device.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::VulkanPhysicalDevice
 A class for representing a Vulkan physical device. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::VulkanPhysicalDevice.

-

Declaration of abcg::VulkanPhysicalDevice.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.map deleted file mode 100644 index f675c77ac..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.md5 deleted file mode 100644 index 31b0f3230..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -e98581d8dd7ec0ac1431bbb8a97e2391 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.svg deleted file mode 100644 index eb18bb9a4..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__dep__incl.svg +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_device.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.cpp - - - - - -Node1->Node4 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node5 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node6 - - - - - -Node6->Node5 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node6->Node7 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.map deleted file mode 100644 index bd849fa3a..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.md5 deleted file mode 100644 index 060ec3da7..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -8ecb4672d2eb2953c1ac5b22d27566e2 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.svg deleted file mode 100644 index f84783f6b..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp__incl.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_physical -_device.hpp - - - - - -Node2 - - -abcg_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_vulkan.hpp - - - - - -Node1->Node3 - - - - - -Node5 - - -vulkan/vulkan_handles.hpp - - - - - -Node1->Node5 - - - - - -Node3->Node2 - - - - - -Node4 - - -abcg_vulkan_external.hpp - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__physical__device_8hpp_source.html b/abcg/doc/html/abcg__vulkan__physical__device_8hpp_source.html deleted file mode 100644 index ee0d4d695..000000000 --- a/abcg/doc/html/abcg__vulkan__physical__device_8hpp_source.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_physical_device.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
-
14 #define ABCG_VULKAN_PHYSICAL_DEVICE_HPP_
-
15 
-
16 #include "abcg_external.hpp"
-
17 #include "abcg_vulkan.hpp"
-
18 #include <vulkan/vulkan_handles.hpp>
-
19 
-
20 namespace abcg {
-
21 class VulkanInstance;
-
22 class VulkanPhysicalDevice;
-
23 } // namespace abcg
-
24 
- -
29 public:
-
30  void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface,
-
31  VulkanExtensions const &extensions = {},
-
32  vk::SampleCountFlagBits sampleCount = vk::SampleCountFlagBits::e1,
-
33  bool useSeparateTransferQueue = false);
-
34  void destroy();
-
35 
-
36  explicit operator vk::PhysicalDevice const &() const noexcept;
-
37 
-
38  [[nodiscard]] static std::optional<uint32_t>
-
39  findMemoryType(vk::PhysicalDeviceMemoryProperties memoryProperties,
-
40  uint32_t memoryTypeBitsRequirement,
-
41  vk::MemoryPropertyFlags requiredProperties);
-
42 
-
43  [[nodiscard]] std::optional<vk::Format>
-
44  getFirstSupportedFormat(std::vector<vk::Format> const &candidates,
-
45  vk::ImageTiling tiling,
-
46  vk::FormatFeatureFlags features) const;
-
47  [[nodiscard]] vk::SampleCountFlagBits getSampleCount() const noexcept;
-
48  [[nodiscard]] VulkanQueuesFamilies const &getQueuesFamilies() const noexcept;
-
49  [[nodiscard]] VulkanSwapchainSupport
-
50  getSwapchainSupport(vk::SurfaceKHR const &surface) const;
-
51 
-
52 private:
-
53  [[nodiscard]] bool
-
54  isSupportedByDevice(VulkanExtensions const &extensions,
-
55  OutVulkanExtensions unsupported = std::nullopt);
-
56  [[nodiscard]] bool isDeviceSuitable(VulkanExtensions const &extensions,
-
57  vk::SurfaceKHR const &surface,
-
58  bool useSeparateTransferQueue);
-
59  void findQueueFamilies(vk::SurfaceKHR const &surface,
-
60  bool useSeparateTransferQueue);
-
61  void checkQueueFamily(vk::QueueFamilyProperties const &properties,
-
62  uint32_t queueFamilyIndex,
-
63  vk::SurfaceKHR const &surface,
-
64  bool useSeparateTransferQueue);
-
65 
-
66  vk::PhysicalDevice m_physicalDevice;
-
67 
-
68  vk::SampleCountFlagBits m_sampleCount{};
-
69  VulkanQueuesFamilies m_queuesFamilies{};
-
70 };
-
71 
-
72 #endif
-
Header file for including third-party dependencies.
-
Header file for Vulkan-related functions and classes.
-
A class for representing a Vulkan instance.
Definition: abcg_vulkan_instance.hpp:26
-
A class for representing a Vulkan physical device.
Definition: abcg_vulkan_physical_device.hpp:28
-
void create(VulkanInstance const &instance, vk::SurfaceKHR const &surface, VulkanExtensions const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)
Definition: abcg_vulkan_physical_device.cpp:39
-
static std::optional< uint32_t > findMemoryType(vk::PhysicalDeviceMemoryProperties memoryProperties, uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties)
Definition: abcg_vulkan_physical_device.cpp:72
-
std::optional< vk::Format > getFirstSupportedFormat(std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) const
Definition: abcg_vulkan_physical_device.cpp:93
-
void destroy()
Definition: abcg_vulkan_physical_device.cpp:63
-
vk::SampleCountFlagBits getSampleCount() const noexcept
Definition: abcg_vulkan_physical_device.cpp:113
-
VulkanSwapchainSupport getSwapchainSupport(vk::SurfaceKHR const &surface) const
Definition: abcg_vulkan_physical_device.cpp:122
-
VulkanQueuesFamilies const & getQueuesFamilies() const noexcept
Definition: abcg_vulkan_physical_device.cpp:118
-
Root namespace.
Definition: abcg_application.hpp:23
-
std::optional< std::reference_wrapper< VulkanExtensions > > OutVulkanExtensions
Definition: abcg_vulkan.hpp:30
-
Data that represents extension names.
Definition: abcg_vulkan.hpp:34
-
Data that represents the available queue families.
Definition: abcg_vulkan.hpp:52
-
Data that represents the details of the swapchain support.
Definition: abcg_vulkan.hpp:67
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8cpp.html b/abcg/doc/html/abcg__vulkan__swapchain_8cpp.html deleted file mode 100644 index 1e3ef4ffc..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8cpp.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.cpp File Reference
-
-
- -

Definition of abcg::VulkanSwapchain. -More...

-
#include "abcg_vulkan_swapchain.hpp"
-#include <fstream>
-#include <imgui_impl_vulkan.h>
-#include "abcg_application.hpp"
-#include "abcg_exception.hpp"
-#include "abcg_vulkan_device.hpp"
-#include "abcg_vulkan_physical_device.hpp"
-#include "abcg_vulkan_window.hpp"
-
-Include dependency graph for abcg_vulkan_swapchain.cpp:
-
-
-
-
-
- - - - - - - -

-Functions

vk::SurfaceFormatKHR chooseSwapSurfaceFormat (std::vector< vk::Format > const &requestFormats, vk::ColorSpaceKHR requestColorSpace, abcg::VulkanSwapchainSupport const &supportedDetails)
 
vk::PresentModeKHR chooseSwapPresentMode (std::vector< vk::PresentModeKHR > const &requestModes, abcg::VulkanSwapchainSupport const &supportedDetails)
 
vk::Extent2D chooseSwapExtent (vk::SurfaceCapabilitiesKHR capabilities, glm::ivec2 windowSize)
 
-

Detailed Description

-

Definition of abcg::VulkanSwapchain.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -

Function Documentation

- -

◆ chooseSwapExtent()

- -
-
- - - - - - - - - - - - - - - - - - -
vk::Extent2D chooseSwapExtent (vk::SurfaceCapabilitiesKHR capabilities,
glm::ivec2 windowSize 
)
-
- -
-
- -

◆ chooseSwapPresentMode()

- -
-
- - - - - - - - - - - - - - - - - - -
vk::PresentModeKHR chooseSwapPresentMode (std::vector< vk::PresentModeKHR > const & requestModes,
abcg::VulkanSwapchainSupport const & supportedDetails 
)
-
- -
-
- -

◆ chooseSwapSurfaceFormat()

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
vk::SurfaceFormatKHR chooseSwapSurfaceFormat (std::vector< vk::Format > const & requestFormats,
vk::ColorSpaceKHR requestColorSpace,
abcg::VulkanSwapchainSupport const & supportedDetails 
)
-
- -
-
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8cpp.js b/abcg/doc/html/abcg__vulkan__swapchain_8cpp.js deleted file mode 100644 index 552fe5cd8..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8cpp.js +++ /dev/null @@ -1,6 +0,0 @@ -var abcg__vulkan__swapchain_8cpp = -[ - [ "chooseSwapExtent", "abcg__vulkan__swapchain_8cpp.html#a39a911060dac4822e4f53788fe57c7b0", null ], - [ "chooseSwapPresentMode", "abcg__vulkan__swapchain_8cpp.html#aa0337b8756a78d0c8b0df354bc0427dc", null ], - [ "chooseSwapSurfaceFormat", "abcg__vulkan__swapchain_8cpp.html#a7e95093f83e61d5f1226e6647690772e", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.map deleted file mode 100644 index 3c5337a30..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.map +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.md5 deleted file mode 100644 index 171d5bc7f..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -1444b8ad2a7bc8694158e83b36f3197c \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.svg deleted file mode 100644 index 1d1f92488..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8cpp__incl.svg +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node2 - - -abcg_vulkan_swapchain.hpp - - - - - -Node1->Node2 - - - - - -Node6 - - -fstream - - - - - -Node1->Node6 - - - - - -Node7 - - -imgui_impl_vulkan.h - - - - - -Node1->Node7 - - - - - -Node8 - - -abcg_application.hpp - - - - - -Node1->Node8 - - - - - -Node10 - - -abcg_exception.hpp - - - - - -Node1->Node10 - - - - - -Node13 - - -abcg_vulkan_device.hpp - - - - - -Node1->Node13 - - - - - -Node14 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node14 - - - - - -Node16 - - -abcg_vulkan_window.hpp - - - - - -Node1->Node16 - - - - - -Node3 - - -abcg_external.hpp - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_vulkan.hpp - - - - - -Node2->Node4 - - - - - -Node4->Node3 - - - - - -Node5 - - -abcg_vulkan_external.hpp - - - - - -Node4->Node5 - - - - - -Node9 - - -string - - - - - -Node8->Node9 - - - - - -Node10->Node9 - - - - - -Node11 - - -source_location - - - - - -Node10->Node11 - - - - - -Node12 - - -stdexcept - - - - - -Node10->Node12 - - - - - -Node13->Node3 - - - - - -Node13->Node4 - - - - - -Node14->Node3 - - - - - -Node14->Node4 - - - - - -Node15 - - -vulkan/vulkan_handles.hpp - - - - - -Node14->Node15 - - - - - -Node16->Node2 - - - - - -Node16->Node4 - - - - - -Node16->Node9 - - - - - -Node16->Node13 - - - - - -Node16->Node14 - - - - - -Node17 - - -array - - - - - -Node16->Node17 - - - - - -Node18 - - -abcg_vulkan_instance.hpp - - - - - -Node16->Node18 - - - - - -Node19 - - -abcg_window.hpp - - - - - -Node16->Node19 - - - - - -Node18->Node3 - - - - - -Node18->Node4 - - - - - -Node19->Node3 - - - - - -Node19->Node9 - - - - - -Node20 - - -abcg_elapsedtimer.hpp - - - - - -Node19->Node20 - - - - - -Node21 - - -chrono - - - - - -Node20->Node21 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp.html b/abcg/doc/html/abcg__vulkan__swapchain_8hpp.html deleted file mode 100644 index 0e2b7f881..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp File Reference
-
-
- -

Header file of abcg::VulkanSwapchain. -More...

-
#include "abcg_external.hpp"
-#include "abcg_vulkan.hpp"
-
-Include dependency graph for abcg_vulkan_swapchain.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - -

-Classes

class  abcg::VulkanSwapchain
 A class for representing a Vulkan swapchain. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::VulkanSwapchain.

-

Declaration of abcg::VulkanSwapchain.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.map deleted file mode 100644 index d0b905ba3..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.md5 deleted file mode 100644 index d35aeb3d7..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -59489ca3872e21328c927c45532a8140 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.svg deleted file mode 100644 index 04823d708..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__dep__incl.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node3 - - - - - -Node3->Node2 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.map deleted file mode 100644 index fb336a13e..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.md5 deleted file mode 100644 index 1c4233f98..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -db17dffcc12d5442b98a3884921b2dac \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.svg deleted file mode 100644 index a8e87c5b5..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp__incl.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.hpp - - - - - -Node2 - - -abcg_external.hpp - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_vulkan.hpp - - - - - -Node1->Node3 - - - - - -Node3->Node2 - - - - - -Node4 - - -abcg_vulkan_external.hpp - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__swapchain_8hpp_source.html b/abcg/doc/html/abcg__vulkan__swapchain_8hpp_source.html deleted file mode 100644 index c75d72474..000000000 --- a/abcg/doc/html/abcg__vulkan__swapchain_8hpp_source.html +++ /dev/null @@ -1,225 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_swapchain.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_SWAPCHAIN_HPP_
-
14 #define ABCG_VULKAN_SWAPCHAIN_HPP_
-
15 
-
16 #include "abcg_external.hpp"
-
17 #include "abcg_vulkan.hpp"
-
18 
-
19 namespace abcg {
-
20 class VulkanSwapchain;
-
21 class VulkanDevice;
-
22 class VulkanPhysicalDevice;
-
23 struct VulkanSettings;
-
24 } // namespace abcg
-
25 
- -
33 public:
-
34  void create(VulkanDevice const &device,
-
35  VulkanPhysicalDevice const &physicalDevice,
-
36  vk::SurfaceKHR const &surface, VulkanSettings const &settings,
-
37  glm::ivec2 const &windowSize);
-
38  void destroy(VulkanDevice const &device);
-
39  void render(
-
40  VulkanDevice const &device,
-
41  std::function<void(vk::CommandBuffer const &commandBuffer)> const &fun);
-
42  void present(VulkanDevice const &device);
-
43  void checkRebuild(VulkanDevice const &device,
-
44  VulkanPhysicalDevice const &physicalDevice,
-
45  vk::SurfaceKHR const &surface,
-
46  VulkanSettings const &settings,
-
47  glm::ivec2 const &windowSize);
-
48 
-
49  explicit operator vk::SwapchainKHR const &() const noexcept;
-
50 
-
51  [[nodiscard]] vk::CommandBuffer const &getCommandBuffer() const;
-
52  [[nodiscard]] uint32_t getImageCount() const noexcept;
-
53  [[nodiscard]] vk::RenderPass const &getRenderPass() const noexcept;
-
54 
-
55 private:
-
56  void createFrames(VulkanDevice const &device);
-
57  void destroyFrames(VulkanDevice const &device);
-
58 
-
59  void createDepthResources(VulkanDevice const &device,
-
60  VulkanPhysicalDevice const &physicalDevice);
-
61  void destroyDepthResources(VulkanDevice const &device);
-
62 
-
63  void createMSAAResources(VulkanDevice const &device,
-
64  VulkanPhysicalDevice const &physicalDevice);
-
65  void destroyMSAAResources(VulkanDevice const &device);
-
66 
-
67  void createRenderPass(VulkanDevice const &device,
-
68  VulkanPhysicalDevice const &physicalDevice);
-
69  void destroyRenderPass(VulkanDevice const &device);
-
70 
-
71  void createFramebuffers(VulkanDevice const &device,
-
72  VulkanPhysicalDevice const &physicalDevice,
-
73  VulkanSettings const &settings);
-
74 
-
75  vk::SwapchainKHR m_swapchainKHR;
-
76  vk::Format m_swapchainImageFormat;
-
77  vk::Extent2D m_swapchainExtent;
-
78  bool m_swapChainRebuild{};
-
79 
-
80  // Data needed by one rendering frame
-
81  struct Frame {
-
82  vk::CommandPool commandPool{};
-
83  vk::CommandBuffer commandBuffer{};
-
84  vk::Fence fence{};
-
85  vk::Image colorImage{};
-
86  vk::ImageView colorImageView{};
-
87  vk::Framebuffer framebuffer{};
-
88  };
-
89 
-
90  // Data for swapchain synchronization
-
91  struct FrameSemaphores {
-
92  vk::Semaphore presentComplete{};
-
93  vk::Semaphore renderComplete{};
-
94  };
-
95 
-
96  uint32_t m_frameIndex{}; // Current frame being rendered to
-
97  std::vector<Frame> m_frames{};
-
98  // Current set of swapchain wait semaphores we're using (needs to be distinct
-
99  // from per frame data)
-
100  uint32_t m_semaphoreIndex{}; // Current waiting semaphore
-
101  std::vector<FrameSemaphores> m_frameSemaphores{};
-
102 
-
103  // Depth resources
-
104  vk::Image m_depthImage{};
-
105  vk::DeviceMemory m_depthImageMemory{};
-
106  vk::ImageView m_depthImageView{};
-
107 
-
108  // MSAA resources
-
109  vk::Image m_colorImage{};
-
110  vk::DeviceMemory m_colorImageMemory{};
-
111  vk::ImageView m_colorImageView{};
-
112 
-
113  // Render pass
-
114  vk::RenderPass m_renderPass{};
-
115  bool m_clearEnable{true};
-
116 };
-
117 
-
118 #endif
-
Header file for including third-party dependencies.
-
Header file for Vulkan-related functions and classes.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcg_vulkan_device.hpp:31
-
A class for representing a Vulkan physical device.
Definition: abcg_vulkan_physical_device.hpp:28
-
A class for representing a Vulkan swapchain.
Definition: abcg_vulkan_swapchain.hpp:32
-
void render(VulkanDevice const &device, std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun)
Definition: abcg_vulkan_swapchain.cpp:226
-
void create(VulkanDevice const &device, VulkanPhysicalDevice const &physicalDevice, vk::SurfaceKHR const &surface, VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition: abcg_vulkan_swapchain.cpp:95
-
void destroy(VulkanDevice const &device)
Definition: abcg_vulkan_swapchain.cpp:214
-
vk::CommandBuffer const & getCommandBuffer() const
Definition: abcg_vulkan_swapchain.cpp:361
-
void present(VulkanDevice const &device)
Definition: abcg_vulkan_swapchain.cpp:308
-
void checkRebuild(VulkanDevice const &device, VulkanPhysicalDevice const &physicalDevice, vk::SurfaceKHR const &surface, VulkanSettings const &settings, glm::ivec2 const &windowSize)
Definition: abcg_vulkan_swapchain.cpp:342
-
uint32_t getImageCount() const noexcept
Definition: abcg_vulkan_swapchain.cpp:365
-
vk::RenderPass const & getRenderPass() const noexcept
Definition: abcg_vulkan_swapchain.cpp:370
-
Root namespace.
Definition: abcg_application.hpp:23
-
Configuration settings for creating a Vulkan context.
Definition: abcg_vulkan_window.hpp:41
-
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8cpp.html b/abcg/doc/html/abcg__vulkan__window_8cpp.html deleted file mode 100644 index 905e1bb70..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8cpp.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_window.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.cpp File Reference
-
-
- -

Definition of abcg::VulkanWindow members. -More...

-
#include "abcg_vulkan_window.hpp"
-#include <SDL_vulkan.h>
-#include <algorithm>
-#include <cmath>
-#include <imgui_impl_sdl.h>
-#include <imgui_impl_vulkan.h>
-#include "abcg_embeddedfonts.hpp"
-#include "abcg_exception.hpp"
-#include "abcg_vulkan_error.hpp"
-#include "abcg_vulkan_instance.hpp"
-#include "abcg_window.hpp"
-
-Include dependency graph for abcg_vulkan_window.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::VulkanWindow members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.map b/abcg/doc/html/abcg__vulkan__window_8cpp__incl.map deleted file mode 100644 index dd1644d2c..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.map +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.md5 b/abcg/doc/html/abcg__vulkan__window_8cpp__incl.md5 deleted file mode 100644 index b0ef5ea2b..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -782b68b8346209136f5c2e2378e4cbbf \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.svg b/abcg/doc/html/abcg__vulkan__window_8cpp__incl.svg deleted file mode 100644 index 7cd163a5c..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8cpp__incl.svg +++ /dev/null @@ -1,509 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node2 - - -abcg_vulkan_window.hpp - - - - - -Node1->Node2 - - - - - -Node9 - - -abcg_vulkan_instance.hpp - - - - - -Node1->Node9 - - - - - -Node13 - - -abcg_window.hpp - - - - - -Node1->Node13 - - - - - -Node16 - - -SDL_vulkan.h - - - - - -Node1->Node16 - - - - - -Node17 - - -algorithm - - - - - -Node1->Node17 - - - - - -Node18 - - -cmath - - - - - -Node1->Node18 - - - - - -Node19 - - -imgui_impl_sdl.h - - - - - -Node1->Node19 - - - - - -Node20 - - -imgui_impl_vulkan.h - - - - - -Node1->Node20 - - - - - -Node21 - - -abcg_embeddedfonts.hpp - - - - - -Node1->Node21 - - - - - -Node22 - - -abcg_exception.hpp - - - - - -Node1->Node22 - - - - - -Node25 - - -abcg_vulkan_error.hpp - - - - - -Node1->Node25 - - - - - -Node3 - - -array - - - - - -Node2->Node3 - - - - - -Node4 - - -string - - - - - -Node2->Node4 - - - - - -Node5 - - -abcg_vulkan.hpp - - - - - -Node2->Node5 - - - - - -Node8 - - -abcg_vulkan_device.hpp - - - - - -Node2->Node8 - - - - - -Node2->Node9 - - - - - -Node10 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node2->Node10 - - - - - -Node12 - - -abcg_vulkan_swapchain.hpp - - - - - -Node2->Node12 - - - - - -Node2->Node13 - - - - - -Node6 - - -abcg_external.hpp - - - - - -Node5->Node6 - - - - - -Node7 - - -abcg_vulkan_external.hpp - - - - - -Node5->Node7 - - - - - -Node8->Node5 - - - - - -Node8->Node6 - - - - - -Node9->Node5 - - - - - -Node9->Node6 - - - - - -Node10->Node5 - - - - - -Node10->Node6 - - - - - -Node11 - - -vulkan/vulkan_handles.hpp - - - - - -Node10->Node11 - - - - - -Node12->Node5 - - - - - -Node12->Node6 - - - - - -Node13->Node4 - - - - - -Node13->Node6 - - - - - -Node14 - - -abcg_elapsedtimer.hpp - - - - - -Node13->Node14 - - - - - -Node15 - - -chrono - - - - - -Node14->Node15 - - - - - -Node21->Node3 - - - - - -Node22->Node4 - - - - - -Node23 - - -source_location - - - - - -Node22->Node23 - - - - - -Node24 - - -stdexcept - - - - - -Node22->Node24 - - - - - -Node25->Node22 - - - - - -Node25->Node23 - - - - - -Node26 - - -volk.h - - - - - -Node25->Node26 - - - - - -Node27 - - -vulkan/vulkan.hpp - - - - - -Node25->Node27 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp.html b/abcg/doc/html/abcg__vulkan__window_8hpp.html deleted file mode 100644 index d0d7b5fb3..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp File Reference
-
-
- -

Header file of abcg::VulkanWindow. -More...

-
#include <array>
-#include <string>
-#include "abcg_vulkan.hpp"
-#include "abcg_vulkan_device.hpp"
-#include "abcg_vulkan_instance.hpp"
-#include "abcg_vulkan_physical_device.hpp"
-#include "abcg_vulkan_swapchain.hpp"
-#include "abcg_window.hpp"
-
-Include dependency graph for abcg_vulkan_window.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - - - - -

-Classes

struct  abcg::VulkanSettings
 Configuration settings for creating a Vulkan context. More...
 
class  abcg::VulkanWindow
 Base class for a window that displays graphics using a Vulkan context. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
-

Detailed Description

-

Header file of abcg::VulkanWindow.

-

Declaration of abcg::VulkanWindow.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.map b/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.map deleted file mode 100644 index 39a017ce6..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.md5 deleted file mode 100644 index 211115c8f..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -c9a5651764eeb530684b3a1397f40922 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.svg b/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.svg deleted file mode 100644 index 8069a4ef3..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__dep__incl.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node3 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.map b/abcg/doc/html/abcg__vulkan__window_8hpp__incl.map deleted file mode 100644 index acd4369d4..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.map +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.md5 b/abcg/doc/html/abcg__vulkan__window_8hpp__incl.md5 deleted file mode 100644 index 2b14cccbc..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -08dcfba36ccbe01d67891e712b9a5433 \ No newline at end of file diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.svg b/abcg/doc/html/abcg__vulkan__window_8hpp__incl.svg deleted file mode 100644 index 438bec73e..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp__incl.svg +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node2 - - -array - - - - - -Node1->Node2 - - - - - -Node3 - - -string - - - - - -Node1->Node3 - - - - - -Node4 - - -abcg_vulkan.hpp - - - - - -Node1->Node4 - - - - - -Node7 - - -abcg_vulkan_device.hpp - - - - - -Node1->Node7 - - - - - -Node8 - - -abcg_vulkan_instance.hpp - - - - - -Node1->Node8 - - - - - -Node9 - - -abcg_vulkan_physical -_device.hpp - - - - - -Node1->Node9 - - - - - -Node11 - - -abcg_vulkan_swapchain.hpp - - - - - -Node1->Node11 - - - - - -Node12 - - -abcg_window.hpp - - - - - -Node1->Node12 - - - - - -Node5 - - -abcg_external.hpp - - - - - -Node4->Node5 - - - - - -Node6 - - -abcg_vulkan_external.hpp - - - - - -Node4->Node6 - - - - - -Node7->Node4 - - - - - -Node7->Node5 - - - - - -Node8->Node4 - - - - - -Node8->Node5 - - - - - -Node9->Node4 - - - - - -Node9->Node5 - - - - - -Node10 - - -vulkan/vulkan_handles.hpp - - - - - -Node9->Node10 - - - - - -Node11->Node4 - - - - - -Node11->Node5 - - - - - -Node12->Node3 - - - - - -Node12->Node5 - - - - - -Node13 - - -abcg_elapsedtimer.hpp - - - - - -Node12->Node13 - - - - - -Node14 - - -chrono - - - - - -Node13->Node14 - - - - - diff --git a/abcg/doc/html/abcg__vulkan__window_8hpp_source.html b/abcg/doc/html/abcg__vulkan__window_8hpp_source.html deleted file mode 100644 index 92ca76ecd..000000000 --- a/abcg/doc/html/abcg__vulkan__window_8hpp_source.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_vulkan_window.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_VULKAN_WINDOW_HPP_
-
14 #define ABCG_VULKAN_WINDOW_HPP_
-
15 
-
16 #include <array>
-
17 #include <string>
-
18 
-
19 #include "abcg_vulkan.hpp"
-
20 #include "abcg_vulkan_device.hpp"
-
21 #include "abcg_vulkan_instance.hpp"
- - -
24 #include "abcg_window.hpp"
-
25 
-
26 namespace abcg {
-
27 class VulkanWindow;
-
28 struct VulkanSettings;
-
29 } // namespace abcg
-
30 
- -
47  int depthBufferSize{24};
-
48 
- -
55 
-
62  int samples{0};
-
63 
-
72  bool vSync{false};
-
73 };
-
74 
-
93 class abcg::VulkanWindow : public Window {
-
94 public:
-
95  [[nodiscard]] VulkanSettings const &getVulkanSettings() const noexcept;
-
96  void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept;
-
97  // void saveScreenshotPNG(std::string_view filename) const;
-
98 
-
99  // TODO: Move definition to cpp
-
100  [[nodiscard]] VulkanDevice const &getDevice() const noexcept {
-
101  return m_device;
-
102  }
-
103 
-
104  // TODO: Move definition to cpp
-
105  [[nodiscard]] VulkanPhysicalDevice const &getPhysicalDevice() const noexcept {
-
106  return m_physicalDevice;
-
107  }
-
108 
-
109  [[nodiscard]] VulkanSwapchain &getSwapchain() noexcept { return m_swapchain; }
-
110 
-
111 protected:
-
112  virtual void onEvent(SDL_Event &event);
-
113  virtual void onInitialize();
-
114  virtual void onPaint();
-
115  virtual void onPaintUI();
-
116  virtual void onResize(glm::ivec2 size);
-
117  virtual void onCleanup();
-
118 
-
119 private:
-
120  void handleEvent(SDL_Event &event) override;
-
121  void initialize() override;
-
122  void paint() override;
-
123  void cleanup() override;
-
124  [[nodiscard]] glm::ivec2 getWindowSize() const override;
-
125 
-
126  VulkanSettings m_vulkanSettings;
-
127  VulkanExtensions const m_deviceExtensions{{VK_KHR_SWAPCHAIN_EXTENSION_NAME}};
-
128  VulkanLayers m_layers {
-
129 #if defined(ABCG_VULKAN_DEBUG_REPORT)
-
130  { "VK_LAYER_KHRONOS_validation" }
-
131 #endif
-
132  };
-
133 
-
134  std::unique_ptr<VulkanInstance> m_instance;
-
135  VulkanPhysicalDevice m_physicalDevice;
-
136  VulkanDevice m_device;
-
137  VulkanSwapchain m_swapchain;
-
138  vk::SurfaceKHR m_surface{};
-
139 
-
140  bool m_minimized{};
-
141 };
-
142 
-
143 #endif
-
Header file for Vulkan-related functions and classes.
-
Header file of abcg::VulkanDevice.
-
Header file of abcg::VulkanInstance.
-
Header file of abcg::VulkanPhysicalDevice.
-
Header file of abcg::VulkanSwapchain.
-
Header file of abcg::Window.
-
A class for representing a Vulkan logical device and related resources.
Definition: abcg_vulkan_device.hpp:31
-
A class for representing a Vulkan physical device.
Definition: abcg_vulkan_physical_device.hpp:28
-
A class for representing a Vulkan swapchain.
Definition: abcg_vulkan_swapchain.hpp:32
-
Base class for a window that displays graphics using a Vulkan context.
Definition: abcg_vulkan_window.hpp:93
-
virtual void onEvent(SDL_Event &event)
Custom event handler.
Definition: abcg_vulkan_window.cpp:97
-
virtual void onPaintUI()
Custom handler for rendering Dear ImGUI controls.
Definition: abcg_vulkan_window.cpp:129
-
virtual void onInitialize()
Custom handler for Vulkan initialization tasks to be performed before rendering the scene.
Definition: abcg_vulkan_window.cpp:107
-
VulkanPhysicalDevice const & getPhysicalDevice() const noexcept
Definition: abcg_vulkan_window.hpp:105
-
virtual void onCleanup()
Custom handler for cleaning up Vulkan resources.
Definition: abcg_vulkan_window.cpp:200
-
virtual void onResize(glm::ivec2 size)
Custom handler for window resizing events.
Definition: abcg_vulkan_window.cpp:191
-
VulkanSettings const & getVulkanSettings() const noexcept
Returns the configuration settings of the Vulkan instance.
Definition: abcg_vulkan_window.cpp:69
-
void setVulkanSettings(VulkanSettings const &vulkanSettings) noexcept
Sets the configuration settings that will be used for creating the Vulkan instance.
Definition: abcg_vulkan_window.cpp:80
-
VulkanDevice const & getDevice() const noexcept
Definition: abcg_vulkan_window.hpp:100
-
VulkanSwapchain & getSwapchain() noexcept
Definition: abcg_vulkan_window.hpp:109
-
virtual void onPaint()
Custom handler for rendering the Vulkan scene.
Definition: abcg_vulkan_window.cpp:117
-
Base abstract class that represents a SDL window.
Definition: abcg_window.hpp:86
-
Root namespace.
Definition: abcg_application.hpp:23
-
Data that represents extension names.
Definition: abcg_vulkan.hpp:34
-
Configuration settings for creating a Vulkan context.
Definition: abcg_vulkan_window.hpp:41
-
int depthBufferSize
Minimum number of bits required for the depth buffer.
Definition: abcg_vulkan_window.hpp:47
-
int samples
Number of desired samples to be used for multisample anti-aliasing.
Definition: abcg_vulkan_window.hpp:62
-
bool vSync
Whether to synchronize the presentation with the vertical retrace.
Definition: abcg_vulkan_window.hpp:72
-
int stencilBufferSize
Minimum number of bits required for the stencil buffer.
Definition: abcg_vulkan_window.hpp:54
-
-
- - - - diff --git a/abcg/doc/html/abcg__window_8cpp.html b/abcg/doc/html/abcg__window_8cpp.html deleted file mode 100644 index de40f7add..000000000 --- a/abcg/doc/html/abcg__window_8cpp.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_window.cpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_window.cpp File Reference
-
-
- -

Definition of abcg::Window members. -More...

-
#include "abcg_window.hpp"
-#include <SDL_video.h>
-#include <utility>
-#include <imgui_impl_sdl.h>
-
-Include dependency graph for abcg_window.cpp:
-
-
-
-
-

Detailed Description

-

Definition of abcg::Window members.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__window_8cpp__incl.map b/abcg/doc/html/abcg__window_8cpp__incl.map deleted file mode 100644 index 52f34414d..000000000 --- a/abcg/doc/html/abcg__window_8cpp__incl.map +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__window_8cpp__incl.md5 b/abcg/doc/html/abcg__window_8cpp__incl.md5 deleted file mode 100644 index 79e112e99..000000000 --- a/abcg/doc/html/abcg__window_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -223cffd1d4367f7f31784fa6d74497b7 \ No newline at end of file diff --git a/abcg/doc/html/abcg__window_8cpp__incl.svg b/abcg/doc/html/abcg__window_8cpp__incl.svg deleted file mode 100644 index 42435eea9..000000000 --- a/abcg/doc/html/abcg__window_8cpp__incl.svg +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_window.cpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.cpp - - - - - -Node2 - - -abcg_window.hpp - - - - - -Node1->Node2 - - - - - -Node7 - - -SDL_video.h - - - - - -Node1->Node7 - - - - - -Node8 - - -utility - - - - - -Node1->Node8 - - - - - -Node9 - - -imgui_impl_sdl.h - - - - - -Node1->Node9 - - - - - -Node3 - - -string - - - - - -Node2->Node3 - - - - - -Node4 - - -abcg_elapsedtimer.hpp - - - - - -Node2->Node4 - - - - - -Node6 - - -abcg_external.hpp - - - - - -Node2->Node6 - - - - - -Node5 - - -chrono - - - - - -Node4->Node5 - - - - - diff --git a/abcg/doc/html/abcg__window_8hpp.html b/abcg/doc/html/abcg__window_8hpp.html deleted file mode 100644 index e695ea55b..000000000 --- a/abcg/doc/html/abcg__window_8hpp.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_window.hpp File Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
/home/harlen/dev/abcg2/abcg/abcg_window.hpp File Reference
-
-
- -

Header file of abcg::Window. -More...

-
#include <string>
-#include "abcg_elapsedtimer.hpp"
-#include "abcg_external.hpp"
-
-Include dependency graph for abcg_window.hpp:
-
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
-
-
-
-

Go to the source code of this file.

- - - - - - - - -

-Classes

struct  abcg::WindowSettings
 Configuration settings of a window. More...
 
class  abcg::Window
 Base abstract class that represents a SDL window. More...
 
- - - - -

-Namespaces

 abcg
 Root namespace.
 
- - - -

-Functions

int abcg::resizingEventWatcher (void *data, SDL_Event *event)
 
-

Detailed Description

-

Header file of abcg::Window.

-

Declaration of abcg::Window.

-

This file is part of ABCg (https://github.com/hbatagelo/abcg).

- -
-
- - - - diff --git a/abcg/doc/html/abcg__window_8hpp.js b/abcg/doc/html/abcg__window_8hpp.js deleted file mode 100644 index 7512d686e..000000000 --- a/abcg/doc/html/abcg__window_8hpp.js +++ /dev/null @@ -1,6 +0,0 @@ -var abcg__window_8hpp = -[ - [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], - [ "Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ], - [ "resizingEventWatcher", "abcg__window_8hpp.html#a6825799aa852dc7612dad9326be2fb3b", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/abcg__window_8hpp__dep__incl.map b/abcg/doc/html/abcg__window_8hpp__dep__incl.map deleted file mode 100644 index c5287cb14..000000000 --- a/abcg/doc/html/abcg__window_8hpp__dep__incl.map +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/abcg/doc/html/abcg__window_8hpp__dep__incl.md5 b/abcg/doc/html/abcg__window_8hpp__dep__incl.md5 deleted file mode 100644 index 45291e06e..000000000 --- a/abcg/doc/html/abcg__window_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -92f0767e6dadbb0102cb59ebb72b2ec0 \ No newline at end of file diff --git a/abcg/doc/html/abcg__window_8hpp__dep__incl.svg b/abcg/doc/html/abcg__window_8hpp__dep__incl.svg deleted file mode 100644 index 9d23ce6b1..000000000 --- a/abcg/doc/html/abcg__window_8hpp__dep__incl.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.hpp - - - - - -Node2 - - -/home/harlen/dev/abcg2 -/abcg/abcg_application.cpp - - - - - -Node1->Node2 - - - - - -Node3 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.cpp - - - - - -Node1->Node3 - - - - - -Node4 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl_window.hpp - - - - - -Node1->Node4 - - - - - -Node6 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_instance.cpp - - - - - -Node1->Node6 - - - - - -Node7 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.cpp - - - - - -Node1->Node7 - - - - - -Node8 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_window.hpp - - - - - -Node1->Node8 - - - - - -Node10 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.cpp - - - - - -Node1->Node10 - - - - - -Node4->Node3 - - - - - -Node5 - - -/home/harlen/dev/abcg2 -/abcg/abcg_opengl.hpp - - - - - -Node4->Node5 - - - - - -Node8->Node7 - - - - - -Node9 - - -/home/harlen/dev/abcg2 -/abcg/abcg_vulkan_swapchain.cpp - - - - - -Node8->Node9 - - - - - diff --git a/abcg/doc/html/abcg__window_8hpp__incl.map b/abcg/doc/html/abcg__window_8hpp__incl.map deleted file mode 100644 index 659b96a3d..000000000 --- a/abcg/doc/html/abcg__window_8hpp__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/abcg/doc/html/abcg__window_8hpp__incl.md5 b/abcg/doc/html/abcg__window_8hpp__incl.md5 deleted file mode 100644 index 84b48cdb3..000000000 --- a/abcg/doc/html/abcg__window_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -5fac1460a36e2846df906e5899a49acc \ No newline at end of file diff --git a/abcg/doc/html/abcg__window_8hpp__incl.svg b/abcg/doc/html/abcg__window_8hpp__incl.svg deleted file mode 100644 index 4500ad963..000000000 --- a/abcg/doc/html/abcg__window_8hpp__incl.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - -/home/harlen/dev/abcg2/abcg/abcg_window.hpp - - -Node1 - - -/home/harlen/dev/abcg2 -/abcg/abcg_window.hpp - - - - - -Node2 - - -string - - - - - -Node1->Node2 - - - - - -Node3 - - -abcg_elapsedtimer.hpp - - - - - -Node1->Node3 - - - - - -Node5 - - -abcg_external.hpp - - - - - -Node1->Node5 - - - - - -Node4 - - -chrono - - - - - -Node3->Node4 - - - - - diff --git a/abcg/doc/html/abcg__window_8hpp_source.html b/abcg/doc/html/abcg__window_8hpp_source.html deleted file mode 100644 index 4b46625eb..000000000 --- a/abcg/doc/html/abcg__window_8hpp_source.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - - ABCg: /home/harlen/dev/abcg2/abcg/abcg_window.hpp Source File - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
/home/harlen/dev/abcg2/abcg/abcg_window.hpp
-
-
-Go to the documentation of this file.
1 
-
13 #ifndef ABCG_WINDOW_HPP_
-
14 #define ABCG_WINDOW_HPP_
-
15 
-
16 #include <string>
-
17 
-
18 #include "abcg_elapsedtimer.hpp"
-
19 #include "abcg_external.hpp"
-
20 
-
21 #if defined(__EMSCRIPTEN__)
-
22 #include "abcg_opengl_external.hpp"
-
23 #endif
-
24 
-
25 namespace abcg {
-
26 struct WindowSettings;
-
27 class Application;
-
28 class Window;
-
29 int resizingEventWatcher(void *data, SDL_Event *event);
-
30 #if defined(__EMSCRIPTEN__)
-
31 EM_BOOL fullscreenchangeCallback(int eventType,
-
32  EmscriptenFullscreenChangeEvent const *event,
-
33  void *userData);
-
34 #endif
-
35 } // namespace abcg
-
36 
- -
53  int width{800};
-
60  int height{600};
-
62  bool showFPS{true};
- -
68  std::string fullscreenElementID{"#canvas"};
-
70  std::string title{"ABCg Window"};
-
71 };
-
72 
-
86 class abcg::Window {
-
87 public:
-
91  Window() = default;
-
92  Window(Window const &) = delete;
-
96  Window(Window &&) = default;
-
97  Window &operator=(Window const &) = delete;
-
101  Window &operator=(Window &&) = default;
-
105  virtual ~Window() = default;
-
106 
-
107  [[nodiscard]] WindowSettings const &getWindowSettings() const noexcept;
-
108  void setWindowSettings(WindowSettings const &windowSettings);
-
109 
-
110 protected:
-
120  virtual void handleEvent(SDL_Event &event) = 0;
-
121 
-
127  virtual void initialize() = 0;
-
128 
-
135  virtual void paint() = 0;
-
136 
-
142  virtual void cleanup() = 0;
-
143 
-
153  [[nodiscard]] virtual glm::ivec2 getWindowSize() const = 0;
-
154 
-
155  [[nodiscard]] double getDeltaTime() const noexcept;
-
156  [[nodiscard]] double getElapsedTime() const;
-
157  [[nodiscard]] SDL_Window *getSDLWindow() const noexcept;
-
158  [[nodiscard]] Uint32 getSDLWindowID() const noexcept;
-
159  [[nodiscard]] bool createSDLWindow(SDL_WindowFlags extraFlags);
-
160 
-
161  void setEnableResizingEventWatcher(bool enabled) noexcept;
-
162  void toggleFullscreen();
-
163 
-
164 private:
-
165  void handleEventTemplate(SDL_Event &event, bool &done);
-
166  void initializeTemplate();
-
167  void paintTemplate();
-
168  void cleanupTemplate();
-
169 
-
170  SDL_Window *m_window{};
-
171  Uint32 m_windowID{};
-
172 
-
173  WindowSettings m_windowSettings;
-
174 
-
175  ElapsedTimer m_deltaTime;
-
176  ElapsedTimer m_elapsedTime;
-
177  double m_lastDeltaTime{};
-
178 
-
179  bool m_enableResizingEventWatcher{true};
-
180 
-
181  friend Application;
-
182  friend int resizingEventWatcher(void *data, SDL_Event *event);
-
183 #if defined(__EMSCRIPTEN__)
-
184  friend EM_BOOL
-
185  fullscreenchangeCallback(int eventType,
-
186  EmscriptenFullscreenChangeEvent const *event,
-
187  void *userData);
-
188 #endif
-
189 };
-
190 
-
191 #endif
-
Header file of abcg::ElapsedTimer.
-
Header file for including third-party dependencies.
-
Header file for including OpenGL-related third-party dependencies.
-
Base abstract class that represents a SDL window.
Definition: abcg_window.hpp:86
-
double getDeltaTime() const noexcept
Returns the time that have passed since the last frame.
Definition: abcg_window.cpp:166
-
bool createSDLWindow(SDL_WindowFlags extraFlags)
Creates the SDL window.
Definition: abcg_window.cpp:239
-
virtual void initialize()=0
Custom handler for window initialization tasks.
-
Window(Window &&)=default
Default move constructor.
-
Window & operator=(Window const &)=delete
-
friend int resizingEventWatcher(void *data, SDL_Event *event)
-
virtual void cleanup()=0
Custom handler for window cleanup tasks.
-
double getElapsedTime() const
Returns the time that have passed since the window was created.
Definition: abcg_window.cpp:173
-
Window & operator=(Window &&)=default
Default move assignment.
-
virtual void paint()=0
Custom handler for window repainting.
-
SDL_Window * getSDLWindow() const noexcept
Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::crea...
Definition: abcg_window.cpp:219
-
Uint32 getSDLWindowID() const noexcept
Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or ...
Definition: abcg_window.cpp:229
-
void setWindowSettings(WindowSettings const &windowSettings)
Sets the configuration settings of the window.
Definition: abcg_window.cpp:187
-
WindowSettings const & getWindowSettings() const noexcept
Returns the current configuration settings of the window.
Definition: abcg_window.cpp:180
-
Window()=default
Default constructor.
-
Window(Window const &)=delete
-
virtual ~Window()=default
Default destructor.
-
void setEnableResizingEventWatcher(bool enabled) noexcept
Toggles the resizing event watcher on/off.
Definition: abcg_window.cpp:275
-
void toggleFullscreen()
Toggles between fullscreen and windowed mode.
Definition: abcg_window.cpp:282
-
virtual void handleEvent(SDL_Event &event)=0
Custom event handler.
-
virtual glm::ivec2 getWindowSize() const =0
Returns the size of the SDL window.
-
Root namespace.
Definition: abcg_application.hpp:23
-
int resizingEventWatcher(void *data, SDL_Event *event)
Definition: abcg_window.cpp:126
-
Configuration settings of a window.
Definition: abcg_window.hpp:46
-
bool showFullscreenButton
Whether to show a button to toggle fullscreen on/off.
Definition: abcg_window.hpp:64
-
std::string fullscreenElementID
HTML element ID used for registering the fullscreen callback when the application is built for WebAss...
Definition: abcg_window.hpp:68
-
int height
Window height in windowed mode, in pixels.
Definition: abcg_window.hpp:60
-
std::string title
String containing the window title.
Definition: abcg_window.hpp:70
-
bool showFPS
Whether to show an overlay window with a FPS counter.
Definition: abcg_window.hpp:62
-
int width
Window width in windowed mode, in pixels.
Definition: abcg_window.hpp:53
-
-
- - - - diff --git a/abcg/doc/html/annotated.html b/abcg/doc/html/annotated.html index c669fce5f..e185f88f1 100644 --- a/abcg/doc/html/annotated.html +++ b/abcg/doc/html/annotated.html @@ -5,7 +5,7 @@ - + ABCg: Class List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,53 +94,59 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Class List
+
Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 12]
- + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + +
 NabcgRoot namespace
 CApplicationManages the application's control flow
 CApplicationManages the application's control flow
 CExceptionBase class for ABCg exception objects
 CRuntimeErrorRepresents an exception object for runtime errors
 CSDLErrorRepresents an exception object for SDL errors
 CSDLImageErrorRepresents an exception object for SDL_image errors
 COpenGLErrorRepresents an exception object for OpenGL errors
 COpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 COpenGLCubemapCreateInfoConfiguration settings for creating a cubemap texture for OpenGL
 COpenGLShaderOpenGL shader object and its corresponding stage
 COpenGLSettingsConfiguration settings for creating an OpenGL context
 COpenGLWindowBase class for a window that displays graphics using an OpenGL context
 COpenGLCubemapCreateInfoConfiguration settings for creating a cubemap texture for OpenGL
 COpenGLErrorRepresents an exception object for OpenGL errors
 COpenGLSettingsConfiguration settings for creating an OpenGL context
 COpenGLShaderOpenGL shader object and its corresponding stage
 COpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 COpenGLWindowBase class for a window that displays graphics using an OpenGL context
 CRuntimeErrorRepresents an exception object for runtime errors
 CSDLErrorRepresents an exception object for SDL errors
 CSDLImageErrorRepresents an exception object for SDL_image errors
 CShaderSourceShader source code and corresponding stage
 CTimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 CTimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 CTrackBallManages a virtual trackball
 CVulkanBufferCreateInfoCreation info structure for abcg::VulkanBuffer::create
 CVulkanBufferA class for representing a Vulkan buffer
 CVulkanCommandPoolsCommand pools associated with a Vulkan device
 CVulkanQueuesQueues associated with a Vulkan device
 CVulkanDeviceA class for representing a Vulkan logical device and related resources
 CVulkanErrorRepresents an exception object for Vulkan runtime errors
 CVulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 CVulkanImageA class for representing a Vulkan image
 CVulkanInstanceA class for representing a Vulkan instance
 CVulkanQueuesFamiliesSupported queues families
 CVulkanPhysicalDeviceA class for representing a Vulkan physical device
 CVulkanBufferA class for representing a Vulkan buffer
 CVulkanBufferCreateInfoCreation info structure for abcg::VulkanBuffer::create
 CVulkanCommandPoolsCommand pools associated with a Vulkan device
 CVulkanDeviceA class for representing a Vulkan logical device and related resources
 CVulkanErrorRepresents an exception object for Vulkan runtime errors
 CVulkanFrameData needed by a rendering frame
 CVulkanImageA class for representing a Vulkan image
 CVulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 CVulkanInstanceA class for representing a Vulkan instance
 CVulkanPhysicalDeviceA class for representing a Vulkan physical device
 CVulkanPipelineA class for representing a Vulkan pipeline
 CVulkanPipelineCreateInfoCreation info structure for abcg::VulkanPipeline::create
 CVulkanPipelineA class for representing a Vulkan pipeline
 CVulkanShaderA class for representing a Vulkan shader
 CVulkanFrameData needed by a rendering frame
 CVulkanSwapchainA class for representing a Vulkan swapchain
 CVulkanSettingsConfiguration settings for creating a Vulkan context
 CVulkanQueuesQueues associated with a Vulkan device
 CVulkanQueuesFamiliesSupported queues families
 CVulkanSettingsConfiguration settings for creating a Vulkan context
 CVulkanShaderA class for representing a Vulkan shader
 CVulkanSwapchainA class for representing a Vulkan swapchain
 CVulkanWindowBase class for a window that displays graphics using a Vulkan context
 CWindowSettingsConfiguration settings of a window
 CWindowBase abstract class that represents a SDL window
 CWindowBase abstract class that represents a SDL window
 CWindowSettingsConfiguration settings of a window
@@ -147,7 +154,7 @@ diff --git a/abcg/doc/html/annotated_dup.js b/abcg/doc/html/annotated_dup.js index b04af34c3..7bbe7488f 100644 --- a/abcg/doc/html/annotated_dup.js +++ b/abcg/doc/html/annotated_dup.js @@ -3,37 +3,37 @@ var annotated_dup = [ "abcg", "namespaceabcg.html", [ [ "Application", "classabcg_1_1Application.html", "classabcg_1_1Application" ], [ "Exception", "classabcg_1_1Exception.html", "classabcg_1_1Exception" ], - [ "RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], - [ "SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], - [ "SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ], - [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], - [ "OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], [ "OpenGLCubemapCreateInfo", "structabcg_1_1OpenGLCubemapCreateInfo.html", "structabcg_1_1OpenGLCubemapCreateInfo" ], - [ "OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], + [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], [ "OpenGLSettings", "structabcg_1_1OpenGLSettings.html", "structabcg_1_1OpenGLSettings" ], + [ "OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], + [ "OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], [ "OpenGLWindow", "classabcg_1_1OpenGLWindow.html", "classabcg_1_1OpenGLWindow" ], + [ "RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], + [ "SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], + [ "SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ], [ "ShaderSource", "structabcg_1_1ShaderSource.html", "structabcg_1_1ShaderSource" ], [ "Timer", "classabcg_1_1Timer.html", "classabcg_1_1Timer" ], [ "TrackBall", "classabcg_1_1TrackBall.html", "classabcg_1_1TrackBall" ], - [ "VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], [ "VulkanBuffer", "classabcg_1_1VulkanBuffer.html", "classabcg_1_1VulkanBuffer" ], + [ "VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], [ "VulkanCommandPools", "structabcg_1_1VulkanCommandPools.html", "structabcg_1_1VulkanCommandPools" ], - [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], [ "VulkanDevice", "classabcg_1_1VulkanDevice.html", "classabcg_1_1VulkanDevice" ], [ "VulkanError", "classabcg_1_1VulkanError.html", "classabcg_1_1VulkanError" ], - [ "VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], + [ "VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], [ "VulkanImage", "classabcg_1_1VulkanImage.html", "classabcg_1_1VulkanImage" ], + [ "VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], [ "VulkanInstance", "classabcg_1_1VulkanInstance.html", "classabcg_1_1VulkanInstance" ], - [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], [ "VulkanPhysicalDevice", "classabcg_1_1VulkanPhysicalDevice.html", "classabcg_1_1VulkanPhysicalDevice" ], - [ "VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], [ "VulkanPipeline", "classabcg_1_1VulkanPipeline.html", "classabcg_1_1VulkanPipeline" ], + [ "VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], + [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], + [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], + [ "VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], [ "VulkanShader", "classabcg_1_1VulkanShader.html", "classabcg_1_1VulkanShader" ], - [ "VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], [ "VulkanSwapchain", "classabcg_1_1VulkanSwapchain.html", "classabcg_1_1VulkanSwapchain" ], - [ "VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], [ "VulkanWindow", "classabcg_1_1VulkanWindow.html", "classabcg_1_1VulkanWindow" ], - [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], - [ "Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ] + [ "Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ], + [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ] ] ] ]; \ No newline at end of file diff --git a/abcg/doc/html/bc_sd.png b/abcg/doc/html/bc_sd.png new file mode 100644 index 000000000..7c691d4e8 Binary files /dev/null and b/abcg/doc/html/bc_sd.png differ diff --git a/abcg/doc/html/bdwn.png b/abcg/doc/html/bdwn.png deleted file mode 100644 index 87370bcc7..000000000 Binary files a/abcg/doc/html/bdwn.png and /dev/null differ diff --git a/abcg/doc/html/classabcg_1_1Application-members.html b/abcg/doc/html/classabcg_1_1Application-members.html index 828a95b12..658798b58 100644 --- a/abcg/doc/html/classabcg_1_1Application-members.html +++ b/abcg/doc/html/classabcg_1_1Application-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,29 +94,35 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Application Member List
+
abcg::Application Member List

This is the complete list of members for abcg::Application, including all inherited members.

- + - +
Application(int argc, char **argv)abcg::Application
getAssetsPath() noexceptabcg::Applicationstatic
getAssetsPath() noexceptabcg::Applicationstatic
getBasePath() noexceptabcg::Applicationstatic
run(Window &window)abcg::Application
run(Window &window)abcg::Application
diff --git a/abcg/doc/html/classabcg_1_1Application.html b/abcg/doc/html/classabcg_1_1Application.html index 4082a4688..b1d52b9d1 100644 --- a/abcg/doc/html/classabcg_1_1Application.html +++ b/abcg/doc/html/classabcg_1_1Application.html @@ -5,7 +5,7 @@ - + ABCg: abcg::Application Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Application Class Reference
+
abcg::Application Class Reference
@@ -113,30 +120,30 @@

#include <abcgApplication.hpp>

- - - + + - - + +

+

Public Member Functions

 Application (int argc, char **argv)
 Constructs an abcg::Application object. More...
 Application (int argc, char **argv)
 Constructs an abcg::Application object.
 
void run (Window &window)
 Runs the application for the given window. More...
void run (Window &window)
 Runs the application for the given window.
 
- - - + + - - + +

+

Static Public Member Functions

static std::string const & getAssetsPath () noexcept
 Returns the path to the application's assets directory, relative to the directory the executable is launched from. More...
static std::string const & getAssetsPath () noexcept
 Returns the path to the application's assets directory, relative to the directory the executable is launched from.
 
static std::string const & getBasePath () noexcept
 Returns the path to the application's directory, relative to the directory the executable is launched in. More...
static std::string const & getBasePath () noexcept
 Returns the path to the application's directory, relative to the directory the executable is launched in.
 

Detailed Description

Manages the application's control flow.

This is the class that starts an ABCg application, initializes the SDL modules and enters the main event loop.

Constructor & Destructor Documentation

- -

◆ Application()

+ +

◆ Application()

@@ -173,8 +180,8 @@

Member Function Documentation

- -

◆ getAssetsPath()

+ +

◆ getAssetsPath()

@@ -203,8 +210,8 @@

-

◆ getBasePath()

+ +

◆ getBasePath()

@@ -232,8 +239,8 @@

-

◆ run()

+ +

◆ run()

@@ -276,7 +283,7 @@

diff --git a/abcg/doc/html/classabcg_1_1ElapsedTimer-members.html b/abcg/doc/html/classabcg_1_1ElapsedTimer-members.html deleted file mode 100644 index 772d9ef64..000000000 --- a/abcg/doc/html/classabcg_1_1ElapsedTimer-members.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
abcg::ElapsedTimer Member List
-
-
- -

This is the complete list of members for abcg::ElapsedTimer, including all inherited members.

- - - -
elapsed() constabcg::ElapsedTimer
restart()abcg::ElapsedTimer
-
- - - - diff --git a/abcg/doc/html/classabcg_1_1ElapsedTimer.html b/abcg/doc/html/classabcg_1_1ElapsedTimer.html deleted file mode 100644 index ba406bf57..000000000 --- a/abcg/doc/html/classabcg_1_1ElapsedTimer.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - ABCg: abcg::ElapsedTimer Class Reference - - - - - - - - - - - - - - - - - - -
- -
- - - - - - -
-
ABCg -  v3.0.0 -
-
Development framework for MCTA008-17
-
-
- - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
abcg::ElapsedTimer Class Reference
-
-
- -

Represents a timer that calculates how much time has elapsed between two events. - More...

- -

#include <abcg_elapsedtimer.hpp>

- - - - - - - - -

-Public Member Functions

double elapsed () const
 Returns how much time has elapsed since the timer has started. More...
 
double restart ()
 Restarts the timer and returns the last elapsed time. More...
 
-

Detailed Description

-

Represents a timer that calculates how much time has elapsed between two events.

-

The timer is based on the monotonic clock std::chrono::steady_clock.

-

Member Function Documentation

- -

◆ elapsed()

- -
-
- - - - - - - -
double abcg::ElapsedTimer::elapsed () const
-
- -

Returns how much time has elapsed since the timer has started.

-
Returns
Time, in seconds, since the timer object was created, or since the last call to abcg::ElapsedTimer::restart.
- -
-
- -

◆ restart()

- -
-
- - - - - - - -
double abcg::ElapsedTimer::restart ()
-
- -

Restarts the timer and returns the last elapsed time.

-
Returns
Time, in seconds, since the timer object was created, or since the last call to abcg::ElapsedTimer::restart.
- -
-
-
The documentation for this class was generated from the following files: -
-
- - - - diff --git a/abcg/doc/html/classabcg_1_1ElapsedTimer.js b/abcg/doc/html/classabcg_1_1ElapsedTimer.js deleted file mode 100644 index 7c992afb4..000000000 --- a/abcg/doc/html/classabcg_1_1ElapsedTimer.js +++ /dev/null @@ -1,5 +0,0 @@ -var classabcg_1_1ElapsedTimer = -[ - [ "elapsed", "classabcg_1_1ElapsedTimer.html#a0f331e2e7c4203e9ebfea85b0f4443d8", null ], - [ "restart", "classabcg_1_1ElapsedTimer.html#a44b75de196847caa8a54fce34fd2e581", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1Exception-members.html b/abcg/doc/html/classabcg_1_1Exception-members.html index c854bc2fc..46b805b0f 100644 --- a/abcg/doc/html/classabcg_1_1Exception-members.html +++ b/abcg/doc/html/classabcg_1_1Exception-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,27 +94,33 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Exception Member List
+
abcg::Exception Member List

This is the complete list of members for abcg::Exception, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
what() const noexcept overrideabcg::Exception
what() const noexcept overrideabcg::Exception

diff --git a/abcg/doc/html/classabcg_1_1Exception.html b/abcg/doc/html/classabcg_1_1Exception.html index 020e30407..b1c644523 100644 --- a/abcg/doc/html/classabcg_1_1Exception.html +++ b/abcg/doc/html/classabcg_1_1Exception.html @@ -5,7 +5,7 @@ - + ABCg: abcg::Exception Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Exception Class Reference
+
abcg::Exception Class Reference
@@ -114,29 +121,29 @@
Inheritance diagram for abcg::Exception:
-
+
[legend]
Collaboration diagram for abcg::Exception:
-
+
[legend]
- - - + + - - + +

+

Public Member Functions

 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

Base class for ABCg exception objects.

Base exception class used for exception objects thrown by ABCg.

Constructor & Destructor Documentation

- -

◆ Exception()

+ +

◆ Exception()

@@ -170,8 +177,8 @@

Member Function Documentation

- -

◆ what()

+ +

◆ what()

@@ -208,7 +215,7 @@

diff --git a/abcg/doc/html/classabcg_1_1Exception__coll__graph.map b/abcg/doc/html/classabcg_1_1Exception__coll__graph.map index 24aa877b4..a01728d7f 100644 --- a/abcg/doc/html/classabcg_1_1Exception__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1Exception__coll__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/classabcg_1_1Exception__coll__graph.md5 b/abcg/doc/html/classabcg_1_1Exception__coll__graph.md5 index dc353ea5b..655ce4111 100644 --- a/abcg/doc/html/classabcg_1_1Exception__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1Exception__coll__graph.md5 @@ -1 +1 @@ -70bf421ca4ab470715111c6edd6e7651 \ No newline at end of file +59bc846f0b80cbce7a33aab29e371964 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1Exception__coll__graph.svg b/abcg/doc/html/classabcg_1_1Exception__coll__graph.svg index 03d926ae2..5f198ac97 100644 --- a/abcg/doc/html/classabcg_1_1Exception__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1Exception__coll__graph.svg @@ -4,33 +4,36 @@ - - + + abcg::Exception - + Node1 - - -abcg::Exception + + +abcg::Exception - + Node2 - - -std::exception + + +std::exception - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.map b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.map index 99b390b72..e99370d06 100644 --- a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.map @@ -1,9 +1,15 @@ - - - - - - - + + + + + + + + + + + + + diff --git a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.md5 index 7aaafcf0a..374314be2 100644 --- a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.md5 @@ -1 +1 @@ -7f69f6d52c9e033598518f2191585d99 \ No newline at end of file +cb54e7b0421d10d8786752740b9fac00 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.svg b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.svg index 77bd23eeb..37f2ede35 100644 --- a/abcg/doc/html/classabcg_1_1Exception__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1Exception__inherit__graph.svg @@ -4,108 +4,126 @@ - - + + abcg::Exception - + Node1 - - -abcg::Exception + + +abcg::Exception - + Node3 - - -abcg::OpenGLError + + +abcg::OpenGLError - + Node1->Node3 - - + + + + + - + Node4 - - -abcg::RuntimeError + + +abcg::RuntimeError - + Node1->Node4 - - + + + + + - + Node5 - - -abcg::SDLError + + +abcg::SDLError - + Node1->Node5 - - + + + + + - + Node6 - - -abcg::SDLImageError + + +abcg::SDLImageError - + Node1->Node6 - - + + + + + - + Node7 - - -abcg::VulkanError + + +abcg::VulkanError - + Node1->Node7 - - + + + + + - + Node2 - - -std::exception + + +std::exception - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLError-members.html b/abcg/doc/html/classabcg_1_1OpenGLError-members.html index 7628250f3..afff728ab 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError-members.html +++ b/abcg/doc/html/classabcg_1_1OpenGLError-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::OpenGLError Member List
+
abcg::OpenGLError Member List

This is the complete list of members for abcg::OpenGLError, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
OpenGLError(std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())abcg::OpenGLErrorexplicit
OpenGLError(std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())abcg::OpenGLErrorexplicit
what() const noexcept overrideabcg::Exception
diff --git a/abcg/doc/html/classabcg_1_1OpenGLError.html b/abcg/doc/html/classabcg_1_1OpenGLError.html index c846789c2..42e00282d 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError.html +++ b/abcg/doc/html/classabcg_1_1OpenGLError.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLError Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::OpenGLError Class Reference
+
abcg::OpenGLError Class Reference
@@ -114,25 +121,25 @@
Inheritance diagram for abcg::OpenGLError:
-
+
[legend]
Collaboration diagram for abcg::OpenGLError:
-
+
[legend]
- - - + + - - + + - - + +

+

Public Member Functions

 OpenGLError (std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::OpenGLError object. More...
 OpenGLError (std::string_view what, unsigned int errorCode, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::OpenGLError object.
 
- Public Member Functions inherited from abcg::Exception
 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

@@ -140,8 +147,8 @@

This is used for throwing exceptions for OpenGL errors that can be checked with glGetError.

The explanatory error message is appended with source location information, and descriptive messages regarding the GL error codes.

Constructor & Destructor Documentation

- -

◆ OpenGLError()

+ +

◆ OpenGLError()

@@ -203,7 +210,7 @@

diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.map b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.map index 9de49a539..9fff1bc56 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.md5 b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.md5 index 6fa3a332a..c5d4f086d 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.md5 @@ -1 +1 @@ -13b484739696aaa1a987a94ecf90d2b9 \ No newline at end of file +d05485286081b1af50d23ed53fb8ef67 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.svg b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.svg index 63283d4ab..bdb1f0255 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1OpenGLError__coll__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::OpenGLError - + Node1 - - -abcg::OpenGLError + + +abcg::OpenGLError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.map b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.map index 9de49a539..9fff1bc56 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.md5 index 6fa3a332a..c5d4f086d 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.md5 @@ -1 +1 @@ -13b484739696aaa1a987a94ecf90d2b9 \ No newline at end of file +d05485286081b1af50d23ed53fb8ef67 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.svg b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.svg index 63283d4ab..bdb1f0255 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1OpenGLError__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::OpenGLError - + Node1 - - -abcg::OpenGLError + + +abcg::OpenGLError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow-members.html b/abcg/doc/html/classabcg_1_1OpenGLWindow-members.html index 9e812a4f5..89dd7d557 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow-members.html +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,50 +94,56 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::OpenGLWindow Member List
+
abcg::OpenGLWindow Member List

This is the complete list of members for abcg::OpenGLWindow, including all inherited members.

- + - + - + - + - + - + - - - + + + - + - + - + - +
createSDLWindow(SDL_WindowFlags extraFlags)abcg::Windowprotected
getDeltaTime() const noexceptabcg::Windowprotected
getDeltaTime() const noexceptabcg::Windowprotected
getElapsedTime() constabcg::Windowprotected
getOpenGLSettings() const noexceptabcg::OpenGLWindow
getOpenGLSettings() const noexceptabcg::OpenGLWindow
getSDLWindow() const noexceptabcg::Windowprotected
getSDLWindowID() const noexceptabcg::Windowprotected
getSDLWindowID() const noexceptabcg::Windowprotected
getWindowSettings() const noexceptabcg::Window
onCreate()abcg::OpenGLWindowprotectedvirtual
onCreate()abcg::OpenGLWindowprotectedvirtual
onDestroy()abcg::OpenGLWindowprotectedvirtual
onEvent(SDL_Event const &event)abcg::OpenGLWindowprotectedvirtual
onEvent(SDL_Event const &event)abcg::OpenGLWindowprotectedvirtual
onPaint()abcg::OpenGLWindowprotectedvirtual
onPaintUI()abcg::OpenGLWindowprotectedvirtual
onPaintUI()abcg::OpenGLWindowprotectedvirtual
onResize(glm::ivec2 const &size)abcg::OpenGLWindowprotectedvirtual
onUpdate()abcg::OpenGLWindowprotectedvirtual
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
onUpdate()abcg::OpenGLWindowprotectedvirtual
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
saveScreenshotPNG(std::string_view filename) constabcg::OpenGLWindow
setEnableResizingEventWatcher(bool enabled) noexceptabcg::Windowprotected
setEnableResizingEventWatcher(bool enabled) noexceptabcg::Windowprotected
setOpenGLSettings(OpenGLSettings const &openGLSettings) noexceptabcg::OpenGLWindow
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
toggleFullscreen()abcg::Windowprotected
Window()=defaultabcg::Window
Window()=defaultabcg::Window
Window(Window const &)=deleteabcg::Window
Window(Window &&)=defaultabcg::Window
Window(Window &&)=defaultabcg::Window
~Window()=defaultabcg::Windowvirtual
diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow.html b/abcg/doc/html/classabcg_1_1OpenGLWindow.html index 291f8b590..e97f6603e 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow.html +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLWindow Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::OpenGLWindow Class Reference
+
abcg::OpenGLWindow Class Reference
@@ -115,93 +122,93 @@
Inheritance diagram for abcg::OpenGLWindow:
-
+
[legend]
Collaboration diagram for abcg::OpenGLWindow:
-
+
[legend]
- - - + + - - + + - - + + - - + + - + - - + + - - - - - - - + + + + + + + - - + + - - + +

+

Public Member Functions

OpenGLSettings const & getOpenGLSettings () const noexcept
 Returns the configuration settings of the OpenGL context. More...
OpenGLSettings const & getOpenGLSettings () const noexcept
 Returns the configuration settings of the OpenGL context.
 
void setOpenGLSettings (OpenGLSettings const &openGLSettings) noexcept
 Sets the configuration settings that will be used for creating the OpenGL context. More...
void setOpenGLSettings (OpenGLSettings const &openGLSettings) noexcept
 Sets the configuration settings that will be used for creating the OpenGL context.
 
void saveScreenshotPNG (std::string_view filename) const
 Takes a snapshot of the screen and saves it to a file. More...
void saveScreenshotPNG (std::string_view filename) const
 Takes a snapshot of the screen and saves it to a file.
 
- Public Member Functions inherited from abcg::Window
 Window ()=default
 Default constructor. More...
 Window ()=default
 Default constructor.
 
 Window (Window const &)=delete
 Window (Window const &)=delete
 
 Window (Window &&)=default
 Default move constructor. More...
 Window (Window &&)=default
 Default move constructor.
 
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment. More...
 
virtual ~Window ()=default
 Default destructor. More...
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment.
 
virtual ~Window ()=default
 Default destructor.
 
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window. More...
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window.
 
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window. More...
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window.
 
- - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

+

Protected Member Functions

virtual void onEvent (SDL_Event const &event)
 Custom event handler. More...
virtual void onEvent (SDL_Event const &event)
 Custom event handler.
 
virtual void onCreate ()
 Custom handler for OpenGL initialization tasks to be performed before rendering the scene. More...
virtual void onCreate ()
 Custom handler for OpenGL initialization tasks to be performed before rendering the scene.
 
virtual void onPaint ()
 Custom handler for rendering the OpenGL scene. More...
virtual void onPaint ()
 Custom handler for rendering the OpenGL scene.
 
virtual void onPaintUI ()
 Custom handler for rendering Dear ImGUI controls. More...
virtual void onPaintUI ()
 Custom handler for rendering Dear ImGUI controls.
 
virtual void onResize (glm::ivec2 const &size)
 Custom handler for window resizing events. More...
virtual void onResize (glm::ivec2 const &size)
 Custom handler for window resizing events.
 
virtual void onUpdate ()
 Custom handler called for each frame before painting. More...
virtual void onUpdate ()
 Custom handler called for each frame before painting.
 
virtual void onDestroy ()
 Custom handler for cleaning up OpenGL resources. More...
virtual void onDestroy ()
 Custom handler for cleaning up OpenGL resources.
 
- Protected Member Functions inherited from abcg::Window
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame. More...
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame.
 
double getElapsedTime () const
 Returns the time that have passed since the window was created. More...
double getElapsedTime () const
 Returns the time that have passed since the window was created.
 
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window. More...
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window.
 
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off. More...
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off.
 
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode. More...
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode.
 

Detailed Description

@@ -222,8 +229,8 @@ abcg::OpenGLWindow::onDestroy for cleaning up OpenGL resources.
Remarks
Objects of this type cannot be copied or copy-constructed.

Member Function Documentation

- -

◆ getOpenGLSettings()

+ +

◆ getOpenGLSettings()

@@ -250,8 +257,8 @@

-

◆ onCreate()

+ +

◆ onCreate()

@@ -279,8 +286,8 @@

-

◆ onDestroy()

+ +

◆ onDestroy()

@@ -308,8 +315,8 @@

-

◆ onEvent()

+ +

◆ onEvent()

@@ -344,8 +351,8 @@

-

◆ onPaint()

+ +

◆ onPaint()

@@ -374,8 +381,8 @@

-

◆ onPaintUI()

+ +

◆ onPaintUI()

@@ -404,8 +411,8 @@

-

◆ onResize()

+ +

◆ onResize()

@@ -440,8 +447,8 @@

-

◆ onUpdate()

+ +

◆ onUpdate()

@@ -469,8 +476,8 @@

-

◆ saveScreenshotPNG()

+ +

◆ saveScreenshotPNG()

@@ -495,8 +502,8 @@

-

◆ setOpenGLSettings()

+ +

◆ setOpenGLSettings()

@@ -534,7 +541,7 @@

diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.map b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.map index 931febd7c..5da7ee1c8 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.md5 b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.md5 index b942ac670..9c6aa4ffe 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.md5 @@ -1 +1 @@ -4893b5c7007fa10bb64037cf3ee394aa \ No newline at end of file +782ca33d294cb2e4869e9af7d0812889 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.svg b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.svg index e27000268..9e5678524 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__coll__graph.svg @@ -4,33 +4,36 @@ - - + + abcg::OpenGLWindow - + Node1 - - -abcg::OpenGLWindow + + +abcg::OpenGLWindow - + Node2 - - -abcg::Window + + +abcg::Window - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.map b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.map index 931febd7c..5da7ee1c8 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.md5 index b942ac670..9c6aa4ffe 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.md5 @@ -1 +1 @@ -4893b5c7007fa10bb64037cf3ee394aa \ No newline at end of file +782ca33d294cb2e4869e9af7d0812889 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.svg b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.svg index e27000268..9e5678524 100644 --- a/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1OpenGLWindow__inherit__graph.svg @@ -4,33 +4,36 @@ - - + + abcg::OpenGLWindow - + Node1 - - -abcg::OpenGLWindow + + +abcg::OpenGLWindow - + Node2 - - -abcg::Window + + +abcg::Window - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1RuntimeError-members.html b/abcg/doc/html/classabcg_1_1RuntimeError-members.html index 83f2aaf3d..5edf634a8 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError-members.html +++ b/abcg/doc/html/classabcg_1_1RuntimeError-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::RuntimeError Member List
+
abcg::RuntimeError Member List

This is the complete list of members for abcg::RuntimeError, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
RuntimeError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::RuntimeErrorexplicit
RuntimeError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::RuntimeErrorexplicit
what() const noexcept overrideabcg::Exception

diff --git a/abcg/doc/html/classabcg_1_1RuntimeError.html b/abcg/doc/html/classabcg_1_1RuntimeError.html index 280b505df..0835fabf5 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError.html +++ b/abcg/doc/html/classabcg_1_1RuntimeError.html @@ -5,7 +5,7 @@ - + ABCg: abcg::RuntimeError Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::RuntimeError Class Reference
+
abcg::RuntimeError Class Reference
@@ -114,25 +121,25 @@
Inheritance diagram for abcg::RuntimeError:
-
+
[legend]
Collaboration diagram for abcg::RuntimeError:
-
+
[legend]
- - - + + - - + + - - + +

+

Public Member Functions

 RuntimeError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::RuntimeError object. More...
 RuntimeError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::RuntimeError object.
 
- Public Member Functions inherited from abcg::Exception
 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

@@ -140,8 +147,8 @@

This is used for throwing exceptions for errors not related to OpenGL, SDL, or SDL_image.

The explanatory error message is appended with source location information.

Constructor & Destructor Documentation

- -

◆ RuntimeError()

+ +

◆ RuntimeError()

@@ -196,7 +203,7 @@

diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.map b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.map index f46f3e15b..d96c15e34 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.md5 b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.md5 index 222a7c387..ebb1a8433 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.md5 @@ -1 +1 @@ -53b5ae16c82a18a4ea6a834610e4bbf9 \ No newline at end of file +b2a0e5f4a84a56a1f5249fd395ace17b \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.svg b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.svg index 569cfbaec..cb29702e1 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1RuntimeError__coll__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::RuntimeError - + Node1 - - -abcg::RuntimeError + + +abcg::RuntimeError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.map b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.map index f46f3e15b..d96c15e34 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.md5 index 222a7c387..ebb1a8433 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.md5 @@ -1 +1 @@ -53b5ae16c82a18a4ea6a834610e4bbf9 \ No newline at end of file +b2a0e5f4a84a56a1f5249fd395ace17b \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.svg b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.svg index 569cfbaec..cb29702e1 100644 --- a/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1RuntimeError__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::RuntimeError - + Node1 - - -abcg::RuntimeError + + +abcg::RuntimeError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLError-members.html b/abcg/doc/html/classabcg_1_1SDLError-members.html index 6ae22ca04..575e8ca0a 100644 --- a/abcg/doc/html/classabcg_1_1SDLError-members.html +++ b/abcg/doc/html/classabcg_1_1SDLError-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::SDLError Member List
+
abcg::SDLError Member List

This is the complete list of members for abcg::SDLError, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
SDLError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::SDLErrorexplicit
SDLError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::SDLErrorexplicit
what() const noexcept overrideabcg::Exception

diff --git a/abcg/doc/html/classabcg_1_1SDLError.html b/abcg/doc/html/classabcg_1_1SDLError.html index f79ecd1cc..9e0521d45 100644 --- a/abcg/doc/html/classabcg_1_1SDLError.html +++ b/abcg/doc/html/classabcg_1_1SDLError.html @@ -5,7 +5,7 @@ - + ABCg: abcg::SDLError Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::SDLError Class Reference
+
abcg::SDLError Class Reference
@@ -114,25 +121,25 @@
Inheritance diagram for abcg::SDLError:
-
+
[legend]
Collaboration diagram for abcg::SDLError:
-
+
[legend]
- - - + + - - + + - - + +

+

Public Member Functions

 SDLError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::SDLError object. More...
 SDLError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::SDLError object.
 
- Public Member Functions inherited from abcg::Exception
 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

@@ -140,8 +147,8 @@

This is used for throwing exceptions for SDL errors that can be checked with SDL_GetError.

The explanatory error message is appended with source location information, and the SDL error message.

Constructor & Destructor Documentation

- -

◆ SDLError()

+ +

◆ SDLError()

@@ -196,7 +203,7 @@

diff --git a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.map b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.map index d09a43b30..3f14b4d9e 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.md5 b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.md5 index bff4f9f75..57eb44389 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.md5 @@ -1 +1 @@ -43b5fbce3b71b0ce613e66294a8b6968 \ No newline at end of file +e56aaccfe3d9a3c80ae0f8d6f17a9bfe \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.svg b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.svg index fe603c256..fec080220 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1SDLError__coll__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::SDLError - + Node1 - - -abcg::SDLError + + +abcg::SDLError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.map b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.map index d09a43b30..3f14b4d9e 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.md5 index bff4f9f75..57eb44389 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.md5 @@ -1 +1 @@ -43b5fbce3b71b0ce613e66294a8b6968 \ No newline at end of file +e56aaccfe3d9a3c80ae0f8d6f17a9bfe \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.svg b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.svg index fe603c256..fec080220 100644 --- a/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1SDLError__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::SDLError - + Node1 - - -abcg::SDLError + + +abcg::SDLError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLImageError-members.html b/abcg/doc/html/classabcg_1_1SDLImageError-members.html index b10dee1e6..463188e28 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError-members.html +++ b/abcg/doc/html/classabcg_1_1SDLImageError-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::SDLImageError Member List
+
abcg::SDLImageError Member List

This is the complete list of members for abcg::SDLImageError, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
SDLImageError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::SDLImageErrorexplicit
SDLImageError(std::string_view what, source_location const &sourceLocation=source_location::current())abcg::SDLImageErrorexplicit
what() const noexcept overrideabcg::Exception

diff --git a/abcg/doc/html/classabcg_1_1SDLImageError.html b/abcg/doc/html/classabcg_1_1SDLImageError.html index 62a36671c..bbd47a012 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError.html +++ b/abcg/doc/html/classabcg_1_1SDLImageError.html @@ -5,7 +5,7 @@ - + ABCg: abcg::SDLImageError Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::SDLImageError Class Reference
+
abcg::SDLImageError Class Reference
@@ -114,25 +121,25 @@
Inheritance diagram for abcg::SDLImageError:
-
+
[legend]
Collaboration diagram for abcg::SDLImageError:
-
+
[legend]
- - - + + - - + + - - + +

+

Public Member Functions

 SDLImageError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::SDLError object. More...
 SDLImageError (std::string_view what, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::SDLError object.
 
- Public Member Functions inherited from abcg::Exception
 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

@@ -140,8 +147,8 @@

This is used for throwing exceptions for SDL errors that can be checked with IMG_GetError.

The explanatory error message is appended with source location information, and the SDL_image error message.

Constructor & Destructor Documentation

- -

◆ SDLImageError()

+ +

◆ SDLImageError()

@@ -196,7 +203,7 @@

diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.map b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.map index 1b0337c88..827da5b4c 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.md5 b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.md5 index 076f346e9..945db343d 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.md5 @@ -1 +1 @@ -533f6a270c3714f71d2a24f63029352f \ No newline at end of file +96abbef202e5c325807e990b9641bbe8 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.svg b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.svg index 5c81babb9..5f73eb618 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1SDLImageError__coll__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::SDLImageError - + Node1 - - -abcg::SDLImageError + + +abcg::SDLImageError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.map b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.map index 1b0337c88..827da5b4c 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.md5 index 076f346e9..945db343d 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.md5 @@ -1 +1 @@ -533f6a270c3714f71d2a24f63029352f \ No newline at end of file +96abbef202e5c325807e990b9641bbe8 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.svg b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.svg index 5c81babb9..5f73eb618 100644 --- a/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1SDLImageError__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::SDLImageError - + Node1 - - -abcg::SDLImageError + + +abcg::SDLImageError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1Timer-members.html b/abcg/doc/html/classabcg_1_1Timer-members.html index ae4cfdace..100f7306d 100644 --- a/abcg/doc/html/classabcg_1_1Timer-members.html +++ b/abcg/doc/html/classabcg_1_1Timer-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,27 +94,33 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Timer Member List
+
abcg::Timer Member List

This is the complete list of members for abcg::Timer, including all inherited members.

- +
elapsed() constabcg::Timer
restart()abcg::Timer
restart()abcg::Timer
diff --git a/abcg/doc/html/classabcg_1_1Timer.html b/abcg/doc/html/classabcg_1_1Timer.html index a8a3d39f5..4556e8d57 100644 --- a/abcg/doc/html/classabcg_1_1Timer.html +++ b/abcg/doc/html/classabcg_1_1Timer.html @@ -5,7 +5,7 @@ - + ABCg: abcg::Timer Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Timer Class Reference
+
abcg::Timer Class Reference
@@ -112,20 +119,20 @@

#include <abcgTimer.hpp>

- - - + + - - + +

+

Public Member Functions

double elapsed () const
 Returns how much time has elapsed since the timer has started. More...
double elapsed () const
 Returns how much time has elapsed since the timer has started.
 
double restart ()
 Restarts the timer and returns the last elapsed time. More...
double restart ()
 Restarts the timer and returns the last elapsed time.
 

Detailed Description

Represents a timer based on the monotonic clock std::chrono::steady_clock.

Member Function Documentation

- -

◆ elapsed()

+ +

◆ elapsed()

@@ -144,8 +151,8 @@

-

◆ restart()

+ +

◆ restart()

@@ -174,7 +181,7 @@

    - +

diff --git a/abcg/doc/html/classabcg_1_1TrackBall-members.html b/abcg/doc/html/classabcg_1_1TrackBall-members.html index 80d7d507a..59866686b 100644 --- a/abcg/doc/html/classabcg_1_1TrackBall-members.html +++ b/abcg/doc/html/classabcg_1_1TrackBall-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,32 +94,38 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::TrackBall Member List
+
abcg::TrackBall Member List

This is the complete list of members for abcg::TrackBall, including all inherited members.

- + - + - +
getRotation() constabcg::TrackBall
mouseMove(glm::ivec2 const &position)abcg::TrackBall
mouseMove(glm::ivec2 const &position)abcg::TrackBall
mousePress(glm::ivec2 const &position)abcg::TrackBall
mouseRelease(glm::ivec2 const &position)abcg::TrackBall
mouseRelease(glm::ivec2 const &position)abcg::TrackBall
resizeViewport(glm::ivec2 const &size) noexceptabcg::TrackBall
setAxis(glm::vec3 axis) noexceptabcg::TrackBall
setAxis(glm::vec3 axis) noexceptabcg::TrackBall
setVelocity(float velocity) noexceptabcg::TrackBall
diff --git a/abcg/doc/html/classabcg_1_1TrackBall.html b/abcg/doc/html/classabcg_1_1TrackBall.html index 8738d59d7..11a2313b5 100644 --- a/abcg/doc/html/classabcg_1_1TrackBall.html +++ b/abcg/doc/html/classabcg_1_1TrackBall.html @@ -5,7 +5,7 @@ - + ABCg: abcg::TrackBall Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@ - + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::TrackBall Class Reference
+
abcg::TrackBall Class Reference
@@ -112,35 +119,35 @@

#include <abcgTrackball.hpp>

- - - + + - - + + - - + + - - + + - - + + - - + + - - + +

+

Public Member Functions

void mouseMove (glm::ivec2 const &position)
 Function to be called on a mouse move event. More...
void mouseMove (glm::ivec2 const &position)
 Function to be called on a mouse move event.
 
void mousePress (glm::ivec2 const &position)
 Function to be called on a mouse press event. More...
void mousePress (glm::ivec2 const &position)
 Function to be called on a mouse press event.
 
void mouseRelease (glm::ivec2 const &position)
 Function to be called on a mouse release event. More...
void mouseRelease (glm::ivec2 const &position)
 Function to be called on a mouse release event.
 
void resizeViewport (glm::ivec2 const &size) noexcept
 Function to be called when the window is resized. More...
void resizeViewport (glm::ivec2 const &size) noexcept
 Function to be called when the window is resized.
 
glm::quat getRotation () const
 Returns the current trackball rotation as a quaternion. More...
glm::quat getRotation () const
 Returns the current trackball rotation as a quaternion.
 
void setAxis (glm::vec3 axis) noexcept
 Sets the trackball's axis of rotation. More...
void setAxis (glm::vec3 axis) noexcept
 Sets the trackball's axis of rotation.
 
void setVelocity (float velocity) noexcept
 Sets the trackball's rotation velocity. More...
void setVelocity (float velocity) noexcept
 Sets the trackball's rotation velocity.
 

Detailed Description

Manages a virtual trackball.

Member Function Documentation

- -

◆ getRotation()

+ +

◆ getRotation()

@@ -159,8 +166,8 @@

-

◆ mouseMove()

+ +

◆ mouseMove()

@@ -185,8 +192,8 @@

-

◆ mousePress()

+ +

◆ mousePress()

@@ -211,8 +218,8 @@

-

◆ mouseRelease()

+ +

◆ mouseRelease()

@@ -237,8 +244,8 @@

-

◆ resizeViewport()

+ +

◆ resizeViewport()

@@ -271,8 +278,8 @@

-

◆ setAxis()

+ +

◆ setAxis()

@@ -306,8 +313,8 @@

-

◆ setVelocity()

+ +

◆ setVelocity()

@@ -351,7 +358,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanBuffer-members.html b/abcg/doc/html/classabcg_1_1VulkanBuffer-members.html index c2baa8a63..904d8d594 100644 --- a/abcg/doc/html/classabcg_1_1VulkanBuffer-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanBuffer-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,30 +94,36 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanBuffer Member List
+
abcg::VulkanBuffer Member List

This is the complete list of members for abcg::VulkanBuffer, including all inherited members.

- + - +
create(VulkanDevice const &device, VulkanBufferCreateInfo const &createInfo)abcg::VulkanBuffer
destroy()abcg::VulkanBuffer
destroy()abcg::VulkanBuffer
getDeviceMemory() const noexceptabcg::VulkanBuffer
loadData(gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)abcg::VulkanBuffer
loadData(gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)abcg::VulkanBuffer
operator vk::Buffer const &() const noexceptabcg::VulkanBufferexplicit

diff --git a/abcg/doc/html/classabcg_1_1VulkanBuffer.html b/abcg/doc/html/classabcg_1_1VulkanBuffer.html index fcaa9624c..6004be2c7 100644 --- a/abcg/doc/html/classabcg_1_1VulkanBuffer.html +++ b/abcg/doc/html/classabcg_1_1VulkanBuffer.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanBuffer Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanBuffer Class Reference
+
abcg::VulkanBuffer Class Reference
@@ -112,28 +119,28 @@

#include <abcgVulkanBuffer.hpp>

- - + - + - - + + - - + + - - + +

+

Public Member Functions

void create (VulkanDevice const &device, VulkanBufferCreateInfo const &createInfo)
void create (VulkanDevice const &device, VulkanBufferCreateInfo const &createInfo)
 
void destroy ()
void destroy ()
 
void loadData (gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)
 Loads data to the buffer. More...
void loadData (gsl::not_null< void const * > data, vk::DeviceSize size, vk::DeviceSize offset=0UL)
 Loads data to the buffer.
 
 operator vk::Buffer const & () const noexcept
 Conversion to vk::Buffer. More...
 operator vk::Buffer const & () const noexcept
 Conversion to vk::Buffer.
 
vk::DeviceMemory const & getDeviceMemory () const noexcept
 Returns the opaque handle to the device memory object associated with the buffer. More...
vk::DeviceMemory const & getDeviceMemory () const noexcept
 Returns the opaque handle to the device memory object associated with the buffer.
 

Detailed Description

A class for representing a Vulkan buffer.

This class provides helper functions for creating and managing vk::Buffer objects.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -160,8 +167,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -177,8 +184,8 @@

-

◆ getDeviceMemory()

+ +

◆ getDeviceMemory()

@@ -205,8 +212,8 @@

-

◆ loadData()

+ +

◆ loadData()

@@ -249,8 +256,8 @@

-

◆ operator vk::Buffer const &()

+ +

◆ operator vk::Buffer const &()

@@ -286,7 +293,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanDevice-members.html b/abcg/doc/html/classabcg_1_1VulkanDevice-members.html index 25d76becd..07853a0a5 100644 --- a/abcg/doc/html/classabcg_1_1VulkanDevice-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanDevice-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,32 +94,38 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanDevice Member List
+
abcg::VulkanDevice Member List

This is the complete list of members for abcg::VulkanDevice, including all inherited members.

- + - + - +
create(VulkanPhysicalDevice const &physicalDevice, std::vector< char const * > const &extensions={})abcg::VulkanDevice
destroy()abcg::VulkanDevice
destroy()abcg::VulkanDevice
getCommandPools() const noexceptabcg::VulkanDevice
getPhysicalDevice() const noexceptabcg::VulkanDevice
getPhysicalDevice() const noexceptabcg::VulkanDevice
getQueues() const noexceptabcg::VulkanDevice
operator vk::Device const &() const noexceptabcg::VulkanDeviceexplicit
operator vk::Device const &() const noexceptabcg::VulkanDeviceexplicit
withCommandBuffer(std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun, vk::QueueFlagBits queueFlag=vk::QueueFlagBits::eGraphics, vk::CommandBufferLevel level=vk::CommandBufferLevel::ePrimary) constabcg::VulkanDevice

diff --git a/abcg/doc/html/classabcg_1_1VulkanDevice.html b/abcg/doc/html/classabcg_1_1VulkanDevice.html index d40a1e02e..51d4ec853 100644 --- a/abcg/doc/html/classabcg_1_1VulkanDevice.html +++ b/abcg/doc/html/classabcg_1_1VulkanDevice.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanDevice Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanDevice Class Reference
+
abcg::VulkanDevice Class Reference
@@ -112,34 +119,34 @@

#include <abcgVulkanDevice.hpp>

- - + - + - - + + - - + + - - + + - - + + - - + +

+

Public Member Functions

void create (VulkanPhysicalDevice const &physicalDevice, std::vector< char const * > const &extensions={})
void create (VulkanPhysicalDevice const &physicalDevice, std::vector< char const * > const &extensions={})
 
void destroy ()
void destroy ()
 
 operator vk::Device const & () const noexcept
 Conversion to vk::Device. More...
 operator vk::Device const & () const noexcept
 Conversion to vk::Device.
 
VulkanPhysicalDevice const & getPhysicalDevice () const noexcept
 Access to abcg::VulkanPhysicalDevice. More...
VulkanPhysicalDevice const & getPhysicalDevice () const noexcept
 Access to abcg::VulkanPhysicalDevice.
 
VulkanQueues const & getQueues () const noexcept
 Returns the queues associated with this device. More...
VulkanQueues const & getQueues () const noexcept
 Returns the queues associated with this device.
 
VulkanCommandPools const & getCommandPools () const noexcept
 Returns the command pools associated with this device. More...
VulkanCommandPools const & getCommandPools () const noexcept
 Returns the command pools associated with this device.
 
void withCommandBuffer (std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun, vk::QueueFlagBits queueFlag=vk::QueueFlagBits::eGraphics, vk::CommandBufferLevel level=vk::CommandBufferLevel::ePrimary) const
 Allocates and creates a command buffer to be immediately submitted and released. More...
void withCommandBuffer (std::function< void(vk::CommandBuffer const &commandBuffer)> const &fun, vk::QueueFlagBits queueFlag=vk::QueueFlagBits::eGraphics, vk::CommandBufferLevel level=vk::CommandBufferLevel::ePrimary) const
 Allocates and creates a command buffer to be immediately submitted and released.
 

Detailed Description

A class for representing a Vulkan logical device and related resources.

This class creates and manages the Vulkan logical device, queues, descriptor pool, and command pools.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -166,8 +173,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -183,8 +190,8 @@

-

◆ getCommandPools()

+ +

◆ getCommandPools()

@@ -211,8 +218,8 @@

-

◆ getPhysicalDevice()

+ +

◆ getPhysicalDevice()

@@ -239,8 +246,8 @@

-

◆ getQueues()

+ +

◆ getQueues()

@@ -267,8 +274,8 @@

-

◆ operator vk::Device const &()

+ +

◆ operator vk::Device const &()

@@ -294,8 +301,8 @@

-

◆ withCommandBuffer()

+ +

◆ withCommandBuffer()

@@ -348,7 +355,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanError-members.html b/abcg/doc/html/classabcg_1_1VulkanError-members.html index d966fe435..21131ba6f 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanError-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanError Member List
+
abcg::VulkanError Member List

This is the complete list of members for abcg::VulkanError, including all inherited members.

- +
Exception(std::string_view what)abcg::Exceptionexplicit
VulkanError(VkResult errorCode, source_location const &sourceLocation=source_location::current())abcg::VulkanErrorexplicit
VulkanError(VkResult errorCode, source_location const &sourceLocation=source_location::current())abcg::VulkanErrorexplicit
what() const noexcept overrideabcg::Exception

diff --git a/abcg/doc/html/classabcg_1_1VulkanError.html b/abcg/doc/html/classabcg_1_1VulkanError.html index ac3d8d335..da67489f9 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError.html +++ b/abcg/doc/html/classabcg_1_1VulkanError.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanError Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanError Class Reference
+
abcg::VulkanError Class Reference
@@ -114,25 +121,25 @@
Inheritance diagram for abcg::VulkanError:
-
+
[legend]
Collaboration diagram for abcg::VulkanError:
-
+
[legend]
- - - + + - - + + - - + +

+

Public Member Functions

 VulkanError (VkResult errorCode, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::VulkanError object. More...
 VulkanError (VkResult errorCode, source_location const &sourceLocation=source_location::current())
 Constructs an abcg::VulkanError object.
 
- Public Member Functions inherited from abcg::Exception
 Exception (std::string_view what)
 Constructs an abcg::Exception object. More...
 Exception (std::string_view what)
 Constructs an abcg::Exception object.
 
char const * what () const noexcept override
 Returns the explanatory string. More...
char const * what () const noexcept override
 Returns the explanatory string.
 

Detailed Description

@@ -140,8 +147,8 @@

This is used for throwing exceptions for Vulkan runtime errors.

The explanatory error message is appended with source location information, and descriptive messages regarding the return codes.

Constructor & Destructor Documentation

- -

◆ VulkanError()

+ +

◆ VulkanError()

@@ -196,7 +203,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.map b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.map index 388ff7487..009ede8c8 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.md5 b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.md5 index c350b5e09..3c29fa475 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.md5 @@ -1 +1 @@ -45f8e7948eb9eb7c221f3b5d66121a28 \ No newline at end of file +6826a3cd2b2ccecea163fbd9ad342d9b \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.svg b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.svg index 3c3022f7d..67303ae2f 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1VulkanError__coll__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::VulkanError - + Node1 - - -abcg::VulkanError + + +abcg::VulkanError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.map b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.map index 388ff7487..009ede8c8 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.md5 index c350b5e09..3c29fa475 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.md5 @@ -1 +1 @@ -45f8e7948eb9eb7c221f3b5d66121a28 \ No newline at end of file +6826a3cd2b2ccecea163fbd9ad342d9b \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.svg b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.svg index 3c3022f7d..67303ae2f 100644 --- a/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1VulkanError__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::VulkanError - + Node1 - - -abcg::VulkanError + + +abcg::VulkanError - + Node2 - - -abcg::Exception + + +abcg::Exception - + Node2->Node1 - - + + + + + - + Node3 - - -std::exception + + +std::exception - + Node3->Node2 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanImage-members.html b/abcg/doc/html/classabcg_1_1VulkanImage-members.html index 9266b9c8e..1d1d8f980 100644 --- a/abcg/doc/html/classabcg_1_1VulkanImage-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanImage-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,33 +94,39 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanImage Member List
+
abcg::VulkanImage Member List

This is the complete list of members for abcg::VulkanImage, including all inherited members.

- + - + - + - +
create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)abcg::VulkanImage
create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)abcg::VulkanImage
create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)abcg::VulkanImage
destroy()abcg::VulkanImage
getDescriptorImageInfo() const noexceptabcg::VulkanImage
getDescriptorImageInfo() const noexceptabcg::VulkanImage
getDeviceMemory() const noexceptabcg::VulkanImage
getMipLevels() const noexceptabcg::VulkanImage
getMipLevels() const noexceptabcg::VulkanImage
getView() const noexceptabcg::VulkanImage
operator vk::Image const &() const noexceptabcg::VulkanImageexplicit
operator vk::Image const &() const noexceptabcg::VulkanImageexplicit

diff --git a/abcg/doc/html/classabcg_1_1VulkanImage.html b/abcg/doc/html/classabcg_1_1VulkanImage.html index 0a7384563..3fefa0949 100644 --- a/abcg/doc/html/classabcg_1_1VulkanImage.html +++ b/abcg/doc/html/classabcg_1_1VulkanImage.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanImage Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanImage Class Reference
+
abcg::VulkanImage Class Reference
@@ -112,36 +119,36 @@

#include <abcgVulkanImage.hpp>

- - + - + - + - - + + - - + + - - + + - - + + - - + +

+

Public Member Functions

void create (VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)
void create (VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)
 
void create (VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)
void create (VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)
 
void destroy ()
void destroy ()
 
 operator vk::Image const & () const noexcept
 Conversion to vk::Image. More...
 operator vk::Image const & () const noexcept
 Conversion to vk::Image.
 
vk::DeviceMemory const & getDeviceMemory () const noexcept
 Returns the opaque handle to the device memory object associated with this image. More...
vk::DeviceMemory const & getDeviceMemory () const noexcept
 Returns the opaque handle to the device memory object associated with this image.
 
vk::ImageView const & getView () const noexcept
 Returns the opaque handle to the image view object associated with this image. More...
vk::ImageView const & getView () const noexcept
 Returns the opaque handle to the image view object associated with this image.
 
vk::DescriptorImageInfo const & getDescriptorImageInfo () const noexcept
 Returns the descriptor image information associated with this image. More...
vk::DescriptorImageInfo const & getDescriptorImageInfo () const noexcept
 Returns the descriptor image information associated with this image.
 
uint32_t getMipLevels () const noexcept
 Returns the number of mipmap levels generated for this image. More...
uint32_t getMipLevels () const noexcept
 Returns the number of mipmap levels generated for this image.
 

Detailed Description

A class for representing a Vulkan image.

This class provides helper functions for creating and managing vk::Image objects.

Member Function Documentation

- -

◆ create() [1/2]

+ +

◆ create() [1/2]

@@ -174,8 +181,8 @@

-

◆ create() [2/2]

+ +

◆ create() [2/2]

@@ -202,8 +209,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -219,8 +226,8 @@

-

◆ getDescriptorImageInfo()

+ +

◆ getDescriptorImageInfo()

@@ -247,8 +254,8 @@

-

◆ getDeviceMemory()

+ +

◆ getDeviceMemory()

@@ -275,8 +282,8 @@

-

◆ getMipLevels()

+ +

◆ getMipLevels()

- -

◆ getView()

+ +

◆ getView()

@@ -332,8 +340,8 @@

-

◆ operator vk::Image const &()

+ +

◆ operator vk::Image const &()

@@ -369,7 +377,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanInstance-members.html b/abcg/doc/html/classabcg_1_1VulkanInstance-members.html index b52a3a90b..ed575c8cb 100644 --- a/abcg/doc/html/classabcg_1_1VulkanInstance-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanInstance-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,28 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanInstance Member List
+
abcg::VulkanInstance Member List

This is the complete list of members for abcg::VulkanInstance, including all inherited members.

- +
create(std::vector< char const * > const &layers={}, std::vector< char const * > const &extensions={}, std::string_view applicationName={})abcg::VulkanInstance
destroy()abcg::VulkanInstance
destroy()abcg::VulkanInstance
operator vk::Instance const &() const noexceptabcg::VulkanInstanceexplicit

diff --git a/abcg/doc/html/classabcg_1_1VulkanInstance.html b/abcg/doc/html/classabcg_1_1VulkanInstance.html index 5c8e187c5..aa6169dc3 100644 --- a/abcg/doc/html/classabcg_1_1VulkanInstance.html +++ b/abcg/doc/html/classabcg_1_1VulkanInstance.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanInstance Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanInstance Class Reference
+
abcg::VulkanInstance Class Reference
@@ -112,21 +119,21 @@

#include <abcgVulkanInstance.hpp>

- - + - + - - + +

+

Public Member Functions

void create (std::vector< char const * > const &layers={}, std::vector< char const * > const &extensions={}, std::string_view applicationName={})
void create (std::vector< char const * > const &layers={}, std::vector< char const * > const &extensions={}, std::string_view applicationName={})
 
void destroy ()
void destroy ()
 
 operator vk::Instance const & () const noexcept
 Conversion to vk::Instance. More...
 operator vk::Instance const & () const noexcept
 Conversion to vk::Instance.
 

Detailed Description

A class for representing a Vulkan instance.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -159,8 +166,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -176,8 +183,8 @@

-

◆ operator vk::Instance const &()

+ +

◆ operator vk::Instance const &()

@@ -213,7 +220,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice-members.html b/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice-members.html index e03dcf083..e64b2bd5c 100644 --- a/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,34 +94,40 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanPhysicalDevice Member List
+
abcg::VulkanPhysicalDevice Member List

This is the complete list of members for abcg::VulkanPhysicalDevice, including all inherited members.

- + - + - + - +
create(VulkanInstance const &instance, vk::SurfaceKHR const &surface, std::vector< char const * > const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)abcg::VulkanPhysicalDevice
destroy()abcg::VulkanPhysicalDevice
destroy()abcg::VulkanPhysicalDevice
findMemoryType(uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties) constabcg::VulkanPhysicalDevice
getFirstSupportedFormat(std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) constabcg::VulkanPhysicalDevice
getFirstSupportedFormat(std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) constabcg::VulkanPhysicalDevice
getInstance() const noexceptabcg::VulkanPhysicalDevice
getQueuesFamilies() const noexceptabcg::VulkanPhysicalDevice
getQueuesFamilies() const noexceptabcg::VulkanPhysicalDevice
getSampleCount() const noexceptabcg::VulkanPhysicalDevice
getSurfaceKHR() const noexceptabcg::VulkanPhysicalDevice
getSurfaceKHR() const noexceptabcg::VulkanPhysicalDevice
operator vk::PhysicalDevice const &() const noexceptabcg::VulkanPhysicalDeviceexplicit

diff --git a/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice.html b/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice.html index 2f5c9a976..c0347ab0d 100644 --- a/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice.html +++ b/abcg/doc/html/classabcg_1_1VulkanPhysicalDevice.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanPhysicalDevice Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanPhysicalDevice Class Reference
+
abcg::VulkanPhysicalDevice Class Reference
@@ -112,38 +119,38 @@

#include <abcgVulkanPhysicalDevice.hpp>

- - + - + - - + + - - + + - - + + - - + + - - + + - - + + - +

+

Public Member Functions

void create (VulkanInstance const &instance, vk::SurfaceKHR const &surface, std::vector< char const * > const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)
void create (VulkanInstance const &instance, vk::SurfaceKHR const &surface, std::vector< char const * > const &extensions={}, vk::SampleCountFlagBits sampleCount=vk::SampleCountFlagBits::e1, bool useSeparateTransferQueue=false)
 
void destroy ()
void destroy ()
 
 operator vk::PhysicalDevice const & () const noexcept
 Conversion to vk::PhysicalDevice. More...
 operator vk::PhysicalDevice const & () const noexcept
 Conversion to vk::PhysicalDevice.
 
std::optional< uint32_t > findMemoryType (uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties) const
 Finds a type of memory that meets the given requirements. More...
std::optional< uint32_t > findMemoryType (uint32_t memoryTypeBitsRequirement, vk::MemoryPropertyFlags requiredProperties) const
 Finds a type of memory that meets the given requirements.
 
VulkanInstance const & getInstance () const noexcept
 Access to abcg::VulkanInstance. More...
VulkanInstance const & getInstance () const noexcept
 Access to abcg::VulkanInstance.
 
VulkanQueuesFamilies const & getQueuesFamilies () const noexcept
 Access to queues families. More...
VulkanQueuesFamilies const & getQueuesFamilies () const noexcept
 Access to queues families.
 
vk::SurfaceKHR const & getSurfaceKHR () const noexcept
 Access to the surface. More...
vk::SurfaceKHR const & getSurfaceKHR () const noexcept
 Access to the surface.
 
vk::SampleCountFlagBits getSampleCount () const noexcept
 Access to number of samples. More...
vk::SampleCountFlagBits getSampleCount () const noexcept
 Access to number of samples.
 
std::optional< vk::Format > getFirstSupportedFormat (std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) const
std::optional< vk::Format > getFirstSupportedFormat (std::vector< vk::Format > const &candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features) const
 

Detailed Description

A class for representing a Vulkan physical device.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -188,8 +195,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -205,8 +212,8 @@

-

◆ findMemoryType()

+ +

◆ findMemoryType()

@@ -243,8 +250,8 @@

-

◆ getFirstSupportedFormat()

+ +

◆ getFirstSupportedFormat()

@@ -277,8 +284,8 @@

-

◆ getInstance()

+ +

◆ getInstance()

@@ -305,8 +312,8 @@

-

◆ getQueuesFamilies()

+ +

◆ getQueuesFamilies()

@@ -333,8 +340,8 @@

-

◆ getSampleCount()

+ +

◆ getSampleCount()

@@ -361,8 +368,8 @@

-

◆ getSurfaceKHR()

+ +

◆ getSurfaceKHR()

@@ -389,8 +396,8 @@

-

◆ operator vk::PhysicalDevice const &()

+ +

◆ operator vk::PhysicalDevice const &()

@@ -426,7 +433,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanPipeline-members.html b/abcg/doc/html/classabcg_1_1VulkanPipeline-members.html index 7c191db04..cc084217d 100644 --- a/abcg/doc/html/classabcg_1_1VulkanPipeline-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanPipeline-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,29 +94,35 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanPipeline Member List
+
abcg::VulkanPipeline Member List

This is the complete list of members for abcg::VulkanPipeline, including all inherited members.

- + - +
create(VulkanSwapchain const &swapchain, VulkanPipelineCreateInfo const &createInfo)abcg::VulkanPipeline
destroy()abcg::VulkanPipeline
destroy()abcg::VulkanPipeline
getLayout() const noexceptabcg::VulkanPipeline
operator vk::Pipeline const &() const noexceptabcg::VulkanPipelineexplicit
operator vk::Pipeline const &() const noexceptabcg::VulkanPipelineexplicit

diff --git a/abcg/doc/html/classabcg_1_1VulkanPipeline.html b/abcg/doc/html/classabcg_1_1VulkanPipeline.html index 59f8657e5..071c3847c 100644 --- a/abcg/doc/html/classabcg_1_1VulkanPipeline.html +++ b/abcg/doc/html/classabcg_1_1VulkanPipeline.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanPipeline Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanPipeline Class Reference
+
abcg::VulkanPipeline Class Reference
@@ -112,25 +119,25 @@

#include <abcgVulkanPipeline.hpp>

- - + - + - - + + - - + +

+

Public Member Functions

void create (VulkanSwapchain const &swapchain, VulkanPipelineCreateInfo const &createInfo)
void create (VulkanSwapchain const &swapchain, VulkanPipelineCreateInfo const &createInfo)
 
void destroy ()
void destroy ()
 
 operator vk::Pipeline const & () const noexcept
 Conversion to vk::Pipeline. More...
 operator vk::Pipeline const & () const noexcept
 Conversion to vk::Pipeline.
 
vk::PipelineLayout const & getLayout () const noexcept
 Access to vk::PipelineLayout. More...
vk::PipelineLayout const & getLayout () const noexcept
 Access to vk::PipelineLayout.
 

Detailed Description

A class for representing a Vulkan pipeline.

This class provides helper functions for creating and managing vk::Pipeline objects.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -157,8 +164,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -174,8 +181,8 @@

-

◆ getLayout()

+ +

◆ getLayout()

@@ -202,8 +209,8 @@

-

◆ operator vk::Pipeline const &()

+ +

◆ operator vk::Pipeline const &()

@@ -239,7 +246,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanShader-members.html b/abcg/doc/html/classabcg_1_1VulkanShader-members.html index 94c5ec9fc..59e14a153 100644 --- a/abcg/doc/html/classabcg_1_1VulkanShader-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanShader-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,29 +94,35 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanShader Member List
+
abcg::VulkanShader Member List

This is the complete list of members for abcg::VulkanShader, including all inherited members.

- + - +
create(VulkanDevice const &device, ShaderSource const &pathOrSource)abcg::VulkanShader
destroy()abcg::VulkanShader
destroy()abcg::VulkanShader
getModule() const noexceptabcg::VulkanShader
getStage() const noexceptabcg::VulkanShader
getStage() const noexceptabcg::VulkanShader

diff --git a/abcg/doc/html/classabcg_1_1VulkanShader.html b/abcg/doc/html/classabcg_1_1VulkanShader.html index 4369806dc..6d348661d 100644 --- a/abcg/doc/html/classabcg_1_1VulkanShader.html +++ b/abcg/doc/html/classabcg_1_1VulkanShader.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanShader Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,17 +94,23 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanShader Class Reference
+
abcg::VulkanShader Class Reference
@@ -112,27 +119,27 @@

#include <abcgVulkanShader.hpp>

- - - + + - - + + - - + + - - + +

+

Public Member Functions

void create (VulkanDevice const &device, ShaderSource const &pathOrSource)
 Compiles a GLSL shader to SPIR-V and creates its module. More...
void create (VulkanDevice const &device, ShaderSource const &pathOrSource)
 Compiles a GLSL shader to SPIR-V and creates its module.
 
void destroy ()
 Destroys the shader module. More...
void destroy ()
 Destroys the shader module.
 
vk::ShaderStageFlagBits const & getStage () const noexcept
 Returns the shader stage bitmask. More...
vk::ShaderStageFlagBits const & getStage () const noexcept
 Returns the shader stage bitmask.
 
vk::ShaderModule const & getModule () const noexcept
 Returns the opaque handle to the shader module object. More...
vk::ShaderModule const & getModule () const noexcept
 Returns the opaque handle to the shader module object.
 

Detailed Description

A class for representing a Vulkan shader.

This class compiles a GLSL shader into a Vulkan SPIR-V shader and creates the corresponding vk::ShaderModule.

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -174,8 +181,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -193,8 +200,8 @@

-

◆ getModule()

+ +

◆ getModule()

@@ -221,8 +228,8 @@

-

◆ getStage()

+ +

◆ getStage()

@@ -259,7 +266,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanSwapchain-members.html b/abcg/doc/html/classabcg_1_1VulkanSwapchain-members.html index 9634426ae..7fe0602f9 100644 --- a/abcg/doc/html/classabcg_1_1VulkanSwapchain-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanSwapchain-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,38 +94,44 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanSwapchain Member List
+
abcg::VulkanSwapchain Member List

This is the complete list of members for abcg::VulkanSwapchain, including all inherited members.

- + - + - + - + - + - +
checkRebuild(VulkanSettings const &settings, glm::ivec2 const &windowSize)abcg::VulkanSwapchain
create(VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)abcg::VulkanSwapchain
create(VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)abcg::VulkanSwapchain
destroy()abcg::VulkanSwapchain
getCurrentFrame() const noexceptabcg::VulkanSwapchain
getCurrentFrame() const noexceptabcg::VulkanSwapchain
getDepthImage() const noexceptabcg::VulkanSwapchain
getDevice() const noexceptabcg::VulkanSwapchain
getDevice() const noexceptabcg::VulkanSwapchain
getExtent() const noexceptabcg::VulkanSwapchain
getFrames() const noexceptabcg::VulkanSwapchain
getFrames() const noexceptabcg::VulkanSwapchain
getMainRenderPass() const noexceptabcg::VulkanSwapchain
getUIRenderPass() const noexceptabcg::VulkanSwapchain
getUIRenderPass() const noexceptabcg::VulkanSwapchain
operator vk::SwapchainKHR const &() const noexceptabcg::VulkanSwapchainexplicit
present()abcg::VulkanSwapchain
present()abcg::VulkanSwapchain
render(std::function< void(VulkanFrame const &)> const &fun)abcg::VulkanSwapchain

diff --git a/abcg/doc/html/classabcg_1_1VulkanSwapchain.html b/abcg/doc/html/classabcg_1_1VulkanSwapchain.html index 8c47ef1ba..25d8092c1 100644 --- a/abcg/doc/html/classabcg_1_1VulkanSwapchain.html +++ b/abcg/doc/html/classabcg_1_1VulkanSwapchain.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanSwapchain Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanSwapchain Class Reference
+
abcg::VulkanSwapchain Class Reference
@@ -113,49 +120,49 @@

#include <abcgVulkanSwapchain.hpp>

- - + - + - + - + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

+

Public Member Functions

void create (VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)
void create (VulkanDevice const &device, VulkanSettings const &settings, glm::ivec2 const &windowSize)
 
void destroy ()
void destroy ()
 
void render (std::function< void(VulkanFrame const &)> const &fun)
void render (std::function< void(VulkanFrame const &)> const &fun)
 
void present ()
void present ()
 
bool checkRebuild (VulkanSettings const &settings, glm::ivec2 const &windowSize)
bool checkRebuild (VulkanSettings const &settings, glm::ivec2 const &windowSize)
 
 operator vk::SwapchainKHR const & () const noexcept
 Conversion to vk::SwapchainKHR. More...
 operator vk::SwapchainKHR const & () const noexcept
 Conversion to vk::SwapchainKHR.
 
VulkanDevice const & getDevice () const noexcept
 Access to abcg::VulkanDevice. More...
VulkanDevice const & getDevice () const noexcept
 Access to abcg::VulkanDevice.
 
std::vector< VulkanFrame > const & getFrames () const noexcept
 Returns the in-flight frames. More...
std::vector< VulkanFrame > const & getFrames () const noexcept
 Returns the in-flight frames.
 
VulkanFrame const & getCurrentFrame () const noexcept
 Returns the current in-flight frame. More...
VulkanFrame const & getCurrentFrame () const noexcept
 Returns the current in-flight frame.
 
vk::RenderPass const & getMainRenderPass () const noexcept
 Returns the main render pass. More...
vk::RenderPass const & getMainRenderPass () const noexcept
 Returns the main render pass.
 
vk::RenderPass const & getUIRenderPass () const noexcept
 Returns the UI render pass. More...
vk::RenderPass const & getUIRenderPass () const noexcept
 Returns the UI render pass.
 
vk::Extent2D const & getExtent () const noexcept
 Returns the swapchain extent. More...
vk::Extent2D const & getExtent () const noexcept
 Returns the swapchain extent.
 
VulkanImage const & getDepthImage () const noexcept
 Returns the depth image object. More...
VulkanImage const & getDepthImage () const noexcept
 Returns the depth image object.
 

Detailed Description

A class for representing a Vulkan swapchain.

This class creates and manages the list of image buffers and other resources that are used for presentation.

Member Function Documentation

- -

◆ checkRebuild()

+ +

◆ checkRebuild()

@@ -182,8 +189,8 @@

-

◆ create()

+ +

◆ create()

@@ -216,8 +223,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -233,8 +240,8 @@

-

◆ getCurrentFrame()

+ +

◆ getCurrentFrame()

@@ -261,8 +268,8 @@

-

◆ getDepthImage()

+ +

◆ getDepthImage()

@@ -289,8 +296,8 @@

-

◆ getDevice()

+ +

◆ getDevice()

@@ -317,8 +324,8 @@

-

◆ getExtent()

+ +

◆ getExtent()

@@ -345,8 +352,8 @@

-

◆ getFrames()

+ +

◆ getFrames()

@@ -373,8 +380,8 @@

-

◆ getMainRenderPass()

+ +

◆ getMainRenderPass()

@@ -401,8 +408,8 @@

-

◆ getUIRenderPass()

+ +

◆ getUIRenderPass()

@@ -429,8 +436,8 @@

-

◆ operator vk::SwapchainKHR const &()

+ +

◆ operator vk::SwapchainKHR const &()

@@ -456,8 +463,8 @@

-

◆ present()

+ +

◆ present()

@@ -473,8 +480,8 @@

-

◆ render()

+ +

◆ render()

@@ -501,7 +508,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow-members.html b/abcg/doc/html/classabcg_1_1VulkanWindow-members.html index 593f67cdc..9b56572e2 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow-members.html +++ b/abcg/doc/html/classabcg_1_1VulkanWindow-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,52 +94,58 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanWindow Member List
+
abcg::VulkanWindow Member List

This is the complete list of members for abcg::VulkanWindow, including all inherited members.

- + - + - + - + - + - + - + - + - - - + + + - + - + - +
createSDLWindow(SDL_WindowFlags extraFlags)abcg::Windowprotected
getDeltaTime() const noexceptabcg::Windowprotected
getDeltaTime() const noexceptabcg::Windowprotected
getDevice() const noexceptabcg::VulkanWindow
getElapsedTime() constabcg::Windowprotected
getElapsedTime() constabcg::Windowprotected
getPhysicalDevice() const noexceptabcg::VulkanWindow
getSDLWindow() const noexceptabcg::Windowprotected
getSDLWindow() const noexceptabcg::Windowprotected
getSDLWindowID() const noexceptabcg::Windowprotected
getSwapchain() const noexceptabcg::VulkanWindow
getSwapchain() const noexceptabcg::VulkanWindow
getVulkanSettings() const noexceptabcg::VulkanWindow
getWindowSettings() const noexceptabcg::Window
getWindowSettings() const noexceptabcg::Window
onCreate()abcg::VulkanWindowprotectedvirtual
onDestroy()abcg::VulkanWindowprotectedvirtual
onDestroy()abcg::VulkanWindowprotectedvirtual
onEvent(SDL_Event const &event)abcg::VulkanWindowprotectedvirtual
onPaint(VulkanFrame const &frame)abcg::VulkanWindowprotectedvirtual
onPaint(VulkanFrame const &frame)abcg::VulkanWindowprotectedvirtual
onPaintUI()abcg::VulkanWindowprotectedvirtual
onResize()abcg::VulkanWindowprotectedvirtual
onResize()abcg::VulkanWindowprotectedvirtual
onUpdate()abcg::VulkanWindowprotectedvirtual
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
setEnableResizingEventWatcher(bool enabled) noexceptabcg::Windowprotected
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
setEnableResizingEventWatcher(bool enabled) noexceptabcg::Windowprotected
setVulkanSettings(VulkanSettings const &vulkanSettings) noexceptabcg::VulkanWindow
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
toggleFullscreen()abcg::Windowprotected
Window()=defaultabcg::Window
Window()=defaultabcg::Window
Window(Window const &)=deleteabcg::Window
Window(Window &&)=defaultabcg::Window
Window(Window &&)=defaultabcg::Window
~Window()=defaultabcg::Windowvirtual

diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow.html b/abcg/doc/html/classabcg_1_1VulkanWindow.html index e48fd4152..8edae7fb4 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow.html +++ b/abcg/doc/html/classabcg_1_1VulkanWindow.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanWindow Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::VulkanWindow Class Reference
+
abcg::VulkanWindow Class Reference

@@ -115,99 +122,99 @@
Inheritance diagram for abcg::VulkanWindow:
-
+
[legend]
Collaboration diagram for abcg::VulkanWindow:
-
+
[legend]
- - - + + - - + + - - + + - - + + - - + + - - + + - + - - + + - - - - - - - + + + + + + + - - + + - - + +

+

Public Member Functions

VulkanSettings const & getVulkanSettings () const noexcept
 Returns the configuration settings of the Vulkan instance. More...
VulkanSettings const & getVulkanSettings () const noexcept
 Returns the configuration settings of the Vulkan instance.
 
void setVulkanSettings (VulkanSettings const &vulkanSettings) noexcept
 Sets the configuration settings that will be used for creating the Vulkan instance. More...
void setVulkanSettings (VulkanSettings const &vulkanSettings) noexcept
 Sets the configuration settings that will be used for creating the Vulkan instance.
 
VulkanPhysicalDevice const & getPhysicalDevice () const noexcept
 Access to abcg::VulkanPhysicalDevice. More...
VulkanPhysicalDevice const & getPhysicalDevice () const noexcept
 Access to abcg::VulkanPhysicalDevice.
 
VulkanDevice const & getDevice () const noexcept
 Access to abcg::VulkanDevice. More...
VulkanDevice const & getDevice () const noexcept
 Access to abcg::VulkanDevice.
 
VulkanSwapchain const & getSwapchain () const noexcept
 Access to abcg::VulkanSwapchain. More...
VulkanSwapchain const & getSwapchain () const noexcept
 Access to abcg::VulkanSwapchain.
 
- Public Member Functions inherited from abcg::Window
 Window ()=default
 Default constructor. More...
 Window ()=default
 Default constructor.
 
 Window (Window const &)=delete
 Window (Window const &)=delete
 
 Window (Window &&)=default
 Default move constructor. More...
 Window (Window &&)=default
 Default move constructor.
 
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment. More...
 
virtual ~Window ()=default
 Default destructor. More...
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment.
 
virtual ~Window ()=default
 Default destructor.
 
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window. More...
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window.
 
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window. More...
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window.
 
- - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

+

Protected Member Functions

virtual void onEvent (SDL_Event const &event)
 Custom event handler. More...
virtual void onEvent (SDL_Event const &event)
 Custom event handler.
 
virtual void onCreate ()
 Custom handler for Vulkan initialization tasks to be performed before rendering the scene. More...
virtual void onCreate ()
 Custom handler for Vulkan initialization tasks to be performed before rendering the scene.
 
virtual void onPaint (VulkanFrame const &frame)
 Custom handler for rendering the Vulkan scene. More...
virtual void onPaint (VulkanFrame const &frame)
 Custom handler for rendering the Vulkan scene.
 
virtual void onPaintUI ()
 Custom handler for rendering Dear ImGUI controls. More...
virtual void onPaintUI ()
 Custom handler for rendering Dear ImGUI controls.
 
virtual void onResize ()
 Custom handler for window resizing events. More...
virtual void onResize ()
 Custom handler for window resizing events.
 
virtual void onUpdate ()
 Custom handler called for each frame before painting. More...
virtual void onUpdate ()
 Custom handler called for each frame before painting.
 
virtual void onDestroy ()
 Custom handler for cleaning up Vulkan resources. More...
virtual void onDestroy ()
 Custom handler for cleaning up Vulkan resources.
 
- Protected Member Functions inherited from abcg::Window
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame. More...
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame.
 
double getElapsedTime () const
 Returns the time that have passed since the window was created. More...
double getElapsedTime () const
 Returns the time that have passed since the window was created.
 
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window. More...
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window.
 
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off. More...
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off.
 
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode. More...
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode.
 

Detailed Description

@@ -228,8 +235,8 @@ abcg::VulkanWindow::onDestroy for cleaning up Vulkan resources.
Remarks
Objects of this type cannot be copied or copy-constructed.

Member Function Documentation

- -

◆ getDevice()

+ +

◆ getDevice()

@@ -256,8 +263,8 @@

-

◆ getPhysicalDevice()

+ +

◆ getPhysicalDevice()

@@ -284,8 +291,8 @@

-

◆ getSwapchain()

+ +

◆ getSwapchain()

@@ -312,8 +319,8 @@

-

◆ getVulkanSettings()

+ +

◆ getVulkanSettings()

@@ -340,8 +347,8 @@

-

◆ onCreate()

+ +

◆ onCreate()

@@ -369,8 +376,8 @@

-

◆ onDestroy()

+ +

◆ onDestroy()

@@ -398,8 +405,8 @@

-

◆ onEvent()

+ +

◆ onEvent()

@@ -434,8 +441,8 @@

-

◆ onPaint()

+ +

◆ onPaint()

@@ -471,8 +478,8 @@

-

◆ onPaintUI()

+ +

◆ onPaintUI()

@@ -501,8 +508,8 @@

-

◆ onResize()

+ +

◆ onResize()

@@ -530,8 +537,8 @@

-

◆ onUpdate()

+ +

◆ onUpdate()

@@ -559,8 +566,8 @@

-

◆ setVulkanSettings()

+ +

◆ setVulkanSettings()

@@ -598,7 +605,7 @@

diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.map b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.map index 4359168b8..7cd4a385b 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.map +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.md5 b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.md5 index 463c778b6..9cad36596 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.md5 +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.md5 @@ -1 +1 @@ -ccfbd0d28d2532ef19c5fd682061762c \ No newline at end of file +197bd90f29783b0231b1ad9b8bec8d72 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.svg b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.svg index 4a0b1dc09..bfae21a7e 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.svg +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__coll__graph.svg @@ -4,33 +4,36 @@ - - + + abcg::VulkanWindow - + Node1 - - -abcg::VulkanWindow + + +abcg::VulkanWindow - + Node2 - - -abcg::Window + + +abcg::Window - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.map b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.map index 4359168b8..7cd4a385b 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.md5 index 463c778b6..9cad36596 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.md5 @@ -1 +1 @@ -ccfbd0d28d2532ef19c5fd682061762c \ No newline at end of file +197bd90f29783b0231b1ad9b8bec8d72 \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.svg b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.svg index 4a0b1dc09..bfae21a7e 100644 --- a/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1VulkanWindow__inherit__graph.svg @@ -4,33 +4,36 @@ - - + + abcg::VulkanWindow - + Node1 - - -abcg::VulkanWindow + + +abcg::VulkanWindow - + Node2 - - -abcg::Window + + +abcg::Window - + Node2->Node1 - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1Window-members.html b/abcg/doc/html/classabcg_1_1Window-members.html index 6889f66f2..557678c10 100644 --- a/abcg/doc/html/classabcg_1_1Window-members.html +++ b/abcg/doc/html/classabcg_1_1Window-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,46 +94,52 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Window Member List
+
abcg::Window Member List

This is the complete list of members for abcg::Window, including all inherited members.

- + - + - + - + - - - + + + - + - + - + - +
create()=0abcg::Windowprotectedpure virtual
createSDLWindow(SDL_WindowFlags extraFlags)abcg::Windowprotected
createSDLWindow(SDL_WindowFlags extraFlags)abcg::Windowprotected
destroy()=0abcg::Windowprotectedpure virtual
getDeltaTime() const noexceptabcg::Windowprotected
getDeltaTime() const noexceptabcg::Windowprotected
getElapsedTime() constabcg::Windowprotected
getSDLWindow() const noexceptabcg::Windowprotected
getSDLWindow() const noexceptabcg::Windowprotected
getSDLWindowID() const noexceptabcg::Windowprotected
getWindowSettings() const noexceptabcg::Window
getWindowSettings() const noexceptabcg::Window
getWindowSize() const =0abcg::Windowprotectedpure virtual
handleEvent(SDL_Event const &event)=0abcg::Windowprotectedpure virtual
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
handleEvent(SDL_Event const &event)=0abcg::Windowprotectedpure virtual
operator=(Window const &)=deleteabcg::Window
operator=(Window &&)=defaultabcg::Window
paint()=0abcg::Windowprotectedpure virtual
resizingEventWatcher(void *data, SDL_Event *event)abcg::Windowfriend
resizingEventWatcherabcg::Windowfriend
setEnableResizingEventWatcher(bool enabled) noexceptabcg::Windowprotected
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
setWindowSettings(WindowSettings const &windowSettings)abcg::Window
toggleFullscreen()abcg::Windowprotected
Window()=defaultabcg::Window
Window()=defaultabcg::Window
Window(Window const &)=deleteabcg::Window
Window(Window &&)=defaultabcg::Window
Window(Window &&)=defaultabcg::Window
~Window()=defaultabcg::Windowvirtual

diff --git a/abcg/doc/html/classabcg_1_1Window.html b/abcg/doc/html/classabcg_1_1Window.html index 86d147e7e..67b62319e 100644 --- a/abcg/doc/html/classabcg_1_1Window.html +++ b/abcg/doc/html/classabcg_1_1Window.html @@ -5,7 +5,7 @@ - + ABCg: abcg::Window Class Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
abcg::Window Class Referenceabstract
+
abcg::Window Class Referenceabstract

@@ -116,76 +123,76 @@
Inheritance diagram for abcg::Window:
-
+
[legend]
- - - + + - + - - + + - - - - - - - + + + + + + + - - + + - - + +

+

Public Member Functions

 Window ()=default
 Default constructor. More...
 Window ()=default
 Default constructor.
 
 Window (Window const &)=delete
 Window (Window const &)=delete
 
 Window (Window &&)=default
 Default move constructor. More...
 Window (Window &&)=default
 Default move constructor.
 
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment. More...
 
virtual ~Window ()=default
 Default destructor. More...
Windowoperator= (Window const &)=delete
 
Windowoperator= (Window &&)=default
 Default move assignment.
 
virtual ~Window ()=default
 Default destructor.
 
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window. More...
WindowSettings const & getWindowSettings () const noexcept
 Returns the current configuration settings of the window.
 
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window. More...
void setWindowSettings (WindowSettings const &windowSettings)
 Sets the configuration settings of the window.
 
- - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

+

Protected Member Functions

virtual void handleEvent (SDL_Event const &event)=0
 Custom event handler. More...
virtual void handleEvent (SDL_Event const &event)=0
 Custom event handler.
 
virtual void create ()=0
 Custom handler for window initialization tasks. More...
virtual void create ()=0
 Custom handler for window initialization tasks.
 
virtual void paint ()=0
 Custom handler for window repainting. More...
virtual void paint ()=0
 Custom handler for window repainting.
 
virtual void destroy ()=0
 Custom handler for window cleanup tasks. More...
virtual void destroy ()=0
 Custom handler for window cleanup tasks.
 
virtual glm::ivec2 getWindowSize () const =0
 Returns the size of the SDL window. More...
virtual glm::ivec2 getWindowSize () const =0
 Returns the size of the SDL window.
 
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame. More...
double getDeltaTime () const noexcept
 Returns the time that have passed since the last frame.
 
double getElapsedTime () const
 Returns the time that have passed since the window was created. More...
double getElapsedTime () const
 Returns the time that have passed since the window was created.
 
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
SDL_Window * getSDLWindow () const noexcept
 Returns the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow. More...
Uint32 getSDLWindowID () const noexcept
 Returns the numeric ID of the SDL window previously created with abcg::Window::createOpenGLWindow or abcg::Window::createVulkanWindow.
 
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window. More...
bool createSDLWindow (SDL_WindowFlags extraFlags)
 Creates the SDL window.
 
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off. More...
void setEnableResizingEventWatcher (bool enabled) noexcept
 Toggles the resizing event watcher on/off.
 
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode. More...
void toggleFullscreen ()
 Toggles between fullscreen and windowed mode.
 
- - +

+

Friends

int resizingEventWatcher (void *data, SDL_Event *event)
int resizingEventWatcher (void *data, SDL_Event *event)
 

Detailed Description

@@ -200,8 +207,8 @@ abcg::Window::destroy for window termination.
Remarks
Objects of this type cannot be copied or copy-constructed.

Constructor & Destructor Documentation

- -

◆ Window() [1/3]

+ +

◆ Window() [1/3]

@@ -227,8 +234,8 @@

-

◆ Window() [2/3]

+ +

◆ Window() [2/3]

@@ -253,8 +260,8 @@

-

◆ Window() [3/3]

+ +

◆ Window() [3/3]

@@ -281,8 +288,8 @@

-

◆ ~Window()

+ +

◆ ~Window()

@@ -309,8 +316,8 @@

Member Function Documentation

- -

◆ create()

+ +

◆ create()

@@ -337,8 +344,8 @@

-

◆ createSDLWindow()

+ +

◆ createSDLWindow()

@@ -372,8 +379,8 @@

-

◆ destroy()

+ +

◆ destroy()

@@ -400,8 +407,8 @@

-

◆ getDeltaTime()

+ +

◆ getDeltaTime()

@@ -429,8 +436,8 @@

-

◆ getElapsedTime()

+ +

◆ getElapsedTime()

@@ -457,8 +464,8 @@

-

◆ getSDLWindow()

+ +

◆ getSDLWindow()

@@ -486,8 +493,8 @@

-

◆ getSDLWindowID()

+ +

◆ getSDLWindowID()

@@ -515,8 +522,8 @@

-

◆ getWindowSettings()

+ +

◆ getWindowSettings()

@@ -543,8 +550,8 @@

-

◆ getWindowSize()

+ +

◆ getWindowSize()

@@ -572,8 +579,8 @@

-

◆ handleEvent()

+ +

◆ handleEvent()

@@ -607,8 +614,8 @@

-

◆ operator=() [1/2]

+ +

◆ operator=() [1/2]

@@ -617,7 +624,7 @@

- + @@ -635,8 +642,8 @@

-

◆ operator=() [2/2]

+ +

◆ operator=() [2/2]

@@ -645,7 +652,7 @@

Window& abcg::Window::operator= Window & abcg::Window::operator= ( Window &&  )
- + @@ -661,8 +668,8 @@

-

◆ paint()

+ +

◆ paint()

@@ -689,8 +696,8 @@

-

◆ setEnableResizingEventWatcher()

+ +

◆ setEnableResizingEventWatcher()

@@ -724,8 +731,8 @@

-

◆ setWindowSettings()

+ +

◆ setWindowSettings()

@@ -744,8 +751,8 @@

-

◆ toggleFullscreen()

+ +

◆ toggleFullscreen()

@@ -771,9 +778,9 @@

Friends And Related Function Documentation

- -

◆ resizingEventWatcher

+

Friends And Related Symbol Documentation

+ +

◆ resizingEventWatcher

@@ -818,7 +825,7 @@

diff --git a/abcg/doc/html/classabcg_1_1Window.js b/abcg/doc/html/classabcg_1_1Window.js index 3e5fc8633..bf301f0d5 100644 --- a/abcg/doc/html/classabcg_1_1Window.js +++ b/abcg/doc/html/classabcg_1_1Window.js @@ -14,8 +14,8 @@ var classabcg_1_1Window = [ "getWindowSettings", "classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679", null ], [ "getWindowSize", "classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c", null ], [ "handleEvent", "classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633", null ], - [ "operator=", "classabcg_1_1Window.html#a4efa74388a703f1d8dcb4493d4ea4637", null ], - [ "operator=", "classabcg_1_1Window.html#a2cad313eeee01bf3b89e248cd25ed71e", null ], + [ "operator=", "classabcg_1_1Window.html#a93d060f22a995fc807da249d222b8c66", null ], + [ "operator=", "classabcg_1_1Window.html#acec165afa1879a622118f7a2ab8d87e4", null ], [ "paint", "classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0", null ], [ "setEnableResizingEventWatcher", "classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e", null ], [ "setWindowSettings", "classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277", null ], diff --git a/abcg/doc/html/classabcg_1_1Window__inherit__graph.map b/abcg/doc/html/classabcg_1_1Window__inherit__graph.map index 8f04e1ab6..454e948c0 100644 --- a/abcg/doc/html/classabcg_1_1Window__inherit__graph.map +++ b/abcg/doc/html/classabcg_1_1Window__inherit__graph.map @@ -1,5 +1,7 @@ - - - + + + + + diff --git a/abcg/doc/html/classabcg_1_1Window__inherit__graph.md5 b/abcg/doc/html/classabcg_1_1Window__inherit__graph.md5 index 52f1a6b5d..71c99b8c5 100644 --- a/abcg/doc/html/classabcg_1_1Window__inherit__graph.md5 +++ b/abcg/doc/html/classabcg_1_1Window__inherit__graph.md5 @@ -1 +1 @@ -d08c00338c11173aabc9cf5c60030d7f \ No newline at end of file +e88d79b43bf487e9c9994648044f8f0e \ No newline at end of file diff --git a/abcg/doc/html/classabcg_1_1Window__inherit__graph.svg b/abcg/doc/html/classabcg_1_1Window__inherit__graph.svg index a22913d59..e0ab9e895 100644 --- a/abcg/doc/html/classabcg_1_1Window__inherit__graph.svg +++ b/abcg/doc/html/classabcg_1_1Window__inherit__graph.svg @@ -4,48 +4,54 @@ - - + + abcg::Window - + Node1 - - -abcg::Window + + +abcg::Window - + Node2 - - -abcg::OpenGLWindow + + +abcg::OpenGLWindow - + Node1->Node2 - - + + + + + - + Node3 - - -abcg::VulkanWindow + + +abcg::VulkanWindow - + Node1->Node3 - - + + + + + diff --git a/abcg/doc/html/classes.html b/abcg/doc/html/classes.html index 3558e1f7b..cc7b08eb8 100644 --- a/abcg/doc/html/classes.html +++ b/abcg/doc/html/classes.html @@ -5,7 +5,7 @@ - + ABCg: Class Index @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@

@@ -51,21 +51,22 @@
Window& abcg::Window::operator= Window & abcg::Window::operator= ( Window const &  )
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,41 +94,47 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Class Index
+
Class Index
@@ -135,7 +142,7 @@ diff --git a/abcg/doc/html/doc.png b/abcg/doc/html/doc.png deleted file mode 100644 index 21780b686..000000000 Binary files a/abcg/doc/html/doc.png and /dev/null differ diff --git a/abcg/doc/html/doc.svg b/abcg/doc/html/doc.svg new file mode 100644 index 000000000..3a3097d36 --- /dev/null +++ b/abcg/doc/html/doc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/abcg/doc/html/docd.svg b/abcg/doc/html/docd.svg new file mode 100644 index 000000000..6573c27b0 --- /dev/null +++ b/abcg/doc/html/docd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/abcg/doc/html/doxygen.css b/abcg/doc/html/doxygen.css index 4eb3a9229..5122c71e2 100644 --- a/abcg/doc/html/doxygen.css +++ b/abcg/doc/html/doxygen.css @@ -1,29 +1,378 @@ -/* The standard CSS for doxygen 1.9.1 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; +/* The standard CSS for doxygen 1.9.8*/ + +html { +/* page base colors */ +--page-background-color: white; +--page-foreground-color: black; +--page-link-color: #004789; +--page-visited-link-color: #0057A9; + +/* index */ +--index-odd-item-bg-color: #F1F8FF; +--index-even-item-bg-color: white; +--index-header-color: black; +--index-separator-color: #A0A0A0; + +/* header */ +--header-background-color: #F3F9FE; +--header-separator-color: #8DC8FF; +--header-gradient-image: url('nav_h.png'); +--group-header-separator-color: #1F92FF; +--group-header-color: #003B72; +--inherit-header-color: gray; + +--footer-foreground-color: #002A52; +--footer-logo-width: 104px; +--citation-label-color: #00376A; +--glow-color: cyan; + +--title-background-color: white; +--title-separator-color: #0067C9; +--directory-separator-color: #43A4FF; +--separator-color: #005DB5; + +--blockquote-background-color: #EFF7FF; +--blockquote-border-color: #43A4FF; + +--scrollbar-thumb-color: #43A4FF; +--scrollbar-background-color: #F3F9FE; + +--icon-background-color: #0081FA; +--icon-foreground-color: white; +--icon-doc-image: url('doc.svg'); +--icon-folder-open-image: url('folderopen.svg'); +--icon-folder-closed-image: url('folderclosed.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #F3F9FE; +--memdecl-separator-color: #BDDFFF; +--memdecl-foreground-color: #555; +--memdecl-template-color: #0057A9; + +/* detailed member list */ +--memdef-border-color: #59AEFF; +--memdef-title-background-color: #C6E3FE; +--memdef-title-gradient-image: url('nav_f.png'); +--memdef-proto-background-color: #C0E0FF; +--memdef-proto-text-color: #002344; +--memdef-proto-text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--memdef-doc-background-color: white; +--memdef-param-name-color: #602020; +--memdef-template-color: #0057A9; + +/* tables */ +--table-cell-border-color: #002E5A; +--table-header-background-color: #003E78; +--table-header-foreground-color: #FFFFFF; + +/* labels */ +--label-background-color: #0081FA; +--label-left-top-border-color: #0067C9; +--label-right-bottom-border-color: #8DC8FF; +--label-foreground-color: white; + +/** navigation bar/tree/menu */ +--nav-background-color: #F3F9FE; +--nav-foreground-color: #003C74; +--nav-gradient-image: url('tab_b.png'); +--nav-gradient-hover-image: url('tab_h.png'); +--nav-gradient-active-image: url('tab_a.png'); +--nav-gradient-active-image-parent: url("../tab_a.png"); +--nav-separator-image: url('tab_s.png'); +--nav-breadcrumb-image: url('bc_s.png'); +--nav-breadcrumb-border-color: #88C5FF; +--nav-splitbar-image: url('splitbar.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #00274D; +--nav-text-hover-color: white; +--nav-text-active-color: white; +--nav-text-normal-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #003C74; +--nav-menu-background-color: white; +--nav-menu-foreground-color: #555555; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.5); +--nav-arrow-color: #43A4FF; +--nav-arrow-selected-color: #43A4FF; + +/* table of contents */ +--toc-background-color: #EAF5FE; +--toc-border-color: #B2DAFF; +--toc-header-color: #0057A9; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: white; +--search-foreground-color: #909090; +--search-magnification-image: url('mag.svg'); +--search-magnification-select-image: url('mag_sel.svg'); +--search-active-color: black; +--search-filter-background-color: #F3F9FE; +--search-filter-foreground-color: black; +--search-filter-border-color: #2E9AFE; +--search-filter-highlight-text-color: white; +--search-filter-highlight-bg-color: #004789; +--search-results-foreground-color: #004F99; +--search-results-background-color: #DDEEFE; +--search-results-border-color: black; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #555; + +/** code fragments */ +--code-keyword-color: #008000; +--code-type-keyword-color: #604020; +--code-flow-keyword-color: #E08000; +--code-comment-color: #800000; +--code-preprocessor-color: #806020; +--code-string-literal-color: #002080; +--code-char-literal-color: #008080; +--code-xml-cdata-color: black; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #000000; +--code-vhdl-keyword-color: #700070; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #0057A9; +--code-external-link-color: #0057A9; +--fragment-foreground-color: black; +--fragment-background-color: #F8FBFF; +--fragment-border-color: #8DC8FF; +--fragment-lineno-border-color: #00FF00; +--fragment-lineno-background-color: #E8E8E8; +--fragment-lineno-foreground-color: black; +--fragment-lineno-link-fg-color: #0057A9; +--fragment-lineno-link-bg-color: #D8D8D8; +--fragment-lineno-link-hover-fg-color: #0057A9; +--fragment-lineno-link-hover-bg-color: #C8C8C8; +--tooltip-foreground-color: black; +--tooltip-background-color: white; +--tooltip-border-color: gray; +--tooltip-doc-color: grey; +--tooltip-declaration-color: #006318; +--tooltip-link-color: #0057A9; +--tooltip-shadow: 1px 1px 7px gray; +--fold-line-color: #808080; +--fold-minus-image: url('minus.svg'); +--fold-plus-image: url('plus.svg'); +--fold-minus-image-relpath: url('../../minus.svg'); +--fold-plus-image-relpath: url('../../plus.svg'); + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +} + +@media (prefers-color-scheme: dark) { + html:not(.dark-mode) { + color-scheme: dark; + +/* page base colors */ +--page-background-color: black; +--page-foreground-color: #C9D1D9; +--page-link-color: #2E9AFE; +--page-visited-link-color: #50AAFE; + +/* index */ +--index-odd-item-bg-color: #00060D; +--index-even-item-bg-color: black; +--index-header-color: #8DC8FF; +--index-separator-color: #00376A; + +/* header */ +--header-background-color: #000307; +--header-separator-color: #000E1C; +--header-gradient-image: url('nav_hd.png'); +--group-header-separator-color: #00274D; +--group-header-color: #2E9AFE; +--inherit-header-color: #A0A0A0; + +--footer-foreground-color: #006ED5; +--footer-logo-width: 60px; +--citation-label-color: #2E9AFE; +--glow-color: cyan; + +--title-background-color: #00050A; +--title-separator-color: #003A70; +--directory-separator-color: #00274D; +--separator-color: #00274D; + +--blockquote-background-color: #000B16; +--blockquote-border-color: #00274D; + +--scrollbar-thumb-color: #00274D; +--scrollbar-background-color: #000307; + +--icon-background-color: #00376A; +--icon-foreground-color: #8DC8FF; +--icon-doc-image: url('docd.svg'); +--icon-folder-open-image: url('folderopend.svg'); +--icon-folder-closed-image: url('folderclosedd.svg'); + +/* brief member declaration list */ +--memdecl-background-color: #00060D; +--memdecl-separator-color: #002C56; +--memdecl-foreground-color: #BBB; +--memdecl-template-color: #0C89FE; + +/* detailed member list */ +--memdef-border-color: #00203E; +--memdef-title-background-color: #00172D; +--memdef-title-gradient-image: url('nav_fd.png'); +--memdef-proto-background-color: #001428; +--memdef-proto-text-color: #45A5FF; +--memdef-proto-text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.9); +--memdef-doc-background-color: black; +--memdef-param-name-color: #D28757; +--memdef-template-color: #0C89FE; + +/* tables */ +--table-cell-border-color: #00274D; +--table-header-background-color: #00274D; +--table-header-foreground-color: #8DC8FF; + +/* labels */ +--label-background-color: #003B72; +--label-left-top-border-color: #0057A9; +--label-right-bottom-border-color: #00274D; +--label-foreground-color: #CCCCCC; + +/** navigation bar/tree/menu */ +--nav-background-color: #000B16; +--nav-foreground-color: #003C74; +--nav-gradient-image: url('tab_bd.png'); +--nav-gradient-hover-image: url('tab_hd.png'); +--nav-gradient-active-image: url('tab_ad.png'); +--nav-gradient-active-image-parent: url("../tab_ad.png"); +--nav-separator-image: url('tab_sd.png'); +--nav-breadcrumb-image: url('bc_sd.png'); +--nav-breadcrumb-border-color: #002A52; +--nav-splitbar-image: url('splitbard.png'); +--nav-font-size-level1: 13px; +--nav-font-size-level2: 10px; +--nav-font-size-level3: 9px; +--nav-text-normal-color: #73BBFF; +--nav-text-hover-color: #B9DDFF; +--nav-text-active-color: #B9DDFF; +--nav-text-normal-shadow: 0px 1px 1px black; +--nav-text-hover-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-text-active-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); +--nav-menu-button-color: #73BBFF; +--nav-menu-background-color: #000204; +--nav-menu-foreground-color: #BBBBBB; +--nav-menu-toggle-color: rgba(255, 255, 255, 0.2); +--nav-arrow-color: #00376A; +--nav-arrow-selected-color: #2E9AFE; + +/* table of contents */ +--toc-background-color: #000F1E; +--toc-border-color: #001C37; +--toc-header-color: #50AAFE; +--toc-down-arrow-image: url("data:image/svg+xml;utf8,&%238595;"); + +/** search field */ +--search-background-color: black; +--search-foreground-color: #C5C5C5; +--search-magnification-image: url('mag_d.svg'); +--search-magnification-select-image: url('mag_seld.svg'); +--search-active-color: #C5C5C5; +--search-filter-background-color: #000B16; +--search-filter-foreground-color: #2E9AFE; +--search-filter-border-color: #0C89FE; +--search-filter-highlight-text-color: #7EC0FF; +--search-filter-highlight-bg-color: #00274D; +--search-results-background-color: #000B16; +--search-results-foreground-color: #2E9AFE; +--search-results-border-color: #0C89FE; +--search-box-shadow: inset 0.5px 0.5px 3px 0px #00315F; + +/** code fragments */ +--code-keyword-color: #CC99CD; +--code-type-keyword-color: #AB99CD; +--code-flow-keyword-color: #E08000; +--code-comment-color: #717790; +--code-preprocessor-color: #65CABE; +--code-string-literal-color: #7EC699; +--code-char-literal-color: #00E0F0; +--code-xml-cdata-color: #C9D1D9; +--code-vhdl-digit-color: #FF00FF; +--code-vhdl-char-color: #C0C0C0; +--code-vhdl-keyword-color: #CF53C9; +--code-vhdl-logic-color: #FF0000; +--code-link-color: #79C0FF; +--code-external-link-color: #79C0FF; +--fragment-foreground-color: #C9D1D9; +--fragment-background-color: black; +--fragment-border-color: #30363D; +--fragment-lineno-border-color: #30363D; +--fragment-lineno-background-color: black; +--fragment-lineno-foreground-color: #6E7681; +--fragment-lineno-link-fg-color: #6E7681; +--fragment-lineno-link-bg-color: #303030; +--fragment-lineno-link-hover-fg-color: #8E96A1; +--fragment-lineno-link-hover-bg-color: #505050; +--tooltip-foreground-color: #C9D1D9; +--tooltip-background-color: #202020; +--tooltip-border-color: #C9D1D9; +--tooltip-doc-color: #D9E1E9; +--tooltip-declaration-color: #20C348; +--tooltip-link-color: #79C0FF; +--tooltip-shadow: none; +--fold-line-color: #808080; +--fold-minus-image: url('minusd.svg'); +--fold-plus-image: url('plusd.svg'); +--fold-minus-image-relpath: url('../../minusd.svg'); +--fold-plus-image-relpath: url('../../plusd.svg'); + +/** font-family */ +--font-family-normal: Roboto,sans-serif; +--font-family-monospace: 'JetBrains Mono',Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace,fixed; +--font-family-nav: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; +--font-family-title: Tahoma,Arial,sans-serif; +--font-family-toc: Verdana,'DejaVu Sans',Geneva,sans-serif; +--font-family-search: Arial,Verdana,sans-serif; +--font-family-icon: Arial,Helvetica; +--font-family-tooltip: Roboto,sans-serif; + +}} +body { + background-color: var(--page-background-color); + color: var(--page-foreground-color); } -p.reference, p.definition { - font: 400 14px/22px Roboto,sans-serif; +body, table, div, p, dl { + font-weight: 400; + font-size: 14px; + font-family: var(--font-family-normal); + line-height: 22px; } /* @group Heading Levels */ -h1.groupheader { - font-size: 150%; -} - .title { - font: 400 14px/28px Roboto,sans-serif; + font-weight: 400; + font-size: 14px; + font-family: var(--font-family-normal); + line-height: 28px; font-size: 150%; font-weight: bold; margin: 10px 2px; } +h1.groupheader { + font-size: 150%; +} + h2.groupheader { - border-bottom: 1px solid #1F92FF; - color: #003B72; + border-bottom: 1px solid var(--group-header-separator-color); + color: var(--group-header-color); font-size: 150%; font-weight: normal; margin-top: 1.75em; @@ -46,22 +395,13 @@ h1, h2, h3, h4, h5, h6 { } h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; + text-shadow: 0 0 15px var(--glow-color); } dt { font-weight: bold; } -ul.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; - column-count: 3; -} - p.startli, p.startdd { margin-top: 2px; } @@ -113,7 +453,6 @@ h3.version { } div.navtab { - border-right: 1px solid #50AAFE; padding-right: 15px; text-align: right; line-height: 110%; @@ -127,16 +466,17 @@ td.navtab { padding-right: 6px; padding-left: 6px; } + td.navtabHL { - background-image: url('tab_a.png'); + background-image: var(--nav-gradient-active-image); background-repeat:repeat-x; padding-right: 6px; padding-left: 6px; } td.navtabHL a, td.navtabHL a:visited { - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); } a.navtab { @@ -148,7 +488,13 @@ div.qindex{ width: 100%; line-height: 140%; font-size: 130%; - color: #A0A0A0; + color: var(--index-separator-color); +} + +#main-menu a:focus { + outline: auto; + z-index: 10; + position: relative; } dt.alphachar{ @@ -157,7 +503,7 @@ dt.alphachar{ } .alphachar a{ - color: black; + color: var(--index-header-color); } .alphachar a:hover, .alphachar a:visited{ @@ -176,8 +522,12 @@ dt.alphachar{ line-height: 1.15em; } +.classindex dl.even { + background-color: var(--index-even-item-bg-color); +} + .classindex dl.odd { - background-color: #F1F8FF; + background-color: var(--index-odd-item-bg-color); } @media(min-width: 1120px) { @@ -196,23 +546,19 @@ dt.alphachar{ /* @group Link Styling */ a { - color: #004789; + color: var(--page-link-color); font-weight: normal; text-decoration: none; } .contents a:visited { - color: #0057A9; + color: var(--page-visited-link-color); } a:hover { text-decoration: underline; } -.contents a.qindexHL:visited { - color: #FFFFFF; -} - a.el { font-weight: bold; } @@ -221,12 +567,39 @@ a.elRef { } a.code, a.code:visited, a.line, a.line:visited { - color: #0057A9; + color: var(--code-link-color); } a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #0057A9; -} + color: var(--code-external-link-color); +} + +a.code.hl_class { /* style for links to class names in code snippets */ } +a.code.hl_struct { /* style for links to struct names in code snippets */ } +a.code.hl_union { /* style for links to union names in code snippets */ } +a.code.hl_interface { /* style for links to interface names in code snippets */ } +a.code.hl_protocol { /* style for links to protocol names in code snippets */ } +a.code.hl_category { /* style for links to category names in code snippets */ } +a.code.hl_exception { /* style for links to exception names in code snippets */ } +a.code.hl_service { /* style for links to service names in code snippets */ } +a.code.hl_singleton { /* style for links to singleton names in code snippets */ } +a.code.hl_concept { /* style for links to concept names in code snippets */ } +a.code.hl_namespace { /* style for links to namespace names in code snippets */ } +a.code.hl_package { /* style for links to package names in code snippets */ } +a.code.hl_define { /* style for links to macro names in code snippets */ } +a.code.hl_function { /* style for links to function names in code snippets */ } +a.code.hl_variable { /* style for links to variable names in code snippets */ } +a.code.hl_typedef { /* style for links to typedef names in code snippets */ } +a.code.hl_enumvalue { /* style for links to enum value names in code snippets */ } +a.code.hl_enumeration { /* style for links to enumeration names in code snippets */ } +a.code.hl_signal { /* style for links to Qt signal names in code snippets */ } +a.code.hl_slot { /* style for links to Qt slot names in code snippets */ } +a.code.hl_friend { /* style for links to friend names in code snippets */ } +a.code.hl_dcop { /* style for links to KDE3 DCOP names in code snippets */ } +a.code.hl_property { /* style for links to property names in code snippets */ } +a.code.hl_event { /* style for links to event names in code snippets */ } +a.code.hl_sequence { /* style for links to sequence names in code snippets */ } +a.code.hl_dictionary { /* style for links to dictionary names in code snippets */ } /* @end */ @@ -235,7 +608,17 @@ dl.el { } ul { - overflow: hidden; /*Fixed: list item bullets overlap floating elements*/ + overflow: visible; +} + +ul.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; + column-count: 3; + list-style-type: none; } #side-nav ul { @@ -254,30 +637,32 @@ ul { } pre.fragment { - border: 1px solid #8DC8FF; - background-color: #F8FBFF; + border: 1px solid var(--fragment-border-color); + background-color: var(--fragment-background-color); + color: var(--fragment-foreground-color); padding: 4px 6px; margin: 4px 8px 4px 2px; overflow: auto; word-wrap: break-word; font-size: 9pt; line-height: 125%; - font-family: monospace, fixed; + font-family: var(--font-family-monospace); font-size: 105%; } div.fragment { - padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ - margin: 4px 8px 4px 2px; - background-color: #F8FBFF; - border: 1px solid #8DC8FF; + padding: 0 0 1px 0; /*Fixed: last line underline overlap border*/ + margin: 4px 8px 4px 2px; + color: var(--fragment-foreground-color); + background-color: var(--fragment-background-color); + border: 1px solid var(--fragment-border-color); } div.line { - font-family: monospace, fixed; + font-family: var(--font-family-monospace); font-size: 13px; min-height: 13px; - line-height: 1.0; + line-height: 1.2; text-wrap: unrestricted; white-space: -moz-pre-wrap; /* Moz */ white-space: -pre-wrap; /* Opera 4-6 */ @@ -306,24 +691,40 @@ div.line:after { } div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; + background-color: var(--glow-color); + box-shadow: 0 0 10px var(--glow-color); } +span.fold { + margin-left: 5px; + margin-right: 1px; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; + display: inline-block; + width: 12px; + height: 12px; + background-repeat:no-repeat; + background-position:center; +} span.lineno { padding-right: 4px; + margin-right: 9px; text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; + border-right: 2px solid var(--fragment-lineno-border-color); + color: var(--fragment-lineno-foreground-color); + background-color: var(--fragment-lineno-background-color); white-space: pre; } -span.lineno a { - background-color: #D8D8D8; +span.lineno a, span.lineno a:visited { + color: var(--fragment-lineno-link-fg-color); + background-color: var(--fragment-lineno-link-bg-color); } span.lineno a:hover { - background-color: #C8C8C8; + color: var(--fragment-lineno-link-hover-fg-color); + background-color: var(--fragment-lineno-link-hover-bg-color); } .lineno { @@ -335,24 +736,6 @@ span.lineno a:hover { user-select: none; } -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #FFFFFF; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - div.classindex ul { list-style: none; padding-left: 0; @@ -374,8 +757,7 @@ div.groupText { } body { - background-color: white; - color: black; + color: var(--page-foreground-color); margin: 0; } @@ -385,29 +767,15 @@ div.contents { margin-right: 8px; } -td.indexkey { - background-color: #D8ECFF; - font-weight: bold; - border: 1px solid #8DC8FF; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #D8ECFF; - border: 1px solid #8DC8FF; - padding: 2px 10px; - margin: 2px 0px; +p.formulaDsp { + text-align: center; } -tr.memlist { - background-color: #DDEEFE; +img.dark-mode-visible { + display: none; } - -p.formulaDsp { - text-align: center; +img.light-mode-visible { + display: none; } img.formulaDsp { @@ -437,89 +805,74 @@ address.footer { img.footer { border: 0px; vertical-align: middle; + width: var(--footer-logo-width); +} + +.compoundTemplParams { + color: var(--memdecl-template-color); + font-size: 80%; + line-height: 120%; } /* @group Code Colorization */ span.keyword { - color: #008000 + color: var(--code-keyword-color); } span.keywordtype { - color: #604020 + color: var(--code-type-keyword-color); } span.keywordflow { - color: #e08000 + color: var(--code-flow-keyword-color); } span.comment { - color: #800000 + color: var(--code-comment-color); } span.preprocessor { - color: #806020 + color: var(--code-preprocessor-color); } span.stringliteral { - color: #002080 + color: var(--code-string-literal-color); } span.charliteral { - color: #008080 + color: var(--code-char-literal-color); +} + +span.xmlcdata { + color: var(--code-xml-cdata-color); } span.vhdldigit { - color: #ff00ff + color: var(--code-vhdl-digit-color); } span.vhdlchar { - color: #000000 + color: var(--code-vhdl-char-color); } span.vhdlkeyword { - color: #700070 + color: var(--code-vhdl-keyword-color); } span.vhdllogic { - color: #ff0000 + color: var(--code-vhdl-logic-color); } blockquote { - background-color: #EFF7FF; - border-left: 2px solid #43A4FF; + background-color: var(--blockquote-background-color); + border-left: 2px solid var(--blockquote-border-color); margin: 0 24px 0 4px; padding: 0 12px 0 16px; } -blockquote.DocNodeRTL { - border-left: 0; - border-right: 2px solid #43A4FF; - margin: 0 4px 0 24px; - padding: 0 16px 0 12px; -} - /* @end */ -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - td.tiny { font-size: 75%; } @@ -527,18 +880,19 @@ td.tiny { .dirtab { padding: 4px; border-collapse: collapse; - border: 1px solid #50AAFE; + border: 1px solid var(--table-cell-border-color); } th.dirtab { - background: #D8ECFF; + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); font-weight: bold; } hr { height: 0px; border: none; - border-top: 1px solid #005DB5; + border-top: 1px solid var(--separator-color); } hr.footer { @@ -566,14 +920,14 @@ table.memberdecls { } .memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; + background-color: var(--glow-color); + box-shadow: 0 0 15px var(--glow-color); } .mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F3F9FE; + background-color: var(--memdecl-background-color); border: none; margin: 4px; padding: 1px 0 0 8px; @@ -581,11 +935,11 @@ table.memberdecls { .mdescLeft, .mdescRight { padding: 0px 8px 4px 8px; - color: #555; + color: var(--memdecl-foreground-color); } .memSeparator { - border-bottom: 1px solid #BDDFFF; + border-bottom: 1px solid var(--memdecl-separator-color); line-height: 1px; margin: 0px; padding: 0px; @@ -600,7 +954,7 @@ table.memberdecls { } .memTemplParams { - color: #0057A9; + color: var(--memdecl-template-color); white-space: nowrap; font-size: 80%; } @@ -613,15 +967,15 @@ table.memberdecls { .memtitle { padding: 8px; - border-top: 1px solid #59AEFF; - border-left: 1px solid #59AEFF; - border-right: 1px solid #59AEFF; + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); border-top-right-radius: 4px; border-top-left-radius: 4px; margin-bottom: -1px; - background-image: url('nav_f.png'); + background-image: var(--memdef-title-gradient-image); background-repeat: repeat-x; - background-color: #C6E3FE; + background-color: var(--memdef-title-background-color); line-height: 1.25; font-weight: 300; float:left; @@ -636,20 +990,11 @@ table.memberdecls { .memtemplate { font-size: 80%; - color: #0057A9; + color: var(--memdef-template-color); font-weight: normal; margin-left: 9px; } -.memnav { - background-color: #D8ECFF; - border: 1px solid #50AAFE; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - .mempage { width: 100%; } @@ -668,7 +1013,7 @@ table.memberdecls { } .memitem.glow { - box-shadow: 0 0 15px cyan; + box-shadow: 0 0 15px var(--glow-color); } .memname { @@ -681,41 +1026,32 @@ table.memberdecls { } .memproto, dl.reflist dt { - border-top: 1px solid #59AEFF; - border-left: 1px solid #59AEFF; - border-right: 1px solid #59AEFF; + border-top: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); padding: 6px 0px 6px 0px; - color: #002344; + color: var(--memdef-proto-text-color); font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-color: #C0E0FF; - /* opera specific markup */ + text-shadow: var(--memdef-proto-text-shadow); + background-color: var(--memdef-proto-background-color); box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); border-top-right-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - } .overload { - font-family: "courier new",courier,monospace; + font-family: var(--font-family-monospace); font-size: 65%; } .memdoc, dl.reflist dd { - border-bottom: 1px solid #59AEFF; - border-left: 1px solid #59AEFF; - border-right: 1px solid #59AEFF; + border-bottom: 1px solid var(--memdef-border-color); + border-left: 1px solid var(--memdef-border-color); + border-right: 1px solid var(--memdef-border-color); padding: 6px 10px 2px 10px; - background-color: #F8FBFF; border-top-width: 0; background-image:url('nav_g.png'); background-repeat:repeat-x; - background-color: #FFFFFF; + background-color: var(--memdef-doc-background-color); /* opera specific markup */ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; @@ -748,7 +1084,7 @@ dl.reflist dd { } .paramname { - color: #602020; + color: var(--memdef-param-name-color); white-space: nowrap; } .paramname em { @@ -761,20 +1097,20 @@ dl.reflist dd { .params, .retval, .exception, .tparams { margin-left: 0px; padding-left: 0px; -} +} .params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname { font-weight: bold; vertical-align: top; } - + .params .paramtype, .tparams .paramtype { font-style: italic; vertical-align: top; -} - +} + .params .paramdir, .tparams .paramdir { - font-family: "courier new",courier,monospace; + font-family: var(--font-family-monospace); vertical-align: top; } @@ -798,13 +1134,13 @@ span.mlabels { } span.mlabel { - background-color: #0081FA; - border-top:1px solid #0067C9; - border-left:1px solid #0067C9; - border-right:1px solid #8DC8FF; - border-bottom:1px solid #8DC8FF; + background-color: var(--label-background-color); + border-top:1px solid var(--label-left-top-border-color); + border-left:1px solid var(--label-left-top-border-color); + border-right:1px solid var(--label-right-bottom-border-color); + border-bottom:1px solid var(--label-right-bottom-border-color); text-shadow: none; - color: white; + color: var(--label-foreground-color); margin-right: 4px; padding: 2px 3px; border-radius: 3px; @@ -821,8 +1157,8 @@ span.mlabel { div.directory { margin: 10px 0px; - border-top: 1px solid #43A4FF; - border-bottom: 1px solid #43A4FF; + border-top: 1px solid var(--directory-separator-color); + border-bottom: 1px solid var(--directory-separator-color); width: 100%; } @@ -858,9 +1194,14 @@ div.directory { border-left: 1px solid rgba(0,0,0,0.05); } +.directory tr.odd { + padding-left: 6px; + background-color: var(--index-odd-item-bg-color); +} + .directory tr.even { padding-left: 6px; - background-color: #EFF7FF; + background-color: var(--index-even-item-bg-color); } .directory img { @@ -878,11 +1219,11 @@ div.directory { cursor: pointer; padding-left: 2px; padding-right: 2px; - color: #004789; + color: var(--page-link-color); } .arrow { - color: #43A4FF; + color: var(--nav-arrow-color); -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; @@ -896,14 +1237,15 @@ div.directory { } .icon { - font-family: Arial, Helvetica; + font-family: var(--font-family-icon); + line-height: normal; font-weight: bold; font-size: 12px; height: 14px; width: 16px; display: inline-block; - background-color: #0081FA; - color: white; + background-color: var(--icon-background-color); + color: var(--icon-foreground-color); text-align: center; border-radius: 4px; margin-left: 2px; @@ -920,8 +1262,7 @@ div.directory { width: 24px; height: 18px; margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; + background-image:var(--icon-folder-open-image); background-repeat: repeat-y; vertical-align:top; display: inline-block; @@ -931,8 +1272,7 @@ div.directory { width: 24px; height: 18px; margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; + background-image:var(--icon-folder-closed-image); background-repeat: repeat-y; vertical-align:top; display: inline-block; @@ -942,17 +1282,13 @@ div.directory { width: 24px; height: 18px; margin-bottom: 4px; - background-image:url('doc.png'); + background-image:var(--icon-doc-image); background-position: 0px -4px; background-repeat: repeat-y; vertical-align:top; display: inline-block; } -table.directory { - font: 400 14px Roboto,sans-serif; -} - /* @end */ div.dynheader { @@ -967,7 +1303,7 @@ div.dynheader { address { font-style: normal; - color: #002A52; + color: var(--footer-foreground-color); } table.doxtable caption { @@ -981,28 +1317,23 @@ table.doxtable { } table.doxtable td, table.doxtable th { - border: 1px solid #002E5A; + border: 1px solid var(--table-cell-border-color); padding: 3px 7px 2px; } table.doxtable th { - background-color: #003E78; - color: #FFFFFF; + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); font-size: 110%; padding-bottom: 4px; padding-top: 5px; } table.fieldtable { - /*width: 100%;*/ margin-bottom: 10px; - border: 1px solid #59AEFF; + border: 1px solid var(--memdef-border-color); border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); } @@ -1012,8 +1343,8 @@ table.fieldtable { .fieldtable td.fieldtype, .fieldtable td.fieldname { white-space: nowrap; - border-right: 1px solid #59AEFF; - border-bottom: 1px solid #59AEFF; + border-right: 1px solid var(--memdef-border-color); + border-bottom: 1px solid var(--memdef-border-color); vertical-align: top; } @@ -1022,14 +1353,13 @@ table.fieldtable { } .fieldtable td.fielddoc { - border-bottom: 1px solid #59AEFF; - /*width: 100%;*/ + border-bottom: 1px solid var(--memdef-border-color); } .fieldtable td.fielddoc p:first-child { margin-top: 0px; -} - +} + .fieldtable td.fielddoc p:last-child { margin-bottom: 2px; } @@ -1039,22 +1369,18 @@ table.fieldtable { } .fieldtable th { - background-image:url('nav_f.png'); + background-image: var(--memdef-title-gradient-image); background-repeat:repeat-x; - background-color: #C6E3FE; + background-color: var(--memdef-title-background-color); font-size: 90%; - color: #002344; + color: var(--memdef-proto-text-color); padding-bottom: 4px; padding-top: 5px; text-align:left; font-weight: 400; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; - border-bottom: 1px solid #59AEFF; + border-bottom: 1px solid var(--memdef-border-color); } @@ -1062,7 +1388,7 @@ table.fieldtable { top: 0px; left: 10px; height: 36px; - background-image: url('tab_b.png'); + background-image: var(--nav-gradient-image); z-index: 101; overflow: hidden; font-size: 13px; @@ -1071,13 +1397,13 @@ table.fieldtable { .navpath ul { font-size: 11px; - background-image:url('tab_b.png'); + background-image: var(--nav-gradient-image); background-repeat:repeat-x; background-position: 0 -5px; height:30px; line-height:30px; - color:#2394FF; - border:solid 1px #88C5FF; + color:var(--nav-text-normal-color); + border:solid 1px var(--nav-breadcrumb-border-color); overflow:hidden; margin:0px; padding:0px; @@ -1089,10 +1415,10 @@ table.fieldtable { float:left; padding-left:10px; padding-right:15px; - background-image:url('bc_s.png'); + background-image:var(--nav-breadcrumb-image); background-repeat:no-repeat; background-position:right; - color:#003C74; + color: var(--nav-foreground-color); } .navpath li.navelem a @@ -1101,15 +1427,16 @@ table.fieldtable { display:block; text-decoration: none; outline: none; - color: #00274D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; + color: var(--nav-text-normal-color); + font-family: var(--font-family-nav); + text-shadow: var(--nav-text-normal-shadow); + text-decoration: none; } .navpath li.navelem a:hover { - color:#0078EA; + color: var(--nav-text-hover-color); + text-shadow: var(--nav-text-hover-shadow); } .navpath li.footer @@ -1121,7 +1448,7 @@ table.fieldtable { background-image:none; background-repeat:no-repeat; background-position:right; - color:#003C74; + color: var(--footer-foreground-color); font-size: 8pt; } @@ -1133,7 +1460,7 @@ div.summary padding-right: 5px; width: 50%; text-align: right; -} +} div.summary a { @@ -1148,7 +1475,7 @@ table.classindex margin-right: 3%; width: 94%; border: 0; - border-spacing: 0; + border-spacing: 0; padding: 0; } @@ -1166,11 +1493,11 @@ div.ingroups a div.header { - background-image:url('nav_h.png'); + background-image: var(--header-gradient-image); background-repeat:repeat-x; - background-color: #F3F9FE; + background-color: var(--header-background-color); margin: 0px; - border-bottom: 1px solid #8DC8FF; + border-bottom: 1px solid var(--header-separator-color); } div.headertitle @@ -1193,11 +1520,6 @@ dl.section { padding-left: 0px; } -dl.section.DocNodeRTL { - margin-right: 0px; - padding-right: 0px; -} - dl.note { margin-left: -7px; padding-left: 3px; @@ -1205,16 +1527,6 @@ dl.note { border-color: #D0C000; } -dl.note.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #D0C000; -} - dl.warning, dl.attention { margin-left: -7px; padding-left: 3px; @@ -1222,16 +1534,6 @@ dl.warning, dl.attention { border-color: #FF0000; } -dl.warning.DocNodeRTL, dl.attention.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #FF0000; -} - dl.pre, dl.post, dl.invariant { margin-left: -7px; padding-left: 3px; @@ -1239,16 +1541,6 @@ dl.pre, dl.post, dl.invariant { border-color: #00D000; } -dl.pre.DocNodeRTL, dl.post.DocNodeRTL, dl.invariant.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #00D000; -} - dl.deprecated { margin-left: -7px; padding-left: 3px; @@ -1256,16 +1548,6 @@ dl.deprecated { border-color: #505050; } -dl.deprecated.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #505050; -} - dl.todo { margin-left: -7px; padding-left: 3px; @@ -1273,16 +1555,6 @@ dl.todo { border-color: #00C0E0; } -dl.todo.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #00C0E0; -} - dl.test { margin-left: -7px; padding-left: 3px; @@ -1290,16 +1562,6 @@ dl.test { border-color: #3030E0; } -dl.test.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #3030E0; -} - dl.bug { margin-left: -7px; padding-left: 3px; @@ -1307,21 +1569,16 @@ dl.bug { border-color: #C08050; } -dl.bug.DocNodeRTL { - margin-left: 0; - padding-left: 0; - border-left: 0; - margin-right: -7px; - padding-right: 3px; - border-right: 4px solid; - border-color: #C08050; -} - dl.section dd { margin-bottom: 6px; } +#projectrow +{ + height: 56px; +} + #projectlogo { text-align: center; @@ -1337,25 +1594,29 @@ dl.section dd { #projectalign { vertical-align: middle; + padding-left: 0.5em; } #projectname { - font: 300% Tahoma, Arial,sans-serif; + font-size: 200%; + font-family: var(--font-family-title); margin: 0px; padding: 2px 0px; } - + #projectbrief { - font: 120% Tahoma, Arial,sans-serif; + font-size: 90%; + font-family: var(--font-family-title); margin: 0px; padding: 0px; } #projectnumber { - font: 50% Tahoma, Arial,sans-serif; + font-size: 50%; + font-family: 50% var(--font-family-title); margin: 0px; padding: 0px; } @@ -1365,7 +1626,8 @@ dl.section dd { padding: 0px; margin: 0px; width: 100%; - border-bottom: 1px solid #0067C9; + border-bottom: 1px solid var(--title-separator-color); + background-color: var(--title-background-color); } .image @@ -1398,17 +1660,12 @@ dl.section dd { font-weight: bold; } -div.zoom -{ - border: 1px solid #2E9AFE; -} - dl.citelist { margin-bottom:50px; } dl.citelist dt { - color:#00376A; + color:var(--citation-label-color); float:left; font-weight:bold; margin-right:10px; @@ -1424,8 +1681,8 @@ dl.citelist dd { div.toc { padding: 14px 25px; - background-color: #EAF5FE; - border: 1px solid #B2DAFF; + background-color: var(--toc-background-color); + border: 1px solid var(--toc-border-color); border-radius: 7px 7px 7px 7px; float: right; height: auto; @@ -1433,28 +1690,17 @@ div.toc { width: 200px; } -.PageDocRTL-title div.toc { - float: left !important; - text-align: right; -} - div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + background: var(--toc-down-arrow-image) no-repeat scroll 0 5px transparent; + font: 10px/1.2 var(--font-family-toc); margin-top: 5px; padding-left: 10px; padding-top: 2px; } -.PageDocRTL-title div.toc li { - background-position-x: right !important; - padding-left: 0 !important; - padding-right: 10px; -} - div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #0057A9; + font: bold 12px/1.2 var(--font-family-toc); + color: var(--toc-header-color); border-bottom: 0 none; margin: 0; } @@ -1463,7 +1709,7 @@ div.toc ul { list-style: none outside none; border: medium none; padding: 0px; -} +} div.toc li.level1 { margin-left: 0px; @@ -1474,11 +1720,11 @@ div.toc li.level2 { } div.toc li.level3 { - margin-left: 30px; + margin-left: 15px; } div.toc li.level4 { - margin-left: 45px; + margin-left: 15px; } span.emoji { @@ -1487,29 +1733,13 @@ span.emoji { */ } -.PageDocRTL-title div.toc li.level1 { - margin-left: 0 !important; - margin-right: 0; -} - -.PageDocRTL-title div.toc li.level2 { - margin-left: 0 !important; - margin-right: 15px; -} - -.PageDocRTL-title div.toc li.level3 { - margin-left: 0 !important; - margin-right: 30px; -} - -.PageDocRTL-title div.toc li.level4 { - margin-left: 0 !important; - margin-right: 45px; +span.obfuscator { + display: none; } .inherit_header { font-weight: bold; - color: gray; + color: var(--inherit-header-color); cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; @@ -1541,11 +1771,12 @@ tr.heading h2 { #powerTip { cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; + /*white-space: nowrap;*/ + color: var(--tooltip-foreground-color); + background-color: var(--tooltip-background-color); + border: 1px solid var(--tooltip-border-color); border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; + box-shadow: var(--tooltip-shadow); display: none; font-size: smaller; max-width: 80%; @@ -1556,7 +1787,7 @@ tr.heading h2 { } #powerTip div.ttdoc { - color: grey; + color: var(--tooltip-doc-color); font-style: italic; } @@ -1564,18 +1795,24 @@ tr.heading h2 { font-weight: bold; } +#powerTip a { + color: var(--tooltip-link-color); +} + #powerTip div.ttname { font-weight: bold; } #powerTip div.ttdeci { - color: #006318; + color: var(--tooltip-declaration-color); } #powerTip div { margin: 0px; padding: 0px; - font: 12px/16px Roboto,sans-serif; + font-size: 12px; + font-family: var(--font-family-tooltip); + line-height: 16px; } #powerTip:before, #powerTip:after { @@ -1620,12 +1857,12 @@ tr.heading h2 { } #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #FFFFFF; + border-top-color: var(--tooltip-background-color); border-width: 10px; margin: 0px -10px; } -#powerTip.n:before { - border-top-color: #808080; +#powerTip.n:before, #powerTip.ne:before, #powerTip.nw:before { + border-top-color: var(--tooltip-border-color); border-width: 11px; margin: 0px -11px; } @@ -1648,13 +1885,13 @@ tr.heading h2 { } #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #FFFFFF; + border-bottom-color: var(--tooltip-background-color); border-width: 10px; margin: 0px -10px; } #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; + border-bottom-color: var(--tooltip-border-color); border-width: 11px; margin: 0px -11px; } @@ -1675,13 +1912,13 @@ tr.heading h2 { left: 100%; } #powerTip.e:after { - border-left-color: #FFFFFF; + border-left-color: var(--tooltip-border-color); border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.e:before { - border-left-color: #808080; + border-left-color: var(--tooltip-border-color); border-width: 11px; top: 50%; margin-top: -11px; @@ -1691,13 +1928,13 @@ tr.heading h2 { right: 100%; } #powerTip.w:after { - border-right-color: #FFFFFF; + border-right-color: var(--tooltip-border-color); border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.w:before { - border-right-color: #808080; + border-right-color: var(--tooltip-border-color); border-width: 11px; top: 50%; margin-top: -11px; @@ -1731,7 +1968,7 @@ table.markdownTable { } table.markdownTable td, table.markdownTable th { - border: 1px solid #002E5A; + border: 1px solid var(--table-cell-border-color); padding: 3px 7px 2px; } @@ -1739,8 +1976,8 @@ table.markdownTable tr { } th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { - background-color: #003E78; - color: #FFFFFF; + background-color: var(--table-header-background-color); + color: var(--table-header-foreground-color); font-size: 110%; padding-bottom: 4px; padding-top: 5px; @@ -1758,36 +1995,33 @@ th.markdownTableHeadCenter, td.markdownTableBodyCenter { text-align: center } -.DocNodeRTL { - text-align: right; - direction: rtl; +tt, code, kbd, samp +{ + display: inline-block; } +/* @end */ -.DocNodeLTR { - text-align: left; - direction: ltr; +u { + text-decoration: underline; } -table.DocNodeRTL { - width: auto; - margin-right: 0; - margin-left: auto; +details>summary { + list-style-type: none; } -table.DocNodeLTR { - width: auto; - margin-right: auto; - margin-left: 0; +details > summary::-webkit-details-marker { + display: none; } -tt, code, kbd, samp -{ - display: inline-block; - direction:ltr; +details>summary::before { + content: "\25ba"; + padding-right:4px; + font-size: 80%; } -/* @end */ -u { - text-decoration: underline; +details[open]>summary::before { + content: "\25bc"; + padding-right:4px; + font-size: 80%; } diff --git a/abcg/doc/html/doxygen.svg b/abcg/doc/html/doxygen.svg index 3f5ebcb6e..2bfeb7384 100644 --- a/abcg/doc/html/doxygen.svg +++ b/abcg/doc/html/doxygen.svg @@ -1,4 +1,6 @@ + @@ -17,7 +19,7 @@ - + diff --git a/abcg/doc/html/dynsections.js b/abcg/doc/html/dynsections.js index 3174bd7be..b73c82889 100644 --- a/abcg/doc/html/dynsections.js +++ b/abcg/doc/html/dynsections.js @@ -47,6 +47,8 @@ function updateStripes() { $('table.directory tr'). removeClass('even').filter(':visible:even').addClass('even'); + $('table.directory tr'). + removeClass('odd').filter(':visible:odd').addClass('odd'); } function toggleLevel(level) @@ -118,4 +120,73 @@ function toggleInherit(id) $(img).attr('src',src.substring(0,src.length-10)+'open.png'); } } + +var opened=true; +// in case HTML_COLORSTYLE is LIGHT or DARK the vars will be replaced, so we write them out explicitly and use double quotes +var plusImg = [ "var(--fold-plus-image)", "var(--fold-plus-image-relpath)" ]; +var minusImg = [ "var(--fold-minus-image)", "var(--fold-minus-image-relpath)" ]; + +// toggle all folding blocks +function codefold_toggle_all(relPath) { + if (opened) { + $('#fold_all').css('background-image',plusImg[relPath]); + $('div[id^=foldopen]').hide(); + $('div[id^=foldclosed]').show(); + } else { + $('#fold_all').css('background-image',minusImg[relPath]); + $('div[id^=foldopen]').show(); + $('div[id^=foldclosed]').hide(); + } + opened=!opened; +} + +// toggle single folding block +function codefold_toggle(id) { + $('#foldopen'+id).toggle(); + $('#foldclosed'+id).toggle(); +} +function init_codefold(relPath) { + $('span[class=lineno]').css( + {'padding-right':'4px', + 'margin-right':'2px', + 'display':'inline-block', + 'width':'54px', + 'background':'linear-gradient(var(--fold-line-color),var(--fold-line-color)) no-repeat 46px/2px 100%' + }); + // add global toggle to first line + $('span[class=lineno]:first').append(''); + // add vertical lines to other rows + $('span[class=lineno]').not(':eq(0)').append(''); + // add toggle controls to lines with fold divs + $('div[class=foldopen]').each(function() { + // extract specific id to use + var id = $(this).attr('id').replace('foldopen',''); + // extract start and end foldable fragment attributes + var start = $(this).attr('data-start'); + var end = $(this).attr('data-end'); + // replace normal fold span with controls for the first line of a foldable fragment + $(this).find('span[class=fold]:first').replaceWith(''); + // append div for folded (closed) representation + $(this).after(''); + // extract the first line from the "open" section to represent closed content + var line = $(this).children().first().clone(); + // remove any glow that might still be active on the original line + $(line).removeClass('glow'); + if (start) { + // if line already ends with a start marker (e.g. trailing {), remove it + $(line).html($(line).html().replace(new RegExp('\\s*'+start+'\\s*$','g'),'')); + } + // replace minus with plus symbol + $(line).find('span[class=fold]').css('background-image',plusImg[relPath]); + // append ellipsis + $(line).append(' '+start+''+end); + // insert constructed line into closed div + $('#foldclosed'+id).html(line); + }); +} + /* @license-end */ diff --git a/abcg/doc/html/files.html b/abcg/doc/html/files.html index 2b4358da0..694c8014b 100644 --- a/abcg/doc/html/files.html +++ b/abcg/doc/html/files.html @@ -5,7 +5,7 @@ - + ABCg: File List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,70 +94,76 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
File List
+
File List
Here is a list of all files with brief descriptions:
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
 abcg.hppShortcut header that includes the most common ABCg headers
 abcgApplication.cppDefinition of abcg::Application members
 abcgApplication.cppDefinition of abcg::Application members
 abcgApplication.hppHeader file of abcg::Application
 abcgEmbeddedFonts.hpp
 abcgEmbeddedFonts.hpp
 abcgException.cppDefinition of abcg::Exception members
 abcgException.hppHeader file of abcg::Exception and derived classes
 abcgException.hppHeader file of abcg::Exception and derived classes
 abcgExternal.hppHeader file for including third-party dependencies
 abcgImage.cppDefinition of image manipulation helper functions
 abcgImage.cppDefinition of image manipulation helper functions
 abcgImage.hppDeclaration of image manipulation helper functions
 abcgOpenGL.hppHeader file for OpenGL-related functions and classes
 abcgOpenGL.hppHeader file for OpenGL-related functions and classes
 abcgOpenGLError.cppDefinition of abcg::OpenGLError members
 abcgOpenGLError.hppHeader file of abcg::OpenGLError and derived classes
 abcgOpenGLError.hppHeader file of abcg::OpenGLError and derived classes
 abcgOpenGLExternal.hppHeader file for including OpenGL-related third-party dependencies
 abcgOpenGLFunction.cppDefinition of OpenGL-related error checking functions
 abcgOpenGLFunction.cppDefinition of OpenGL-related error checking functions
 abcgOpenGLFunction.hppDeclaration of OpenGL-related error checking functions
 abcgOpenGLImage.cppDefinition of OpenGL texture loading helper functions
 abcgOpenGLImage.cppDefinition of OpenGL texture loading helper functions
 abcgOpenGLImage.hppDeclaration of OpenGL texture loading helper functions
 abcgOpenGLShader.cppDefinition of helper functions for building OpenGL shaders
 abcgOpenGLShader.cppDefinition of helper functions for building OpenGL shaders
 abcgOpenGLShader.hppDeclaration of helper functions for building OpenGL shaders
 abcgOpenGLWindow.cppDefinition of abcg::OpenGLWindow members
 abcgOpenGLWindow.cppDefinition of abcg::OpenGLWindow members
 abcgOpenGLWindow.hppHeader file of abcg::OpenGLWindow
 abcgShader.hppDeclaration of a structure for building shaders
 abcgShader.hppDeclaration of a structure for building shaders
 abcgTimer.cppDefinition of abcg::Timer members
 abcgTimer.hppHeader file of abcg::Timer
 abcgTimer.hppHeader file of abcg::Timer
 abcgTrackball.cppDefinition of abcg::TrackBall members
 abcgTrackball.hppHeader file of abcg::TrackBall
 abcgTrackball.hppHeader file of abcg::TrackBall
 abcgUtil.cppGeneral utility functions
 abcgUtil.hppDeclaration of general utility functions
 abcgUtil.hppDeclaration of general utility functions
 abcgVulkan.hppHeader file for Vulkan-related functions and classes
 abcgVulkanBuffer.cppDefinition of abcg::VulkanBuffer
 abcgVulkanBuffer.cppDefinition of abcg::VulkanBuffer
 abcgVulkanBuffer.hppHeader file of abcg::VulkanBuffer
 abcgVulkanDevice.cppDefinition of abcg::VulkanDevice
 abcgVulkanDevice.cppDefinition of abcg::VulkanDevice
 abcgVulkanDevice.hppHeader file of abcg::VulkanDevice
 abcgVulkanError.cppDefinition of abcg::VulkanError members
 abcgVulkanError.cppDefinition of abcg::VulkanError members
 abcgVulkanError.hppHeader file of abcg::VulkanError and derived classes
 abcgVulkanExternal.hppHeader file for including Vulkan-related dependencies
 abcgVulkanExternal.hppHeader file for including Vulkan-related dependencies
 abcgVulkanImage.cppDefinition of abcg::VulkanImage
 abcgVulkanImage.hppHeader file of abcg::VulkanImage
 abcgVulkanImage.hppHeader file of abcg::VulkanImage
 abcgVulkanInstance.cppDefinition of abcg::VulkanInstance
 abcgVulkanInstance.hppHeader file of abcg::VulkanInstance
 abcgVulkanInstance.hppHeader file of abcg::VulkanInstance
 abcgVulkanPhysicalDevice.cppDefinition of abcg::VulkanPhysicalDevice
 abcgVulkanPhysicalDevice.hppHeader file of abcg::VulkanPhysicalDevice
 abcgVulkanPhysicalDevice.hppHeader file of abcg::VulkanPhysicalDevice
 abcgVulkanPipeline.cppDefinition of abcg::VulkanPipeline
 abcgVulkanPipeline.hppHeader file of abcg::VulkanPipeline
 abcgVulkanPipeline.hppHeader file of abcg::VulkanPipeline
 abcgVulkanShader.cppDefinition of helper functions for creating Vulkan shaders
 abcgVulkanShader.hppDeclaration of helper functions for creating Vulkan shaders
 abcgVulkanShader.hppDeclaration of helper functions for creating Vulkan shaders
 abcgVulkanSwapchain.cppDefinition of abcg::VulkanSwapchain
 abcgVulkanSwapchain.hppHeader file of abcg::VulkanSwapchain
 abcgVulkanSwapchain.hppHeader file of abcg::VulkanSwapchain
 abcgVulkanWindow.cppDefinition of abcg::VulkanWindow members
 abcgVulkanWindow.hppHeader file of abcg::VulkanWindow
 abcgVulkanWindow.hppHeader file of abcg::VulkanWindow
 abcgWindow.cppDefinition of abcg::Window members
 abcgWindow.hppHeader file of abcg::Window
 abcgWindow.hppHeader file of abcg::Window
@@ -164,7 +171,7 @@ diff --git a/abcg/doc/html/files_dup.js b/abcg/doc/html/files_dup.js index 230b559c7..f9c0ae665 100644 --- a/abcg/doc/html/files_dup.js +++ b/abcg/doc/html/files_dup.js @@ -5,12 +5,7 @@ var files_dup = [ "abcgApplication.hpp", "abcgApplication_8hpp.html", "abcgApplication_8hpp" ], [ "abcgEmbeddedFonts.hpp", "abcgEmbeddedFonts_8hpp.html", null ], [ "abcgException.cpp", "abcgException_8cpp.html", null ], - [ "abcgException.hpp", "abcgException_8hpp.html", [ - [ "Exception", "classabcg_1_1Exception.html", "classabcg_1_1Exception" ], - [ "RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], - [ "SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], - [ "SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ] - ] ], + [ "abcgException.hpp", "abcgException_8hpp.html", "abcgException_8hpp" ], [ "abcgExternal.hpp", "abcgExternal_8hpp.html", null ], [ "abcgImage.cpp", "abcgImage_8cpp.html", null ], [ "abcgImage.hpp", "abcgImage_8hpp.html", "abcgImage_8hpp" ], @@ -28,63 +23,33 @@ var files_dup = [ "abcgOpenGLWindow.hpp", "abcgOpenGLWindow_8hpp.html", "abcgOpenGLWindow_8hpp" ], [ "abcgShader.hpp", "abcgShader_8hpp.html", "abcgShader_8hpp" ], [ "abcgTimer.cpp", "abcgTimer_8cpp.html", null ], - [ "abcgTimer.hpp", "abcgTimer_8hpp.html", [ - [ "Timer", "classabcg_1_1Timer.html", "classabcg_1_1Timer" ] - ] ], + [ "abcgTimer.hpp", "abcgTimer_8hpp.html", "abcgTimer_8hpp" ], [ "abcgTrackball.cpp", "abcgTrackball_8cpp.html", null ], - [ "abcgTrackball.hpp", "abcgTrackball_8hpp.html", [ - [ "TrackBall", "classabcg_1_1TrackBall.html", "classabcg_1_1TrackBall" ] - ] ], + [ "abcgTrackball.hpp", "abcgTrackball_8hpp.html", "abcgTrackball_8hpp" ], [ "abcgUtil.cpp", "abcgUtil_8cpp.html", null ], [ "abcgUtil.hpp", "abcgUtil_8hpp.html", "abcgUtil_8hpp" ], [ "abcgVulkan.hpp", "abcgVulkan_8hpp.html", "abcgVulkan_8hpp" ], [ "abcgVulkanBuffer.cpp", "abcgVulkanBuffer_8cpp.html", null ], - [ "abcgVulkanBuffer.hpp", "abcgVulkanBuffer_8hpp.html", [ - [ "VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], - [ "VulkanBuffer", "classabcg_1_1VulkanBuffer.html", "classabcg_1_1VulkanBuffer" ] - ] ], + [ "abcgVulkanBuffer.hpp", "abcgVulkanBuffer_8hpp.html", "abcgVulkanBuffer_8hpp" ], [ "abcgVulkanDevice.cpp", "abcgVulkanDevice_8cpp.html", null ], - [ "abcgVulkanDevice.hpp", "abcgVulkanDevice_8hpp.html", [ - [ "VulkanCommandPools", "structabcg_1_1VulkanCommandPools.html", "structabcg_1_1VulkanCommandPools" ], - [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], - [ "VulkanDevice", "classabcg_1_1VulkanDevice.html", "classabcg_1_1VulkanDevice" ] - ] ], + [ "abcgVulkanDevice.hpp", "abcgVulkanDevice_8hpp.html", "abcgVulkanDevice_8hpp" ], [ "abcgVulkanError.cpp", "abcgVulkanError_8cpp.html", null ], [ "abcgVulkanError.hpp", "abcgVulkanError_8hpp.html", "abcgVulkanError_8hpp" ], [ "abcgVulkanExternal.hpp", "abcgVulkanExternal_8hpp.html", "abcgVulkanExternal_8hpp" ], [ "abcgVulkanImage.cpp", "abcgVulkanImage_8cpp.html", null ], - [ "abcgVulkanImage.hpp", "abcgVulkanImage_8hpp.html", [ - [ "VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], - [ "VulkanImage", "classabcg_1_1VulkanImage.html", "classabcg_1_1VulkanImage" ] - ] ], + [ "abcgVulkanImage.hpp", "abcgVulkanImage_8hpp.html", "abcgVulkanImage_8hpp" ], [ "abcgVulkanInstance.cpp", "abcgVulkanInstance_8cpp.html", null ], - [ "abcgVulkanInstance.hpp", "abcgVulkanInstance_8hpp.html", [ - [ "VulkanInstance", "classabcg_1_1VulkanInstance.html", "classabcg_1_1VulkanInstance" ] - ] ], + [ "abcgVulkanInstance.hpp", "abcgVulkanInstance_8hpp.html", "abcgVulkanInstance_8hpp" ], [ "abcgVulkanPhysicalDevice.cpp", "abcgVulkanPhysicalDevice_8cpp.html", null ], - [ "abcgVulkanPhysicalDevice.hpp", "abcgVulkanPhysicalDevice_8hpp.html", [ - [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], - [ "VulkanPhysicalDevice", "classabcg_1_1VulkanPhysicalDevice.html", "classabcg_1_1VulkanPhysicalDevice" ] - ] ], + [ "abcgVulkanPhysicalDevice.hpp", "abcgVulkanPhysicalDevice_8hpp.html", "abcgVulkanPhysicalDevice_8hpp" ], [ "abcgVulkanPipeline.cpp", "abcgVulkanPipeline_8cpp.html", null ], - [ "abcgVulkanPipeline.hpp", "abcgVulkanPipeline_8hpp.html", [ - [ "VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], - [ "VulkanPipeline", "classabcg_1_1VulkanPipeline.html", "classabcg_1_1VulkanPipeline" ] - ] ], + [ "abcgVulkanPipeline.hpp", "abcgVulkanPipeline_8hpp.html", "abcgVulkanPipeline_8hpp" ], [ "abcgVulkanShader.cpp", "abcgVulkanShader_8cpp.html", "abcgVulkanShader_8cpp" ], - [ "abcgVulkanShader.hpp", "abcgVulkanShader_8hpp.html", [ - [ "VulkanShader", "classabcg_1_1VulkanShader.html", "classabcg_1_1VulkanShader" ] - ] ], + [ "abcgVulkanShader.hpp", "abcgVulkanShader_8hpp.html", "abcgVulkanShader_8hpp" ], [ "abcgVulkanSwapchain.cpp", "abcgVulkanSwapchain_8cpp.html", null ], - [ "abcgVulkanSwapchain.hpp", "abcgVulkanSwapchain_8hpp.html", [ - [ "VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], - [ "VulkanSwapchain", "classabcg_1_1VulkanSwapchain.html", "classabcg_1_1VulkanSwapchain" ] - ] ], + [ "abcgVulkanSwapchain.hpp", "abcgVulkanSwapchain_8hpp.html", "abcgVulkanSwapchain_8hpp" ], [ "abcgVulkanWindow.cpp", "abcgVulkanWindow_8cpp.html", null ], - [ "abcgVulkanWindow.hpp", "abcgVulkanWindow_8hpp.html", [ - [ "VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], - [ "VulkanWindow", "classabcg_1_1VulkanWindow.html", "classabcg_1_1VulkanWindow" ] - ] ], + [ "abcgVulkanWindow.hpp", "abcgVulkanWindow_8hpp.html", "abcgVulkanWindow_8hpp" ], [ "abcgWindow.cpp", "abcgWindow_8cpp.html", null ], [ "abcgWindow.hpp", "abcgWindow_8hpp.html", "abcgWindow_8hpp" ] ]; \ No newline at end of file diff --git a/abcg/doc/html/folderclosed.png b/abcg/doc/html/folderclosed.png deleted file mode 100644 index 6963cc018..000000000 Binary files a/abcg/doc/html/folderclosed.png and /dev/null differ diff --git a/abcg/doc/html/folderclosed.svg b/abcg/doc/html/folderclosed.svg new file mode 100644 index 000000000..3fe1ba6ed --- /dev/null +++ b/abcg/doc/html/folderclosed.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/abcg/doc/html/folderclosedd.svg b/abcg/doc/html/folderclosedd.svg new file mode 100644 index 000000000..2c15e7e2f --- /dev/null +++ b/abcg/doc/html/folderclosedd.svg @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/abcg/doc/html/folderopen.png b/abcg/doc/html/folderopen.png deleted file mode 100644 index 5372b851d..000000000 Binary files a/abcg/doc/html/folderopen.png and /dev/null differ diff --git a/abcg/doc/html/folderopen.svg b/abcg/doc/html/folderopen.svg new file mode 100644 index 000000000..923a0c201 --- /dev/null +++ b/abcg/doc/html/folderopen.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/abcg/doc/html/folderopend.svg b/abcg/doc/html/folderopend.svg new file mode 100644 index 000000000..c5f2bbffb --- /dev/null +++ b/abcg/doc/html/folderopend.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/abcg/doc/html/form_0.png b/abcg/doc/html/form_0.png deleted file mode 100644 index a35ce562d..000000000 Binary files a/abcg/doc/html/form_0.png and /dev/null differ diff --git a/abcg/doc/html/form_1.png b/abcg/doc/html/form_1.png deleted file mode 100644 index 2280d0785..000000000 Binary files a/abcg/doc/html/form_1.png and /dev/null differ diff --git a/abcg/doc/html/formula.repository b/abcg/doc/html/formula.repository deleted file mode 100644 index 002cf9ef8..000000000 --- a/abcg/doc/html/formula.repository +++ /dev/null @@ -1,2 +0,0 @@ -\_form#0=116x14:$\lfloor \log_2(\max(w, h)) \rfloor + 1$ -\_form#1=30x14:$(w,h)$ diff --git a/abcg/doc/html/functions.html b/abcg/doc/html/functions.html index 0bd887c59..50d16f0cd 100644 --- a/abcg/doc/html/functions.html +++ b/abcg/doc/html/functions.html @@ -5,7 +5,7 @@ - + ABCg: Class Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,556 +94,244 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all class members with links to the classes they belong to:
-

- a -

diff --git a/abcg/doc/html/functions_func.html b/abcg/doc/html/functions_func.html index 3f7435cbe..8ad6ab770 100644 --- a/abcg/doc/html/functions_func.html +++ b/abcg/doc/html/functions_func.html @@ -5,7 +5,7 @@ - + ABCg: Class Members - Functions @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,367 +94,178 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all functions with links to the classes they belong to:
-

- a -

diff --git a/abcg/doc/html/functions_rela.html b/abcg/doc/html/functions_rela.html index 2dc8f704d..444a7720a 100644 --- a/abcg/doc/html/functions_rela.html +++ b/abcg/doc/html/functions_rela.html @@ -5,9 +5,9 @@ - + - ABCg: Class Members - Related Functions + ABCg: Class Members - Related Symbols @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,23 +94,28 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
    -
  • resizingEventWatcher -: abcg::Window -
  • +
    Here is a list of all related symbols with links to the classes they belong to:
diff --git a/abcg/doc/html/functions_vars.html b/abcg/doc/html/functions_vars.html index 020ad299f..f515c3520 100644 --- a/abcg/doc/html/functions_vars.html +++ b/abcg/doc/html/functions_vars.html @@ -5,7 +5,7 @@ - + ABCg: Class Members - Variables @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,258 +94,143 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all variables with links to the classes they belong to:
-

- a -

diff --git a/abcg/doc/html/globals.html b/abcg/doc/html/globals.html index d3bd05ed9..49a5ee92a 100644 --- a/abcg/doc/html/globals.html +++ b/abcg/doc/html/globals.html @@ -5,7 +5,7 @@ - + ABCg: File Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,41 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all file members with links to the files they belong to:
diff --git a/abcg/doc/html/globals_defs.html b/abcg/doc/html/globals_defs.html index f0d9356b7..1c48a03d4 100644 --- a/abcg/doc/html/globals_defs.html +++ b/abcg/doc/html/globals_defs.html @@ -5,7 +5,7 @@ - + ABCg: File Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,38 +94,33 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
diff --git a/abcg/doc/html/globals_func.html b/abcg/doc/html/globals_func.html index c7d42ce0c..549ccce5c 100644 --- a/abcg/doc/html/globals_func.html +++ b/abcg/doc/html/globals_func.html @@ -5,7 +5,7 @@ - + ABCg: File Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,23 +94,28 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+

diff --git a/abcg/doc/html/graph_legend.html b/abcg/doc/html/graph_legend.html index 9234f98ab..67e8f7339 100644 --- a/abcg/doc/html/graph_legend.html +++ b/abcg/doc/html/graph_legend.html @@ -5,7 +5,7 @@ - + ABCg: Graph Legend @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Graph Legend
+
Graph Legend

This page explains how to interpret the graphs that are generated by doxygen.

@@ -139,7 +146,7 @@
Used *m_usedClass;
};

This will result in the following graph:

-

The boxes in the above graph have the following meaning:

+

The boxes in the above graph have the following meaning:

  • A filled gray box represents the struct or class for which the graph is generated.
  • @@ -153,7 +160,7 @@

    The arrows have the following meaning:

    • -A dark blue arrow is used to visualize a public inheritance relation between two classes.
    • +A blue arrow is used to visualize a public inheritance relation between two classes.
    • A dark green arrow is used for protected inheritance.
    • @@ -168,7 +175,7 @@ diff --git a/abcg/doc/html/graph_legend.md5 b/abcg/doc/html/graph_legend.md5 index a87a87b1d..da515da9d 100644 --- a/abcg/doc/html/graph_legend.md5 +++ b/abcg/doc/html/graph_legend.md5 @@ -1 +1 @@ -3d1a1f8347851263caf62de626b3c876 \ No newline at end of file +f74606a252eb303675caf37987d0b7af \ No newline at end of file diff --git a/abcg/doc/html/graph_legend.png b/abcg/doc/html/graph_legend.png deleted file mode 100644 index 7e2cbcfb2..000000000 Binary files a/abcg/doc/html/graph_legend.png and /dev/null differ diff --git a/abcg/doc/html/graph_legend.svg b/abcg/doc/html/graph_legend.svg index c304fde9d..f90d1bfbb 100644 --- a/abcg/doc/html/graph_legend.svg +++ b/abcg/doc/html/graph_legend.svg @@ -9,108 +9,159 @@ Graph Legend - + Node9 - + + Inherited + + - + Node10 - + + PublicBase + + Node10->Node9 - - + + + + + - + Node11 - + + Truncated + + Node11->Node10 - - + + + + + Node13 - + + ProtectedBase + + Node13->Node9 + + + Node14 - + + PrivateBase + + Node14->Node9 + + + - + Node15 - + + Undocumented + + Node15->Node9 - - + + + + + Node16 - + + Templ< int > + + Node16->Node9 - - + + + + + Node17 - + + Templ< T > + + Node17->Node16 + -< int > + + +< int > Node18 - + + Used + + Node18->Node9 + -m_usedClass + + +m_usedClass diff --git a/abcg/doc/html/hierarchy.html b/abcg/doc/html/hierarchy.html index 85d019c07..760d7e054 100644 --- a/abcg/doc/html/hierarchy.html +++ b/abcg/doc/html/hierarchy.html @@ -5,7 +5,7 @@ - + ABCg: Class Hierarchy @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
      ABCg -  v3.1.1 +  v3.1.2
      Development framework for MCTA008-17
      @@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,14 +94,20 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Class Hierarchy
+
Class Hierarchy
@@ -108,39 +115,39 @@ This inheritance list is sorted roughly, but not completely, alphabetically:
[detail level 123]
- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
 Cabcg::ApplicationManages the application's control flow
 Cstd::exception
 Cstd::exception
 Cabcg::ExceptionBase class for ABCg exception objects
 Cabcg::OpenGLErrorRepresents an exception object for OpenGL errors
 Cabcg::OpenGLErrorRepresents an exception object for OpenGL errors
 Cabcg::RuntimeErrorRepresents an exception object for runtime errors
 Cabcg::SDLErrorRepresents an exception object for SDL errors
 Cabcg::SDLErrorRepresents an exception object for SDL errors
 Cabcg::SDLImageErrorRepresents an exception object for SDL_image errors
 Cabcg::VulkanErrorRepresents an exception object for Vulkan runtime errors
 Cabcg::VulkanErrorRepresents an exception object for Vulkan runtime errors
 Cabcg::OpenGLCubemapCreateInfoConfiguration settings for creating a cubemap texture for OpenGL
 Cabcg::OpenGLSettingsConfiguration settings for creating an OpenGL context
 Cabcg::OpenGLSettingsConfiguration settings for creating an OpenGL context
 Cabcg::OpenGLShaderOpenGL shader object and its corresponding stage
 Cabcg::OpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 Cabcg::OpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 Cabcg::ShaderSourceShader source code and corresponding stage
 Cabcg::TimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 Cabcg::TimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 Cabcg::TrackBallManages a virtual trackball
 Cabcg::VulkanBufferA class for representing a Vulkan buffer
 Cabcg::VulkanBufferA class for representing a Vulkan buffer
 Cabcg::VulkanBufferCreateInfoCreation info structure for abcg::VulkanBuffer::create
 Cabcg::VulkanCommandPoolsCommand pools associated with a Vulkan device
 Cabcg::VulkanCommandPoolsCommand pools associated with a Vulkan device
 Cabcg::VulkanDeviceA class for representing a Vulkan logical device and related resources
 Cabcg::VulkanFrameData needed by a rendering frame
 Cabcg::VulkanFrameData needed by a rendering frame
 Cabcg::VulkanImageA class for representing a Vulkan image
 Cabcg::VulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 Cabcg::VulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 Cabcg::VulkanInstanceA class for representing a Vulkan instance
 Cabcg::VulkanPhysicalDeviceA class for representing a Vulkan physical device
 Cabcg::VulkanPhysicalDeviceA class for representing a Vulkan physical device
 Cabcg::VulkanPipelineA class for representing a Vulkan pipeline
 Cabcg::VulkanPipelineCreateInfoCreation info structure for abcg::VulkanPipeline::create
 Cabcg::VulkanPipelineCreateInfoCreation info structure for abcg::VulkanPipeline::create
 Cabcg::VulkanQueuesQueues associated with a Vulkan device
 Cabcg::VulkanQueuesFamiliesSupported queues families
 Cabcg::VulkanQueuesFamiliesSupported queues families
 Cabcg::VulkanSettingsConfiguration settings for creating a Vulkan context
 Cabcg::VulkanShaderA class for representing a Vulkan shader
 Cabcg::VulkanShaderA class for representing a Vulkan shader
 Cabcg::VulkanSwapchainA class for representing a Vulkan swapchain
 Cabcg::WindowBase abstract class that represents a SDL window
 Cabcg::WindowBase abstract class that represents a SDL window
 Cabcg::OpenGLWindowBase class for a window that displays graphics using an OpenGL context
 Cabcg::VulkanWindowBase class for a window that displays graphics using a Vulkan context
 Cabcg::VulkanWindowBase class for a window that displays graphics using a Vulkan context
 Cabcg::WindowSettingsConfiguration settings of a window
@@ -149,7 +156,7 @@ diff --git a/abcg/doc/html/index.html b/abcg/doc/html/index.html index 916839561..0e37c84fa 100644 --- a/abcg/doc/html/index.html +++ b/abcg/doc/html/index.html @@ -5,7 +5,7 @@ - + ABCg: ABCg @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,19 +94,25 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
-
ABCg
+
+
ABCg
-

build workflow GitHub release (latest by date)

+

build workflow GitHub release (latest by date)

Development framework accompanying the course MCTA008-17 Computer Graphics at UFABC.

-

Documentation | Release notes

+

Documentation | Release notes

ABCg is a lightweight C++ framework that simplifies the development of 3D graphics applications based on OpenGL, OpenGL ES, WebGL, and Vulkan. It is designed for the tutorials and assignments of the course "MCTA008-17 Computer Graphics" taught at Federal University of ABC (UFABC).


@@ -193,7 +200,7 @@

diff --git a/abcg/doc/html/inherit_graph_0.map b/abcg/doc/html/inherit_graph_0.map index 918d5b681..4cb9d9592 100644 --- a/abcg/doc/html/inherit_graph_0.map +++ b/abcg/doc/html/inherit_graph_0.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_0.md5 b/abcg/doc/html/inherit_graph_0.md5 index 48ce69369..a4c715c49 100644 --- a/abcg/doc/html/inherit_graph_0.md5 +++ b/abcg/doc/html/inherit_graph_0.md5 @@ -1 +1 @@ -0a64e051ab1ed264ee6b1fcc25c5aab9 \ No newline at end of file +e9ff50cb441f6d64f9816b91ed8783cf \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_0.svg b/abcg/doc/html/inherit_graph_0.svg index d38d966a6..c9808dc1a 100644 --- a/abcg/doc/html/inherit_graph_0.svg +++ b/abcg/doc/html/inherit_graph_0.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::Application + + +abcg::Application diff --git a/abcg/doc/html/inherit_graph_1.map b/abcg/doc/html/inherit_graph_1.map index f08622275..3428f1301 100644 --- a/abcg/doc/html/inherit_graph_1.map +++ b/abcg/doc/html/inherit_graph_1.map @@ -1,8 +1,3 @@ - - - - - - + diff --git a/abcg/doc/html/inherit_graph_1.md5 b/abcg/doc/html/inherit_graph_1.md5 index 1c24be990..681fd8d89 100644 --- a/abcg/doc/html/inherit_graph_1.md5 +++ b/abcg/doc/html/inherit_graph_1.md5 @@ -1 +1 @@ -0f48fe5ed009737d66879481ab38bd77 \ No newline at end of file +732c7cce477b49d4358f5b9f1f3ff372 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_1.svg b/abcg/doc/html/inherit_graph_1.svg index bbb357d3e..aa17bb3af 100644 --- a/abcg/doc/html/inherit_graph_1.svg +++ b/abcg/doc/html/inherit_graph_1.svg @@ -4,99 +4,18 @@ - - + + Graphical Class Hierarchy - - -Node2 - - -abcg::RuntimeError - - - - + Node0 - - -abcg::Exception + + +abcg::OpenGLCubemapCreateInfo - - -Node2->Node0 - - - - - -Node0->Node2 - - - - - -Node1 - - -abcg::OpenGLError - - - - - -Node0->Node1 - - - - - -Node3 - - -abcg::SDLError - - - - - -Node0->Node3 - - - - - -Node4 - - -abcg::SDLImageError - - - - - -Node0->Node4 - - - - - -Node5 - - -abcg::VulkanError - - - - - -Node0->Node5 - - - diff --git a/abcg/doc/html/inherit_graph_10.map b/abcg/doc/html/inherit_graph_10.map index 93c3c3401..127ac0b6c 100644 --- a/abcg/doc/html/inherit_graph_10.map +++ b/abcg/doc/html/inherit_graph_10.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_10.md5 b/abcg/doc/html/inherit_graph_10.md5 index fcbf6e394..0a2d129ba 100644 --- a/abcg/doc/html/inherit_graph_10.md5 +++ b/abcg/doc/html/inherit_graph_10.md5 @@ -1 +1 @@ -349a07feab46267abc99a40b01a57f78 \ No newline at end of file +52a987eda9ae7081f5b939162447358f \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_10.svg b/abcg/doc/html/inherit_graph_10.svg index 7c910169f..6ea7384bf 100644 --- a/abcg/doc/html/inherit_graph_10.svg +++ b/abcg/doc/html/inherit_graph_10.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanBufferCreateInfo + + +abcg::VulkanCommandPools diff --git a/abcg/doc/html/inherit_graph_11.map b/abcg/doc/html/inherit_graph_11.map index 1b595434d..f5c383d98 100644 --- a/abcg/doc/html/inherit_graph_11.map +++ b/abcg/doc/html/inherit_graph_11.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_11.md5 b/abcg/doc/html/inherit_graph_11.md5 index 116a2efe2..d2b47d744 100644 --- a/abcg/doc/html/inherit_graph_11.md5 +++ b/abcg/doc/html/inherit_graph_11.md5 @@ -1 +1 @@ -b0e9b3e317fb62ea78000990cb970348 \ No newline at end of file +fcfa10ac1524e80140db7f5563f22b17 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_11.svg b/abcg/doc/html/inherit_graph_11.svg index 38e95043b..188b1cc91 100644 --- a/abcg/doc/html/inherit_graph_11.svg +++ b/abcg/doc/html/inherit_graph_11.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanCommandPools + + +abcg::VulkanDevice diff --git a/abcg/doc/html/inherit_graph_12.map b/abcg/doc/html/inherit_graph_12.map index 4b8cc1802..835ad4a4e 100644 --- a/abcg/doc/html/inherit_graph_12.map +++ b/abcg/doc/html/inherit_graph_12.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_12.md5 b/abcg/doc/html/inherit_graph_12.md5 index 56d05a1d0..1a7d53dde 100644 --- a/abcg/doc/html/inherit_graph_12.md5 +++ b/abcg/doc/html/inherit_graph_12.md5 @@ -1 +1 @@ -19ca9755fd5a62e95c32f3820065ff3b \ No newline at end of file +199e9d5043b6b0b799d5738bedb54511 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_12.svg b/abcg/doc/html/inherit_graph_12.svg index b58d39f3f..fa18978dc 100644 --- a/abcg/doc/html/inherit_graph_12.svg +++ b/abcg/doc/html/inherit_graph_12.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanDevice + + +abcg::VulkanFrame diff --git a/abcg/doc/html/inherit_graph_13.map b/abcg/doc/html/inherit_graph_13.map index bd937da86..5626a3d4f 100644 --- a/abcg/doc/html/inherit_graph_13.map +++ b/abcg/doc/html/inherit_graph_13.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_13.md5 b/abcg/doc/html/inherit_graph_13.md5 index 39eec3ad9..59f7c343f 100644 --- a/abcg/doc/html/inherit_graph_13.md5 +++ b/abcg/doc/html/inherit_graph_13.md5 @@ -1 +1 @@ -7228805d08416f9c4a4008a5d9b1ccf6 \ No newline at end of file +caa1782194e5e3d9c4d9cc2b78dc90e6 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_13.svg b/abcg/doc/html/inherit_graph_13.svg index e5f89e839..3b5aead30 100644 --- a/abcg/doc/html/inherit_graph_13.svg +++ b/abcg/doc/html/inherit_graph_13.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanFrame + + +abcg::VulkanImage diff --git a/abcg/doc/html/inherit_graph_14.map b/abcg/doc/html/inherit_graph_14.map index c46446932..876d75735 100644 --- a/abcg/doc/html/inherit_graph_14.map +++ b/abcg/doc/html/inherit_graph_14.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_14.md5 b/abcg/doc/html/inherit_graph_14.md5 index 9ed94ebc8..8f6cda8ab 100644 --- a/abcg/doc/html/inherit_graph_14.md5 +++ b/abcg/doc/html/inherit_graph_14.md5 @@ -1 +1 @@ -b56f8cad582e2b0dbd4fd911310bb281 \ No newline at end of file +25c810ca0d62d4dd2ec8d25515a90b9a \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_14.svg b/abcg/doc/html/inherit_graph_14.svg index f7655acde..7563f7aca 100644 --- a/abcg/doc/html/inherit_graph_14.svg +++ b/abcg/doc/html/inherit_graph_14.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanImage + + +abcg::VulkanImageCreateInfo diff --git a/abcg/doc/html/inherit_graph_15.map b/abcg/doc/html/inherit_graph_15.map index f6ba04081..ae095cd57 100644 --- a/abcg/doc/html/inherit_graph_15.map +++ b/abcg/doc/html/inherit_graph_15.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_15.md5 b/abcg/doc/html/inherit_graph_15.md5 index e7a74c8d1..7196eb878 100644 --- a/abcg/doc/html/inherit_graph_15.md5 +++ b/abcg/doc/html/inherit_graph_15.md5 @@ -1 +1 @@ -e907c98ef3428e44a1f81ee297679035 \ No newline at end of file +5df2c32d85176bb54a1022c65ff3a672 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_15.svg b/abcg/doc/html/inherit_graph_15.svg index 29b19978f..6d8edb507 100644 --- a/abcg/doc/html/inherit_graph_15.svg +++ b/abcg/doc/html/inherit_graph_15.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanImageCreateInfo + + +abcg::VulkanInstance diff --git a/abcg/doc/html/inherit_graph_16.map b/abcg/doc/html/inherit_graph_16.map index 46a99fb77..3e733519b 100644 --- a/abcg/doc/html/inherit_graph_16.map +++ b/abcg/doc/html/inherit_graph_16.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_16.md5 b/abcg/doc/html/inherit_graph_16.md5 index c7d49cde0..c7afa7d6a 100644 --- a/abcg/doc/html/inherit_graph_16.md5 +++ b/abcg/doc/html/inherit_graph_16.md5 @@ -1 +1 @@ -2f3d4f7d147b87561567fdbdff81582c \ No newline at end of file +912e413a74caf90a1afa557077e56869 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_16.svg b/abcg/doc/html/inherit_graph_16.svg index a37da42cf..87a643a09 100644 --- a/abcg/doc/html/inherit_graph_16.svg +++ b/abcg/doc/html/inherit_graph_16.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanInstance + + +abcg::VulkanPhysicalDevice diff --git a/abcg/doc/html/inherit_graph_17.map b/abcg/doc/html/inherit_graph_17.map index 1ef73a6e9..087ddf8b2 100644 --- a/abcg/doc/html/inherit_graph_17.map +++ b/abcg/doc/html/inherit_graph_17.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_17.md5 b/abcg/doc/html/inherit_graph_17.md5 index 1d39f7c4d..b94a42205 100644 --- a/abcg/doc/html/inherit_graph_17.md5 +++ b/abcg/doc/html/inherit_graph_17.md5 @@ -1 +1 @@ -74494c2471144d6f2bb12f4646f8ed89 \ No newline at end of file +3619453e8bf5846753afcbe2d3e4d660 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_17.svg b/abcg/doc/html/inherit_graph_17.svg index 5e6765116..7cee66c23 100644 --- a/abcg/doc/html/inherit_graph_17.svg +++ b/abcg/doc/html/inherit_graph_17.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanPhysicalDevice + + +abcg::VulkanPipeline diff --git a/abcg/doc/html/inherit_graph_18.map b/abcg/doc/html/inherit_graph_18.map index 429c4f674..1239ce237 100644 --- a/abcg/doc/html/inherit_graph_18.map +++ b/abcg/doc/html/inherit_graph_18.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_18.md5 b/abcg/doc/html/inherit_graph_18.md5 index 5ec92513b..b3ea1a138 100644 --- a/abcg/doc/html/inherit_graph_18.md5 +++ b/abcg/doc/html/inherit_graph_18.md5 @@ -1 +1 @@ -971f0c52a86ec6d6d3a83be0a11c8af1 \ No newline at end of file +a8bbcb7a408b909d65b5d56ef7980860 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_18.svg b/abcg/doc/html/inherit_graph_18.svg index df649639c..aa9bbb5e7 100644 --- a/abcg/doc/html/inherit_graph_18.svg +++ b/abcg/doc/html/inherit_graph_18.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanPipeline + + +abcg::VulkanPipelineCreateInfo diff --git a/abcg/doc/html/inherit_graph_19.map b/abcg/doc/html/inherit_graph_19.map index 9cc0dea69..c7d1f9bee 100644 --- a/abcg/doc/html/inherit_graph_19.map +++ b/abcg/doc/html/inherit_graph_19.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_19.md5 b/abcg/doc/html/inherit_graph_19.md5 index 0f350cb99..f0b70e240 100644 --- a/abcg/doc/html/inherit_graph_19.md5 +++ b/abcg/doc/html/inherit_graph_19.md5 @@ -1 +1 @@ -31594793aa59900e8073f20ffa3a2612 \ No newline at end of file +7acd3e6d2765d484fc60b1cf4288c91b \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_19.svg b/abcg/doc/html/inherit_graph_19.svg index 96b596cdc..804607730 100644 --- a/abcg/doc/html/inherit_graph_19.svg +++ b/abcg/doc/html/inherit_graph_19.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanPipelineCreateInfo + + +abcg::VulkanQueues diff --git a/abcg/doc/html/inherit_graph_2.map b/abcg/doc/html/inherit_graph_2.map index 2401a4cc4..00925be29 100644 --- a/abcg/doc/html/inherit_graph_2.map +++ b/abcg/doc/html/inherit_graph_2.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_2.md5 b/abcg/doc/html/inherit_graph_2.md5 index 6f93185d6..b43068d42 100644 --- a/abcg/doc/html/inherit_graph_2.md5 +++ b/abcg/doc/html/inherit_graph_2.md5 @@ -1 +1 @@ -311b5d26e2b3c91ab158de5937a0c5b4 \ No newline at end of file +46534eccf5afc381a0a09ed7362999f3 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_2.svg b/abcg/doc/html/inherit_graph_2.svg index 5289bb9c8..c64c3284a 100644 --- a/abcg/doc/html/inherit_graph_2.svg +++ b/abcg/doc/html/inherit_graph_2.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::OpenGLCubemapCreateInfo + + +abcg::OpenGLSettings diff --git a/abcg/doc/html/inherit_graph_20.map b/abcg/doc/html/inherit_graph_20.map index ce5359ff7..d9eeeaca0 100644 --- a/abcg/doc/html/inherit_graph_20.map +++ b/abcg/doc/html/inherit_graph_20.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_20.md5 b/abcg/doc/html/inherit_graph_20.md5 index 8520c35b9..86cd3295f 100644 --- a/abcg/doc/html/inherit_graph_20.md5 +++ b/abcg/doc/html/inherit_graph_20.md5 @@ -1 +1 @@ -d0569912961714ca817a4354d460a2ef \ No newline at end of file +c5545c3757cc6535e8590957ad14cae5 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_20.svg b/abcg/doc/html/inherit_graph_20.svg index fe67bd7fd..bea8e73df 100644 --- a/abcg/doc/html/inherit_graph_20.svg +++ b/abcg/doc/html/inherit_graph_20.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanQueues + + +abcg::VulkanQueuesFamilies diff --git a/abcg/doc/html/inherit_graph_21.map b/abcg/doc/html/inherit_graph_21.map index e1419c614..53785cd87 100644 --- a/abcg/doc/html/inherit_graph_21.map +++ b/abcg/doc/html/inherit_graph_21.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_21.md5 b/abcg/doc/html/inherit_graph_21.md5 index b2bde78a2..21d407360 100644 --- a/abcg/doc/html/inherit_graph_21.md5 +++ b/abcg/doc/html/inherit_graph_21.md5 @@ -1 +1 @@ -3eccd3e008736e963ef4478d5b94ec5b \ No newline at end of file +05ae2be34e35fb8e1dfd7ce1ebaa3b2c \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_21.svg b/abcg/doc/html/inherit_graph_21.svg index 109b958ef..d168a07a3 100644 --- a/abcg/doc/html/inherit_graph_21.svg +++ b/abcg/doc/html/inherit_graph_21.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanQueuesFamilies + + +abcg::VulkanSettings diff --git a/abcg/doc/html/inherit_graph_22.map b/abcg/doc/html/inherit_graph_22.map index 66cddf09f..af0d86ac1 100644 --- a/abcg/doc/html/inherit_graph_22.map +++ b/abcg/doc/html/inherit_graph_22.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_22.md5 b/abcg/doc/html/inherit_graph_22.md5 index 61278e93b..e1f368e1b 100644 --- a/abcg/doc/html/inherit_graph_22.md5 +++ b/abcg/doc/html/inherit_graph_22.md5 @@ -1 +1 @@ -f37a7849cdc83abfd3a6bd807afb0ce9 \ No newline at end of file +3c6192554c8e63631f933905d65f6f58 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_22.svg b/abcg/doc/html/inherit_graph_22.svg index bf0792fb8..f0cde409b 100644 --- a/abcg/doc/html/inherit_graph_22.svg +++ b/abcg/doc/html/inherit_graph_22.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanSettings + + +abcg::VulkanShader diff --git a/abcg/doc/html/inherit_graph_23.map b/abcg/doc/html/inherit_graph_23.map index 28ca52013..aba69a597 100644 --- a/abcg/doc/html/inherit_graph_23.map +++ b/abcg/doc/html/inherit_graph_23.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_23.md5 b/abcg/doc/html/inherit_graph_23.md5 index 15930b2ba..d3f1b7b9c 100644 --- a/abcg/doc/html/inherit_graph_23.md5 +++ b/abcg/doc/html/inherit_graph_23.md5 @@ -1 +1 @@ -4943986d843577e7d752316705f3f4e9 \ No newline at end of file +1003d628fa72280faccd7a56e886416f \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_23.svg b/abcg/doc/html/inherit_graph_23.svg index 4d1c3013d..39d781647 100644 --- a/abcg/doc/html/inherit_graph_23.svg +++ b/abcg/doc/html/inherit_graph_23.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanShader + + +abcg::VulkanSwapchain diff --git a/abcg/doc/html/inherit_graph_24.map b/abcg/doc/html/inherit_graph_24.map index 341b33666..99114b252 100644 --- a/abcg/doc/html/inherit_graph_24.map +++ b/abcg/doc/html/inherit_graph_24.map @@ -1,3 +1,7 @@ - + + + + + diff --git a/abcg/doc/html/inherit_graph_24.md5 b/abcg/doc/html/inherit_graph_24.md5 index 090252e50..8ec56e2a9 100644 --- a/abcg/doc/html/inherit_graph_24.md5 +++ b/abcg/doc/html/inherit_graph_24.md5 @@ -1 +1 @@ -129d564764fb2d3c5cfdaaf002dc013f \ No newline at end of file +642eaaf833b31102d5da2cab7212ffdf \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_24.svg b/abcg/doc/html/inherit_graph_24.svg index dadb07da8..030351c7c 100644 --- a/abcg/doc/html/inherit_graph_24.svg +++ b/abcg/doc/html/inherit_graph_24.svg @@ -4,16 +4,52 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanSwapchain + + +abcg::Window + + + + + +Node1 + + +abcg::OpenGLWindow + + + + + +Node0->Node1 + + + + + + + + +Node2 + + +abcg::VulkanWindow + + + + + +Node0->Node2 + + + diff --git a/abcg/doc/html/inherit_graph_25.map b/abcg/doc/html/inherit_graph_25.map index 280dd4b51..eb43f5b55 100644 --- a/abcg/doc/html/inherit_graph_25.map +++ b/abcg/doc/html/inherit_graph_25.map @@ -1,5 +1,3 @@ - - - + diff --git a/abcg/doc/html/inherit_graph_25.md5 b/abcg/doc/html/inherit_graph_25.md5 index 8091dfd7b..b1dd5f95b 100644 --- a/abcg/doc/html/inherit_graph_25.md5 +++ b/abcg/doc/html/inherit_graph_25.md5 @@ -1 +1 @@ -abb3e5f03a82841df3d927213e22a7e0 \ No newline at end of file +f544560a26eb1d87134d5523f2383641 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_25.svg b/abcg/doc/html/inherit_graph_25.svg index c10011953..9b0785111 100644 --- a/abcg/doc/html/inherit_graph_25.svg +++ b/abcg/doc/html/inherit_graph_25.svg @@ -4,48 +4,18 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::Window + + +abcg::WindowSettings - - -Node1 - - -abcg::OpenGLWindow - - - - - -Node0->Node1 - - - - - -Node2 - - -abcg::VulkanWindow - - - - - -Node0->Node2 - - - diff --git a/abcg/doc/html/inherit_graph_26.map b/abcg/doc/html/inherit_graph_26.map index 68fc0e32e..fba3acdb8 100644 --- a/abcg/doc/html/inherit_graph_26.map +++ b/abcg/doc/html/inherit_graph_26.map @@ -1,3 +1,15 @@ - + + + + + + + + + + + + + diff --git a/abcg/doc/html/inherit_graph_26.md5 b/abcg/doc/html/inherit_graph_26.md5 index 6ca3cab3d..20021107d 100644 --- a/abcg/doc/html/inherit_graph_26.md5 +++ b/abcg/doc/html/inherit_graph_26.md5 @@ -1 +1 @@ -3b20058175db63d64a7fefa18690a5ba \ No newline at end of file +3dedfcd9c5da7b92cbece96ff73c5e54 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_26.svg b/abcg/doc/html/inherit_graph_26.svg index 9b5bf8ca1..a8c8fdbb8 100644 --- a/abcg/doc/html/inherit_graph_26.svg +++ b/abcg/doc/html/inherit_graph_26.svg @@ -4,16 +4,124 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::WindowSettings + + +std::exception + + + + + +Node1 + + +abcg::Exception + + + + + +Node0->Node1 + + + + + + + + +Node2 + + +abcg::OpenGLError + + + + + +Node1->Node2 + + + + + + + + +Node3 + + +abcg::RuntimeError + + + + + +Node1->Node3 + + + + + + + + +Node4 + + +abcg::SDLError + + + + + +Node1->Node4 + + + + + + + + +Node5 + + +abcg::SDLImageError + + + + + +Node1->Node5 + + + + + + + + +Node6 + + +abcg::VulkanError + + + + + +Node1->Node6 + + + diff --git a/abcg/doc/html/inherit_graph_3.map b/abcg/doc/html/inherit_graph_3.map index 49c464632..79e60c900 100644 --- a/abcg/doc/html/inherit_graph_3.map +++ b/abcg/doc/html/inherit_graph_3.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_3.md5 b/abcg/doc/html/inherit_graph_3.md5 index 2b3963c97..e4dcb0233 100644 --- a/abcg/doc/html/inherit_graph_3.md5 +++ b/abcg/doc/html/inherit_graph_3.md5 @@ -1 +1 @@ -a5e22778ea0c84dcb64bde5d600392e5 \ No newline at end of file +1a38ee8aed5fb2c6e1ee176a2e5264c2 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_3.svg b/abcg/doc/html/inherit_graph_3.svg index 8e91610c2..fd9a374bb 100644 --- a/abcg/doc/html/inherit_graph_3.svg +++ b/abcg/doc/html/inherit_graph_3.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::OpenGLSettings + + +abcg::OpenGLShader diff --git a/abcg/doc/html/inherit_graph_4.map b/abcg/doc/html/inherit_graph_4.map index 282219920..ac83b319c 100644 --- a/abcg/doc/html/inherit_graph_4.map +++ b/abcg/doc/html/inherit_graph_4.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_4.md5 b/abcg/doc/html/inherit_graph_4.md5 index e9f21905f..68a9fa86c 100644 --- a/abcg/doc/html/inherit_graph_4.md5 +++ b/abcg/doc/html/inherit_graph_4.md5 @@ -1 +1 @@ -449bfbdba5ec6874f1f1cf8a52741158 \ No newline at end of file +7205946a59a1ea4b15a103a2f20d1625 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_4.svg b/abcg/doc/html/inherit_graph_4.svg index 481a1b917..225cd5feb 100644 --- a/abcg/doc/html/inherit_graph_4.svg +++ b/abcg/doc/html/inherit_graph_4.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::OpenGLShader + + +abcg::OpenGLTextureCreateInfo diff --git a/abcg/doc/html/inherit_graph_5.map b/abcg/doc/html/inherit_graph_5.map index c66035ca0..50b764d00 100644 --- a/abcg/doc/html/inherit_graph_5.map +++ b/abcg/doc/html/inherit_graph_5.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_5.md5 b/abcg/doc/html/inherit_graph_5.md5 index fda49e419..f3014cded 100644 --- a/abcg/doc/html/inherit_graph_5.md5 +++ b/abcg/doc/html/inherit_graph_5.md5 @@ -1 +1 @@ -6d939f778d00aa0c75296a389c40a692 \ No newline at end of file +c6fbc809e2987f5123d2b82e81406057 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_5.svg b/abcg/doc/html/inherit_graph_5.svg index 4eb7c2f1e..802a94499 100644 --- a/abcg/doc/html/inherit_graph_5.svg +++ b/abcg/doc/html/inherit_graph_5.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::OpenGLTextureCreateInfo + + +abcg::ShaderSource diff --git a/abcg/doc/html/inherit_graph_6.map b/abcg/doc/html/inherit_graph_6.map index 431b64ef7..0a569a1cd 100644 --- a/abcg/doc/html/inherit_graph_6.map +++ b/abcg/doc/html/inherit_graph_6.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_6.md5 b/abcg/doc/html/inherit_graph_6.md5 index fea05505f..c75c7e924 100644 --- a/abcg/doc/html/inherit_graph_6.md5 +++ b/abcg/doc/html/inherit_graph_6.md5 @@ -1 +1 @@ -394d1e270f10c55c01275ffea586ee1d \ No newline at end of file +717d42eae4322e935c4b4fd1cad67b1d \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_6.svg b/abcg/doc/html/inherit_graph_6.svg index c15adb910..830a6c431 100644 --- a/abcg/doc/html/inherit_graph_6.svg +++ b/abcg/doc/html/inherit_graph_6.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::ShaderSource + + +abcg::Timer diff --git a/abcg/doc/html/inherit_graph_7.map b/abcg/doc/html/inherit_graph_7.map index bbdf19bbe..1a73c2857 100644 --- a/abcg/doc/html/inherit_graph_7.map +++ b/abcg/doc/html/inherit_graph_7.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_7.md5 b/abcg/doc/html/inherit_graph_7.md5 index a8214091f..80fcf0679 100644 --- a/abcg/doc/html/inherit_graph_7.md5 +++ b/abcg/doc/html/inherit_graph_7.md5 @@ -1 +1 @@ -8a58c0452d481ea57aee28bbf4b992c9 \ No newline at end of file +fedd32058121da49dda17444280c4d59 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_7.svg b/abcg/doc/html/inherit_graph_7.svg index f0ef5bea7..f7c2e3e46 100644 --- a/abcg/doc/html/inherit_graph_7.svg +++ b/abcg/doc/html/inherit_graph_7.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::Timer + + +abcg::TrackBall diff --git a/abcg/doc/html/inherit_graph_8.map b/abcg/doc/html/inherit_graph_8.map index 2449908d1..16407472e 100644 --- a/abcg/doc/html/inherit_graph_8.map +++ b/abcg/doc/html/inherit_graph_8.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_8.md5 b/abcg/doc/html/inherit_graph_8.md5 index 90ab01c7f..6540de8e5 100644 --- a/abcg/doc/html/inherit_graph_8.md5 +++ b/abcg/doc/html/inherit_graph_8.md5 @@ -1 +1 @@ -0e862f3ae10f90b2f1bdbb38ee2dc026 \ No newline at end of file +98427835afaf7bebd970532865770b9a \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_8.svg b/abcg/doc/html/inherit_graph_8.svg index f3d4367ac..d931a9b1d 100644 --- a/abcg/doc/html/inherit_graph_8.svg +++ b/abcg/doc/html/inherit_graph_8.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::TrackBall + + +abcg::VulkanBuffer diff --git a/abcg/doc/html/inherit_graph_9.map b/abcg/doc/html/inherit_graph_9.map index 51577542c..f686d7108 100644 --- a/abcg/doc/html/inherit_graph_9.map +++ b/abcg/doc/html/inherit_graph_9.map @@ -1,3 +1,3 @@ - + diff --git a/abcg/doc/html/inherit_graph_9.md5 b/abcg/doc/html/inherit_graph_9.md5 index dd731d6e9..9c201b2b2 100644 --- a/abcg/doc/html/inherit_graph_9.md5 +++ b/abcg/doc/html/inherit_graph_9.md5 @@ -1 +1 @@ -0656c290cd4b9fad98e89fd971223d4b \ No newline at end of file +4ee0a48c644aa4a3b489b912b317e145 \ No newline at end of file diff --git a/abcg/doc/html/inherit_graph_9.svg b/abcg/doc/html/inherit_graph_9.svg index 36df5691b..972d3a5d5 100644 --- a/abcg/doc/html/inherit_graph_9.svg +++ b/abcg/doc/html/inherit_graph_9.svg @@ -4,16 +4,16 @@ - - + + Graphical Class Hierarchy - + Node0 - - -abcg::VulkanBuffer + + +abcg::VulkanBufferCreateInfo diff --git a/abcg/doc/html/inherits.html b/abcg/doc/html/inherits.html index 44523d7eb..583f2ed79 100644 --- a/abcg/doc/html/inherits.html +++ b/abcg/doc/html/inherits.html @@ -5,7 +5,7 @@ - + ABCg: Class Hierarchy @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@
@@ -93,53 +94,59 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Class Hierarchy
+
Class Hierarchy
- - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/abcg/doc/html/jquery.js b/abcg/doc/html/jquery.js index 103c32d79..1dffb65b5 100644 --- a/abcg/doc/html/jquery.js +++ b/abcg/doc/html/jquery.js @@ -1,12 +1,11 @@ -/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element -},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** +!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(y){"use strict";y.ui=y.ui||{};y.ui.version="1.13.2";var n,i=0,h=Array.prototype.hasOwnProperty,a=Array.prototype.slice;y.cleanData=(n=y.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=y._data(i,"events"))&&e.remove&&y(i).triggerHandler("remove");n(t)}),y.widget=function(t,i,e){var s,n,o,h={},a=t.split(".")[0],r=a+"-"+(t=t.split(".")[1]);return e||(e=i,i=y.Widget),Array.isArray(e)&&(e=y.extend.apply(null,[{}].concat(e))),y.expr.pseudos[r.toLowerCase()]=function(t){return!!y.data(t,r)},y[a]=y[a]||{},s=y[a][t],n=y[a][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},y.extend(n,s,{version:e.version,_proto:y.extend({},e),_childConstructors:[]}),(o=new i).options=y.widget.extend({},o.options),y.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}h[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=y.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},h,{constructor:n,namespace:a,widgetName:t,widgetFullName:r}),s?(y.each(s._childConstructors,function(t,e){var i=e.prototype;y.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),y.widget.bridge(t,n),n},y.widget.extend=function(t){for(var e,i,s=a.call(arguments,1),n=0,o=s.length;n",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=y(e||this.defaultElement||this)[0],this.element=y(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=y(),this.hoverable=y(),this.focusable=y(),this.classesElementLookup={},e!==this&&(y.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=y(e.style?e.ownerDocument:e.document||e),this.window=y(this.document[0].defaultView||this.document[0].parentWindow)),this.options=y.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:y.noop,_create:y.noop,_init:y.noop,destroy:function(){var i=this;this._destroy(),y.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:y.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return y.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=y.widget.extend({},this.options[t]),n=0;n
"),i=e.children()[0];return y("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthx(D(s),D(n))?o.important="horizontal":o.important="vertical",p.using.call(this,t,o)}),h.offset(y.extend(l,{using:t}))})},y.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,h=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0n?0=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),y.ui.plugin={add:function(t,e,i){var s,n=y.ui[t].prototype;for(s in i)n.plugins[s]=n.plugins[s]||[],n.plugins[s].push([e,i[s]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;n
").css({overflow:"hidden",position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,t={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(t),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(t),this._proportionallyResize()),this._setupHandles(),e.autoHide&&y(this.element).on("mouseenter",function(){e.disabled||(i._removeClass("ui-resizable-autohide"),i._handles.show())}).on("mouseleave",function(){e.disabled||i.resizing||(i._addClass("ui-resizable-autohide"),i._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy(),this._addedHandles.remove();function t(t){y(t).removeData("resizable").removeData("ui-resizable").off(".resizable")}var e;return this.elementIsWrapper&&(t(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),t(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;case"aspectRatio":this._aspectRatio=!!e}},_setupHandles:function(){var t,e,i,s,n,o=this.options,h=this;if(this.handles=o.handles||(y(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=y(),this._addedHandles=y(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),i=this.handles.split(","),this.handles={},e=0;e"),this._addClass(n,"ui-resizable-handle "+s),n.css({zIndex:o.zIndex}),this.handles[t]=".ui-resizable-"+t,this.element.children(this.handles[t]).length||(this.element.append(n),this._addedHandles=this._addedHandles.add(n));this._renderAxis=function(t){var e,i,s;for(e in t=t||this.element,this.handles)this.handles[e].constructor===String?this.handles[e]=this.element.children(this.handles[e]).first().show():(this.handles[e].jquery||this.handles[e].nodeType)&&(this.handles[e]=y(this.handles[e]),this._on(this.handles[e],{mousedown:h._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(i=y(this.handles[e],this.element),s=/sw|ne|nw|se|n|s/.test(e)?i.outerHeight():i.outerWidth(),i=["padding",/ne|nw|n/.test(e)?"Top":/se|sw|s/.test(e)?"Bottom":/^e$/.test(e)?"Right":"Left"].join(""),t.css(i,s),this._proportionallyResize()),this._handles=this._handles.add(this.handles[e])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){h.resizing||(this.className&&(n=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),h.axis=n&&n[1]?n[1]:"se")}),o.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._addedHandles.remove()},_mouseCapture:function(t){var e,i,s=!1;for(e in this.handles)(i=y(this.handles[e])[0])!==t.target&&!y.contains(i,t.target)||(s=!0);return!this.options.disabled&&s},_mouseStart:function(t){var e,i,s=this.options,n=this.element;return this.resizing=!0,this._renderProxy(),e=this._num(this.helper.css("left")),i=this._num(this.helper.css("top")),s.containment&&(e+=y(s.containment).scrollLeft()||0,i+=y(s.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:e,top:i},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:n.width(),height:n.height()},this.originalSize=this._helper?{width:n.outerWidth(),height:n.outerHeight()}:{width:n.width(),height:n.height()},this.sizeDiff={width:n.outerWidth()-n.width(),height:n.outerHeight()-n.height()},this.originalPosition={left:e,top:i},this.originalMousePosition={left:t.pageX,top:t.pageY},this.aspectRatio="number"==typeof s.aspectRatio?s.aspectRatio:this.originalSize.width/this.originalSize.height||1,s=y(".ui-resizable-"+this.axis).css("cursor"),y("body").css("cursor","auto"===s?this.axis+"-resize":s),this._addClass("ui-resizable-resizing"),this._propagate("start",t),!0},_mouseDrag:function(t){var e=this.originalMousePosition,i=this.axis,s=t.pageX-e.left||0,e=t.pageY-e.top||0,i=this._change[i];return this._updatePrevProperties(),i&&(e=i.apply(this,[t,s,e]),this._updateVirtualBoundaries(t.shiftKey),(this._aspectRatio||t.shiftKey)&&(e=this._updateRatio(e,t)),e=this._respectSize(e,t),this._updateCache(e),this._propagate("resize",t),e=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),y.isEmptyObject(e)||(this._updatePrevProperties(),this._trigger("resize",t,this.ui()),this._applyChanges())),!1},_mouseStop:function(t){this.resizing=!1;var e,i,s,n=this.options,o=this;return this._helper&&(s=(e=(i=this._proportionallyResizeElements).length&&/textarea/i.test(i[0].nodeName))&&this._hasScroll(i[0],"left")?0:o.sizeDiff.height,i=e?0:o.sizeDiff.width,e={width:o.helper.width()-i,height:o.helper.height()-s},i=parseFloat(o.element.css("left"))+(o.position.left-o.originalPosition.left)||null,s=parseFloat(o.element.css("top"))+(o.position.top-o.originalPosition.top)||null,n.animate||this.element.css(y.extend(e,{top:s,left:i})),o.helper.height(o.size.height),o.helper.width(o.size.width),this._helper&&!n.animate&&this._proportionallyResize()),y("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",t),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s=this.options,n={minWidth:this._isNumber(s.minWidth)?s.minWidth:0,maxWidth:this._isNumber(s.maxWidth)?s.maxWidth:1/0,minHeight:this._isNumber(s.minHeight)?s.minHeight:0,maxHeight:this._isNumber(s.maxHeight)?s.maxHeight:1/0};(this._aspectRatio||t)&&(e=n.minHeight*this.aspectRatio,i=n.minWidth/this.aspectRatio,s=n.maxHeight*this.aspectRatio,t=n.maxWidth/this.aspectRatio,e>n.minWidth&&(n.minWidth=e),i>n.minHeight&&(n.minHeight=i),st.width,h=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,a=this.originalPosition.left+this.originalSize.width,r=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),i=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),h&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=a-e.minWidth),s&&l&&(t.left=a-e.maxWidth),h&&i&&(t.top=r-e.minHeight),n&&i&&(t.top=r-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];e<4;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;e
").css({overflow:"hidden"}),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++e.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize;return{left:this.originalPosition.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize;return{top:this.originalPosition.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},sw:function(t,e,i){return y.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[t,e,i]))},ne:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[t,e,i]))},nw:function(t,e,i){return y.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[t,e,i]))}},_propagate:function(t,e){y.ui.plugin.call(this,t,[e,this.ui()]),"resize"!==t&&this._trigger(t,e,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),y.ui.plugin.add("resizable","animate",{stop:function(e){var i=y(this).resizable("instance"),t=i.options,s=i._proportionallyResizeElements,n=s.length&&/textarea/i.test(s[0].nodeName),o=n&&i._hasScroll(s[0],"left")?0:i.sizeDiff.height,h=n?0:i.sizeDiff.width,n={width:i.size.width-h,height:i.size.height-o},h=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,o=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(y.extend(n,o&&h?{top:o,left:h}:{}),{duration:t.animateDuration,easing:t.animateEasing,step:function(){var t={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};s&&s.length&&y(s[0]).css({width:t.width,height:t.height}),i._updateCache(t),i._propagate("resize",e)}})}}),y.ui.plugin.add("resizable","containment",{start:function(){var i,s,n=y(this).resizable("instance"),t=n.options,e=n.element,o=t.containment,h=o instanceof y?o.get(0):/parent/.test(o)?e.parent().get(0):o;h&&(n.containerElement=y(h),/document/.test(o)||o===document?(n.containerOffset={left:0,top:0},n.containerPosition={left:0,top:0},n.parentData={element:y(document),left:0,top:0,width:y(document).width(),height:y(document).height()||document.body.parentNode.scrollHeight}):(i=y(h),s=[],y(["Top","Right","Left","Bottom"]).each(function(t,e){s[t]=n._num(i.css("padding"+e))}),n.containerOffset=i.offset(),n.containerPosition=i.position(),n.containerSize={height:i.innerHeight()-s[3],width:i.innerWidth()-s[1]},t=n.containerOffset,e=n.containerSize.height,o=n.containerSize.width,o=n._hasScroll(h,"left")?h.scrollWidth:o,e=n._hasScroll(h)?h.scrollHeight:e,n.parentData={element:h,left:t.left,top:t.top,width:o,height:e}))},resize:function(t){var e=y(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.position,o=e._aspectRatio||t.shiftKey,h={top:0,left:0},a=e.containerElement,t=!0;a[0]!==document&&/static/.test(a.css("position"))&&(h=s),n.left<(e._helper?s.left:0)&&(e.size.width=e.size.width+(e._helper?e.position.left-s.left:e.position.left-h.left),o&&(e.size.height=e.size.width/e.aspectRatio,t=!1),e.position.left=i.helper?s.left:0),n.top<(e._helper?s.top:0)&&(e.size.height=e.size.height+(e._helper?e.position.top-s.top:e.position.top),o&&(e.size.width=e.size.height*e.aspectRatio,t=!1),e.position.top=e._helper?s.top:0),i=e.containerElement.get(0)===e.element.parent().get(0),n=/relative|absolute/.test(e.containerElement.css("position")),i&&n?(e.offset.left=e.parentData.left+e.position.left,e.offset.top=e.parentData.top+e.position.top):(e.offset.left=e.element.offset().left,e.offset.top=e.element.offset().top),n=Math.abs(e.sizeDiff.width+(e._helper?e.offset.left-h.left:e.offset.left-s.left)),s=Math.abs(e.sizeDiff.height+(e._helper?e.offset.top-h.top:e.offset.top-s.top)),n+e.size.width>=e.parentData.width&&(e.size.width=e.parentData.width-n,o&&(e.size.height=e.size.width/e.aspectRatio,t=!1)),s+e.size.height>=e.parentData.height&&(e.size.height=e.parentData.height-s,o&&(e.size.width=e.size.height*e.aspectRatio,t=!1)),t||(e.position.left=e.prevPosition.left,e.position.top=e.prevPosition.top,e.size.width=e.prevSize.width,e.size.height=e.prevSize.height)},stop:function(){var t=y(this).resizable("instance"),e=t.options,i=t.containerOffset,s=t.containerPosition,n=t.containerElement,o=y(t.helper),h=o.offset(),a=o.outerWidth()-t.sizeDiff.width,o=o.outerHeight()-t.sizeDiff.height;t._helper&&!e.animate&&/relative/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o}),t._helper&&!e.animate&&/static/.test(n.css("position"))&&y(this).css({left:h.left-s.left-i.left,width:a,height:o})}}),y.ui.plugin.add("resizable","alsoResize",{start:function(){var t=y(this).resizable("instance").options;y(t.alsoResize).each(function(){var t=y(this);t.data("ui-resizable-alsoresize",{width:parseFloat(t.width()),height:parseFloat(t.height()),left:parseFloat(t.css("left")),top:parseFloat(t.css("top"))})})},resize:function(t,i){var e=y(this).resizable("instance"),s=e.options,n=e.originalSize,o=e.originalPosition,h={height:e.size.height-n.height||0,width:e.size.width-n.width||0,top:e.position.top-o.top||0,left:e.position.left-o.left||0};y(s.alsoResize).each(function(){var t=y(this),s=y(this).data("ui-resizable-alsoresize"),n={},e=t.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];y.each(e,function(t,e){var i=(s[e]||0)+(h[e]||0);i&&0<=i&&(n[e]=i||null)}),t.css(n)})},stop:function(){y(this).removeData("ui-resizable-alsoresize")}}),y.ui.plugin.add("resizable","ghost",{start:function(){var t=y(this).resizable("instance"),e=t.size;t.ghost=t.originalElement.clone(),t.ghost.css({opacity:.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}),t._addClass(t.ghost,"ui-resizable-ghost"),!1!==y.uiBackCompat&&"string"==typeof t.options.ghost&&t.ghost.addClass(this.options.ghost),t.ghost.appendTo(t.helper)},resize:function(){var t=y(this).resizable("instance");t.ghost&&t.ghost.css({position:"relative",height:t.size.height,width:t.size.width})},stop:function(){var t=y(this).resizable("instance");t.ghost&&t.helper&&t.helper.get(0).removeChild(t.ghost.get(0))}}),y.ui.plugin.add("resizable","grid",{resize:function(){var t,e=y(this).resizable("instance"),i=e.options,s=e.size,n=e.originalSize,o=e.originalPosition,h=e.axis,a="number"==typeof i.grid?[i.grid,i.grid]:i.grid,r=a[0]||1,l=a[1]||1,u=Math.round((s.width-n.width)/r)*r,p=Math.round((s.height-n.height)/l)*l,d=n.width+u,c=n.height+p,f=i.maxWidth&&i.maxWidthd,s=i.minHeight&&i.minHeight>c;i.grid=a,m&&(d+=r),s&&(c+=l),f&&(d-=r),g&&(c-=l),/^(se|s|e)$/.test(h)?(e.size.width=d,e.size.height=c):/^(ne)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.top=o.top-p):/^(sw)$/.test(h)?(e.size.width=d,e.size.height=c,e.position.left=o.left-u):((c-l<=0||d-r<=0)&&(t=e._getPaddingPlusBorderDimensions(this)),0 - + ABCg: Release notes @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +
@@ -79,8 +80,8 @@

@@ -93,22 +94,36 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
-
Release notes
+
+
Release notes
-

+

+

+v3.1.2

+
    +
  • @abacchi00 (André Bacchi): fix: ensure web build runs correctly.
  • +
  • Fix cmake_minimum_required() deprecation warnings.
  • +
  • Disable warnings for vendored-in libraries in WASM builds.
  • +
+

v3.1.1

  • Added a shader compile check to make GLSL ES shaders compatible with macOS.
-

+

v3.1.0

-

+

v3.0.0

-

+

New features

  • Added support for building in Visual Studio with MSVC. For that to work, GLEW, SDL2 and SDL2_image development libraries must be installed and set up as follows: the GLEW installation directory must be added to the system _Path_ variable; the environment variables SDL2DIR and SDL2IMAGEDIR must be set to the installation directory of SDL2 and SDL2_image, respectively. Debugging is also supported. However, building multiple executables is not supported in VS. Thus, make sure to use a single add_subdirectory() command in the CMakeLists.txt of the root directory. Also notice that the default output directory will be out/build instead of build if the project is built in the IDE.
  • @@ -148,7 +163,7 @@

  • Added abcg::hashCombine and abcg::hashCombineSeed functions to easily combine hash values.
  • Added support for Vulkan.
-

+

Breaking changes

-

+

Other changes

  • Updated external libraries (Dear ImGui v1.86; {fmt} 8.1.1; GSL 4.0.0).
  • Minimum required version for CMake increased to 3.21.
  • abcg::OpenGLWindow::getDeltaTime() marked noexcept.
-

+

v2.0.1

-

+

Bug Fixes

  • Fixed flickering effect when glClear is not called for each frame. For this fix to work, abcg::OpenGLSettings::preserveWebGLDrawingBuffer must be true even when building for desktop.
-

+

v2.0.0

-

+

Breaking changes

  • abcg::Application::run now takes by value a unique pointer to abcg::OpenGLWindow. Since std::unique_ptr cannot be copied, the caller must either use std::move or pass the pointer as an rvalue. This makes clear the intent of transferring ownership of the pointer, which was not explicit in the previous version that takes an lvalue reference.
  • Support for running multiple windows has been dropped. Multiple windows weren't working properly on Emscripten builds and aren't used in the course.
  • abcg::opengl::loadCubemap now transforms the cube map textures to a right-handed coordinate system by default. A small loading overhead is incurred because some of the bitmaps are flipped vertically and horizontally. This behavior can be disabled by setting the (new) parameter rightHandedSystem to false.
-

+

Other changes

  • abcg::Exception::OpenGL now generates a string describing all OpenGL error messages returned by glGetError when there are multiple errors.
  • All OpenGL functions from OpenGL ES 2.0 and ES 3.0 can now be qualified with the abcg namespace (e.g. abcg::glActiveTexture(0)) for automatic error handling in debug builds. This is an alternative to the GL_CHECK macro used in many engines to check for errors before and after each GL call.
  • Updated external libraries (Dear ImGui v1.84; cppitertools v2.1; {fmt} 8.0.1).
-

+

v1.0.0

  • Initial release, used during the first academic term of 2021.
  • @@ -211,7 +226,7 @@

    diff --git a/abcg/doc/html/md__home_harlen_dev_abcg2_CHANGELOG.html b/abcg/doc/html/md__home_harlen_dev_abcg2_CHANGELOG.html deleted file mode 100644 index 802070d01..000000000 --- a/abcg/doc/html/md__home_harlen_dev_abcg2_CHANGELOG.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - ABCg: Release notes - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Release notes
    -
    -
    -

    -v3.0.0

    -

    -New features

    -
      -
    • Added support for building in Visual Studio with MSVC. For that to work, GLEW, SDL2 and SDL2_image development libraries must be installed and set up as follows: the GLEW installation directory must be added to the system _Path_ variable; the environment variables SDL2DIR and SDL2IMAGEDIR must be set to the installation directory of SDL2 and SDL2_image, respectively. Debugging is also supported. However, building multiple executables is not supported in VS. Thus, make sure to use a single add_subdirectory() command in the CMakeLists.txt of the root directory. Also notice that the default output directory will be out/build instead of build if the project is built in the IDE.
    • -
    • Added support for building with MSVC in VS Code. Multiple executables are supported, as well as debugging. Below is an example of a launch.json for debugging the "Hello, World!" project:
      {
      -  "version": "0.2.0",
      -  "configurations": [
      -  {
      -    "name": "C++ Launch (Windows)",
      -    "type": "cppvsdbg",
      -    "request": "launch",
      -    "program": "${workspaceFolder}/build/bin/helloworld/helloworld.exe",
      -    "symbolSearchPath": "${workspaceFolder}/build/bin/Debug",
      -    "console": "integratedTerminal",
      -    "args": [],
      -    "stopAtEntry": false
      -  }
      -  ]
      -}
      -
    • -
    • Updated abcg::createOpenGLProgram with support for additional shader types and no dependance on abcg::OpenGLWindow. The function now accepts an object of type abcg::ShaderSource containing the paths or codes of any combination of shaders supported by OpenGL (vertex, fragment, geometry, tess control/evaluation, and compute shaders). The function also accepts a boolean as a second argument to toggle on/off exceptions on build errors. By default, exception throwing is enabled.
    • -
    • As an alternative to abcg::createOpenGLProgram, it is possible to split the build process into smaller parts by calling abcg::triggerOpenGLShaderCompile, abcg::checkOpenGLShaderCompile, abcg::triggerOpenGLShaderLink, and abcg::checkOpenGLShaderLink in sequence. This can be useful to prevent halting the application when building complex programs.
    • -
    • Added abcg::Application::getBasePath and abcg::Application::getAssetsPath as static member functions.
    • -
    • The HTML element ID used for registering the fullscreen callback function can now be set with abcg::WindowSettings::fullscreenElementID (default is #canvas).
    • -
    • abcg::loadOpenGLTexture and abcg::loadOpenGLCubemap now accepts creation info structures abcg::OpenGLTextureCreateInfo and abcg::OpenGLCubemapCreateInfo, respectively.
    • -
    • Added abcg::hashCombine and abcg::hashCombineSeed functions to easily combine hash values.
    • -
    • Added support for Vulkan.
    • -
    -

    -Breaking changes

    - -

    -Other changes

    -
      -
    • Updated external libraries (Dear ImGui v1.86; {fmt} 8.1.1; GSL 4.0.0).
    • -
    • Minimum required version for CMake increased to 3.21.
    • -
    • abcg::OpenGLWindow::getDeltaTime() marked noexcept.
    • -
    -

    -v2.0.1

    -

    -Bug Fixes

    -
      -
    • Fixed flickering effect when glClear is not called for each frame. For this fix to work, abcg::OpenGLSettings::preserveWebGLDrawingBuffer must be true even when building for desktop.
    • -
    -

    -v2.0.0

    -

    -Breaking changes

    -
      -
    • abcg::Application::run now takes by value a unique pointer to abcg::OpenGLWindow. Since std::unique_ptr cannot be copied, the caller must either use std::move or pass the pointer as an rvalue. This makes clear the intent of transferring ownership of the pointer, which was not explicit in the previous version that takes an lvalue reference.
    • -
    • Support for running multiple windows has been dropped. Multiple windows weren't working properly on Emscripten builds and aren't used in the course.
    • -
    • abcg::opengl::loadCubemap now transforms the cube map textures to a right-handed coordinate system by default. A small loading overhead is incurred because some of the bitmaps are flipped vertically and horizontally. This behavior can be disabled by setting the (new) parameter rightHandedSystem to false.
    • -
    -

    -Other changes

    -
      -
    • abcg::Exception::OpenGL now generates a string describing all OpenGL error messages returned by glGetError when there are multiple errors.
    • -
    • All OpenGL functions from OpenGL ES 2.0 and ES 3.0 can now be qualified with the abcg namespace (e.g. abcg::glActiveTexture(0)) for automatic error handling in debug builds. This is an alternative to the GL_CHECK macro used in many engines to check for errors before and after each GL call.
    • -
    • Updated external libraries (Dear ImGui v1.84; cppitertools v2.1; {fmt} 8.0.1).
    • -
    -

    -v1.0.0

    -
      -
    • Initial release, used during the first academic term of 2021.
    • -
    -
    -
    -
    - - - - diff --git a/abcg/doc/html/md__home_harlen_dev_abcg3_CHANGELOG.html b/abcg/doc/html/md__home_harlen_dev_abcg3_CHANGELOG.html deleted file mode 100644 index ea60e9f19..000000000 --- a/abcg/doc/html/md__home_harlen_dev_abcg3_CHANGELOG.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - ABCg: Release notes - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.1.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    Release notes
    -
    -
    -

    -v3.1.0

    - -

    -v3.0.0

    -

    -New features

    -
      -
    • Added support for building in Visual Studio with MSVC. For that to work, GLEW, SDL2 and SDL2_image development libraries must be installed and set up as follows: the GLEW installation directory must be added to the system _Path_ variable; the environment variables SDL2DIR and SDL2IMAGEDIR must be set to the installation directory of SDL2 and SDL2_image, respectively. Debugging is also supported. However, building multiple executables is not supported in VS. Thus, make sure to use a single add_subdirectory() command in the CMakeLists.txt of the root directory. Also notice that the default output directory will be out/build instead of build if the project is built in the IDE.
    • -
    • Added support for building with MSVC in VS Code. Multiple executables are supported, as well as debugging. Below is an example of a launch.json for debugging the "Hello, World!" project:
      {
      -  "version": "0.2.0",
      -  "configurations": [
      -  {
      -    "name": "C++ Launch (Windows)",
      -    "type": "cppvsdbg",
      -    "request": "launch",
      -    "program": "${workspaceFolder}/build/bin/helloworld/helloworld.exe",
      -    "symbolSearchPath": "${workspaceFolder}/build/bin/Debug",
      -    "console": "integratedTerminal",
      -    "args": [],
      -    "stopAtEntry": false
      -  }
      -  ]
      -}
      -
    • -
    • Updated abcg::createOpenGLProgram with support for additional shader types and no dependance on abcg::OpenGLWindow. The function now accepts an object of type abcg::ShaderSource containing the paths or codes of any combination of shaders supported by OpenGL (vertex, fragment, geometry, tess control/evaluation, and compute shaders). The function also accepts a boolean as a second argument to toggle on/off exceptions on build errors. By default, exception throwing is enabled.
    • -
    • As an alternative to abcg::createOpenGLProgram, it is possible to split the build process into smaller parts by calling abcg::triggerOpenGLShaderCompile, abcg::checkOpenGLShaderCompile, abcg::triggerOpenGLShaderLink, and abcg::checkOpenGLShaderLink in sequence. This can be useful to prevent halting the application when building complex programs.
    • -
    • Added abcg::Application::getBasePath and abcg::Application::getAssetsPath as static member functions.
    • -
    • The HTML element ID used for registering the fullscreen callback function can now be set with abcg::WindowSettings::fullscreenElementID (default is #canvas).
    • -
    • abcg::loadOpenGLTexture and abcg::loadOpenGLCubemap now accepts creation info structures abcg::OpenGLTextureCreateInfo and abcg::OpenGLCubemapCreateInfo, respectively.
    • -
    • Added abcg::hashCombine and abcg::hashCombineSeed functions to easily combine hash values.
    • -
    • Added support for Vulkan.
    • -
    -

    -Breaking changes

    - -

    -Other changes

    -
      -
    • Updated external libraries (Dear ImGui v1.86; {fmt} 8.1.1; GSL 4.0.0).
    • -
    • Minimum required version for CMake increased to 3.21.
    • -
    • abcg::OpenGLWindow::getDeltaTime() marked noexcept.
    • -
    -

    -v2.0.1

    -

    -Bug Fixes

    -
      -
    • Fixed flickering effect when glClear is not called for each frame. For this fix to work, abcg::OpenGLSettings::preserveWebGLDrawingBuffer must be true even when building for desktop.
    • -
    -

    -v2.0.0

    -

    -Breaking changes

    -
      -
    • abcg::Application::run now takes by value a unique pointer to abcg::OpenGLWindow. Since std::unique_ptr cannot be copied, the caller must either use std::move or pass the pointer as an rvalue. This makes clear the intent of transferring ownership of the pointer, which was not explicit in the previous version that takes an lvalue reference.
    • -
    • Support for running multiple windows has been dropped. Multiple windows weren't working properly on Emscripten builds and aren't used in the course.
    • -
    • abcg::opengl::loadCubemap now transforms the cube map textures to a right-handed coordinate system by default. A small loading overhead is incurred because some of the bitmaps are flipped vertically and horizontally. This behavior can be disabled by setting the (new) parameter rightHandedSystem to false.
    • -
    -

    -Other changes

    -
      -
    • abcg::Exception::OpenGL now generates a string describing all OpenGL error messages returned by glGetError when there are multiple errors.
    • -
    • All OpenGL functions from OpenGL ES 2.0 and ES 3.0 can now be qualified with the abcg namespace (e.g. abcg::glActiveTexture(0)) for automatic error handling in debug builds. This is an alternative to the GL_CHECK macro used in many engines to check for errors before and after each GL call.
    • -
    • Updated external libraries (Dear ImGui v1.84; cppitertools v2.1; {fmt} 8.0.1).
    • -
    -

    -v1.0.0

    -
      -
    • Initial release, used during the first academic term of 2021.
    • -
    -
    -
    -
    - - - - diff --git a/abcg/doc/html/menu.js b/abcg/doc/html/menu.js index 2fe2214f2..b0b26936a 100644 --- a/abcg/doc/html/menu.js +++ b/abcg/doc/html/menu.js @@ -28,7 +28,15 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { if ('children' in data) { result+='
      '; for (var i in data.children) { - result+='
    • '+ + var url; + var link; + link = data.children[i].url; + if (link.substring(0,1)=='^') { + url = link.substring(1); + } else { + url = relPath+link; + } + result+='
    • '+ data.children[i].text+''+ makeTree(data.children[i],relPath)+'
    • '; } @@ -36,15 +44,92 @@ function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { } return result; } - - $('#main-nav').append(makeTree(menudata,relPath)); - $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + var searchBoxHtml; if (searchEnabled) { if (serverSide) { - $('#main-menu').append('
    • '); + searchBoxHtml='
      '+ + '
      '+ + '
       '+ + ''+ + '
      '+ + '
      '+ + '
      '+ + '
      '; } else { - $('#main-menu').append('
    • '); + searchBoxHtml='
      '+ + ''+ + ' '+ + ''+ + ''+ + ''+ + ''+ + ''+ + '
      '; + } + } + + $('#main-nav').before('
      '+ + ''+ + ''+ + '
      '); + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchBoxHtml) { + $('#main-menu').append('
    • '); + } + var $mainMenuState = $('#main-menu-state'); + var prevWidth = 0; + if ($mainMenuState.length) { + function initResizableIfExists() { + if (typeof initResizable==='function') initResizable(); + } + // animate mobile menu + $mainMenuState.change(function(e) { + var $menu = $('#main-menu'); + var options = { duration: 250, step: initResizableIfExists }; + if (this.checked) { + options['complete'] = function() { $menu.css('display', 'block') }; + $menu.hide().slideDown(options); + } else { + options['complete'] = function() { $menu.css('display', 'none') }; + $menu.show().slideUp(options); + } + }); + // set default menu visibility + function resetState() { + var $menu = $('#main-menu'); + var $mainMenuState = $('#main-menu-state'); + var newWidth = $(window).outerWidth(); + if (newWidth!=prevWidth) { + if ($(window).outerWidth()<768) { + $mainMenuState.prop('checked',false); $menu.hide(); + $('#searchBoxPos1').html(searchBoxHtml); + $('#searchBoxPos2').hide(); + } else { + $menu.show(); + $('#searchBoxPos1').empty(); + $('#searchBoxPos2').html(searchBoxHtml); + $('#searchBoxPos2').show(); + } + if (typeof searchBox!=='undefined') { + searchBox.CloseResultsWindow(); + } + prevWidth = newWidth; + } } + $(window).ready(function() { resetState(); initResizableIfExists(); }); + $(window).resize(resetState); } $('#main-menu').smartmenus(); } diff --git a/abcg/doc/html/menudata.js b/abcg/doc/html/menudata.js index a90859270..71515a4a9 100644 --- a/abcg/doc/html/menudata.js +++ b/abcg/doc/html/menudata.js @@ -109,7 +109,7 @@ var menudata={children:[ {text:"u",url:"functions_vars.html#index_u"}, {text:"v",url:"functions_vars.html#index_v"}, {text:"w",url:"functions_vars.html#index_w"}]}, -{text:"Related Functions",url:"functions_rela.html"}]}]}, +{text:"Related Symbols",url:"functions_rela.html"}]}]}, {text:"Files",url:"files.html",children:[ {text:"File List",url:"files.html"}, {text:"File Members",url:"globals.html",children:[ diff --git a/abcg/doc/html/minus.svg b/abcg/doc/html/minus.svg new file mode 100644 index 000000000..f70d0c1a1 --- /dev/null +++ b/abcg/doc/html/minus.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/abcg/doc/html/minusd.svg b/abcg/doc/html/minusd.svg new file mode 100644 index 000000000..5f8e87962 --- /dev/null +++ b/abcg/doc/html/minusd.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/abcg/doc/html/namespaceabcg.html b/abcg/doc/html/namespaceabcg.html index 381d981fd..6d0f197e6 100644 --- a/abcg/doc/html/namespaceabcg.html +++ b/abcg/doc/html/namespaceabcg.html @@ -5,7 +5,7 @@ - + ABCg: abcg Namespace Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
      ABCg -  v3.1.1 +  v3.1.2
      Development framework for MCTA008-17
      @@ -51,21 +51,22 @@

- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,9 +94,16 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
@@ -104,15 +112,14 @@ Typedefs | Enumerations | Functions
-
-
abcg Namespace Reference
+
abcg Namespace Reference

Root namespace. More...

- @@ -120,33 +127,33 @@ - - - - - - - - + + - - - - - + + - - + + + + + + + + + + + @@ -156,81 +163,81 @@ - - - + + + - - - - - + + + + + - - - + + + - - + + + + + + + + - - - - - - - - - + + +

+

Classes

class  Application
 Manages the application's control flow. More...
class  Exception
 Base class for ABCg exception objects. More...
 
class  RuntimeError
 Represents an exception object for runtime errors. More...
 
class  SDLError
 Represents an exception object for SDL errors. More...
 
class  SDLImageError
 Represents an exception object for SDL_image errors. More...
struct  OpenGLCubemapCreateInfo
 Configuration settings for creating a cubemap texture for OpenGL. More...
 
class  OpenGLError
 Represents an exception object for OpenGL errors. More...
 
struct  OpenGLTextureCreateInfo
 Configuration settings for creating a 2D texture for OpenGL. More...
 
struct  OpenGLCubemapCreateInfo
 Configuration settings for creating a cubemap texture for OpenGL. More...
struct  OpenGLSettings
 Configuration settings for creating an OpenGL context. More...
 
struct  OpenGLShader
 OpenGL shader object and its corresponding stage. More...
 
struct  OpenGLSettings
 Configuration settings for creating an OpenGL context. More...
struct  OpenGLTextureCreateInfo
 Configuration settings for creating a 2D texture for OpenGL. More...
 
class  OpenGLWindow
 Base class for a window that displays graphics using an OpenGL context. More...
 
class  RuntimeError
 Represents an exception object for runtime errors. More...
 
class  SDLError
 Represents an exception object for SDL errors. More...
 
class  SDLImageError
 Represents an exception object for SDL_image errors. More...
 
struct  ShaderSource
 Shader source code and corresponding stage. More...
 
class  TrackBall
 Manages a virtual trackball. More...
 
struct  VulkanBufferCreateInfo
 Creation info structure for abcg::VulkanBuffer::create. More...
 
class  VulkanBuffer
 A class for representing a Vulkan buffer. More...
 
struct  VulkanBufferCreateInfo
 Creation info structure for abcg::VulkanBuffer::create. More...
 
struct  VulkanCommandPools
 Command pools associated with a Vulkan device. More...
 
struct  VulkanQueues
 Queues associated with a Vulkan device. More...
 
class  VulkanDevice
 A class for representing a Vulkan logical device and related resources. More...
 
class  VulkanError
 Represents an exception object for Vulkan runtime errors. More...
 
struct  VulkanImageCreateInfo
 Creation info structure for abcg::VulkanImage. More...
struct  VulkanFrame
 Data needed by a rendering frame. More...
 
class  VulkanImage
 A class for representing a Vulkan image. More...
 
struct  VulkanImageCreateInfo
 Creation info structure for abcg::VulkanImage. More...
 
class  VulkanInstance
 A class for representing a Vulkan instance. More...
 
struct  VulkanQueuesFamilies
 Supported queues families. More...
 
class  VulkanPhysicalDevice
 A class for representing a Vulkan physical device. More...
 
class  VulkanPipeline
 A class for representing a Vulkan pipeline. More...
 
struct  VulkanPipelineCreateInfo
 Creation info structure for abcg::VulkanPipeline::create. More...
 
class  VulkanPipeline
 A class for representing a Vulkan pipeline. More...
struct  VulkanQueues
 Queues associated with a Vulkan device. More...
 
struct  VulkanQueuesFamilies
 Supported queues families. More...
 
struct  VulkanSettings
 Configuration settings for creating a Vulkan context. More...
 
class  VulkanShader
 A class for representing a Vulkan shader. More...
 
struct  VulkanFrame
 Data needed by a rendering frame. More...
 
class  VulkanSwapchain
 A class for representing a Vulkan swapchain. More...
 
struct  VulkanSettings
 Configuration settings for creating a Vulkan context. More...
 
class  VulkanWindow
 Base class for a window that displays graphics using a Vulkan context. More...
 
struct  WindowSettings
 Configuration settings of a window. More...
 
class  Window
 Base abstract class that represents a SDL window. More...
 
struct  WindowSettings
 Configuration settings of a window. More...
 
- - +

+

Typedefs

using source_location = std::source_location
using source_location = std::source_location
 
- - -

+

Enumerations

enum class  OpenGLProfile { Core +
enum class  OpenGLProfile { Core , Compatibility , ES }
 Enumeration of OpenGL profiles. More...
 
enum class  ShaderStage {
+
enum class  ShaderStage {
  Vertex , TessellationControl , TessellationEvaluation @@ -253,571 +260,571 @@
 Enumeration of shader stages. More...
 
- - - + + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - + - + - - + + - - + + - - + + - + - +

+

Functions

void flipHorizontally (SDL_Surface &surface)
 Flips an image horizontally. More...
void flipHorizontally (SDL_Surface &surface)
 Flips an image horizontally.
 
void flipVertically (SDL_Surface &surface)
 Flips an image vertically. More...
void flipVertically (SDL_Surface &surface)
 Flips an image vertically.
 
void checkGLError (source_location const &sourceLocation, std::string_view appendString)
 Checks OpenGL error status and throws on error with a log message. More...
void checkGLError (source_location const &sourceLocation, std::string_view appendString)
 Checks OpenGL error status and throws on error with a log message.
 
template<typename TFun , typename... TArgs>
template<typename TFun , typename... TArgs>
auto callGL (source_location const &sourceLocation, TFun &&function, TArgs &&...args)
 Checks for OpenGL errors before and after a function call. More...
 Checks for OpenGL errors before and after a function call.
 
void glActiveTexture (GLenum texture, source_location const &sourceLocation=source_location::current())
void glActiveTexture (GLenum texture, source_location const &sourceLocation=source_location::current())
 
void glAttachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
void glAttachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void glBindAttribLocation (GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
void glBindAttribLocation (GLuint program, GLuint index, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void glBindBuffer (GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
void glBindBuffer (GLenum target, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void glBindFramebuffer (GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
void glBindFramebuffer (GLenum target, GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
void glBindRenderbuffer (GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
void glBindRenderbuffer (GLenum target, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void glBindTexture (GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
void glBindTexture (GLenum target, GLuint texture, source_location const &sourceLocation=source_location::current())
 
void glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
void glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha, source_location const &sourceLocation=source_location::current())
 
void glBlendEquation (GLenum mode, source_location const &sourceLocation=source_location::current())
void glBlendEquation (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
void glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha, source_location const &sourceLocation=source_location::current())
 
void glBlendFunc (GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
void glBlendFunc (GLenum sfactor, GLenum dfactor, source_location const &sourceLocation=source_location::current())
 
void glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
void glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha, source_location const &sourceLocation=source_location::current())
 
void glBufferData (GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
void glBufferData (GLenum target, GLsizeiptr size, void const *data, GLenum usage, source_location const &sourceLocation=source_location::current())
 
void glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
void glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void const *data, source_location const &sourceLocation=source_location::current())
 
GLenum glCheckFramebufferStatus (GLenum target, source_location const &sourceLocation=source_location::current())
GLenum glCheckFramebufferStatus (GLenum target, source_location const &sourceLocation=source_location::current())
 
void glClear (GLbitfield mask, source_location const &sourceLocation=source_location::current())
void glClear (GLbitfield mask, source_location const &sourceLocation=source_location::current())
 
void glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
void glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha, source_location const &sourceLocation=source_location::current())
 
void glClearDepthf (GLfloat d, source_location const &sourceLocation=source_location::current())
void glClearDepthf (GLfloat d, source_location const &sourceLocation=source_location::current())
 
void glClearStencil (GLint s, source_location const &sourceLocation=source_location::current())
void glClearStencil (GLint s, source_location const &sourceLocation=source_location::current())
 
void glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
void glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha, source_location const &sourceLocation=source_location::current())
 
void glCompileShader (GLuint shader, source_location const &sourceLocation=source_location::current())
void glCompileShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
void glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border, source_location const &sourceLocation=source_location::current())
 
void glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
GLuint glCreateProgram (source_location const &sourceLocation=source_location::current())
GLuint glCreateProgram (source_location const &sourceLocation=source_location::current())
 
GLuint glCreateShader (GLenum shaderType, source_location const &sourceLocation=source_location::current())
GLuint glCreateShader (GLenum shaderType, source_location const &sourceLocation=source_location::current())
 
void glCullFace (GLenum mode, source_location const &sourceLocation=source_location::current())
void glCullFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void glDeleteBuffers (GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
void glDeleteBuffers (GLsizei n, const GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void glDeleteFramebuffers (GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
void glDeleteFramebuffers (GLsizei n, GLuint const *framebuffers, source_location const &sourceLocation=source_location::current())
 
void glDeleteProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void glDeleteProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void glDeleteRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
void glDeleteRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void glDeleteShader (GLuint shader, source_location const &sourceLocation=source_location::current())
void glDeleteShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
void glDeleteTextures (GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
void glDeleteTextures (GLsizei n, GLuint const *textures, source_location const &sourceLocation=source_location::current())
 
void glDepthFunc (GLenum func, source_location const &sourceLocation=source_location::current())
void glDepthFunc (GLenum func, source_location const &sourceLocation=source_location::current())
 
void glDepthMask (GLboolean flag, source_location const &sourceLocation=source_location::current())
void glDepthMask (GLboolean flag, source_location const &sourceLocation=source_location::current())
 
void glDepthRangef (GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
void glDepthRangef (GLfloat n, GLfloat f, source_location const &sourceLocation=source_location::current())
 
void glDetachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
void glDetachShader (GLuint program, GLuint shader, source_location const &sourceLocation=source_location::current())
 
void glDisable (GLenum cap, source_location const &sourceLocation=source_location::current())
void glDisable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void glDisableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
void glDisableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void glDrawArrays (GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
void glDrawArrays (GLenum mode, GLint first, GLsizei count, source_location const &sourceLocation=source_location::current())
 
void glDrawElements (GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
void glDrawElements (GLenum mode, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void glEnable (GLenum cap, source_location const &sourceLocation=source_location::current())
void glEnable (GLenum cap, source_location const &sourceLocation=source_location::current())
 
void glEnableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
void glEnableVertexAttribArray (GLuint index, source_location const &sourceLocation=source_location::current())
 
void glFinish (source_location const &sourceLocation=source_location::current())
void glFinish (source_location const &sourceLocation=source_location::current())
 
void glFlush (source_location const &sourceLocation=source_location::current())
void glFlush (source_location const &sourceLocation=source_location::current())
 
void glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
void glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
void glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
void glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void glFrontFace (GLenum mode, source_location const &sourceLocation=source_location::current())
void glFrontFace (GLenum mode, source_location const &sourceLocation=source_location::current())
 
void glGenBuffers (GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
void glGenBuffers (GLsizei n, GLuint *buffers, source_location const &sourceLocation=source_location::current())
 
void glGenerateMipmap (GLenum target, source_location const &sourceLocation=source_location::current())
void glGenerateMipmap (GLenum target, source_location const &sourceLocation=source_location::current())
 
void glGenFramebuffers (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void glGenFramebuffers (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void glGenRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
void glGenRenderbuffers (GLsizei n, GLuint *renderbuffers, source_location const &sourceLocation=source_location::current())
 
void glGenTextures (GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
void glGenTextures (GLsizei n, GLuint *textures, source_location const &sourceLocation=source_location::current())
 
void glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
void glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders, source_location const &sourceLocation=source_location::current())
 
GLint glGetAttribLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint glGetAttribLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void glGetBooleanv (GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
void glGetBooleanv (GLenum pname, GLboolean *params, source_location const &sourceLocation=source_location::current())
 
void glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetFloatv (GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void glGetFloatv (GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetIntegerv (GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetIntegerv (GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetProgramiv (GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetProgramiv (GLuint program, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
void glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetShaderiv (GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetShaderiv (GLuint shader, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
void glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog, source_location const &sourceLocation=source_location::current())
 
void glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
void glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision, source_location const &sourceLocation=source_location::current())
 
void glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
void glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source, source_location const &sourceLocation=source_location::current())
 
const GLubyte * glGetString (GLenum name, source_location const &sourceLocation=source_location::current())
 
void glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
const GLubyte * glGetString (GLenum name, source_location const &sourceLocation=source_location::current())
 
void glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glGetTexParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetTexParameteriv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetUniformfv (GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
void glGetUniformfv (GLuint program, GLint location, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glGetUniformiv (GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetUniformiv (GLuint program, GLint location, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLint glGetUniformLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint glGetUniformLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
void glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer, source_location const &sourceLocation=source_location::current())
 
void glHint (GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
void glHint (GLenum target, GLenum mode, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsBuffer (GLuint buffer, source_location const &sourceLocation=source_location::current())
GLboolean glIsBuffer (GLuint buffer, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsEnabled (GLenum cap, source_location const &sourceLocation=source_location::current())
GLboolean glIsEnabled (GLenum cap, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsFramebuffer (GLuint framebuffer, source_location const &sourceLocation=source_location::current())
GLboolean glIsFramebuffer (GLuint framebuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsProgram (GLuint program, source_location const &sourceLocation=source_location::current())
GLboolean glIsProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsRenderbuffer (GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
GLboolean glIsRenderbuffer (GLuint renderbuffer, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsShader (GLuint shader, source_location const &sourceLocation=source_location::current())
GLboolean glIsShader (GLuint shader, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsTexture (GLuint texture, source_location const &sourceLocation=source_location::current())
GLboolean glIsTexture (GLuint texture, source_location const &sourceLocation=source_location::current())
 
void glLineWidth (GLfloat width, source_location const &sourceLocation=source_location::current())
void glLineWidth (GLfloat width, source_location const &sourceLocation=source_location::current())
 
void glLinkProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void glLinkProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void glPixelStorei (GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void glPixelStorei (GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void glPolygonOffset (GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
void glPolygonOffset (GLfloat factor, GLfloat units, source_location const &sourceLocation=source_location::current())
 
void glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
void glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels, source_location const &sourceLocation=source_location::current())
 
void glReleaseShaderCompiler (source_location const &sourceLocation=source_location::current())
void glReleaseShaderCompiler (source_location const &sourceLocation=source_location::current())
 
void glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glSampleCoverage (GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
void glSampleCoverage (GLfloat value, GLboolean invert, source_location const &sourceLocation=source_location::current())
 
void glScissor (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glScissor (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glShaderBinary (GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
void glShaderBinary (GLsizei count, GLuint const *shaders, GLenum binaryformat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void glShaderSource (GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
void glShaderSource (GLuint shader, GLsizei count, GLchar const **string, GLint const *length, source_location const &sourceLocation=source_location::current())
 
void glStencilFunc (GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
void glStencilFunc (GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
void glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void glStencilMask (GLuint mask, source_location const &sourceLocation=source_location::current())
void glStencilMask (GLuint mask, source_location const &sourceLocation=source_location::current())
 
void glStencilMaskSeparate (GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
void glStencilMaskSeparate (GLenum face, GLuint mask, source_location const &sourceLocation=source_location::current())
 
void glStencilOp (GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
void glStencilOp (GLenum fail, GLenum zfail, GLenum zpass, source_location const &sourceLocation=source_location::current())
 
void glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
void glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass, source_location const &sourceLocation=source_location::current())
 
void glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
void glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, void const *data, source_location const &sourceLocation=source_location::current())
 
void glTexParameterf (GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
void glTexParameterf (GLenum target, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void glTexParameterfv (GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
void glTexParameterfv (GLenum target, GLenum pname, GLfloat const *params, source_location const &sourceLocation=source_location::current())
 
void glTexParameteri (GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void glTexParameteri (GLenum target, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void glTexParameteriv (GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
void glTexParameteriv (GLenum target, GLenum pname, GLint const *params, source_location const &sourceLocation=source_location::current())
 
void glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void glUniform1f (GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
void glUniform1f (GLint location, GLfloat v0, source_location const &sourceLocation=source_location::current())
 
void glUniform1fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniform1fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform1i (GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
void glUniform1i (GLint location, GLint v0, source_location const &sourceLocation=source_location::current())
 
void glUniform1iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void glUniform1iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform2f (GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
void glUniform2f (GLint location, GLfloat v0, GLfloat v1, source_location const &sourceLocation=source_location::current())
 
void glUniform2fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniform2fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform2i (GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
void glUniform2i (GLint location, GLint v0, GLint v1, source_location const &sourceLocation=source_location::current())
 
void glUniform2iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void glUniform2iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
void glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, source_location const &sourceLocation=source_location::current())
 
void glUniform3fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniform3fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform3i (GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
void glUniform3i (GLint location, GLint v0, GLint v1, GLint v2, source_location const &sourceLocation=source_location::current())
 
void glUniform3iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void glUniform3iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
void glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3, source_location const &sourceLocation=source_location::current())
 
void glUniform4fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniform4fv (GLint location, GLsizei count, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
void glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3, source_location const &sourceLocation=source_location::current())
 
void glUniform4iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
void glUniform4iv (GLint location, GLsizei count, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUseProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void glUseProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void glValidateProgram (GLuint program, source_location const &sourceLocation=source_location::current())
void glValidateProgram (GLuint program, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib1f (GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
void glVertexAttrib1f (GLuint index, GLfloat x, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib1fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttrib1fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
void glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib2fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttrib2fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
void glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib3fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttrib3fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
void glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w, source_location const &sourceLocation=source_location::current())
 
void glVertexAttrib4fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttrib4fv (GLuint index, GLfloat const *v, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
void glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void glViewport (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glViewport (GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glReadBuffer (GLenum src, source_location const &sourceLocation=source_location::current())
void glReadBuffer (GLenum src, source_location const &sourceLocation=source_location::current())
 
void glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
void glDrawRangeElements (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void const *indices, source_location const &sourceLocation=source_location::current())
 
void glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void glTexImage3D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
void glTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void const *pixels, source_location const &sourceLocation=source_location::current())
 
void glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glCopyTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void glCompressedTexImage3D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
void glCompressedTexSubImage3D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, void const *data, source_location const &sourceLocation=source_location::current())
 
void glGenQueries (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void glGenQueries (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
void glDeleteQueries (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
void glDeleteQueries (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsQuery (GLuint id, source_location const &sourceLocation=source_location::current())
GLboolean glIsQuery (GLuint id, source_location const &sourceLocation=source_location::current())
 
void glBeginQuery (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
void glBeginQuery (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void glEndQuery (GLenum target, source_location const &sourceLocation=source_location::current())
void glEndQuery (GLenum target, source_location const &sourceLocation=source_location::current())
 
void glGetQueryiv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetQueryiv (GLenum target, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
void glGetQueryObjectuiv (GLuint id, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLboolean glUnmapBuffer (GLenum target, source_location const &sourceLocation=source_location::current())
GLboolean glUnmapBuffer (GLenum target, source_location const &sourceLocation=source_location::current())
 
void glGetBufferPointerv (GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
void glGetBufferPointerv (GLenum target, GLenum pname, void **params, source_location const &sourceLocation=source_location::current())
 
void glDrawBuffers (GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
void glDrawBuffers (GLsizei n, GLenum const *bufs, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix2x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix3x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix2x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix4x2fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix3x4fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glUniformMatrix4x3fv (GLint location, GLsizei count, GLboolean transpose, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
void glBlitFramebuffer (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter, source_location const &sourceLocation=source_location::current())
 
void glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glRenderbufferStorageMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
void glFramebufferTextureLayer (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, source_location const &sourceLocation=source_location::current())
 
void * glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
 
void glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
void * glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access, source_location const &sourceLocation=source_location::current())
 
void glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, source_location const &sourceLocation=source_location::current())
 
void glBindVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
void glBindVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void glDeleteVertexArrays (GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
void glDeleteVertexArrays (GLsizei n, GLuint const *arrays, source_location const &sourceLocation=source_location::current())
 
void glGenVertexArrays (GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
void glGenVertexArrays (GLsizei n, GLuint *arrays, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
GLboolean glIsVertexArray (GLuint array, source_location const &sourceLocation=source_location::current())
 
void glGetIntegeri_v (GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
void glGetIntegeri_v (GLenum target, GLuint index, GLint *data, source_location const &sourceLocation=source_location::current())
 
void glBeginTransformFeedback (GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
void glBeginTransformFeedback (GLenum primitiveMode, source_location const &sourceLocation=source_location::current())
 
void glEndTransformFeedback (source_location const &sourceLocation=source_location::current())
void glEndTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
void glBindBufferRange (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void glBindBufferBase (GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
void glBindBufferBase (GLenum target, GLuint index, GLuint buffer, source_location const &sourceLocation=source_location::current())
 
void glTransformFeedbackVaryings (GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
void glTransformFeedbackVaryings (GLuint program, GLsizei count, GLchar const *const *varyings, GLenum bufferMode, source_location const &sourceLocation=source_location::current())
 
void glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
void glGetTransformFeedbackVarying (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
void glVertexAttribIPointer (GLuint index, GLint size, GLenum type, GLsizei stride, void const *pointer, source_location const &sourceLocation=source_location::current())
 
void glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetVertexAttribIiv (GLuint index, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
void glGetVertexAttribIuiv (GLuint index, GLenum pname, GLuint *params, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
void glVertexAttribI4i (GLuint index, GLint x, GLint y, GLint z, GLint w, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
void glVertexAttribI4ui (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribI4iv (GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttribI4iv (GLuint index, GLint const *v, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribI4uiv (GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
void glVertexAttribI4uiv (GLuint index, GLuint const *v, source_location const &sourceLocation=source_location::current())
 
void glGetUniformuiv (GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
void glGetUniformuiv (GLuint program, GLint location, GLuint *params, source_location const &sourceLocation=source_location::current())
 
GLint glGetFragDataLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
GLint glGetFragDataLocation (GLuint program, GLchar const *name, source_location const &sourceLocation=source_location::current())
 
void glUniform1ui (GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
void glUniform1ui (GLint location, GLuint v0, source_location const &sourceLocation=source_location::current())
 
void glUniform2ui (GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
void glUniform2ui (GLint location, GLuint v0, GLuint v1, source_location const &sourceLocation=source_location::current())
 
void glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
void glUniform3ui (GLint location, GLuint v0, GLuint v1, GLuint v2, source_location const &sourceLocation=source_location::current())
 
void glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
void glUniform4ui (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3, source_location const &sourceLocation=source_location::current())
 
void glUniform1uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void glUniform1uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform2uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void glUniform2uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform3uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void glUniform3uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void glUniform4uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
void glUniform4uiv (GLint location, GLsizei count, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void glClearBufferiv (GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
void glClearBufferiv (GLenum buffer, GLint drawbuffer, GLint const *value, source_location const &sourceLocation=source_location::current())
 
void glClearBufferuiv (GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
void glClearBufferuiv (GLenum buffer, GLint drawbuffer, GLuint const *value, source_location const &sourceLocation=source_location::current())
 
void glClearBufferfv (GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
void glClearBufferfv (GLenum buffer, GLint drawbuffer, GLfloat const *value, source_location const &sourceLocation=source_location::current())
 
void glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
void glClearBufferfi (GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil, source_location const &sourceLocation=source_location::current())
 
const GLubyte * glGetStringi (GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
 
void glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
const GLubyte * glGetStringi (GLenum name, GLuint index, source_location const &sourceLocation=source_location::current())
 
void glCopyBufferSubData (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, source_location const &sourceLocation=source_location::current())
 
void glGetUniformIndices (GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
void glGetUniformIndices (GLuint program, GLsizei uniformCount, GLchar const *const *uniformNames, GLuint *uniformIndices, source_location const &sourceLocation=source_location::current())
 
void glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetActiveUniformsiv (GLuint program, GLsizei uniformCount, GLuint const *uniformIndices, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
GLuint glGetUniformBlockIndex (GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
GLuint glGetUniformBlockIndex (GLuint program, GLchar const *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetActiveUniformBlockiv (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
void glGetActiveUniformBlockName (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName, source_location const &sourceLocation=source_location::current())
 
void glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
void glUniformBlockBinding (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding, source_location const &sourceLocation=source_location::current())
 
void glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
void glDrawArraysInstanced (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
void glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
void glDrawElementsInstanced (GLenum mode, GLsizei count, GLenum type, void const *indices, GLsizei instancecount, source_location const &sourceLocation=source_location::current())
 
GLsync glFenceSync (GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
GLsync glFenceSync (GLenum condition, GLbitfield flags, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsSync (GLsync sync, source_location const &sourceLocation=source_location::current())
GLboolean glIsSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
void glDeleteSync (GLsync sync, source_location const &sourceLocation=source_location::current())
void glDeleteSync (GLsync sync, source_location const &sourceLocation=source_location::current())
 
GLenum glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
GLenum glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
void glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout, source_location const &sourceLocation=source_location::current())
 
void glGetInteger64v (GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
void glGetInteger64v (GLenum pname, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
void glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values, source_location const &sourceLocation=source_location::current())
 
void glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
void glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data, source_location const &sourceLocation=source_location::current())
 
void glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
void glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params, source_location const &sourceLocation=source_location::current())
 
void glGenSamplers (GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
void glGenSamplers (GLsizei count, GLuint *samplers, source_location const &sourceLocation=source_location::current())
 
void glDeleteSamplers (GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
void glDeleteSamplers (GLsizei count, GLuint const *samplers, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsSampler (GLuint sampler, source_location const &sourceLocation=source_location::current())
GLboolean glIsSampler (GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void glBindSampler (GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
void glBindSampler (GLuint unit, GLuint sampler, source_location const &sourceLocation=source_location::current())
 
void glSamplerParameteri (GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
void glSamplerParameteri (GLuint sampler, GLenum pname, GLint param, source_location const &sourceLocation=source_location::current())
 
void glSamplerParameteriv (GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
void glSamplerParameteriv (GLuint sampler, GLenum pname, GLint const *param, source_location const &sourceLocation=source_location::current())
 
void glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
void glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param, source_location const &sourceLocation=source_location::current())
 
void glSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
void glSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat const *param, source_location const &sourceLocation=source_location::current())
 
void glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glVertexAttribDivisor (GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
void glVertexAttribDivisor (GLuint index, GLuint divisor, source_location const &sourceLocation=source_location::current())
 
void glBindTransformFeedback (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
void glBindTransformFeedback (GLenum target, GLuint id, source_location const &sourceLocation=source_location::current())
 
void glDeleteTransformFeedbacks (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
void glDeleteTransformFeedbacks (GLsizei n, GLuint const *ids, source_location const &sourceLocation=source_location::current())
 
void glGenTransformFeedbacks (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
void glGenTransformFeedbacks (GLsizei n, GLuint *ids, source_location const &sourceLocation=source_location::current())
 
GLboolean glIsTransformFeedback (GLuint id, source_location const &sourceLocation=source_location::current())
GLboolean glIsTransformFeedback (GLuint id, source_location const &sourceLocation=source_location::current())
 
void glPauseTransformFeedback (source_location const &sourceLocation=source_location::current())
void glPauseTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void glResumeTransformFeedback (source_location const &sourceLocation=source_location::current())
void glResumeTransformFeedback (source_location const &sourceLocation=source_location::current())
 
void glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
void glGetProgramBinary (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary, source_location const &sourceLocation=source_location::current())
 
void glProgramBinary (GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
void glProgramBinary (GLuint program, GLenum binaryFormat, void const *binary, GLsizei length, source_location const &sourceLocation=source_location::current())
 
void glProgramParameteri (GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
void glProgramParameteri (GLuint program, GLenum pname, GLint value, source_location const &sourceLocation=source_location::current())
 
void glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
void glInvalidateFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, source_location const &sourceLocation=source_location::current())
 
void glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glInvalidateSubFramebuffer (GLenum target, GLsizei numAttachments, GLenum const *attachments, GLint x, GLint y, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
void glTexStorage2D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, source_location const &sourceLocation=source_location::current())
 
void glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
void glTexStorage3D (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, source_location const &sourceLocation=source_location::current())
 
void glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glBindFragDataLocation (GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
void glBindFragDataLocation (GLuint program, GLuint colorNumber, char const *name, source_location const &sourceLocation=source_location::current())
 
void glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
void glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params, source_location const &sourceLocation=source_location::current())
 
void glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
void glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params, source_location const &sourceLocation=source_location::current())
 
void glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
void glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level, source_location const &sourceLocation=source_location::current())
 
void glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
void glTexImage2DMultisample (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations, source_location const &sourceLocation=source_location::current())
 
void glGetDoublev (GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
void glGetDoublev (GLenum pname, GLdouble *params, source_location const &sourceLocation=source_location::current())
 
GLuint loadOpenGLTexture (OpenGLTextureCreateInfo const &createInfo)
 Creates an OpenGL 2D texture from an image loaded from a filesystem path. More...
GLuint loadOpenGLTexture (OpenGLTextureCreateInfo const &createInfo)
 Creates an OpenGL 2D texture from an image loaded from a filesystem path.
 
GLuint loadOpenGLCubemap (OpenGLCubemapCreateInfo const &createInfo)
 Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths. More...
GLuint loadOpenGLCubemap (OpenGLCubemapCreateInfo const &createInfo)
 Creates an OpenGL cubemap texture from a set of images loaded from filesystem paths.
 
GLuint createOpenGLProgram (std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
 Creates a program object from a group of shader paths or source codes. More...
GLuint createOpenGLProgram (std::vector< ShaderSource > const &pathsOrSources, bool throwOnError=true)
 Creates a program object from a group of shader paths or source codes.
 
std::vector< abcg::OpenGLShadertriggerOpenGLShaderCompile (std::vector< ShaderSource > const &pathsOrSources)
 Triggers the compilation of a group of shaders and returns immediately. More...
std::vector< abcg::OpenGLShadertriggerOpenGLShaderCompile (std::vector< ShaderSource > const &pathsOrSources)
 Triggers the compilation of a group of shaders and returns immediately.
 
bool checkOpenGLShaderCompile (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Queries the compile status of shader objects. More...
bool checkOpenGLShaderCompile (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Queries the compile status of shader objects.
 
GLuint triggerOpenGLShaderLink (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Triggers the linking of a group of shader objects. More...
GLuint triggerOpenGLShaderLink (std::vector< OpenGLShader > const &shaders, bool throwOnError=true)
 Triggers the linking of a group of shader objects.
 
bool checkOpenGLShaderLink (GLuint shaderProgram, bool throwOnError=true)
 Queries the link status of the shaders attached to a program object. More...
bool checkOpenGLShaderLink (GLuint shaderProgram, bool throwOnError=true)
 Queries the link status of the shaders attached to a program object.
 
template<typename TFirst , typename... TRest>
template<typename TFirst , typename... TRest>
void hashCombineSeed (std::size_t &seed, const TFirst &value, const TRest &...rest)
 Creates a hash value from several values, combining them with a seed value. More...
 Creates a hash value from several values, combining them with a seed value.
 
template<typename TFirst , typename... TRest>
template<typename TFirst , typename... TRest>
std::size_t hashCombine (const TFirst &value, const TRest &...rest)
 Creates a hash value from several values. More...
 Creates a hash value from several values.
 
std::string toRedString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold red. More...
std::string toRedString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold red.
 
std::string toYellowString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow. More...
std::string toYellowString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold yellow.
 
std::string toBlueString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue. More...
std::string toBlueString (std::string_view str)
 Creates a string prefixed with the ANSI color code that corresponds to foreground bold blue.
 
void checkVkResult (VkResult retCode, source_location const &sourceLocation=source_location::current())
void checkVkResult (VkResult retCode, source_location const &sourceLocation=source_location::current())
 
int resizingEventWatcher (void *data, SDL_Event *event)
int resizingEventWatcher (void *data, SDL_Event *event)
 

Detailed Description

Root namespace.

Typedef Documentation

- -

◆ source_location

+ +

◆ source_location

@@ -831,8 +838,8 @@

Enumeration Type Documentation

- -

◆ OpenGLProfile

+ +

◆ OpenGLProfile

@@ -841,7 +848,7 @@

- +
enum abcg::OpenGLProfileenum class abcg::OpenGLProfile
@@ -854,21 +861,21 @@

See also
abcg::OpenGLSettings.
- - -
Enumerator
Core 

OpenGL core profile.

+
Enumerator
Core 

OpenGL core profile.

Deprecated functions are disabled.

Compatibility 

OpenGL compatibility profile.

+
Compatibility 

OpenGL compatibility profile.

Deprecated functions are allowed.

ES 

OpenGL ES profile.

+
ES 

OpenGL ES profile.

Only a subset of the base OpenGL functionality is available.

- -

◆ ShaderStage

+ +

◆ ShaderStage

@@ -877,7 +884,7 @@

- +
enum abcg::ShaderStageenum class abcg::ShaderStage
@@ -889,27 +896,27 @@

-EnumeratorVertex  -TessellationControl  -TessellationEvaluation  -Geometry  -Fragment  -Compute  -RayGen  -AnyHit  -ClosestHit  -Miss  -Intersection  -Callable  -Task  -Mesh  +EnumeratorVertex  +TessellationControl  +TessellationEvaluation  +Geometry  +Fragment  +Compute  +RayGen  +AnyHit  +ClosestHit  +Miss  +Intersection  +Callable  +Task  +Mesh 

Function Documentation

- -

◆ callGL()

+ +

◆ callGL()

@@ -962,8 +969,8 @@

-

◆ checkGLError()

+ +

◆ checkGLError()

@@ -1005,8 +1012,8 @@

-

◆ checkOpenGLShaderCompile()

+ +

◆ checkOpenGLShaderCompile()

@@ -1051,8 +1058,8 @@

-

◆ checkOpenGLShaderLink()

+ +

◆ checkOpenGLShaderLink()

@@ -1096,8 +1103,8 @@

-

◆ checkVkResult()

+ +

◆ checkVkResult()

@@ -1124,8 +1131,8 @@

-

◆ createOpenGLProgram()

+ +

◆ createOpenGLProgram()

@@ -1168,8 +1175,8 @@

-

◆ flipHorizontally()

+ +

◆ flipHorizontally()

@@ -1195,8 +1202,8 @@

-

◆ flipVertically()

+ +

◆ flipVertically()

@@ -1222,8 +1229,8 @@

-

◆ glActiveTexture()

+ +

◆ glActiveTexture()

@@ -1258,8 +1265,8 @@

-

◆ glAttachShader()

+ +

◆ glAttachShader()

@@ -1300,8 +1307,8 @@

-

◆ glBeginQuery()

+ +

◆ glBeginQuery()

@@ -1342,8 +1349,8 @@

-

◆ glBeginTransformFeedback()

+ +

◆ glBeginTransformFeedback()

@@ -1378,8 +1385,8 @@

-

◆ glBindAttribLocation()

+ +

◆ glBindAttribLocation()

@@ -1426,8 +1433,8 @@

-

◆ glBindBuffer()

+ +

◆ glBindBuffer()

@@ -1468,8 +1475,8 @@

-

◆ glBindBufferBase()

+ +

◆ glBindBufferBase()

@@ -1516,8 +1523,8 @@

-

◆ glBindBufferRange()

+ +

◆ glBindBufferRange()

@@ -1576,8 +1583,8 @@

-

◆ glBindFragDataLocation()

+ +

◆ glBindFragDataLocation()

@@ -1624,8 +1631,8 @@

-

◆ glBindFramebuffer()

+ +

◆ glBindFramebuffer()

@@ -1666,8 +1673,8 @@

-

◆ glBindRenderbuffer()

+ +

◆ glBindRenderbuffer()

@@ -1708,8 +1715,8 @@

-

◆ glBindSampler()

+ +

◆ glBindSampler()

@@ -1750,8 +1757,8 @@

-

◆ glBindTexture()

+ +

◆ glBindTexture()

@@ -1792,8 +1799,8 @@

-

◆ glBindTransformFeedback()

+ +

◆ glBindTransformFeedback()

@@ -1834,8 +1841,8 @@

-

◆ glBindVertexArray()

+ +

◆ glBindVertexArray()

@@ -1870,8 +1877,8 @@

-

◆ glBlendColor()

+ +

◆ glBlendColor()

@@ -1924,8 +1931,8 @@

-

◆ glBlendEquation()

+ +

◆ glBlendEquation()

@@ -1960,8 +1967,8 @@

-

◆ glBlendEquationSeparate()

+ +

◆ glBlendEquationSeparate()

@@ -2002,8 +2009,8 @@

-

◆ glBlendFunc()

+ +

◆ glBlendFunc()

@@ -2044,8 +2051,8 @@

-

◆ glBlendFuncSeparate()

+ +

◆ glBlendFuncSeparate()

@@ -2098,8 +2105,8 @@

-

◆ glBlitFramebuffer()

+ +

◆ glBlitFramebuffer()

@@ -2188,8 +2195,8 @@

-

◆ glBufferData()

+ +

◆ glBufferData()

@@ -2242,8 +2249,8 @@

-

◆ glBufferSubData()

+ +

◆ glBufferSubData()

@@ -2296,8 +2303,8 @@

-

◆ glCheckFramebufferStatus()

+ +

◆ glCheckFramebufferStatus()

@@ -2332,8 +2339,8 @@

-

◆ glClear()

+ +

◆ glClear()

@@ -2368,8 +2375,8 @@

-

◆ glClearBufferfi()

+ +

◆ glClearBufferfi()

@@ -2422,8 +2429,8 @@

-

◆ glClearBufferfv()

+ +

◆ glClearBufferfv()

@@ -2470,8 +2477,8 @@

-

◆ glClearBufferiv()

+ +

◆ glClearBufferiv()

@@ -2518,8 +2525,8 @@

-

◆ glClearBufferuiv()

+ +

◆ glClearBufferuiv()

@@ -2566,8 +2573,8 @@

-

◆ glClearColor()

+ +

◆ glClearColor()

@@ -2620,8 +2627,8 @@

-

◆ glClearDepthf()

+ +

◆ glClearDepthf()

@@ -2656,8 +2663,8 @@

-

◆ glClearStencil()

+ +

◆ glClearStencil()

@@ -2692,8 +2699,8 @@

-

◆ glClientWaitSync()

+ +

◆ glClientWaitSync()

@@ -2740,8 +2747,8 @@

-

◆ glColorMask()

+ +

◆ glColorMask()

@@ -2794,8 +2801,8 @@

-

◆ glCompileShader()

+ +

◆ glCompileShader()

@@ -2830,8 +2837,8 @@

-

◆ glCompressedTexImage2D()

+ +

◆ glCompressedTexImage2D()

@@ -2908,8 +2915,8 @@

-

◆ glCompressedTexImage3D()

+ +

◆ glCompressedTexImage3D()

@@ -2992,8 +2999,8 @@

-

◆ glCompressedTexSubImage2D()

+ +

◆ glCompressedTexSubImage2D()

@@ -3076,8 +3083,8 @@

-

◆ glCompressedTexSubImage3D()

+ +

◆ glCompressedTexSubImage3D()

@@ -3172,8 +3179,8 @@

-

◆ glCopyBufferSubData()

+ +

◆ glCopyBufferSubData()

@@ -3232,8 +3239,8 @@

-

◆ glCopyTexImage2D()

+ +

◆ glCopyTexImage2D()

@@ -3310,8 +3317,8 @@

-

◆ glCopyTexSubImage2D()

+ +

◆ glCopyTexSubImage2D()

@@ -3388,8 +3395,8 @@

-

◆ glCopyTexSubImage3D()

+ +

◆ glCopyTexSubImage3D()

@@ -3472,8 +3479,8 @@

-

◆ glCreateProgram()

+ +

◆ glCreateProgram()

@@ -3498,8 +3505,8 @@

-

◆ glCreateShader()

+ +

◆ glCreateShader()

@@ -3534,8 +3541,8 @@

-

◆ glCullFace()

+ +

◆ glCullFace()

@@ -3570,8 +3577,8 @@

-

◆ glDeleteBuffers()

+ +

◆ glDeleteBuffers()

@@ -3612,8 +3619,8 @@

-

◆ glDeleteFramebuffers()

+ +

◆ glDeleteFramebuffers()

@@ -3654,8 +3661,8 @@

-

◆ glDeleteProgram()

+ +

◆ glDeleteProgram()

@@ -3690,8 +3697,8 @@

-

◆ glDeleteQueries()

+ +

◆ glDeleteQueries()

@@ -3732,8 +3739,8 @@

-

◆ glDeleteRenderbuffers()

+ +

◆ glDeleteRenderbuffers()

@@ -3774,8 +3781,8 @@

-

◆ glDeleteSamplers()

+ +

◆ glDeleteSamplers()

@@ -3816,8 +3823,8 @@

-

◆ glDeleteShader()

+ +

◆ glDeleteShader()

@@ -3852,8 +3859,8 @@

-

◆ glDeleteSync()

+ +

◆ glDeleteSync()

@@ -3888,8 +3895,8 @@

-

◆ glDeleteTextures()

+ +

◆ glDeleteTextures()

@@ -3930,8 +3937,8 @@

-

◆ glDeleteTransformFeedbacks()

+ +

◆ glDeleteTransformFeedbacks()

@@ -3972,8 +3979,8 @@

-

◆ glDeleteVertexArrays()

+ +

◆ glDeleteVertexArrays()

@@ -4014,8 +4021,8 @@

-

◆ glDepthFunc()

+ +

◆ glDepthFunc()

@@ -4050,8 +4057,8 @@

-

◆ glDepthMask()

+ +

◆ glDepthMask()

@@ -4086,8 +4093,8 @@

-

◆ glDepthRangef()

+ +

◆ glDepthRangef()

@@ -4128,8 +4135,8 @@

-

◆ glDetachShader()

+ +

◆ glDetachShader()

@@ -4170,8 +4177,8 @@

-

◆ glDisable()

+ +

◆ glDisable()

@@ -4206,8 +4213,8 @@

-

◆ glDisableVertexAttribArray()

+ +

◆ glDisableVertexAttribArray()

@@ -4242,8 +4249,8 @@

-

◆ glDrawArrays()

+ +

◆ glDrawArrays()

@@ -4290,8 +4297,8 @@

-

◆ glDrawArraysInstanced()

+ +

◆ glDrawArraysInstanced()

@@ -4344,8 +4351,8 @@

-

◆ glDrawBuffers()

+ +

◆ glDrawBuffers()

@@ -4386,8 +4393,8 @@

-

◆ glDrawElements()

+ +

◆ glDrawElements()

@@ -4440,8 +4447,8 @@

-

◆ glDrawElementsInstanced()

+ +

◆ glDrawElementsInstanced()

@@ -4500,8 +4507,8 @@

-

◆ glDrawRangeElements()

+ +

◆ glDrawRangeElements()

@@ -4566,8 +4573,8 @@

-

◆ glEnable()

+ +

◆ glEnable()

@@ -4602,8 +4609,8 @@

-

◆ glEnableVertexAttribArray()

+ +

◆ glEnableVertexAttribArray()

@@ -4638,8 +4645,8 @@

-

◆ glEndQuery()

+ +

◆ glEndQuery()

@@ -4674,8 +4681,8 @@

-

◆ glEndTransformFeedback()

+ +

◆ glEndTransformFeedback()

@@ -4700,8 +4707,8 @@

-

◆ glFenceSync()

+ +

◆ glFenceSync()

@@ -4742,8 +4749,8 @@

-

◆ glFinish()

+ +

◆ glFinish()

@@ -4768,8 +4775,8 @@

-

◆ glFlush()

+ +

◆ glFlush()

@@ -4794,8 +4801,8 @@

-

◆ glFlushMappedBufferRange()

+ +

◆ glFlushMappedBufferRange()

@@ -4842,8 +4849,8 @@

-

◆ glFramebufferRenderbuffer()

+ +

◆ glFramebufferRenderbuffer()

@@ -4896,8 +4903,8 @@

-

◆ glFramebufferTexture()

+ +

◆ glFramebufferTexture()

@@ -4950,8 +4957,8 @@

-

◆ glFramebufferTexture2D()

+ +

◆ glFramebufferTexture2D()

@@ -5010,8 +5017,8 @@

-

◆ glFramebufferTextureLayer()

+ +

◆ glFramebufferTextureLayer()

@@ -5070,8 +5077,8 @@

-

◆ glFrontFace()

+ +

◆ glFrontFace()

@@ -5106,8 +5113,8 @@

-

◆ glGenBuffers()

+ +

◆ glGenBuffers()

@@ -5148,8 +5155,8 @@

-

◆ glGenerateMipmap()

+ +

◆ glGenerateMipmap()

@@ -5184,8 +5191,8 @@

-

◆ glGenFramebuffers()

+ +

◆ glGenFramebuffers()

@@ -5226,8 +5233,8 @@

-

◆ glGenQueries()

+ +

◆ glGenQueries()

@@ -5268,8 +5275,8 @@

-

◆ glGenRenderbuffers()

+ +

◆ glGenRenderbuffers()

@@ -5310,8 +5317,8 @@

-

◆ glGenSamplers()

+ +

◆ glGenSamplers()

@@ -5352,8 +5359,8 @@

-

◆ glGenTextures()

+ +

◆ glGenTextures()

@@ -5394,8 +5401,8 @@

-

◆ glGenTransformFeedbacks()

+ +

◆ glGenTransformFeedbacks()

@@ -5436,8 +5443,8 @@

-

◆ glGenVertexArrays()

+ +

◆ glGenVertexArrays()

@@ -5478,8 +5485,8 @@

-

◆ glGetActiveAttrib()

+ +

◆ glGetActiveAttrib()

@@ -5550,8 +5557,8 @@

-

◆ glGetActiveUniform()

+ +

◆ glGetActiveUniform()

@@ -5622,8 +5629,8 @@

-

◆ glGetActiveUniformBlockiv()

+ +

◆ glGetActiveUniformBlockiv()

@@ -5676,8 +5683,8 @@

-

◆ glGetActiveUniformBlockName()

+ +

◆ glGetActiveUniformBlockName()

@@ -5736,8 +5743,8 @@

-

◆ glGetActiveUniformsiv()

+ +

◆ glGetActiveUniformsiv()

@@ -5796,8 +5803,8 @@

-

◆ glGetAttachedShaders()

+ +

◆ glGetAttachedShaders()

@@ -5850,8 +5857,8 @@

-

◆ glGetAttribLocation()

+ +

◆ glGetAttribLocation()

@@ -5892,8 +5899,8 @@

-

◆ glGetBooleanv()

+ +

◆ glGetBooleanv()

@@ -5934,8 +5941,8 @@

-

◆ glGetBufferParameteri64v()

+ +

◆ glGetBufferParameteri64v()

@@ -5982,8 +5989,8 @@

-

◆ glGetBufferParameteriv()

+ +

◆ glGetBufferParameteriv()

@@ -6030,8 +6037,8 @@

-

◆ glGetBufferPointerv()

+ +

◆ glGetBufferPointerv()

@@ -6078,8 +6085,8 @@

-

◆ glGetDoublev()

+ +

◆ glGetDoublev()

@@ -6120,8 +6127,8 @@

-

◆ glGetFloatv()

+ +

◆ glGetFloatv()

@@ -6162,8 +6169,8 @@

-

◆ glGetFragDataLocation()

+ +

◆ glGetFragDataLocation()

@@ -6204,8 +6211,8 @@

-

◆ glGetFramebufferAttachmentParameteriv()

+ +

◆ glGetFramebufferAttachmentParameteriv()

@@ -6258,8 +6265,8 @@

-

◆ glGetInteger64i_v()

+ +

◆ glGetInteger64i_v()

@@ -6306,8 +6313,8 @@

-

◆ glGetInteger64v()

+ +

◆ glGetInteger64v()

@@ -6348,8 +6355,8 @@

-

◆ glGetIntegeri_v()

+ +

◆ glGetIntegeri_v()

@@ -6396,8 +6403,8 @@

-

◆ glGetIntegerv()

+ +

◆ glGetIntegerv()

@@ -6438,8 +6445,8 @@

-

◆ glGetInternalformativ()

+ +

◆ glGetInternalformativ()

@@ -6498,8 +6505,8 @@

-

◆ glGetProgramBinary()

+ +

◆ glGetProgramBinary()

@@ -6558,8 +6565,8 @@

-

◆ glGetProgramInfoLog()

+ +

◆ glGetProgramInfoLog()

@@ -6612,8 +6619,8 @@

-

◆ glGetProgramiv()

+ +

◆ glGetProgramiv()

@@ -6660,8 +6667,8 @@

-

◆ glGetQueryiv()

+ +

◆ glGetQueryiv()

@@ -6708,8 +6715,8 @@

-

◆ glGetQueryObjectuiv()

+ +

◆ glGetQueryObjectuiv()

@@ -6756,8 +6763,8 @@

-

◆ glGetRenderbufferParameteriv()

+ +

◆ glGetRenderbufferParameteriv()

@@ -6804,8 +6811,8 @@

-

◆ glGetSamplerParameterfv()

+ +

◆ glGetSamplerParameterfv()

@@ -6852,8 +6859,8 @@

-

◆ glGetSamplerParameteriv()

+ +

◆ glGetSamplerParameteriv()

@@ -6900,8 +6907,8 @@

-

◆ glGetShaderInfoLog()

+ +

◆ glGetShaderInfoLog()

@@ -6954,8 +6961,8 @@

-

◆ glGetShaderiv()

+ +

◆ glGetShaderiv()

@@ -7002,8 +7009,8 @@

-

◆ glGetShaderPrecisionFormat()

+ +

◆ glGetShaderPrecisionFormat()

@@ -7056,8 +7063,8 @@

-

◆ glGetShaderSource()

+ +

◆ glGetShaderSource()

@@ -7110,8 +7117,8 @@

-

◆ glGetString()

+ +

◆ glGetString()

@@ -7120,7 +7127,7 @@

- + @@ -7146,8 +7153,8 @@

-

◆ glGetStringi()

+ +

◆ glGetStringi()

@@ -7156,7 +7163,7 @@

const GLubyte* abcg::glGetString const GLubyte * abcg::glGetString ( GLenum  name,
- + @@ -7188,8 +7195,8 @@

-

◆ glGetSynciv()

+ +

◆ glGetSynciv()

@@ -7248,8 +7255,8 @@

-

◆ glGetTexLevelParameterfv()

+ +

◆ glGetTexLevelParameterfv()

@@ -7302,8 +7309,8 @@

-

◆ glGetTexLevelParameteriv()

+ +

◆ glGetTexLevelParameteriv()

@@ -7356,8 +7363,8 @@

-

◆ glGetTexParameterfv()

+ +

◆ glGetTexParameterfv()

@@ -7404,8 +7411,8 @@

-

◆ glGetTexParameteriv()

+ +

◆ glGetTexParameteriv()

@@ -7452,8 +7459,8 @@

-

◆ glGetTransformFeedbackVarying()

+ +

◆ glGetTransformFeedbackVarying()

@@ -7524,8 +7531,8 @@

-

◆ glGetUniformBlockIndex()

+ +

◆ glGetUniformBlockIndex()

@@ -7566,8 +7573,8 @@

-

◆ glGetUniformfv()

+ +

◆ glGetUniformfv()

@@ -7614,8 +7621,8 @@

-

◆ glGetUniformIndices()

+ +

◆ glGetUniformIndices()

@@ -7668,8 +7675,8 @@

-

◆ glGetUniformiv()

+ +

◆ glGetUniformiv()

@@ -7716,8 +7723,8 @@

-

◆ glGetUniformLocation()

+ +

◆ glGetUniformLocation()

@@ -7758,8 +7765,8 @@

-

◆ glGetUniformuiv()

+ +

◆ glGetUniformuiv()

@@ -7806,8 +7813,8 @@

-

◆ glGetVertexAttribfv()

+ +

◆ glGetVertexAttribfv()

@@ -7854,8 +7861,8 @@

-

◆ glGetVertexAttribIiv()

+ +

◆ glGetVertexAttribIiv()

@@ -7902,8 +7909,8 @@

-

◆ glGetVertexAttribIuiv()

+ +

◆ glGetVertexAttribIuiv()

@@ -7950,8 +7957,8 @@

-

◆ glGetVertexAttribiv()

+ +

◆ glGetVertexAttribiv()

@@ -7998,8 +8005,8 @@

-

◆ glGetVertexAttribPointerv()

+ +

◆ glGetVertexAttribPointerv()

@@ -8046,8 +8053,8 @@

-

◆ glHint()

+ +

◆ glHint()

@@ -8088,8 +8095,8 @@

-

◆ glInvalidateFramebuffer()

+ +

◆ glInvalidateFramebuffer()

@@ -8136,8 +8143,8 @@

-

◆ glInvalidateSubFramebuffer()

+ +

◆ glInvalidateSubFramebuffer()

@@ -8208,8 +8215,8 @@

-

◆ glIsBuffer()

+ +

◆ glIsBuffer()

@@ -8244,8 +8251,8 @@

-

◆ glIsEnabled()

+ +

◆ glIsEnabled()

@@ -8280,8 +8287,8 @@

-

◆ glIsFramebuffer()

+ +

◆ glIsFramebuffer()

@@ -8316,8 +8323,8 @@

-

◆ glIsProgram()

+ +

◆ glIsProgram()

@@ -8352,8 +8359,8 @@

-

◆ glIsQuery()

+ +

◆ glIsQuery()

@@ -8388,8 +8395,8 @@

-

◆ glIsRenderbuffer()

+ +

◆ glIsRenderbuffer()

@@ -8424,8 +8431,8 @@

-

◆ glIsSampler()

+ +

◆ glIsSampler()

@@ -8460,8 +8467,8 @@

-

◆ glIsShader()

+ +

◆ glIsShader()

@@ -8496,8 +8503,8 @@

-

◆ glIsSync()

+ +

◆ glIsSync()

@@ -8532,8 +8539,8 @@

-

◆ glIsTexture()

+ +

◆ glIsTexture()

@@ -8568,8 +8575,8 @@

-

◆ glIsTransformFeedback()

+ +

◆ glIsTransformFeedback()

@@ -8604,8 +8611,8 @@

-

◆ glIsVertexArray()

+ +

◆ glIsVertexArray()

@@ -8640,8 +8647,8 @@

-

◆ glLineWidth()

+ +

◆ glLineWidth()

@@ -8676,8 +8683,8 @@

-

◆ glLinkProgram()

+ +

◆ glLinkProgram()

@@ -8712,8 +8719,8 @@

-

◆ glMapBufferRange()

+ +

◆ glMapBufferRange()

@@ -8722,7 +8729,7 @@

const GLubyte* abcg::glGetStringi const GLubyte * abcg::glGetStringi ( GLenum  name,
- + @@ -8766,8 +8773,8 @@

-

◆ glPauseTransformFeedback()

+ +

◆ glPauseTransformFeedback()

@@ -8792,8 +8799,8 @@

-

◆ glPixelStorei()

+ +

◆ glPixelStorei()

@@ -8834,8 +8841,8 @@

-

◆ glPolygonOffset()

+ +

◆ glPolygonOffset()

@@ -8876,8 +8883,8 @@

-

◆ glProgramBinary()

+ +

◆ glProgramBinary()

@@ -8930,8 +8937,8 @@

-

◆ glProgramParameteri()

+ +

◆ glProgramParameteri()

@@ -8978,8 +8985,8 @@

-

◆ glReadBuffer()

+ +

◆ glReadBuffer()

@@ -9014,8 +9021,8 @@

-

◆ glReadPixels()

+ +

◆ glReadPixels()

@@ -9086,8 +9093,8 @@

-

◆ glReleaseShaderCompiler()

+ +

◆ glReleaseShaderCompiler()

@@ -9112,8 +9119,8 @@

-

◆ glRenderbufferStorage()

+ +

◆ glRenderbufferStorage()

@@ -9166,8 +9173,8 @@

-

◆ glRenderbufferStorageMultisample()

+ +

◆ glRenderbufferStorageMultisample()

@@ -9226,8 +9233,8 @@

-

◆ glResumeTransformFeedback()

+ +

◆ glResumeTransformFeedback()

@@ -9252,8 +9259,8 @@

-

◆ glSampleCoverage()

+ +

◆ glSampleCoverage()

@@ -9294,8 +9301,8 @@

-

◆ glSamplerParameterf()

+ +

◆ glSamplerParameterf()

@@ -9342,8 +9349,8 @@

-

◆ glSamplerParameterfv()

+ +

◆ glSamplerParameterfv()

@@ -9390,8 +9397,8 @@

-

◆ glSamplerParameteri()

+ +

◆ glSamplerParameteri()

@@ -9438,8 +9445,8 @@

-

◆ glSamplerParameteriv()

+ +

◆ glSamplerParameteriv()

@@ -9486,8 +9493,8 @@

-

◆ glScissor()

+ +

◆ glScissor()

@@ -9540,8 +9547,8 @@

-

◆ glShaderBinary()

+ +

◆ glShaderBinary()

@@ -9600,8 +9607,8 @@

-

◆ glShaderSource()

+ +

◆ glShaderSource()

@@ -9654,8 +9661,8 @@

-

◆ glStencilFunc()

+ +

◆ glStencilFunc()

@@ -9702,8 +9709,8 @@

-

◆ glStencilFuncSeparate()

+ +

◆ glStencilFuncSeparate()

@@ -9756,8 +9763,8 @@

-

◆ glStencilMask()

+ +

◆ glStencilMask()

@@ -9792,8 +9799,8 @@

-

◆ glStencilMaskSeparate()

+ +

◆ glStencilMaskSeparate()

@@ -9834,8 +9841,8 @@

-

◆ glStencilOp()

+ +

◆ glStencilOp()

@@ -9882,8 +9889,8 @@

-

◆ glStencilOpSeparate()

+ +

◆ glStencilOpSeparate()

@@ -9936,8 +9943,8 @@

-

◆ glTexImage2D()

+ +

◆ glTexImage2D()

@@ -10020,8 +10027,8 @@

-

◆ glTexImage2DMultisample()

+ +

◆ glTexImage2DMultisample()

@@ -10086,8 +10093,8 @@

-

◆ glTexImage3D()

+ +

◆ glTexImage3D()

@@ -10176,8 +10183,8 @@

-

◆ glTexParameterf()

+ +

◆ glTexParameterf()

@@ -10224,8 +10231,8 @@

-

◆ glTexParameterfv()

+ +

◆ glTexParameterfv()

@@ -10272,8 +10279,8 @@

-

◆ glTexParameteri()

+ +

◆ glTexParameteri()

@@ -10320,8 +10327,8 @@

-

◆ glTexParameteriv()

+ +

◆ glTexParameteriv()

@@ -10368,8 +10375,8 @@

-

◆ glTexStorage2D()

+ +

◆ glTexStorage2D()

@@ -10428,8 +10435,8 @@

-

◆ glTexStorage3D()

+ +

◆ glTexStorage3D()

@@ -10494,8 +10501,8 @@

-

◆ glTexSubImage2D()

+ +

◆ glTexSubImage2D()

@@ -10578,8 +10585,8 @@

-

◆ glTexSubImage3D()

+ +

◆ glTexSubImage3D()

@@ -10674,8 +10681,8 @@

-

◆ glTransformFeedbackVaryings()

+ +

◆ glTransformFeedbackVaryings()

@@ -10728,8 +10735,8 @@

-

◆ glUniform1f()

+ +

◆ glUniform1f()

@@ -10770,8 +10777,8 @@

-

◆ glUniform1fv()

+ +

◆ glUniform1fv()

@@ -10818,8 +10825,8 @@

-

◆ glUniform1i()

+ +

◆ glUniform1i()

@@ -10860,8 +10867,8 @@

-

◆ glUniform1iv()

+ +

◆ glUniform1iv()

@@ -10908,8 +10915,8 @@

-

◆ glUniform1ui()

+ +

◆ glUniform1ui()

@@ -10950,8 +10957,8 @@

-

◆ glUniform1uiv()

+ +

◆ glUniform1uiv()

@@ -10998,8 +11005,8 @@

-

◆ glUniform2f()

+ +

◆ glUniform2f()

@@ -11046,8 +11053,8 @@

-

◆ glUniform2fv()

+ +

◆ glUniform2fv()

@@ -11094,8 +11101,8 @@

-

◆ glUniform2i()

+ +

◆ glUniform2i()

@@ -11142,8 +11149,8 @@

-

◆ glUniform2iv()

+ +

◆ glUniform2iv()

@@ -11190,8 +11197,8 @@

-

◆ glUniform2ui()

+ +

◆ glUniform2ui()

@@ -11238,8 +11245,8 @@

-

◆ glUniform2uiv()

+ +

◆ glUniform2uiv()

@@ -11286,8 +11293,8 @@

-

◆ glUniform3f()

+ +

◆ glUniform3f()

@@ -11340,8 +11347,8 @@

-

◆ glUniform3fv()

+ +

◆ glUniform3fv()

@@ -11388,8 +11395,8 @@

-

◆ glUniform3i()

+ +

◆ glUniform3i()

@@ -11442,8 +11449,8 @@

-

◆ glUniform3iv()

+ +

◆ glUniform3iv()

@@ -11490,8 +11497,8 @@

-

◆ glUniform3ui()

+ +

◆ glUniform3ui()

@@ -11544,8 +11551,8 @@

-

◆ glUniform3uiv()

+ +

◆ glUniform3uiv()

@@ -11592,8 +11599,8 @@

-

◆ glUniform4f()

+ +

◆ glUniform4f()

@@ -11652,8 +11659,8 @@

-

◆ glUniform4fv()

+ +

◆ glUniform4fv()

@@ -11700,8 +11707,8 @@

-

◆ glUniform4i()

+ +

◆ glUniform4i()

@@ -11760,8 +11767,8 @@

-

◆ glUniform4iv()

+ +

◆ glUniform4iv()

@@ -11808,8 +11815,8 @@

-

◆ glUniform4ui()

+ +

◆ glUniform4ui()

@@ -11868,8 +11875,8 @@

-

◆ glUniform4uiv()

+ +

◆ glUniform4uiv()

@@ -11916,8 +11923,8 @@

-

◆ glUniformBlockBinding()

+ +

◆ glUniformBlockBinding()

@@ -11964,8 +11971,8 @@

-

◆ glUniformMatrix2fv()

+ +

◆ glUniformMatrix2fv()

@@ -12018,8 +12025,8 @@

-

◆ glUniformMatrix2x3fv()

+ +

◆ glUniformMatrix2x3fv()

@@ -12072,8 +12079,8 @@

-

◆ glUniformMatrix2x4fv()

+ +

◆ glUniformMatrix2x4fv()

@@ -12126,8 +12133,8 @@

-

◆ glUniformMatrix3fv()

+ +

◆ glUniformMatrix3fv()

@@ -12180,8 +12187,8 @@

-

◆ glUniformMatrix3x2fv()

+ +

◆ glUniformMatrix3x2fv()

@@ -12234,8 +12241,8 @@

-

◆ glUniformMatrix3x4fv()

+ +

◆ glUniformMatrix3x4fv()

@@ -12288,8 +12295,8 @@

-

◆ glUniformMatrix4fv()

+ +

◆ glUniformMatrix4fv()

@@ -12342,8 +12349,8 @@

-

◆ glUniformMatrix4x2fv()

+ +

◆ glUniformMatrix4x2fv()

@@ -12396,8 +12403,8 @@

-

◆ glUniformMatrix4x3fv()

+ +

◆ glUniformMatrix4x3fv()

@@ -12450,8 +12457,8 @@

-

◆ glUnmapBuffer()

+ +

◆ glUnmapBuffer()

@@ -12486,8 +12493,8 @@

-

◆ glUseProgram()

+ +

◆ glUseProgram()

@@ -12522,8 +12529,8 @@

-

◆ glValidateProgram()

+ +

◆ glValidateProgram()

@@ -12558,8 +12565,8 @@

-

◆ glVertexAttrib1f()

+ +

◆ glVertexAttrib1f()

@@ -12600,8 +12607,8 @@

-

◆ glVertexAttrib1fv()

+ +

◆ glVertexAttrib1fv()

@@ -12642,8 +12649,8 @@

-

◆ glVertexAttrib2f()

+ +

◆ glVertexAttrib2f()

@@ -12690,8 +12697,8 @@

-

◆ glVertexAttrib2fv()

+ +

◆ glVertexAttrib2fv()

@@ -12732,8 +12739,8 @@

-

◆ glVertexAttrib3f()

+ +

◆ glVertexAttrib3f()

@@ -12786,8 +12793,8 @@

-

◆ glVertexAttrib3fv()

+ +

◆ glVertexAttrib3fv()

@@ -12828,8 +12835,8 @@

-

◆ glVertexAttrib4f()

+ +

◆ glVertexAttrib4f()

@@ -12888,8 +12895,8 @@

-

◆ glVertexAttrib4fv()

+ +

◆ glVertexAttrib4fv()

@@ -12930,8 +12937,8 @@

-

◆ glVertexAttribDivisor()

+ +

◆ glVertexAttribDivisor()

@@ -12972,8 +12979,8 @@

-

◆ glVertexAttribI4i()

+ +

◆ glVertexAttribI4i()

@@ -13032,8 +13039,8 @@

-

◆ glVertexAttribI4iv()

+ +

◆ glVertexAttribI4iv()

@@ -13074,8 +13081,8 @@

-

◆ glVertexAttribI4ui()

+ +

◆ glVertexAttribI4ui()

@@ -13134,8 +13141,8 @@

-

◆ glVertexAttribI4uiv()

+ +

◆ glVertexAttribI4uiv()

@@ -13176,8 +13183,8 @@

-

◆ glVertexAttribIPointer()

+ +

◆ glVertexAttribIPointer()

@@ -13236,8 +13243,8 @@

-

◆ glVertexAttribPointer()

+ +

◆ glVertexAttribPointer()

@@ -13302,8 +13309,8 @@

-

◆ glViewport()

+ +

◆ glViewport()

@@ -13356,8 +13363,8 @@

-

◆ glWaitSync()

+ +

◆ glWaitSync()

@@ -13404,8 +13411,8 @@

-

◆ hashCombine()

+ +

◆ hashCombine()

@@ -13433,8 +13440,8 @@

Creates a hash value from several values.

-

This is similar to abcg::hashCombineSeed, but implicitly uses a zero seed. It can be used as follows:

std::size_t hash{abcg::hashCombine(Foo{}, 42, "Some text", 3.14)};
-
std::size_t hashCombine(const TFirst &value, const TRest &...rest)
Creates a hash value from several values.
Definition: abcgUtil.hpp:66
+

This is similar to abcg::hashCombineSeed, but implicitly uses a zero seed. It can be used as follows:

std::size_t hash{abcg::hashCombine(Foo{}, 42, "Some text", 3.14)};
+
std::size_t hashCombine(const TFirst &value, const TRest &...rest)
Creates a hash value from several values.
Definition abcgUtil.hpp:66
Template Parameters

void* abcg::glMapBufferRange void * abcg::glMapBufferRange ( GLenum  target,
@@ -13453,8 +13460,8 @@

-

◆ hashCombineSeed()

+ +

◆ hashCombineSeed()

@@ -13489,10 +13496,10 @@

std::size_t hash{};
-
abcg::hashCombineSeed(hash, Foo{}, 42, "Some text");
- +
abcg::hashCombineSeed(hash, Foo{}, 42, "Some text");
+
// Use hash...
-
void hashCombineSeed(std::size_t &seed, const TFirst &value, const TRest &...rest)
Creates a hash value from several values, combining them with a seed value.
Definition: abcgUtil.hpp:41
+
void hashCombineSeed(std::size_t &seed, const TFirst &value, const TRest &...rest)
Creates a hash value from several values, combining them with a seed value.
Definition abcgUtil.hpp:41

Template Parameters

TFirstTypename of the first value.
@@ -13512,8 +13519,8 @@

-

◆ loadOpenGLCubemap()

+ +

◆ loadOpenGLCubemap()

@@ -13545,8 +13552,8 @@

-

◆ loadOpenGLTexture()

+ +

◆ loadOpenGLTexture()

@@ -13578,8 +13585,8 @@

-

◆ resizingEventWatcher()

+ +

◆ resizingEventWatcher()

@@ -13606,8 +13613,8 @@

-

◆ toBlueString()

+ +

◆ toBlueString()

@@ -13634,8 +13641,8 @@

-

◆ toRedString()

+ +

◆ toRedString()

@@ -13662,8 +13669,8 @@

-

◆ toYellowString()

+ +

◆ toYellowString()

@@ -13690,8 +13697,8 @@

-

◆ triggerOpenGLShaderCompile()

+ +

◆ triggerOpenGLShaderCompile()

@@ -13726,8 +13733,8 @@

-

◆ triggerOpenGLShaderLink()

+ +

◆ triggerOpenGLShaderLink()

@@ -13778,7 +13785,7 @@

    - +

diff --git a/abcg/doc/html/namespaceabcg.js b/abcg/doc/html/namespaceabcg.js index a9771195a..6c071c76c 100644 --- a/abcg/doc/html/namespaceabcg.js +++ b/abcg/doc/html/namespaceabcg.js @@ -2,38 +2,38 @@ var namespaceabcg = [ [ "Application", "classabcg_1_1Application.html", "classabcg_1_1Application" ], [ "Exception", "classabcg_1_1Exception.html", "classabcg_1_1Exception" ], - [ "RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], - [ "SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], - [ "SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ], - [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], - [ "OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], [ "OpenGLCubemapCreateInfo", "structabcg_1_1OpenGLCubemapCreateInfo.html", "structabcg_1_1OpenGLCubemapCreateInfo" ], - [ "OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], + [ "OpenGLError", "classabcg_1_1OpenGLError.html", "classabcg_1_1OpenGLError" ], [ "OpenGLSettings", "structabcg_1_1OpenGLSettings.html", "structabcg_1_1OpenGLSettings" ], + [ "OpenGLShader", "structabcg_1_1OpenGLShader.html", "structabcg_1_1OpenGLShader" ], + [ "OpenGLTextureCreateInfo", "structabcg_1_1OpenGLTextureCreateInfo.html", "structabcg_1_1OpenGLTextureCreateInfo" ], [ "OpenGLWindow", "classabcg_1_1OpenGLWindow.html", "classabcg_1_1OpenGLWindow" ], + [ "RuntimeError", "classabcg_1_1RuntimeError.html", "classabcg_1_1RuntimeError" ], + [ "SDLError", "classabcg_1_1SDLError.html", "classabcg_1_1SDLError" ], + [ "SDLImageError", "classabcg_1_1SDLImageError.html", "classabcg_1_1SDLImageError" ], [ "ShaderSource", "structabcg_1_1ShaderSource.html", "structabcg_1_1ShaderSource" ], [ "Timer", "classabcg_1_1Timer.html", "classabcg_1_1Timer" ], [ "TrackBall", "classabcg_1_1TrackBall.html", "classabcg_1_1TrackBall" ], - [ "VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], [ "VulkanBuffer", "classabcg_1_1VulkanBuffer.html", "classabcg_1_1VulkanBuffer" ], + [ "VulkanBufferCreateInfo", "structabcg_1_1VulkanBufferCreateInfo.html", "structabcg_1_1VulkanBufferCreateInfo" ], [ "VulkanCommandPools", "structabcg_1_1VulkanCommandPools.html", "structabcg_1_1VulkanCommandPools" ], - [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], [ "VulkanDevice", "classabcg_1_1VulkanDevice.html", "classabcg_1_1VulkanDevice" ], [ "VulkanError", "classabcg_1_1VulkanError.html", "classabcg_1_1VulkanError" ], - [ "VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], + [ "VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], [ "VulkanImage", "classabcg_1_1VulkanImage.html", "classabcg_1_1VulkanImage" ], + [ "VulkanImageCreateInfo", "structabcg_1_1VulkanImageCreateInfo.html", "structabcg_1_1VulkanImageCreateInfo" ], [ "VulkanInstance", "classabcg_1_1VulkanInstance.html", "classabcg_1_1VulkanInstance" ], - [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], [ "VulkanPhysicalDevice", "classabcg_1_1VulkanPhysicalDevice.html", "classabcg_1_1VulkanPhysicalDevice" ], - [ "VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], [ "VulkanPipeline", "classabcg_1_1VulkanPipeline.html", "classabcg_1_1VulkanPipeline" ], + [ "VulkanPipelineCreateInfo", "structabcg_1_1VulkanPipelineCreateInfo.html", "structabcg_1_1VulkanPipelineCreateInfo" ], + [ "VulkanQueues", "structabcg_1_1VulkanQueues.html", "structabcg_1_1VulkanQueues" ], + [ "VulkanQueuesFamilies", "structabcg_1_1VulkanQueuesFamilies.html", "structabcg_1_1VulkanQueuesFamilies" ], + [ "VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], [ "VulkanShader", "classabcg_1_1VulkanShader.html", "classabcg_1_1VulkanShader" ], - [ "VulkanFrame", "structabcg_1_1VulkanFrame.html", "structabcg_1_1VulkanFrame" ], [ "VulkanSwapchain", "classabcg_1_1VulkanSwapchain.html", "classabcg_1_1VulkanSwapchain" ], - [ "VulkanSettings", "structabcg_1_1VulkanSettings.html", "structabcg_1_1VulkanSettings" ], [ "VulkanWindow", "classabcg_1_1VulkanWindow.html", "classabcg_1_1VulkanWindow" ], - [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], [ "Window", "classabcg_1_1Window.html", "classabcg_1_1Window" ], + [ "WindowSettings", "structabcg_1_1WindowSettings.html", "structabcg_1_1WindowSettings" ], [ "source_location", "namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2", null ], [ "OpenGLProfile", "namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328e", [ [ "Core", "namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153", null ], @@ -187,8 +187,8 @@ var namespaceabcg = [ "glGetShaderiv", "namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b", null ], [ "glGetShaderPrecisionFormat", "namespaceabcg.html#a0690d7a9fb1fbe27f1630b51a6ef506f", null ], [ "glGetShaderSource", "namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24", null ], - [ "glGetString", "namespaceabcg.html#af419f0698487fc55f9fd8b7a424eb633", null ], - [ "glGetStringi", "namespaceabcg.html#ac2b042cb4fcd350f3efd9925f90bb068", null ], + [ "glGetString", "namespaceabcg.html#a7813473dd0b2c5d0ac275c2a35c03cab", null ], + [ "glGetStringi", "namespaceabcg.html#a606ec56e07694a280ac843d6ead4f1dc", null ], [ "glGetSynciv", "namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f", null ], [ "glGetTexLevelParameterfv", "namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59", null ], [ "glGetTexLevelParameteriv", "namespaceabcg.html#aee3c58bf82ea8186bfab4f2942997022", null ], @@ -223,7 +223,7 @@ var namespaceabcg = [ "glIsVertexArray", "namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db", null ], [ "glLineWidth", "namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b", null ], [ "glLinkProgram", "namespaceabcg.html#af84c0f4d0816181cba506f1703c037c2", null ], - [ "glMapBufferRange", "namespaceabcg.html#aaa863c0c9f439036f6d2b58e375ee105", null ], + [ "glMapBufferRange", "namespaceabcg.html#a180e56ad70b052b7d8ef64a03559afcc", null ], [ "glPauseTransformFeedback", "namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d", null ], [ "glPixelStorei", "namespaceabcg.html#a05ece875ff476f630548c8cf7a0d952b", null ], [ "glPolygonOffset", "namespaceabcg.html#afa173d8901021cb88486592fcc300a14", null ], diff --git a/abcg/doc/html/namespacemembers.html b/abcg/doc/html/namespacemembers.html index 353f76db1..b3610a647 100644 --- a/abcg/doc/html/namespacemembers.html +++ b/abcg/doc/html/namespacemembers.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@

@@ -51,21 +51,22 @@
TFirstTypename of the first value.
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,40 +94,35 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- c -

    -
  • callGL() -: abcg -
  • -
  • checkGLError() -: abcg -
  • -
  • checkOpenGLShaderCompile() -: abcg -
  • -
  • checkOpenGLShaderLink() -: abcg -
  • -
  • checkVkResult() -: abcg -
  • -
  • createOpenGLProgram() -: abcg -
  • +

    - c -

      +
    • callGL() : abcg
    • +
    • checkGLError() : abcg
    • +
    • checkOpenGLShaderCompile() : abcg
    • +
    • checkOpenGLShaderLink() : abcg
    • +
    • checkVkResult() : abcg
    • +
    • createOpenGLProgram() : abcg
diff --git a/abcg/doc/html/namespacemembers_enum.html b/abcg/doc/html/namespacemembers_enum.html index 33b4c5fc1..6121a0c28 100644 --- a/abcg/doc/html/namespacemembers_enum.html +++ b/abcg/doc/html/namespacemembers_enum.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,26 +94,29 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
    -
  • OpenGLProfile -: abcg -
  • -
  • ShaderStage -: abcg -
  • +
    Here is a list of all namespace enums with links to the namespace documentation for each enum:
      +
    • OpenGLProfile : abcg
    • +
    • ShaderStage : abcg
diff --git a/abcg/doc/html/namespacemembers_f.html b/abcg/doc/html/namespacemembers_f.html index 0fc51f1e2..5e6f0a053 100644 --- a/abcg/doc/html/namespacemembers_f.html +++ b/abcg/doc/html/namespacemembers_f.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- f -

    -
  • flipHorizontally() -: abcg -
  • -
  • flipVertically() -: abcg -
  • +

    - f -

      +
    • flipHorizontally() : abcg
    • +
    • flipVertically() : abcg
diff --git a/abcg/doc/html/namespacemembers_func.html b/abcg/doc/html/namespacemembers_func.html index d0cf40f10..5c07861c1 100644 --- a/abcg/doc/html/namespacemembers_func.html +++ b/abcg/doc/html/namespacemembers_func.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,40 +94,35 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- c -

    -
  • callGL() -: abcg -
  • -
  • checkGLError() -: abcg -
  • -
  • checkOpenGLShaderCompile() -: abcg -
  • -
  • checkOpenGLShaderLink() -: abcg -
  • -
  • checkVkResult() -: abcg -
  • -
  • createOpenGLProgram() -: abcg -
  • +

    - c -

      +
    • callGL() : abcg
    • +
    • checkGLError() : abcg
    • +
    • checkOpenGLShaderCompile() : abcg
    • +
    • checkOpenGLShaderLink() : abcg
    • +
    • checkVkResult() : abcg
    • +
    • createOpenGLProgram() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_f.html b/abcg/doc/html/namespacemembers_func_f.html index 4794ce945..3eb62440c 100644 --- a/abcg/doc/html/namespacemembers_func_f.html +++ b/abcg/doc/html/namespacemembers_func_f.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- f -

    -
  • flipHorizontally() -: abcg -
  • -
  • flipVertically() -: abcg -
  • +

    - f -

      +
    • flipHorizontally() : abcg
    • +
    • flipVertically() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_g.html b/abcg/doc/html/namespacemembers_func_g.html index 68acb1593..abd8826a7 100644 --- a/abcg/doc/html/namespacemembers_func_g.html +++ b/abcg/doc/html/namespacemembers_func_g.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,775 +94,280 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- g -

    -
  • glActiveTexture() -: abcg -
  • -
  • glAttachShader() -: abcg -
  • -
  • glBeginQuery() -: abcg -
  • -
  • glBeginTransformFeedback() -: abcg -
  • -
  • glBindAttribLocation() -: abcg -
  • -
  • glBindBuffer() -: abcg -
  • -
  • glBindBufferBase() -: abcg -
  • -
  • glBindBufferRange() -: abcg -
  • -
  • glBindFragDataLocation() -: abcg -
  • -
  • glBindFramebuffer() -: abcg -
  • -
  • glBindRenderbuffer() -: abcg -
  • -
  • glBindSampler() -: abcg -
  • -
  • glBindTexture() -: abcg -
  • -
  • glBindTransformFeedback() -: abcg -
  • -
  • glBindVertexArray() -: abcg -
  • -
  • glBlendColor() -: abcg -
  • -
  • glBlendEquation() -: abcg -
  • -
  • glBlendEquationSeparate() -: abcg -
  • -
  • glBlendFunc() -: abcg -
  • -
  • glBlendFuncSeparate() -: abcg -
  • -
  • glBlitFramebuffer() -: abcg -
  • -
  • glBufferData() -: abcg -
  • -
  • glBufferSubData() -: abcg -
  • -
  • glCheckFramebufferStatus() -: abcg -
  • -
  • glClear() -: abcg -
  • -
  • glClearBufferfi() -: abcg -
  • -
  • glClearBufferfv() -: abcg -
  • -
  • glClearBufferiv() -: abcg -
  • -
  • glClearBufferuiv() -: abcg -
  • -
  • glClearColor() -: abcg -
  • -
  • glClearDepthf() -: abcg -
  • -
  • glClearStencil() -: abcg -
  • -
  • glClientWaitSync() -: abcg -
  • -
  • glColorMask() -: abcg -
  • -
  • glCompileShader() -: abcg -
  • -
  • glCompressedTexImage2D() -: abcg -
  • -
  • glCompressedTexImage3D() -: abcg -
  • -
  • glCompressedTexSubImage2D() -: abcg -
  • -
  • glCompressedTexSubImage3D() -: abcg -
  • -
  • glCopyBufferSubData() -: abcg -
  • -
  • glCopyTexImage2D() -: abcg -
  • -
  • glCopyTexSubImage2D() -: abcg -
  • -
  • glCopyTexSubImage3D() -: abcg -
  • -
  • glCreateProgram() -: abcg -
  • -
  • glCreateShader() -: abcg -
  • -
  • glCullFace() -: abcg -
  • -
  • glDeleteBuffers() -: abcg -
  • -
  • glDeleteFramebuffers() -: abcg -
  • -
  • glDeleteProgram() -: abcg -
  • -
  • glDeleteQueries() -: abcg -
  • -
  • glDeleteRenderbuffers() -: abcg -
  • -
  • glDeleteSamplers() -: abcg -
  • -
  • glDeleteShader() -: abcg -
  • -
  • glDeleteSync() -: abcg -
  • -
  • glDeleteTextures() -: abcg -
  • -
  • glDeleteTransformFeedbacks() -: abcg -
  • -
  • glDeleteVertexArrays() -: abcg -
  • -
  • glDepthFunc() -: abcg -
  • -
  • glDepthMask() -: abcg -
  • -
  • glDepthRangef() -: abcg -
  • -
  • glDetachShader() -: abcg -
  • -
  • glDisable() -: abcg -
  • -
  • glDisableVertexAttribArray() -: abcg -
  • -
  • glDrawArrays() -: abcg -
  • -
  • glDrawArraysInstanced() -: abcg -
  • -
  • glDrawBuffers() -: abcg -
  • -
  • glDrawElements() -: abcg -
  • -
  • glDrawElementsInstanced() -: abcg -
  • -
  • glDrawRangeElements() -: abcg -
  • -
  • glEnable() -: abcg -
  • -
  • glEnableVertexAttribArray() -: abcg -
  • -
  • glEndQuery() -: abcg -
  • -
  • glEndTransformFeedback() -: abcg -
  • -
  • glFenceSync() -: abcg -
  • -
  • glFinish() -: abcg -
  • -
  • glFlush() -: abcg -
  • -
  • glFlushMappedBufferRange() -: abcg -
  • -
  • glFramebufferRenderbuffer() -: abcg -
  • -
  • glFramebufferTexture() -: abcg -
  • -
  • glFramebufferTexture2D() -: abcg -
  • -
  • glFramebufferTextureLayer() -: abcg -
  • -
  • glFrontFace() -: abcg -
  • -
  • glGenBuffers() -: abcg -
  • -
  • glGenerateMipmap() -: abcg -
  • -
  • glGenFramebuffers() -: abcg -
  • -
  • glGenQueries() -: abcg -
  • -
  • glGenRenderbuffers() -: abcg -
  • -
  • glGenSamplers() -: abcg -
  • -
  • glGenTextures() -: abcg -
  • -
  • glGenTransformFeedbacks() -: abcg -
  • -
  • glGenVertexArrays() -: abcg -
  • -
  • glGetActiveAttrib() -: abcg -
  • -
  • glGetActiveUniform() -: abcg -
  • -
  • glGetActiveUniformBlockiv() -: abcg -
  • -
  • glGetActiveUniformBlockName() -: abcg -
  • -
  • glGetActiveUniformsiv() -: abcg -
  • -
  • glGetAttachedShaders() -: abcg -
  • -
  • glGetAttribLocation() -: abcg -
  • -
  • glGetBooleanv() -: abcg -
  • -
  • glGetBufferParameteri64v() -: abcg -
  • -
  • glGetBufferParameteriv() -: abcg -
  • -
  • glGetBufferPointerv() -: abcg -
  • -
  • glGetDoublev() -: abcg -
  • -
  • glGetFloatv() -: abcg -
  • -
  • glGetFragDataLocation() -: abcg -
  • -
  • glGetFramebufferAttachmentParameteriv() -: abcg -
  • -
  • glGetInteger64i_v() -: abcg -
  • -
  • glGetInteger64v() -: abcg -
  • -
  • glGetIntegeri_v() -: abcg -
  • -
  • glGetIntegerv() -: abcg -
  • -
  • glGetInternalformativ() -: abcg -
  • -
  • glGetProgramBinary() -: abcg -
  • -
  • glGetProgramInfoLog() -: abcg -
  • -
  • glGetProgramiv() -: abcg -
  • -
  • glGetQueryiv() -: abcg -
  • -
  • glGetQueryObjectuiv() -: abcg -
  • -
  • glGetRenderbufferParameteriv() -: abcg -
  • -
  • glGetSamplerParameterfv() -: abcg -
  • -
  • glGetSamplerParameteriv() -: abcg -
  • -
  • glGetShaderInfoLog() -: abcg -
  • -
  • glGetShaderiv() -: abcg -
  • -
  • glGetShaderPrecisionFormat() -: abcg -
  • -
  • glGetShaderSource() -: abcg -
  • -
  • glGetString() -: abcg -
  • -
  • glGetStringi() -: abcg -
  • -
  • glGetSynciv() -: abcg -
  • -
  • glGetTexLevelParameterfv() -: abcg -
  • -
  • glGetTexLevelParameteriv() -: abcg -
  • -
  • glGetTexParameterfv() -: abcg -
  • -
  • glGetTexParameteriv() -: abcg -
  • -
  • glGetTransformFeedbackVarying() -: abcg -
  • -
  • glGetUniformBlockIndex() -: abcg -
  • -
  • glGetUniformfv() -: abcg -
  • -
  • glGetUniformIndices() -: abcg -
  • -
  • glGetUniformiv() -: abcg -
  • -
  • glGetUniformLocation() -: abcg -
  • -
  • glGetUniformuiv() -: abcg -
  • -
  • glGetVertexAttribfv() -: abcg -
  • -
  • glGetVertexAttribIiv() -: abcg -
  • -
  • glGetVertexAttribIuiv() -: abcg -
  • -
  • glGetVertexAttribiv() -: abcg -
  • -
  • glGetVertexAttribPointerv() -: abcg -
  • -
  • glHint() -: abcg -
  • -
  • glInvalidateFramebuffer() -: abcg -
  • -
  • glInvalidateSubFramebuffer() -: abcg -
  • -
  • glIsBuffer() -: abcg -
  • -
  • glIsEnabled() -: abcg -
  • -
  • glIsFramebuffer() -: abcg -
  • -
  • glIsProgram() -: abcg -
  • -
  • glIsQuery() -: abcg -
  • -
  • glIsRenderbuffer() -: abcg -
  • -
  • glIsSampler() -: abcg -
  • -
  • glIsShader() -: abcg -
  • -
  • glIsSync() -: abcg -
  • -
  • glIsTexture() -: abcg -
  • -
  • glIsTransformFeedback() -: abcg -
  • -
  • glIsVertexArray() -: abcg -
  • -
  • glLineWidth() -: abcg -
  • -
  • glLinkProgram() -: abcg -
  • -
  • glMapBufferRange() -: abcg -
  • -
  • glPauseTransformFeedback() -: abcg -
  • -
  • glPixelStorei() -: abcg -
  • -
  • glPolygonOffset() -: abcg -
  • -
  • glProgramBinary() -: abcg -
  • -
  • glProgramParameteri() -: abcg -
  • -
  • glReadBuffer() -: abcg -
  • -
  • glReadPixels() -: abcg -
  • -
  • glReleaseShaderCompiler() -: abcg -
  • -
  • glRenderbufferStorage() -: abcg -
  • -
  • glRenderbufferStorageMultisample() -: abcg -
  • -
  • glResumeTransformFeedback() -: abcg -
  • -
  • glSampleCoverage() -: abcg -
  • -
  • glSamplerParameterf() -: abcg -
  • -
  • glSamplerParameterfv() -: abcg -
  • -
  • glSamplerParameteri() -: abcg -
  • -
  • glSamplerParameteriv() -: abcg -
  • -
  • glScissor() -: abcg -
  • -
  • glShaderBinary() -: abcg -
  • -
  • glShaderSource() -: abcg -
  • -
  • glStencilFunc() -: abcg -
  • -
  • glStencilFuncSeparate() -: abcg -
  • -
  • glStencilMask() -: abcg -
  • -
  • glStencilMaskSeparate() -: abcg -
  • -
  • glStencilOp() -: abcg -
  • -
  • glStencilOpSeparate() -: abcg -
  • -
  • glTexImage2D() -: abcg -
  • -
  • glTexImage2DMultisample() -: abcg -
  • -
  • glTexImage3D() -: abcg -
  • -
  • glTexParameterf() -: abcg -
  • -
  • glTexParameterfv() -: abcg -
  • -
  • glTexParameteri() -: abcg -
  • -
  • glTexParameteriv() -: abcg -
  • -
  • glTexStorage2D() -: abcg -
  • -
  • glTexStorage3D() -: abcg -
  • -
  • glTexSubImage2D() -: abcg -
  • -
  • glTexSubImage3D() -: abcg -
  • -
  • glTransformFeedbackVaryings() -: abcg -
  • -
  • glUniform1f() -: abcg -
  • -
  • glUniform1fv() -: abcg -
  • -
  • glUniform1i() -: abcg -
  • -
  • glUniform1iv() -: abcg -
  • -
  • glUniform1ui() -: abcg -
  • -
  • glUniform1uiv() -: abcg -
  • -
  • glUniform2f() -: abcg -
  • -
  • glUniform2fv() -: abcg -
  • -
  • glUniform2i() -: abcg -
  • -
  • glUniform2iv() -: abcg -
  • -
  • glUniform2ui() -: abcg -
  • -
  • glUniform2uiv() -: abcg -
  • -
  • glUniform3f() -: abcg -
  • -
  • glUniform3fv() -: abcg -
  • -
  • glUniform3i() -: abcg -
  • -
  • glUniform3iv() -: abcg -
  • -
  • glUniform3ui() -: abcg -
  • -
  • glUniform3uiv() -: abcg -
  • -
  • glUniform4f() -: abcg -
  • -
  • glUniform4fv() -: abcg -
  • -
  • glUniform4i() -: abcg -
  • -
  • glUniform4iv() -: abcg -
  • -
  • glUniform4ui() -: abcg -
  • -
  • glUniform4uiv() -: abcg -
  • -
  • glUniformBlockBinding() -: abcg -
  • -
  • glUniformMatrix2fv() -: abcg -
  • -
  • glUniformMatrix2x3fv() -: abcg -
  • -
  • glUniformMatrix2x4fv() -: abcg -
  • -
  • glUniformMatrix3fv() -: abcg -
  • -
  • glUniformMatrix3x2fv() -: abcg -
  • -
  • glUniformMatrix3x4fv() -: abcg -
  • -
  • glUniformMatrix4fv() -: abcg -
  • -
  • glUniformMatrix4x2fv() -: abcg -
  • -
  • glUniformMatrix4x3fv() -: abcg -
  • -
  • glUnmapBuffer() -: abcg -
  • -
  • glUseProgram() -: abcg -
  • -
  • glValidateProgram() -: abcg -
  • -
  • glVertexAttrib1f() -: abcg -
  • -
  • glVertexAttrib1fv() -: abcg -
  • -
  • glVertexAttrib2f() -: abcg -
  • -
  • glVertexAttrib2fv() -: abcg -
  • -
  • glVertexAttrib3f() -: abcg -
  • -
  • glVertexAttrib3fv() -: abcg -
  • -
  • glVertexAttrib4f() -: abcg -
  • -
  • glVertexAttrib4fv() -: abcg -
  • -
  • glVertexAttribDivisor() -: abcg -
  • -
  • glVertexAttribI4i() -: abcg -
  • -
  • glVertexAttribI4iv() -: abcg -
  • -
  • glVertexAttribI4ui() -: abcg -
  • -
  • glVertexAttribI4uiv() -: abcg -
  • -
  • glVertexAttribIPointer() -: abcg -
  • -
  • glVertexAttribPointer() -: abcg -
  • -
  • glViewport() -: abcg -
  • -
  • glWaitSync() -: abcg -
  • +

    - g -

      +
    • glActiveTexture() : abcg
    • +
    • glAttachShader() : abcg
    • +
    • glBeginQuery() : abcg
    • +
    • glBeginTransformFeedback() : abcg
    • +
    • glBindAttribLocation() : abcg
    • +
    • glBindBuffer() : abcg
    • +
    • glBindBufferBase() : abcg
    • +
    • glBindBufferRange() : abcg
    • +
    • glBindFragDataLocation() : abcg
    • +
    • glBindFramebuffer() : abcg
    • +
    • glBindRenderbuffer() : abcg
    • +
    • glBindSampler() : abcg
    • +
    • glBindTexture() : abcg
    • +
    • glBindTransformFeedback() : abcg
    • +
    • glBindVertexArray() : abcg
    • +
    • glBlendColor() : abcg
    • +
    • glBlendEquation() : abcg
    • +
    • glBlendEquationSeparate() : abcg
    • +
    • glBlendFunc() : abcg
    • +
    • glBlendFuncSeparate() : abcg
    • +
    • glBlitFramebuffer() : abcg
    • +
    • glBufferData() : abcg
    • +
    • glBufferSubData() : abcg
    • +
    • glCheckFramebufferStatus() : abcg
    • +
    • glClear() : abcg
    • +
    • glClearBufferfi() : abcg
    • +
    • glClearBufferfv() : abcg
    • +
    • glClearBufferiv() : abcg
    • +
    • glClearBufferuiv() : abcg
    • +
    • glClearColor() : abcg
    • +
    • glClearDepthf() : abcg
    • +
    • glClearStencil() : abcg
    • +
    • glClientWaitSync() : abcg
    • +
    • glColorMask() : abcg
    • +
    • glCompileShader() : abcg
    • +
    • glCompressedTexImage2D() : abcg
    • +
    • glCompressedTexImage3D() : abcg
    • +
    • glCompressedTexSubImage2D() : abcg
    • +
    • glCompressedTexSubImage3D() : abcg
    • +
    • glCopyBufferSubData() : abcg
    • +
    • glCopyTexImage2D() : abcg
    • +
    • glCopyTexSubImage2D() : abcg
    • +
    • glCopyTexSubImage3D() : abcg
    • +
    • glCreateProgram() : abcg
    • +
    • glCreateShader() : abcg
    • +
    • glCullFace() : abcg
    • +
    • glDeleteBuffers() : abcg
    • +
    • glDeleteFramebuffers() : abcg
    • +
    • glDeleteProgram() : abcg
    • +
    • glDeleteQueries() : abcg
    • +
    • glDeleteRenderbuffers() : abcg
    • +
    • glDeleteSamplers() : abcg
    • +
    • glDeleteShader() : abcg
    • +
    • glDeleteSync() : abcg
    • +
    • glDeleteTextures() : abcg
    • +
    • glDeleteTransformFeedbacks() : abcg
    • +
    • glDeleteVertexArrays() : abcg
    • +
    • glDepthFunc() : abcg
    • +
    • glDepthMask() : abcg
    • +
    • glDepthRangef() : abcg
    • +
    • glDetachShader() : abcg
    • +
    • glDisable() : abcg
    • +
    • glDisableVertexAttribArray() : abcg
    • +
    • glDrawArrays() : abcg
    • +
    • glDrawArraysInstanced() : abcg
    • +
    • glDrawBuffers() : abcg
    • +
    • glDrawElements() : abcg
    • +
    • glDrawElementsInstanced() : abcg
    • +
    • glDrawRangeElements() : abcg
    • +
    • glEnable() : abcg
    • +
    • glEnableVertexAttribArray() : abcg
    • +
    • glEndQuery() : abcg
    • +
    • glEndTransformFeedback() : abcg
    • +
    • glFenceSync() : abcg
    • +
    • glFinish() : abcg
    • +
    • glFlush() : abcg
    • +
    • glFlushMappedBufferRange() : abcg
    • +
    • glFramebufferRenderbuffer() : abcg
    • +
    • glFramebufferTexture() : abcg
    • +
    • glFramebufferTexture2D() : abcg
    • +
    • glFramebufferTextureLayer() : abcg
    • +
    • glFrontFace() : abcg
    • +
    • glGenBuffers() : abcg
    • +
    • glGenerateMipmap() : abcg
    • +
    • glGenFramebuffers() : abcg
    • +
    • glGenQueries() : abcg
    • +
    • glGenRenderbuffers() : abcg
    • +
    • glGenSamplers() : abcg
    • +
    • glGenTextures() : abcg
    • +
    • glGenTransformFeedbacks() : abcg
    • +
    • glGenVertexArrays() : abcg
    • +
    • glGetActiveAttrib() : abcg
    • +
    • glGetActiveUniform() : abcg
    • +
    • glGetActiveUniformBlockiv() : abcg
    • +
    • glGetActiveUniformBlockName() : abcg
    • +
    • glGetActiveUniformsiv() : abcg
    • +
    • glGetAttachedShaders() : abcg
    • +
    • glGetAttribLocation() : abcg
    • +
    • glGetBooleanv() : abcg
    • +
    • glGetBufferParameteri64v() : abcg
    • +
    • glGetBufferParameteriv() : abcg
    • +
    • glGetBufferPointerv() : abcg
    • +
    • glGetDoublev() : abcg
    • +
    • glGetFloatv() : abcg
    • +
    • glGetFragDataLocation() : abcg
    • +
    • glGetFramebufferAttachmentParameteriv() : abcg
    • +
    • glGetInteger64i_v() : abcg
    • +
    • glGetInteger64v() : abcg
    • +
    • glGetIntegeri_v() : abcg
    • +
    • glGetIntegerv() : abcg
    • +
    • glGetInternalformativ() : abcg
    • +
    • glGetProgramBinary() : abcg
    • +
    • glGetProgramInfoLog() : abcg
    • +
    • glGetProgramiv() : abcg
    • +
    • glGetQueryiv() : abcg
    • +
    • glGetQueryObjectuiv() : abcg
    • +
    • glGetRenderbufferParameteriv() : abcg
    • +
    • glGetSamplerParameterfv() : abcg
    • +
    • glGetSamplerParameteriv() : abcg
    • +
    • glGetShaderInfoLog() : abcg
    • +
    • glGetShaderiv() : abcg
    • +
    • glGetShaderPrecisionFormat() : abcg
    • +
    • glGetShaderSource() : abcg
    • +
    • glGetString() : abcg
    • +
    • glGetStringi() : abcg
    • +
    • glGetSynciv() : abcg
    • +
    • glGetTexLevelParameterfv() : abcg
    • +
    • glGetTexLevelParameteriv() : abcg
    • +
    • glGetTexParameterfv() : abcg
    • +
    • glGetTexParameteriv() : abcg
    • +
    • glGetTransformFeedbackVarying() : abcg
    • +
    • glGetUniformBlockIndex() : abcg
    • +
    • glGetUniformfv() : abcg
    • +
    • glGetUniformIndices() : abcg
    • +
    • glGetUniformiv() : abcg
    • +
    • glGetUniformLocation() : abcg
    • +
    • glGetUniformuiv() : abcg
    • +
    • glGetVertexAttribfv() : abcg
    • +
    • glGetVertexAttribIiv() : abcg
    • +
    • glGetVertexAttribIuiv() : abcg
    • +
    • glGetVertexAttribiv() : abcg
    • +
    • glGetVertexAttribPointerv() : abcg
    • +
    • glHint() : abcg
    • +
    • glInvalidateFramebuffer() : abcg
    • +
    • glInvalidateSubFramebuffer() : abcg
    • +
    • glIsBuffer() : abcg
    • +
    • glIsEnabled() : abcg
    • +
    • glIsFramebuffer() : abcg
    • +
    • glIsProgram() : abcg
    • +
    • glIsQuery() : abcg
    • +
    • glIsRenderbuffer() : abcg
    • +
    • glIsSampler() : abcg
    • +
    • glIsShader() : abcg
    • +
    • glIsSync() : abcg
    • +
    • glIsTexture() : abcg
    • +
    • glIsTransformFeedback() : abcg
    • +
    • glIsVertexArray() : abcg
    • +
    • glLineWidth() : abcg
    • +
    • glLinkProgram() : abcg
    • +
    • glMapBufferRange() : abcg
    • +
    • glPauseTransformFeedback() : abcg
    • +
    • glPixelStorei() : abcg
    • +
    • glPolygonOffset() : abcg
    • +
    • glProgramBinary() : abcg
    • +
    • glProgramParameteri() : abcg
    • +
    • glReadBuffer() : abcg
    • +
    • glReadPixels() : abcg
    • +
    • glReleaseShaderCompiler() : abcg
    • +
    • glRenderbufferStorage() : abcg
    • +
    • glRenderbufferStorageMultisample() : abcg
    • +
    • glResumeTransformFeedback() : abcg
    • +
    • glSampleCoverage() : abcg
    • +
    • glSamplerParameterf() : abcg
    • +
    • glSamplerParameterfv() : abcg
    • +
    • glSamplerParameteri() : abcg
    • +
    • glSamplerParameteriv() : abcg
    • +
    • glScissor() : abcg
    • +
    • glShaderBinary() : abcg
    • +
    • glShaderSource() : abcg
    • +
    • glStencilFunc() : abcg
    • +
    • glStencilFuncSeparate() : abcg
    • +
    • glStencilMask() : abcg
    • +
    • glStencilMaskSeparate() : abcg
    • +
    • glStencilOp() : abcg
    • +
    • glStencilOpSeparate() : abcg
    • +
    • glTexImage2D() : abcg
    • +
    • glTexImage2DMultisample() : abcg
    • +
    • glTexImage3D() : abcg
    • +
    • glTexParameterf() : abcg
    • +
    • glTexParameterfv() : abcg
    • +
    • glTexParameteri() : abcg
    • +
    • glTexParameteriv() : abcg
    • +
    • glTexStorage2D() : abcg
    • +
    • glTexStorage3D() : abcg
    • +
    • glTexSubImage2D() : abcg
    • +
    • glTexSubImage3D() : abcg
    • +
    • glTransformFeedbackVaryings() : abcg
    • +
    • glUniform1f() : abcg
    • +
    • glUniform1fv() : abcg
    • +
    • glUniform1i() : abcg
    • +
    • glUniform1iv() : abcg
    • +
    • glUniform1ui() : abcg
    • +
    • glUniform1uiv() : abcg
    • +
    • glUniform2f() : abcg
    • +
    • glUniform2fv() : abcg
    • +
    • glUniform2i() : abcg
    • +
    • glUniform2iv() : abcg
    • +
    • glUniform2ui() : abcg
    • +
    • glUniform2uiv() : abcg
    • +
    • glUniform3f() : abcg
    • +
    • glUniform3fv() : abcg
    • +
    • glUniform3i() : abcg
    • +
    • glUniform3iv() : abcg
    • +
    • glUniform3ui() : abcg
    • +
    • glUniform3uiv() : abcg
    • +
    • glUniform4f() : abcg
    • +
    • glUniform4fv() : abcg
    • +
    • glUniform4i() : abcg
    • +
    • glUniform4iv() : abcg
    • +
    • glUniform4ui() : abcg
    • +
    • glUniform4uiv() : abcg
    • +
    • glUniformBlockBinding() : abcg
    • +
    • glUniformMatrix2fv() : abcg
    • +
    • glUniformMatrix2x3fv() : abcg
    • +
    • glUniformMatrix2x4fv() : abcg
    • +
    • glUniformMatrix3fv() : abcg
    • +
    • glUniformMatrix3x2fv() : abcg
    • +
    • glUniformMatrix3x4fv() : abcg
    • +
    • glUniformMatrix4fv() : abcg
    • +
    • glUniformMatrix4x2fv() : abcg
    • +
    • glUniformMatrix4x3fv() : abcg
    • +
    • glUnmapBuffer() : abcg
    • +
    • glUseProgram() : abcg
    • +
    • glValidateProgram() : abcg
    • +
    • glVertexAttrib1f() : abcg
    • +
    • glVertexAttrib1fv() : abcg
    • +
    • glVertexAttrib2f() : abcg
    • +
    • glVertexAttrib2fv() : abcg
    • +
    • glVertexAttrib3f() : abcg
    • +
    • glVertexAttrib3fv() : abcg
    • +
    • glVertexAttrib4f() : abcg
    • +
    • glVertexAttrib4fv() : abcg
    • +
    • glVertexAttribDivisor() : abcg
    • +
    • glVertexAttribI4i() : abcg
    • +
    • glVertexAttribI4iv() : abcg
    • +
    • glVertexAttribI4ui() : abcg
    • +
    • glVertexAttribI4uiv() : abcg
    • +
    • glVertexAttribIPointer() : abcg
    • +
    • glVertexAttribPointer() : abcg
    • +
    • glViewport() : abcg
    • +
    • glWaitSync() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_h.html b/abcg/doc/html/namespacemembers_func_h.html index 53fed9a43..c03eceded 100644 --- a/abcg/doc/html/namespacemembers_func_h.html +++ b/abcg/doc/html/namespacemembers_func_h.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- h -

    -
  • hashCombine() -: abcg -
  • -
  • hashCombineSeed() -: abcg -
  • +

    - h -

      +
    • hashCombine() : abcg
    • +
    • hashCombineSeed() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_l.html b/abcg/doc/html/namespacemembers_func_l.html index 23a745a68..cd59a5b51 100644 --- a/abcg/doc/html/namespacemembers_func_l.html +++ b/abcg/doc/html/namespacemembers_func_l.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- l -

    -
  • loadOpenGLCubemap() -: abcg -
  • -
  • loadOpenGLTexture() -: abcg -
  • +

    - l -

      +
    • loadOpenGLCubemap() : abcg
    • +
    • loadOpenGLTexture() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_r.html b/abcg/doc/html/namespacemembers_func_r.html index ac848e1cd..7d242a163 100644 --- a/abcg/doc/html/namespacemembers_func_r.html +++ b/abcg/doc/html/namespacemembers_func_r.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,25 +94,30 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- r -

    -
  • resizingEventWatcher() -: abcg -
  • +

    - r -

      +
    • resizingEventWatcher() : abcg
diff --git a/abcg/doc/html/namespacemembers_func_t.html b/abcg/doc/html/namespacemembers_func_t.html index a43525678..128515ad0 100644 --- a/abcg/doc/html/namespacemembers_func_t.html +++ b/abcg/doc/html/namespacemembers_func_t.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,37 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-  +
Here is a list of all namespace functions with links to the namespace documentation for each function:
-

- t -

    -
  • toBlueString() -: abcg -
  • -
  • toRedString() -: abcg -
  • -
  • toYellowString() -: abcg -
  • -
  • triggerOpenGLShaderCompile() -: abcg -
  • -
  • triggerOpenGLShaderLink() -: abcg -
  • +

    - t -

      +
    • toBlueString() : abcg
    • +
    • toRedString() : abcg
    • +
    • toYellowString() : abcg
    • +
    • triggerOpenGLShaderCompile() : abcg
    • +
    • triggerOpenGLShaderLink() : abcg
diff --git a/abcg/doc/html/namespacemembers_g.html b/abcg/doc/html/namespacemembers_g.html index 6ddaed89e..3dd1ec8f4 100644 --- a/abcg/doc/html/namespacemembers_g.html +++ b/abcg/doc/html/namespacemembers_g.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,775 +94,280 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- g -

    -
  • glActiveTexture() -: abcg -
  • -
  • glAttachShader() -: abcg -
  • -
  • glBeginQuery() -: abcg -
  • -
  • glBeginTransformFeedback() -: abcg -
  • -
  • glBindAttribLocation() -: abcg -
  • -
  • glBindBuffer() -: abcg -
  • -
  • glBindBufferBase() -: abcg -
  • -
  • glBindBufferRange() -: abcg -
  • -
  • glBindFragDataLocation() -: abcg -
  • -
  • glBindFramebuffer() -: abcg -
  • -
  • glBindRenderbuffer() -: abcg -
  • -
  • glBindSampler() -: abcg -
  • -
  • glBindTexture() -: abcg -
  • -
  • glBindTransformFeedback() -: abcg -
  • -
  • glBindVertexArray() -: abcg -
  • -
  • glBlendColor() -: abcg -
  • -
  • glBlendEquation() -: abcg -
  • -
  • glBlendEquationSeparate() -: abcg -
  • -
  • glBlendFunc() -: abcg -
  • -
  • glBlendFuncSeparate() -: abcg -
  • -
  • glBlitFramebuffer() -: abcg -
  • -
  • glBufferData() -: abcg -
  • -
  • glBufferSubData() -: abcg -
  • -
  • glCheckFramebufferStatus() -: abcg -
  • -
  • glClear() -: abcg -
  • -
  • glClearBufferfi() -: abcg -
  • -
  • glClearBufferfv() -: abcg -
  • -
  • glClearBufferiv() -: abcg -
  • -
  • glClearBufferuiv() -: abcg -
  • -
  • glClearColor() -: abcg -
  • -
  • glClearDepthf() -: abcg -
  • -
  • glClearStencil() -: abcg -
  • -
  • glClientWaitSync() -: abcg -
  • -
  • glColorMask() -: abcg -
  • -
  • glCompileShader() -: abcg -
  • -
  • glCompressedTexImage2D() -: abcg -
  • -
  • glCompressedTexImage3D() -: abcg -
  • -
  • glCompressedTexSubImage2D() -: abcg -
  • -
  • glCompressedTexSubImage3D() -: abcg -
  • -
  • glCopyBufferSubData() -: abcg -
  • -
  • glCopyTexImage2D() -: abcg -
  • -
  • glCopyTexSubImage2D() -: abcg -
  • -
  • glCopyTexSubImage3D() -: abcg -
  • -
  • glCreateProgram() -: abcg -
  • -
  • glCreateShader() -: abcg -
  • -
  • glCullFace() -: abcg -
  • -
  • glDeleteBuffers() -: abcg -
  • -
  • glDeleteFramebuffers() -: abcg -
  • -
  • glDeleteProgram() -: abcg -
  • -
  • glDeleteQueries() -: abcg -
  • -
  • glDeleteRenderbuffers() -: abcg -
  • -
  • glDeleteSamplers() -: abcg -
  • -
  • glDeleteShader() -: abcg -
  • -
  • glDeleteSync() -: abcg -
  • -
  • glDeleteTextures() -: abcg -
  • -
  • glDeleteTransformFeedbacks() -: abcg -
  • -
  • glDeleteVertexArrays() -: abcg -
  • -
  • glDepthFunc() -: abcg -
  • -
  • glDepthMask() -: abcg -
  • -
  • glDepthRangef() -: abcg -
  • -
  • glDetachShader() -: abcg -
  • -
  • glDisable() -: abcg -
  • -
  • glDisableVertexAttribArray() -: abcg -
  • -
  • glDrawArrays() -: abcg -
  • -
  • glDrawArraysInstanced() -: abcg -
  • -
  • glDrawBuffers() -: abcg -
  • -
  • glDrawElements() -: abcg -
  • -
  • glDrawElementsInstanced() -: abcg -
  • -
  • glDrawRangeElements() -: abcg -
  • -
  • glEnable() -: abcg -
  • -
  • glEnableVertexAttribArray() -: abcg -
  • -
  • glEndQuery() -: abcg -
  • -
  • glEndTransformFeedback() -: abcg -
  • -
  • glFenceSync() -: abcg -
  • -
  • glFinish() -: abcg -
  • -
  • glFlush() -: abcg -
  • -
  • glFlushMappedBufferRange() -: abcg -
  • -
  • glFramebufferRenderbuffer() -: abcg -
  • -
  • glFramebufferTexture() -: abcg -
  • -
  • glFramebufferTexture2D() -: abcg -
  • -
  • glFramebufferTextureLayer() -: abcg -
  • -
  • glFrontFace() -: abcg -
  • -
  • glGenBuffers() -: abcg -
  • -
  • glGenerateMipmap() -: abcg -
  • -
  • glGenFramebuffers() -: abcg -
  • -
  • glGenQueries() -: abcg -
  • -
  • glGenRenderbuffers() -: abcg -
  • -
  • glGenSamplers() -: abcg -
  • -
  • glGenTextures() -: abcg -
  • -
  • glGenTransformFeedbacks() -: abcg -
  • -
  • glGenVertexArrays() -: abcg -
  • -
  • glGetActiveAttrib() -: abcg -
  • -
  • glGetActiveUniform() -: abcg -
  • -
  • glGetActiveUniformBlockiv() -: abcg -
  • -
  • glGetActiveUniformBlockName() -: abcg -
  • -
  • glGetActiveUniformsiv() -: abcg -
  • -
  • glGetAttachedShaders() -: abcg -
  • -
  • glGetAttribLocation() -: abcg -
  • -
  • glGetBooleanv() -: abcg -
  • -
  • glGetBufferParameteri64v() -: abcg -
  • -
  • glGetBufferParameteriv() -: abcg -
  • -
  • glGetBufferPointerv() -: abcg -
  • -
  • glGetDoublev() -: abcg -
  • -
  • glGetFloatv() -: abcg -
  • -
  • glGetFragDataLocation() -: abcg -
  • -
  • glGetFramebufferAttachmentParameteriv() -: abcg -
  • -
  • glGetInteger64i_v() -: abcg -
  • -
  • glGetInteger64v() -: abcg -
  • -
  • glGetIntegeri_v() -: abcg -
  • -
  • glGetIntegerv() -: abcg -
  • -
  • glGetInternalformativ() -: abcg -
  • -
  • glGetProgramBinary() -: abcg -
  • -
  • glGetProgramInfoLog() -: abcg -
  • -
  • glGetProgramiv() -: abcg -
  • -
  • glGetQueryiv() -: abcg -
  • -
  • glGetQueryObjectuiv() -: abcg -
  • -
  • glGetRenderbufferParameteriv() -: abcg -
  • -
  • glGetSamplerParameterfv() -: abcg -
  • -
  • glGetSamplerParameteriv() -: abcg -
  • -
  • glGetShaderInfoLog() -: abcg -
  • -
  • glGetShaderiv() -: abcg -
  • -
  • glGetShaderPrecisionFormat() -: abcg -
  • -
  • glGetShaderSource() -: abcg -
  • -
  • glGetString() -: abcg -
  • -
  • glGetStringi() -: abcg -
  • -
  • glGetSynciv() -: abcg -
  • -
  • glGetTexLevelParameterfv() -: abcg -
  • -
  • glGetTexLevelParameteriv() -: abcg -
  • -
  • glGetTexParameterfv() -: abcg -
  • -
  • glGetTexParameteriv() -: abcg -
  • -
  • glGetTransformFeedbackVarying() -: abcg -
  • -
  • glGetUniformBlockIndex() -: abcg -
  • -
  • glGetUniformfv() -: abcg -
  • -
  • glGetUniformIndices() -: abcg -
  • -
  • glGetUniformiv() -: abcg -
  • -
  • glGetUniformLocation() -: abcg -
  • -
  • glGetUniformuiv() -: abcg -
  • -
  • glGetVertexAttribfv() -: abcg -
  • -
  • glGetVertexAttribIiv() -: abcg -
  • -
  • glGetVertexAttribIuiv() -: abcg -
  • -
  • glGetVertexAttribiv() -: abcg -
  • -
  • glGetVertexAttribPointerv() -: abcg -
  • -
  • glHint() -: abcg -
  • -
  • glInvalidateFramebuffer() -: abcg -
  • -
  • glInvalidateSubFramebuffer() -: abcg -
  • -
  • glIsBuffer() -: abcg -
  • -
  • glIsEnabled() -: abcg -
  • -
  • glIsFramebuffer() -: abcg -
  • -
  • glIsProgram() -: abcg -
  • -
  • glIsQuery() -: abcg -
  • -
  • glIsRenderbuffer() -: abcg -
  • -
  • glIsSampler() -: abcg -
  • -
  • glIsShader() -: abcg -
  • -
  • glIsSync() -: abcg -
  • -
  • glIsTexture() -: abcg -
  • -
  • glIsTransformFeedback() -: abcg -
  • -
  • glIsVertexArray() -: abcg -
  • -
  • glLineWidth() -: abcg -
  • -
  • glLinkProgram() -: abcg -
  • -
  • glMapBufferRange() -: abcg -
  • -
  • glPauseTransformFeedback() -: abcg -
  • -
  • glPixelStorei() -: abcg -
  • -
  • glPolygonOffset() -: abcg -
  • -
  • glProgramBinary() -: abcg -
  • -
  • glProgramParameteri() -: abcg -
  • -
  • glReadBuffer() -: abcg -
  • -
  • glReadPixels() -: abcg -
  • -
  • glReleaseShaderCompiler() -: abcg -
  • -
  • glRenderbufferStorage() -: abcg -
  • -
  • glRenderbufferStorageMultisample() -: abcg -
  • -
  • glResumeTransformFeedback() -: abcg -
  • -
  • glSampleCoverage() -: abcg -
  • -
  • glSamplerParameterf() -: abcg -
  • -
  • glSamplerParameterfv() -: abcg -
  • -
  • glSamplerParameteri() -: abcg -
  • -
  • glSamplerParameteriv() -: abcg -
  • -
  • glScissor() -: abcg -
  • -
  • glShaderBinary() -: abcg -
  • -
  • glShaderSource() -: abcg -
  • -
  • glStencilFunc() -: abcg -
  • -
  • glStencilFuncSeparate() -: abcg -
  • -
  • glStencilMask() -: abcg -
  • -
  • glStencilMaskSeparate() -: abcg -
  • -
  • glStencilOp() -: abcg -
  • -
  • glStencilOpSeparate() -: abcg -
  • -
  • glTexImage2D() -: abcg -
  • -
  • glTexImage2DMultisample() -: abcg -
  • -
  • glTexImage3D() -: abcg -
  • -
  • glTexParameterf() -: abcg -
  • -
  • glTexParameterfv() -: abcg -
  • -
  • glTexParameteri() -: abcg -
  • -
  • glTexParameteriv() -: abcg -
  • -
  • glTexStorage2D() -: abcg -
  • -
  • glTexStorage3D() -: abcg -
  • -
  • glTexSubImage2D() -: abcg -
  • -
  • glTexSubImage3D() -: abcg -
  • -
  • glTransformFeedbackVaryings() -: abcg -
  • -
  • glUniform1f() -: abcg -
  • -
  • glUniform1fv() -: abcg -
  • -
  • glUniform1i() -: abcg -
  • -
  • glUniform1iv() -: abcg -
  • -
  • glUniform1ui() -: abcg -
  • -
  • glUniform1uiv() -: abcg -
  • -
  • glUniform2f() -: abcg -
  • -
  • glUniform2fv() -: abcg -
  • -
  • glUniform2i() -: abcg -
  • -
  • glUniform2iv() -: abcg -
  • -
  • glUniform2ui() -: abcg -
  • -
  • glUniform2uiv() -: abcg -
  • -
  • glUniform3f() -: abcg -
  • -
  • glUniform3fv() -: abcg -
  • -
  • glUniform3i() -: abcg -
  • -
  • glUniform3iv() -: abcg -
  • -
  • glUniform3ui() -: abcg -
  • -
  • glUniform3uiv() -: abcg -
  • -
  • glUniform4f() -: abcg -
  • -
  • glUniform4fv() -: abcg -
  • -
  • glUniform4i() -: abcg -
  • -
  • glUniform4iv() -: abcg -
  • -
  • glUniform4ui() -: abcg -
  • -
  • glUniform4uiv() -: abcg -
  • -
  • glUniformBlockBinding() -: abcg -
  • -
  • glUniformMatrix2fv() -: abcg -
  • -
  • glUniformMatrix2x3fv() -: abcg -
  • -
  • glUniformMatrix2x4fv() -: abcg -
  • -
  • glUniformMatrix3fv() -: abcg -
  • -
  • glUniformMatrix3x2fv() -: abcg -
  • -
  • glUniformMatrix3x4fv() -: abcg -
  • -
  • glUniformMatrix4fv() -: abcg -
  • -
  • glUniformMatrix4x2fv() -: abcg -
  • -
  • glUniformMatrix4x3fv() -: abcg -
  • -
  • glUnmapBuffer() -: abcg -
  • -
  • glUseProgram() -: abcg -
  • -
  • glValidateProgram() -: abcg -
  • -
  • glVertexAttrib1f() -: abcg -
  • -
  • glVertexAttrib1fv() -: abcg -
  • -
  • glVertexAttrib2f() -: abcg -
  • -
  • glVertexAttrib2fv() -: abcg -
  • -
  • glVertexAttrib3f() -: abcg -
  • -
  • glVertexAttrib3fv() -: abcg -
  • -
  • glVertexAttrib4f() -: abcg -
  • -
  • glVertexAttrib4fv() -: abcg -
  • -
  • glVertexAttribDivisor() -: abcg -
  • -
  • glVertexAttribI4i() -: abcg -
  • -
  • glVertexAttribI4iv() -: abcg -
  • -
  • glVertexAttribI4ui() -: abcg -
  • -
  • glVertexAttribI4uiv() -: abcg -
  • -
  • glVertexAttribIPointer() -: abcg -
  • -
  • glVertexAttribPointer() -: abcg -
  • -
  • glViewport() -: abcg -
  • -
  • glWaitSync() -: abcg -
  • +

    - g -

      +
    • glActiveTexture() : abcg
    • +
    • glAttachShader() : abcg
    • +
    • glBeginQuery() : abcg
    • +
    • glBeginTransformFeedback() : abcg
    • +
    • glBindAttribLocation() : abcg
    • +
    • glBindBuffer() : abcg
    • +
    • glBindBufferBase() : abcg
    • +
    • glBindBufferRange() : abcg
    • +
    • glBindFragDataLocation() : abcg
    • +
    • glBindFramebuffer() : abcg
    • +
    • glBindRenderbuffer() : abcg
    • +
    • glBindSampler() : abcg
    • +
    • glBindTexture() : abcg
    • +
    • glBindTransformFeedback() : abcg
    • +
    • glBindVertexArray() : abcg
    • +
    • glBlendColor() : abcg
    • +
    • glBlendEquation() : abcg
    • +
    • glBlendEquationSeparate() : abcg
    • +
    • glBlendFunc() : abcg
    • +
    • glBlendFuncSeparate() : abcg
    • +
    • glBlitFramebuffer() : abcg
    • +
    • glBufferData() : abcg
    • +
    • glBufferSubData() : abcg
    • +
    • glCheckFramebufferStatus() : abcg
    • +
    • glClear() : abcg
    • +
    • glClearBufferfi() : abcg
    • +
    • glClearBufferfv() : abcg
    • +
    • glClearBufferiv() : abcg
    • +
    • glClearBufferuiv() : abcg
    • +
    • glClearColor() : abcg
    • +
    • glClearDepthf() : abcg
    • +
    • glClearStencil() : abcg
    • +
    • glClientWaitSync() : abcg
    • +
    • glColorMask() : abcg
    • +
    • glCompileShader() : abcg
    • +
    • glCompressedTexImage2D() : abcg
    • +
    • glCompressedTexImage3D() : abcg
    • +
    • glCompressedTexSubImage2D() : abcg
    • +
    • glCompressedTexSubImage3D() : abcg
    • +
    • glCopyBufferSubData() : abcg
    • +
    • glCopyTexImage2D() : abcg
    • +
    • glCopyTexSubImage2D() : abcg
    • +
    • glCopyTexSubImage3D() : abcg
    • +
    • glCreateProgram() : abcg
    • +
    • glCreateShader() : abcg
    • +
    • glCullFace() : abcg
    • +
    • glDeleteBuffers() : abcg
    • +
    • glDeleteFramebuffers() : abcg
    • +
    • glDeleteProgram() : abcg
    • +
    • glDeleteQueries() : abcg
    • +
    • glDeleteRenderbuffers() : abcg
    • +
    • glDeleteSamplers() : abcg
    • +
    • glDeleteShader() : abcg
    • +
    • glDeleteSync() : abcg
    • +
    • glDeleteTextures() : abcg
    • +
    • glDeleteTransformFeedbacks() : abcg
    • +
    • glDeleteVertexArrays() : abcg
    • +
    • glDepthFunc() : abcg
    • +
    • glDepthMask() : abcg
    • +
    • glDepthRangef() : abcg
    • +
    • glDetachShader() : abcg
    • +
    • glDisable() : abcg
    • +
    • glDisableVertexAttribArray() : abcg
    • +
    • glDrawArrays() : abcg
    • +
    • glDrawArraysInstanced() : abcg
    • +
    • glDrawBuffers() : abcg
    • +
    • glDrawElements() : abcg
    • +
    • glDrawElementsInstanced() : abcg
    • +
    • glDrawRangeElements() : abcg
    • +
    • glEnable() : abcg
    • +
    • glEnableVertexAttribArray() : abcg
    • +
    • glEndQuery() : abcg
    • +
    • glEndTransformFeedback() : abcg
    • +
    • glFenceSync() : abcg
    • +
    • glFinish() : abcg
    • +
    • glFlush() : abcg
    • +
    • glFlushMappedBufferRange() : abcg
    • +
    • glFramebufferRenderbuffer() : abcg
    • +
    • glFramebufferTexture() : abcg
    • +
    • glFramebufferTexture2D() : abcg
    • +
    • glFramebufferTextureLayer() : abcg
    • +
    • glFrontFace() : abcg
    • +
    • glGenBuffers() : abcg
    • +
    • glGenerateMipmap() : abcg
    • +
    • glGenFramebuffers() : abcg
    • +
    • glGenQueries() : abcg
    • +
    • glGenRenderbuffers() : abcg
    • +
    • glGenSamplers() : abcg
    • +
    • glGenTextures() : abcg
    • +
    • glGenTransformFeedbacks() : abcg
    • +
    • glGenVertexArrays() : abcg
    • +
    • glGetActiveAttrib() : abcg
    • +
    • glGetActiveUniform() : abcg
    • +
    • glGetActiveUniformBlockiv() : abcg
    • +
    • glGetActiveUniformBlockName() : abcg
    • +
    • glGetActiveUniformsiv() : abcg
    • +
    • glGetAttachedShaders() : abcg
    • +
    • glGetAttribLocation() : abcg
    • +
    • glGetBooleanv() : abcg
    • +
    • glGetBufferParameteri64v() : abcg
    • +
    • glGetBufferParameteriv() : abcg
    • +
    • glGetBufferPointerv() : abcg
    • +
    • glGetDoublev() : abcg
    • +
    • glGetFloatv() : abcg
    • +
    • glGetFragDataLocation() : abcg
    • +
    • glGetFramebufferAttachmentParameteriv() : abcg
    • +
    • glGetInteger64i_v() : abcg
    • +
    • glGetInteger64v() : abcg
    • +
    • glGetIntegeri_v() : abcg
    • +
    • glGetIntegerv() : abcg
    • +
    • glGetInternalformativ() : abcg
    • +
    • glGetProgramBinary() : abcg
    • +
    • glGetProgramInfoLog() : abcg
    • +
    • glGetProgramiv() : abcg
    • +
    • glGetQueryiv() : abcg
    • +
    • glGetQueryObjectuiv() : abcg
    • +
    • glGetRenderbufferParameteriv() : abcg
    • +
    • glGetSamplerParameterfv() : abcg
    • +
    • glGetSamplerParameteriv() : abcg
    • +
    • glGetShaderInfoLog() : abcg
    • +
    • glGetShaderiv() : abcg
    • +
    • glGetShaderPrecisionFormat() : abcg
    • +
    • glGetShaderSource() : abcg
    • +
    • glGetString() : abcg
    • +
    • glGetStringi() : abcg
    • +
    • glGetSynciv() : abcg
    • +
    • glGetTexLevelParameterfv() : abcg
    • +
    • glGetTexLevelParameteriv() : abcg
    • +
    • glGetTexParameterfv() : abcg
    • +
    • glGetTexParameteriv() : abcg
    • +
    • glGetTransformFeedbackVarying() : abcg
    • +
    • glGetUniformBlockIndex() : abcg
    • +
    • glGetUniformfv() : abcg
    • +
    • glGetUniformIndices() : abcg
    • +
    • glGetUniformiv() : abcg
    • +
    • glGetUniformLocation() : abcg
    • +
    • glGetUniformuiv() : abcg
    • +
    • glGetVertexAttribfv() : abcg
    • +
    • glGetVertexAttribIiv() : abcg
    • +
    • glGetVertexAttribIuiv() : abcg
    • +
    • glGetVertexAttribiv() : abcg
    • +
    • glGetVertexAttribPointerv() : abcg
    • +
    • glHint() : abcg
    • +
    • glInvalidateFramebuffer() : abcg
    • +
    • glInvalidateSubFramebuffer() : abcg
    • +
    • glIsBuffer() : abcg
    • +
    • glIsEnabled() : abcg
    • +
    • glIsFramebuffer() : abcg
    • +
    • glIsProgram() : abcg
    • +
    • glIsQuery() : abcg
    • +
    • glIsRenderbuffer() : abcg
    • +
    • glIsSampler() : abcg
    • +
    • glIsShader() : abcg
    • +
    • glIsSync() : abcg
    • +
    • glIsTexture() : abcg
    • +
    • glIsTransformFeedback() : abcg
    • +
    • glIsVertexArray() : abcg
    • +
    • glLineWidth() : abcg
    • +
    • glLinkProgram() : abcg
    • +
    • glMapBufferRange() : abcg
    • +
    • glPauseTransformFeedback() : abcg
    • +
    • glPixelStorei() : abcg
    • +
    • glPolygonOffset() : abcg
    • +
    • glProgramBinary() : abcg
    • +
    • glProgramParameteri() : abcg
    • +
    • glReadBuffer() : abcg
    • +
    • glReadPixels() : abcg
    • +
    • glReleaseShaderCompiler() : abcg
    • +
    • glRenderbufferStorage() : abcg
    • +
    • glRenderbufferStorageMultisample() : abcg
    • +
    • glResumeTransformFeedback() : abcg
    • +
    • glSampleCoverage() : abcg
    • +
    • glSamplerParameterf() : abcg
    • +
    • glSamplerParameterfv() : abcg
    • +
    • glSamplerParameteri() : abcg
    • +
    • glSamplerParameteriv() : abcg
    • +
    • glScissor() : abcg
    • +
    • glShaderBinary() : abcg
    • +
    • glShaderSource() : abcg
    • +
    • glStencilFunc() : abcg
    • +
    • glStencilFuncSeparate() : abcg
    • +
    • glStencilMask() : abcg
    • +
    • glStencilMaskSeparate() : abcg
    • +
    • glStencilOp() : abcg
    • +
    • glStencilOpSeparate() : abcg
    • +
    • glTexImage2D() : abcg
    • +
    • glTexImage2DMultisample() : abcg
    • +
    • glTexImage3D() : abcg
    • +
    • glTexParameterf() : abcg
    • +
    • glTexParameterfv() : abcg
    • +
    • glTexParameteri() : abcg
    • +
    • glTexParameteriv() : abcg
    • +
    • glTexStorage2D() : abcg
    • +
    • glTexStorage3D() : abcg
    • +
    • glTexSubImage2D() : abcg
    • +
    • glTexSubImage3D() : abcg
    • +
    • glTransformFeedbackVaryings() : abcg
    • +
    • glUniform1f() : abcg
    • +
    • glUniform1fv() : abcg
    • +
    • glUniform1i() : abcg
    • +
    • glUniform1iv() : abcg
    • +
    • glUniform1ui() : abcg
    • +
    • glUniform1uiv() : abcg
    • +
    • glUniform2f() : abcg
    • +
    • glUniform2fv() : abcg
    • +
    • glUniform2i() : abcg
    • +
    • glUniform2iv() : abcg
    • +
    • glUniform2ui() : abcg
    • +
    • glUniform2uiv() : abcg
    • +
    • glUniform3f() : abcg
    • +
    • glUniform3fv() : abcg
    • +
    • glUniform3i() : abcg
    • +
    • glUniform3iv() : abcg
    • +
    • glUniform3ui() : abcg
    • +
    • glUniform3uiv() : abcg
    • +
    • glUniform4f() : abcg
    • +
    • glUniform4fv() : abcg
    • +
    • glUniform4i() : abcg
    • +
    • glUniform4iv() : abcg
    • +
    • glUniform4ui() : abcg
    • +
    • glUniform4uiv() : abcg
    • +
    • glUniformBlockBinding() : abcg
    • +
    • glUniformMatrix2fv() : abcg
    • +
    • glUniformMatrix2x3fv() : abcg
    • +
    • glUniformMatrix2x4fv() : abcg
    • +
    • glUniformMatrix3fv() : abcg
    • +
    • glUniformMatrix3x2fv() : abcg
    • +
    • glUniformMatrix3x4fv() : abcg
    • +
    • glUniformMatrix4fv() : abcg
    • +
    • glUniformMatrix4x2fv() : abcg
    • +
    • glUniformMatrix4x3fv() : abcg
    • +
    • glUnmapBuffer() : abcg
    • +
    • glUseProgram() : abcg
    • +
    • glValidateProgram() : abcg
    • +
    • glVertexAttrib1f() : abcg
    • +
    • glVertexAttrib1fv() : abcg
    • +
    • glVertexAttrib2f() : abcg
    • +
    • glVertexAttrib2fv() : abcg
    • +
    • glVertexAttrib3f() : abcg
    • +
    • glVertexAttrib3fv() : abcg
    • +
    • glVertexAttrib4f() : abcg
    • +
    • glVertexAttrib4fv() : abcg
    • +
    • glVertexAttribDivisor() : abcg
    • +
    • glVertexAttribI4i() : abcg
    • +
    • glVertexAttribI4iv() : abcg
    • +
    • glVertexAttribI4ui() : abcg
    • +
    • glVertexAttribI4uiv() : abcg
    • +
    • glVertexAttribIPointer() : abcg
    • +
    • glVertexAttribPointer() : abcg
    • +
    • glViewport() : abcg
    • +
    • glWaitSync() : abcg
diff --git a/abcg/doc/html/namespacemembers_h.html b/abcg/doc/html/namespacemembers_h.html index 453b1f0e7..4938fa143 100644 --- a/abcg/doc/html/namespacemembers_h.html +++ b/abcg/doc/html/namespacemembers_h.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- h -

    -
  • hashCombine() -: abcg -
  • -
  • hashCombineSeed() -: abcg -
  • +

    - h -

      +
    • hashCombine() : abcg
    • +
    • hashCombineSeed() : abcg
diff --git a/abcg/doc/html/namespacemembers_l.html b/abcg/doc/html/namespacemembers_l.html index 78a4aabd9..c8cd0e047 100644 --- a/abcg/doc/html/namespacemembers_l.html +++ b/abcg/doc/html/namespacemembers_l.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- l -

    -
  • loadOpenGLCubemap() -: abcg -
  • -
  • loadOpenGLTexture() -: abcg -
  • +

    - l -

      +
    • loadOpenGLCubemap() : abcg
    • +
    • loadOpenGLTexture() : abcg
diff --git a/abcg/doc/html/namespacemembers_o.html b/abcg/doc/html/namespacemembers_o.html index af44f774e..ef2a0457b 100644 --- a/abcg/doc/html/namespacemembers_o.html +++ b/abcg/doc/html/namespacemembers_o.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,25 +94,30 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- o -

    -
  • OpenGLProfile -: abcg -
  • +

    - o -

      +
    • OpenGLProfile : abcg
diff --git a/abcg/doc/html/namespacemembers_r.html b/abcg/doc/html/namespacemembers_r.html index c602c0f8e..7d617dabf 100644 --- a/abcg/doc/html/namespacemembers_r.html +++ b/abcg/doc/html/namespacemembers_r.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,25 +94,30 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- r -

    -
  • resizingEventWatcher() -: abcg -
  • +

    - r -

      +
    • resizingEventWatcher() : abcg
diff --git a/abcg/doc/html/namespacemembers_s.html b/abcg/doc/html/namespacemembers_s.html index 5743b7169..e96a4a9d7 100644 --- a/abcg/doc/html/namespacemembers_s.html +++ b/abcg/doc/html/namespacemembers_s.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,28 +94,31 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- s -

    -
  • ShaderStage -: abcg -
  • -
  • source_location -: abcg -
  • +

    - s -

      +
    • ShaderStage : abcg
    • +
    • source_location : abcg
diff --git a/abcg/doc/html/namespacemembers_t.html b/abcg/doc/html/namespacemembers_t.html index 64418cde7..8678e2866 100644 --- a/abcg/doc/html/namespacemembers_t.html +++ b/abcg/doc/html/namespacemembers_t.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,37 +94,34 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
Here is a list of all namespace members with links to the namespace documentation for each member:
-

- t -

    -
  • toBlueString() -: abcg -
  • -
  • toRedString() -: abcg -
  • -
  • toYellowString() -: abcg -
  • -
  • triggerOpenGLShaderCompile() -: abcg -
  • -
  • triggerOpenGLShaderLink() -: abcg -
  • +

    - t -

      +
    • toBlueString() : abcg
    • +
    • toRedString() : abcg
    • +
    • toYellowString() : abcg
    • +
    • triggerOpenGLShaderCompile() : abcg
    • +
    • triggerOpenGLShaderLink() : abcg
diff --git a/abcg/doc/html/namespacemembers_type.html b/abcg/doc/html/namespacemembers_type.html index 97cc0e134..5482d71ac 100644 --- a/abcg/doc/html/namespacemembers_type.html +++ b/abcg/doc/html/namespacemembers_type.html @@ -5,7 +5,7 @@ - + ABCg: Namespace Members @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,23 +94,28 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
    -
  • source_location -: abcg -
  • +
    Here is a list of all namespace typedefs with links to the namespace documentation for each typedef:
      +
    • source_location : abcg
diff --git a/abcg/doc/html/namespaces.html b/abcg/doc/html/namespaces.html index e8b685cdf..731c9d89a 100644 --- a/abcg/doc/html/namespaces.html +++ b/abcg/doc/html/namespaces.html @@ -5,7 +5,7 @@ - + ABCg: Namespace List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@

- + +/* @license-end */ +
@@ -79,7 +80,7 @@

@@ -93,53 +94,59 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Namespace List
+
Namespace List
Here is a list of all namespaces with brief descriptions:
[detail level 12]
- + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + +
 NabcgRoot namespace
 CApplicationManages the application's control flow
 CApplicationManages the application's control flow
 CExceptionBase class for ABCg exception objects
 CRuntimeErrorRepresents an exception object for runtime errors
 CSDLErrorRepresents an exception object for SDL errors
 CSDLImageErrorRepresents an exception object for SDL_image errors
 COpenGLErrorRepresents an exception object for OpenGL errors
 COpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 COpenGLCubemapCreateInfoConfiguration settings for creating a cubemap texture for OpenGL
 COpenGLShaderOpenGL shader object and its corresponding stage
 COpenGLSettingsConfiguration settings for creating an OpenGL context
 COpenGLWindowBase class for a window that displays graphics using an OpenGL context
 COpenGLCubemapCreateInfoConfiguration settings for creating a cubemap texture for OpenGL
 COpenGLErrorRepresents an exception object for OpenGL errors
 COpenGLSettingsConfiguration settings for creating an OpenGL context
 COpenGLShaderOpenGL shader object and its corresponding stage
 COpenGLTextureCreateInfoConfiguration settings for creating a 2D texture for OpenGL
 COpenGLWindowBase class for a window that displays graphics using an OpenGL context
 CRuntimeErrorRepresents an exception object for runtime errors
 CSDLErrorRepresents an exception object for SDL errors
 CSDLImageErrorRepresents an exception object for SDL_image errors
 CShaderSourceShader source code and corresponding stage
 CTimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 CTimerRepresents a timer based on the monotonic clock std::chrono::steady_clock
 CTrackBallManages a virtual trackball
 CVulkanBufferCreateInfoCreation info structure for abcg::VulkanBuffer::create
 CVulkanBufferA class for representing a Vulkan buffer
 CVulkanCommandPoolsCommand pools associated with a Vulkan device
 CVulkanQueuesQueues associated with a Vulkan device
 CVulkanDeviceA class for representing a Vulkan logical device and related resources
 CVulkanErrorRepresents an exception object for Vulkan runtime errors
 CVulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 CVulkanImageA class for representing a Vulkan image
 CVulkanInstanceA class for representing a Vulkan instance
 CVulkanQueuesFamiliesSupported queues families
 CVulkanPhysicalDeviceA class for representing a Vulkan physical device
 CVulkanBufferA class for representing a Vulkan buffer
 CVulkanBufferCreateInfoCreation info structure for abcg::VulkanBuffer::create
 CVulkanCommandPoolsCommand pools associated with a Vulkan device
 CVulkanDeviceA class for representing a Vulkan logical device and related resources
 CVulkanErrorRepresents an exception object for Vulkan runtime errors
 CVulkanFrameData needed by a rendering frame
 CVulkanImageA class for representing a Vulkan image
 CVulkanImageCreateInfoCreation info structure for abcg::VulkanImage
 CVulkanInstanceA class for representing a Vulkan instance
 CVulkanPhysicalDeviceA class for representing a Vulkan physical device
 CVulkanPipelineA class for representing a Vulkan pipeline
 CVulkanPipelineCreateInfoCreation info structure for abcg::VulkanPipeline::create
 CVulkanPipelineA class for representing a Vulkan pipeline
 CVulkanShaderA class for representing a Vulkan shader
 CVulkanFrameData needed by a rendering frame
 CVulkanSwapchainA class for representing a Vulkan swapchain
 CVulkanSettingsConfiguration settings for creating a Vulkan context
 CVulkanQueuesQueues associated with a Vulkan device
 CVulkanQueuesFamiliesSupported queues families
 CVulkanSettingsConfiguration settings for creating a Vulkan context
 CVulkanShaderA class for representing a Vulkan shader
 CVulkanSwapchainA class for representing a Vulkan swapchain
 CVulkanWindowBase class for a window that displays graphics using a Vulkan context
 CWindowSettingsConfiguration settings of a window
 CWindowBase abstract class that represents a SDL window
 CWindowBase abstract class that represents a SDL window
 CWindowSettingsConfiguration settings of a window
@@ -147,7 +154,7 @@ diff --git a/abcg/doc/html/nav_fd.png b/abcg/doc/html/nav_fd.png new file mode 100644 index 000000000..622f41eef Binary files /dev/null and b/abcg/doc/html/nav_fd.png differ diff --git a/abcg/doc/html/nav_hd.png b/abcg/doc/html/nav_hd.png new file mode 100644 index 000000000..4f504203b Binary files /dev/null and b/abcg/doc/html/nav_hd.png differ diff --git a/abcg/doc/html/navtree.css b/abcg/doc/html/navtree.css index 5baecdff0..69211d4a7 100644 --- a/abcg/doc/html/navtree.css +++ b/abcg/doc/html/navtree.css @@ -22,8 +22,13 @@ #nav-tree .selected { background-image: url('tab_a.png'); background-repeat:repeat-x; - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); + color: var(--nav-text-active-color); + text-shadow: var(--nav-text-active-shadow); +} + +#nav-tree .selected .arrow { + color: var(--nav-arrow-selected-color); + text-shadow: none; } #nav-tree img { @@ -37,13 +42,12 @@ text-decoration:none; padding:0px; margin:0px; - outline:none; } #nav-tree .label { margin:0px; padding:0px; - font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + font: 12px var(--font-family-nav); } #nav-tree .label a { @@ -52,7 +56,7 @@ #nav-tree .selected a { text-decoration:none; - color:#fff; + color:var(--nav-text-active-color); } #nav-tree .children_ul { @@ -67,7 +71,6 @@ #nav-tree { padding: 0px 0px; - background-color: #FAFAFF; font-size:14px; overflow:auto; } @@ -86,7 +89,8 @@ display:block; position: absolute; left: 0px; - width: 335px; + width: $width; + overflow : hidden; } .ui-resizable .ui-resizable-handle { @@ -94,7 +98,7 @@ } .ui-resizable-e { - background-image:url("splitbar.png"); + background-image:var(--nav-splitbar-image); background-size:100%; background-repeat:repeat-y; background-attachment: scroll; @@ -117,9 +121,8 @@ } #nav-tree { - background-image:url('nav_h.png'); background-repeat:repeat-x; - background-color: #F3F9FE; + background-color: var(--nav-background-color); -webkit-overflow-scrolling : touch; /* iOS 5+ */ } diff --git a/abcg/doc/html/navtree.js b/abcg/doc/html/navtree.js index 1e272d31d..93dd3d462 100644 --- a/abcg/doc/html/navtree.js +++ b/abcg/doc/html/navtree.js @@ -94,7 +94,7 @@ function cachedLink() } } -function getScript(scriptName,func,show) +function getScript(scriptName,func) { var head = document.getElementsByTagName("head")[0]; var script = document.createElement('script'); @@ -124,7 +124,7 @@ function createIndent(o,domNode,node,level) node.plus_img.innerHTML=arrowRight; node.expanded = false; } else { - expandNode(o, node, false, false); + expandNode(o, node, false, true); } } node.expandToggle.appendChild(imgNode); @@ -265,15 +265,15 @@ function showRoot() })(); } -function expandNode(o, node, imm, showRoot) +function expandNode(o, node, imm, setFocus) { if (node.childrenData && !node.expanded) { if (typeof(node.childrenData)==='string') { var varName = node.childrenData; getScript(node.relpath+varName,function(){ node.childrenData = getData(varName); - expandNode(o, node, imm, showRoot); - }, showRoot); + expandNode(o, node, imm, setFocus); + }); } else { if (!node.childrenVisited) { getNode(o, node); @@ -281,6 +281,9 @@ function expandNode(o, node, imm, showRoot) $(node.getChildrenUL()).slideDown("fast"); node.plus_img.innerHTML = arrowDown; node.expanded = true; + if (setFocus) { + $(node.expandToggle).focus(); + } } } } @@ -325,11 +328,14 @@ function selectAndHighlight(hash,n) $(n.itemDiv).addClass('selected'); $(n.itemDiv).attr('id','selected'); } + var topOffset=5; + if (typeof page_layout!=='undefined' && page_layout==1) { + topOffset+=$('#top').outerHeight(); + } if ($('#nav-tree-contents .item:first').hasClass('selected')) { - $('#nav-sync').css('top','30px'); - } else { - $('#nav-sync').css('top','5px'); + topOffset+=25; } + $('#nav-sync').css('top',topOffset+'px'); showRoot(); } @@ -341,7 +347,7 @@ function showNode(o, node, index, hash) getScript(node.relpath+varName,function(){ node.childrenData = getData(varName); showNode(o,node,index,hash); - },true); + }); } else { if (!node.childrenVisited) { getNode(o, node); @@ -359,11 +365,11 @@ function showNode(o, node, index, hash) n.childrenData = getData(varName); node.expanded=false; showNode(o,node,index,hash); // retry with child node expanded - },true); + }); } else { var rootBase = stripPath(o.toroot.replace(/\..+$/, '')); if (rootBase=="index" || rootBase=="pages" || rootBase=="search") { - expandNode(o, n, true, true); + expandNode(o, n, true, false); } selectAndHighlight(hash,n); } @@ -441,7 +447,7 @@ function navTo(o,root,hash,relpath) if (navTreeSubIndices[i]) { gotoNode(o,i,root,hash,relpath); } - },true); + }); } } @@ -542,5 +548,12 @@ function initNavTree(toroot,relpath) navTo(o,toroot,hashUrl(),relpath); } }) + + $("div.toc a[href]").click(function(e) { + e.preventDefault(); + var docContent = $('#doc-content'); + var aname = $(this).attr("href"); + gotoAnchor($(aname),aname,true); + }) } /* @license-end */ diff --git a/abcg/doc/html/navtreedata.js b/abcg/doc/html/navtreedata.js index 82af92276..284e2c7c4 100644 --- a/abcg/doc/html/navtreedata.js +++ b/abcg/doc/html/navtreedata.js @@ -34,22 +34,23 @@ var NAVTREE = ] ], [ "Docker setup", "index.html#autotoc_md7", null ], [ "License", "index.html#autotoc_md8", null ], - [ "Release notes", "md__home_harlen_dev_abcg_CHANGELOG.html", [ - [ "v3.1.1", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md10", null ], - [ "v3.1.0", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md11", null ], - [ "v3.0.0", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md12", [ - [ "New features", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md13", null ], - [ "Breaking changes", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md14", null ], - [ "Other changes", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md15", null ] + [ "Release notes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html", [ + [ "v3.1.2", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md10", null ], + [ "v3.1.1", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md11", null ], + [ "v3.1.0", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md12", null ], + [ "v3.0.0", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md13", [ + [ "New features", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md14", null ], + [ "Breaking changes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md15", null ], + [ "Other changes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md16", null ] ] ], - [ "v2.0.1", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md16", [ - [ "Bug Fixes", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md17", null ] + [ "v2.0.1", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md17", [ + [ "Bug Fixes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md18", null ] ] ], - [ "v2.0.0", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md18", [ - [ "Breaking changes", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md19", null ], - [ "Other changes", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md20", null ] + [ "v2.0.0", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md19", [ + [ "Breaking changes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md20", null ], + [ "Other changes", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md21", null ] ] ], - [ "v1.0.0", "md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md21", null ] + [ "v1.0.0", "md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md22", null ] ] ], [ "Namespaces", "namespaces.html", [ [ "Namespace List", "namespaces.html", "namespaces_dup" ], @@ -68,7 +69,7 @@ var NAVTREE = [ "All", "functions.html", null ], [ "Functions", "functions_func.html", null ], [ "Variables", "functions_vars.html", null ], - [ "Related Functions", "functions_rela.html", null ] + [ "Related Symbols", "functions_rela.html", null ] ] ] ] ], [ "Files", "files.html", [ @@ -85,9 +86,10 @@ var NAVTREE = var NAVTREEINDEX = [ "abcgApplication_8cpp.html", -"abcgOpenGLFunction_8hpp.html#aea378f4807f17ed76e8129260b35c1a1", -"classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c", -"namespaceabcg.html#abebf61480d8b46ad61238624521c440c" +"abcgOpenGLFunction_8hpp.html#ae9971e1b8abb781440101bac0968a897", +"classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986", +"namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4", +"structabcg_1_1OpenGLSettings.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/abcg/doc/html/navtreeindex0.js b/abcg/doc/html/navtreeindex0.js index 76b2241f1..8997bb470 100644 --- a/abcg/doc/html/navtreeindex0.js +++ b/abcg/doc/html/navtreeindex0.js @@ -44,6 +44,7 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#a15c8e64b115ca61dc7bd460af8447497":[8,0,14,216], "abcgOpenGLFunction_8hpp.html#a16e4ed4c33c7e9abd8eb412c422c7f8a":[8,0,14,242], "abcgOpenGLFunction_8hpp.html#a17c9ec119f0c1c6d101a042131774ef9":[8,0,14,201], +"abcgOpenGLFunction_8hpp.html#a180e56ad70b052b7d8ef64a03559afcc":[8,0,14,161], "abcgOpenGLFunction_8hpp.html#a1b9de47c64a177ed5daf99eeee3c3f05":[8,0,14,29], "abcgOpenGLFunction_8hpp.html#a1c0feac412868f91511bc6cee51c0472":[8,0,14,50], "abcgOpenGLFunction_8hpp.html#a1daed0c2b70ea52f0436053095125e44":[8,0,14,47], @@ -113,6 +114,7 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#a5f5c89006586583bd0cbabbace3a1d94":[8,0,14,227], "abcgOpenGLFunction_8hpp.html#a5fb50995430e196812ba5fa75a9bf25a":[8,0,14,86], "abcgOpenGLFunction_8hpp.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5":[8,0,14,111], +"abcgOpenGLFunction_8hpp.html#a606ec56e07694a280ac843d6ead4f1dc":[8,0,14,126], "abcgOpenGLFunction_8hpp.html#a619e3d0de44a879aa6db3054c39130ec":[8,0,14,145], "abcgOpenGLFunction_8hpp.html#a620308c51e62a88d78f44312b8931947":[8,0,14,20], "abcgOpenGLFunction_8hpp.html#a62dfd7c0cdb61a2971697e3980094a0e":[8,0,14,46], @@ -134,6 +136,7 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#a71fd7066e8b3aba42012e4f0136adc63":[8,0,14,56], "abcgOpenGLFunction_8hpp.html#a720dffe7d97e8ebaba17b6d87583fd59":[8,0,14,128], "abcgOpenGLFunction_8hpp.html#a73910bf72dd61e452b1776b00cdd7972":[8,0,14,117], +"abcgOpenGLFunction_8hpp.html#a7813473dd0b2c5d0ac275c2a35c03cab":[8,0,14,125], "abcgOpenGLFunction_8hpp.html#a78e9cb3ed811f7863b4a0c304a9fb278":[8,0,14,142], "abcgOpenGLFunction_8hpp.html#a7a481529107e6f722c37ac9d559fc671":[8,0,14,39], "abcgOpenGLFunction_8hpp.html#a7a5eac1646a59b2c8de24b4862d3b2d9":[8,0,14,151], @@ -184,7 +187,6 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#aa5e970181c35e076181628df29de48e5":[8,0,14,70], "abcgOpenGLFunction_8hpp.html#aa76792de0db9acdbb75c5b7a228dc022":[8,0,14,249], "abcgOpenGLFunction_8hpp.html#aa836ddfde2ab9014c8322a66b1fc5bcc":[8,0,14,165], -"abcgOpenGLFunction_8hpp.html#aaa863c0c9f439036f6d2b58e375ee105":[8,0,14,161], "abcgOpenGLFunction_8hpp.html#aab8d9786020b3f0a4a3f3a969579741c":[8,0,14,48], "abcgOpenGLFunction_8hpp.html#aac48b45e3026be3bc4270b9b98dd1b81":[8,0,14,95], "abcgOpenGLFunction_8hpp.html#aad00233878a4e63de78696409cb8cfe7":[8,0,14,241], @@ -209,7 +211,6 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#ac050825096a0ef3f71c0dd6452f9dfc0":[8,0,14,234], "abcgOpenGLFunction_8hpp.html#ac1ce439bbbfbaca867e112c7c75fdf2e":[8,0,14,248], "abcgOpenGLFunction_8hpp.html#ac21f205c4a058a639fd695c4b4bf76fc":[8,0,14,222], -"abcgOpenGLFunction_8hpp.html#ac2b042cb4fcd350f3efd9925f90bb068":[8,0,14,126], "abcgOpenGLFunction_8hpp.html#ac2e13dc4a2ded3237be1ca90bad68d4e":[8,0,14,108], "abcgOpenGLFunction_8hpp.html#ac5aac5887d3a23fdd9e62db27eac53db":[8,0,14,94], "abcgOpenGLFunction_8hpp.html#ac768bcd240c1d1ad80589e5a248408df":[8,0,14,131], @@ -248,6 +249,5 @@ var NAVTREEINDEX0 = "abcgOpenGLFunction_8hpp.html#ae6ea1aa7744033cbe3a10ec3b646e30d":[8,0,14,120], "abcgOpenGLFunction_8hpp.html#ae712e6a279573982c1c5e7c569a47add":[8,0,14,204], "abcgOpenGLFunction_8hpp.html#ae8720c564832cd331d886e24aaf68c29":[8,0,14,168], -"abcgOpenGLFunction_8hpp.html#ae942855746c560463aed347013e2e84f":[8,0,14,226], -"abcgOpenGLFunction_8hpp.html#ae9971e1b8abb781440101bac0968a897":[8,0,14,176] +"abcgOpenGLFunction_8hpp.html#ae942855746c560463aed347013e2e84f":[8,0,14,226] }; diff --git a/abcg/doc/html/navtreeindex1.js b/abcg/doc/html/navtreeindex1.js index 2c856470a..518c7cdb3 100644 --- a/abcg/doc/html/navtreeindex1.js +++ b/abcg/doc/html/navtreeindex1.js @@ -1,5 +1,6 @@ var NAVTREEINDEX1 = { +"abcgOpenGLFunction_8hpp.html#ae9971e1b8abb781440101bac0968a897":[8,0,14,176], "abcgOpenGLFunction_8hpp.html#aea378f4807f17ed76e8129260b35c1a1":[8,0,14,215], "abcgOpenGLFunction_8hpp.html#aea5f1cc76074ee940772a749cd1b57ad":[8,0,14,188], "abcgOpenGLFunction_8hpp.html#aecca79eb3f54538532577cf2a21e067f":[8,0,14,52], @@ -13,7 +14,6 @@ var NAVTREEINDEX1 = "abcgOpenGLFunction_8hpp.html#af0c9e138d135378a3de00663c616cf46":[8,0,14,105], "abcgOpenGLFunction_8hpp.html#af15b80a8f2eb74ae9de6f26996d3d51d":[8,0,14,243], "abcgOpenGLFunction_8hpp.html#af1c355ed607c699a2fbe6b56454b84db":[8,0,14,179], -"abcgOpenGLFunction_8hpp.html#af419f0698487fc55f9fd8b7a424eb633":[8,0,14,125], "abcgOpenGLFunction_8hpp.html#af56cc0ad4060e65221188cfa41a59168":[8,0,14,250], "abcgOpenGLFunction_8hpp.html#af7091aa59a245999d277ec71e54b687f":[8,0,14,24], "abcgOpenGLFunction_8hpp.html#af725d24a5b6b6483d1cd3420dc6ec011":[8,0,14,236], @@ -110,7 +110,7 @@ var NAVTREEINDEX1 = "abcgVulkanPipeline_8hpp.html":[8,0,43], "abcgVulkanPipeline_8hpp_source.html":[8,0,43], "abcgVulkanShader_8cpp.html":[8,0,44], -"abcgVulkanShader_8cpp.html#a690f9c3849ca028c431f9332c4df888a":[8,0,44,0], +"abcgVulkanShader_8cpp.html#ac02bb467fef306447a8fa8fe8aed50b1":[8,0,44,0], "abcgVulkanShader_8hpp.html":[8,0,45], "abcgVulkanShader_8hpp_source.html":[8,0,45], "abcgVulkanSwapchain_8cpp.html":[8,0,46], @@ -130,124 +130,124 @@ var NAVTREEINDEX1 = "abcg_8hpp_source.html":[8,0,0], "annotated.html":[7,0], "classabcg_1_1Application.html":[7,0,0,0], +"classabcg_1_1Application.html":[6,0,0,0], "classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d":[7,0,0,0,1], +"classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d":[6,0,0,0,1], "classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54":[7,0,0,0,0], +"classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54":[6,0,0,0,0], "classabcg_1_1Exception.html":[7,0,0,1], +"classabcg_1_1Exception.html":[6,0,0,1], +"classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb":[6,0,0,1,1], "classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb":[7,0,0,1,1], "classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71":[7,0,0,1,0], -"classabcg_1_1OpenGLError.html":[7,0,0,5], -"classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0":[7,0,0,5,0], -"classabcg_1_1OpenGLWindow.html":[7,0,0,10], -"classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e":[7,0,0,10,6], -"classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d":[7,0,0,10,7], -"classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd":[7,0,0,10,2], -"classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016":[7,0,0,10,4], -"classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff":[7,0,0,10,8], -"classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e":[7,0,0,10,0], -"classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79":[7,0,0,10,5], -"classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882":[7,0,0,10,3], -"classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067":[7,0,0,10,9], -"classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797":[7,0,0,10,1], -"classabcg_1_1RuntimeError.html":[7,0,0,2], -"classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9":[7,0,0,2,0], -"classabcg_1_1SDLError.html":[7,0,0,3], -"classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae":[7,0,0,3,0], -"classabcg_1_1SDLImageError.html":[7,0,0,4], -"classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4":[7,0,0,4,0], +"classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71":[6,0,0,1,0], +"classabcg_1_1OpenGLError.html":[6,0,0,3], +"classabcg_1_1OpenGLError.html":[7,0,0,3], +"classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0":[6,0,0,3,0], +"classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0":[7,0,0,3,0], +"classabcg_1_1OpenGLWindow.html":[6,0,0,7], +"classabcg_1_1OpenGLWindow.html":[7,0,0,7], +"classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e":[6,0,0,7,6], +"classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e":[7,0,0,7,6], +"classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d":[6,0,0,7,7], +"classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d":[7,0,0,7,7], +"classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd":[7,0,0,7,2], +"classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd":[6,0,0,7,2], +"classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016":[6,0,0,7,4], +"classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016":[7,0,0,7,4], +"classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff":[7,0,0,7,8], +"classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff":[6,0,0,7,8], +"classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e":[6,0,0,7,0], +"classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e":[7,0,0,7,0], +"classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79":[7,0,0,7,5], +"classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79":[6,0,0,7,5], +"classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882":[7,0,0,7,3], +"classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882":[6,0,0,7,3], +"classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067":[7,0,0,7,9], +"classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067":[6,0,0,7,9], +"classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797":[6,0,0,7,1], +"classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797":[7,0,0,7,1], +"classabcg_1_1RuntimeError.html":[7,0,0,8], +"classabcg_1_1RuntimeError.html":[6,0,0,8], +"classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9":[7,0,0,8,0], +"classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9":[6,0,0,8,0], +"classabcg_1_1SDLError.html":[7,0,0,9], +"classabcg_1_1SDLError.html":[6,0,0,9], +"classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae":[7,0,0,9,0], +"classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae":[6,0,0,9,0], +"classabcg_1_1SDLImageError.html":[7,0,0,10], +"classabcg_1_1SDLImageError.html":[6,0,0,10], +"classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4":[7,0,0,10,0], +"classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4":[6,0,0,10,0], +"classabcg_1_1Timer.html":[6,0,0,12], "classabcg_1_1Timer.html":[7,0,0,12], +"classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c":[6,0,0,12,1], "classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c":[7,0,0,12,1], +"classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e":[6,0,0,12,0], "classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e":[7,0,0,12,0], +"classabcg_1_1TrackBall.html":[6,0,0,13], "classabcg_1_1TrackBall.html":[7,0,0,13], +"classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b":[6,0,0,13,2], "classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b":[7,0,0,13,2], +"classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264":[6,0,0,13,0], "classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264":[7,0,0,13,0], "classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8":[7,0,0,13,5], +"classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8":[6,0,0,13,5], "classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe":[7,0,0,13,3], +"classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe":[6,0,0,13,3], "classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f":[7,0,0,13,6], +"classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f":[6,0,0,13,6], "classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da":[7,0,0,13,4], +"classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da":[6,0,0,13,4], "classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946":[7,0,0,13,1], -"classabcg_1_1VulkanBuffer.html":[7,0,0,15], -"classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8":[7,0,0,15,2], -"classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e":[7,0,0,15,4], -"classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7":[7,0,0,15,0], -"classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae":[7,0,0,15,1], -"classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b":[7,0,0,15,3], -"classabcg_1_1VulkanDevice.html":[7,0,0,18], -"classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4":[7,0,0,18,1], -"classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8":[7,0,0,18,2], -"classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a":[7,0,0,18,5], -"classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029":[7,0,0,18,0], -"classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41":[7,0,0,18,3], -"classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc":[7,0,0,18,6], -"classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e":[7,0,0,18,4], -"classabcg_1_1VulkanError.html":[7,0,0,19], -"classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce":[7,0,0,19,0], -"classabcg_1_1VulkanImage.html":[7,0,0,21], -"classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b":[7,0,0,21,1], -"classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca":[7,0,0,21,4], -"classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5":[7,0,0,21,5], -"classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b":[7,0,0,21,3], -"classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d":[7,0,0,21,0], -"classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141":[7,0,0,21,6], -"classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379":[7,0,0,21,2], -"classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986":[7,0,0,21,7], -"classabcg_1_1VulkanInstance.html":[7,0,0,22], -"classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168":[7,0,0,22,1], -"classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f":[7,0,0,22,2], -"classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730":[7,0,0,22,0], -"classabcg_1_1VulkanPhysicalDevice.html":[7,0,0,24], -"classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209":[7,0,0,24,4], -"classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864":[7,0,0,24,2], -"classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4":[7,0,0,24,7], -"classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32":[7,0,0,24,3], -"classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281":[7,0,0,24,1], -"classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4":[7,0,0,24,6], -"classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730":[7,0,0,24,0], -"classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1":[7,0,0,24,8], -"classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6":[7,0,0,24,5], -"classabcg_1_1VulkanPipeline.html":[7,0,0,26], -"classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac":[7,0,0,26,1], -"classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419":[7,0,0,26,3], -"classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0":[7,0,0,26,0], -"classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1":[7,0,0,26,2], -"classabcg_1_1VulkanShader.html":[7,0,0,27], -"classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1":[7,0,0,27,1], -"classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7":[7,0,0,27,3], -"classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2":[7,0,0,27,0], -"classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d":[7,0,0,27,2], -"classabcg_1_1VulkanSwapchain.html":[7,0,0,29], -"classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e":[7,0,0,29,7], -"classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b":[7,0,0,29,11], -"classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3":[7,0,0,29,8], -"classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217":[7,0,0,29,3], -"classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7":[7,0,0,29,10], -"classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d":[7,0,0,29,6], -"classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580":[7,0,0,29,9], -"classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830":[7,0,0,29,12], -"classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31":[7,0,0,29,1], -"classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4":[7,0,0,29,0], -"classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa":[7,0,0,29,2], -"classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404":[7,0,0,29,4], -"classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a":[7,0,0,29,5], -"classabcg_1_1VulkanWindow.html":[7,0,0,31], -"classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a":[7,0,0,31,2], -"classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205":[7,0,0,31,7], -"classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679":[7,0,0,31,4], -"classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0":[7,0,0,31,8], -"classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f":[7,0,0,31,0], -"classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a":[7,0,0,31,5], -"classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5":[7,0,0,31,3], -"classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902":[7,0,0,31,9], -"classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6":[7,0,0,31,11], -"classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762":[7,0,0,31,6], -"classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e":[7,0,0,31,1], -"classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5":[7,0,0,31,10], -"classabcg_1_1Window.html":[7,0,0,33], -"classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2":[7,0,0,33,7], -"classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e":[7,0,0,33,5], -"classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0":[7,0,0,33,2], -"classabcg_1_1Window.html#a2cad313eeee01bf3b89e248cd25ed71e":[7,0,0,33,15], -"classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509":[7,0,0,33,20], -"classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe":[7,0,0,33,8], -"classabcg_1_1Window.html#a4efa74388a703f1d8dcb4493d4ea4637":[7,0,0,33,14], -"classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0":[7,0,0,33,16] +"classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946":[6,0,0,13,1], +"classabcg_1_1VulkanBuffer.html":[7,0,0,14], +"classabcg_1_1VulkanBuffer.html":[6,0,0,14], +"classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8":[7,0,0,14,2], +"classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8":[6,0,0,14,2], +"classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e":[7,0,0,14,4], +"classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e":[6,0,0,14,4], +"classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7":[7,0,0,14,0], +"classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7":[6,0,0,14,0], +"classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae":[6,0,0,14,1], +"classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae":[7,0,0,14,1], +"classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b":[6,0,0,14,3], +"classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b":[7,0,0,14,3], +"classabcg_1_1VulkanDevice.html":[7,0,0,17], +"classabcg_1_1VulkanDevice.html":[6,0,0,17], +"classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4":[7,0,0,17,1], +"classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4":[6,0,0,17,1], +"classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8":[7,0,0,17,2], +"classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8":[6,0,0,17,2], +"classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a":[6,0,0,17,5], +"classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a":[7,0,0,17,5], +"classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029":[6,0,0,17,0], +"classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029":[7,0,0,17,0], +"classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41":[6,0,0,17,3], +"classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41":[7,0,0,17,3], +"classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc":[6,0,0,17,6], +"classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc":[7,0,0,17,6], +"classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e":[6,0,0,17,4], +"classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e":[7,0,0,17,4], +"classabcg_1_1VulkanError.html":[7,0,0,18], +"classabcg_1_1VulkanError.html":[6,0,0,18], +"classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce":[6,0,0,18,0], +"classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce":[7,0,0,18,0], +"classabcg_1_1VulkanImage.html":[6,0,0,20], +"classabcg_1_1VulkanImage.html":[7,0,0,20], +"classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b":[7,0,0,20,1], +"classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b":[6,0,0,20,1], +"classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca":[6,0,0,20,4], +"classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca":[7,0,0,20,4], +"classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5":[6,0,0,20,5], +"classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5":[7,0,0,20,5], +"classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b":[6,0,0,20,3], +"classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b":[7,0,0,20,3], +"classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d":[6,0,0,20,0], +"classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d":[7,0,0,20,0], +"classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141":[6,0,0,20,6], +"classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141":[7,0,0,20,6], +"classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379":[7,0,0,20,2], +"classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379":[6,0,0,20,2], +"classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986":[6,0,0,20,7] }; diff --git a/abcg/doc/html/navtreeindex2.js b/abcg/doc/html/navtreeindex2.js index 2e27d7b5e..79c44c6a9 100644 --- a/abcg/doc/html/navtreeindex2.js +++ b/abcg/doc/html/navtreeindex2.js @@ -1,18 +1,152 @@ var NAVTREEINDEX2 = { -"classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c":[7,0,0,33,9], -"classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf":[7,0,0,33,10], -"classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633":[7,0,0,33,13], -"classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277":[7,0,0,33,18], -"classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679":[7,0,0,33,11], -"classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f":[7,0,0,33,6], -"classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf":[7,0,0,33,0], -"classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48":[7,0,0,33,1], -"classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f":[7,0,0,33,3], -"classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e":[7,0,0,33,4], -"classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e":[7,0,0,33,17], -"classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6":[7,0,0,33,19], -"classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c":[7,0,0,33,12], +"classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986":[7,0,0,20,7], +"classabcg_1_1VulkanInstance.html":[7,0,0,22], +"classabcg_1_1VulkanInstance.html":[6,0,0,22], +"classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168":[6,0,0,22,1], +"classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168":[7,0,0,22,1], +"classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f":[7,0,0,22,2], +"classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f":[6,0,0,22,2], +"classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730":[7,0,0,22,0], +"classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730":[6,0,0,22,0], +"classabcg_1_1VulkanPhysicalDevice.html":[7,0,0,23], +"classabcg_1_1VulkanPhysicalDevice.html":[6,0,0,23], +"classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209":[7,0,0,23,4], +"classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209":[6,0,0,23,4], +"classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864":[6,0,0,23,2], +"classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864":[7,0,0,23,2], +"classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4":[7,0,0,23,7], +"classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4":[6,0,0,23,7], +"classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32":[6,0,0,23,3], +"classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32":[7,0,0,23,3], +"classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281":[6,0,0,23,1], +"classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281":[7,0,0,23,1], +"classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4":[6,0,0,23,6], +"classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4":[7,0,0,23,6], +"classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730":[6,0,0,23,0], +"classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730":[7,0,0,23,0], +"classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1":[6,0,0,23,8], +"classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1":[7,0,0,23,8], +"classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6":[6,0,0,23,5], +"classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6":[7,0,0,23,5], +"classabcg_1_1VulkanPipeline.html":[7,0,0,24], +"classabcg_1_1VulkanPipeline.html":[6,0,0,24], +"classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac":[7,0,0,24,1], +"classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac":[6,0,0,24,1], +"classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419":[6,0,0,24,3], +"classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419":[7,0,0,24,3], +"classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0":[6,0,0,24,0], +"classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0":[7,0,0,24,0], +"classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1":[6,0,0,24,2], +"classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1":[7,0,0,24,2], +"classabcg_1_1VulkanShader.html":[7,0,0,29], +"classabcg_1_1VulkanShader.html":[6,0,0,29], +"classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1":[6,0,0,29,1], +"classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1":[7,0,0,29,1], +"classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7":[7,0,0,29,3], +"classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7":[6,0,0,29,3], +"classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2":[7,0,0,29,0], +"classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2":[6,0,0,29,0], +"classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d":[7,0,0,29,2], +"classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d":[6,0,0,29,2], +"classabcg_1_1VulkanSwapchain.html":[6,0,0,30], +"classabcg_1_1VulkanSwapchain.html":[7,0,0,30], +"classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e":[7,0,0,30,7], +"classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e":[6,0,0,30,7], +"classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b":[7,0,0,30,11], +"classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b":[6,0,0,30,11], +"classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3":[7,0,0,30,8], +"classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3":[6,0,0,30,8], +"classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217":[6,0,0,30,3], +"classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217":[7,0,0,30,3], +"classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7":[7,0,0,30,10], +"classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7":[6,0,0,30,10], +"classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d":[7,0,0,30,6], +"classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d":[6,0,0,30,6], +"classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580":[6,0,0,30,9], +"classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580":[7,0,0,30,9], +"classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830":[7,0,0,30,12], +"classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830":[6,0,0,30,12], +"classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31":[6,0,0,30,1], +"classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31":[7,0,0,30,1], +"classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4":[7,0,0,30,0], +"classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4":[6,0,0,30,0], +"classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa":[7,0,0,30,2], +"classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa":[6,0,0,30,2], +"classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404":[6,0,0,30,4], +"classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404":[7,0,0,30,4], +"classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a":[7,0,0,30,5], +"classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a":[6,0,0,30,5], +"classabcg_1_1VulkanWindow.html":[7,0,0,31], +"classabcg_1_1VulkanWindow.html":[6,0,0,31], +"classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a":[7,0,0,31,2], +"classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a":[6,0,0,31,2], +"classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205":[7,0,0,31,7], +"classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205":[6,0,0,31,7], +"classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679":[7,0,0,31,4], +"classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679":[6,0,0,31,4], +"classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0":[7,0,0,31,8], +"classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0":[6,0,0,31,8], +"classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f":[7,0,0,31,0], +"classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f":[6,0,0,31,0], +"classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a":[7,0,0,31,5], +"classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a":[6,0,0,31,5], +"classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5":[7,0,0,31,3], +"classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5":[6,0,0,31,3], +"classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902":[6,0,0,31,9], +"classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902":[7,0,0,31,9], +"classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6":[6,0,0,31,11], +"classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6":[7,0,0,31,11], +"classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762":[6,0,0,31,6], +"classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762":[7,0,0,31,6], +"classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e":[6,0,0,31,1], +"classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e":[7,0,0,31,1], +"classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5":[6,0,0,31,10], +"classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5":[7,0,0,31,10], +"classabcg_1_1Window.html":[7,0,0,32], +"classabcg_1_1Window.html":[6,0,0,32], +"classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2":[6,0,0,32,7], +"classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2":[7,0,0,32,7], +"classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e":[6,0,0,32,5], +"classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e":[7,0,0,32,5], +"classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0":[7,0,0,32,2], +"classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0":[6,0,0,32,2], +"classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509":[7,0,0,32,20], +"classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509":[6,0,0,32,20], +"classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe":[6,0,0,32,8], +"classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe":[7,0,0,32,8], +"classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0":[7,0,0,32,16], +"classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0":[6,0,0,32,16], +"classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c":[7,0,0,32,9], +"classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c":[6,0,0,32,9], +"classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf":[7,0,0,32,10], +"classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf":[6,0,0,32,10], +"classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633":[7,0,0,32,13], +"classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633":[6,0,0,32,13], +"classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277":[6,0,0,32,18], +"classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277":[7,0,0,32,18], +"classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679":[6,0,0,32,11], +"classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679":[7,0,0,32,11], +"classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f":[6,0,0,32,6], +"classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f":[7,0,0,32,6], +"classabcg_1_1Window.html#a93d060f22a995fc807da249d222b8c66":[7,0,0,32,14], +"classabcg_1_1Window.html#a93d060f22a995fc807da249d222b8c66":[6,0,0,32,14], +"classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf":[6,0,0,32,0], +"classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf":[7,0,0,32,0], +"classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48":[6,0,0,32,1], +"classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48":[7,0,0,32,1], +"classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f":[6,0,0,32,3], +"classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f":[7,0,0,32,3], +"classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e":[6,0,0,32,4], +"classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e":[7,0,0,32,4], +"classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e":[6,0,0,32,17], +"classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e":[7,0,0,32,17], +"classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6":[7,0,0,32,19], +"classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6":[6,0,0,32,19], +"classabcg_1_1Window.html#acec165afa1879a622118f7a2ab8d87e4":[7,0,0,32,15], +"classabcg_1_1Window.html#acec165afa1879a622118f7a2ab8d87e4":[6,0,0,32,15], +"classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c":[6,0,0,32,12], +"classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c":[7,0,0,32,12], "classes.html":[7,1], "files.html":[8,0], "functions.html":[7,3,0], @@ -32,19 +166,20 @@ var NAVTREEINDEX2 = "index.html#autotoc_md6":[2,2], "index.html#autotoc_md7":[3], "index.html#autotoc_md8":[4], -"md__home_harlen_dev_abcg_CHANGELOG.html":[5], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md10":[5,0], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md11":[5,1], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md12":[5,2], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md13":[5,2,0], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md14":[5,2,1], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md15":[5,2,2], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md16":[5,3], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md17":[5,3,0], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md18":[5,4], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md19":[5,4,0], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md20":[5,4,1], -"md__home_harlen_dev_abcg_CHANGELOG.html#autotoc_md21":[5,5], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html":[5], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md10":[5,0], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md11":[5,1], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md12":[5,2], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md13":[5,3], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md14":[5,3,0], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md15":[5,3,1], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md16":[5,3,2], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md17":[5,4], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md18":[5,4,0], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md19":[5,5], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md20":[5,5,0], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md21":[5,5,1], +"md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md22":[5,6], "namespaceabcg.html":[6,0,0], "namespaceabcg.html#a03ba96b4728e99b4f58cce1f3e102b49":[6,0,0,218], "namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d":[6,0,0,205], @@ -66,6 +201,7 @@ var NAVTREEINDEX2 = "namespaceabcg.html#a15c8e64b115ca61dc7bd460af8447497":[6,0,0,259], "namespaceabcg.html#a16e4ed4c33c7e9abd8eb412c422c7f8a":[6,0,0,285], "namespaceabcg.html#a17c9ec119f0c1c6d101a042131774ef9":[6,0,0,244], +"namespaceabcg.html#a180e56ad70b052b7d8ef64a03559afcc":[6,0,0,204], "namespaceabcg.html#a1b13712894adf3cfdda66dd3ddd14256":[6,0,0,301], "namespaceabcg.html#a1b9de47c64a177ed5daf99eeee3c3f05":[6,0,0,72], "namespaceabcg.html#a1c0feac412868f91511bc6cee51c0472":[6,0,0,93], @@ -113,141 +249,5 @@ var NAVTREEINDEX2 = "namespaceabcg.html#a4488c395e82a5408c4321a611f039c78":[6,0,0,294], "namespaceabcg.html#a4566f93a590c2437fab4c2ac07ea1454":[6,0,0,246], "namespaceabcg.html#a4573fb1a4dd47d4a692b4602a4009918":[6,0,0,237], -"namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818":[6,0,0,189], -"namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4":[6,0,0,124], -"namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338":[6,0,0,108], -"namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102":[6,0,0,304], -"namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c":[6,0,0,173], -"namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b":[6,0,0,150], -"namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c":[6,0,0,131], -"namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252":[6,0,0,278], -"namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b":[6,0,0,235], -"namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637":[6,0,0,71], -"namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f":[6,0,0,77], -"namespaceabcg.html#a506182a6eb4e8158ee10567344152470":[6,0,0,264], -"namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6":[6,0,0,274], -"namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735":[6,0,0,232], -"namespaceabcg.html#a56430f42fc367519455b993473579b79":[6,0,0,155], -"namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f":[6,0,0,170], -"namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f":[6,0,0,152], -"namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1":[6,0,0,37], -"namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db":[6,0,0,201], -"namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2":[6,0,0,101], -"namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a":[6,0,0,127], -"namespaceabcg.html#a5ee5802eb4646b281e426e550658124f":[6,0,0,114], -"namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94":[6,0,0,270], -"namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a":[6,0,0,129], -"namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5":[6,0,0,154], -"namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec":[6,0,0,188], -"namespaceabcg.html#a620308c51e62a88d78f44312b8931947":[6,0,0,63], -"namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e":[6,0,0,89], -"namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d":[6,0,0,273], -"namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174":[6,0,0,100], -"namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da":[6,0,0,176], -"namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49":[6,0,0,112], -"namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b":[6,0,0,300], -"namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727":[6,0,0,141], -"namespaceabcg.html#a6a360138b05890b13f8439344e08512f":[6,0,0,184], -"namespaceabcg.html#a6b33c9c6944be9a18490575915090e22":[6,0,0,144], -"namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5":[6,0,0,287], -"namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e":[6,0,0,92], -"namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da":[6,0,0,94], -"namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9":[6,0,0,41], -"namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364":[6,0,0,198], -"namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9":[6,0,0,242], -"namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729":[6,0,0,126], -"namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37":[6,0,0,156], -"namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f":[6,0,0,74], -"namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63":[6,0,0,99], -"namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59":[6,0,0,171], -"namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972":[6,0,0,160], -"namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278":[6,0,0,185], -"namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671":[6,0,0,82], -"namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9":[6,0,0,194], -"namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a":[6,0,0,240], -"namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f":[6,0,0,228], -"namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d":[6,0,0,135], -"namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34":[6,0,0,239], -"namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d":[6,0,0,302], -"namespaceabcg.html#a81e93970a280fc3782f7577db7060458":[6,0,0,215], -"namespaceabcg.html#a81f720eec72780a58bf7719461d97971":[6,0,0,266], -"namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914":[6,0,0,223], -"namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b":[6,0,0,106], -"namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03":[6,0,0,164], -"namespaceabcg.html#a86c415c268d7669e07339991c608e60b":[6,0,0,130], -"namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706":[6,0,0,229], -"namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb":[6,0,0,85], -"namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9":[6,0,0,58], -"namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce":[6,0,0,52], -"namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132":[6,0,0,272], -"namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7":[6,0,0,147], -"namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2":[6,0,0,96], -"namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970":[6,0,0,256], -"namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3":[6,0,0,199], -"namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04":[6,0,0,84], -"namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c":[6,0,0,157], -"namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d":[6,0,0,121], -"namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e":[6,0,0,119], -"namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e":[6,0,0,107], -"namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8":[6,0,0,143], -"namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae":[6,0,0,83], -"namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188":[6,0,0,255], -"namespaceabcg.html#a97c884a2a934bf40d378024d81be625e":[6,0,0,187], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da":[6,0,0,36], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a":[6,0,0,36,4], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a":[6,0,0,36,6], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961":[6,0,0,36,13], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8":[6,0,0,36,11], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952":[6,0,0,36,2], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a":[6,0,0,36,1], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24":[6,0,0,36,10], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10":[6,0,0,36,5], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6":[6,0,0,36,0], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575":[6,0,0,36,8], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273":[6,0,0,36,3], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f":[6,0,0,36,9], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f":[6,0,0,36,12], -"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b":[6,0,0,36,7], -"namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348":[6,0,0,257], -"namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4":[6,0,0,175], -"namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d":[6,0,0,303], -"namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7":[6,0,0,79], -"namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9":[6,0,0,159], -"namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d":[6,0,0,87], -"namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d":[6,0,0,73], -"namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea":[6,0,0,234], -"namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f":[6,0,0,210], -"namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b":[6,0,0,165], -"namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad":[6,0,0,217], -"namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7":[6,0,0,142], -"namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e":[6,0,0,55], -"namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5":[6,0,0,162], -"namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9":[6,0,0,102], -"namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad":[6,0,0,51], -"namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41":[6,0,0,236], -"namespaceabcg.html#aa5e970181c35e076181628df29de48e5":[6,0,0,113], -"namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022":[6,0,0,292], -"namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc":[6,0,0,208], -"namespaceabcg.html#aaa863c0c9f439036f6d2b58e375ee105":[6,0,0,204], -"namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5":[6,0,0,40], -"namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c":[6,0,0,91], -"namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81":[6,0,0,138], -"namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7":[6,0,0,284], -"namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c":[6,0,0,227], -"namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54":[6,0,0,46], -"namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593":[6,0,0,213], -"namespaceabcg.html#aaef0756c5e371e4b80f652586438b594":[6,0,0,54], -"namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f":[6,0,0,140], -"namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7":[6,0,0,281], -"namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847":[6,0,0,153], -"namespaceabcg.html#ab7826bb1da6c947977b5644c00538540":[6,0,0,86], -"namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938":[6,0,0,250], -"namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979":[6,0,0,249], -"namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b":[6,0,0,202], -"namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646":[6,0,0,111], -"namespaceabcg.html#abb0b676883c3e5c717cea345b043a372":[6,0,0,271], -"namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88":[6,0,0,267], -"namespaceabcg.html#abde059e7926e418ee7676f612480ca2e":[6,0,0,192], -"namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24":[6,0,0,167], -"namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d":[6,0,0,253] +"namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818":[6,0,0,189] }; diff --git a/abcg/doc/html/navtreeindex3.js b/abcg/doc/html/navtreeindex3.js index 2998bf9b2..55b0ccdc3 100644 --- a/abcg/doc/html/navtreeindex3.js +++ b/abcg/doc/html/navtreeindex3.js @@ -1,10 +1,146 @@ var NAVTREEINDEX3 = { +"namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4":[6,0,0,124], +"namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338":[6,0,0,108], +"namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102":[6,0,0,304], +"namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c":[6,0,0,173], +"namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b":[6,0,0,150], +"namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c":[6,0,0,131], +"namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252":[6,0,0,278], +"namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b":[6,0,0,235], +"namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637":[6,0,0,71], +"namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f":[6,0,0,77], +"namespaceabcg.html#a506182a6eb4e8158ee10567344152470":[6,0,0,264], +"namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6":[6,0,0,274], +"namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735":[6,0,0,232], +"namespaceabcg.html#a56430f42fc367519455b993473579b79":[6,0,0,155], +"namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f":[6,0,0,170], +"namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f":[6,0,0,152], +"namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1":[6,0,0,37], +"namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db":[6,0,0,201], +"namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2":[6,0,0,101], +"namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a":[6,0,0,127], +"namespaceabcg.html#a5ee5802eb4646b281e426e550658124f":[6,0,0,114], +"namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94":[6,0,0,270], +"namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a":[6,0,0,129], +"namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5":[6,0,0,154], +"namespaceabcg.html#a606ec56e07694a280ac843d6ead4f1dc":[6,0,0,169], +"namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec":[6,0,0,188], +"namespaceabcg.html#a620308c51e62a88d78f44312b8931947":[6,0,0,63], +"namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e":[6,0,0,89], +"namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d":[6,0,0,273], +"namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174":[6,0,0,100], +"namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da":[6,0,0,176], +"namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49":[6,0,0,112], +"namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b":[6,0,0,300], +"namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727":[6,0,0,141], +"namespaceabcg.html#a6a360138b05890b13f8439344e08512f":[6,0,0,184], +"namespaceabcg.html#a6b33c9c6944be9a18490575915090e22":[6,0,0,144], +"namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5":[6,0,0,287], +"namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e":[6,0,0,92], +"namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da":[6,0,0,94], +"namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9":[6,0,0,41], +"namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364":[6,0,0,198], +"namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9":[6,0,0,242], +"namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729":[6,0,0,126], +"namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37":[6,0,0,156], +"namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f":[6,0,0,74], +"namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63":[6,0,0,99], +"namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59":[6,0,0,171], +"namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972":[6,0,0,160], +"namespaceabcg.html#a7813473dd0b2c5d0ac275c2a35c03cab":[6,0,0,168], +"namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278":[6,0,0,185], +"namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671":[6,0,0,82], +"namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9":[6,0,0,194], +"namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a":[6,0,0,240], +"namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f":[6,0,0,228], +"namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d":[6,0,0,135], +"namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34":[6,0,0,239], +"namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d":[6,0,0,302], +"namespaceabcg.html#a81e93970a280fc3782f7577db7060458":[6,0,0,215], +"namespaceabcg.html#a81f720eec72780a58bf7719461d97971":[6,0,0,266], +"namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914":[6,0,0,223], +"namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b":[6,0,0,106], +"namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03":[6,0,0,164], +"namespaceabcg.html#a86c415c268d7669e07339991c608e60b":[6,0,0,130], +"namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706":[6,0,0,229], +"namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb":[6,0,0,85], +"namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9":[6,0,0,58], +"namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce":[6,0,0,52], +"namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132":[6,0,0,272], +"namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7":[6,0,0,147], +"namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2":[6,0,0,96], +"namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970":[6,0,0,256], +"namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3":[6,0,0,199], +"namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04":[6,0,0,84], +"namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c":[6,0,0,157], +"namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d":[6,0,0,121], +"namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e":[6,0,0,119], +"namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e":[6,0,0,107], +"namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8":[6,0,0,143], +"namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae":[6,0,0,83], +"namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188":[6,0,0,255], +"namespaceabcg.html#a97c884a2a934bf40d378024d81be625e":[6,0,0,187], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da":[6,0,0,36], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a":[6,0,0,36,4], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a":[6,0,0,36,6], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961":[6,0,0,36,13], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8":[6,0,0,36,11], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952":[6,0,0,36,2], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a":[6,0,0,36,1], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24":[6,0,0,36,10], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10":[6,0,0,36,5], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6":[6,0,0,36,0], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575":[6,0,0,36,8], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273":[6,0,0,36,3], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f":[6,0,0,36,9], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f":[6,0,0,36,12], +"namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b":[6,0,0,36,7], +"namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348":[6,0,0,257], +"namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4":[6,0,0,175], +"namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d":[6,0,0,303], +"namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7":[6,0,0,79], +"namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9":[6,0,0,159], +"namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d":[6,0,0,87], +"namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d":[6,0,0,73], +"namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea":[6,0,0,234], +"namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f":[6,0,0,210], +"namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b":[6,0,0,165], +"namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad":[6,0,0,217], +"namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7":[6,0,0,142], +"namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e":[6,0,0,55], +"namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5":[6,0,0,162], +"namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9":[6,0,0,102], +"namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad":[6,0,0,51], +"namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41":[6,0,0,236], +"namespaceabcg.html#aa5e970181c35e076181628df29de48e5":[6,0,0,113], +"namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022":[6,0,0,292], +"namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc":[6,0,0,208], +"namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5":[6,0,0,40], +"namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c":[6,0,0,91], +"namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81":[6,0,0,138], +"namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7":[6,0,0,284], +"namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c":[6,0,0,227], +"namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54":[6,0,0,46], +"namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593":[6,0,0,213], +"namespaceabcg.html#aaef0756c5e371e4b80f652586438b594":[6,0,0,54], +"namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f":[6,0,0,140], +"namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7":[6,0,0,281], +"namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847":[6,0,0,153], +"namespaceabcg.html#ab7826bb1da6c947977b5644c00538540":[6,0,0,86], +"namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938":[6,0,0,250], +"namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979":[6,0,0,249], +"namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b":[6,0,0,202], +"namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646":[6,0,0,111], +"namespaceabcg.html#abb0b676883c3e5c717cea345b043a372":[6,0,0,271], +"namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88":[6,0,0,267], +"namespaceabcg.html#abde059e7926e418ee7676f612480ca2e":[6,0,0,192], +"namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24":[6,0,0,167], +"namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d":[6,0,0,253], "namespaceabcg.html#abebf61480d8b46ad61238624521c440c":[6,0,0,45], "namespaceabcg.html#ac050825096a0ef3f71c0dd6452f9dfc0":[6,0,0,277], "namespaceabcg.html#ac1ce439bbbfbaca867e112c7c75fdf2e":[6,0,0,291], "namespaceabcg.html#ac21f205c4a058a639fd695c4b4bf76fc":[6,0,0,265], -"namespaceabcg.html#ac2b042cb4fcd350f3efd9925f90bb068":[6,0,0,169], "namespaceabcg.html#ac2e13dc4a2ded3237be1ca90bad68d4e":[6,0,0,151], "namespaceabcg.html#ac5aac5887d3a23fdd9e62db27eac53db":[6,0,0,137], "namespaceabcg.html#ac5dc51412a57521944dc7f4f32901af5":[6,0,0,42], @@ -68,7 +204,6 @@ var NAVTREEINDEX3 = "namespaceabcg.html#af0c9e138d135378a3de00663c616cf46":[6,0,0,148], "namespaceabcg.html#af15b80a8f2eb74ae9de6f26996d3d51d":[6,0,0,286], "namespaceabcg.html#af1c355ed607c699a2fbe6b56454b84db":[6,0,0,222], -"namespaceabcg.html#af419f0698487fc55f9fd8b7a424eb633":[6,0,0,168], "namespaceabcg.html#af56cc0ad4060e65221188cfa41a59168":[6,0,0,293], "namespaceabcg.html#af7091aa59a245999d277ec71e54b687f":[6,0,0,67], "namespaceabcg.html#af725d24a5b6b6483d1cd3420dc6ec011":[6,0,0,279], @@ -85,12 +220,12 @@ var NAVTREEINDEX3 = "namespaceabcg.html#afbf3c358b10f7ef9aef38acb758e12ca":[6,0,0,44], "namespaceabcg.html#afd3d4e6a15e37502f806875152c161ec":[6,0,0,70], "namespaceabcg.html#afe4c4f9e797dcd01910528c13ff471d4":[6,0,0,59], -"namespacemembers.html":[6,1,0], "namespacemembers.html":[6,1,0,0], +"namespacemembers.html":[6,1,0], "namespacemembers_enum.html":[6,1,3], "namespacemembers_f.html":[6,1,0,1], -"namespacemembers_func.html":[6,1,1,0], "namespacemembers_func.html":[6,1,1], +"namespacemembers_func.html":[6,1,1,0], "namespacemembers_func_f.html":[6,1,1,1], "namespacemembers_func_g.html":[6,1,1,2], "namespacemembers_func_h.html":[6,1,1,3], @@ -107,86 +242,12 @@ var NAVTREEINDEX3 = "namespacemembers_type.html":[6,1,2], "namespaces.html":[6,0], "pages.html":[], -"structabcg_1_1OpenGLCubemapCreateInfo.html":[7,0,0,7], -"structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137":[7,0,0,7,2], -"structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0":[7,0,0,7,1], -"structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563":[7,0,0,7,0], -"structabcg_1_1OpenGLSettings.html":[7,0,0,9], -"structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b":[7,0,0,9,5], -"structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672":[7,0,0,9,7], -"structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a":[7,0,0,9,0], -"structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338":[7,0,0,9,1], -"structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f":[7,0,0,9,3], -"structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9":[7,0,0,9,6], -"structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06":[7,0,0,9,4], -"structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419":[7,0,0,9,2], -"structabcg_1_1OpenGLShader.html":[7,0,0,8], -"structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a":[7,0,0,8,0], -"structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53":[7,0,0,8,1], -"structabcg_1_1OpenGLTextureCreateInfo.html":[7,0,0,6], -"structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb":[7,0,0,6,2], -"structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c":[7,0,0,6,3], -"structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad":[7,0,0,6,0], -"structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f":[7,0,0,6,1], -"structabcg_1_1ShaderSource.html":[7,0,0,11], -"structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47":[7,0,0,11,0], -"structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e":[7,0,0,11,1], -"structabcg_1_1VulkanBufferCreateInfo.html":[7,0,0,14], -"structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3":[7,0,0,14,2], -"structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f":[7,0,0,14,0], -"structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5":[7,0,0,14,3], -"structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465":[7,0,0,14,1], -"structabcg_1_1VulkanCommandPools.html":[7,0,0,16], -"structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d":[7,0,0,16,1], -"structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4":[7,0,0,16,2], -"structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca":[7,0,0,16,0], -"structabcg_1_1VulkanFrame.html":[7,0,0,28], -"structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020":[7,0,0,28,1], -"structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1":[7,0,0,28,6], -"structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79":[7,0,0,28,0], -"structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3":[7,0,0,28,4], -"structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4":[7,0,0,28,2], -"structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820":[7,0,0,28,5], -"structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89":[7,0,0,28,3], -"structabcg_1_1VulkanImageCreateInfo.html":[7,0,0,20], -"structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2":[7,0,0,20,0], -"structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6":[7,0,0,20,2], -"structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430":[7,0,0,20,1], -"structabcg_1_1VulkanPipelineCreateInfo.html":[7,0,0,25], -"structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6":[7,0,0,25,11], -"structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f":[7,0,0,25,0], -"structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be":[7,0,0,25,10], -"structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9":[7,0,0,25,12], -"structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b":[7,0,0,25,8], -"structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b":[7,0,0,25,7], -"structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2":[7,0,0,25,3], -"structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5":[7,0,0,25,4], -"structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf":[7,0,0,25,2], -"structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2":[7,0,0,25,6], -"structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc":[7,0,0,25,1], -"structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7":[7,0,0,25,9], -"structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd":[7,0,0,25,5], -"structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f":[7,0,0,25,13], -"structabcg_1_1VulkanQueues.html":[7,0,0,17], -"structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4":[7,0,0,17,3], -"structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d":[7,0,0,17,1], -"structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a":[7,0,0,17,0], -"structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693":[7,0,0,17,2], -"structabcg_1_1VulkanQueuesFamilies.html":[7,0,0,23], -"structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594":[7,0,0,23,0], -"structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab":[7,0,0,23,3], -"structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e":[7,0,0,23,2], -"structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034":[7,0,0,23,1], -"structabcg_1_1VulkanSettings.html":[7,0,0,30], -"structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b":[7,0,0,30,0], -"structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e":[7,0,0,30,1], -"structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3":[7,0,0,30,3], -"structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092":[7,0,0,30,2], -"structabcg_1_1WindowSettings.html":[7,0,0,32], -"structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c":[7,0,0,32,3], -"structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a":[7,0,0,32,0], -"structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d":[7,0,0,32,1], -"structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d":[7,0,0,32,4], -"structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028":[7,0,0,32,2], -"structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36":[7,0,0,32,5] +"structabcg_1_1OpenGLCubemapCreateInfo.html":[6,0,0,2], +"structabcg_1_1OpenGLCubemapCreateInfo.html":[7,0,0,2], +"structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137":[6,0,0,2,2], +"structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137":[7,0,0,2,2], +"structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0":[6,0,0,2,1], +"structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0":[7,0,0,2,1], +"structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563":[6,0,0,2,0], +"structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563":[7,0,0,2,0] }; diff --git a/abcg/doc/html/navtreeindex4.js b/abcg/doc/html/navtreeindex4.js new file mode 100644 index 000000000..989befb7d --- /dev/null +++ b/abcg/doc/html/navtreeindex4.js @@ -0,0 +1,159 @@ +var NAVTREEINDEX4 = +{ +"structabcg_1_1OpenGLSettings.html":[6,0,0,4], +"structabcg_1_1OpenGLSettings.html":[7,0,0,4], +"structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b":[7,0,0,4,5], +"structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b":[6,0,0,4,5], +"structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672":[7,0,0,4,7], +"structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672":[6,0,0,4,7], +"structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a":[7,0,0,4,0], +"structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a":[6,0,0,4,0], +"structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338":[6,0,0,4,1], +"structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338":[7,0,0,4,1], +"structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f":[6,0,0,4,3], +"structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f":[7,0,0,4,3], +"structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9":[6,0,0,4,6], +"structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9":[7,0,0,4,6], +"structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06":[6,0,0,4,4], +"structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06":[7,0,0,4,4], +"structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419":[6,0,0,4,2], +"structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419":[7,0,0,4,2], +"structabcg_1_1OpenGLShader.html":[6,0,0,5], +"structabcg_1_1OpenGLShader.html":[7,0,0,5], +"structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a":[6,0,0,5,0], +"structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a":[7,0,0,5,0], +"structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53":[6,0,0,5,1], +"structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53":[7,0,0,5,1], +"structabcg_1_1OpenGLTextureCreateInfo.html":[7,0,0,6], +"structabcg_1_1OpenGLTextureCreateInfo.html":[6,0,0,6], +"structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb":[6,0,0,6,2], +"structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb":[7,0,0,6,2], +"structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c":[7,0,0,6,3], +"structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c":[6,0,0,6,3], +"structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad":[6,0,0,6,0], +"structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad":[7,0,0,6,0], +"structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f":[6,0,0,6,1], +"structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f":[7,0,0,6,1], +"structabcg_1_1ShaderSource.html":[6,0,0,11], +"structabcg_1_1ShaderSource.html":[7,0,0,11], +"structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47":[6,0,0,11,0], +"structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47":[7,0,0,11,0], +"structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e":[7,0,0,11,1], +"structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e":[6,0,0,11,1], +"structabcg_1_1VulkanBufferCreateInfo.html":[7,0,0,15], +"structabcg_1_1VulkanBufferCreateInfo.html":[6,0,0,15], +"structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3":[7,0,0,15,2], +"structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3":[6,0,0,15,2], +"structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f":[7,0,0,15,0], +"structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f":[6,0,0,15,0], +"structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5":[7,0,0,15,3], +"structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5":[6,0,0,15,3], +"structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465":[7,0,0,15,1], +"structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465":[6,0,0,15,1], +"structabcg_1_1VulkanCommandPools.html":[6,0,0,16], +"structabcg_1_1VulkanCommandPools.html":[7,0,0,16], +"structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d":[7,0,0,16,1], +"structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d":[6,0,0,16,1], +"structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4":[7,0,0,16,2], +"structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4":[6,0,0,16,2], +"structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca":[7,0,0,16,0], +"structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca":[6,0,0,16,0], +"structabcg_1_1VulkanFrame.html":[6,0,0,19], +"structabcg_1_1VulkanFrame.html":[7,0,0,19], +"structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020":[7,0,0,19,1], +"structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020":[6,0,0,19,1], +"structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1":[6,0,0,19,6], +"structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1":[7,0,0,19,6], +"structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79":[6,0,0,19,0], +"structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79":[7,0,0,19,0], +"structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3":[6,0,0,19,4], +"structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3":[7,0,0,19,4], +"structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4":[6,0,0,19,2], +"structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4":[7,0,0,19,2], +"structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820":[6,0,0,19,5], +"structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820":[7,0,0,19,5], +"structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89":[6,0,0,19,3], +"structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89":[7,0,0,19,3], +"structabcg_1_1VulkanImageCreateInfo.html":[7,0,0,21], +"structabcg_1_1VulkanImageCreateInfo.html":[6,0,0,21], +"structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2":[7,0,0,21,0], +"structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2":[6,0,0,21,0], +"structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6":[7,0,0,21,2], +"structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6":[6,0,0,21,2], +"structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430":[7,0,0,21,1], +"structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430":[6,0,0,21,1], +"structabcg_1_1VulkanPipelineCreateInfo.html":[7,0,0,25], +"structabcg_1_1VulkanPipelineCreateInfo.html":[6,0,0,25], +"structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6":[7,0,0,25,11], +"structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6":[6,0,0,25,11], +"structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f":[7,0,0,25,0], +"structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f":[6,0,0,25,0], +"structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be":[7,0,0,25,10], +"structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be":[6,0,0,25,10], +"structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9":[7,0,0,25,12], +"structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9":[6,0,0,25,12], +"structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b":[6,0,0,25,8], +"structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b":[7,0,0,25,8], +"structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b":[7,0,0,25,7], +"structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b":[6,0,0,25,7], +"structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2":[6,0,0,25,3], +"structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2":[7,0,0,25,3], +"structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5":[7,0,0,25,4], +"structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5":[6,0,0,25,4], +"structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf":[6,0,0,25,2], +"structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf":[7,0,0,25,2], +"structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2":[6,0,0,25,6], +"structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2":[7,0,0,25,6], +"structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc":[7,0,0,25,1], +"structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc":[6,0,0,25,1], +"structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7":[6,0,0,25,9], +"structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7":[7,0,0,25,9], +"structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd":[6,0,0,25,5], +"structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd":[7,0,0,25,5], +"structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f":[6,0,0,25,13], +"structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f":[7,0,0,25,13], +"structabcg_1_1VulkanQueues.html":[6,0,0,26], +"structabcg_1_1VulkanQueues.html":[7,0,0,26], +"structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4":[6,0,0,26,3], +"structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4":[7,0,0,26,3], +"structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d":[6,0,0,26,1], +"structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d":[7,0,0,26,1], +"structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a":[6,0,0,26,0], +"structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a":[7,0,0,26,0], +"structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693":[6,0,0,26,2], +"structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693":[7,0,0,26,2], +"structabcg_1_1VulkanQueuesFamilies.html":[6,0,0,27], +"structabcg_1_1VulkanQueuesFamilies.html":[7,0,0,27], +"structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594":[7,0,0,27,0], +"structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594":[6,0,0,27,0], +"structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab":[6,0,0,27,3], +"structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab":[7,0,0,27,3], +"structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e":[6,0,0,27,2], +"structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e":[7,0,0,27,2], +"structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034":[6,0,0,27,1], +"structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034":[7,0,0,27,1], +"structabcg_1_1VulkanSettings.html":[7,0,0,28], +"structabcg_1_1VulkanSettings.html":[6,0,0,28], +"structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b":[6,0,0,28,0], +"structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b":[7,0,0,28,0], +"structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e":[7,0,0,28,1], +"structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e":[6,0,0,28,1], +"structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3":[7,0,0,28,3], +"structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3":[6,0,0,28,3], +"structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092":[6,0,0,28,2], +"structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092":[7,0,0,28,2], +"structabcg_1_1WindowSettings.html":[6,0,0,33], +"structabcg_1_1WindowSettings.html":[7,0,0,33], +"structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c":[7,0,0,33,3], +"structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c":[6,0,0,33,3], +"structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a":[7,0,0,33,0], +"structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a":[6,0,0,33,0], +"structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d":[7,0,0,33,1], +"structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d":[6,0,0,33,1], +"structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d":[7,0,0,33,4], +"structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d":[6,0,0,33,4], +"structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028":[6,0,0,33,2], +"structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028":[7,0,0,33,2], +"structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36":[6,0,0,33,5], +"structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36":[7,0,0,33,5] +}; diff --git a/abcg/doc/html/pages.html b/abcg/doc/html/pages.html index 9330f87fc..c0e3a8a93 100644 --- a/abcg/doc/html/pages.html +++ b/abcg/doc/html/pages.html @@ -5,7 +5,7 @@ - + ABCg: Related Pages @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
ABCg -  v3.1.1 +  v3.1.2
Development framework for MCTA008-17
@@ -51,21 +51,22 @@
- + +/* @license-end */ +

@@ -79,7 +80,7 @@
@@ -93,19 +94,25 @@
- +
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
-
-
Related Pages
+
Related Pages
Here is a list of all related documentation pages:
@@ -113,7 +120,7 @@ diff --git a/abcg/doc/html/plus.svg b/abcg/doc/html/plus.svg new file mode 100644 index 000000000..075201655 --- /dev/null +++ b/abcg/doc/html/plus.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/abcg/doc/html/plusd.svg b/abcg/doc/html/plusd.svg new file mode 100644 index 000000000..0c65bfe94 --- /dev/null +++ b/abcg/doc/html/plusd.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/abcg/doc/html/resize.js b/abcg/doc/html/resize.js index e1ad0fe3b..0e5afa23e 100644 --- a/abcg/doc/html/resize.js +++ b/abcg/doc/html/resize.js @@ -22,38 +22,45 @@ @licend The above is the entire license notice for the JavaScript code in this file */ +var once=1; function initResizable() { var cookie_namespace = 'doxygen'; - var sidenav,navtree,content,header,collapsed,collapsedWidth=0,barWidth=6,desktop_vp=768,titleHeight; + var sidenav,navtree,content,header,barWidth=6,desktop_vp=768,titleHeight; - function readCookie(cookie) + function readSetting(cookie) { - var myCookie = cookie_namespace+"_"+cookie+"="; - if (document.cookie) { - var index = document.cookie.indexOf(myCookie); - if (index != -1) { - var valStart = index + myCookie.length; - var valEnd = document.cookie.indexOf(";", valStart); - if (valEnd == -1) { - valEnd = document.cookie.length; + if (window.chrome) { + var val = localStorage.getItem(cookie_namespace+'_width'); + if (val) return val; + } else { + var myCookie = cookie_namespace+"_"+cookie+"="; + if (document.cookie) { + var index = document.cookie.indexOf(myCookie); + if (index != -1) { + var valStart = index + myCookie.length; + var valEnd = document.cookie.indexOf(";", valStart); + if (valEnd == -1) { + valEnd = document.cookie.length; + } + var val = document.cookie.substring(valStart, valEnd); + return val; } - var val = document.cookie.substring(valStart, valEnd); - return val; } } - return 0; + return 335; } - function writeCookie(cookie, val, expiration) + function writeSetting(cookie, val) { - if (val==undefined) return; - if (expiration == null) { + if (window.chrome) { + localStorage.setItem(cookie_namespace+"_width",val); + } else { var date = new Date(); date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week expiration = date.toGMTString(); + document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; SameSite=Lax; expires=" + expiration+"; path=/"; } - document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; } function resizeWidth() @@ -61,13 +68,19 @@ function initResizable() var windowWidth = $(window).width() + "px"; var sidenavWidth = $(sidenav).outerWidth(); content.css({marginLeft:parseInt(sidenavWidth)+"px"}); - writeCookie('width',sidenavWidth-barWidth, null); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(sidenavWidth)+"px"}); + } + writeSetting('width',sidenavWidth-barWidth); } function restoreWidth(navWidth) { var windowWidth = $(window).width() + "px"; content.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + if (typeof page_layout!=='undefined' && page_layout==1) { + footer.css({marginLeft:parseInt(navWidth)+barWidth+"px"}); + } sidenav.css({width:navWidth + "px"}); } @@ -75,23 +88,20 @@ function initResizable() { var headerHeight = header.outerHeight(); var footerHeight = footer.outerHeight(); - var windowHeight = $(window).height() - headerHeight - footerHeight; - content.css({height:windowHeight + "px"}); - navtree.css({height:windowHeight + "px"}); - sidenav.css({height:windowHeight + "px"}); - var width=$(window).width(); - if (width!=collapsedWidth) { - if (width=desktop_vp) { - if (!collapsed) { - collapseExpand(); - } - } else if (width>desktop_vp && collapsedWidth0) { - restoreWidth(0); - collapsed=true; + newWidth=0; } else { - var width = readCookie('width'); - if (width>200 && width<$(window).width()) { restoreWidth(width); } else { restoreWidth(200); } - collapsed=false; + var width = readSetting('width'); + newWidth = (width>335 && width<$(window).width()) ? width : 335; } + restoreWidth(newWidth); + var sidenavWidth = $(sidenav).outerWidth(); + writeSetting('width',sidenavWidth-barWidth); } header = $("#top"); @@ -126,7 +138,7 @@ function initResizable() $('#nav-sync').css({ right:'34px' }); barWidth=20; } - var width = readCookie('width'); + var width = readSetting('width'); if (width) { restoreWidth(width); } else { resizeWidth(); } resizeHeight(); var url = location.href; @@ -134,7 +146,10 @@ function initResizable() if (i>=0) window.location.hash=url.substr(i); var _preventDefault = function(evt) { evt.preventDefault(); }; $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); - $(".ui-resizable-handle").dblclick(collapseExpand); + if (once) { + $(".ui-resizable-handle").dblclick(collapseExpand); + once=0 + } $(window).on('load',resizeHeight); } /* @license-end */ diff --git a/abcg/doc/html/search/all_0.html b/abcg/doc/html/search/all_0.html deleted file mode 100644 index 1ec5b2d59..000000000 --- a/abcg/doc/html/search/all_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_0.js b/abcg/doc/html/search/all_0.js index f50b43461..3a40e97b2 100644 --- a/abcg/doc/html/search/all_0.js +++ b/abcg/doc/html/search/all_0.js @@ -1,64 +1,6 @@ var searchData= [ - ['abcg_0',['abcg',['../namespaceabcg.html',1,'']]], - ['abcg_1',['ABCg',['../index.html',1,'']]], - ['abcg_2ehpp_2',['abcg.hpp',['../abcg_8hpp.html',1,'']]], - ['abcg_5fversion_5fmajor_3',['ABCG_VERSION_MAJOR',['../abcgApplication_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f',1,'abcgApplication.hpp']]], - ['abcg_5fversion_5fminor_4',['ABCG_VERSION_MINOR',['../abcgApplication_8hpp.html#a7396b0333e58c89fbafa65e76af72183',1,'abcgApplication.hpp']]], - ['abcg_5fversion_5fpatch_5',['ABCG_VERSION_PATCH',['../abcgApplication_8hpp.html#af521d4146de1ade55008a4d5f0ddd768',1,'abcgApplication.hpp']]], - ['abcg_5fvulkan_5fdebug_5freport_6',['ABCG_VULKAN_DEBUG_REPORT',['../abcgVulkanExternal_8hpp.html#adb1991a2979d0bd698ad63fdc1fc328b',1,'abcgVulkanExternal.hpp']]], - ['abcgapplication_2ecpp_7',['abcgApplication.cpp',['../abcgApplication_8cpp.html',1,'']]], - ['abcgapplication_2ehpp_8',['abcgApplication.hpp',['../abcgApplication_8hpp.html',1,'']]], - ['abcgembeddedfonts_2ehpp_9',['abcgEmbeddedFonts.hpp',['../abcgEmbeddedFonts_8hpp.html',1,'']]], - ['abcgexception_2ecpp_10',['abcgException.cpp',['../abcgException_8cpp.html',1,'']]], - ['abcgexception_2ehpp_11',['abcgException.hpp',['../abcgException_8hpp.html',1,'']]], - ['abcgexternal_2ehpp_12',['abcgExternal.hpp',['../abcgExternal_8hpp.html',1,'']]], - ['abcgimage_2ecpp_13',['abcgImage.cpp',['../abcgImage_8cpp.html',1,'']]], - ['abcgimage_2ehpp_14',['abcgImage.hpp',['../abcgImage_8hpp.html',1,'']]], - ['abcgopengl_2ehpp_15',['abcgOpenGL.hpp',['../abcgOpenGL_8hpp.html',1,'']]], - ['abcgopenglerror_2ecpp_16',['abcgOpenGLError.cpp',['../abcgOpenGLError_8cpp.html',1,'']]], - ['abcgopenglerror_2ehpp_17',['abcgOpenGLError.hpp',['../abcgOpenGLError_8hpp.html',1,'']]], - ['abcgopenglexternal_2ehpp_18',['abcgOpenGLExternal.hpp',['../abcgOpenGLExternal_8hpp.html',1,'']]], - ['abcgopenglfunction_2ecpp_19',['abcgOpenGLFunction.cpp',['../abcgOpenGLFunction_8cpp.html',1,'']]], - ['abcgopenglfunction_2ehpp_20',['abcgOpenGLFunction.hpp',['../abcgOpenGLFunction_8hpp.html',1,'']]], - ['abcgopenglimage_2ecpp_21',['abcgOpenGLImage.cpp',['../abcgOpenGLImage_8cpp.html',1,'']]], - ['abcgopenglimage_2ehpp_22',['abcgOpenGLImage.hpp',['../abcgOpenGLImage_8hpp.html',1,'']]], - ['abcgopenglshader_2ecpp_23',['abcgOpenGLShader.cpp',['../abcgOpenGLShader_8cpp.html',1,'']]], - ['abcgopenglshader_2ehpp_24',['abcgOpenGLShader.hpp',['../abcgOpenGLShader_8hpp.html',1,'']]], - ['abcgopenglwindow_2ecpp_25',['abcgOpenGLWindow.cpp',['../abcgOpenGLWindow_8cpp.html',1,'']]], - ['abcgopenglwindow_2ehpp_26',['abcgOpenGLWindow.hpp',['../abcgOpenGLWindow_8hpp.html',1,'']]], - ['abcgshader_2ehpp_27',['abcgShader.hpp',['../abcgShader_8hpp.html',1,'']]], - ['abcgtimer_2ecpp_28',['abcgTimer.cpp',['../abcgTimer_8cpp.html',1,'']]], - ['abcgtimer_2ehpp_29',['abcgTimer.hpp',['../abcgTimer_8hpp.html',1,'']]], - ['abcgtrackball_2ecpp_30',['abcgTrackball.cpp',['../abcgTrackball_8cpp.html',1,'']]], - ['abcgtrackball_2ehpp_31',['abcgTrackball.hpp',['../abcgTrackball_8hpp.html',1,'']]], - ['abcgutil_2ecpp_32',['abcgUtil.cpp',['../abcgUtil_8cpp.html',1,'']]], - ['abcgutil_2ehpp_33',['abcgUtil.hpp',['../abcgUtil_8hpp.html',1,'']]], - ['abcgvulkan_2ehpp_34',['abcgVulkan.hpp',['../abcgVulkan_8hpp.html',1,'']]], - ['abcgvulkanbuffer_2ecpp_35',['abcgVulkanBuffer.cpp',['../abcgVulkanBuffer_8cpp.html',1,'']]], - ['abcgvulkanbuffer_2ehpp_36',['abcgVulkanBuffer.hpp',['../abcgVulkanBuffer_8hpp.html',1,'']]], - ['abcgvulkandevice_2ecpp_37',['abcgVulkanDevice.cpp',['../abcgVulkanDevice_8cpp.html',1,'']]], - ['abcgvulkandevice_2ehpp_38',['abcgVulkanDevice.hpp',['../abcgVulkanDevice_8hpp.html',1,'']]], - ['abcgvulkanerror_2ecpp_39',['abcgVulkanError.cpp',['../abcgVulkanError_8cpp.html',1,'']]], - ['abcgvulkanerror_2ehpp_40',['abcgVulkanError.hpp',['../abcgVulkanError_8hpp.html',1,'']]], - ['abcgvulkanexternal_2ehpp_41',['abcgVulkanExternal.hpp',['../abcgVulkanExternal_8hpp.html',1,'']]], - ['abcgvulkanimage_2ecpp_42',['abcgVulkanImage.cpp',['../abcgVulkanImage_8cpp.html',1,'']]], - ['abcgvulkanimage_2ehpp_43',['abcgVulkanImage.hpp',['../abcgVulkanImage_8hpp.html',1,'']]], - ['abcgvulkaninstance_2ecpp_44',['abcgVulkanInstance.cpp',['../abcgVulkanInstance_8cpp.html',1,'']]], - ['abcgvulkaninstance_2ehpp_45',['abcgVulkanInstance.hpp',['../abcgVulkanInstance_8hpp.html',1,'']]], - ['abcgvulkanphysicaldevice_2ecpp_46',['abcgVulkanPhysicalDevice.cpp',['../abcgVulkanPhysicalDevice_8cpp.html',1,'']]], - ['abcgvulkanphysicaldevice_2ehpp_47',['abcgVulkanPhysicalDevice.hpp',['../abcgVulkanPhysicalDevice_8hpp.html',1,'']]], - ['abcgvulkanpipeline_2ecpp_48',['abcgVulkanPipeline.cpp',['../abcgVulkanPipeline_8cpp.html',1,'']]], - ['abcgvulkanpipeline_2ehpp_49',['abcgVulkanPipeline.hpp',['../abcgVulkanPipeline_8hpp.html',1,'']]], - ['abcgvulkanshader_2ecpp_50',['abcgVulkanShader.cpp',['../abcgVulkanShader_8cpp.html',1,'']]], - ['abcgvulkanshader_2ehpp_51',['abcgVulkanShader.hpp',['../abcgVulkanShader_8hpp.html',1,'']]], - ['abcgvulkanswapchain_2ecpp_52',['abcgVulkanSwapchain.cpp',['../abcgVulkanSwapchain_8cpp.html',1,'']]], - ['abcgvulkanswapchain_2ehpp_53',['abcgVulkanSwapchain.hpp',['../abcgVulkanSwapchain_8hpp.html',1,'']]], - ['abcgvulkanwindow_2ecpp_54',['abcgVulkanWindow.cpp',['../abcgVulkanWindow_8cpp.html',1,'']]], - ['abcgvulkanwindow_2ehpp_55',['abcgVulkanWindow.hpp',['../abcgVulkanWindow_8hpp.html',1,'']]], - ['abcgwindow_2ecpp_56',['abcgWindow.cpp',['../abcgWindow_8cpp.html',1,'']]], - ['abcgwindow_2ehpp_57',['abcgWindow.hpp',['../abcgWindow_8hpp.html',1,'']]], - ['anyhit_58',['AnyHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b',1,'abcg']]], - ['application_59',['Application',['../classabcg_1_1Application.html',1,'abcg::Application'],['../classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54',1,'abcg::Application::Application()']]], - ['attributedescriptions_60',['attributeDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f',1,'abcg::VulkanPipelineCreateInfo']]] + ['0_0',['v3.1.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md12',1,'']]], + ['0_200_1',['0 0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md22',1,'v1.0.0'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md19',1,'v2.0.0'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md13',1,'v3.0.0']]], + ['0_201_2',['v2.0.1',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md17',1,'']]] ]; diff --git a/abcg/doc/html/search/all_1.html b/abcg/doc/html/search/all_1.html deleted file mode 100644 index 9f80e9043..000000000 --- a/abcg/doc/html/search/all_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_1.js b/abcg/doc/html/search/all_1.js index 7c2349cb3..94d9aa83a 100644 --- a/abcg/doc/html/search/all_1.js +++ b/abcg/doc/html/search/all_1.js @@ -1,4 +1,7 @@ var searchData= [ - ['bindingdescriptions_61',['bindingDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc',1,'abcg::VulkanPipelineCreateInfo']]] + ['1_0',['v2.0.1',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md17',1,'']]], + ['1_200_1',['v3.1.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md12',1,'']]], + ['1_201_2',['v3.1.1',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md11',1,'']]], + ['1_202_3',['v3.1.2',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md10',1,'']]] ]; diff --git a/abcg/doc/html/search/all_10.html b/abcg/doc/html/search/all_10.html deleted file mode 100644 index 3bf11961f..000000000 --- a/abcg/doc/html/search/all_10.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_10.js b/abcg/doc/html/search/all_10.js index d4682b368..c7bc91a91 100644 --- a/abcg/doc/html/search/all_10.js +++ b/abcg/doc/html/search/all_10.js @@ -1,4 +1,11 @@ var searchData= [ - ['usage_487',['usage',['../structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5',1,'abcg::VulkanBufferCreateInfo']]] + ['paint_0',['paint',['../classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0',1,'abcg::Window']]], + ['path_1',['path',['../structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb',1,'abcg::OpenGLTextureCreateInfo']]], + ['paths_2',['paths',['../structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0',1,'abcg::OpenGLCubemapCreateInfo']]], + ['pipelinecache_3',['pipelineCache',['../structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b',1,'abcg::VulkanPipelineCreateInfo']]], + ['pipelinelayout_4',['pipelineLayout',['../structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7',1,'abcg::VulkanPipelineCreateInfo']]], + ['present_5',['present',['../structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693',1,'abcg::VulkanQueues::present'],['../structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e',1,'abcg::VulkanQueuesFamilies::present'],['../classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b',1,'abcg::VulkanSwapchain::present()']]], + ['profile_6',['profile',['../structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06',1,'abcg::OpenGLSettings']]], + ['properties_7',['properties',['../structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465',1,'abcg::VulkanBufferCreateInfo::properties'],['../structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430',1,'abcg::VulkanImageCreateInfo::properties']]] ]; diff --git a/abcg/doc/html/search/all_11.html b/abcg/doc/html/search/all_11.html deleted file mode 100644 index c9f79d289..000000000 --- a/abcg/doc/html/search/all_11.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_11.js b/abcg/doc/html/search/all_11.js index 4f68bedca..f85bf8028 100644 --- a/abcg/doc/html/search/all_11.js +++ b/abcg/doc/html/search/all_11.js @@ -1,26 +1,15 @@ var searchData= [ - ['vertex_488',['Vertex',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6',1,'abcg']]], - ['viewinfo_489',['viewInfo',['../structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6',1,'abcg::VulkanImageCreateInfo']]], - ['viewports_490',['viewports',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f',1,'abcg::VulkanPipelineCreateInfo']]], - ['vsync_491',['vSync',['../structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3',1,'abcg::VulkanSettings::vSync()'],['../structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672',1,'abcg::OpenGLSettings::vSync()']]], - ['vulkan_5fhpp_5fno_5fconstructors_492',['VULKAN_HPP_NO_CONSTRUCTORS',['../abcgVulkanExternal_8hpp.html#a607e8c4e92dfe6be973de2486903571f',1,'abcgVulkanExternal.hpp']]], - ['vulkanbuffer_493',['VulkanBuffer',['../classabcg_1_1VulkanBuffer.html',1,'abcg']]], - ['vulkanbuffercreateinfo_494',['VulkanBufferCreateInfo',['../structabcg_1_1VulkanBufferCreateInfo.html',1,'abcg']]], - ['vulkancommandpools_495',['VulkanCommandPools',['../structabcg_1_1VulkanCommandPools.html',1,'abcg']]], - ['vulkandevice_496',['VulkanDevice',['../classabcg_1_1VulkanDevice.html',1,'abcg']]], - ['vulkanerror_497',['VulkanError',['../classabcg_1_1VulkanError.html',1,'abcg::VulkanError'],['../classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce',1,'abcg::VulkanError::VulkanError()']]], - ['vulkanframe_498',['VulkanFrame',['../structabcg_1_1VulkanFrame.html',1,'abcg']]], - ['vulkanimage_499',['VulkanImage',['../classabcg_1_1VulkanImage.html',1,'abcg']]], - ['vulkanimagecreateinfo_500',['VulkanImageCreateInfo',['../structabcg_1_1VulkanImageCreateInfo.html',1,'abcg']]], - ['vulkaninstance_501',['VulkanInstance',['../classabcg_1_1VulkanInstance.html',1,'abcg']]], - ['vulkanphysicaldevice_502',['VulkanPhysicalDevice',['../classabcg_1_1VulkanPhysicalDevice.html',1,'abcg']]], - ['vulkanpipeline_503',['VulkanPipeline',['../classabcg_1_1VulkanPipeline.html',1,'abcg']]], - ['vulkanpipelinecreateinfo_504',['VulkanPipelineCreateInfo',['../structabcg_1_1VulkanPipelineCreateInfo.html',1,'abcg']]], - ['vulkanqueues_505',['VulkanQueues',['../structabcg_1_1VulkanQueues.html',1,'abcg']]], - ['vulkanqueuesfamilies_506',['VulkanQueuesFamilies',['../structabcg_1_1VulkanQueuesFamilies.html',1,'abcg']]], - ['vulkansettings_507',['VulkanSettings',['../structabcg_1_1VulkanSettings.html',1,'abcg']]], - ['vulkanshader_508',['VulkanShader',['../classabcg_1_1VulkanShader.html',1,'abcg']]], - ['vulkanswapchain_509',['VulkanSwapchain',['../classabcg_1_1VulkanSwapchain.html',1,'abcg']]], - ['vulkanwindow_510',['VulkanWindow',['../classabcg_1_1VulkanWindow.html',1,'abcg']]] + ['rasterizationstate_0',['rasterizationState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be',1,'abcg::VulkanPipelineCreateInfo']]], + ['raygen_1',['RayGen',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a',1,'abcg']]], + ['readme_2emd_2',['README.md',['../README_8md.html',1,'']]], + ['release_20notes_3',['Release notes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html',1,'']]], + ['render_4',['render',['../classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830',1,'abcg::VulkanSwapchain']]], + ['requirements_5',['Requirements',['../index.html#autotoc_md2',1,'']]], + ['resizeviewport_6',['resizeViewport',['../classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da',1,'abcg::TrackBall']]], + ['resizingeventwatcher_7',['resizingeventwatcher',['../classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509',1,'abcg::Window::resizingEventWatcher'],['../namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b',1,'abcg::resizingEventWatcher()']]], + ['restart_8',['restart',['../classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c',1,'abcg::Timer']]], + ['righthandedsystem_9',['rightHandedSystem',['../structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137',1,'abcg::OpenGLCubemapCreateInfo']]], + ['run_10',['run',['../classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d',1,'abcg::Application']]], + ['runtimeerror_11',['runtimeerror',['../classabcg_1_1RuntimeError.html',1,'abcg::RuntimeError'],['../classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9',1,'abcg::RuntimeError::RuntimeError()']]] ]; diff --git a/abcg/doc/html/search/all_12.html b/abcg/doc/html/search/all_12.html deleted file mode 100644 index ab934722c..000000000 --- a/abcg/doc/html/search/all_12.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_12.js b/abcg/doc/html/search/all_12.js index d88548e7b..819b69bc0 100644 --- a/abcg/doc/html/search/all_12.js +++ b/abcg/doc/html/search/all_12.js @@ -1,8 +1,27 @@ var searchData= [ - ['what_511',['what',['../classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb',1,'abcg::Exception']]], - ['width_512',['width',['../structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36',1,'abcg::WindowSettings']]], - ['window_513',['Window',['../classabcg_1_1Window.html',1,'abcg::Window'],['../classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf',1,'abcg::Window::Window()=default'],['../classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48',1,'abcg::Window::Window(Window const &)=delete'],['../classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0',1,'abcg::Window::Window(Window &&)=default']]], - ['windowsettings_514',['WindowSettings',['../structabcg_1_1WindowSettings.html',1,'abcg']]], - ['withcommandbuffer_515',['withCommandBuffer',['../classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc',1,'abcg::VulkanDevice']]] + ['samples_0',['samples',['../structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b',1,'abcg::OpenGLSettings::samples'],['../structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e',1,'abcg::VulkanSettings::samples']]], + ['savescreenshotpng_1',['saveScreenshotPNG',['../classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff',1,'abcg::OpenGLWindow']]], + ['scissors_2',['scissors',['../structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6',1,'abcg::VulkanPipelineCreateInfo']]], + ['sdlerror_3',['sdlerror',['../classabcg_1_1SDLError.html',1,'abcg::SDLError'],['../classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae',1,'abcg::SDLError::SDLError()']]], + ['sdlimageerror_4',['sdlimageerror',['../classabcg_1_1SDLImageError.html',1,'abcg::SDLImageError'],['../classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4',1,'abcg::SDLImageError::SDLImageError()']]], + ['setaxis_5',['setAxis',['../classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8',1,'abcg::TrackBall']]], + ['setenableresizingeventwatcher_6',['setEnableResizingEventWatcher',['../classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e',1,'abcg::Window']]], + ['setopenglsettings_7',['setOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067',1,'abcg::OpenGLWindow']]], + ['setup_8',['Docker setup',['../index.html#autotoc_md7',1,'']]], + ['setvelocity_9',['setVelocity',['../classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f',1,'abcg::TrackBall']]], + ['setvulkansettings_10',['setVulkanSettings',['../classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6',1,'abcg::VulkanWindow']]], + ['setwindowsettings_11',['setWindowSettings',['../classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277',1,'abcg::Window']]], + ['shader_12',['shader',['../structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a',1,'abcg::OpenGLShader']]], + ['shaders_13',['shaders',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9',1,'abcg::VulkanPipelineCreateInfo']]], + ['shadersource_14',['ShaderSource',['../structabcg_1_1ShaderSource.html',1,'abcg']]], + ['shaderstage_15',['ShaderStage',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da',1,'abcg']]], + ['showfps_16',['showFPS',['../structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028',1,'abcg::WindowSettings']]], + ['showfullscreenbutton_17',['showFullscreenButton',['../structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c',1,'abcg::WindowSettings']]], + ['size_18',['size',['../structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3',1,'abcg::VulkanBufferCreateInfo']]], + ['source_19',['source',['../structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47',1,'abcg::ShaderSource']]], + ['source_5flocation_20',['source_location',['../namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2',1,'abcg']]], + ['srgbtolinear_21',['sRGBToLinear',['../structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c',1,'abcg::OpenGLTextureCreateInfo']]], + ['stage_22',['stage',['../structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53',1,'abcg::OpenGLShader::stage'],['../structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e',1,'abcg::ShaderSource::stage']]], + ['stencilbuffersize_23',['stencilbuffersize',['../structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9',1,'abcg::OpenGLSettings::stencilBufferSize'],['../structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092',1,'abcg::VulkanSettings::stencilBufferSize']]] ]; diff --git a/abcg/doc/html/search/all_13.html b/abcg/doc/html/search/all_13.html deleted file mode 100644 index 51172c2f3..000000000 --- a/abcg/doc/html/search/all_13.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_13.js b/abcg/doc/html/search/all_13.js index 116451f8f..9521687cb 100644 --- a/abcg/doc/html/search/all_13.js +++ b/abcg/doc/html/search/all_13.js @@ -1,4 +1,16 @@ var searchData= [ - ['_7ewindow_516',['~Window',['../classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f',1,'abcg::Window']]] + ['task_0',['Task',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f',1,'abcg']]], + ['tessellationcontrol_1',['TessellationControl',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a',1,'abcg']]], + ['tessellationevaluation_2',['TessellationEvaluation',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952',1,'abcg']]], + ['timer_3',['Timer',['../classabcg_1_1Timer.html',1,'abcg']]], + ['title_4',['title',['../structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d',1,'abcg::WindowSettings']]], + ['tobluestring_5',['toBlueString',['../namespaceabcg.html#a1b13712894adf3cfdda66dd3ddd14256',1,'abcg']]], + ['togglefullscreen_6',['toggleFullscreen',['../classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6',1,'abcg::Window']]], + ['toredstring_7',['toRedString',['../namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d',1,'abcg']]], + ['toyellowstring_8',['toYellowString',['../namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d',1,'abcg']]], + ['trackball_9',['TrackBall',['../classabcg_1_1TrackBall.html',1,'abcg']]], + ['transfer_10',['transfer',['../structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4',1,'abcg::VulkanCommandPools::transfer'],['../structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4',1,'abcg::VulkanQueues::transfer'],['../structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab',1,'abcg::VulkanQueuesFamilies::transfer']]], + ['triggeropenglshadercompile_11',['triggerOpenGLShaderCompile',['../namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102',1,'abcg']]], + ['triggeropenglshaderlink_12',['triggerOpenGLShaderLink',['../namespaceabcg.html#aee435331b56516022710b8acc098883a',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/all_14.js b/abcg/doc/html/search/all_14.js new file mode 100644 index 000000000..8cf433727 --- /dev/null +++ b/abcg/doc/html/search/all_14.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['usage_0',['usage',['../index.html#autotoc_md3',1,'Installation and usage'],['../structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5',1,'abcg::VulkanBufferCreateInfo::usage']]] +]; diff --git a/abcg/doc/html/search/all_15.js b/abcg/doc/html/search/all_15.js new file mode 100644 index 000000000..1c062acbd --- /dev/null +++ b/abcg/doc/html/search/all_15.js @@ -0,0 +1,33 @@ +var searchData= +[ + ['v1_200_200_0',['v1.0.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md22',1,'']]], + ['v2_200_200_1',['v2.0.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md19',1,'']]], + ['v2_200_201_2',['v2.0.1',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md17',1,'']]], + ['v3_200_200_3',['v3.0.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md13',1,'']]], + ['v3_201_200_4',['v3.1.0',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md12',1,'']]], + ['v3_201_201_5',['v3.1.1',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md11',1,'']]], + ['v3_201_202_6',['v3.1.2',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md10',1,'']]], + ['vertex_7',['Vertex',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6',1,'abcg']]], + ['viewinfo_8',['viewInfo',['../structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6',1,'abcg::VulkanImageCreateInfo']]], + ['viewports_9',['viewports',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f',1,'abcg::VulkanPipelineCreateInfo']]], + ['vsync_10',['vsync',['../structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3',1,'abcg::VulkanSettings::vSync'],['../structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672',1,'abcg::OpenGLSettings::vSync']]], + ['vulkan_5fhpp_5fno_5fconstructors_11',['VULKAN_HPP_NO_CONSTRUCTORS',['../abcgVulkanExternal_8hpp.html#a607e8c4e92dfe6be973de2486903571f',1,'abcgVulkanExternal.hpp']]], + ['vulkanbuffer_12',['VulkanBuffer',['../classabcg_1_1VulkanBuffer.html',1,'abcg']]], + ['vulkanbuffercreateinfo_13',['VulkanBufferCreateInfo',['../structabcg_1_1VulkanBufferCreateInfo.html',1,'abcg']]], + ['vulkancommandpools_14',['VulkanCommandPools',['../structabcg_1_1VulkanCommandPools.html',1,'abcg']]], + ['vulkandevice_15',['VulkanDevice',['../classabcg_1_1VulkanDevice.html',1,'abcg']]], + ['vulkanerror_16',['vulkanerror',['../classabcg_1_1VulkanError.html',1,'abcg::VulkanError'],['../classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce',1,'abcg::VulkanError::VulkanError()']]], + ['vulkanframe_17',['VulkanFrame',['../structabcg_1_1VulkanFrame.html',1,'abcg']]], + ['vulkanimage_18',['VulkanImage',['../classabcg_1_1VulkanImage.html',1,'abcg']]], + ['vulkanimagecreateinfo_19',['VulkanImageCreateInfo',['../structabcg_1_1VulkanImageCreateInfo.html',1,'abcg']]], + ['vulkaninstance_20',['VulkanInstance',['../classabcg_1_1VulkanInstance.html',1,'abcg']]], + ['vulkanphysicaldevice_21',['VulkanPhysicalDevice',['../classabcg_1_1VulkanPhysicalDevice.html',1,'abcg']]], + ['vulkanpipeline_22',['VulkanPipeline',['../classabcg_1_1VulkanPipeline.html',1,'abcg']]], + ['vulkanpipelinecreateinfo_23',['VulkanPipelineCreateInfo',['../structabcg_1_1VulkanPipelineCreateInfo.html',1,'abcg']]], + ['vulkanqueues_24',['VulkanQueues',['../structabcg_1_1VulkanQueues.html',1,'abcg']]], + ['vulkanqueuesfamilies_25',['VulkanQueuesFamilies',['../structabcg_1_1VulkanQueuesFamilies.html',1,'abcg']]], + ['vulkansettings_26',['VulkanSettings',['../structabcg_1_1VulkanSettings.html',1,'abcg']]], + ['vulkanshader_27',['VulkanShader',['../classabcg_1_1VulkanShader.html',1,'abcg']]], + ['vulkanswapchain_28',['VulkanSwapchain',['../classabcg_1_1VulkanSwapchain.html',1,'abcg']]], + ['vulkanwindow_29',['VulkanWindow',['../classabcg_1_1VulkanWindow.html',1,'abcg']]] +]; diff --git a/abcg/doc/html/search/all_16.js b/abcg/doc/html/search/all_16.js new file mode 100644 index 000000000..58fa31784 --- /dev/null +++ b/abcg/doc/html/search/all_16.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['webassembly_0',['WebAssembly',['../index.html#autotoc_md6',1,'']]], + ['what_1',['what',['../classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb',1,'abcg::Exception']]], + ['width_2',['width',['../structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36',1,'abcg::WindowSettings']]], + ['window_3',['window',['../classabcg_1_1Window.html',1,'abcg::Window'],['../classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf',1,'abcg::Window::Window()=default'],['../classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48',1,'abcg::Window::Window(Window const &)=delete'],['../classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0',1,'abcg::Window::Window(Window &&)=default']]], + ['windows_4',['Windows',['../index.html#autotoc_md4',1,'']]], + ['windowsettings_5',['WindowSettings',['../structabcg_1_1WindowSettings.html',1,'abcg']]], + ['withcommandbuffer_6',['withCommandBuffer',['../classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc',1,'abcg::VulkanDevice']]] +]; diff --git a/abcg/doc/html/search/all_17.js b/abcg/doc/html/search/all_17.js new file mode 100644 index 000000000..ad977b3cb --- /dev/null +++ b/abcg/doc/html/search/all_17.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['_7ewindow_0',['~Window',['../classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f',1,'abcg::Window']]] +]; diff --git a/abcg/doc/html/search/all_2.html b/abcg/doc/html/search/all_2.html deleted file mode 100644 index 02cfffc2e..000000000 --- a/abcg/doc/html/search/all_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_2.js b/abcg/doc/html/search/all_2.js index c02267d34..18092bc84 100644 --- a/abcg/doc/html/search/all_2.js +++ b/abcg/doc/html/search/all_2.js @@ -1,25 +1,4 @@ var searchData= [ - ['callable_62',['Callable',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8',1,'abcg']]], - ['callgl_63',['callGL',['../namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1',1,'abcg']]], - ['changelog_2emd_64',['CHANGELOG.md',['../CHANGELOG_8md.html',1,'']]], - ['checkglerror_65',['checkGLError',['../namespaceabcg.html#a319c7bd437a23751054bc1d092d9e0ae',1,'abcg']]], - ['checkopenglshadercompile_66',['checkOpenGLShaderCompile',['../namespaceabcg.html#ada2b3e076d6fe0c4dd27615e7f4d4d50',1,'abcg']]], - ['checkopenglshaderlink_67',['checkOpenGLShaderLink',['../namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5',1,'abcg']]], - ['checkrebuild_68',['checkRebuild',['../classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4',1,'abcg::VulkanSwapchain']]], - ['checkvkresult_69',['checkVkResult',['../namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9',1,'abcg']]], - ['closesthit_70',['ClosestHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575',1,'abcg']]], - ['colorblendattachment_71',['colorBlendAttachment',['../structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf',1,'abcg::VulkanPipelineCreateInfo']]], - ['colorblendstate_72',['colorBlendState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2',1,'abcg::VulkanPipelineCreateInfo']]], - ['colorimage_73',['colorImage',['../structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79',1,'abcg::VulkanFrame']]], - ['commandbuffer_74',['commandBuffer',['../structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020',1,'abcg::VulkanFrame']]], - ['commandbufferui_75',['commandBufferUI',['../structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4',1,'abcg::VulkanFrame']]], - ['commandpool_76',['commandPool',['../structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89',1,'abcg::VulkanFrame']]], - ['compatibility_77',['Compatibility',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53',1,'abcg']]], - ['compute_78',['compute',['../structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca',1,'abcg::VulkanCommandPools::compute()'],['../structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a',1,'abcg::VulkanQueues::compute()'],['../structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594',1,'abcg::VulkanQueuesFamilies::compute()']]], - ['compute_79',['Compute',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10',1,'abcg']]], - ['core_80',['Core',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153',1,'abcg']]], - ['create_81',['create',['../classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730',1,'abcg::VulkanPhysicalDevice::create()'],['../classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e',1,'abcg::Window::create()'],['../classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31',1,'abcg::VulkanSwapchain::create()'],['../classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2',1,'abcg::VulkanShader::create()'],['../classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0',1,'abcg::VulkanPipeline::create()'],['../classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730',1,'abcg::VulkanInstance::create()'],['../classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b',1,'abcg::VulkanImage::create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)'],['../classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d',1,'abcg::VulkanImage::create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)'],['../classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029',1,'abcg::VulkanDevice::create()'],['../classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7',1,'abcg::VulkanBuffer::create()']]], - ['createopenglprogram_82',['createOpenGLProgram',['../namespaceabcg.html#ac5dc51412a57521944dc7f4f32901af5',1,'abcg']]], - ['createsdlwindow_83',['createSDLWindow',['../classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e',1,'abcg::Window']]] + ['2_0',['v3.1.2',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md10',1,'']]] ]; diff --git a/abcg/doc/html/search/all_3.html b/abcg/doc/html/search/all_3.html deleted file mode 100644 index 39767b85b..000000000 --- a/abcg/doc/html/search/all_3.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_3.js b/abcg/doc/html/search/all_3.js index 7803974ca..404ccd883 100644 --- a/abcg/doc/html/search/all_3.js +++ b/abcg/doc/html/search/all_3.js @@ -1,9 +1,65 @@ var searchData= [ - ['data_84',['data',['../structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f',1,'abcg::VulkanBufferCreateInfo']]], - ['depthbuffersize_85',['depthBufferSize',['../structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a',1,'abcg::OpenGLSettings::depthBufferSize()'],['../structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b',1,'abcg::VulkanSettings::depthBufferSize()']]], - ['depthstencilstate_86',['depthStencilState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5',1,'abcg::VulkanPipelineCreateInfo']]], - ['destroy_87',['destroy',['../classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae',1,'abcg::VulkanBuffer::destroy()'],['../classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4',1,'abcg::VulkanDevice::destroy()'],['../classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379',1,'abcg::VulkanImage::destroy()'],['../classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168',1,'abcg::VulkanInstance::destroy()'],['../classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281',1,'abcg::VulkanPhysicalDevice::destroy()'],['../classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac',1,'abcg::VulkanPipeline::destroy()'],['../classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1',1,'abcg::VulkanShader::destroy()'],['../classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa',1,'abcg::VulkanSwapchain::destroy()'],['../classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f',1,'abcg::Window::destroy()']]], - ['doublebuffering_88',['doubleBuffering',['../structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338',1,'abcg::OpenGLSettings']]], - ['dynamicstates_89',['dynamicStates',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd',1,'abcg::VulkanPipelineCreateInfo']]] + ['abcg_0',['abcg',['../namespaceabcg.html',1,'abcg'],['../index.html',1,'ABCg']]], + ['abcg_2ehpp_1',['abcg.hpp',['../abcg_8hpp.html',1,'']]], + ['abcg_5fversion_5fmajor_2',['ABCG_VERSION_MAJOR',['../abcgApplication_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f',1,'abcgApplication.hpp']]], + ['abcg_5fversion_5fminor_3',['ABCG_VERSION_MINOR',['../abcgApplication_8hpp.html#a7396b0333e58c89fbafa65e76af72183',1,'abcgApplication.hpp']]], + ['abcg_5fversion_5fpatch_4',['ABCG_VERSION_PATCH',['../abcgApplication_8hpp.html#af521d4146de1ade55008a4d5f0ddd768',1,'abcgApplication.hpp']]], + ['abcg_5fvulkan_5fdebug_5freport_5',['ABCG_VULKAN_DEBUG_REPORT',['../abcgVulkanExternal_8hpp.html#adb1991a2979d0bd698ad63fdc1fc328b',1,'abcgVulkanExternal.hpp']]], + ['abcgapplication_2ecpp_6',['abcgApplication.cpp',['../abcgApplication_8cpp.html',1,'']]], + ['abcgapplication_2ehpp_7',['abcgApplication.hpp',['../abcgApplication_8hpp.html',1,'']]], + ['abcgembeddedfonts_2ehpp_8',['abcgEmbeddedFonts.hpp',['../abcgEmbeddedFonts_8hpp.html',1,'']]], + ['abcgexception_2ecpp_9',['abcgException.cpp',['../abcgException_8cpp.html',1,'']]], + ['abcgexception_2ehpp_10',['abcgException.hpp',['../abcgException_8hpp.html',1,'']]], + ['abcgexternal_2ehpp_11',['abcgExternal.hpp',['../abcgExternal_8hpp.html',1,'']]], + ['abcgimage_2ecpp_12',['abcgImage.cpp',['../abcgImage_8cpp.html',1,'']]], + ['abcgimage_2ehpp_13',['abcgImage.hpp',['../abcgImage_8hpp.html',1,'']]], + ['abcgopengl_2ehpp_14',['abcgOpenGL.hpp',['../abcgOpenGL_8hpp.html',1,'']]], + ['abcgopenglerror_2ecpp_15',['abcgOpenGLError.cpp',['../abcgOpenGLError_8cpp.html',1,'']]], + ['abcgopenglerror_2ehpp_16',['abcgOpenGLError.hpp',['../abcgOpenGLError_8hpp.html',1,'']]], + ['abcgopenglexternal_2ehpp_17',['abcgOpenGLExternal.hpp',['../abcgOpenGLExternal_8hpp.html',1,'']]], + ['abcgopenglfunction_2ecpp_18',['abcgOpenGLFunction.cpp',['../abcgOpenGLFunction_8cpp.html',1,'']]], + ['abcgopenglfunction_2ehpp_19',['abcgOpenGLFunction.hpp',['../abcgOpenGLFunction_8hpp.html',1,'']]], + ['abcgopenglimage_2ecpp_20',['abcgOpenGLImage.cpp',['../abcgOpenGLImage_8cpp.html',1,'']]], + ['abcgopenglimage_2ehpp_21',['abcgOpenGLImage.hpp',['../abcgOpenGLImage_8hpp.html',1,'']]], + ['abcgopenglshader_2ecpp_22',['abcgOpenGLShader.cpp',['../abcgOpenGLShader_8cpp.html',1,'']]], + ['abcgopenglshader_2ehpp_23',['abcgOpenGLShader.hpp',['../abcgOpenGLShader_8hpp.html',1,'']]], + ['abcgopenglwindow_2ecpp_24',['abcgOpenGLWindow.cpp',['../abcgOpenGLWindow_8cpp.html',1,'']]], + ['abcgopenglwindow_2ehpp_25',['abcgOpenGLWindow.hpp',['../abcgOpenGLWindow_8hpp.html',1,'']]], + ['abcgshader_2ehpp_26',['abcgShader.hpp',['../abcgShader_8hpp.html',1,'']]], + ['abcgtimer_2ecpp_27',['abcgTimer.cpp',['../abcgTimer_8cpp.html',1,'']]], + ['abcgtimer_2ehpp_28',['abcgTimer.hpp',['../abcgTimer_8hpp.html',1,'']]], + ['abcgtrackball_2ecpp_29',['abcgTrackball.cpp',['../abcgTrackball_8cpp.html',1,'']]], + ['abcgtrackball_2ehpp_30',['abcgTrackball.hpp',['../abcgTrackball_8hpp.html',1,'']]], + ['abcgutil_2ecpp_31',['abcgUtil.cpp',['../abcgUtil_8cpp.html',1,'']]], + ['abcgutil_2ehpp_32',['abcgUtil.hpp',['../abcgUtil_8hpp.html',1,'']]], + ['abcgvulkan_2ehpp_33',['abcgVulkan.hpp',['../abcgVulkan_8hpp.html',1,'']]], + ['abcgvulkanbuffer_2ecpp_34',['abcgVulkanBuffer.cpp',['../abcgVulkanBuffer_8cpp.html',1,'']]], + ['abcgvulkanbuffer_2ehpp_35',['abcgVulkanBuffer.hpp',['../abcgVulkanBuffer_8hpp.html',1,'']]], + ['abcgvulkandevice_2ecpp_36',['abcgVulkanDevice.cpp',['../abcgVulkanDevice_8cpp.html',1,'']]], + ['abcgvulkandevice_2ehpp_37',['abcgVulkanDevice.hpp',['../abcgVulkanDevice_8hpp.html',1,'']]], + ['abcgvulkanerror_2ecpp_38',['abcgVulkanError.cpp',['../abcgVulkanError_8cpp.html',1,'']]], + ['abcgvulkanerror_2ehpp_39',['abcgVulkanError.hpp',['../abcgVulkanError_8hpp.html',1,'']]], + ['abcgvulkanexternal_2ehpp_40',['abcgVulkanExternal.hpp',['../abcgVulkanExternal_8hpp.html',1,'']]], + ['abcgvulkanimage_2ecpp_41',['abcgVulkanImage.cpp',['../abcgVulkanImage_8cpp.html',1,'']]], + ['abcgvulkanimage_2ehpp_42',['abcgVulkanImage.hpp',['../abcgVulkanImage_8hpp.html',1,'']]], + ['abcgvulkaninstance_2ecpp_43',['abcgVulkanInstance.cpp',['../abcgVulkanInstance_8cpp.html',1,'']]], + ['abcgvulkaninstance_2ehpp_44',['abcgVulkanInstance.hpp',['../abcgVulkanInstance_8hpp.html',1,'']]], + ['abcgvulkanphysicaldevice_2ecpp_45',['abcgVulkanPhysicalDevice.cpp',['../abcgVulkanPhysicalDevice_8cpp.html',1,'']]], + ['abcgvulkanphysicaldevice_2ehpp_46',['abcgVulkanPhysicalDevice.hpp',['../abcgVulkanPhysicalDevice_8hpp.html',1,'']]], + ['abcgvulkanpipeline_2ecpp_47',['abcgVulkanPipeline.cpp',['../abcgVulkanPipeline_8cpp.html',1,'']]], + ['abcgvulkanpipeline_2ehpp_48',['abcgVulkanPipeline.hpp',['../abcgVulkanPipeline_8hpp.html',1,'']]], + ['abcgvulkanshader_2ecpp_49',['abcgVulkanShader.cpp',['../abcgVulkanShader_8cpp.html',1,'']]], + ['abcgvulkanshader_2ehpp_50',['abcgVulkanShader.hpp',['../abcgVulkanShader_8hpp.html',1,'']]], + ['abcgvulkanswapchain_2ecpp_51',['abcgVulkanSwapchain.cpp',['../abcgVulkanSwapchain_8cpp.html',1,'']]], + ['abcgvulkanswapchain_2ehpp_52',['abcgVulkanSwapchain.hpp',['../abcgVulkanSwapchain_8hpp.html',1,'']]], + ['abcgvulkanwindow_2ecpp_53',['abcgVulkanWindow.cpp',['../abcgVulkanWindow_8cpp.html',1,'']]], + ['abcgvulkanwindow_2ehpp_54',['abcgVulkanWindow.hpp',['../abcgVulkanWindow_8hpp.html',1,'']]], + ['abcgwindow_2ecpp_55',['abcgWindow.cpp',['../abcgWindow_8cpp.html',1,'']]], + ['abcgwindow_2ehpp_56',['abcgWindow.hpp',['../abcgWindow_8hpp.html',1,'']]], + ['and_20macos_57',['Linux and macOS',['../index.html#autotoc_md5',1,'']]], + ['and_20usage_58',['Installation and usage',['../index.html#autotoc_md3',1,'']]], + ['anyhit_59',['AnyHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b',1,'abcg']]], + ['application_60',['application',['../classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54',1,'abcg::Application::Application()'],['../classabcg_1_1Application.html',1,'abcg::Application']]], + ['attributedescriptions_61',['attributeDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/all_4.html b/abcg/doc/html/search/all_4.html deleted file mode 100644 index fc40463c8..000000000 --- a/abcg/doc/html/search/all_4.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_4.js b/abcg/doc/html/search/all_4.js index 5ab49fd2c..3d12444bc 100644 --- a/abcg/doc/html/search/all_4.js +++ b/abcg/doc/html/search/all_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['elapsed_90',['elapsed',['../classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e',1,'abcg::Timer']]], - ['es_91',['ES',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea04c19fa1e772ab66f0aad2efe61f25cd',1,'abcg']]], - ['exception_92',['Exception',['../classabcg_1_1Exception.html',1,'abcg::Exception'],['../classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71',1,'abcg::Exception::Exception()']]] + ['bindingdescriptions_0',['bindingDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc',1,'abcg::VulkanPipelineCreateInfo']]], + ['breaking_20changes_1',['breaking changes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md15',1,'Breaking changes'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md20',1,'Breaking changes']]], + ['bug_20fixes_2',['Bug Fixes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md18',1,'']]] ]; diff --git a/abcg/doc/html/search/all_5.html b/abcg/doc/html/search/all_5.html deleted file mode 100644 index 9dd9344b0..000000000 --- a/abcg/doc/html/search/all_5.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_5.js b/abcg/doc/html/search/all_5.js index 5d42452b9..f06fbbdab 100644 --- a/abcg/doc/html/search/all_5.js +++ b/abcg/doc/html/search/all_5.js @@ -1,11 +1,25 @@ var searchData= [ - ['fence_93',['fence',['../structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3',1,'abcg::VulkanFrame']]], - ['findmemorytype_94',['findMemoryType',['../classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864',1,'abcg::VulkanPhysicalDevice']]], - ['fliphorizontally_95',['flipHorizontally',['../namespaceabcg.html#a070a6d04f8ddd3f8ffc85556822ad9b9',1,'abcg']]], - ['flipupsidedown_96',['flipUpsideDown',['../structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad',1,'abcg::OpenGLTextureCreateInfo']]], - ['flipvertically_97',['flipVertically',['../namespaceabcg.html#afbf3c358b10f7ef9aef38acb758e12ca',1,'abcg']]], - ['fragment_98',['Fragment',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a',1,'abcg']]], - ['framebuffermain_99',['framebufferMain',['../structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820',1,'abcg::VulkanFrame']]], - ['fullscreenelementid_100',['fullscreenElementID',['../structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a',1,'abcg::WindowSettings']]] + ['callable_0',['Callable',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8',1,'abcg']]], + ['callgl_1',['callGL',['../namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1',1,'abcg']]], + ['changelog_2emd_2',['CHANGELOG.md',['../CHANGELOG_8md.html',1,'']]], + ['changes_3',['changes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md20',1,'Breaking changes'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md15',1,'Breaking changes'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md21',1,'Other changes'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md16',1,'Other changes']]], + ['checkglerror_4',['checkGLError',['../namespaceabcg.html#a319c7bd437a23751054bc1d092d9e0ae',1,'abcg']]], + ['checkopenglshadercompile_5',['checkOpenGLShaderCompile',['../namespaceabcg.html#ada2b3e076d6fe0c4dd27615e7f4d4d50',1,'abcg']]], + ['checkopenglshaderlink_6',['checkOpenGLShaderLink',['../namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5',1,'abcg']]], + ['checkrebuild_7',['checkRebuild',['../classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4',1,'abcg::VulkanSwapchain']]], + ['checkvkresult_8',['checkVkResult',['../namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9',1,'abcg']]], + ['closesthit_9',['ClosestHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575',1,'abcg']]], + ['colorblendattachment_10',['colorBlendAttachment',['../structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf',1,'abcg::VulkanPipelineCreateInfo']]], + ['colorblendstate_11',['colorBlendState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2',1,'abcg::VulkanPipelineCreateInfo']]], + ['colorimage_12',['colorImage',['../structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79',1,'abcg::VulkanFrame']]], + ['commandbuffer_13',['commandBuffer',['../structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020',1,'abcg::VulkanFrame']]], + ['commandbufferui_14',['commandBufferUI',['../structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4',1,'abcg::VulkanFrame']]], + ['commandpool_15',['commandPool',['../structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89',1,'abcg::VulkanFrame']]], + ['compatibility_16',['Compatibility',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53',1,'abcg']]], + ['compute_17',['compute',['../structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca',1,'abcg::VulkanCommandPools::compute'],['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10',1,'abcg::Compute'],['../structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a',1,'abcg::VulkanQueues::compute'],['../structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594',1,'abcg::VulkanQueuesFamilies::compute']]], + ['core_18',['Core',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153',1,'abcg']]], + ['create_19',['create',['../classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7',1,'abcg::VulkanBuffer::create()'],['../classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e',1,'abcg::Window::create()'],['../classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31',1,'abcg::VulkanSwapchain::create()'],['../classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2',1,'abcg::VulkanShader::create()'],['../classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0',1,'abcg::VulkanPipeline::create()'],['../classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730',1,'abcg::VulkanPhysicalDevice::create()'],['../classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730',1,'abcg::VulkanInstance::create()'],['../classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b',1,'abcg::VulkanImage::create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)'],['../classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d',1,'abcg::VulkanImage::create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)'],['../classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029',1,'abcg::VulkanDevice::create()']]], + ['createopenglprogram_20',['createOpenGLProgram',['../namespaceabcg.html#ac5dc51412a57521944dc7f4f32901af5',1,'abcg']]], + ['createsdlwindow_21',['createSDLWindow',['../classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e',1,'abcg::Window']]] ]; diff --git a/abcg/doc/html/search/all_6.html b/abcg/doc/html/search/all_6.html deleted file mode 100644 index f1e516d75..000000000 --- a/abcg/doc/html/search/all_6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_6.js b/abcg/doc/html/search/all_6.js index 688bdb04f..b180be4c3 100644 --- a/abcg/doc/html/search/all_6.js +++ b/abcg/doc/html/search/all_6.js @@ -1,293 +1,10 @@ var searchData= [ - ['generatemipmaps_101',['generateMipmaps',['../structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563',1,'abcg::OpenGLCubemapCreateInfo::generateMipmaps()'],['../structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f',1,'abcg::OpenGLTextureCreateInfo::generateMipmaps()']]], - ['geometry_102',['Geometry',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273',1,'abcg']]], - ['getassetspath_103',['getAssetsPath',['../classabcg_1_1Application.html#a0ba09deb85be01372abf095ebccfd90a',1,'abcg::Application']]], - ['getbasepath_104',['getBasePath',['../classabcg_1_1Application.html#a28b5d11e55d9aaef73b329503fe7725d',1,'abcg::Application']]], - ['getcommandpools_105',['getCommandPools',['../classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8',1,'abcg::VulkanDevice']]], - ['getcurrentframe_106',['getCurrentFrame',['../classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217',1,'abcg::VulkanSwapchain']]], - ['getdeltatime_107',['getDeltaTime',['../classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2',1,'abcg::Window']]], - ['getdepthimage_108',['getDepthImage',['../classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404',1,'abcg::VulkanSwapchain']]], - ['getdescriptorimageinfo_109',['getDescriptorImageInfo',['../classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b',1,'abcg::VulkanImage']]], - ['getdevice_110',['getDevice',['../classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a',1,'abcg::VulkanSwapchain::getDevice()'],['../classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f',1,'abcg::VulkanWindow::getDevice()']]], - ['getdevicememory_111',['getDeviceMemory',['../classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8',1,'abcg::VulkanBuffer::getDeviceMemory()'],['../classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca',1,'abcg::VulkanImage::getDeviceMemory()']]], - ['getelapsedtime_112',['getElapsedTime',['../classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe',1,'abcg::Window']]], - ['getextent_113',['getExtent',['../classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d',1,'abcg::VulkanSwapchain']]], - ['getfirstsupportedformat_114',['getFirstSupportedFormat',['../classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32',1,'abcg::VulkanPhysicalDevice']]], - ['getframes_115',['getFrames',['../classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e',1,'abcg::VulkanSwapchain']]], - ['getinstance_116',['getInstance',['../classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209',1,'abcg::VulkanPhysicalDevice']]], - ['getlayout_117',['getLayout',['../classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1',1,'abcg::VulkanPipeline']]], - ['getmainrenderpass_118',['getMainRenderPass',['../classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3',1,'abcg::VulkanSwapchain']]], - ['getmiplevels_119',['getMipLevels',['../classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5',1,'abcg::VulkanImage']]], - ['getmodule_120',['getModule',['../classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d',1,'abcg::VulkanShader']]], - ['getopenglsettings_121',['getOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e',1,'abcg::OpenGLWindow']]], - ['getphysicaldevice_122',['getPhysicalDevice',['../classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41',1,'abcg::VulkanDevice::getPhysicalDevice()'],['../classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e',1,'abcg::VulkanWindow::getPhysicalDevice()']]], - ['getqueues_123',['getQueues',['../classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e',1,'abcg::VulkanDevice']]], - ['getqueuesfamilies_124',['getQueuesFamilies',['../classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6',1,'abcg::VulkanPhysicalDevice']]], - ['getrotation_125',['getRotation',['../classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264',1,'abcg::TrackBall']]], - ['getsamplecount_126',['getSampleCount',['../classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4',1,'abcg::VulkanPhysicalDevice']]], - ['getsdlwindow_127',['getSDLWindow',['../classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c',1,'abcg::Window']]], - ['getsdlwindowid_128',['getSDLWindowID',['../classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf',1,'abcg::Window']]], - ['getstage_129',['getStage',['../classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7',1,'abcg::VulkanShader']]], - ['getsurfacekhr_130',['getSurfaceKHR',['../classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4',1,'abcg::VulkanPhysicalDevice']]], - ['getswapchain_131',['getSwapchain',['../classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a',1,'abcg::VulkanWindow']]], - ['getuirenderpass_132',['getUIRenderPass',['../classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580',1,'abcg::VulkanSwapchain']]], - ['getview_133',['getView',['../classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141',1,'abcg::VulkanImage']]], - ['getvulkansettings_134',['getVulkanSettings',['../classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5',1,'abcg::VulkanWindow']]], - ['getwindowsettings_135',['getWindowSettings',['../classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679',1,'abcg::Window']]], - ['getwindowsize_136',['getWindowSize',['../classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c',1,'abcg::Window']]], - ['glactivetexture_137',['glActiveTexture',['../namespaceabcg.html#abebf61480d8b46ad61238624521c440c',1,'abcg']]], - ['glattachshader_138',['glAttachShader',['../namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54',1,'abcg']]], - ['glbeginquery_139',['glBeginQuery',['../namespaceabcg.html#a43ea888d5366cd13f8559ae5c45e503e',1,'abcg']]], - ['glbegintransformfeedback_140',['glBeginTransformFeedback',['../namespaceabcg.html#a4284264dbf0f5c318686f11bce8183cf',1,'abcg']]], - ['glbindattriblocation_141',['glBindAttribLocation',['../namespaceabcg.html#ae5d99843e0bc8a0c59503a2530d56d48',1,'abcg']]], - ['glbindbuffer_142',['glBindBuffer',['../namespaceabcg.html#a3cd63c5a736b0e401ad6e4ab6ea1ec41',1,'abcg']]], - ['glbindbufferbase_143',['glBindBufferBase',['../namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad',1,'abcg']]], - ['glbindbufferrange_144',['glBindBufferRange',['../namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce',1,'abcg']]], - ['glbindfragdatalocation_145',['glBindFragDataLocation',['../namespaceabcg.html#a3f007c8f6d4d4ed049b66e03328d5b30',1,'abcg']]], - ['glbindframebuffer_146',['glBindFramebuffer',['../namespaceabcg.html#aaef0756c5e371e4b80f652586438b594',1,'abcg']]], - ['glbindrenderbuffer_147',['glBindRenderbuffer',['../namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e',1,'abcg']]], - ['glbindsampler_148',['glBindSampler',['../namespaceabcg.html#afb3c84a308e303b503c6f0cdefd5f426',1,'abcg']]], - ['glbindtexture_149',['glBindTexture',['../namespaceabcg.html#adb43c7b544c334de5da3f6c2c30570ae',1,'abcg']]], - ['glbindtransformfeedback_150',['glBindTransformFeedback',['../namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9',1,'abcg']]], - ['glbindvertexarray_151',['glBindVertexArray',['../namespaceabcg.html#afe4c4f9e797dcd01910528c13ff471d4',1,'abcg']]], - ['glblendcolor_152',['glBlendColor',['../namespaceabcg.html#af87c9f438750ec5baa88caa3e204469c',1,'abcg']]], - ['glblendequation_153',['glBlendEquation',['../namespaceabcg.html#afa82d1d244c12d3f884e674b79a04f3e',1,'abcg']]], - ['glblendequationseparate_154',['glBlendEquationSeparate',['../namespaceabcg.html#a2e813667e01f4ea1e3a4ca5a16d4847e',1,'abcg']]], - ['glblendfunc_155',['glBlendFunc',['../namespaceabcg.html#a620308c51e62a88d78f44312b8931947',1,'abcg']]], - ['glblendfuncseparate_156',['glBlendFuncSeparate',['../namespaceabcg.html#a1156c925b568620ac51f94893db587ac',1,'abcg']]], - ['glblitframebuffer_157',['glBlitFramebuffer',['../namespaceabcg.html#aee53221fba9cbf13c75d78c9533da27b',1,'abcg']]], - ['glbufferdata_158',['glBufferData',['../namespaceabcg.html#a402e5079e8489cb8df8e3a6c5fcdbebf',1,'abcg']]], - ['glbuffersubdata_159',['glBufferSubData',['../namespaceabcg.html#af7091aa59a245999d277ec71e54b687f',1,'abcg']]], - ['glcheckframebufferstatus_160',['glCheckFramebufferStatus',['../namespaceabcg.html#a14b00e8df85dc5b1930b051be0f6a13d',1,'abcg']]], - ['glclear_161',['glClear',['../namespaceabcg.html#a37cf087e190d68ae489d69c1c7fb8c1a',1,'abcg']]], - ['glclearbufferfi_162',['glClearBufferfi',['../namespaceabcg.html#afd3d4e6a15e37502f806875152c161ec',1,'abcg']]], - ['glclearbufferfv_163',['glClearBufferfv',['../namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637',1,'abcg']]], - ['glclearbufferiv_164',['glClearBufferiv',['../namespaceabcg.html#a1b9de47c64a177ed5daf99eeee3c3f05',1,'abcg']]], - ['glclearbufferuiv_165',['glClearBufferuiv',['../namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d',1,'abcg']]], - ['glclearcolor_166',['glClearColor',['../namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f',1,'abcg']]], - ['glcleardepthf_167',['glClearDepthf',['../namespaceabcg.html#ace2477348a520f6b554b8b34662c53ac',1,'abcg']]], - ['glclearstencil_168',['glClearStencil',['../namespaceabcg.html#a3a4d7f77a063949bb602ac36ecc44319',1,'abcg']]], - ['glclientwaitsync_169',['glClientWaitSync',['../namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f',1,'abcg']]], - ['glcolormask_170',['glColorMask',['../namespaceabcg.html#a41326750eb174903b1bf4119b7f33e96',1,'abcg']]], - ['glcompileshader_171',['glCompileShader',['../namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7',1,'abcg']]], - ['glcompressedteximage2d_172',['glCompressedTexImage2D',['../namespaceabcg.html#aca8b5cd79464cb9dcb6bc0c2261407f1',1,'abcg']]], - ['glcompressedteximage3d_173',['glCompressedTexImage3D',['../namespaceabcg.html#ad7bbab39db44f5da2ba62fe1de5a9dba',1,'abcg']]], - ['glcompressedtexsubimage2d_174',['glCompressedTexSubImage2D',['../namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671',1,'abcg']]], - ['glcompressedtexsubimage3d_175',['glCompressedTexSubImage3D',['../namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae',1,'abcg']]], - ['glcopybuffersubdata_176',['glCopyBufferSubData',['../namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04',1,'abcg']]], - ['glcopyteximage2d_177',['glCopyTexImage2D',['../namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb',1,'abcg']]], - ['glcopytexsubimage2d_178',['glCopyTexSubImage2D',['../namespaceabcg.html#ab7826bb1da6c947977b5644c00538540',1,'abcg']]], - ['glcopytexsubimage3d_179',['glCopyTexSubImage3D',['../namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d',1,'abcg']]], - ['glcreateprogram_180',['glCreateProgram',['../namespaceabcg.html#a2449fe3ff11796b682ca51d2611e0f8c',1,'abcg']]], - ['glcreateshader_181',['glCreateShader',['../namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e',1,'abcg']]], - ['glcullface_182',['glCullFace',['../namespaceabcg.html#a1daed0c2b70ea52f0436053095125e44',1,'abcg']]], - ['gldeletebuffers_183',['glDeleteBuffers',['../namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c',1,'abcg']]], - ['gldeleteframebuffers_184',['glDeleteFramebuffers',['../namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e',1,'abcg']]], - ['gldeleteprogram_185',['glDeleteProgram',['../namespaceabcg.html#a1c0feac412868f91511bc6cee51c0472',1,'abcg']]], - ['gldeletequeries_186',['glDeleteQueries',['../namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da',1,'abcg']]], - ['gldeleterenderbuffers_187',['glDeleteRenderbuffers',['../namespaceabcg.html#aecca79eb3f54538532577cf2a21e067f',1,'abcg']]], - ['gldeletesamplers_188',['glDeleteSamplers',['../namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2',1,'abcg']]], - ['gldeleteshader_189',['glDeleteShader',['../namespaceabcg.html#ad378a150bf0c2b569ff5b22cd435acd6',1,'abcg']]], - ['gldeletesync_190',['glDeleteSync',['../namespaceabcg.html#a2f41106aca8b0948e9fb61a623413d08',1,'abcg']]], - ['gldeletetextures_191',['glDeleteTextures',['../namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63',1,'abcg']]], - ['gldeletetransformfeedbacks_192',['glDeleteTransformFeedbacks',['../namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174',1,'abcg']]], - ['gldeletevertexarrays_193',['glDeleteVertexArrays',['../namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2',1,'abcg']]], - ['gldepthfunc_194',['glDepthFunc',['../namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9',1,'abcg']]], - ['gldepthmask_195',['glDepthMask',['../namespaceabcg.html#a2c2a12a15c7b445dcee3d8656ca6dfbc',1,'abcg']]], - ['gldepthrangef_196',['glDepthRangef',['../namespaceabcg.html#a08dbe7a21733bff43ed976be14f99e9b',1,'abcg']]], - ['gldetachshader_197',['glDetachShader',['../namespaceabcg.html#a045bd908a5989d1ed1b6a4d28cc2bab6',1,'abcg']]], - ['gldisable_198',['glDisable',['../namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b',1,'abcg']]], - ['gldisablevertexattribarray_199',['glDisableVertexAttribArray',['../namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e',1,'abcg']]], - ['gldrawarrays_200',['glDrawArrays',['../namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338',1,'abcg']]], - ['gldrawarraysinstanced_201',['glDrawArraysInstanced',['../namespaceabcg.html#a32f7f0c0ce76c25248271a64c2b8e52b',1,'abcg']]], - ['gldrawbuffers_202',['glDrawBuffers',['../namespaceabcg.html#ae03a93e0f048e849bb5e37d712d7000c',1,'abcg']]], - ['gldrawelements_203',['glDrawElements',['../namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646',1,'abcg']]], - ['gldrawelementsinstanced_204',['glDrawElementsInstanced',['../namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49',1,'abcg']]], - ['gldrawrangeelements_205',['glDrawRangeElements',['../namespaceabcg.html#aa5e970181c35e076181628df29de48e5',1,'abcg']]], - ['glenable_206',['glEnable',['../namespaceabcg.html#a5ee5802eb4646b281e426e550658124f',1,'abcg']]], - ['glenablevertexattribarray_207',['glEnableVertexAttribArray',['../namespaceabcg.html#a2b8c6c76fcc9d16e4a29551cac8f428f',1,'abcg']]], - ['glendquery_208',['glEndQuery',['../namespaceabcg.html#acebb037ad49e0f3714436346cb370a3e',1,'abcg']]], - ['glendtransformfeedback_209',['glEndTransformFeedback',['../namespaceabcg.html#a1427186fdcf12b9897523589b1ddf20f',1,'abcg']]], - ['glfencesync_210',['glFenceSync',['../namespaceabcg.html#acf7bb9039752df88aba99ed50675ceb6',1,'abcg']]], - ['glfinish_211',['glFinish',['../namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e',1,'abcg']]], - ['glflush_212',['glFlush',['../namespaceabcg.html#ae0c6f2648cab3d1cd82a7ba910776e2b',1,'abcg']]], - ['glflushmappedbufferrange_213',['glFlushMappedBufferRange',['../namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d',1,'abcg']]], - ['glframebufferrenderbuffer_214',['glFramebufferRenderbuffer',['../namespaceabcg.html#a24715a37b830d861d7cdb1f2f24bd32d',1,'abcg']]], - ['glframebuffertexture_215',['glFramebufferTexture',['../namespaceabcg.html#adb0766367e9364b01040121a4c2c79ed',1,'abcg']]], - ['glframebuffertexture2d_216',['glFramebufferTexture2D',['../namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4',1,'abcg']]], - ['glframebuffertexturelayer_217',['glFramebufferTextureLayer',['../namespaceabcg.html#a399dc5200ed4b1c5ba36bc3aaa58c508',1,'abcg']]], - ['glfrontface_218',['glFrontFace',['../namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729',1,'abcg']]], - ['glgenbuffers_219',['glGenBuffers',['../namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a',1,'abcg']]], - ['glgeneratemipmap_220',['glGenerateMipmap',['../namespaceabcg.html#acc670193ec022e761c4af8976494ed07',1,'abcg']]], - ['glgenframebuffers_221',['glGenFramebuffers',['../namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a',1,'abcg']]], - ['glgenqueries_222',['glGenQueries',['../namespaceabcg.html#a86c415c268d7669e07339991c608e60b',1,'abcg']]], - ['glgenrenderbuffers_223',['glGenRenderbuffers',['../namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c',1,'abcg']]], - ['glgensamplers_224',['glGenSamplers',['../namespaceabcg.html#ada23095347757d96190b853daddf8434',1,'abcg']]], - ['glgentextures_225',['glGenTextures',['../namespaceabcg.html#ae1015bd07641da254a331d9b3238d96f',1,'abcg']]], - ['glgentransformfeedbacks_226',['glGenTransformFeedbacks',['../namespaceabcg.html#a251e7d7579160c8fad43d5ce06ee9b06',1,'abcg']]], - ['glgenvertexarrays_227',['glGenVertexArrays',['../namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d',1,'abcg']]], - ['glgetactiveattrib_228',['glGetActiveAttrib',['../namespaceabcg.html#ae0cdaa8143c25fdc5dd90b375a362816',1,'abcg']]], - ['glgetactiveuniform_229',['glGetActiveUniform',['../namespaceabcg.html#ac5aac5887d3a23fdd9e62db27eac53db',1,'abcg']]], - ['glgetactiveuniformblockiv_230',['glGetActiveUniformBlockiv',['../namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81',1,'abcg']]], - ['glgetactiveuniformblockname_231',['glGetActiveUniformBlockName',['../namespaceabcg.html#a242378c05d9480103f5375c8a8826c28',1,'abcg']]], - ['glgetactiveuniformsiv_232',['glGetActiveUniformsiv',['../namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f',1,'abcg']]], - ['glgetattachedshaders_233',['glGetAttachedShaders',['../namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727',1,'abcg']]], - ['glgetattriblocation_234',['glGetAttribLocation',['../namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7',1,'abcg']]], - ['glgetbooleanv_235',['glGetBooleanv',['../namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8',1,'abcg']]], - ['glgetbufferparameteri64v_236',['glGetBufferParameteri64v',['../namespaceabcg.html#a6b33c9c6944be9a18490575915090e22',1,'abcg']]], - ['glgetbufferparameteriv_237',['glGetBufferParameteriv',['../namespaceabcg.html#ac96ad909a86ceba40b0a92e7b227f992',1,'abcg']]], - ['glgetbufferpointerv_238',['glGetBufferPointerv',['../namespaceabcg.html#ada9205a4af5b2d12c78c16b5176a6a82',1,'abcg']]], - ['glgetdoublev_239',['glGetDoublev',['../namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7',1,'abcg']]], - ['glgetfloatv_240',['glGetFloatv',['../namespaceabcg.html#af0c9e138d135378a3de00663c616cf46',1,'abcg']]], - ['glgetfragdatalocation_241',['glGetFragDataLocation',['../namespaceabcg.html#a1468aeed842d55a612da7a8257f5006f',1,'abcg']]], - ['glgetframebufferattachmentparameteriv_242',['glGetFramebufferAttachmentParameteriv',['../namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b',1,'abcg']]], - ['glgetinteger64i_5fv_243',['glGetInteger64i_v',['../namespaceabcg.html#ac2e13dc4a2ded3237be1ca90bad68d4e',1,'abcg']]], - ['glgetinteger64v_244',['glGetInteger64v',['../namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f',1,'abcg']]], - ['glgetintegeri_5fv_245',['glGetIntegeri_v',['../namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847',1,'abcg']]], - ['glgetintegerv_246',['glGetIntegerv',['../namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5',1,'abcg']]], - ['glgetinternalformativ_247',['glGetInternalformativ',['../namespaceabcg.html#a56430f42fc367519455b993473579b79',1,'abcg']]], - ['glgetprogrambinary_248',['glGetProgramBinary',['../namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37',1,'abcg']]], - ['glgetprograminfolog_249',['glGetProgramInfoLog',['../namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c',1,'abcg']]], - ['glgetprogramiv_250',['glGetProgramiv',['../namespaceabcg.html#afa031f5f52ad88625a88e1410478d892',1,'abcg']]], - ['glgetqueryiv_251',['glGetQueryiv',['../namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9',1,'abcg']]], - ['glgetqueryobjectuiv_252',['glGetQueryObjectuiv',['../namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972',1,'abcg']]], - ['glgetrenderbufferparameteriv_253',['glGetRenderbufferParameteriv',['../namespaceabcg.html#a3c9dd56405aa600ef77b3194ddec1c52',1,'abcg']]], - ['glgetsamplerparameterfv_254',['glGetSamplerParameterfv',['../namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5',1,'abcg']]], - ['glgetsamplerparameteriv_255',['glGetSamplerParameteriv',['../namespaceabcg.html#ae6ea1aa7744033cbe3a10ec3b646e30d',1,'abcg']]], - ['glgetshaderinfolog_256',['glGetShaderInfoLog',['../namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03',1,'abcg']]], - ['glgetshaderiv_257',['glGetShaderiv',['../namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b',1,'abcg']]], - ['glgetshaderprecisionformat_258',['glGetShaderPrecisionFormat',['../namespaceabcg.html#a0690d7a9fb1fbe27f1630b51a6ef506f',1,'abcg']]], - ['glgetshadersource_259',['glGetShaderSource',['../namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24',1,'abcg']]], - ['glgetstring_260',['glGetString',['../namespaceabcg.html#af419f0698487fc55f9fd8b7a424eb633',1,'abcg']]], - ['glgetstringi_261',['glGetStringi',['../namespaceabcg.html#ac2b042cb4fcd350f3efd9925f90bb068',1,'abcg']]], - ['glgetsynciv_262',['glGetSynciv',['../namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f',1,'abcg']]], - ['glgettexlevelparameterfv_263',['glGetTexLevelParameterfv',['../namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59',1,'abcg']]], - ['glgettexlevelparameteriv_264',['glGetTexLevelParameteriv',['../namespaceabcg.html#aee3c58bf82ea8186bfab4f2942997022',1,'abcg']]], - ['glgettexparameterfv_265',['glGetTexParameterfv',['../namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c',1,'abcg']]], - ['glgettexparameteriv_266',['glGetTexParameteriv',['../namespaceabcg.html#ac768bcd240c1d1ad80589e5a248408df',1,'abcg']]], - ['glgettransformfeedbackvarying_267',['glGetTransformFeedbackVarying',['../namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4',1,'abcg']]], - ['glgetuniformblockindex_268',['glGetUniformBlockIndex',['../namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da',1,'abcg']]], - ['glgetuniformfv_269',['glGetUniformfv',['../namespaceabcg.html#ae51c6519e4ba4b2a237c148d5606d76c',1,'abcg']]], - ['glgetuniformindices_270',['glGetUniformIndices',['../namespaceabcg.html#ace8f774eff785ea7e9f90c1c6b8e4425',1,'abcg']]], - ['glgetuniformiv_271',['glGetUniformiv',['../namespaceabcg.html#a3ed72ff0a3751e87af8369466f3a1cbf',1,'abcg']]], - ['glgetuniformlocation_272',['glGetUniformLocation',['../namespaceabcg.html#a22cb6b45a1ae2153d289a0ee3ac7729a',1,'abcg']]], - ['glgetuniformuiv_273',['glGetUniformuiv',['../namespaceabcg.html#acffb14045c39d65f3f8bead758313fbc',1,'abcg']]], - ['glgetvertexattribfv_274',['glGetVertexAttribfv',['../namespaceabcg.html#aedab4d42e7085a4bab268099b2d1346d',1,'abcg']]], - ['glgetvertexattribiiv_275',['glGetVertexAttribIiv',['../namespaceabcg.html#ad31542472e21428d05473b3ebe2489ee',1,'abcg']]], - ['glgetvertexattribiuiv_276',['glGetVertexAttribIuiv',['../namespaceabcg.html#a6a360138b05890b13f8439344e08512f',1,'abcg']]], - ['glgetvertexattribiv_277',['glGetVertexAttribiv',['../namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278',1,'abcg']]], - ['glgetvertexattribpointerv_278',['glGetVertexAttribPointerv',['../namespaceabcg.html#aca5b82d3582454e73b1a86192124d485',1,'abcg']]], - ['glhint_279',['glHint',['../namespaceabcg.html#a97c884a2a934bf40d378024d81be625e',1,'abcg']]], - ['glinvalidateframebuffer_280',['glInvalidateFramebuffer',['../namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec',1,'abcg']]], - ['glinvalidatesubframebuffer_281',['glInvalidateSubFramebuffer',['../namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818',1,'abcg']]], - ['glisbuffer_282',['glIsBuffer',['../namespaceabcg.html#afb123afaf46459222024ea041cac15c7',1,'abcg']]], - ['glisenabled_283',['glIsEnabled',['../namespaceabcg.html#a2355d26ca6b32f64dd502ba787074e95',1,'abcg']]], - ['glisframebuffer_284',['glIsFramebuffer',['../namespaceabcg.html#abde059e7926e418ee7676f612480ca2e',1,'abcg']]], - ['glisprogram_285',['glIsProgram',['../namespaceabcg.html#ad8512fcd1782c81aaa121cd7e6c561d1',1,'abcg']]], - ['glisquery_286',['glIsQuery',['../namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9',1,'abcg']]], - ['glisrenderbuffer_287',['glIsRenderbuffer',['../namespaceabcg.html#a15acb0b1b9464f294f99aa989c44dc70',1,'abcg']]], - ['glissampler_288',['glIsSampler',['../namespaceabcg.html#ad85c0ff02a8b681ecb188752dd8ce9c0',1,'abcg']]], - ['glisshader_289',['glIsShader',['../namespaceabcg.html#a36db9b553f7422ea79b751c5763d194c',1,'abcg']]], - ['glissync_290',['glIsSync',['../namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364',1,'abcg']]], - ['glistexture_291',['glIsTexture',['../namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3',1,'abcg']]], - ['glistransformfeedback_292',['glIsTransformFeedback',['../namespaceabcg.html#aed892da4fd2e2517f53ca8c902d36a31',1,'abcg']]], - ['glisvertexarray_293',['glIsVertexArray',['../namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db',1,'abcg']]], - ['gllinewidth_294',['glLineWidth',['../namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b',1,'abcg']]], - ['gllinkprogram_295',['glLinkProgram',['../namespaceabcg.html#af84c0f4d0816181cba506f1703c037c2',1,'abcg']]], - ['glm_5fforce_5fdepth_5fzero_5fto_5fone_296',['GLM_FORCE_DEPTH_ZERO_TO_ONE',['../abcgVulkan_8hpp.html#aa53e0967978ad7a8792f6961156ec968',1,'abcgVulkan.hpp']]], - ['glmapbufferrange_297',['glMapBufferRange',['../namespaceabcg.html#aaa863c0c9f439036f6d2b58e375ee105',1,'abcg']]], - ['glpausetransformfeedback_298',['glPauseTransformFeedback',['../namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d',1,'abcg']]], - ['glpixelstorei_299',['glPixelStorei',['../namespaceabcg.html#a05ece875ff476f630548c8cf7a0d952b',1,'abcg']]], - ['glpolygonoffset_300',['glPolygonOffset',['../namespaceabcg.html#afa173d8901021cb88486592fcc300a14',1,'abcg']]], - ['glprogrambinary_301',['glProgramBinary',['../namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc',1,'abcg']]], - ['glprogramparameteri_302',['glProgramParameteri',['../namespaceabcg.html#ae48fb31c3e26632acba7e1a9753ee5c9',1,'abcg']]], - ['glreadbuffer_303',['glReadBuffer',['../namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f',1,'abcg']]], - ['glreadpixels_304',['glReadPixels',['../namespaceabcg.html#ae8720c564832cd331d886e24aaf68c29',1,'abcg']]], - ['glreleaseshadercompiler_305',['glReleaseShaderCompiler',['../namespaceabcg.html#a3e97ab629b7cc5d4c7259e521ebe5fb7',1,'abcg']]], - ['glrenderbufferstorage_306',['glRenderbufferStorage',['../namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593',1,'abcg']]], - ['glrenderbufferstoragemultisample_307',['glRenderbufferStorageMultisample',['../namespaceabcg.html#aee93697e0e0b92b0b73a9c374d4afff0',1,'abcg']]], - ['glresumetransformfeedback_308',['glResumeTransformFeedback',['../namespaceabcg.html#a81e93970a280fc3782f7577db7060458',1,'abcg']]], - ['glsamplecoverage_309',['glSampleCoverage',['../namespaceabcg.html#adee87442b65fa46fe96cceb6a21d496a',1,'abcg']]], - ['glsamplerparameterf_310',['glSamplerParameterf',['../namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad',1,'abcg']]], - ['glsamplerparameterfv_311',['glSamplerParameterfv',['../namespaceabcg.html#a03ba96b4728e99b4f58cce1f3e102b49',1,'abcg']]], - ['glsamplerparameteri_312',['glSamplerParameteri',['../namespaceabcg.html#ae9971e1b8abb781440101bac0968a897',1,'abcg']]], - ['glsamplerparameteriv_313',['glSamplerParameteriv',['../namespaceabcg.html#a304af29cf7db15205236d97e1836e79a',1,'abcg']]], - ['glscissor_314',['glScissor',['../namespaceabcg.html#ae1a3e82a002194c222284c5588998cfb',1,'abcg']]], - ['glshaderbinary_315',['glShaderBinary',['../namespaceabcg.html#af1c355ed607c699a2fbe6b56454b84db',1,'abcg']]], - ['glshadersource_316',['glShaderSource',['../namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914',1,'abcg']]], - ['glsltospv_317',['GLSLtoSPV',['../abcgVulkanShader_8cpp.html#a690f9c3849ca028c431f9332c4df888a',1,'abcgVulkanShader.cpp']]], - ['glstencilfunc_318',['glStencilFunc',['../namespaceabcg.html#ad1bc3b8d63e3b65fc3a1222ce789db3a',1,'abcg']]], - ['glstencilfuncseparate_319',['glStencilFuncSeparate',['../namespaceabcg.html#a10f604e428c78fad5ca881ecae15f9df',1,'abcg']]], - ['glstencilmask_320',['glStencilMask',['../namespaceabcg.html#a1f1123ce5bc6fade14962343ad3395f0',1,'abcg']]], - ['glstencilmaskseparate_321',['glStencilMaskSeparate',['../namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c',1,'abcg']]], - ['glstencilop_322',['glStencilOp',['../namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f',1,'abcg']]], - ['glstencilopseparate_323',['glStencilOpSeparate',['../namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706',1,'abcg']]], - ['glteximage2d_324',['glTexImage2D',['../namespaceabcg.html#ae220fd2c2bd61130ace06f851609903d',1,'abcg']]], - ['glteximage2dmultisample_325',['glTexImage2DMultisample',['../namespaceabcg.html#aea5f1cc76074ee940772a749cd1b57ad',1,'abcg']]], - ['glteximage3d_326',['glTexImage3D',['../namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735',1,'abcg']]], - ['gltexparameterf_327',['glTexParameterf',['../namespaceabcg.html#a3d91ea0fc162e4a0f5f6060418b6d61c',1,'abcg']]], - ['gltexparameterfv_328',['glTexParameterfv',['../namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea',1,'abcg']]], - ['gltexparameteri_329',['glTexParameteri',['../namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b',1,'abcg']]], - ['gltexparameteriv_330',['glTexParameteriv',['../namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41',1,'abcg']]], - ['gltexstorage2d_331',['glTexStorage2D',['../namespaceabcg.html#a4573fb1a4dd47d4a692b4602a4009918',1,'abcg']]], - ['gltexstorage3d_332',['glTexStorage3D',['../namespaceabcg.html#af9d8885c892cfeadf62c7280254d57f9',1,'abcg']]], - ['gltexsubimage2d_333',['glTexSubImage2D',['../namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34',1,'abcg']]], - ['gltexsubimage3d_334',['glTexSubImage3D',['../namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a',1,'abcg']]], - ['gltransformfeedbackvaryings_335',['glTransformFeedbackVaryings',['../namespaceabcg.html#a0f8299d53f2d5e195444be565301462c',1,'abcg']]], - ['gluniform1f_336',['glUniform1f',['../namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9',1,'abcg']]], - ['gluniform1fv_337',['glUniform1fv',['../namespaceabcg.html#a0a55fd40d1c8f2dfc0fd072e5b2c5ebc',1,'abcg']]], - ['gluniform1i_338',['glUniform1i',['../namespaceabcg.html#a17c9ec119f0c1c6d101a042131774ef9',1,'abcg']]], - ['gluniform1iv_339',['glUniform1iv',['../namespaceabcg.html#a2ac0fcc475813238eec19657e6d4899d',1,'abcg']]], - ['gluniform1ui_340',['glUniform1ui',['../namespaceabcg.html#a4566f93a590c2437fab4c2ac07ea1454',1,'abcg']]], - ['gluniform1uiv_341',['glUniform1uiv',['../namespaceabcg.html#ae712e6a279573982c1c5e7c569a47add',1,'abcg']]], - ['gluniform2f_342',['glUniform2f',['../namespaceabcg.html#aeed384502019a1ea9c53c5f79387f4a6',1,'abcg']]], - ['gluniform2fv_343',['glUniform2fv',['../namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979',1,'abcg']]], - ['gluniform2i_344',['glUniform2i',['../namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938',1,'abcg']]], - ['gluniform2iv_345',['glUniform2iv',['../namespaceabcg.html#adf14dfa164b234c7fbed7b45426b2d62',1,'abcg']]], - ['gluniform2ui_346',['glUniform2ui',['../namespaceabcg.html#ac9593131eae76be863d98795053363c5',1,'abcg']]], - ['gluniform2uiv_347',['glUniform2uiv',['../namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d',1,'abcg']]], - ['gluniform3f_348',['glUniform3f',['../namespaceabcg.html#a3ac2b6654fcb536e3d89e695b84d0229',1,'abcg']]], - ['gluniform3fv_349',['glUniform3fv',['../namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188',1,'abcg']]], - ['gluniform3i_350',['glUniform3i',['../namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970',1,'abcg']]], - ['gluniform3iv_351',['glUniform3iv',['../namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348',1,'abcg']]], - ['gluniform3ui_352',['glUniform3ui',['../namespaceabcg.html#aea378f4807f17ed76e8129260b35c1a1',1,'abcg']]], - ['gluniform3uiv_353',['glUniform3uiv',['../namespaceabcg.html#a15c8e64b115ca61dc7bd460af8447497',1,'abcg']]], - ['gluniform4f_354',['glUniform4f',['../namespaceabcg.html#a26ef61adcd575428307b9b9a92dc618c',1,'abcg']]], - ['gluniform4fv_355',['glUniform4fv',['../namespaceabcg.html#a3dbe8b9316fce91031a864a1a7b91497',1,'abcg']]], - ['gluniform4i_356',['glUniform4i',['../namespaceabcg.html#a3276a3ae4b0740216d4850df60881cfe',1,'abcg']]], - ['gluniform4iv_357',['glUniform4iv',['../namespaceabcg.html#afb64d90352e53e92718dd7f10a2822a6',1,'abcg']]], - ['gluniform4ui_358',['glUniform4ui',['../namespaceabcg.html#a506182a6eb4e8158ee10567344152470',1,'abcg']]], - ['gluniform4uiv_359',['glUniform4uiv',['../namespaceabcg.html#ac21f205c4a058a639fd695c4b4bf76fc',1,'abcg']]], - ['gluniformblockbinding_360',['glUniformBlockBinding',['../namespaceabcg.html#a81f720eec72780a58bf7719461d97971',1,'abcg']]], - ['gluniformmatrix2fv_361',['glUniformMatrix2fv',['../namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88',1,'abcg']]], - ['gluniformmatrix2x3fv_362',['glUniformMatrix2x3fv',['../namespaceabcg.html#ad53649314374711d76ff0b032950e9d2',1,'abcg']]], - ['gluniformmatrix2x4fv_363',['glUniformMatrix2x4fv',['../namespaceabcg.html#ae942855746c560463aed347013e2e84f',1,'abcg']]], - ['gluniformmatrix3fv_364',['glUniformMatrix3fv',['../namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94',1,'abcg']]], - ['gluniformmatrix3x2fv_365',['glUniformMatrix3x2fv',['../namespaceabcg.html#abb0b676883c3e5c717cea345b043a372',1,'abcg']]], - ['gluniformmatrix3x4fv_366',['glUniformMatrix3x4fv',['../namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132',1,'abcg']]], - ['gluniformmatrix4fv_367',['glUniformMatrix4fv',['../namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d',1,'abcg']]], - ['gluniformmatrix4x2fv_368',['glUniformMatrix4x2fv',['../namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6',1,'abcg']]], - ['gluniformmatrix4x3fv_369',['glUniformMatrix4x3fv',['../namespaceabcg.html#a2a4e0b3c0401e2a85fe389191c5d768f',1,'abcg']]], - ['glunmapbuffer_370',['glUnmapBuffer',['../namespaceabcg.html#a1f475772cbe67c5b2370ef179c99b614',1,'abcg']]], - ['gluseprogram_371',['glUseProgram',['../namespaceabcg.html#ac050825096a0ef3f71c0dd6452f9dfc0',1,'abcg']]], - ['glvalidateprogram_372',['glValidateProgram',['../namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252',1,'abcg']]], - ['glvertexattrib1f_373',['glVertexAttrib1f',['../namespaceabcg.html#af725d24a5b6b6483d1cd3420dc6ec011',1,'abcg']]], - ['glvertexattrib1fv_374',['glVertexAttrib1fv',['../namespaceabcg.html#aeff647ce94259b8e0fbe731595cf1931',1,'abcg']]], - ['glvertexattrib2f_375',['glVertexAttrib2f',['../namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7',1,'abcg']]], - ['glvertexattrib2fv_376',['glVertexAttrib2fv',['../namespaceabcg.html#a3be34bb76d1f704893e5ae334488f372',1,'abcg']]], - ['glvertexattrib3f_377',['glVertexAttrib3f',['../namespaceabcg.html#afa1466dac879205506b78b021aafff27',1,'abcg']]], - ['glvertexattrib3fv_378',['glVertexAttrib3fv',['../namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7',1,'abcg']]], - ['glvertexattrib4f_379',['glVertexAttrib4f',['../namespaceabcg.html#a16e4ed4c33c7e9abd8eb412c422c7f8a',1,'abcg']]], - ['glvertexattrib4fv_380',['glVertexAttrib4fv',['../namespaceabcg.html#af15b80a8f2eb74ae9de6f26996d3d51d',1,'abcg']]], - ['glvertexattribdivisor_381',['glVertexAttribDivisor',['../namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5',1,'abcg']]], - ['glvertexattribi4i_382',['glVertexAttribI4i',['../namespaceabcg.html#a298da5e81cd558e36acc8517f183330a',1,'abcg']]], - ['glvertexattribi4iv_383',['glVertexAttribI4iv',['../namespaceabcg.html#a2f957d37e18d6883d73b0c4d81c7925f',1,'abcg']]], - ['glvertexattribi4ui_384',['glVertexAttribI4ui',['../namespaceabcg.html#a3f20fa49edff456e65bcbbfc40befa92',1,'abcg']]], - ['glvertexattribi4uiv_385',['glVertexAttribI4uiv',['../namespaceabcg.html#ac1ce439bbbfbaca867e112c7c75fdf2e',1,'abcg']]], - ['glvertexattribipointer_386',['glVertexAttribIPointer',['../namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022',1,'abcg']]], - ['glvertexattribpointer_387',['glVertexAttribPointer',['../namespaceabcg.html#af56cc0ad4060e65221188cfa41a59168',1,'abcg']]], - ['glviewport_388',['glViewport',['../namespaceabcg.html#a4488c395e82a5408c4321a611f039c78',1,'abcg']]], - ['glwaitsync_389',['glWaitSync',['../namespaceabcg.html#a14893e8222fcaac3d07be752b3c72c04',1,'abcg']]], - ['graphics_390',['graphics',['../structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d',1,'abcg::VulkanCommandPools::graphics()'],['../structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d',1,'abcg::VulkanQueues::graphics()'],['../structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034',1,'abcg::VulkanQueuesFamilies::graphics()']]] + ['data_0',['data',['../structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f',1,'abcg::VulkanBufferCreateInfo']]], + ['depthbuffersize_1',['depthbuffersize',['../structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a',1,'abcg::OpenGLSettings::depthBufferSize'],['../structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b',1,'abcg::VulkanSettings::depthBufferSize']]], + ['depthstencilstate_2',['depthStencilState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5',1,'abcg::VulkanPipelineCreateInfo']]], + ['destroy_3',['destroy',['../classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae',1,'abcg::VulkanBuffer::destroy()'],['../classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4',1,'abcg::VulkanDevice::destroy()'],['../classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379',1,'abcg::VulkanImage::destroy()'],['../classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168',1,'abcg::VulkanInstance::destroy()'],['../classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281',1,'abcg::VulkanPhysicalDevice::destroy()'],['../classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac',1,'abcg::VulkanPipeline::destroy()'],['../classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1',1,'abcg::VulkanShader::destroy()'],['../classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa',1,'abcg::VulkanSwapchain::destroy()'],['../classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f',1,'abcg::Window::destroy()']]], + ['docker_20setup_4',['Docker setup',['../index.html#autotoc_md7',1,'']]], + ['doublebuffering_5',['doubleBuffering',['../structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338',1,'abcg::OpenGLSettings']]], + ['dynamicstates_6',['dynamicStates',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/all_7.html b/abcg/doc/html/search/all_7.html deleted file mode 100644 index 8ddbf6c8e..000000000 --- a/abcg/doc/html/search/all_7.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_7.js b/abcg/doc/html/search/all_7.js index 3b4fd80b4..5ca9576e4 100644 --- a/abcg/doc/html/search/all_7.js +++ b/abcg/doc/html/search/all_7.js @@ -1,7 +1,6 @@ var searchData= [ - ['handleevent_391',['handleEvent',['../classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633',1,'abcg::Window']]], - ['hashcombine_392',['hashCombine',['../namespaceabcg.html#aed04a19d18acb506c896c2f220d495c1',1,'abcg']]], - ['hashcombineseed_393',['hashCombineSeed',['../namespaceabcg.html#a087b770c423ea0ec8a1e54e655dbb0a0',1,'abcg']]], - ['height_394',['height',['../structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d',1,'abcg::WindowSettings']]] + ['elapsed_0',['elapsed',['../classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e',1,'abcg::Timer']]], + ['es_1',['ES',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea04c19fa1e772ab66f0aad2efe61f25cd',1,'abcg']]], + ['exception_2',['exception',['../classabcg_1_1Exception.html',1,'abcg::Exception'],['../classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71',1,'abcg::Exception::Exception()']]] ]; diff --git a/abcg/doc/html/search/all_8.html b/abcg/doc/html/search/all_8.html deleted file mode 100644 index 83c55ae22..000000000 --- a/abcg/doc/html/search/all_8.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_8.js b/abcg/doc/html/search/all_8.js index 4c140bf61..090039398 100644 --- a/abcg/doc/html/search/all_8.js +++ b/abcg/doc/html/search/all_8.js @@ -1,7 +1,13 @@ var searchData= [ - ['index_395',['index',['../structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1',1,'abcg::VulkanFrame']]], - ['info_396',['info',['../structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2',1,'abcg::VulkanImageCreateInfo']]], - ['inputassemblystate_397',['inputAssemblyState',['../structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2',1,'abcg::VulkanPipelineCreateInfo']]], - ['intersection_398',['Intersection',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24',1,'abcg']]] + ['features_0',['features',['../index.html#autotoc_md1',1,'Main features'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md14',1,'New features']]], + ['fence_1',['fence',['../structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3',1,'abcg::VulkanFrame']]], + ['findmemorytype_2',['findMemoryType',['../classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864',1,'abcg::VulkanPhysicalDevice']]], + ['fixes_3',['Bug Fixes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md18',1,'']]], + ['fliphorizontally_4',['flipHorizontally',['../namespaceabcg.html#a070a6d04f8ddd3f8ffc85556822ad9b9',1,'abcg']]], + ['flipupsidedown_5',['flipUpsideDown',['../structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad',1,'abcg::OpenGLTextureCreateInfo']]], + ['flipvertically_6',['flipVertically',['../namespaceabcg.html#afbf3c358b10f7ef9aef38acb758e12ca',1,'abcg']]], + ['fragment_7',['Fragment',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a',1,'abcg']]], + ['framebuffermain_8',['framebufferMain',['../structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820',1,'abcg::VulkanFrame']]], + ['fullscreenelementid_9',['fullscreenElementID',['../structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a',1,'abcg::WindowSettings']]] ]; diff --git a/abcg/doc/html/search/all_9.html b/abcg/doc/html/search/all_9.html deleted file mode 100644 index 1e263c134..000000000 --- a/abcg/doc/html/search/all_9.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_9.js b/abcg/doc/html/search/all_9.js index 28a463b83..a2eb60d34 100644 --- a/abcg/doc/html/search/all_9.js +++ b/abcg/doc/html/search/all_9.js @@ -1,6 +1,293 @@ var searchData= [ - ['loaddata_399',['loadData',['../classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b',1,'abcg::VulkanBuffer']]], - ['loadopenglcubemap_400',['loadOpenGLCubemap',['../namespaceabcg.html#a39af18b7fd13bbdcd404b344ca29014e',1,'abcg']]], - ['loadopengltexture_401',['loadOpenGLTexture',['../namespaceabcg.html#ae4a5204a112c5bfabcab65d66f49aa8d',1,'abcg']]] + ['generatemipmaps_0',['generatemipmaps',['../structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563',1,'abcg::OpenGLCubemapCreateInfo::generateMipmaps'],['../structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f',1,'abcg::OpenGLTextureCreateInfo::generateMipmaps']]], + ['geometry_1',['Geometry',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273',1,'abcg']]], + ['getassetspath_2',['getAssetsPath',['../classabcg_1_1Application.html#a0ba09deb85be01372abf095ebccfd90a',1,'abcg::Application']]], + ['getbasepath_3',['getBasePath',['../classabcg_1_1Application.html#a28b5d11e55d9aaef73b329503fe7725d',1,'abcg::Application']]], + ['getcommandpools_4',['getCommandPools',['../classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8',1,'abcg::VulkanDevice']]], + ['getcurrentframe_5',['getCurrentFrame',['../classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217',1,'abcg::VulkanSwapchain']]], + ['getdeltatime_6',['getDeltaTime',['../classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2',1,'abcg::Window']]], + ['getdepthimage_7',['getDepthImage',['../classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404',1,'abcg::VulkanSwapchain']]], + ['getdescriptorimageinfo_8',['getDescriptorImageInfo',['../classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b',1,'abcg::VulkanImage']]], + ['getdevice_9',['getdevice',['../classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a',1,'abcg::VulkanSwapchain::getDevice()'],['../classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f',1,'abcg::VulkanWindow::getDevice()']]], + ['getdevicememory_10',['getdevicememory',['../classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8',1,'abcg::VulkanBuffer::getDeviceMemory()'],['../classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca',1,'abcg::VulkanImage::getDeviceMemory()']]], + ['getelapsedtime_11',['getElapsedTime',['../classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe',1,'abcg::Window']]], + ['getextent_12',['getExtent',['../classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d',1,'abcg::VulkanSwapchain']]], + ['getfirstsupportedformat_13',['getFirstSupportedFormat',['../classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32',1,'abcg::VulkanPhysicalDevice']]], + ['getframes_14',['getFrames',['../classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e',1,'abcg::VulkanSwapchain']]], + ['getinstance_15',['getInstance',['../classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209',1,'abcg::VulkanPhysicalDevice']]], + ['getlayout_16',['getLayout',['../classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1',1,'abcg::VulkanPipeline']]], + ['getmainrenderpass_17',['getMainRenderPass',['../classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3',1,'abcg::VulkanSwapchain']]], + ['getmiplevels_18',['getMipLevels',['../classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5',1,'abcg::VulkanImage']]], + ['getmodule_19',['getModule',['../classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d',1,'abcg::VulkanShader']]], + ['getopenglsettings_20',['getOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e',1,'abcg::OpenGLWindow']]], + ['getphysicaldevice_21',['getphysicaldevice',['../classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41',1,'abcg::VulkanDevice::getPhysicalDevice()'],['../classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e',1,'abcg::VulkanWindow::getPhysicalDevice()']]], + ['getqueues_22',['getQueues',['../classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e',1,'abcg::VulkanDevice']]], + ['getqueuesfamilies_23',['getQueuesFamilies',['../classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6',1,'abcg::VulkanPhysicalDevice']]], + ['getrotation_24',['getRotation',['../classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264',1,'abcg::TrackBall']]], + ['getsamplecount_25',['getSampleCount',['../classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4',1,'abcg::VulkanPhysicalDevice']]], + ['getsdlwindow_26',['getSDLWindow',['../classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c',1,'abcg::Window']]], + ['getsdlwindowid_27',['getSDLWindowID',['../classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf',1,'abcg::Window']]], + ['getstage_28',['getStage',['../classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7',1,'abcg::VulkanShader']]], + ['getsurfacekhr_29',['getSurfaceKHR',['../classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4',1,'abcg::VulkanPhysicalDevice']]], + ['getswapchain_30',['getSwapchain',['../classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a',1,'abcg::VulkanWindow']]], + ['getuirenderpass_31',['getUIRenderPass',['../classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580',1,'abcg::VulkanSwapchain']]], + ['getview_32',['getView',['../classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141',1,'abcg::VulkanImage']]], + ['getvulkansettings_33',['getVulkanSettings',['../classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5',1,'abcg::VulkanWindow']]], + ['getwindowsettings_34',['getWindowSettings',['../classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679',1,'abcg::Window']]], + ['getwindowsize_35',['getWindowSize',['../classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c',1,'abcg::Window']]], + ['glactivetexture_36',['glActiveTexture',['../namespaceabcg.html#abebf61480d8b46ad61238624521c440c',1,'abcg']]], + ['glattachshader_37',['glAttachShader',['../namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54',1,'abcg']]], + ['glbeginquery_38',['glBeginQuery',['../namespaceabcg.html#a43ea888d5366cd13f8559ae5c45e503e',1,'abcg']]], + ['glbegintransformfeedback_39',['glBeginTransformFeedback',['../namespaceabcg.html#a4284264dbf0f5c318686f11bce8183cf',1,'abcg']]], + ['glbindattriblocation_40',['glBindAttribLocation',['../namespaceabcg.html#ae5d99843e0bc8a0c59503a2530d56d48',1,'abcg']]], + ['glbindbuffer_41',['glBindBuffer',['../namespaceabcg.html#a3cd63c5a736b0e401ad6e4ab6ea1ec41',1,'abcg']]], + ['glbindbufferbase_42',['glBindBufferBase',['../namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad',1,'abcg']]], + ['glbindbufferrange_43',['glBindBufferRange',['../namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce',1,'abcg']]], + ['glbindfragdatalocation_44',['glBindFragDataLocation',['../namespaceabcg.html#a3f007c8f6d4d4ed049b66e03328d5b30',1,'abcg']]], + ['glbindframebuffer_45',['glBindFramebuffer',['../namespaceabcg.html#aaef0756c5e371e4b80f652586438b594',1,'abcg']]], + ['glbindrenderbuffer_46',['glBindRenderbuffer',['../namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e',1,'abcg']]], + ['glbindsampler_47',['glBindSampler',['../namespaceabcg.html#afb3c84a308e303b503c6f0cdefd5f426',1,'abcg']]], + ['glbindtexture_48',['glBindTexture',['../namespaceabcg.html#adb43c7b544c334de5da3f6c2c30570ae',1,'abcg']]], + ['glbindtransformfeedback_49',['glBindTransformFeedback',['../namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9',1,'abcg']]], + ['glbindvertexarray_50',['glBindVertexArray',['../namespaceabcg.html#afe4c4f9e797dcd01910528c13ff471d4',1,'abcg']]], + ['glblendcolor_51',['glBlendColor',['../namespaceabcg.html#af87c9f438750ec5baa88caa3e204469c',1,'abcg']]], + ['glblendequation_52',['glBlendEquation',['../namespaceabcg.html#afa82d1d244c12d3f884e674b79a04f3e',1,'abcg']]], + ['glblendequationseparate_53',['glBlendEquationSeparate',['../namespaceabcg.html#a2e813667e01f4ea1e3a4ca5a16d4847e',1,'abcg']]], + ['glblendfunc_54',['glBlendFunc',['../namespaceabcg.html#a620308c51e62a88d78f44312b8931947',1,'abcg']]], + ['glblendfuncseparate_55',['glBlendFuncSeparate',['../namespaceabcg.html#a1156c925b568620ac51f94893db587ac',1,'abcg']]], + ['glblitframebuffer_56',['glBlitFramebuffer',['../namespaceabcg.html#aee53221fba9cbf13c75d78c9533da27b',1,'abcg']]], + ['glbufferdata_57',['glBufferData',['../namespaceabcg.html#a402e5079e8489cb8df8e3a6c5fcdbebf',1,'abcg']]], + ['glbuffersubdata_58',['glBufferSubData',['../namespaceabcg.html#af7091aa59a245999d277ec71e54b687f',1,'abcg']]], + ['glcheckframebufferstatus_59',['glCheckFramebufferStatus',['../namespaceabcg.html#a14b00e8df85dc5b1930b051be0f6a13d',1,'abcg']]], + ['glclear_60',['glClear',['../namespaceabcg.html#a37cf087e190d68ae489d69c1c7fb8c1a',1,'abcg']]], + ['glclearbufferfi_61',['glClearBufferfi',['../namespaceabcg.html#afd3d4e6a15e37502f806875152c161ec',1,'abcg']]], + ['glclearbufferfv_62',['glClearBufferfv',['../namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637',1,'abcg']]], + ['glclearbufferiv_63',['glClearBufferiv',['../namespaceabcg.html#a1b9de47c64a177ed5daf99eeee3c3f05',1,'abcg']]], + ['glclearbufferuiv_64',['glClearBufferuiv',['../namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d',1,'abcg']]], + ['glclearcolor_65',['glClearColor',['../namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f',1,'abcg']]], + ['glcleardepthf_66',['glClearDepthf',['../namespaceabcg.html#ace2477348a520f6b554b8b34662c53ac',1,'abcg']]], + ['glclearstencil_67',['glClearStencil',['../namespaceabcg.html#a3a4d7f77a063949bb602ac36ecc44319',1,'abcg']]], + ['glclientwaitsync_68',['glClientWaitSync',['../namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f',1,'abcg']]], + ['glcolormask_69',['glColorMask',['../namespaceabcg.html#a41326750eb174903b1bf4119b7f33e96',1,'abcg']]], + ['glcompileshader_70',['glCompileShader',['../namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7',1,'abcg']]], + ['glcompressedteximage2d_71',['glCompressedTexImage2D',['../namespaceabcg.html#aca8b5cd79464cb9dcb6bc0c2261407f1',1,'abcg']]], + ['glcompressedteximage3d_72',['glCompressedTexImage3D',['../namespaceabcg.html#ad7bbab39db44f5da2ba62fe1de5a9dba',1,'abcg']]], + ['glcompressedtexsubimage2d_73',['glCompressedTexSubImage2D',['../namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671',1,'abcg']]], + ['glcompressedtexsubimage3d_74',['glCompressedTexSubImage3D',['../namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae',1,'abcg']]], + ['glcopybuffersubdata_75',['glCopyBufferSubData',['../namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04',1,'abcg']]], + ['glcopyteximage2d_76',['glCopyTexImage2D',['../namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb',1,'abcg']]], + ['glcopytexsubimage2d_77',['glCopyTexSubImage2D',['../namespaceabcg.html#ab7826bb1da6c947977b5644c00538540',1,'abcg']]], + ['glcopytexsubimage3d_78',['glCopyTexSubImage3D',['../namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d',1,'abcg']]], + ['glcreateprogram_79',['glCreateProgram',['../namespaceabcg.html#a2449fe3ff11796b682ca51d2611e0f8c',1,'abcg']]], + ['glcreateshader_80',['glCreateShader',['../namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e',1,'abcg']]], + ['glcullface_81',['glCullFace',['../namespaceabcg.html#a1daed0c2b70ea52f0436053095125e44',1,'abcg']]], + ['gldeletebuffers_82',['glDeleteBuffers',['../namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c',1,'abcg']]], + ['gldeleteframebuffers_83',['glDeleteFramebuffers',['../namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e',1,'abcg']]], + ['gldeleteprogram_84',['glDeleteProgram',['../namespaceabcg.html#a1c0feac412868f91511bc6cee51c0472',1,'abcg']]], + ['gldeletequeries_85',['glDeleteQueries',['../namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da',1,'abcg']]], + ['gldeleterenderbuffers_86',['glDeleteRenderbuffers',['../namespaceabcg.html#aecca79eb3f54538532577cf2a21e067f',1,'abcg']]], + ['gldeletesamplers_87',['glDeleteSamplers',['../namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2',1,'abcg']]], + ['gldeleteshader_88',['glDeleteShader',['../namespaceabcg.html#ad378a150bf0c2b569ff5b22cd435acd6',1,'abcg']]], + ['gldeletesync_89',['glDeleteSync',['../namespaceabcg.html#a2f41106aca8b0948e9fb61a623413d08',1,'abcg']]], + ['gldeletetextures_90',['glDeleteTextures',['../namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63',1,'abcg']]], + ['gldeletetransformfeedbacks_91',['glDeleteTransformFeedbacks',['../namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174',1,'abcg']]], + ['gldeletevertexarrays_92',['glDeleteVertexArrays',['../namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2',1,'abcg']]], + ['gldepthfunc_93',['glDepthFunc',['../namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9',1,'abcg']]], + ['gldepthmask_94',['glDepthMask',['../namespaceabcg.html#a2c2a12a15c7b445dcee3d8656ca6dfbc',1,'abcg']]], + ['gldepthrangef_95',['glDepthRangef',['../namespaceabcg.html#a08dbe7a21733bff43ed976be14f99e9b',1,'abcg']]], + ['gldetachshader_96',['glDetachShader',['../namespaceabcg.html#a045bd908a5989d1ed1b6a4d28cc2bab6',1,'abcg']]], + ['gldisable_97',['glDisable',['../namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b',1,'abcg']]], + ['gldisablevertexattribarray_98',['glDisableVertexAttribArray',['../namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e',1,'abcg']]], + ['gldrawarrays_99',['glDrawArrays',['../namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338',1,'abcg']]], + ['gldrawarraysinstanced_100',['glDrawArraysInstanced',['../namespaceabcg.html#a32f7f0c0ce76c25248271a64c2b8e52b',1,'abcg']]], + ['gldrawbuffers_101',['glDrawBuffers',['../namespaceabcg.html#ae03a93e0f048e849bb5e37d712d7000c',1,'abcg']]], + ['gldrawelements_102',['glDrawElements',['../namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646',1,'abcg']]], + ['gldrawelementsinstanced_103',['glDrawElementsInstanced',['../namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49',1,'abcg']]], + ['gldrawrangeelements_104',['glDrawRangeElements',['../namespaceabcg.html#aa5e970181c35e076181628df29de48e5',1,'abcg']]], + ['glenable_105',['glEnable',['../namespaceabcg.html#a5ee5802eb4646b281e426e550658124f',1,'abcg']]], + ['glenablevertexattribarray_106',['glEnableVertexAttribArray',['../namespaceabcg.html#a2b8c6c76fcc9d16e4a29551cac8f428f',1,'abcg']]], + ['glendquery_107',['glEndQuery',['../namespaceabcg.html#acebb037ad49e0f3714436346cb370a3e',1,'abcg']]], + ['glendtransformfeedback_108',['glEndTransformFeedback',['../namespaceabcg.html#a1427186fdcf12b9897523589b1ddf20f',1,'abcg']]], + ['glfencesync_109',['glFenceSync',['../namespaceabcg.html#acf7bb9039752df88aba99ed50675ceb6',1,'abcg']]], + ['glfinish_110',['glFinish',['../namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e',1,'abcg']]], + ['glflush_111',['glFlush',['../namespaceabcg.html#ae0c6f2648cab3d1cd82a7ba910776e2b',1,'abcg']]], + ['glflushmappedbufferrange_112',['glFlushMappedBufferRange',['../namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d',1,'abcg']]], + ['glframebufferrenderbuffer_113',['glFramebufferRenderbuffer',['../namespaceabcg.html#a24715a37b830d861d7cdb1f2f24bd32d',1,'abcg']]], + ['glframebuffertexture_114',['glFramebufferTexture',['../namespaceabcg.html#adb0766367e9364b01040121a4c2c79ed',1,'abcg']]], + ['glframebuffertexture2d_115',['glFramebufferTexture2D',['../namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4',1,'abcg']]], + ['glframebuffertexturelayer_116',['glFramebufferTextureLayer',['../namespaceabcg.html#a399dc5200ed4b1c5ba36bc3aaa58c508',1,'abcg']]], + ['glfrontface_117',['glFrontFace',['../namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729',1,'abcg']]], + ['glgenbuffers_118',['glGenBuffers',['../namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a',1,'abcg']]], + ['glgeneratemipmap_119',['glGenerateMipmap',['../namespaceabcg.html#acc670193ec022e761c4af8976494ed07',1,'abcg']]], + ['glgenframebuffers_120',['glGenFramebuffers',['../namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a',1,'abcg']]], + ['glgenqueries_121',['glGenQueries',['../namespaceabcg.html#a86c415c268d7669e07339991c608e60b',1,'abcg']]], + ['glgenrenderbuffers_122',['glGenRenderbuffers',['../namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c',1,'abcg']]], + ['glgensamplers_123',['glGenSamplers',['../namespaceabcg.html#ada23095347757d96190b853daddf8434',1,'abcg']]], + ['glgentextures_124',['glGenTextures',['../namespaceabcg.html#ae1015bd07641da254a331d9b3238d96f',1,'abcg']]], + ['glgentransformfeedbacks_125',['glGenTransformFeedbacks',['../namespaceabcg.html#a251e7d7579160c8fad43d5ce06ee9b06',1,'abcg']]], + ['glgenvertexarrays_126',['glGenVertexArrays',['../namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d',1,'abcg']]], + ['glgetactiveattrib_127',['glGetActiveAttrib',['../namespaceabcg.html#ae0cdaa8143c25fdc5dd90b375a362816',1,'abcg']]], + ['glgetactiveuniform_128',['glGetActiveUniform',['../namespaceabcg.html#ac5aac5887d3a23fdd9e62db27eac53db',1,'abcg']]], + ['glgetactiveuniformblockiv_129',['glGetActiveUniformBlockiv',['../namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81',1,'abcg']]], + ['glgetactiveuniformblockname_130',['glGetActiveUniformBlockName',['../namespaceabcg.html#a242378c05d9480103f5375c8a8826c28',1,'abcg']]], + ['glgetactiveuniformsiv_131',['glGetActiveUniformsiv',['../namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f',1,'abcg']]], + ['glgetattachedshaders_132',['glGetAttachedShaders',['../namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727',1,'abcg']]], + ['glgetattriblocation_133',['glGetAttribLocation',['../namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7',1,'abcg']]], + ['glgetbooleanv_134',['glGetBooleanv',['../namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8',1,'abcg']]], + ['glgetbufferparameteri64v_135',['glGetBufferParameteri64v',['../namespaceabcg.html#a6b33c9c6944be9a18490575915090e22',1,'abcg']]], + ['glgetbufferparameteriv_136',['glGetBufferParameteriv',['../namespaceabcg.html#ac96ad909a86ceba40b0a92e7b227f992',1,'abcg']]], + ['glgetbufferpointerv_137',['glGetBufferPointerv',['../namespaceabcg.html#ada9205a4af5b2d12c78c16b5176a6a82',1,'abcg']]], + ['glgetdoublev_138',['glGetDoublev',['../namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7',1,'abcg']]], + ['glgetfloatv_139',['glGetFloatv',['../namespaceabcg.html#af0c9e138d135378a3de00663c616cf46',1,'abcg']]], + ['glgetfragdatalocation_140',['glGetFragDataLocation',['../namespaceabcg.html#a1468aeed842d55a612da7a8257f5006f',1,'abcg']]], + ['glgetframebufferattachmentparameteriv_141',['glGetFramebufferAttachmentParameteriv',['../namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b',1,'abcg']]], + ['glgetinteger64i_5fv_142',['glGetInteger64i_v',['../namespaceabcg.html#ac2e13dc4a2ded3237be1ca90bad68d4e',1,'abcg']]], + ['glgetinteger64v_143',['glGetInteger64v',['../namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f',1,'abcg']]], + ['glgetintegeri_5fv_144',['glGetIntegeri_v',['../namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847',1,'abcg']]], + ['glgetintegerv_145',['glGetIntegerv',['../namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5',1,'abcg']]], + ['glgetinternalformativ_146',['glGetInternalformativ',['../namespaceabcg.html#a56430f42fc367519455b993473579b79',1,'abcg']]], + ['glgetprogrambinary_147',['glGetProgramBinary',['../namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37',1,'abcg']]], + ['glgetprograminfolog_148',['glGetProgramInfoLog',['../namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c',1,'abcg']]], + ['glgetprogramiv_149',['glGetProgramiv',['../namespaceabcg.html#afa031f5f52ad88625a88e1410478d892',1,'abcg']]], + ['glgetqueryiv_150',['glGetQueryiv',['../namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9',1,'abcg']]], + ['glgetqueryobjectuiv_151',['glGetQueryObjectuiv',['../namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972',1,'abcg']]], + ['glgetrenderbufferparameteriv_152',['glGetRenderbufferParameteriv',['../namespaceabcg.html#a3c9dd56405aa600ef77b3194ddec1c52',1,'abcg']]], + ['glgetsamplerparameterfv_153',['glGetSamplerParameterfv',['../namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5',1,'abcg']]], + ['glgetsamplerparameteriv_154',['glGetSamplerParameteriv',['../namespaceabcg.html#ae6ea1aa7744033cbe3a10ec3b646e30d',1,'abcg']]], + ['glgetshaderinfolog_155',['glGetShaderInfoLog',['../namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03',1,'abcg']]], + ['glgetshaderiv_156',['glGetShaderiv',['../namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b',1,'abcg']]], + ['glgetshaderprecisionformat_157',['glGetShaderPrecisionFormat',['../namespaceabcg.html#a0690d7a9fb1fbe27f1630b51a6ef506f',1,'abcg']]], + ['glgetshadersource_158',['glGetShaderSource',['../namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24',1,'abcg']]], + ['glgetstring_159',['glGetString',['../namespaceabcg.html#a7813473dd0b2c5d0ac275c2a35c03cab',1,'abcg']]], + ['glgetstringi_160',['glGetStringi',['../namespaceabcg.html#a606ec56e07694a280ac843d6ead4f1dc',1,'abcg']]], + ['glgetsynciv_161',['glGetSynciv',['../namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f',1,'abcg']]], + ['glgettexlevelparameterfv_162',['glGetTexLevelParameterfv',['../namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59',1,'abcg']]], + ['glgettexlevelparameteriv_163',['glGetTexLevelParameteriv',['../namespaceabcg.html#aee3c58bf82ea8186bfab4f2942997022',1,'abcg']]], + ['glgettexparameterfv_164',['glGetTexParameterfv',['../namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c',1,'abcg']]], + ['glgettexparameteriv_165',['glGetTexParameteriv',['../namespaceabcg.html#ac768bcd240c1d1ad80589e5a248408df',1,'abcg']]], + ['glgettransformfeedbackvarying_166',['glGetTransformFeedbackVarying',['../namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4',1,'abcg']]], + ['glgetuniformblockindex_167',['glGetUniformBlockIndex',['../namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da',1,'abcg']]], + ['glgetuniformfv_168',['glGetUniformfv',['../namespaceabcg.html#ae51c6519e4ba4b2a237c148d5606d76c',1,'abcg']]], + ['glgetuniformindices_169',['glGetUniformIndices',['../namespaceabcg.html#ace8f774eff785ea7e9f90c1c6b8e4425',1,'abcg']]], + ['glgetuniformiv_170',['glGetUniformiv',['../namespaceabcg.html#a3ed72ff0a3751e87af8369466f3a1cbf',1,'abcg']]], + ['glgetuniformlocation_171',['glGetUniformLocation',['../namespaceabcg.html#a22cb6b45a1ae2153d289a0ee3ac7729a',1,'abcg']]], + ['glgetuniformuiv_172',['glGetUniformuiv',['../namespaceabcg.html#acffb14045c39d65f3f8bead758313fbc',1,'abcg']]], + ['glgetvertexattribfv_173',['glGetVertexAttribfv',['../namespaceabcg.html#aedab4d42e7085a4bab268099b2d1346d',1,'abcg']]], + ['glgetvertexattribiiv_174',['glGetVertexAttribIiv',['../namespaceabcg.html#ad31542472e21428d05473b3ebe2489ee',1,'abcg']]], + ['glgetvertexattribiuiv_175',['glGetVertexAttribIuiv',['../namespaceabcg.html#a6a360138b05890b13f8439344e08512f',1,'abcg']]], + ['glgetvertexattribiv_176',['glGetVertexAttribiv',['../namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278',1,'abcg']]], + ['glgetvertexattribpointerv_177',['glGetVertexAttribPointerv',['../namespaceabcg.html#aca5b82d3582454e73b1a86192124d485',1,'abcg']]], + ['glhint_178',['glHint',['../namespaceabcg.html#a97c884a2a934bf40d378024d81be625e',1,'abcg']]], + ['glinvalidateframebuffer_179',['glInvalidateFramebuffer',['../namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec',1,'abcg']]], + ['glinvalidatesubframebuffer_180',['glInvalidateSubFramebuffer',['../namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818',1,'abcg']]], + ['glisbuffer_181',['glIsBuffer',['../namespaceabcg.html#afb123afaf46459222024ea041cac15c7',1,'abcg']]], + ['glisenabled_182',['glIsEnabled',['../namespaceabcg.html#a2355d26ca6b32f64dd502ba787074e95',1,'abcg']]], + ['glisframebuffer_183',['glIsFramebuffer',['../namespaceabcg.html#abde059e7926e418ee7676f612480ca2e',1,'abcg']]], + ['glisprogram_184',['glIsProgram',['../namespaceabcg.html#ad8512fcd1782c81aaa121cd7e6c561d1',1,'abcg']]], + ['glisquery_185',['glIsQuery',['../namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9',1,'abcg']]], + ['glisrenderbuffer_186',['glIsRenderbuffer',['../namespaceabcg.html#a15acb0b1b9464f294f99aa989c44dc70',1,'abcg']]], + ['glissampler_187',['glIsSampler',['../namespaceabcg.html#ad85c0ff02a8b681ecb188752dd8ce9c0',1,'abcg']]], + ['glisshader_188',['glIsShader',['../namespaceabcg.html#a36db9b553f7422ea79b751c5763d194c',1,'abcg']]], + ['glissync_189',['glIsSync',['../namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364',1,'abcg']]], + ['glistexture_190',['glIsTexture',['../namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3',1,'abcg']]], + ['glistransformfeedback_191',['glIsTransformFeedback',['../namespaceabcg.html#aed892da4fd2e2517f53ca8c902d36a31',1,'abcg']]], + ['glisvertexarray_192',['glIsVertexArray',['../namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db',1,'abcg']]], + ['gllinewidth_193',['glLineWidth',['../namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b',1,'abcg']]], + ['gllinkprogram_194',['glLinkProgram',['../namespaceabcg.html#af84c0f4d0816181cba506f1703c037c2',1,'abcg']]], + ['glm_5fforce_5fdepth_5fzero_5fto_5fone_195',['GLM_FORCE_DEPTH_ZERO_TO_ONE',['../abcgVulkan_8hpp.html#aa53e0967978ad7a8792f6961156ec968',1,'abcgVulkan.hpp']]], + ['glmapbufferrange_196',['glMapBufferRange',['../namespaceabcg.html#a180e56ad70b052b7d8ef64a03559afcc',1,'abcg']]], + ['glpausetransformfeedback_197',['glPauseTransformFeedback',['../namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d',1,'abcg']]], + ['glpixelstorei_198',['glPixelStorei',['../namespaceabcg.html#a05ece875ff476f630548c8cf7a0d952b',1,'abcg']]], + ['glpolygonoffset_199',['glPolygonOffset',['../namespaceabcg.html#afa173d8901021cb88486592fcc300a14',1,'abcg']]], + ['glprogrambinary_200',['glProgramBinary',['../namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc',1,'abcg']]], + ['glprogramparameteri_201',['glProgramParameteri',['../namespaceabcg.html#ae48fb31c3e26632acba7e1a9753ee5c9',1,'abcg']]], + ['glreadbuffer_202',['glReadBuffer',['../namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f',1,'abcg']]], + ['glreadpixels_203',['glReadPixels',['../namespaceabcg.html#ae8720c564832cd331d886e24aaf68c29',1,'abcg']]], + ['glreleaseshadercompiler_204',['glReleaseShaderCompiler',['../namespaceabcg.html#a3e97ab629b7cc5d4c7259e521ebe5fb7',1,'abcg']]], + ['glrenderbufferstorage_205',['glRenderbufferStorage',['../namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593',1,'abcg']]], + ['glrenderbufferstoragemultisample_206',['glRenderbufferStorageMultisample',['../namespaceabcg.html#aee93697e0e0b92b0b73a9c374d4afff0',1,'abcg']]], + ['glresumetransformfeedback_207',['glResumeTransformFeedback',['../namespaceabcg.html#a81e93970a280fc3782f7577db7060458',1,'abcg']]], + ['glsamplecoverage_208',['glSampleCoverage',['../namespaceabcg.html#adee87442b65fa46fe96cceb6a21d496a',1,'abcg']]], + ['glsamplerparameterf_209',['glSamplerParameterf',['../namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad',1,'abcg']]], + ['glsamplerparameterfv_210',['glSamplerParameterfv',['../namespaceabcg.html#a03ba96b4728e99b4f58cce1f3e102b49',1,'abcg']]], + ['glsamplerparameteri_211',['glSamplerParameteri',['../namespaceabcg.html#ae9971e1b8abb781440101bac0968a897',1,'abcg']]], + ['glsamplerparameteriv_212',['glSamplerParameteriv',['../namespaceabcg.html#a304af29cf7db15205236d97e1836e79a',1,'abcg']]], + ['glscissor_213',['glScissor',['../namespaceabcg.html#ae1a3e82a002194c222284c5588998cfb',1,'abcg']]], + ['glshaderbinary_214',['glShaderBinary',['../namespaceabcg.html#af1c355ed607c699a2fbe6b56454b84db',1,'abcg']]], + ['glshadersource_215',['glShaderSource',['../namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914',1,'abcg']]], + ['glsltospv_216',['GLSLtoSPV',['../abcgVulkanShader_8cpp.html#ac02bb467fef306447a8fa8fe8aed50b1',1,'abcgVulkanShader.cpp']]], + ['glstencilfunc_217',['glStencilFunc',['../namespaceabcg.html#ad1bc3b8d63e3b65fc3a1222ce789db3a',1,'abcg']]], + ['glstencilfuncseparate_218',['glStencilFuncSeparate',['../namespaceabcg.html#a10f604e428c78fad5ca881ecae15f9df',1,'abcg']]], + ['glstencilmask_219',['glStencilMask',['../namespaceabcg.html#a1f1123ce5bc6fade14962343ad3395f0',1,'abcg']]], + ['glstencilmaskseparate_220',['glStencilMaskSeparate',['../namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c',1,'abcg']]], + ['glstencilop_221',['glStencilOp',['../namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f',1,'abcg']]], + ['glstencilopseparate_222',['glStencilOpSeparate',['../namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706',1,'abcg']]], + ['glteximage2d_223',['glTexImage2D',['../namespaceabcg.html#ae220fd2c2bd61130ace06f851609903d',1,'abcg']]], + ['glteximage2dmultisample_224',['glTexImage2DMultisample',['../namespaceabcg.html#aea5f1cc76074ee940772a749cd1b57ad',1,'abcg']]], + ['glteximage3d_225',['glTexImage3D',['../namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735',1,'abcg']]], + ['gltexparameterf_226',['glTexParameterf',['../namespaceabcg.html#a3d91ea0fc162e4a0f5f6060418b6d61c',1,'abcg']]], + ['gltexparameterfv_227',['glTexParameterfv',['../namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea',1,'abcg']]], + ['gltexparameteri_228',['glTexParameteri',['../namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b',1,'abcg']]], + ['gltexparameteriv_229',['glTexParameteriv',['../namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41',1,'abcg']]], + ['gltexstorage2d_230',['glTexStorage2D',['../namespaceabcg.html#a4573fb1a4dd47d4a692b4602a4009918',1,'abcg']]], + ['gltexstorage3d_231',['glTexStorage3D',['../namespaceabcg.html#af9d8885c892cfeadf62c7280254d57f9',1,'abcg']]], + ['gltexsubimage2d_232',['glTexSubImage2D',['../namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34',1,'abcg']]], + ['gltexsubimage3d_233',['glTexSubImage3D',['../namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a',1,'abcg']]], + ['gltransformfeedbackvaryings_234',['glTransformFeedbackVaryings',['../namespaceabcg.html#a0f8299d53f2d5e195444be565301462c',1,'abcg']]], + ['gluniform1f_235',['glUniform1f',['../namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9',1,'abcg']]], + ['gluniform1fv_236',['glUniform1fv',['../namespaceabcg.html#a0a55fd40d1c8f2dfc0fd072e5b2c5ebc',1,'abcg']]], + ['gluniform1i_237',['glUniform1i',['../namespaceabcg.html#a17c9ec119f0c1c6d101a042131774ef9',1,'abcg']]], + ['gluniform1iv_238',['glUniform1iv',['../namespaceabcg.html#a2ac0fcc475813238eec19657e6d4899d',1,'abcg']]], + ['gluniform1ui_239',['glUniform1ui',['../namespaceabcg.html#a4566f93a590c2437fab4c2ac07ea1454',1,'abcg']]], + ['gluniform1uiv_240',['glUniform1uiv',['../namespaceabcg.html#ae712e6a279573982c1c5e7c569a47add',1,'abcg']]], + ['gluniform2f_241',['glUniform2f',['../namespaceabcg.html#aeed384502019a1ea9c53c5f79387f4a6',1,'abcg']]], + ['gluniform2fv_242',['glUniform2fv',['../namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979',1,'abcg']]], + ['gluniform2i_243',['glUniform2i',['../namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938',1,'abcg']]], + ['gluniform2iv_244',['glUniform2iv',['../namespaceabcg.html#adf14dfa164b234c7fbed7b45426b2d62',1,'abcg']]], + ['gluniform2ui_245',['glUniform2ui',['../namespaceabcg.html#ac9593131eae76be863d98795053363c5',1,'abcg']]], + ['gluniform2uiv_246',['glUniform2uiv',['../namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d',1,'abcg']]], + ['gluniform3f_247',['glUniform3f',['../namespaceabcg.html#a3ac2b6654fcb536e3d89e695b84d0229',1,'abcg']]], + ['gluniform3fv_248',['glUniform3fv',['../namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188',1,'abcg']]], + ['gluniform3i_249',['glUniform3i',['../namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970',1,'abcg']]], + ['gluniform3iv_250',['glUniform3iv',['../namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348',1,'abcg']]], + ['gluniform3ui_251',['glUniform3ui',['../namespaceabcg.html#aea378f4807f17ed76e8129260b35c1a1',1,'abcg']]], + ['gluniform3uiv_252',['glUniform3uiv',['../namespaceabcg.html#a15c8e64b115ca61dc7bd460af8447497',1,'abcg']]], + ['gluniform4f_253',['glUniform4f',['../namespaceabcg.html#a26ef61adcd575428307b9b9a92dc618c',1,'abcg']]], + ['gluniform4fv_254',['glUniform4fv',['../namespaceabcg.html#a3dbe8b9316fce91031a864a1a7b91497',1,'abcg']]], + ['gluniform4i_255',['glUniform4i',['../namespaceabcg.html#a3276a3ae4b0740216d4850df60881cfe',1,'abcg']]], + ['gluniform4iv_256',['glUniform4iv',['../namespaceabcg.html#afb64d90352e53e92718dd7f10a2822a6',1,'abcg']]], + ['gluniform4ui_257',['glUniform4ui',['../namespaceabcg.html#a506182a6eb4e8158ee10567344152470',1,'abcg']]], + ['gluniform4uiv_258',['glUniform4uiv',['../namespaceabcg.html#ac21f205c4a058a639fd695c4b4bf76fc',1,'abcg']]], + ['gluniformblockbinding_259',['glUniformBlockBinding',['../namespaceabcg.html#a81f720eec72780a58bf7719461d97971',1,'abcg']]], + ['gluniformmatrix2fv_260',['glUniformMatrix2fv',['../namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88',1,'abcg']]], + ['gluniformmatrix2x3fv_261',['glUniformMatrix2x3fv',['../namespaceabcg.html#ad53649314374711d76ff0b032950e9d2',1,'abcg']]], + ['gluniformmatrix2x4fv_262',['glUniformMatrix2x4fv',['../namespaceabcg.html#ae942855746c560463aed347013e2e84f',1,'abcg']]], + ['gluniformmatrix3fv_263',['glUniformMatrix3fv',['../namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94',1,'abcg']]], + ['gluniformmatrix3x2fv_264',['glUniformMatrix3x2fv',['../namespaceabcg.html#abb0b676883c3e5c717cea345b043a372',1,'abcg']]], + ['gluniformmatrix3x4fv_265',['glUniformMatrix3x4fv',['../namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132',1,'abcg']]], + ['gluniformmatrix4fv_266',['glUniformMatrix4fv',['../namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d',1,'abcg']]], + ['gluniformmatrix4x2fv_267',['glUniformMatrix4x2fv',['../namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6',1,'abcg']]], + ['gluniformmatrix4x3fv_268',['glUniformMatrix4x3fv',['../namespaceabcg.html#a2a4e0b3c0401e2a85fe389191c5d768f',1,'abcg']]], + ['glunmapbuffer_269',['glUnmapBuffer',['../namespaceabcg.html#a1f475772cbe67c5b2370ef179c99b614',1,'abcg']]], + ['gluseprogram_270',['glUseProgram',['../namespaceabcg.html#ac050825096a0ef3f71c0dd6452f9dfc0',1,'abcg']]], + ['glvalidateprogram_271',['glValidateProgram',['../namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252',1,'abcg']]], + ['glvertexattrib1f_272',['glVertexAttrib1f',['../namespaceabcg.html#af725d24a5b6b6483d1cd3420dc6ec011',1,'abcg']]], + ['glvertexattrib1fv_273',['glVertexAttrib1fv',['../namespaceabcg.html#aeff647ce94259b8e0fbe731595cf1931',1,'abcg']]], + ['glvertexattrib2f_274',['glVertexAttrib2f',['../namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7',1,'abcg']]], + ['glvertexattrib2fv_275',['glVertexAttrib2fv',['../namespaceabcg.html#a3be34bb76d1f704893e5ae334488f372',1,'abcg']]], + ['glvertexattrib3f_276',['glVertexAttrib3f',['../namespaceabcg.html#afa1466dac879205506b78b021aafff27',1,'abcg']]], + ['glvertexattrib3fv_277',['glVertexAttrib3fv',['../namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7',1,'abcg']]], + ['glvertexattrib4f_278',['glVertexAttrib4f',['../namespaceabcg.html#a16e4ed4c33c7e9abd8eb412c422c7f8a',1,'abcg']]], + ['glvertexattrib4fv_279',['glVertexAttrib4fv',['../namespaceabcg.html#af15b80a8f2eb74ae9de6f26996d3d51d',1,'abcg']]], + ['glvertexattribdivisor_280',['glVertexAttribDivisor',['../namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5',1,'abcg']]], + ['glvertexattribi4i_281',['glVertexAttribI4i',['../namespaceabcg.html#a298da5e81cd558e36acc8517f183330a',1,'abcg']]], + ['glvertexattribi4iv_282',['glVertexAttribI4iv',['../namespaceabcg.html#a2f957d37e18d6883d73b0c4d81c7925f',1,'abcg']]], + ['glvertexattribi4ui_283',['glVertexAttribI4ui',['../namespaceabcg.html#a3f20fa49edff456e65bcbbfc40befa92',1,'abcg']]], + ['glvertexattribi4uiv_284',['glVertexAttribI4uiv',['../namespaceabcg.html#ac1ce439bbbfbaca867e112c7c75fdf2e',1,'abcg']]], + ['glvertexattribipointer_285',['glVertexAttribIPointer',['../namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022',1,'abcg']]], + ['glvertexattribpointer_286',['glVertexAttribPointer',['../namespaceabcg.html#af56cc0ad4060e65221188cfa41a59168',1,'abcg']]], + ['glviewport_287',['glViewport',['../namespaceabcg.html#a4488c395e82a5408c4321a611f039c78',1,'abcg']]], + ['glwaitsync_288',['glWaitSync',['../namespaceabcg.html#a14893e8222fcaac3d07be752b3c72c04',1,'abcg']]], + ['graphics_289',['graphics',['../structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d',1,'abcg::VulkanCommandPools::graphics'],['../structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d',1,'abcg::VulkanQueues::graphics'],['../structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034',1,'abcg::VulkanQueuesFamilies::graphics']]] ]; diff --git a/abcg/doc/html/search/all_a.html b/abcg/doc/html/search/all_a.html deleted file mode 100644 index 3a6cac108..000000000 --- a/abcg/doc/html/search/all_a.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_a.js b/abcg/doc/html/search/all_a.js index 35512688a..c9a7daa6d 100644 --- a/abcg/doc/html/search/all_a.js +++ b/abcg/doc/html/search/all_a.js @@ -1,11 +1,7 @@ var searchData= [ - ['majorversion_402',['majorVersion',['../structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419',1,'abcg::OpenGLSettings']]], - ['mesh_403',['Mesh',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961',1,'abcg']]], - ['minorversion_404',['minorVersion',['../structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f',1,'abcg::OpenGLSettings']]], - ['miss_405',['Miss',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f',1,'abcg']]], - ['mousemove_406',['mouseMove',['../classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946',1,'abcg::TrackBall']]], - ['mousepress_407',['mousePress',['../classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b',1,'abcg::TrackBall']]], - ['mouserelease_408',['mouseRelease',['../classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe',1,'abcg::TrackBall']]], - ['multisamplestate_409',['multisampleState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b',1,'abcg::VulkanPipelineCreateInfo']]] + ['handleevent_0',['handleEvent',['../classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633',1,'abcg::Window']]], + ['hashcombine_1',['hashCombine',['../namespaceabcg.html#aed04a19d18acb506c896c2f220d495c1',1,'abcg']]], + ['hashcombineseed_2',['hashCombineSeed',['../namespaceabcg.html#a087b770c423ea0ec8a1e54e655dbb0a0',1,'abcg']]], + ['height_3',['height',['../structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d',1,'abcg::WindowSettings']]] ]; diff --git a/abcg/doc/html/search/all_b.html b/abcg/doc/html/search/all_b.html deleted file mode 100644 index 130deb4ed..000000000 --- a/abcg/doc/html/search/all_b.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_b.js b/abcg/doc/html/search/all_b.js index 06bb58b13..112bdac13 100644 --- a/abcg/doc/html/search/all_b.js +++ b/abcg/doc/html/search/all_b.js @@ -1,25 +1,8 @@ var searchData= [ - ['buffer_20const_20_26_410',['Buffer const &',['../classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e',1,'abcg::VulkanBuffer']]], - ['device_20const_20_26_411',['Device const &',['../classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a',1,'abcg::VulkanDevice']]], - ['image_20const_20_26_412',['Image const &',['../classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986',1,'abcg::VulkanImage']]], - ['instance_20const_20_26_413',['Instance const &',['../classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f',1,'abcg::VulkanInstance']]], - ['oncreate_414',['onCreate',['../classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797',1,'abcg::OpenGLWindow::onCreate()'],['../classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679',1,'abcg::VulkanWindow::onCreate()']]], - ['ondestroy_415',['onDestroy',['../classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd',1,'abcg::OpenGLWindow::onDestroy()'],['../classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a',1,'abcg::VulkanWindow::onDestroy()']]], - ['onevent_416',['onEvent',['../classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882',1,'abcg::OpenGLWindow::onEvent()'],['../classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762',1,'abcg::VulkanWindow::onEvent()']]], - ['onpaint_417',['onPaint',['../classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016',1,'abcg::OpenGLWindow::onPaint()'],['../classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205',1,'abcg::VulkanWindow::onPaint()']]], - ['onpaintui_418',['onPaintUI',['../classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79',1,'abcg::OpenGLWindow::onPaintUI()'],['../classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0',1,'abcg::VulkanWindow::onPaintUI()']]], - ['onresize_419',['onResize',['../classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902',1,'abcg::VulkanWindow::onResize()'],['../classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e',1,'abcg::OpenGLWindow::onResize(glm::ivec2 const &size)']]], - ['onupdate_420',['onUpdate',['../classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d',1,'abcg::OpenGLWindow::onUpdate()'],['../classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5',1,'abcg::VulkanWindow::onUpdate()']]], - ['openglcubemapcreateinfo_421',['OpenGLCubemapCreateInfo',['../structabcg_1_1OpenGLCubemapCreateInfo.html',1,'abcg']]], - ['openglerror_422',['OpenGLError',['../classabcg_1_1OpenGLError.html',1,'abcg::OpenGLError'],['../classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0',1,'abcg::OpenGLError::OpenGLError()']]], - ['openglprofile_423',['OpenGLProfile',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328e',1,'abcg']]], - ['openglsettings_424',['OpenGLSettings',['../structabcg_1_1OpenGLSettings.html',1,'abcg']]], - ['openglshader_425',['OpenGLShader',['../structabcg_1_1OpenGLShader.html',1,'abcg']]], - ['opengltexturecreateinfo_426',['OpenGLTextureCreateInfo',['../structabcg_1_1OpenGLTextureCreateInfo.html',1,'abcg']]], - ['openglwindow_427',['OpenGLWindow',['../classabcg_1_1OpenGLWindow.html',1,'abcg']]], - ['operator_3d_428',['operator=',['../classabcg_1_1Window.html#a2cad313eeee01bf3b89e248cd25ed71e',1,'abcg::Window::operator=(Window const &)=delete'],['../classabcg_1_1Window.html#a4efa74388a703f1d8dcb4493d4ea4637',1,'abcg::Window::operator=(Window &&)=default']]], - ['physicaldevice_20const_20_26_429',['PhysicalDevice const &',['../classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1',1,'abcg::VulkanPhysicalDevice']]], - ['pipeline_20const_20_26_430',['Pipeline const &',['../classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419',1,'abcg::VulkanPipeline']]], - ['swapchainkhr_20const_20_26_431',['SwapchainKHR const &',['../classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7',1,'abcg::VulkanSwapchain']]] + ['index_0',['index',['../structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1',1,'abcg::VulkanFrame']]], + ['info_1',['info',['../structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2',1,'abcg::VulkanImageCreateInfo']]], + ['inputassemblystate_2',['inputAssemblyState',['../structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2',1,'abcg::VulkanPipelineCreateInfo']]], + ['installation_20and_20usage_3',['Installation and usage',['../index.html#autotoc_md3',1,'']]], + ['intersection_4',['Intersection',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/all_c.html b/abcg/doc/html/search/all_c.html deleted file mode 100644 index 3dd5af06d..000000000 --- a/abcg/doc/html/search/all_c.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_c.js b/abcg/doc/html/search/all_c.js index 03b439cf7..347ac7ff6 100644 --- a/abcg/doc/html/search/all_c.js +++ b/abcg/doc/html/search/all_c.js @@ -1,11 +1,8 @@ var searchData= [ - ['paint_432',['paint',['../classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0',1,'abcg::Window']]], - ['path_433',['path',['../structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb',1,'abcg::OpenGLTextureCreateInfo']]], - ['paths_434',['paths',['../structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0',1,'abcg::OpenGLCubemapCreateInfo']]], - ['pipelinecache_435',['pipelineCache',['../structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b',1,'abcg::VulkanPipelineCreateInfo']]], - ['pipelinelayout_436',['pipelineLayout',['../structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7',1,'abcg::VulkanPipelineCreateInfo']]], - ['present_437',['present',['../structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693',1,'abcg::VulkanQueues::present()'],['../structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e',1,'abcg::VulkanQueuesFamilies::present()'],['../classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b',1,'abcg::VulkanSwapchain::present()']]], - ['profile_438',['profile',['../structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06',1,'abcg::OpenGLSettings']]], - ['properties_439',['properties',['../structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465',1,'abcg::VulkanBufferCreateInfo::properties()'],['../structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430',1,'abcg::VulkanImageCreateInfo::properties()']]] + ['license_0',['License',['../index.html#autotoc_md8',1,'']]], + ['linux_20and_20macos_1',['Linux and macOS',['../index.html#autotoc_md5',1,'']]], + ['loaddata_2',['loadData',['../classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b',1,'abcg::VulkanBuffer']]], + ['loadopenglcubemap_3',['loadOpenGLCubemap',['../namespaceabcg.html#a39af18b7fd13bbdcd404b344ca29014e',1,'abcg']]], + ['loadopengltexture_4',['loadOpenGLTexture',['../namespaceabcg.html#ae4a5204a112c5bfabcab65d66f49aa8d',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/all_d.html b/abcg/doc/html/search/all_d.html deleted file mode 100644 index af7f2f0f5..000000000 --- a/abcg/doc/html/search/all_d.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_d.js b/abcg/doc/html/search/all_d.js index 23ff04edc..2ccb5b28e 100644 --- a/abcg/doc/html/search/all_d.js +++ b/abcg/doc/html/search/all_d.js @@ -1,14 +1,13 @@ var searchData= [ - ['rasterizationstate_440',['rasterizationState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be',1,'abcg::VulkanPipelineCreateInfo']]], - ['raygen_441',['RayGen',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a',1,'abcg']]], - ['readme_2emd_442',['README.md',['../README_8md.html',1,'']]], - ['release_20notes_443',['Release notes',['../md__home_harlen_dev_abcg_CHANGELOG.html',1,'']]], - ['render_444',['render',['../classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830',1,'abcg::VulkanSwapchain']]], - ['resizeviewport_445',['resizeViewport',['../classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da',1,'abcg::TrackBall']]], - ['resizingeventwatcher_446',['resizingEventWatcher',['../classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509',1,'abcg::Window::resizingEventWatcher()'],['../namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b',1,'abcg::resizingEventWatcher()']]], - ['restart_447',['restart',['../classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c',1,'abcg::Timer']]], - ['righthandedsystem_448',['rightHandedSystem',['../structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137',1,'abcg::OpenGLCubemapCreateInfo']]], - ['run_449',['run',['../classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d',1,'abcg::Application']]], - ['runtimeerror_450',['RuntimeError',['../classabcg_1_1RuntimeError.html',1,'abcg::RuntimeError'],['../classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9',1,'abcg::RuntimeError::RuntimeError()']]] + ['macos_0',['Linux and macOS',['../index.html#autotoc_md5',1,'']]], + ['main_20features_1',['Main features',['../index.html#autotoc_md1',1,'']]], + ['majorversion_2',['majorVersion',['../structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419',1,'abcg::OpenGLSettings']]], + ['mesh_3',['Mesh',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961',1,'abcg']]], + ['minorversion_4',['minorVersion',['../structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f',1,'abcg::OpenGLSettings']]], + ['miss_5',['Miss',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f',1,'abcg']]], + ['mousemove_6',['mouseMove',['../classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946',1,'abcg::TrackBall']]], + ['mousepress_7',['mousePress',['../classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b',1,'abcg::TrackBall']]], + ['mouserelease_8',['mouseRelease',['../classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe',1,'abcg::TrackBall']]], + ['multisamplestate_9',['multisampleState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/all_e.html b/abcg/doc/html/search/all_e.html deleted file mode 100644 index e25df423a..000000000 --- a/abcg/doc/html/search/all_e.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_e.js b/abcg/doc/html/search/all_e.js index e0e5f41bf..05212e8fb 100644 --- a/abcg/doc/html/search/all_e.js +++ b/abcg/doc/html/search/all_e.js @@ -1,26 +1,5 @@ var searchData= [ - ['samples_451',['samples',['../structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b',1,'abcg::OpenGLSettings::samples()'],['../structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e',1,'abcg::VulkanSettings::samples()']]], - ['savescreenshotpng_452',['saveScreenshotPNG',['../classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff',1,'abcg::OpenGLWindow']]], - ['scissors_453',['scissors',['../structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6',1,'abcg::VulkanPipelineCreateInfo']]], - ['sdlerror_454',['SDLError',['../classabcg_1_1SDLError.html',1,'abcg::SDLError'],['../classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae',1,'abcg::SDLError::SDLError()']]], - ['sdlimageerror_455',['SDLImageError',['../classabcg_1_1SDLImageError.html',1,'abcg::SDLImageError'],['../classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4',1,'abcg::SDLImageError::SDLImageError()']]], - ['setaxis_456',['setAxis',['../classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8',1,'abcg::TrackBall']]], - ['setenableresizingeventwatcher_457',['setEnableResizingEventWatcher',['../classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e',1,'abcg::Window']]], - ['setopenglsettings_458',['setOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067',1,'abcg::OpenGLWindow']]], - ['setvelocity_459',['setVelocity',['../classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f',1,'abcg::TrackBall']]], - ['setvulkansettings_460',['setVulkanSettings',['../classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6',1,'abcg::VulkanWindow']]], - ['setwindowsettings_461',['setWindowSettings',['../classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277',1,'abcg::Window']]], - ['shader_462',['shader',['../structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a',1,'abcg::OpenGLShader']]], - ['shaders_463',['shaders',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9',1,'abcg::VulkanPipelineCreateInfo']]], - ['shadersource_464',['ShaderSource',['../structabcg_1_1ShaderSource.html',1,'abcg']]], - ['shaderstage_465',['ShaderStage',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da',1,'abcg']]], - ['showfps_466',['showFPS',['../structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028',1,'abcg::WindowSettings']]], - ['showfullscreenbutton_467',['showFullscreenButton',['../structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c',1,'abcg::WindowSettings']]], - ['size_468',['size',['../structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3',1,'abcg::VulkanBufferCreateInfo']]], - ['source_469',['source',['../structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47',1,'abcg::ShaderSource']]], - ['source_5flocation_470',['source_location',['../namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2',1,'abcg']]], - ['srgbtolinear_471',['sRGBToLinear',['../structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c',1,'abcg::OpenGLTextureCreateInfo']]], - ['stage_472',['stage',['../structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53',1,'abcg::OpenGLShader::stage()'],['../structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e',1,'abcg::ShaderSource::stage()']]], - ['stencilbuffersize_473',['stencilBufferSize',['../structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9',1,'abcg::OpenGLSettings::stencilBufferSize()'],['../structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092',1,'abcg::VulkanSettings::stencilBufferSize()']]] + ['new_20features_0',['New features',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md14',1,'']]], + ['notes_1',['Release notes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html',1,'']]] ]; diff --git a/abcg/doc/html/search/all_f.html b/abcg/doc/html/search/all_f.html deleted file mode 100644 index b23da6ce4..000000000 --- a/abcg/doc/html/search/all_f.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/all_f.js b/abcg/doc/html/search/all_f.js index f1f8c8d9e..8b9314e8c 100644 --- a/abcg/doc/html/search/all_f.js +++ b/abcg/doc/html/search/all_f.js @@ -1,16 +1,26 @@ var searchData= [ - ['task_474',['Task',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f',1,'abcg']]], - ['tessellationcontrol_475',['TessellationControl',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a',1,'abcg']]], - ['tessellationevaluation_476',['TessellationEvaluation',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952',1,'abcg']]], - ['timer_477',['Timer',['../classabcg_1_1Timer.html',1,'abcg']]], - ['title_478',['title',['../structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d',1,'abcg::WindowSettings']]], - ['tobluestring_479',['toBlueString',['../namespaceabcg.html#a1b13712894adf3cfdda66dd3ddd14256',1,'abcg']]], - ['togglefullscreen_480',['toggleFullscreen',['../classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6',1,'abcg::Window']]], - ['toredstring_481',['toRedString',['../namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d',1,'abcg']]], - ['toyellowstring_482',['toYellowString',['../namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d',1,'abcg']]], - ['trackball_483',['TrackBall',['../classabcg_1_1TrackBall.html',1,'abcg']]], - ['transfer_484',['transfer',['../structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4',1,'abcg::VulkanCommandPools::transfer()'],['../structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4',1,'abcg::VulkanQueues::transfer()'],['../structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab',1,'abcg::VulkanQueuesFamilies::transfer()']]], - ['triggeropenglshadercompile_485',['triggerOpenGLShaderCompile',['../namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102',1,'abcg']]], - ['triggeropenglshaderlink_486',['triggerOpenGLShaderLink',['../namespaceabcg.html#aee435331b56516022710b8acc098883a',1,'abcg']]] + ['oncreate_0',['oncreate',['../classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797',1,'abcg::OpenGLWindow::onCreate()'],['../classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679',1,'abcg::VulkanWindow::onCreate()']]], + ['ondestroy_1',['ondestroy',['../classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd',1,'abcg::OpenGLWindow::onDestroy()'],['../classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a',1,'abcg::VulkanWindow::onDestroy()']]], + ['onevent_2',['onevent',['../classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762',1,'abcg::VulkanWindow::onEvent()'],['../classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882',1,'abcg::OpenGLWindow::onEvent()']]], + ['onpaint_3',['onpaint',['../classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205',1,'abcg::VulkanWindow::onPaint()'],['../classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016',1,'abcg::OpenGLWindow::onPaint()']]], + ['onpaintui_4',['onpaintui',['../classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0',1,'abcg::VulkanWindow::onPaintUI()'],['../classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79',1,'abcg::OpenGLWindow::onPaintUI()']]], + ['onresize_5',['onresize',['../classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e',1,'abcg::OpenGLWindow::onResize()'],['../classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902',1,'abcg::VulkanWindow::onResize()']]], + ['onupdate_6',['onupdate',['../classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d',1,'abcg::OpenGLWindow::onUpdate()'],['../classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5',1,'abcg::VulkanWindow::onUpdate()']]], + ['openglcubemapcreateinfo_7',['OpenGLCubemapCreateInfo',['../structabcg_1_1OpenGLCubemapCreateInfo.html',1,'abcg']]], + ['openglerror_8',['openglerror',['../classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0',1,'abcg::OpenGLError::OpenGLError()'],['../classabcg_1_1OpenGLError.html',1,'abcg::OpenGLError']]], + ['openglprofile_9',['OpenGLProfile',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328e',1,'abcg']]], + ['openglsettings_10',['OpenGLSettings',['../structabcg_1_1OpenGLSettings.html',1,'abcg']]], + ['openglshader_11',['OpenGLShader',['../structabcg_1_1OpenGLShader.html',1,'abcg']]], + ['opengltexturecreateinfo_12',['OpenGLTextureCreateInfo',['../structabcg_1_1OpenGLTextureCreateInfo.html',1,'abcg']]], + ['openglwindow_13',['OpenGLWindow',['../classabcg_1_1OpenGLWindow.html',1,'abcg']]], + ['operator_20vk_3a_3abuffer_20const_20_26_14',['Buffer const &',['../classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e',1,'abcg::VulkanBuffer']]], + ['operator_20vk_3a_3adevice_20const_20_26_15',['Device const &',['../classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a',1,'abcg::VulkanDevice']]], + ['operator_20vk_3a_3aimage_20const_20_26_16',['Image const &',['../classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986',1,'abcg::VulkanImage']]], + ['operator_20vk_3a_3ainstance_20const_20_26_17',['Instance const &',['../classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f',1,'abcg::VulkanInstance']]], + ['operator_20vk_3a_3aphysicaldevice_20const_20_26_18',['PhysicalDevice const &',['../classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1',1,'abcg::VulkanPhysicalDevice']]], + ['operator_20vk_3a_3apipeline_20const_20_26_19',['Pipeline const &',['../classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419',1,'abcg::VulkanPipeline']]], + ['operator_20vk_3a_3aswapchainkhr_20const_20_26_20',['SwapchainKHR const &',['../classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7',1,'abcg::VulkanSwapchain']]], + ['operator_3d_21',['operator=',['../classabcg_1_1Window.html#acec165afa1879a622118f7a2ab8d87e4',1,'abcg::Window::operator=(Window const &)=delete'],['../classabcg_1_1Window.html#a93d060f22a995fc807da249d222b8c66',1,'abcg::Window::operator=(Window &&)=default']]], + ['other_20changes_22',['other changes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md16',1,'Other changes'],['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html#autotoc_md21',1,'Other changes']]] ]; diff --git a/abcg/doc/html/search/classes_0.html b/abcg/doc/html/search/classes_0.html deleted file mode 100644 index af8159ee6..000000000 --- a/abcg/doc/html/search/classes_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_0.js b/abcg/doc/html/search/classes_0.js index 0ff9029e9..81aa1fe67 100644 --- a/abcg/doc/html/search/classes_0.js +++ b/abcg/doc/html/search/classes_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['application_517',['Application',['../classabcg_1_1Application.html',1,'abcg']]] + ['application_0',['Application',['../classabcg_1_1Application.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_1.html b/abcg/doc/html/search/classes_1.html deleted file mode 100644 index 576e91689..000000000 --- a/abcg/doc/html/search/classes_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_1.js b/abcg/doc/html/search/classes_1.js index 3d5082660..08b59385d 100644 --- a/abcg/doc/html/search/classes_1.js +++ b/abcg/doc/html/search/classes_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['exception_518',['Exception',['../classabcg_1_1Exception.html',1,'abcg']]] + ['exception_0',['Exception',['../classabcg_1_1Exception.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_2.html b/abcg/doc/html/search/classes_2.html deleted file mode 100644 index 956405e5a..000000000 --- a/abcg/doc/html/search/classes_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_2.js b/abcg/doc/html/search/classes_2.js index 7e67c31fc..3f0122abb 100644 --- a/abcg/doc/html/search/classes_2.js +++ b/abcg/doc/html/search/classes_2.js @@ -1,9 +1,9 @@ var searchData= [ - ['openglcubemapcreateinfo_519',['OpenGLCubemapCreateInfo',['../structabcg_1_1OpenGLCubemapCreateInfo.html',1,'abcg']]], - ['openglerror_520',['OpenGLError',['../classabcg_1_1OpenGLError.html',1,'abcg']]], - ['openglsettings_521',['OpenGLSettings',['../structabcg_1_1OpenGLSettings.html',1,'abcg']]], - ['openglshader_522',['OpenGLShader',['../structabcg_1_1OpenGLShader.html',1,'abcg']]], - ['opengltexturecreateinfo_523',['OpenGLTextureCreateInfo',['../structabcg_1_1OpenGLTextureCreateInfo.html',1,'abcg']]], - ['openglwindow_524',['OpenGLWindow',['../classabcg_1_1OpenGLWindow.html',1,'abcg']]] + ['openglcubemapcreateinfo_0',['OpenGLCubemapCreateInfo',['../structabcg_1_1OpenGLCubemapCreateInfo.html',1,'abcg']]], + ['openglerror_1',['OpenGLError',['../classabcg_1_1OpenGLError.html',1,'abcg']]], + ['openglsettings_2',['OpenGLSettings',['../structabcg_1_1OpenGLSettings.html',1,'abcg']]], + ['openglshader_3',['OpenGLShader',['../structabcg_1_1OpenGLShader.html',1,'abcg']]], + ['opengltexturecreateinfo_4',['OpenGLTextureCreateInfo',['../structabcg_1_1OpenGLTextureCreateInfo.html',1,'abcg']]], + ['openglwindow_5',['OpenGLWindow',['../classabcg_1_1OpenGLWindow.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_3.html b/abcg/doc/html/search/classes_3.html deleted file mode 100644 index d33343bc1..000000000 --- a/abcg/doc/html/search/classes_3.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_3.js b/abcg/doc/html/search/classes_3.js index 59c16f241..5c7dac872 100644 --- a/abcg/doc/html/search/classes_3.js +++ b/abcg/doc/html/search/classes_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['runtimeerror_525',['RuntimeError',['../classabcg_1_1RuntimeError.html',1,'abcg']]] + ['runtimeerror_0',['RuntimeError',['../classabcg_1_1RuntimeError.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_4.html b/abcg/doc/html/search/classes_4.html deleted file mode 100644 index 8430b07fe..000000000 --- a/abcg/doc/html/search/classes_4.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_4.js b/abcg/doc/html/search/classes_4.js index c31d9357f..27d93d519 100644 --- a/abcg/doc/html/search/classes_4.js +++ b/abcg/doc/html/search/classes_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['sdlerror_526',['SDLError',['../classabcg_1_1SDLError.html',1,'abcg']]], - ['sdlimageerror_527',['SDLImageError',['../classabcg_1_1SDLImageError.html',1,'abcg']]], - ['shadersource_528',['ShaderSource',['../structabcg_1_1ShaderSource.html',1,'abcg']]] + ['sdlerror_0',['SDLError',['../classabcg_1_1SDLError.html',1,'abcg']]], + ['sdlimageerror_1',['SDLImageError',['../classabcg_1_1SDLImageError.html',1,'abcg']]], + ['shadersource_2',['ShaderSource',['../structabcg_1_1ShaderSource.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_5.html b/abcg/doc/html/search/classes_5.html deleted file mode 100644 index c2f1b767b..000000000 --- a/abcg/doc/html/search/classes_5.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_5.js b/abcg/doc/html/search/classes_5.js index 997f390fc..d96802184 100644 --- a/abcg/doc/html/search/classes_5.js +++ b/abcg/doc/html/search/classes_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['timer_529',['Timer',['../classabcg_1_1Timer.html',1,'abcg']]], - ['trackball_530',['TrackBall',['../classabcg_1_1TrackBall.html',1,'abcg']]] + ['timer_0',['Timer',['../classabcg_1_1Timer.html',1,'abcg']]], + ['trackball_1',['TrackBall',['../classabcg_1_1TrackBall.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_6.html b/abcg/doc/html/search/classes_6.html deleted file mode 100644 index e39847ce8..000000000 --- a/abcg/doc/html/search/classes_6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_6.js b/abcg/doc/html/search/classes_6.js index 1e6775a83..3a43ca036 100644 --- a/abcg/doc/html/search/classes_6.js +++ b/abcg/doc/html/search/classes_6.js @@ -1,21 +1,21 @@ var searchData= [ - ['vulkanbuffer_531',['VulkanBuffer',['../classabcg_1_1VulkanBuffer.html',1,'abcg']]], - ['vulkanbuffercreateinfo_532',['VulkanBufferCreateInfo',['../structabcg_1_1VulkanBufferCreateInfo.html',1,'abcg']]], - ['vulkancommandpools_533',['VulkanCommandPools',['../structabcg_1_1VulkanCommandPools.html',1,'abcg']]], - ['vulkandevice_534',['VulkanDevice',['../classabcg_1_1VulkanDevice.html',1,'abcg']]], - ['vulkanerror_535',['VulkanError',['../classabcg_1_1VulkanError.html',1,'abcg']]], - ['vulkanframe_536',['VulkanFrame',['../structabcg_1_1VulkanFrame.html',1,'abcg']]], - ['vulkanimage_537',['VulkanImage',['../classabcg_1_1VulkanImage.html',1,'abcg']]], - ['vulkanimagecreateinfo_538',['VulkanImageCreateInfo',['../structabcg_1_1VulkanImageCreateInfo.html',1,'abcg']]], - ['vulkaninstance_539',['VulkanInstance',['../classabcg_1_1VulkanInstance.html',1,'abcg']]], - ['vulkanphysicaldevice_540',['VulkanPhysicalDevice',['../classabcg_1_1VulkanPhysicalDevice.html',1,'abcg']]], - ['vulkanpipeline_541',['VulkanPipeline',['../classabcg_1_1VulkanPipeline.html',1,'abcg']]], - ['vulkanpipelinecreateinfo_542',['VulkanPipelineCreateInfo',['../structabcg_1_1VulkanPipelineCreateInfo.html',1,'abcg']]], - ['vulkanqueues_543',['VulkanQueues',['../structabcg_1_1VulkanQueues.html',1,'abcg']]], - ['vulkanqueuesfamilies_544',['VulkanQueuesFamilies',['../structabcg_1_1VulkanQueuesFamilies.html',1,'abcg']]], - ['vulkansettings_545',['VulkanSettings',['../structabcg_1_1VulkanSettings.html',1,'abcg']]], - ['vulkanshader_546',['VulkanShader',['../classabcg_1_1VulkanShader.html',1,'abcg']]], - ['vulkanswapchain_547',['VulkanSwapchain',['../classabcg_1_1VulkanSwapchain.html',1,'abcg']]], - ['vulkanwindow_548',['VulkanWindow',['../classabcg_1_1VulkanWindow.html',1,'abcg']]] + ['vulkanbuffer_0',['VulkanBuffer',['../classabcg_1_1VulkanBuffer.html',1,'abcg']]], + ['vulkanbuffercreateinfo_1',['VulkanBufferCreateInfo',['../structabcg_1_1VulkanBufferCreateInfo.html',1,'abcg']]], + ['vulkancommandpools_2',['VulkanCommandPools',['../structabcg_1_1VulkanCommandPools.html',1,'abcg']]], + ['vulkandevice_3',['VulkanDevice',['../classabcg_1_1VulkanDevice.html',1,'abcg']]], + ['vulkanerror_4',['VulkanError',['../classabcg_1_1VulkanError.html',1,'abcg']]], + ['vulkanframe_5',['VulkanFrame',['../structabcg_1_1VulkanFrame.html',1,'abcg']]], + ['vulkanimage_6',['VulkanImage',['../classabcg_1_1VulkanImage.html',1,'abcg']]], + ['vulkanimagecreateinfo_7',['VulkanImageCreateInfo',['../structabcg_1_1VulkanImageCreateInfo.html',1,'abcg']]], + ['vulkaninstance_8',['VulkanInstance',['../classabcg_1_1VulkanInstance.html',1,'abcg']]], + ['vulkanphysicaldevice_9',['VulkanPhysicalDevice',['../classabcg_1_1VulkanPhysicalDevice.html',1,'abcg']]], + ['vulkanpipeline_10',['VulkanPipeline',['../classabcg_1_1VulkanPipeline.html',1,'abcg']]], + ['vulkanpipelinecreateinfo_11',['VulkanPipelineCreateInfo',['../structabcg_1_1VulkanPipelineCreateInfo.html',1,'abcg']]], + ['vulkanqueues_12',['VulkanQueues',['../structabcg_1_1VulkanQueues.html',1,'abcg']]], + ['vulkanqueuesfamilies_13',['VulkanQueuesFamilies',['../structabcg_1_1VulkanQueuesFamilies.html',1,'abcg']]], + ['vulkansettings_14',['VulkanSettings',['../structabcg_1_1VulkanSettings.html',1,'abcg']]], + ['vulkanshader_15',['VulkanShader',['../classabcg_1_1VulkanShader.html',1,'abcg']]], + ['vulkanswapchain_16',['VulkanSwapchain',['../classabcg_1_1VulkanSwapchain.html',1,'abcg']]], + ['vulkanwindow_17',['VulkanWindow',['../classabcg_1_1VulkanWindow.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/classes_7.html b/abcg/doc/html/search/classes_7.html deleted file mode 100644 index a2c4d1a39..000000000 --- a/abcg/doc/html/search/classes_7.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/classes_7.js b/abcg/doc/html/search/classes_7.js index 93509d4d3..c98c2b9ea 100644 --- a/abcg/doc/html/search/classes_7.js +++ b/abcg/doc/html/search/classes_7.js @@ -1,5 +1,5 @@ var searchData= [ - ['window_549',['Window',['../classabcg_1_1Window.html',1,'abcg']]], - ['windowsettings_550',['WindowSettings',['../structabcg_1_1WindowSettings.html',1,'abcg']]] + ['window_0',['Window',['../classabcg_1_1Window.html',1,'abcg']]], + ['windowsettings_1',['WindowSettings',['../structabcg_1_1WindowSettings.html',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/close.svg b/abcg/doc/html/search/close.svg index a933eea1a..337d6cc13 100644 --- a/abcg/doc/html/search/close.svg +++ b/abcg/doc/html/search/close.svg @@ -1,27 +1,14 @@ + - - - - image/svg+xml - - - - - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/defines_0.js b/abcg/doc/html/search/defines_0.js index 5ab0e0a80..a8b1a49df 100644 --- a/abcg/doc/html/search/defines_0.js +++ b/abcg/doc/html/search/defines_0.js @@ -1,7 +1,7 @@ var searchData= [ - ['abcg_5fversion_5fmajor_1036',['ABCG_VERSION_MAJOR',['../abcgApplication_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f',1,'abcgApplication.hpp']]], - ['abcg_5fversion_5fminor_1037',['ABCG_VERSION_MINOR',['../abcgApplication_8hpp.html#a7396b0333e58c89fbafa65e76af72183',1,'abcgApplication.hpp']]], - ['abcg_5fversion_5fpatch_1038',['ABCG_VERSION_PATCH',['../abcgApplication_8hpp.html#af521d4146de1ade55008a4d5f0ddd768',1,'abcgApplication.hpp']]], - ['abcg_5fvulkan_5fdebug_5freport_1039',['ABCG_VULKAN_DEBUG_REPORT',['../abcgVulkanExternal_8hpp.html#adb1991a2979d0bd698ad63fdc1fc328b',1,'abcgVulkanExternal.hpp']]] + ['abcg_5fversion_5fmajor_0',['ABCG_VERSION_MAJOR',['../abcgApplication_8hpp.html#a07fc63a5e20c2f33f9ca0dd915ce491f',1,'abcgApplication.hpp']]], + ['abcg_5fversion_5fminor_1',['ABCG_VERSION_MINOR',['../abcgApplication_8hpp.html#a7396b0333e58c89fbafa65e76af72183',1,'abcgApplication.hpp']]], + ['abcg_5fversion_5fpatch_2',['ABCG_VERSION_PATCH',['../abcgApplication_8hpp.html#af521d4146de1ade55008a4d5f0ddd768',1,'abcgApplication.hpp']]], + ['abcg_5fvulkan_5fdebug_5freport_3',['ABCG_VULKAN_DEBUG_REPORT',['../abcgVulkanExternal_8hpp.html#adb1991a2979d0bd698ad63fdc1fc328b',1,'abcgVulkanExternal.hpp']]] ]; diff --git a/abcg/doc/html/search/defines_1.html b/abcg/doc/html/search/defines_1.html deleted file mode 100644 index c49009c71..000000000 --- a/abcg/doc/html/search/defines_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/defines_1.js b/abcg/doc/html/search/defines_1.js index 05b97da57..ee7d37dcb 100644 --- a/abcg/doc/html/search/defines_1.js +++ b/abcg/doc/html/search/defines_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['glm_5fforce_5fdepth_5fzero_5fto_5fone_1040',['GLM_FORCE_DEPTH_ZERO_TO_ONE',['../abcgVulkan_8hpp.html#aa53e0967978ad7a8792f6961156ec968',1,'abcgVulkan.hpp']]] + ['glm_5fforce_5fdepth_5fzero_5fto_5fone_0',['GLM_FORCE_DEPTH_ZERO_TO_ONE',['../abcgVulkan_8hpp.html#aa53e0967978ad7a8792f6961156ec968',1,'abcgVulkan.hpp']]] ]; diff --git a/abcg/doc/html/search/defines_2.html b/abcg/doc/html/search/defines_2.html deleted file mode 100644 index c55101115..000000000 --- a/abcg/doc/html/search/defines_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/defines_2.js b/abcg/doc/html/search/defines_2.js index e98578082..4c0fefda7 100644 --- a/abcg/doc/html/search/defines_2.js +++ b/abcg/doc/html/search/defines_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['vulkan_5fhpp_5fno_5fconstructors_1041',['VULKAN_HPP_NO_CONSTRUCTORS',['../abcgVulkanExternal_8hpp.html#a607e8c4e92dfe6be973de2486903571f',1,'abcgVulkanExternal.hpp']]] + ['vulkan_5fhpp_5fno_5fconstructors_0',['VULKAN_HPP_NO_CONSTRUCTORS',['../abcgVulkanExternal_8hpp.html#a607e8c4e92dfe6be973de2486903571f',1,'abcgVulkanExternal.hpp']]] ]; diff --git a/abcg/doc/html/search/enums_0.html b/abcg/doc/html/search/enums_0.html deleted file mode 100644 index 141fff57b..000000000 --- a/abcg/doc/html/search/enums_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enums_0.js b/abcg/doc/html/search/enums_0.js index 010bc2af3..015a1a6ac 100644 --- a/abcg/doc/html/search/enums_0.js +++ b/abcg/doc/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['openglprofile_1016',['OpenGLProfile',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328e',1,'abcg']]] + ['openglprofile_0',['OpenGLProfile',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328e',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enums_1.html b/abcg/doc/html/search/enums_1.html deleted file mode 100644 index d29f3b16d..000000000 --- a/abcg/doc/html/search/enums_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enums_1.js b/abcg/doc/html/search/enums_1.js index 9bc28f752..51ce9c56d 100644 --- a/abcg/doc/html/search/enums_1.js +++ b/abcg/doc/html/search/enums_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['shaderstage_1017',['ShaderStage',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da',1,'abcg']]] + ['shaderstage_0',['ShaderStage',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40da',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_0.html b/abcg/doc/html/search/enumvalues_0.html deleted file mode 100644 index 0d131d95b..000000000 --- a/abcg/doc/html/search/enumvalues_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_0.js b/abcg/doc/html/search/enumvalues_0.js index 403267d1c..d4712061b 100644 --- a/abcg/doc/html/search/enumvalues_0.js +++ b/abcg/doc/html/search/enumvalues_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['anyhit_1018',['AnyHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b',1,'abcg']]] + ['anyhit_0',['AnyHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daafed8068cf66889c7c88bd5b7d3d02e4b',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_1.html b/abcg/doc/html/search/enumvalues_1.html deleted file mode 100644 index cd9187ab3..000000000 --- a/abcg/doc/html/search/enumvalues_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_1.js b/abcg/doc/html/search/enumvalues_1.js index 8ed9a9907..869a8c0f3 100644 --- a/abcg/doc/html/search/enumvalues_1.js +++ b/abcg/doc/html/search/enumvalues_1.js @@ -1,8 +1,8 @@ var searchData= [ - ['callable_1019',['Callable',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8',1,'abcg']]], - ['closesthit_1020',['ClosestHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575',1,'abcg']]], - ['compatibility_1021',['Compatibility',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53',1,'abcg']]], - ['compute_1022',['Compute',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10',1,'abcg']]], - ['core_1023',['Core',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153',1,'abcg']]] + ['callable_0',['Callable',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa79ace5b2a7206c5d0aa286a5b33385f8',1,'abcg']]], + ['closesthit_1',['ClosestHit',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad4fcd21286c099405aff8d6b04c76575',1,'abcg']]], + ['compatibility_2',['Compatibility',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328eadf9c715f20aaf58fb3926cc02b08ec53',1,'abcg']]], + ['compute_3',['Compute',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa623a8d0366bf079411aa30be45b2d10',1,'abcg']]], + ['core_4',['Core',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea83168e6cb289d732cc78427b51f93153',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_2.html b/abcg/doc/html/search/enumvalues_2.html deleted file mode 100644 index 2b95d9204..000000000 --- a/abcg/doc/html/search/enumvalues_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_2.js b/abcg/doc/html/search/enumvalues_2.js index 3424cb1c0..98a662cf4 100644 --- a/abcg/doc/html/search/enumvalues_2.js +++ b/abcg/doc/html/search/enumvalues_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['es_1024',['ES',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea04c19fa1e772ab66f0aad2efe61f25cd',1,'abcg']]] + ['es_0',['ES',['../namespaceabcg.html#aef63a265616374ef2d9f1d63b0e9328ea04c19fa1e772ab66f0aad2efe61f25cd',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_3.html b/abcg/doc/html/search/enumvalues_3.html deleted file mode 100644 index bc0ac8a97..000000000 --- a/abcg/doc/html/search/enumvalues_3.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_3.js b/abcg/doc/html/search/enumvalues_3.js index 9a68684b1..4cf89a1cb 100644 --- a/abcg/doc/html/search/enumvalues_3.js +++ b/abcg/doc/html/search/enumvalues_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['fragment_1025',['Fragment',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a',1,'abcg']]] + ['fragment_0',['Fragment',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa37d01b98065725fe3a1d30acf3a0064a',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_4.html b/abcg/doc/html/search/enumvalues_4.html deleted file mode 100644 index ef94dd8d7..000000000 --- a/abcg/doc/html/search/enumvalues_4.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_4.js b/abcg/doc/html/search/enumvalues_4.js index ef5e4010c..160db312b 100644 --- a/abcg/doc/html/search/enumvalues_4.js +++ b/abcg/doc/html/search/enumvalues_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['geometry_1026',['Geometry',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273',1,'abcg']]] + ['geometry_0',['Geometry',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daad9c6333623e6357515fcbf17be806273',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_5.html b/abcg/doc/html/search/enumvalues_5.html deleted file mode 100644 index 1c2e2f33d..000000000 --- a/abcg/doc/html/search/enumvalues_5.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_5.js b/abcg/doc/html/search/enumvalues_5.js index 4dab22be0..aea192305 100644 --- a/abcg/doc/html/search/enumvalues_5.js +++ b/abcg/doc/html/search/enumvalues_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['intersection_1027',['Intersection',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24',1,'abcg']]] + ['intersection_0',['Intersection',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaa06d31c2ee920b4d53e8c9c06d90ba24',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_6.html b/abcg/doc/html/search/enumvalues_6.html deleted file mode 100644 index f985df91d..000000000 --- a/abcg/doc/html/search/enumvalues_6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_6.js b/abcg/doc/html/search/enumvalues_6.js index 18504c287..479698a54 100644 --- a/abcg/doc/html/search/enumvalues_6.js +++ b/abcg/doc/html/search/enumvalues_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['mesh_1028',['Mesh',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961',1,'abcg']]], - ['miss_1029',['Miss',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f',1,'abcg']]] + ['mesh_0',['Mesh',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa710fdb6adb881b408116ef95335e1961',1,'abcg']]], + ['miss_1',['Miss',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daae7ddb7cd777b59610b220bcfa80bd95f',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_7.html b/abcg/doc/html/search/enumvalues_7.html deleted file mode 100644 index 7fdf663dd..000000000 --- a/abcg/doc/html/search/enumvalues_7.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_7.js b/abcg/doc/html/search/enumvalues_7.js index df1867163..d8d39ace1 100644 --- a/abcg/doc/html/search/enumvalues_7.js +++ b/abcg/doc/html/search/enumvalues_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['raygen_1030',['RayGen',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a',1,'abcg']]] + ['raygen_0',['RayGen',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa4b2766e948a345bc42a34d6ae00b329a',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_8.html b/abcg/doc/html/search/enumvalues_8.html deleted file mode 100644 index 674ccda69..000000000 --- a/abcg/doc/html/search/enumvalues_8.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_8.js b/abcg/doc/html/search/enumvalues_8.js index 8e6bf8c65..ed121a577 100644 --- a/abcg/doc/html/search/enumvalues_8.js +++ b/abcg/doc/html/search/enumvalues_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['task_1031',['Task',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f',1,'abcg']]], - ['tessellationcontrol_1032',['TessellationControl',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a',1,'abcg']]], - ['tessellationevaluation_1033',['TessellationEvaluation',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952',1,'abcg']]] + ['task_0',['Task',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daaeaeb30f9f18e0c50b178676f3eaef45f',1,'abcg']]], + ['tessellationcontrol_1',['TessellationControl',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa91a08ad964ef35c89ae69cd4176cfb4a',1,'abcg']]], + ['tessellationevaluation_2',['TessellationEvaluation',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daa85a5d743bd284736223e3c1e95c6b952',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/enumvalues_9.html b/abcg/doc/html/search/enumvalues_9.html deleted file mode 100644 index 60f15ee38..000000000 --- a/abcg/doc/html/search/enumvalues_9.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/enumvalues_9.js b/abcg/doc/html/search/enumvalues_9.js index 81ff340aa..1d5db69a9 100644 --- a/abcg/doc/html/search/enumvalues_9.js +++ b/abcg/doc/html/search/enumvalues_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['vertex_1034',['Vertex',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6',1,'abcg']]] + ['vertex_0',['Vertex',['../namespaceabcg.html#a9853f19ed2d55b91bc64fde5a95e40daab22b929ba52471a02d18bb3a4e4472e6',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/files_0.html b/abcg/doc/html/search/files_0.html deleted file mode 100644 index 9498842a6..000000000 --- a/abcg/doc/html/search/files_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/files_0.js b/abcg/doc/html/search/files_0.js index 002485b7e..98e707ead 100644 --- a/abcg/doc/html/search/files_0.js +++ b/abcg/doc/html/search/files_0.js @@ -1,55 +1,55 @@ var searchData= [ - ['abcg_2ehpp_552',['abcg.hpp',['../abcg_8hpp.html',1,'']]], - ['abcgapplication_2ecpp_553',['abcgApplication.cpp',['../abcgApplication_8cpp.html',1,'']]], - ['abcgapplication_2ehpp_554',['abcgApplication.hpp',['../abcgApplication_8hpp.html',1,'']]], - ['abcgembeddedfonts_2ehpp_555',['abcgEmbeddedFonts.hpp',['../abcgEmbeddedFonts_8hpp.html',1,'']]], - ['abcgexception_2ecpp_556',['abcgException.cpp',['../abcgException_8cpp.html',1,'']]], - ['abcgexception_2ehpp_557',['abcgException.hpp',['../abcgException_8hpp.html',1,'']]], - ['abcgexternal_2ehpp_558',['abcgExternal.hpp',['../abcgExternal_8hpp.html',1,'']]], - ['abcgimage_2ecpp_559',['abcgImage.cpp',['../abcgImage_8cpp.html',1,'']]], - ['abcgimage_2ehpp_560',['abcgImage.hpp',['../abcgImage_8hpp.html',1,'']]], - ['abcgopengl_2ehpp_561',['abcgOpenGL.hpp',['../abcgOpenGL_8hpp.html',1,'']]], - ['abcgopenglerror_2ecpp_562',['abcgOpenGLError.cpp',['../abcgOpenGLError_8cpp.html',1,'']]], - ['abcgopenglerror_2ehpp_563',['abcgOpenGLError.hpp',['../abcgOpenGLError_8hpp.html',1,'']]], - ['abcgopenglexternal_2ehpp_564',['abcgOpenGLExternal.hpp',['../abcgOpenGLExternal_8hpp.html',1,'']]], - ['abcgopenglfunction_2ecpp_565',['abcgOpenGLFunction.cpp',['../abcgOpenGLFunction_8cpp.html',1,'']]], - ['abcgopenglfunction_2ehpp_566',['abcgOpenGLFunction.hpp',['../abcgOpenGLFunction_8hpp.html',1,'']]], - ['abcgopenglimage_2ecpp_567',['abcgOpenGLImage.cpp',['../abcgOpenGLImage_8cpp.html',1,'']]], - ['abcgopenglimage_2ehpp_568',['abcgOpenGLImage.hpp',['../abcgOpenGLImage_8hpp.html',1,'']]], - ['abcgopenglshader_2ecpp_569',['abcgOpenGLShader.cpp',['../abcgOpenGLShader_8cpp.html',1,'']]], - ['abcgopenglshader_2ehpp_570',['abcgOpenGLShader.hpp',['../abcgOpenGLShader_8hpp.html',1,'']]], - ['abcgopenglwindow_2ecpp_571',['abcgOpenGLWindow.cpp',['../abcgOpenGLWindow_8cpp.html',1,'']]], - ['abcgopenglwindow_2ehpp_572',['abcgOpenGLWindow.hpp',['../abcgOpenGLWindow_8hpp.html',1,'']]], - ['abcgshader_2ehpp_573',['abcgShader.hpp',['../abcgShader_8hpp.html',1,'']]], - ['abcgtimer_2ecpp_574',['abcgTimer.cpp',['../abcgTimer_8cpp.html',1,'']]], - ['abcgtimer_2ehpp_575',['abcgTimer.hpp',['../abcgTimer_8hpp.html',1,'']]], - ['abcgtrackball_2ecpp_576',['abcgTrackball.cpp',['../abcgTrackball_8cpp.html',1,'']]], - ['abcgtrackball_2ehpp_577',['abcgTrackball.hpp',['../abcgTrackball_8hpp.html',1,'']]], - ['abcgutil_2ecpp_578',['abcgUtil.cpp',['../abcgUtil_8cpp.html',1,'']]], - ['abcgutil_2ehpp_579',['abcgUtil.hpp',['../abcgUtil_8hpp.html',1,'']]], - ['abcgvulkan_2ehpp_580',['abcgVulkan.hpp',['../abcgVulkan_8hpp.html',1,'']]], - ['abcgvulkanbuffer_2ecpp_581',['abcgVulkanBuffer.cpp',['../abcgVulkanBuffer_8cpp.html',1,'']]], - ['abcgvulkanbuffer_2ehpp_582',['abcgVulkanBuffer.hpp',['../abcgVulkanBuffer_8hpp.html',1,'']]], - ['abcgvulkandevice_2ecpp_583',['abcgVulkanDevice.cpp',['../abcgVulkanDevice_8cpp.html',1,'']]], - ['abcgvulkandevice_2ehpp_584',['abcgVulkanDevice.hpp',['../abcgVulkanDevice_8hpp.html',1,'']]], - ['abcgvulkanerror_2ecpp_585',['abcgVulkanError.cpp',['../abcgVulkanError_8cpp.html',1,'']]], - ['abcgvulkanerror_2ehpp_586',['abcgVulkanError.hpp',['../abcgVulkanError_8hpp.html',1,'']]], - ['abcgvulkanexternal_2ehpp_587',['abcgVulkanExternal.hpp',['../abcgVulkanExternal_8hpp.html',1,'']]], - ['abcgvulkanimage_2ecpp_588',['abcgVulkanImage.cpp',['../abcgVulkanImage_8cpp.html',1,'']]], - ['abcgvulkanimage_2ehpp_589',['abcgVulkanImage.hpp',['../abcgVulkanImage_8hpp.html',1,'']]], - ['abcgvulkaninstance_2ecpp_590',['abcgVulkanInstance.cpp',['../abcgVulkanInstance_8cpp.html',1,'']]], - ['abcgvulkaninstance_2ehpp_591',['abcgVulkanInstance.hpp',['../abcgVulkanInstance_8hpp.html',1,'']]], - ['abcgvulkanphysicaldevice_2ecpp_592',['abcgVulkanPhysicalDevice.cpp',['../abcgVulkanPhysicalDevice_8cpp.html',1,'']]], - ['abcgvulkanphysicaldevice_2ehpp_593',['abcgVulkanPhysicalDevice.hpp',['../abcgVulkanPhysicalDevice_8hpp.html',1,'']]], - ['abcgvulkanpipeline_2ecpp_594',['abcgVulkanPipeline.cpp',['../abcgVulkanPipeline_8cpp.html',1,'']]], - ['abcgvulkanpipeline_2ehpp_595',['abcgVulkanPipeline.hpp',['../abcgVulkanPipeline_8hpp.html',1,'']]], - ['abcgvulkanshader_2ecpp_596',['abcgVulkanShader.cpp',['../abcgVulkanShader_8cpp.html',1,'']]], - ['abcgvulkanshader_2ehpp_597',['abcgVulkanShader.hpp',['../abcgVulkanShader_8hpp.html',1,'']]], - ['abcgvulkanswapchain_2ecpp_598',['abcgVulkanSwapchain.cpp',['../abcgVulkanSwapchain_8cpp.html',1,'']]], - ['abcgvulkanswapchain_2ehpp_599',['abcgVulkanSwapchain.hpp',['../abcgVulkanSwapchain_8hpp.html',1,'']]], - ['abcgvulkanwindow_2ecpp_600',['abcgVulkanWindow.cpp',['../abcgVulkanWindow_8cpp.html',1,'']]], - ['abcgvulkanwindow_2ehpp_601',['abcgVulkanWindow.hpp',['../abcgVulkanWindow_8hpp.html',1,'']]], - ['abcgwindow_2ecpp_602',['abcgWindow.cpp',['../abcgWindow_8cpp.html',1,'']]], - ['abcgwindow_2ehpp_603',['abcgWindow.hpp',['../abcgWindow_8hpp.html',1,'']]] + ['abcg_2ehpp_0',['abcg.hpp',['../abcg_8hpp.html',1,'']]], + ['abcgapplication_2ecpp_1',['abcgApplication.cpp',['../abcgApplication_8cpp.html',1,'']]], + ['abcgapplication_2ehpp_2',['abcgApplication.hpp',['../abcgApplication_8hpp.html',1,'']]], + ['abcgembeddedfonts_2ehpp_3',['abcgEmbeddedFonts.hpp',['../abcgEmbeddedFonts_8hpp.html',1,'']]], + ['abcgexception_2ecpp_4',['abcgException.cpp',['../abcgException_8cpp.html',1,'']]], + ['abcgexception_2ehpp_5',['abcgException.hpp',['../abcgException_8hpp.html',1,'']]], + ['abcgexternal_2ehpp_6',['abcgExternal.hpp',['../abcgExternal_8hpp.html',1,'']]], + ['abcgimage_2ecpp_7',['abcgImage.cpp',['../abcgImage_8cpp.html',1,'']]], + ['abcgimage_2ehpp_8',['abcgImage.hpp',['../abcgImage_8hpp.html',1,'']]], + ['abcgopengl_2ehpp_9',['abcgOpenGL.hpp',['../abcgOpenGL_8hpp.html',1,'']]], + ['abcgopenglerror_2ecpp_10',['abcgOpenGLError.cpp',['../abcgOpenGLError_8cpp.html',1,'']]], + ['abcgopenglerror_2ehpp_11',['abcgOpenGLError.hpp',['../abcgOpenGLError_8hpp.html',1,'']]], + ['abcgopenglexternal_2ehpp_12',['abcgOpenGLExternal.hpp',['../abcgOpenGLExternal_8hpp.html',1,'']]], + ['abcgopenglfunction_2ecpp_13',['abcgOpenGLFunction.cpp',['../abcgOpenGLFunction_8cpp.html',1,'']]], + ['abcgopenglfunction_2ehpp_14',['abcgOpenGLFunction.hpp',['../abcgOpenGLFunction_8hpp.html',1,'']]], + ['abcgopenglimage_2ecpp_15',['abcgOpenGLImage.cpp',['../abcgOpenGLImage_8cpp.html',1,'']]], + ['abcgopenglimage_2ehpp_16',['abcgOpenGLImage.hpp',['../abcgOpenGLImage_8hpp.html',1,'']]], + ['abcgopenglshader_2ecpp_17',['abcgOpenGLShader.cpp',['../abcgOpenGLShader_8cpp.html',1,'']]], + ['abcgopenglshader_2ehpp_18',['abcgOpenGLShader.hpp',['../abcgOpenGLShader_8hpp.html',1,'']]], + ['abcgopenglwindow_2ecpp_19',['abcgOpenGLWindow.cpp',['../abcgOpenGLWindow_8cpp.html',1,'']]], + ['abcgopenglwindow_2ehpp_20',['abcgOpenGLWindow.hpp',['../abcgOpenGLWindow_8hpp.html',1,'']]], + ['abcgshader_2ehpp_21',['abcgShader.hpp',['../abcgShader_8hpp.html',1,'']]], + ['abcgtimer_2ecpp_22',['abcgTimer.cpp',['../abcgTimer_8cpp.html',1,'']]], + ['abcgtimer_2ehpp_23',['abcgTimer.hpp',['../abcgTimer_8hpp.html',1,'']]], + ['abcgtrackball_2ecpp_24',['abcgTrackball.cpp',['../abcgTrackball_8cpp.html',1,'']]], + ['abcgtrackball_2ehpp_25',['abcgTrackball.hpp',['../abcgTrackball_8hpp.html',1,'']]], + ['abcgutil_2ecpp_26',['abcgUtil.cpp',['../abcgUtil_8cpp.html',1,'']]], + ['abcgutil_2ehpp_27',['abcgUtil.hpp',['../abcgUtil_8hpp.html',1,'']]], + ['abcgvulkan_2ehpp_28',['abcgVulkan.hpp',['../abcgVulkan_8hpp.html',1,'']]], + ['abcgvulkanbuffer_2ecpp_29',['abcgVulkanBuffer.cpp',['../abcgVulkanBuffer_8cpp.html',1,'']]], + ['abcgvulkanbuffer_2ehpp_30',['abcgVulkanBuffer.hpp',['../abcgVulkanBuffer_8hpp.html',1,'']]], + ['abcgvulkandevice_2ecpp_31',['abcgVulkanDevice.cpp',['../abcgVulkanDevice_8cpp.html',1,'']]], + ['abcgvulkandevice_2ehpp_32',['abcgVulkanDevice.hpp',['../abcgVulkanDevice_8hpp.html',1,'']]], + ['abcgvulkanerror_2ecpp_33',['abcgVulkanError.cpp',['../abcgVulkanError_8cpp.html',1,'']]], + ['abcgvulkanerror_2ehpp_34',['abcgVulkanError.hpp',['../abcgVulkanError_8hpp.html',1,'']]], + ['abcgvulkanexternal_2ehpp_35',['abcgVulkanExternal.hpp',['../abcgVulkanExternal_8hpp.html',1,'']]], + ['abcgvulkanimage_2ecpp_36',['abcgVulkanImage.cpp',['../abcgVulkanImage_8cpp.html',1,'']]], + ['abcgvulkanimage_2ehpp_37',['abcgVulkanImage.hpp',['../abcgVulkanImage_8hpp.html',1,'']]], + ['abcgvulkaninstance_2ecpp_38',['abcgVulkanInstance.cpp',['../abcgVulkanInstance_8cpp.html',1,'']]], + ['abcgvulkaninstance_2ehpp_39',['abcgVulkanInstance.hpp',['../abcgVulkanInstance_8hpp.html',1,'']]], + ['abcgvulkanphysicaldevice_2ecpp_40',['abcgVulkanPhysicalDevice.cpp',['../abcgVulkanPhysicalDevice_8cpp.html',1,'']]], + ['abcgvulkanphysicaldevice_2ehpp_41',['abcgVulkanPhysicalDevice.hpp',['../abcgVulkanPhysicalDevice_8hpp.html',1,'']]], + ['abcgvulkanpipeline_2ecpp_42',['abcgVulkanPipeline.cpp',['../abcgVulkanPipeline_8cpp.html',1,'']]], + ['abcgvulkanpipeline_2ehpp_43',['abcgVulkanPipeline.hpp',['../abcgVulkanPipeline_8hpp.html',1,'']]], + ['abcgvulkanshader_2ecpp_44',['abcgVulkanShader.cpp',['../abcgVulkanShader_8cpp.html',1,'']]], + ['abcgvulkanshader_2ehpp_45',['abcgVulkanShader.hpp',['../abcgVulkanShader_8hpp.html',1,'']]], + ['abcgvulkanswapchain_2ecpp_46',['abcgVulkanSwapchain.cpp',['../abcgVulkanSwapchain_8cpp.html',1,'']]], + ['abcgvulkanswapchain_2ehpp_47',['abcgVulkanSwapchain.hpp',['../abcgVulkanSwapchain_8hpp.html',1,'']]], + ['abcgvulkanwindow_2ecpp_48',['abcgVulkanWindow.cpp',['../abcgVulkanWindow_8cpp.html',1,'']]], + ['abcgvulkanwindow_2ehpp_49',['abcgVulkanWindow.hpp',['../abcgVulkanWindow_8hpp.html',1,'']]], + ['abcgwindow_2ecpp_50',['abcgWindow.cpp',['../abcgWindow_8cpp.html',1,'']]], + ['abcgwindow_2ehpp_51',['abcgWindow.hpp',['../abcgWindow_8hpp.html',1,'']]] ]; diff --git a/abcg/doc/html/search/files_1.html b/abcg/doc/html/search/files_1.html deleted file mode 100644 index 7050ef48a..000000000 --- a/abcg/doc/html/search/files_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/files_1.js b/abcg/doc/html/search/files_1.js index b188da918..c6c43675a 100644 --- a/abcg/doc/html/search/files_1.js +++ b/abcg/doc/html/search/files_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['changelog_2emd_604',['CHANGELOG.md',['../CHANGELOG_8md.html',1,'']]] + ['changelog_2emd_0',['CHANGELOG.md',['../CHANGELOG_8md.html',1,'']]] ]; diff --git a/abcg/doc/html/search/files_2.html b/abcg/doc/html/search/files_2.html deleted file mode 100644 index 497cdf5c7..000000000 --- a/abcg/doc/html/search/files_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/files_2.js b/abcg/doc/html/search/files_2.js index 640e4d83b..984767614 100644 --- a/abcg/doc/html/search/files_2.js +++ b/abcg/doc/html/search/files_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['readme_2emd_605',['README.md',['../README_8md.html',1,'']]] + ['readme_2emd_0',['README.md',['../README_8md.html',1,'']]] ]; diff --git a/abcg/doc/html/search/functions_0.html b/abcg/doc/html/search/functions_0.html deleted file mode 100644 index eb4c5014c..000000000 --- a/abcg/doc/html/search/functions_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_0.js b/abcg/doc/html/search/functions_0.js index 7d246626e..6049227a8 100644 --- a/abcg/doc/html/search/functions_0.js +++ b/abcg/doc/html/search/functions_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['application_606',['Application',['../classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54',1,'abcg::Application']]] + ['application_0',['Application',['../classabcg_1_1Application.html#ab8275b32a7f2ff090e15a906f5039f54',1,'abcg::Application']]] ]; diff --git a/abcg/doc/html/search/functions_1.html b/abcg/doc/html/search/functions_1.html deleted file mode 100644 index ef4088b89..000000000 --- a/abcg/doc/html/search/functions_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_1.js b/abcg/doc/html/search/functions_1.js index cb7f0b212..5324c1a2f 100644 --- a/abcg/doc/html/search/functions_1.js +++ b/abcg/doc/html/search/functions_1.js @@ -1,12 +1,12 @@ var searchData= [ - ['callgl_607',['callGL',['../namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1',1,'abcg']]], - ['checkglerror_608',['checkGLError',['../namespaceabcg.html#a319c7bd437a23751054bc1d092d9e0ae',1,'abcg']]], - ['checkopenglshadercompile_609',['checkOpenGLShaderCompile',['../namespaceabcg.html#ada2b3e076d6fe0c4dd27615e7f4d4d50',1,'abcg']]], - ['checkopenglshaderlink_610',['checkOpenGLShaderLink',['../namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5',1,'abcg']]], - ['checkrebuild_611',['checkRebuild',['../classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4',1,'abcg::VulkanSwapchain']]], - ['checkvkresult_612',['checkVkResult',['../namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9',1,'abcg']]], - ['create_613',['create',['../classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7',1,'abcg::VulkanBuffer::create()'],['../classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e',1,'abcg::Window::create()'],['../classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31',1,'abcg::VulkanSwapchain::create()'],['../classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2',1,'abcg::VulkanShader::create()'],['../classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0',1,'abcg::VulkanPipeline::create()'],['../classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730',1,'abcg::VulkanPhysicalDevice::create()'],['../classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730',1,'abcg::VulkanInstance::create()'],['../classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b',1,'abcg::VulkanImage::create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)'],['../classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d',1,'abcg::VulkanImage::create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)'],['../classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029',1,'abcg::VulkanDevice::create()']]], - ['createopenglprogram_614',['createOpenGLProgram',['../namespaceabcg.html#ac5dc51412a57521944dc7f4f32901af5',1,'abcg']]], - ['createsdlwindow_615',['createSDLWindow',['../classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e',1,'abcg::Window']]] + ['callgl_0',['callGL',['../namespaceabcg.html#a59fd1679b061fafcc7c087404e3e3ed1',1,'abcg']]], + ['checkglerror_1',['checkGLError',['../namespaceabcg.html#a319c7bd437a23751054bc1d092d9e0ae',1,'abcg']]], + ['checkopenglshadercompile_2',['checkOpenGLShaderCompile',['../namespaceabcg.html#ada2b3e076d6fe0c4dd27615e7f4d4d50',1,'abcg']]], + ['checkopenglshaderlink_3',['checkOpenGLShaderLink',['../namespaceabcg.html#aab59a12bb6313b5c58f5352ce6f380e5',1,'abcg']]], + ['checkrebuild_4',['checkRebuild',['../classabcg_1_1VulkanSwapchain.html#ac49877bbe8e638358d639373dba086f4',1,'abcg::VulkanSwapchain']]], + ['checkvkresult_5',['checkVkResult',['../namespaceabcg.html#a6dc603716e2c0c5a9ee71ff1ca9881d9',1,'abcg']]], + ['create_6',['create',['../classabcg_1_1VulkanBuffer.html#a63c95797fc3e4ddfb0c9282fae794dd7',1,'abcg::VulkanBuffer::create()'],['../classabcg_1_1Window.html#aae2263884294b506d2ffec789d3d4d9e',1,'abcg::Window::create()'],['../classabcg_1_1VulkanSwapchain.html#ab825b2bcd984c4efa9bf91f186b10f31',1,'abcg::VulkanSwapchain::create()'],['../classabcg_1_1VulkanShader.html#ab60a83a3d2045c1c4361eef0a2e64db2',1,'abcg::VulkanShader::create()'],['../classabcg_1_1VulkanPipeline.html#a743747edda95318ed91afe853d2a71c0',1,'abcg::VulkanPipeline::create()'],['../classabcg_1_1VulkanPhysicalDevice.html#ae39f878f560e709b08b634314d28d730',1,'abcg::VulkanPhysicalDevice::create()'],['../classabcg_1_1VulkanInstance.html#abdd4efd069ddeb2937f6771897765730',1,'abcg::VulkanInstance::create()'],['../classabcg_1_1VulkanImage.html#a05345978b7425f41b3248ea68050134b',1,'abcg::VulkanImage::create(VulkanDevice const &device, VulkanImageCreateInfo const &createInfo)'],['../classabcg_1_1VulkanImage.html#a9eeb71182f8999997c3298264f72ef0d',1,'abcg::VulkanImage::create(VulkanDevice const &device, std::string_view path, bool generateMipmaps=true)'],['../classabcg_1_1VulkanDevice.html#ab3e411047411d3fb64efc8689039e029',1,'abcg::VulkanDevice::create()']]], + ['createopenglprogram_7',['createOpenGLProgram',['../namespaceabcg.html#ac5dc51412a57521944dc7f4f32901af5',1,'abcg']]], + ['createsdlwindow_8',['createSDLWindow',['../classabcg_1_1Window.html#a0f9ac50c1babc71e1ac22207b4ccb48e',1,'abcg::Window']]] ]; diff --git a/abcg/doc/html/search/functions_10.html b/abcg/doc/html/search/functions_10.html deleted file mode 100644 index 1bdc12572..000000000 --- a/abcg/doc/html/search/functions_10.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_10.js b/abcg/doc/html/search/functions_10.js index be5ce88e5..ad977b3cb 100644 --- a/abcg/doc/html/search/functions_10.js +++ b/abcg/doc/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['_7ewindow_960',['~Window',['../classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f',1,'abcg::Window']]] + ['_7ewindow_0',['~Window',['../classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f',1,'abcg::Window']]] ]; diff --git a/abcg/doc/html/search/functions_11.html b/abcg/doc/html/search/functions_11.html deleted file mode 100644 index 188076ef2..000000000 --- a/abcg/doc/html/search/functions_11.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_11.js b/abcg/doc/html/search/functions_11.js deleted file mode 100644 index 875d7922e..000000000 --- a/abcg/doc/html/search/functions_11.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['_7evulkaninstance_866',['~VulkanInstance',['../classabcg_1_1VulkanInstance.html#a015e6dfc9efca510bbf7d2310e5c8d33',1,'abcg::VulkanInstance']]], - ['_7ewindow_867',['~Window',['../classabcg_1_1Window.html#aa992bd26564502aa09ff727c39e1088f',1,'abcg::Window']]] -]; diff --git a/abcg/doc/html/search/functions_2.html b/abcg/doc/html/search/functions_2.html deleted file mode 100644 index ca5aa10e6..000000000 --- a/abcg/doc/html/search/functions_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_2.js b/abcg/doc/html/search/functions_2.js index 8c5007e23..a6985ad66 100644 --- a/abcg/doc/html/search/functions_2.js +++ b/abcg/doc/html/search/functions_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['destroy_616',['destroy',['../classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae',1,'abcg::VulkanBuffer::destroy()'],['../classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4',1,'abcg::VulkanDevice::destroy()'],['../classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379',1,'abcg::VulkanImage::destroy()'],['../classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168',1,'abcg::VulkanInstance::destroy()'],['../classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281',1,'abcg::VulkanPhysicalDevice::destroy()'],['../classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac',1,'abcg::VulkanPipeline::destroy()'],['../classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1',1,'abcg::VulkanShader::destroy()'],['../classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa',1,'abcg::VulkanSwapchain::destroy()'],['../classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f',1,'abcg::Window::destroy()']]] + ['destroy_0',['destroy',['../classabcg_1_1VulkanBuffer.html#a873139d866527c0c51ed24bc20e1f3ae',1,'abcg::VulkanBuffer::destroy()'],['../classabcg_1_1VulkanDevice.html#a0aa55708bd0aa0567f916c51343d03a4',1,'abcg::VulkanDevice::destroy()'],['../classabcg_1_1VulkanImage.html#acee63c8c454d5cc8e03f8381048b1379',1,'abcg::VulkanImage::destroy()'],['../classabcg_1_1VulkanInstance.html#a617850d1b31fc2b4960951ff839f5168',1,'abcg::VulkanInstance::destroy()'],['../classabcg_1_1VulkanPhysicalDevice.html#aa262040394eb85c78a40ab094f6ea281',1,'abcg::VulkanPhysicalDevice::destroy()'],['../classabcg_1_1VulkanPipeline.html#a15da4398f57661508f2585c552c23cac',1,'abcg::VulkanPipeline::destroy()'],['../classabcg_1_1VulkanShader.html#a276c5416ca86523a0871c2f2cf5c1fe1',1,'abcg::VulkanShader::destroy()'],['../classabcg_1_1VulkanSwapchain.html#ad4e607604552ba16cead8372ee5894aa',1,'abcg::VulkanSwapchain::destroy()'],['../classabcg_1_1Window.html#a93a2812c3be1df4d1fd92f1db13e4e1f',1,'abcg::Window::destroy()']]] ]; diff --git a/abcg/doc/html/search/functions_3.html b/abcg/doc/html/search/functions_3.html deleted file mode 100644 index d79f55b8e..000000000 --- a/abcg/doc/html/search/functions_3.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_3.js b/abcg/doc/html/search/functions_3.js index 11a2c6d9e..09322eab9 100644 --- a/abcg/doc/html/search/functions_3.js +++ b/abcg/doc/html/search/functions_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['elapsed_617',['elapsed',['../classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e',1,'abcg::Timer']]], - ['exception_618',['Exception',['../classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71',1,'abcg::Exception']]] + ['elapsed_0',['elapsed',['../classabcg_1_1Timer.html#a70a10ae27c24c5d559c688d7abe0a62e',1,'abcg::Timer']]], + ['exception_1',['Exception',['../classabcg_1_1Exception.html#a264c852c597e5fad26cee2090b7ebd71',1,'abcg::Exception']]] ]; diff --git a/abcg/doc/html/search/functions_4.html b/abcg/doc/html/search/functions_4.html deleted file mode 100644 index 1657cad0d..000000000 --- a/abcg/doc/html/search/functions_4.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_4.js b/abcg/doc/html/search/functions_4.js index 58028a3e4..3ab29fe8c 100644 --- a/abcg/doc/html/search/functions_4.js +++ b/abcg/doc/html/search/functions_4.js @@ -1,6 +1,6 @@ var searchData= [ - ['findmemorytype_619',['findMemoryType',['../classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864',1,'abcg::VulkanPhysicalDevice']]], - ['fliphorizontally_620',['flipHorizontally',['../namespaceabcg.html#a070a6d04f8ddd3f8ffc85556822ad9b9',1,'abcg']]], - ['flipvertically_621',['flipVertically',['../namespaceabcg.html#afbf3c358b10f7ef9aef38acb758e12ca',1,'abcg']]] + ['findmemorytype_0',['findMemoryType',['../classabcg_1_1VulkanPhysicalDevice.html#a5f7aef77228188516dc469457b6a2864',1,'abcg::VulkanPhysicalDevice']]], + ['fliphorizontally_1',['flipHorizontally',['../namespaceabcg.html#a070a6d04f8ddd3f8ffc85556822ad9b9',1,'abcg']]], + ['flipvertically_2',['flipVertically',['../namespaceabcg.html#afbf3c358b10f7ef9aef38acb758e12ca',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/functions_5.html b/abcg/doc/html/search/functions_5.html deleted file mode 100644 index 9301d6b9c..000000000 --- a/abcg/doc/html/search/functions_5.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_5.js b/abcg/doc/html/search/functions_5.js index 81722ebef..25aa81556 100644 --- a/abcg/doc/html/search/functions_5.js +++ b/abcg/doc/html/search/functions_5.js @@ -1,289 +1,289 @@ var searchData= [ - ['getassetspath_622',['getAssetsPath',['../classabcg_1_1Application.html#a0ba09deb85be01372abf095ebccfd90a',1,'abcg::Application']]], - ['getbasepath_623',['getBasePath',['../classabcg_1_1Application.html#a28b5d11e55d9aaef73b329503fe7725d',1,'abcg::Application']]], - ['getcommandpools_624',['getCommandPools',['../classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8',1,'abcg::VulkanDevice']]], - ['getcurrentframe_625',['getCurrentFrame',['../classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217',1,'abcg::VulkanSwapchain']]], - ['getdeltatime_626',['getDeltaTime',['../classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2',1,'abcg::Window']]], - ['getdepthimage_627',['getDepthImage',['../classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404',1,'abcg::VulkanSwapchain']]], - ['getdescriptorimageinfo_628',['getDescriptorImageInfo',['../classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b',1,'abcg::VulkanImage']]], - ['getdevice_629',['getDevice',['../classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a',1,'abcg::VulkanSwapchain::getDevice()'],['../classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f',1,'abcg::VulkanWindow::getDevice()']]], - ['getdevicememory_630',['getDeviceMemory',['../classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8',1,'abcg::VulkanBuffer::getDeviceMemory()'],['../classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca',1,'abcg::VulkanImage::getDeviceMemory()']]], - ['getelapsedtime_631',['getElapsedTime',['../classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe',1,'abcg::Window']]], - ['getextent_632',['getExtent',['../classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d',1,'abcg::VulkanSwapchain']]], - ['getfirstsupportedformat_633',['getFirstSupportedFormat',['../classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32',1,'abcg::VulkanPhysicalDevice']]], - ['getframes_634',['getFrames',['../classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e',1,'abcg::VulkanSwapchain']]], - ['getinstance_635',['getInstance',['../classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209',1,'abcg::VulkanPhysicalDevice']]], - ['getlayout_636',['getLayout',['../classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1',1,'abcg::VulkanPipeline']]], - ['getmainrenderpass_637',['getMainRenderPass',['../classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3',1,'abcg::VulkanSwapchain']]], - ['getmiplevels_638',['getMipLevels',['../classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5',1,'abcg::VulkanImage']]], - ['getmodule_639',['getModule',['../classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d',1,'abcg::VulkanShader']]], - ['getopenglsettings_640',['getOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e',1,'abcg::OpenGLWindow']]], - ['getphysicaldevice_641',['getPhysicalDevice',['../classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41',1,'abcg::VulkanDevice::getPhysicalDevice()'],['../classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e',1,'abcg::VulkanWindow::getPhysicalDevice()']]], - ['getqueues_642',['getQueues',['../classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e',1,'abcg::VulkanDevice']]], - ['getqueuesfamilies_643',['getQueuesFamilies',['../classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6',1,'abcg::VulkanPhysicalDevice']]], - ['getrotation_644',['getRotation',['../classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264',1,'abcg::TrackBall']]], - ['getsamplecount_645',['getSampleCount',['../classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4',1,'abcg::VulkanPhysicalDevice']]], - ['getsdlwindow_646',['getSDLWindow',['../classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c',1,'abcg::Window']]], - ['getsdlwindowid_647',['getSDLWindowID',['../classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf',1,'abcg::Window']]], - ['getstage_648',['getStage',['../classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7',1,'abcg::VulkanShader']]], - ['getsurfacekhr_649',['getSurfaceKHR',['../classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4',1,'abcg::VulkanPhysicalDevice']]], - ['getswapchain_650',['getSwapchain',['../classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a',1,'abcg::VulkanWindow']]], - ['getuirenderpass_651',['getUIRenderPass',['../classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580',1,'abcg::VulkanSwapchain']]], - ['getview_652',['getView',['../classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141',1,'abcg::VulkanImage']]], - ['getvulkansettings_653',['getVulkanSettings',['../classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5',1,'abcg::VulkanWindow']]], - ['getwindowsettings_654',['getWindowSettings',['../classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679',1,'abcg::Window']]], - ['getwindowsize_655',['getWindowSize',['../classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c',1,'abcg::Window']]], - ['glactivetexture_656',['glActiveTexture',['../namespaceabcg.html#abebf61480d8b46ad61238624521c440c',1,'abcg']]], - ['glattachshader_657',['glAttachShader',['../namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54',1,'abcg']]], - ['glbeginquery_658',['glBeginQuery',['../namespaceabcg.html#a43ea888d5366cd13f8559ae5c45e503e',1,'abcg']]], - ['glbegintransformfeedback_659',['glBeginTransformFeedback',['../namespaceabcg.html#a4284264dbf0f5c318686f11bce8183cf',1,'abcg']]], - ['glbindattriblocation_660',['glBindAttribLocation',['../namespaceabcg.html#ae5d99843e0bc8a0c59503a2530d56d48',1,'abcg']]], - ['glbindbuffer_661',['glBindBuffer',['../namespaceabcg.html#a3cd63c5a736b0e401ad6e4ab6ea1ec41',1,'abcg']]], - ['glbindbufferbase_662',['glBindBufferBase',['../namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad',1,'abcg']]], - ['glbindbufferrange_663',['glBindBufferRange',['../namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce',1,'abcg']]], - ['glbindfragdatalocation_664',['glBindFragDataLocation',['../namespaceabcg.html#a3f007c8f6d4d4ed049b66e03328d5b30',1,'abcg']]], - ['glbindframebuffer_665',['glBindFramebuffer',['../namespaceabcg.html#aaef0756c5e371e4b80f652586438b594',1,'abcg']]], - ['glbindrenderbuffer_666',['glBindRenderbuffer',['../namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e',1,'abcg']]], - ['glbindsampler_667',['glBindSampler',['../namespaceabcg.html#afb3c84a308e303b503c6f0cdefd5f426',1,'abcg']]], - ['glbindtexture_668',['glBindTexture',['../namespaceabcg.html#adb43c7b544c334de5da3f6c2c30570ae',1,'abcg']]], - ['glbindtransformfeedback_669',['glBindTransformFeedback',['../namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9',1,'abcg']]], - ['glbindvertexarray_670',['glBindVertexArray',['../namespaceabcg.html#afe4c4f9e797dcd01910528c13ff471d4',1,'abcg']]], - ['glblendcolor_671',['glBlendColor',['../namespaceabcg.html#af87c9f438750ec5baa88caa3e204469c',1,'abcg']]], - ['glblendequation_672',['glBlendEquation',['../namespaceabcg.html#afa82d1d244c12d3f884e674b79a04f3e',1,'abcg']]], - ['glblendequationseparate_673',['glBlendEquationSeparate',['../namespaceabcg.html#a2e813667e01f4ea1e3a4ca5a16d4847e',1,'abcg']]], - ['glblendfunc_674',['glBlendFunc',['../namespaceabcg.html#a620308c51e62a88d78f44312b8931947',1,'abcg']]], - ['glblendfuncseparate_675',['glBlendFuncSeparate',['../namespaceabcg.html#a1156c925b568620ac51f94893db587ac',1,'abcg']]], - ['glblitframebuffer_676',['glBlitFramebuffer',['../namespaceabcg.html#aee53221fba9cbf13c75d78c9533da27b',1,'abcg']]], - ['glbufferdata_677',['glBufferData',['../namespaceabcg.html#a402e5079e8489cb8df8e3a6c5fcdbebf',1,'abcg']]], - ['glbuffersubdata_678',['glBufferSubData',['../namespaceabcg.html#af7091aa59a245999d277ec71e54b687f',1,'abcg']]], - ['glcheckframebufferstatus_679',['glCheckFramebufferStatus',['../namespaceabcg.html#a14b00e8df85dc5b1930b051be0f6a13d',1,'abcg']]], - ['glclear_680',['glClear',['../namespaceabcg.html#a37cf087e190d68ae489d69c1c7fb8c1a',1,'abcg']]], - ['glclearbufferfi_681',['glClearBufferfi',['../namespaceabcg.html#afd3d4e6a15e37502f806875152c161ec',1,'abcg']]], - ['glclearbufferfv_682',['glClearBufferfv',['../namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637',1,'abcg']]], - ['glclearbufferiv_683',['glClearBufferiv',['../namespaceabcg.html#a1b9de47c64a177ed5daf99eeee3c3f05',1,'abcg']]], - ['glclearbufferuiv_684',['glClearBufferuiv',['../namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d',1,'abcg']]], - ['glclearcolor_685',['glClearColor',['../namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f',1,'abcg']]], - ['glcleardepthf_686',['glClearDepthf',['../namespaceabcg.html#ace2477348a520f6b554b8b34662c53ac',1,'abcg']]], - ['glclearstencil_687',['glClearStencil',['../namespaceabcg.html#a3a4d7f77a063949bb602ac36ecc44319',1,'abcg']]], - ['glclientwaitsync_688',['glClientWaitSync',['../namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f',1,'abcg']]], - ['glcolormask_689',['glColorMask',['../namespaceabcg.html#a41326750eb174903b1bf4119b7f33e96',1,'abcg']]], - ['glcompileshader_690',['glCompileShader',['../namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7',1,'abcg']]], - ['glcompressedteximage2d_691',['glCompressedTexImage2D',['../namespaceabcg.html#aca8b5cd79464cb9dcb6bc0c2261407f1',1,'abcg']]], - ['glcompressedteximage3d_692',['glCompressedTexImage3D',['../namespaceabcg.html#ad7bbab39db44f5da2ba62fe1de5a9dba',1,'abcg']]], - ['glcompressedtexsubimage2d_693',['glCompressedTexSubImage2D',['../namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671',1,'abcg']]], - ['glcompressedtexsubimage3d_694',['glCompressedTexSubImage3D',['../namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae',1,'abcg']]], - ['glcopybuffersubdata_695',['glCopyBufferSubData',['../namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04',1,'abcg']]], - ['glcopyteximage2d_696',['glCopyTexImage2D',['../namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb',1,'abcg']]], - ['glcopytexsubimage2d_697',['glCopyTexSubImage2D',['../namespaceabcg.html#ab7826bb1da6c947977b5644c00538540',1,'abcg']]], - ['glcopytexsubimage3d_698',['glCopyTexSubImage3D',['../namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d',1,'abcg']]], - ['glcreateprogram_699',['glCreateProgram',['../namespaceabcg.html#a2449fe3ff11796b682ca51d2611e0f8c',1,'abcg']]], - ['glcreateshader_700',['glCreateShader',['../namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e',1,'abcg']]], - ['glcullface_701',['glCullFace',['../namespaceabcg.html#a1daed0c2b70ea52f0436053095125e44',1,'abcg']]], - ['gldeletebuffers_702',['glDeleteBuffers',['../namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c',1,'abcg']]], - ['gldeleteframebuffers_703',['glDeleteFramebuffers',['../namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e',1,'abcg']]], - ['gldeleteprogram_704',['glDeleteProgram',['../namespaceabcg.html#a1c0feac412868f91511bc6cee51c0472',1,'abcg']]], - ['gldeletequeries_705',['glDeleteQueries',['../namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da',1,'abcg']]], - ['gldeleterenderbuffers_706',['glDeleteRenderbuffers',['../namespaceabcg.html#aecca79eb3f54538532577cf2a21e067f',1,'abcg']]], - ['gldeletesamplers_707',['glDeleteSamplers',['../namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2',1,'abcg']]], - ['gldeleteshader_708',['glDeleteShader',['../namespaceabcg.html#ad378a150bf0c2b569ff5b22cd435acd6',1,'abcg']]], - ['gldeletesync_709',['glDeleteSync',['../namespaceabcg.html#a2f41106aca8b0948e9fb61a623413d08',1,'abcg']]], - ['gldeletetextures_710',['glDeleteTextures',['../namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63',1,'abcg']]], - ['gldeletetransformfeedbacks_711',['glDeleteTransformFeedbacks',['../namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174',1,'abcg']]], - ['gldeletevertexarrays_712',['glDeleteVertexArrays',['../namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2',1,'abcg']]], - ['gldepthfunc_713',['glDepthFunc',['../namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9',1,'abcg']]], - ['gldepthmask_714',['glDepthMask',['../namespaceabcg.html#a2c2a12a15c7b445dcee3d8656ca6dfbc',1,'abcg']]], - ['gldepthrangef_715',['glDepthRangef',['../namespaceabcg.html#a08dbe7a21733bff43ed976be14f99e9b',1,'abcg']]], - ['gldetachshader_716',['glDetachShader',['../namespaceabcg.html#a045bd908a5989d1ed1b6a4d28cc2bab6',1,'abcg']]], - ['gldisable_717',['glDisable',['../namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b',1,'abcg']]], - ['gldisablevertexattribarray_718',['glDisableVertexAttribArray',['../namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e',1,'abcg']]], - ['gldrawarrays_719',['glDrawArrays',['../namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338',1,'abcg']]], - ['gldrawarraysinstanced_720',['glDrawArraysInstanced',['../namespaceabcg.html#a32f7f0c0ce76c25248271a64c2b8e52b',1,'abcg']]], - ['gldrawbuffers_721',['glDrawBuffers',['../namespaceabcg.html#ae03a93e0f048e849bb5e37d712d7000c',1,'abcg']]], - ['gldrawelements_722',['glDrawElements',['../namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646',1,'abcg']]], - ['gldrawelementsinstanced_723',['glDrawElementsInstanced',['../namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49',1,'abcg']]], - ['gldrawrangeelements_724',['glDrawRangeElements',['../namespaceabcg.html#aa5e970181c35e076181628df29de48e5',1,'abcg']]], - ['glenable_725',['glEnable',['../namespaceabcg.html#a5ee5802eb4646b281e426e550658124f',1,'abcg']]], - ['glenablevertexattribarray_726',['glEnableVertexAttribArray',['../namespaceabcg.html#a2b8c6c76fcc9d16e4a29551cac8f428f',1,'abcg']]], - ['glendquery_727',['glEndQuery',['../namespaceabcg.html#acebb037ad49e0f3714436346cb370a3e',1,'abcg']]], - ['glendtransformfeedback_728',['glEndTransformFeedback',['../namespaceabcg.html#a1427186fdcf12b9897523589b1ddf20f',1,'abcg']]], - ['glfencesync_729',['glFenceSync',['../namespaceabcg.html#acf7bb9039752df88aba99ed50675ceb6',1,'abcg']]], - ['glfinish_730',['glFinish',['../namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e',1,'abcg']]], - ['glflush_731',['glFlush',['../namespaceabcg.html#ae0c6f2648cab3d1cd82a7ba910776e2b',1,'abcg']]], - ['glflushmappedbufferrange_732',['glFlushMappedBufferRange',['../namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d',1,'abcg']]], - ['glframebufferrenderbuffer_733',['glFramebufferRenderbuffer',['../namespaceabcg.html#a24715a37b830d861d7cdb1f2f24bd32d',1,'abcg']]], - ['glframebuffertexture_734',['glFramebufferTexture',['../namespaceabcg.html#adb0766367e9364b01040121a4c2c79ed',1,'abcg']]], - ['glframebuffertexture2d_735',['glFramebufferTexture2D',['../namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4',1,'abcg']]], - ['glframebuffertexturelayer_736',['glFramebufferTextureLayer',['../namespaceabcg.html#a399dc5200ed4b1c5ba36bc3aaa58c508',1,'abcg']]], - ['glfrontface_737',['glFrontFace',['../namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729',1,'abcg']]], - ['glgenbuffers_738',['glGenBuffers',['../namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a',1,'abcg']]], - ['glgeneratemipmap_739',['glGenerateMipmap',['../namespaceabcg.html#acc670193ec022e761c4af8976494ed07',1,'abcg']]], - ['glgenframebuffers_740',['glGenFramebuffers',['../namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a',1,'abcg']]], - ['glgenqueries_741',['glGenQueries',['../namespaceabcg.html#a86c415c268d7669e07339991c608e60b',1,'abcg']]], - ['glgenrenderbuffers_742',['glGenRenderbuffers',['../namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c',1,'abcg']]], - ['glgensamplers_743',['glGenSamplers',['../namespaceabcg.html#ada23095347757d96190b853daddf8434',1,'abcg']]], - ['glgentextures_744',['glGenTextures',['../namespaceabcg.html#ae1015bd07641da254a331d9b3238d96f',1,'abcg']]], - ['glgentransformfeedbacks_745',['glGenTransformFeedbacks',['../namespaceabcg.html#a251e7d7579160c8fad43d5ce06ee9b06',1,'abcg']]], - ['glgenvertexarrays_746',['glGenVertexArrays',['../namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d',1,'abcg']]], - ['glgetactiveattrib_747',['glGetActiveAttrib',['../namespaceabcg.html#ae0cdaa8143c25fdc5dd90b375a362816',1,'abcg']]], - ['glgetactiveuniform_748',['glGetActiveUniform',['../namespaceabcg.html#ac5aac5887d3a23fdd9e62db27eac53db',1,'abcg']]], - ['glgetactiveuniformblockiv_749',['glGetActiveUniformBlockiv',['../namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81',1,'abcg']]], - ['glgetactiveuniformblockname_750',['glGetActiveUniformBlockName',['../namespaceabcg.html#a242378c05d9480103f5375c8a8826c28',1,'abcg']]], - ['glgetactiveuniformsiv_751',['glGetActiveUniformsiv',['../namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f',1,'abcg']]], - ['glgetattachedshaders_752',['glGetAttachedShaders',['../namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727',1,'abcg']]], - ['glgetattriblocation_753',['glGetAttribLocation',['../namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7',1,'abcg']]], - ['glgetbooleanv_754',['glGetBooleanv',['../namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8',1,'abcg']]], - ['glgetbufferparameteri64v_755',['glGetBufferParameteri64v',['../namespaceabcg.html#a6b33c9c6944be9a18490575915090e22',1,'abcg']]], - ['glgetbufferparameteriv_756',['glGetBufferParameteriv',['../namespaceabcg.html#ac96ad909a86ceba40b0a92e7b227f992',1,'abcg']]], - ['glgetbufferpointerv_757',['glGetBufferPointerv',['../namespaceabcg.html#ada9205a4af5b2d12c78c16b5176a6a82',1,'abcg']]], - ['glgetdoublev_758',['glGetDoublev',['../namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7',1,'abcg']]], - ['glgetfloatv_759',['glGetFloatv',['../namespaceabcg.html#af0c9e138d135378a3de00663c616cf46',1,'abcg']]], - ['glgetfragdatalocation_760',['glGetFragDataLocation',['../namespaceabcg.html#a1468aeed842d55a612da7a8257f5006f',1,'abcg']]], - ['glgetframebufferattachmentparameteriv_761',['glGetFramebufferAttachmentParameteriv',['../namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b',1,'abcg']]], - ['glgetinteger64i_5fv_762',['glGetInteger64i_v',['../namespaceabcg.html#ac2e13dc4a2ded3237be1ca90bad68d4e',1,'abcg']]], - ['glgetinteger64v_763',['glGetInteger64v',['../namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f',1,'abcg']]], - ['glgetintegeri_5fv_764',['glGetIntegeri_v',['../namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847',1,'abcg']]], - ['glgetintegerv_765',['glGetIntegerv',['../namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5',1,'abcg']]], - ['glgetinternalformativ_766',['glGetInternalformativ',['../namespaceabcg.html#a56430f42fc367519455b993473579b79',1,'abcg']]], - ['glgetprogrambinary_767',['glGetProgramBinary',['../namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37',1,'abcg']]], - ['glgetprograminfolog_768',['glGetProgramInfoLog',['../namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c',1,'abcg']]], - ['glgetprogramiv_769',['glGetProgramiv',['../namespaceabcg.html#afa031f5f52ad88625a88e1410478d892',1,'abcg']]], - ['glgetqueryiv_770',['glGetQueryiv',['../namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9',1,'abcg']]], - ['glgetqueryobjectuiv_771',['glGetQueryObjectuiv',['../namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972',1,'abcg']]], - ['glgetrenderbufferparameteriv_772',['glGetRenderbufferParameteriv',['../namespaceabcg.html#a3c9dd56405aa600ef77b3194ddec1c52',1,'abcg']]], - ['glgetsamplerparameterfv_773',['glGetSamplerParameterfv',['../namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5',1,'abcg']]], - ['glgetsamplerparameteriv_774',['glGetSamplerParameteriv',['../namespaceabcg.html#ae6ea1aa7744033cbe3a10ec3b646e30d',1,'abcg']]], - ['glgetshaderinfolog_775',['glGetShaderInfoLog',['../namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03',1,'abcg']]], - ['glgetshaderiv_776',['glGetShaderiv',['../namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b',1,'abcg']]], - ['glgetshaderprecisionformat_777',['glGetShaderPrecisionFormat',['../namespaceabcg.html#a0690d7a9fb1fbe27f1630b51a6ef506f',1,'abcg']]], - ['glgetshadersource_778',['glGetShaderSource',['../namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24',1,'abcg']]], - ['glgetstring_779',['glGetString',['../namespaceabcg.html#af419f0698487fc55f9fd8b7a424eb633',1,'abcg']]], - ['glgetstringi_780',['glGetStringi',['../namespaceabcg.html#ac2b042cb4fcd350f3efd9925f90bb068',1,'abcg']]], - ['glgetsynciv_781',['glGetSynciv',['../namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f',1,'abcg']]], - ['glgettexlevelparameterfv_782',['glGetTexLevelParameterfv',['../namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59',1,'abcg']]], - ['glgettexlevelparameteriv_783',['glGetTexLevelParameteriv',['../namespaceabcg.html#aee3c58bf82ea8186bfab4f2942997022',1,'abcg']]], - ['glgettexparameterfv_784',['glGetTexParameterfv',['../namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c',1,'abcg']]], - ['glgettexparameteriv_785',['glGetTexParameteriv',['../namespaceabcg.html#ac768bcd240c1d1ad80589e5a248408df',1,'abcg']]], - ['glgettransformfeedbackvarying_786',['glGetTransformFeedbackVarying',['../namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4',1,'abcg']]], - ['glgetuniformblockindex_787',['glGetUniformBlockIndex',['../namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da',1,'abcg']]], - ['glgetuniformfv_788',['glGetUniformfv',['../namespaceabcg.html#ae51c6519e4ba4b2a237c148d5606d76c',1,'abcg']]], - ['glgetuniformindices_789',['glGetUniformIndices',['../namespaceabcg.html#ace8f774eff785ea7e9f90c1c6b8e4425',1,'abcg']]], - ['glgetuniformiv_790',['glGetUniformiv',['../namespaceabcg.html#a3ed72ff0a3751e87af8369466f3a1cbf',1,'abcg']]], - ['glgetuniformlocation_791',['glGetUniformLocation',['../namespaceabcg.html#a22cb6b45a1ae2153d289a0ee3ac7729a',1,'abcg']]], - ['glgetuniformuiv_792',['glGetUniformuiv',['../namespaceabcg.html#acffb14045c39d65f3f8bead758313fbc',1,'abcg']]], - ['glgetvertexattribfv_793',['glGetVertexAttribfv',['../namespaceabcg.html#aedab4d42e7085a4bab268099b2d1346d',1,'abcg']]], - ['glgetvertexattribiiv_794',['glGetVertexAttribIiv',['../namespaceabcg.html#ad31542472e21428d05473b3ebe2489ee',1,'abcg']]], - ['glgetvertexattribiuiv_795',['glGetVertexAttribIuiv',['../namespaceabcg.html#a6a360138b05890b13f8439344e08512f',1,'abcg']]], - ['glgetvertexattribiv_796',['glGetVertexAttribiv',['../namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278',1,'abcg']]], - ['glgetvertexattribpointerv_797',['glGetVertexAttribPointerv',['../namespaceabcg.html#aca5b82d3582454e73b1a86192124d485',1,'abcg']]], - ['glhint_798',['glHint',['../namespaceabcg.html#a97c884a2a934bf40d378024d81be625e',1,'abcg']]], - ['glinvalidateframebuffer_799',['glInvalidateFramebuffer',['../namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec',1,'abcg']]], - ['glinvalidatesubframebuffer_800',['glInvalidateSubFramebuffer',['../namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818',1,'abcg']]], - ['glisbuffer_801',['glIsBuffer',['../namespaceabcg.html#afb123afaf46459222024ea041cac15c7',1,'abcg']]], - ['glisenabled_802',['glIsEnabled',['../namespaceabcg.html#a2355d26ca6b32f64dd502ba787074e95',1,'abcg']]], - ['glisframebuffer_803',['glIsFramebuffer',['../namespaceabcg.html#abde059e7926e418ee7676f612480ca2e',1,'abcg']]], - ['glisprogram_804',['glIsProgram',['../namespaceabcg.html#ad8512fcd1782c81aaa121cd7e6c561d1',1,'abcg']]], - ['glisquery_805',['glIsQuery',['../namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9',1,'abcg']]], - ['glisrenderbuffer_806',['glIsRenderbuffer',['../namespaceabcg.html#a15acb0b1b9464f294f99aa989c44dc70',1,'abcg']]], - ['glissampler_807',['glIsSampler',['../namespaceabcg.html#ad85c0ff02a8b681ecb188752dd8ce9c0',1,'abcg']]], - ['glisshader_808',['glIsShader',['../namespaceabcg.html#a36db9b553f7422ea79b751c5763d194c',1,'abcg']]], - ['glissync_809',['glIsSync',['../namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364',1,'abcg']]], - ['glistexture_810',['glIsTexture',['../namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3',1,'abcg']]], - ['glistransformfeedback_811',['glIsTransformFeedback',['../namespaceabcg.html#aed892da4fd2e2517f53ca8c902d36a31',1,'abcg']]], - ['glisvertexarray_812',['glIsVertexArray',['../namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db',1,'abcg']]], - ['gllinewidth_813',['glLineWidth',['../namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b',1,'abcg']]], - ['gllinkprogram_814',['glLinkProgram',['../namespaceabcg.html#af84c0f4d0816181cba506f1703c037c2',1,'abcg']]], - ['glmapbufferrange_815',['glMapBufferRange',['../namespaceabcg.html#aaa863c0c9f439036f6d2b58e375ee105',1,'abcg']]], - ['glpausetransformfeedback_816',['glPauseTransformFeedback',['../namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d',1,'abcg']]], - ['glpixelstorei_817',['glPixelStorei',['../namespaceabcg.html#a05ece875ff476f630548c8cf7a0d952b',1,'abcg']]], - ['glpolygonoffset_818',['glPolygonOffset',['../namespaceabcg.html#afa173d8901021cb88486592fcc300a14',1,'abcg']]], - ['glprogrambinary_819',['glProgramBinary',['../namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc',1,'abcg']]], - ['glprogramparameteri_820',['glProgramParameteri',['../namespaceabcg.html#ae48fb31c3e26632acba7e1a9753ee5c9',1,'abcg']]], - ['glreadbuffer_821',['glReadBuffer',['../namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f',1,'abcg']]], - ['glreadpixels_822',['glReadPixels',['../namespaceabcg.html#ae8720c564832cd331d886e24aaf68c29',1,'abcg']]], - ['glreleaseshadercompiler_823',['glReleaseShaderCompiler',['../namespaceabcg.html#a3e97ab629b7cc5d4c7259e521ebe5fb7',1,'abcg']]], - ['glrenderbufferstorage_824',['glRenderbufferStorage',['../namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593',1,'abcg']]], - ['glrenderbufferstoragemultisample_825',['glRenderbufferStorageMultisample',['../namespaceabcg.html#aee93697e0e0b92b0b73a9c374d4afff0',1,'abcg']]], - ['glresumetransformfeedback_826',['glResumeTransformFeedback',['../namespaceabcg.html#a81e93970a280fc3782f7577db7060458',1,'abcg']]], - ['glsamplecoverage_827',['glSampleCoverage',['../namespaceabcg.html#adee87442b65fa46fe96cceb6a21d496a',1,'abcg']]], - ['glsamplerparameterf_828',['glSamplerParameterf',['../namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad',1,'abcg']]], - ['glsamplerparameterfv_829',['glSamplerParameterfv',['../namespaceabcg.html#a03ba96b4728e99b4f58cce1f3e102b49',1,'abcg']]], - ['glsamplerparameteri_830',['glSamplerParameteri',['../namespaceabcg.html#ae9971e1b8abb781440101bac0968a897',1,'abcg']]], - ['glsamplerparameteriv_831',['glSamplerParameteriv',['../namespaceabcg.html#a304af29cf7db15205236d97e1836e79a',1,'abcg']]], - ['glscissor_832',['glScissor',['../namespaceabcg.html#ae1a3e82a002194c222284c5588998cfb',1,'abcg']]], - ['glshaderbinary_833',['glShaderBinary',['../namespaceabcg.html#af1c355ed607c699a2fbe6b56454b84db',1,'abcg']]], - ['glshadersource_834',['glShaderSource',['../namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914',1,'abcg']]], - ['glsltospv_835',['GLSLtoSPV',['../abcgVulkanShader_8cpp.html#a690f9c3849ca028c431f9332c4df888a',1,'abcgVulkanShader.cpp']]], - ['glstencilfunc_836',['glStencilFunc',['../namespaceabcg.html#ad1bc3b8d63e3b65fc3a1222ce789db3a',1,'abcg']]], - ['glstencilfuncseparate_837',['glStencilFuncSeparate',['../namespaceabcg.html#a10f604e428c78fad5ca881ecae15f9df',1,'abcg']]], - ['glstencilmask_838',['glStencilMask',['../namespaceabcg.html#a1f1123ce5bc6fade14962343ad3395f0',1,'abcg']]], - ['glstencilmaskseparate_839',['glStencilMaskSeparate',['../namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c',1,'abcg']]], - ['glstencilop_840',['glStencilOp',['../namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f',1,'abcg']]], - ['glstencilopseparate_841',['glStencilOpSeparate',['../namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706',1,'abcg']]], - ['glteximage2d_842',['glTexImage2D',['../namespaceabcg.html#ae220fd2c2bd61130ace06f851609903d',1,'abcg']]], - ['glteximage2dmultisample_843',['glTexImage2DMultisample',['../namespaceabcg.html#aea5f1cc76074ee940772a749cd1b57ad',1,'abcg']]], - ['glteximage3d_844',['glTexImage3D',['../namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735',1,'abcg']]], - ['gltexparameterf_845',['glTexParameterf',['../namespaceabcg.html#a3d91ea0fc162e4a0f5f6060418b6d61c',1,'abcg']]], - ['gltexparameterfv_846',['glTexParameterfv',['../namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea',1,'abcg']]], - ['gltexparameteri_847',['glTexParameteri',['../namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b',1,'abcg']]], - ['gltexparameteriv_848',['glTexParameteriv',['../namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41',1,'abcg']]], - ['gltexstorage2d_849',['glTexStorage2D',['../namespaceabcg.html#a4573fb1a4dd47d4a692b4602a4009918',1,'abcg']]], - ['gltexstorage3d_850',['glTexStorage3D',['../namespaceabcg.html#af9d8885c892cfeadf62c7280254d57f9',1,'abcg']]], - ['gltexsubimage2d_851',['glTexSubImage2D',['../namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34',1,'abcg']]], - ['gltexsubimage3d_852',['glTexSubImage3D',['../namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a',1,'abcg']]], - ['gltransformfeedbackvaryings_853',['glTransformFeedbackVaryings',['../namespaceabcg.html#a0f8299d53f2d5e195444be565301462c',1,'abcg']]], - ['gluniform1f_854',['glUniform1f',['../namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9',1,'abcg']]], - ['gluniform1fv_855',['glUniform1fv',['../namespaceabcg.html#a0a55fd40d1c8f2dfc0fd072e5b2c5ebc',1,'abcg']]], - ['gluniform1i_856',['glUniform1i',['../namespaceabcg.html#a17c9ec119f0c1c6d101a042131774ef9',1,'abcg']]], - ['gluniform1iv_857',['glUniform1iv',['../namespaceabcg.html#a2ac0fcc475813238eec19657e6d4899d',1,'abcg']]], - ['gluniform1ui_858',['glUniform1ui',['../namespaceabcg.html#a4566f93a590c2437fab4c2ac07ea1454',1,'abcg']]], - ['gluniform1uiv_859',['glUniform1uiv',['../namespaceabcg.html#ae712e6a279573982c1c5e7c569a47add',1,'abcg']]], - ['gluniform2f_860',['glUniform2f',['../namespaceabcg.html#aeed384502019a1ea9c53c5f79387f4a6',1,'abcg']]], - ['gluniform2fv_861',['glUniform2fv',['../namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979',1,'abcg']]], - ['gluniform2i_862',['glUniform2i',['../namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938',1,'abcg']]], - ['gluniform2iv_863',['glUniform2iv',['../namespaceabcg.html#adf14dfa164b234c7fbed7b45426b2d62',1,'abcg']]], - ['gluniform2ui_864',['glUniform2ui',['../namespaceabcg.html#ac9593131eae76be863d98795053363c5',1,'abcg']]], - ['gluniform2uiv_865',['glUniform2uiv',['../namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d',1,'abcg']]], - ['gluniform3f_866',['glUniform3f',['../namespaceabcg.html#a3ac2b6654fcb536e3d89e695b84d0229',1,'abcg']]], - ['gluniform3fv_867',['glUniform3fv',['../namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188',1,'abcg']]], - ['gluniform3i_868',['glUniform3i',['../namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970',1,'abcg']]], - ['gluniform3iv_869',['glUniform3iv',['../namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348',1,'abcg']]], - ['gluniform3ui_870',['glUniform3ui',['../namespaceabcg.html#aea378f4807f17ed76e8129260b35c1a1',1,'abcg']]], - ['gluniform3uiv_871',['glUniform3uiv',['../namespaceabcg.html#a15c8e64b115ca61dc7bd460af8447497',1,'abcg']]], - ['gluniform4f_872',['glUniform4f',['../namespaceabcg.html#a26ef61adcd575428307b9b9a92dc618c',1,'abcg']]], - ['gluniform4fv_873',['glUniform4fv',['../namespaceabcg.html#a3dbe8b9316fce91031a864a1a7b91497',1,'abcg']]], - ['gluniform4i_874',['glUniform4i',['../namespaceabcg.html#a3276a3ae4b0740216d4850df60881cfe',1,'abcg']]], - ['gluniform4iv_875',['glUniform4iv',['../namespaceabcg.html#afb64d90352e53e92718dd7f10a2822a6',1,'abcg']]], - ['gluniform4ui_876',['glUniform4ui',['../namespaceabcg.html#a506182a6eb4e8158ee10567344152470',1,'abcg']]], - ['gluniform4uiv_877',['glUniform4uiv',['../namespaceabcg.html#ac21f205c4a058a639fd695c4b4bf76fc',1,'abcg']]], - ['gluniformblockbinding_878',['glUniformBlockBinding',['../namespaceabcg.html#a81f720eec72780a58bf7719461d97971',1,'abcg']]], - ['gluniformmatrix2fv_879',['glUniformMatrix2fv',['../namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88',1,'abcg']]], - ['gluniformmatrix2x3fv_880',['glUniformMatrix2x3fv',['../namespaceabcg.html#ad53649314374711d76ff0b032950e9d2',1,'abcg']]], - ['gluniformmatrix2x4fv_881',['glUniformMatrix2x4fv',['../namespaceabcg.html#ae942855746c560463aed347013e2e84f',1,'abcg']]], - ['gluniformmatrix3fv_882',['glUniformMatrix3fv',['../namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94',1,'abcg']]], - ['gluniformmatrix3x2fv_883',['glUniformMatrix3x2fv',['../namespaceabcg.html#abb0b676883c3e5c717cea345b043a372',1,'abcg']]], - ['gluniformmatrix3x4fv_884',['glUniformMatrix3x4fv',['../namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132',1,'abcg']]], - ['gluniformmatrix4fv_885',['glUniformMatrix4fv',['../namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d',1,'abcg']]], - ['gluniformmatrix4x2fv_886',['glUniformMatrix4x2fv',['../namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6',1,'abcg']]], - ['gluniformmatrix4x3fv_887',['glUniformMatrix4x3fv',['../namespaceabcg.html#a2a4e0b3c0401e2a85fe389191c5d768f',1,'abcg']]], - ['glunmapbuffer_888',['glUnmapBuffer',['../namespaceabcg.html#a1f475772cbe67c5b2370ef179c99b614',1,'abcg']]], - ['gluseprogram_889',['glUseProgram',['../namespaceabcg.html#ac050825096a0ef3f71c0dd6452f9dfc0',1,'abcg']]], - ['glvalidateprogram_890',['glValidateProgram',['../namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252',1,'abcg']]], - ['glvertexattrib1f_891',['glVertexAttrib1f',['../namespaceabcg.html#af725d24a5b6b6483d1cd3420dc6ec011',1,'abcg']]], - ['glvertexattrib1fv_892',['glVertexAttrib1fv',['../namespaceabcg.html#aeff647ce94259b8e0fbe731595cf1931',1,'abcg']]], - ['glvertexattrib2f_893',['glVertexAttrib2f',['../namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7',1,'abcg']]], - ['glvertexattrib2fv_894',['glVertexAttrib2fv',['../namespaceabcg.html#a3be34bb76d1f704893e5ae334488f372',1,'abcg']]], - ['glvertexattrib3f_895',['glVertexAttrib3f',['../namespaceabcg.html#afa1466dac879205506b78b021aafff27',1,'abcg']]], - ['glvertexattrib3fv_896',['glVertexAttrib3fv',['../namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7',1,'abcg']]], - ['glvertexattrib4f_897',['glVertexAttrib4f',['../namespaceabcg.html#a16e4ed4c33c7e9abd8eb412c422c7f8a',1,'abcg']]], - ['glvertexattrib4fv_898',['glVertexAttrib4fv',['../namespaceabcg.html#af15b80a8f2eb74ae9de6f26996d3d51d',1,'abcg']]], - ['glvertexattribdivisor_899',['glVertexAttribDivisor',['../namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5',1,'abcg']]], - ['glvertexattribi4i_900',['glVertexAttribI4i',['../namespaceabcg.html#a298da5e81cd558e36acc8517f183330a',1,'abcg']]], - ['glvertexattribi4iv_901',['glVertexAttribI4iv',['../namespaceabcg.html#a2f957d37e18d6883d73b0c4d81c7925f',1,'abcg']]], - ['glvertexattribi4ui_902',['glVertexAttribI4ui',['../namespaceabcg.html#a3f20fa49edff456e65bcbbfc40befa92',1,'abcg']]], - ['glvertexattribi4uiv_903',['glVertexAttribI4uiv',['../namespaceabcg.html#ac1ce439bbbfbaca867e112c7c75fdf2e',1,'abcg']]], - ['glvertexattribipointer_904',['glVertexAttribIPointer',['../namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022',1,'abcg']]], - ['glvertexattribpointer_905',['glVertexAttribPointer',['../namespaceabcg.html#af56cc0ad4060e65221188cfa41a59168',1,'abcg']]], - ['glviewport_906',['glViewport',['../namespaceabcg.html#a4488c395e82a5408c4321a611f039c78',1,'abcg']]], - ['glwaitsync_907',['glWaitSync',['../namespaceabcg.html#a14893e8222fcaac3d07be752b3c72c04',1,'abcg']]] + ['getassetspath_0',['getAssetsPath',['../classabcg_1_1Application.html#a0ba09deb85be01372abf095ebccfd90a',1,'abcg::Application']]], + ['getbasepath_1',['getBasePath',['../classabcg_1_1Application.html#a28b5d11e55d9aaef73b329503fe7725d',1,'abcg::Application']]], + ['getcommandpools_2',['getCommandPools',['../classabcg_1_1VulkanDevice.html#a51281adfe9f7d437520c501939017de8',1,'abcg::VulkanDevice']]], + ['getcurrentframe_3',['getCurrentFrame',['../classabcg_1_1VulkanSwapchain.html#a695ca7f8a93eaa5e8a54554fec139217',1,'abcg::VulkanSwapchain']]], + ['getdeltatime_4',['getDeltaTime',['../classabcg_1_1Window.html#a084f822db9d33093e6940e312e3cf5b2',1,'abcg::Window']]], + ['getdepthimage_5',['getDepthImage',['../classabcg_1_1VulkanSwapchain.html#aed0f6c1452d14d397ab8aa0e929c5404',1,'abcg::VulkanSwapchain']]], + ['getdescriptorimageinfo_6',['getDescriptorImageInfo',['../classabcg_1_1VulkanImage.html#a8c7ee844b2493320c6bafa9485e80e8b',1,'abcg::VulkanImage']]], + ['getdevice_7',['getdevice',['../classabcg_1_1VulkanSwapchain.html#af63733016263f2ff3bbe4b3a16eaab6a',1,'abcg::VulkanSwapchain::getDevice()'],['../classabcg_1_1VulkanWindow.html#a5ebbf3a25baa85d38e2d1bde297f085f',1,'abcg::VulkanWindow::getDevice()']]], + ['getdevicememory_8',['getdevicememory',['../classabcg_1_1VulkanBuffer.html#a0a16b5a0699b4684cca7d1b2b3536fb8',1,'abcg::VulkanBuffer::getDeviceMemory()'],['../classabcg_1_1VulkanImage.html#a1f0d5d74b39ad1652bb4cafc217456ca',1,'abcg::VulkanImage::getDeviceMemory()']]], + ['getelapsedtime_9',['getElapsedTime',['../classabcg_1_1Window.html#a3f1cb9388f80c5f8c17dd61161f0bcbe',1,'abcg::Window']]], + ['getextent_10',['getExtent',['../classabcg_1_1VulkanSwapchain.html#a935ed2150d5edbe259ebc9559530455d',1,'abcg::VulkanSwapchain']]], + ['getfirstsupportedformat_11',['getFirstSupportedFormat',['../classabcg_1_1VulkanPhysicalDevice.html#a7576b47b13fd9277ab360900b631df32',1,'abcg::VulkanPhysicalDevice']]], + ['getframes_12',['getFrames',['../classabcg_1_1VulkanSwapchain.html#a666836f228c09910e966b5261057582e',1,'abcg::VulkanSwapchain']]], + ['getinstance_13',['getInstance',['../classabcg_1_1VulkanPhysicalDevice.html#a434af1aec8d9971df7d3e5440bca4209',1,'abcg::VulkanPhysicalDevice']]], + ['getlayout_14',['getLayout',['../classabcg_1_1VulkanPipeline.html#a8d36ff10042f814ab8ee85f8d05799e1',1,'abcg::VulkanPipeline']]], + ['getmainrenderpass_15',['getMainRenderPass',['../classabcg_1_1VulkanSwapchain.html#a671cf8a7a7acf3b7cdd40c46b4a04df3',1,'abcg::VulkanSwapchain']]], + ['getmiplevels_16',['getMipLevels',['../classabcg_1_1VulkanImage.html#a22c1075f56f68da84b6e930982ebd5a5',1,'abcg::VulkanImage']]], + ['getmodule_17',['getModule',['../classabcg_1_1VulkanShader.html#af6469274369f268db1bfeac8210ced7d',1,'abcg::VulkanShader']]], + ['getopenglsettings_18',['getOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#a83705042db987f58079d7bb16333ab9e',1,'abcg::OpenGLWindow']]], + ['getphysicaldevice_19',['getphysicaldevice',['../classabcg_1_1VulkanDevice.html#ac67a735b1d9d9a24de55d8f7e5e13a41',1,'abcg::VulkanDevice::getPhysicalDevice()'],['../classabcg_1_1VulkanWindow.html#abba4a10ebb8d0e2ffa151134ce0d2a1e',1,'abcg::VulkanWindow::getPhysicalDevice()']]], + ['getqueues_20',['getQueues',['../classabcg_1_1VulkanDevice.html#affac11164d370e9c19e85e408dbcb15e',1,'abcg::VulkanDevice']]], + ['getqueuesfamilies_21',['getQueuesFamilies',['../classabcg_1_1VulkanPhysicalDevice.html#af3eba085cd8bb0906582dbd19a453ca6',1,'abcg::VulkanPhysicalDevice']]], + ['getrotation_22',['getRotation',['../classabcg_1_1TrackBall.html#a5801a1f9825c5ee5fae329406f4b4264',1,'abcg::TrackBall']]], + ['getsamplecount_23',['getSampleCount',['../classabcg_1_1VulkanPhysicalDevice.html#abd707cb3aa6541b95d3b7cb81eb111a4',1,'abcg::VulkanPhysicalDevice']]], + ['getsdlwindow_24',['getSDLWindow',['../classabcg_1_1Window.html#a67cdaa1c83259bd7849c4756a730a22c',1,'abcg::Window']]], + ['getsdlwindowid_25',['getSDLWindowID',['../classabcg_1_1Window.html#a6bc85489a6372037ebb5946eb20cbeaf',1,'abcg::Window']]], + ['getstage_26',['getStage',['../classabcg_1_1VulkanShader.html#a6c4ce257ae31cb6a5e1b177a7931abf7',1,'abcg::VulkanShader']]], + ['getsurfacekhr_27',['getSurfaceKHR',['../classabcg_1_1VulkanPhysicalDevice.html#a70a971ebe68c20b730e849c666b067e4',1,'abcg::VulkanPhysicalDevice']]], + ['getswapchain_28',['getSwapchain',['../classabcg_1_1VulkanWindow.html#a1767221e5ba68e35fa0db9f53fd54d2a',1,'abcg::VulkanWindow']]], + ['getuirenderpass_29',['getUIRenderPass',['../classabcg_1_1VulkanSwapchain.html#a9695875598fb7718c64d0ebe43cdf580',1,'abcg::VulkanSwapchain']]], + ['getview_30',['getView',['../classabcg_1_1VulkanImage.html#a9fca443ff07a966aa4cf3fd1fa4aa141',1,'abcg::VulkanImage']]], + ['getvulkansettings_31',['getVulkanSettings',['../classabcg_1_1VulkanWindow.html#a935ae0c0c22ca856ee4c06acca611cb5',1,'abcg::VulkanWindow']]], + ['getwindowsettings_32',['getWindowSettings',['../classabcg_1_1Window.html#a8bbd4003a05c63ace76c08146b734679',1,'abcg::Window']]], + ['getwindowsize_33',['getWindowSize',['../classabcg_1_1Window.html#adf143544a9b62c5c838768a7b446162c',1,'abcg::Window']]], + ['glactivetexture_34',['glActiveTexture',['../namespaceabcg.html#abebf61480d8b46ad61238624521c440c',1,'abcg']]], + ['glattachshader_35',['glAttachShader',['../namespaceabcg.html#aadc675d08443dfb3f52d136d1e867c54',1,'abcg']]], + ['glbeginquery_36',['glBeginQuery',['../namespaceabcg.html#a43ea888d5366cd13f8559ae5c45e503e',1,'abcg']]], + ['glbegintransformfeedback_37',['glBeginTransformFeedback',['../namespaceabcg.html#a4284264dbf0f5c318686f11bce8183cf',1,'abcg']]], + ['glbindattriblocation_38',['glBindAttribLocation',['../namespaceabcg.html#ae5d99843e0bc8a0c59503a2530d56d48',1,'abcg']]], + ['glbindbuffer_39',['glBindBuffer',['../namespaceabcg.html#a3cd63c5a736b0e401ad6e4ab6ea1ec41',1,'abcg']]], + ['glbindbufferbase_40',['glBindBufferBase',['../namespaceabcg.html#aa48f81c11025d9e8fc04c681932392ad',1,'abcg']]], + ['glbindbufferrange_41',['glBindBufferRange',['../namespaceabcg.html#a88b58e0a1d0a1aa9d68a0e19e78657ce',1,'abcg']]], + ['glbindfragdatalocation_42',['glBindFragDataLocation',['../namespaceabcg.html#a3f007c8f6d4d4ed049b66e03328d5b30',1,'abcg']]], + ['glbindframebuffer_43',['glBindFramebuffer',['../namespaceabcg.html#aaef0756c5e371e4b80f652586438b594',1,'abcg']]], + ['glbindrenderbuffer_44',['glBindRenderbuffer',['../namespaceabcg.html#aa2ee20f9a4dfcf2e740b00b08fb46b3e',1,'abcg']]], + ['glbindsampler_45',['glBindSampler',['../namespaceabcg.html#afb3c84a308e303b503c6f0cdefd5f426',1,'abcg']]], + ['glbindtexture_46',['glBindTexture',['../namespaceabcg.html#adb43c7b544c334de5da3f6c2c30570ae',1,'abcg']]], + ['glbindtransformfeedback_47',['glBindTransformFeedback',['../namespaceabcg.html#a8881b494dbdda2e680d2abf82dccadd9',1,'abcg']]], + ['glbindvertexarray_48',['glBindVertexArray',['../namespaceabcg.html#afe4c4f9e797dcd01910528c13ff471d4',1,'abcg']]], + ['glblendcolor_49',['glBlendColor',['../namespaceabcg.html#af87c9f438750ec5baa88caa3e204469c',1,'abcg']]], + ['glblendequation_50',['glBlendEquation',['../namespaceabcg.html#afa82d1d244c12d3f884e674b79a04f3e',1,'abcg']]], + ['glblendequationseparate_51',['glBlendEquationSeparate',['../namespaceabcg.html#a2e813667e01f4ea1e3a4ca5a16d4847e',1,'abcg']]], + ['glblendfunc_52',['glBlendFunc',['../namespaceabcg.html#a620308c51e62a88d78f44312b8931947',1,'abcg']]], + ['glblendfuncseparate_53',['glBlendFuncSeparate',['../namespaceabcg.html#a1156c925b568620ac51f94893db587ac',1,'abcg']]], + ['glblitframebuffer_54',['glBlitFramebuffer',['../namespaceabcg.html#aee53221fba9cbf13c75d78c9533da27b',1,'abcg']]], + ['glbufferdata_55',['glBufferData',['../namespaceabcg.html#a402e5079e8489cb8df8e3a6c5fcdbebf',1,'abcg']]], + ['glbuffersubdata_56',['glBufferSubData',['../namespaceabcg.html#af7091aa59a245999d277ec71e54b687f',1,'abcg']]], + ['glcheckframebufferstatus_57',['glCheckFramebufferStatus',['../namespaceabcg.html#a14b00e8df85dc5b1930b051be0f6a13d',1,'abcg']]], + ['glclear_58',['glClear',['../namespaceabcg.html#a37cf087e190d68ae489d69c1c7fb8c1a',1,'abcg']]], + ['glclearbufferfi_59',['glClearBufferfi',['../namespaceabcg.html#afd3d4e6a15e37502f806875152c161ec',1,'abcg']]], + ['glclearbufferfv_60',['glClearBufferfv',['../namespaceabcg.html#a4ee2c8db262e80410ae7a854d16c8637',1,'abcg']]], + ['glclearbufferiv_61',['glClearBufferiv',['../namespaceabcg.html#a1b9de47c64a177ed5daf99eeee3c3f05',1,'abcg']]], + ['glclearbufferuiv_62',['glClearBufferuiv',['../namespaceabcg.html#a9e5f02ca43e19e99dc0681be375b453d',1,'abcg']]], + ['glclearcolor_63',['glClearColor',['../namespaceabcg.html#a71881ed09c733ef5db9301bfee7a2f5f',1,'abcg']]], + ['glcleardepthf_64',['glClearDepthf',['../namespaceabcg.html#ace2477348a520f6b554b8b34662c53ac',1,'abcg']]], + ['glclearstencil_65',['glClearStencil',['../namespaceabcg.html#a3a4d7f77a063949bb602ac36ecc44319',1,'abcg']]], + ['glclientwaitsync_66',['glClientWaitSync',['../namespaceabcg.html#a4f8e59d6c10733d194fc5a329e52245f',1,'abcg']]], + ['glcolormask_67',['glColorMask',['../namespaceabcg.html#a41326750eb174903b1bf4119b7f33e96',1,'abcg']]], + ['glcompileshader_68',['glCompileShader',['../namespaceabcg.html#a9ab713ec7c6e93a8f09b5278133dfcf7',1,'abcg']]], + ['glcompressedteximage2d_69',['glCompressedTexImage2D',['../namespaceabcg.html#aca8b5cd79464cb9dcb6bc0c2261407f1',1,'abcg']]], + ['glcompressedteximage3d_70',['glCompressedTexImage3D',['../namespaceabcg.html#ad7bbab39db44f5da2ba62fe1de5a9dba',1,'abcg']]], + ['glcompressedtexsubimage2d_71',['glCompressedTexSubImage2D',['../namespaceabcg.html#a7a481529107e6f722c37ac9d559fc671',1,'abcg']]], + ['glcompressedtexsubimage3d_72',['glCompressedTexSubImage3D',['../namespaceabcg.html#a96b8b60242b097fb74451d423dc79fae',1,'abcg']]], + ['glcopybuffersubdata_73',['glCopyBufferSubData',['../namespaceabcg.html#a914c501ed0eff87b4474d1594ecc2f04',1,'abcg']]], + ['glcopyteximage2d_74',['glCopyTexImage2D',['../namespaceabcg.html#a8788882dedc9d5a598dfad1f21f9d6eb',1,'abcg']]], + ['glcopytexsubimage2d_75',['glCopyTexSubImage2D',['../namespaceabcg.html#ab7826bb1da6c947977b5644c00538540',1,'abcg']]], + ['glcopytexsubimage3d_76',['glCopyTexSubImage3D',['../namespaceabcg.html#a9c896be2e2c6b41db3e1f4891e27bf8d',1,'abcg']]], + ['glcreateprogram_77',['glCreateProgram',['../namespaceabcg.html#a2449fe3ff11796b682ca51d2611e0f8c',1,'abcg']]], + ['glcreateshader_78',['glCreateShader',['../namespaceabcg.html#a62dfd7c0cdb61a2971697e3980094a0e',1,'abcg']]], + ['glcullface_79',['glCullFace',['../namespaceabcg.html#a1daed0c2b70ea52f0436053095125e44',1,'abcg']]], + ['gldeletebuffers_80',['glDeleteBuffers',['../namespaceabcg.html#aab8d9786020b3f0a4a3f3a969579741c',1,'abcg']]], + ['gldeleteframebuffers_81',['glDeleteFramebuffers',['../namespaceabcg.html#a6c490c5eb7640f40ae09f87b0c52d81e',1,'abcg']]], + ['gldeleteprogram_82',['glDeleteProgram',['../namespaceabcg.html#a1c0feac412868f91511bc6cee51c0472',1,'abcg']]], + ['gldeletequeries_83',['glDeleteQueries',['../namespaceabcg.html#a6ce400968a396129fa47a1f2afa4f3da',1,'abcg']]], + ['gldeleterenderbuffers_84',['glDeleteRenderbuffers',['../namespaceabcg.html#aecca79eb3f54538532577cf2a21e067f',1,'abcg']]], + ['gldeletesamplers_85',['glDeleteSamplers',['../namespaceabcg.html#a8d2a8ddcaa0d34736ef16578f2d159a2',1,'abcg']]], + ['gldeleteshader_86',['glDeleteShader',['../namespaceabcg.html#ad378a150bf0c2b569ff5b22cd435acd6',1,'abcg']]], + ['gldeletesync_87',['glDeleteSync',['../namespaceabcg.html#a2f41106aca8b0948e9fb61a623413d08',1,'abcg']]], + ['gldeletetextures_88',['glDeleteTextures',['../namespaceabcg.html#a71fd7066e8b3aba42012e4f0136adc63',1,'abcg']]], + ['gldeletetransformfeedbacks_89',['glDeleteTransformFeedbacks',['../namespaceabcg.html#a65fc031e96cb6e9c23237520f257e174',1,'abcg']]], + ['gldeletevertexarrays_90',['glDeleteVertexArrays',['../namespaceabcg.html#a5c7dcb111f3c739f8948b80a4a2d23e2',1,'abcg']]], + ['gldepthfunc_91',['glDepthFunc',['../namespaceabcg.html#aa46fa714ee9925690a7bb07c3ef52df9',1,'abcg']]], + ['gldepthmask_92',['glDepthMask',['../namespaceabcg.html#a2c2a12a15c7b445dcee3d8656ca6dfbc',1,'abcg']]], + ['gldepthrangef_93',['glDepthRangef',['../namespaceabcg.html#a08dbe7a21733bff43ed976be14f99e9b',1,'abcg']]], + ['gldetachshader_94',['glDetachShader',['../namespaceabcg.html#a045bd908a5989d1ed1b6a4d28cc2bab6',1,'abcg']]], + ['gldisable_95',['glDisable',['../namespaceabcg.html#a84963ee1cf3177d6f23ca4641daf8b9b',1,'abcg']]], + ['gldisablevertexattribarray_96',['glDisableVertexAttribArray',['../namespaceabcg.html#a953dfc9ac20750b998c1b320c9c3177e',1,'abcg']]], + ['gldrawarrays_97',['glDrawArrays',['../namespaceabcg.html#a47e3bd5f6dc82daa656e76b655940338',1,'abcg']]], + ['gldrawarraysinstanced_98',['glDrawArraysInstanced',['../namespaceabcg.html#a32f7f0c0ce76c25248271a64c2b8e52b',1,'abcg']]], + ['gldrawbuffers_99',['glDrawBuffers',['../namespaceabcg.html#ae03a93e0f048e849bb5e37d712d7000c',1,'abcg']]], + ['gldrawelements_100',['glDrawElements',['../namespaceabcg.html#abaa5a136840114161dd2dca5dcfce646',1,'abcg']]], + ['gldrawelementsinstanced_101',['glDrawElementsInstanced',['../namespaceabcg.html#a67e3ae359f4840a60501e01a7ce4fb49',1,'abcg']]], + ['gldrawrangeelements_102',['glDrawRangeElements',['../namespaceabcg.html#aa5e970181c35e076181628df29de48e5',1,'abcg']]], + ['glenable_103',['glEnable',['../namespaceabcg.html#a5ee5802eb4646b281e426e550658124f',1,'abcg']]], + ['glenablevertexattribarray_104',['glEnableVertexAttribArray',['../namespaceabcg.html#a2b8c6c76fcc9d16e4a29551cac8f428f',1,'abcg']]], + ['glendquery_105',['glEndQuery',['../namespaceabcg.html#acebb037ad49e0f3714436346cb370a3e',1,'abcg']]], + ['glendtransformfeedback_106',['glEndTransformFeedback',['../namespaceabcg.html#a1427186fdcf12b9897523589b1ddf20f',1,'abcg']]], + ['glfencesync_107',['glFenceSync',['../namespaceabcg.html#acf7bb9039752df88aba99ed50675ceb6',1,'abcg']]], + ['glfinish_108',['glFinish',['../namespaceabcg.html#a94ad89b8ca10fc632d08f6c9d04d162e',1,'abcg']]], + ['glflush_109',['glFlush',['../namespaceabcg.html#ae0c6f2648cab3d1cd82a7ba910776e2b',1,'abcg']]], + ['glflushmappedbufferrange_110',['glFlushMappedBufferRange',['../namespaceabcg.html#a9280491505581f2f303c3f11442a9d8d',1,'abcg']]], + ['glframebufferrenderbuffer_111',['glFramebufferRenderbuffer',['../namespaceabcg.html#a24715a37b830d861d7cdb1f2f24bd32d',1,'abcg']]], + ['glframebuffertexture_112',['glFramebufferTexture',['../namespaceabcg.html#adb0766367e9364b01040121a4c2c79ed',1,'abcg']]], + ['glframebuffertexture2d_113',['glFramebufferTexture2D',['../namespaceabcg.html#a47dba8957f7121ceccfde94363e707e4',1,'abcg']]], + ['glframebuffertexturelayer_114',['glFramebufferTextureLayer',['../namespaceabcg.html#a399dc5200ed4b1c5ba36bc3aaa58c508',1,'abcg']]], + ['glfrontface_115',['glFrontFace',['../namespaceabcg.html#a6fa8b701a9a5003498e663163fe68729',1,'abcg']]], + ['glgenbuffers_116',['glGenBuffers',['../namespaceabcg.html#a5df92f4a085d8bca0fd0c52feee0128a',1,'abcg']]], + ['glgeneratemipmap_117',['glGenerateMipmap',['../namespaceabcg.html#acc670193ec022e761c4af8976494ed07',1,'abcg']]], + ['glgenframebuffers_118',['glGenFramebuffers',['../namespaceabcg.html#a5fb50995430e196812ba5fa75a9bf25a',1,'abcg']]], + ['glgenqueries_119',['glGenQueries',['../namespaceabcg.html#a86c415c268d7669e07339991c608e60b',1,'abcg']]], + ['glgenrenderbuffers_120',['glGenRenderbuffers',['../namespaceabcg.html#a4c9b0c886972e7d983e58c367787572c',1,'abcg']]], + ['glgensamplers_121',['glGenSamplers',['../namespaceabcg.html#ada23095347757d96190b853daddf8434',1,'abcg']]], + ['glgentextures_122',['glGenTextures',['../namespaceabcg.html#ae1015bd07641da254a331d9b3238d96f',1,'abcg']]], + ['glgentransformfeedbacks_123',['glGenTransformFeedbacks',['../namespaceabcg.html#a251e7d7579160c8fad43d5ce06ee9b06',1,'abcg']]], + ['glgenvertexarrays_124',['glGenVertexArrays',['../namespaceabcg.html#a7cc7561e9541d7841342173bec200d0d',1,'abcg']]], + ['glgetactiveattrib_125',['glGetActiveAttrib',['../namespaceabcg.html#ae0cdaa8143c25fdc5dd90b375a362816',1,'abcg']]], + ['glgetactiveuniform_126',['glGetActiveUniform',['../namespaceabcg.html#ac5aac5887d3a23fdd9e62db27eac53db',1,'abcg']]], + ['glgetactiveuniformblockiv_127',['glGetActiveUniformBlockiv',['../namespaceabcg.html#aac48b45e3026be3bc4270b9b98dd1b81',1,'abcg']]], + ['glgetactiveuniformblockname_128',['glGetActiveUniformBlockName',['../namespaceabcg.html#a242378c05d9480103f5375c8a8826c28',1,'abcg']]], + ['glgetactiveuniformsiv_129',['glGetActiveUniformsiv',['../namespaceabcg.html#aaf5e44d65badbc70664b1f392b0fb36f',1,'abcg']]], + ['glgetattachedshaders_130',['glGetAttachedShaders',['../namespaceabcg.html#a69e507a360bcf1ef4061f8c9a2731727',1,'abcg']]], + ['glgetattriblocation_131',['glGetAttribLocation',['../namespaceabcg.html#aa28b9cf639287662cb747a5f48e62ac7',1,'abcg']]], + ['glgetbooleanv_132',['glGetBooleanv',['../namespaceabcg.html#a96a319c6482b3dfc7e3375e5d2339ea8',1,'abcg']]], + ['glgetbufferparameteri64v_133',['glGetBufferParameteri64v',['../namespaceabcg.html#a6b33c9c6944be9a18490575915090e22',1,'abcg']]], + ['glgetbufferparameteriv_134',['glGetBufferParameteriv',['../namespaceabcg.html#ac96ad909a86ceba40b0a92e7b227f992',1,'abcg']]], + ['glgetbufferpointerv_135',['glGetBufferPointerv',['../namespaceabcg.html#ada9205a4af5b2d12c78c16b5176a6a82',1,'abcg']]], + ['glgetdoublev_136',['glGetDoublev',['../namespaceabcg.html#a8bd8be541ec50d33e34248aecd3f25b7',1,'abcg']]], + ['glgetfloatv_137',['glGetFloatv',['../namespaceabcg.html#af0c9e138d135378a3de00663c616cf46',1,'abcg']]], + ['glgetfragdatalocation_138',['glGetFragDataLocation',['../namespaceabcg.html#a1468aeed842d55a612da7a8257f5006f',1,'abcg']]], + ['glgetframebufferattachmentparameteriv_139',['glGetFramebufferAttachmentParameteriv',['../namespaceabcg.html#a4c721ad9d476be58c7fcc04da120288b',1,'abcg']]], + ['glgetinteger64i_5fv_140',['glGetInteger64i_v',['../namespaceabcg.html#ac2e13dc4a2ded3237be1ca90bad68d4e',1,'abcg']]], + ['glgetinteger64v_141',['glGetInteger64v',['../namespaceabcg.html#a59ea90fe9ec82ae3af1b3a29fe98de3f',1,'abcg']]], + ['glgetintegeri_5fv_142',['glGetIntegeri_v',['../namespaceabcg.html#ab3e060569fa74e0509c2a28806e4a847',1,'abcg']]], + ['glgetintegerv_143',['glGetIntegerv',['../namespaceabcg.html#a5fc4ea3f0ee00aec4b4ad39d830b83d5',1,'abcg']]], + ['glgetinternalformativ_144',['glGetInternalformativ',['../namespaceabcg.html#a56430f42fc367519455b993473579b79',1,'abcg']]], + ['glgetprogrambinary_145',['glGetProgramBinary',['../namespaceabcg.html#a70e991b998cd93d8ae0cdf86a145ed37',1,'abcg']]], + ['glgetprograminfolog_146',['glGetProgramInfoLog',['../namespaceabcg.html#a9169273965372bf17961bafe2cd37f8c',1,'abcg']]], + ['glgetprogramiv_147',['glGetProgramiv',['../namespaceabcg.html#afa031f5f52ad88625a88e1410478d892',1,'abcg']]], + ['glgetqueryiv_148',['glGetQueryiv',['../namespaceabcg.html#a9c6d035dae7a9d2137cc484b6704f0c9',1,'abcg']]], + ['glgetqueryobjectuiv_149',['glGetQueryObjectuiv',['../namespaceabcg.html#a73910bf72dd61e452b1776b00cdd7972',1,'abcg']]], + ['glgetrenderbufferparameteriv_150',['glGetRenderbufferParameteriv',['../namespaceabcg.html#a3c9dd56405aa600ef77b3194ddec1c52',1,'abcg']]], + ['glgetsamplerparameterfv_151',['glGetSamplerParameterfv',['../namespaceabcg.html#aa444f01ece43218d34ad9256c88eddf5',1,'abcg']]], + ['glgetsamplerparameteriv_152',['glGetSamplerParameteriv',['../namespaceabcg.html#ae6ea1aa7744033cbe3a10ec3b646e30d',1,'abcg']]], + ['glgetshaderinfolog_153',['glGetShaderInfoLog',['../namespaceabcg.html#a86aec026f1d1e876c7f47dfca141bc03',1,'abcg']]], + ['glgetshaderiv_154',['glGetShaderiv',['../namespaceabcg.html#aa074570fbd8a39ce2e899245b407044b',1,'abcg']]], + ['glgetshaderprecisionformat_155',['glGetShaderPrecisionFormat',['../namespaceabcg.html#a0690d7a9fb1fbe27f1630b51a6ef506f',1,'abcg']]], + ['glgetshadersource_156',['glGetShaderSource',['../namespaceabcg.html#abe63fd43e8ff35c953ca7a58a9f50f24',1,'abcg']]], + ['glgetstring_157',['glGetString',['../namespaceabcg.html#a7813473dd0b2c5d0ac275c2a35c03cab',1,'abcg']]], + ['glgetstringi_158',['glGetStringi',['../namespaceabcg.html#a606ec56e07694a280ac843d6ead4f1dc',1,'abcg']]], + ['glgetsynciv_159',['glGetSynciv',['../namespaceabcg.html#a57fa9fe8caf214671576ed55b06f239f',1,'abcg']]], + ['glgettexlevelparameterfv_160',['glGetTexLevelParameterfv',['../namespaceabcg.html#a720dffe7d97e8ebaba17b6d87583fd59',1,'abcg']]], + ['glgettexlevelparameteriv_161',['glGetTexLevelParameteriv',['../namespaceabcg.html#aee3c58bf82ea8186bfab4f2942997022',1,'abcg']]], + ['glgettexparameterfv_162',['glGetTexParameterfv',['../namespaceabcg.html#a4a8a224da5a79b1029605b7e77218e7c',1,'abcg']]], + ['glgettexparameteriv_163',['glGetTexParameteriv',['../namespaceabcg.html#ac768bcd240c1d1ad80589e5a248408df',1,'abcg']]], + ['glgettransformfeedbackvarying_164',['glGetTransformFeedbackVarying',['../namespaceabcg.html#a9a5c4567cf69ddd662085c0f86b37fa4',1,'abcg']]], + ['glgetuniformblockindex_165',['glGetUniformBlockIndex',['../namespaceabcg.html#a6710abf9cdd9e78d00280c40a56058da',1,'abcg']]], + ['glgetuniformfv_166',['glGetUniformfv',['../namespaceabcg.html#ae51c6519e4ba4b2a237c148d5606d76c',1,'abcg']]], + ['glgetuniformindices_167',['glGetUniformIndices',['../namespaceabcg.html#ace8f774eff785ea7e9f90c1c6b8e4425',1,'abcg']]], + ['glgetuniformiv_168',['glGetUniformiv',['../namespaceabcg.html#a3ed72ff0a3751e87af8369466f3a1cbf',1,'abcg']]], + ['glgetuniformlocation_169',['glGetUniformLocation',['../namespaceabcg.html#a22cb6b45a1ae2153d289a0ee3ac7729a',1,'abcg']]], + ['glgetuniformuiv_170',['glGetUniformuiv',['../namespaceabcg.html#acffb14045c39d65f3f8bead758313fbc',1,'abcg']]], + ['glgetvertexattribfv_171',['glGetVertexAttribfv',['../namespaceabcg.html#aedab4d42e7085a4bab268099b2d1346d',1,'abcg']]], + ['glgetvertexattribiiv_172',['glGetVertexAttribIiv',['../namespaceabcg.html#ad31542472e21428d05473b3ebe2489ee',1,'abcg']]], + ['glgetvertexattribiuiv_173',['glGetVertexAttribIuiv',['../namespaceabcg.html#a6a360138b05890b13f8439344e08512f',1,'abcg']]], + ['glgetvertexattribiv_174',['glGetVertexAttribiv',['../namespaceabcg.html#a78e9cb3ed811f7863b4a0c304a9fb278',1,'abcg']]], + ['glgetvertexattribpointerv_175',['glGetVertexAttribPointerv',['../namespaceabcg.html#aca5b82d3582454e73b1a86192124d485',1,'abcg']]], + ['glhint_176',['glHint',['../namespaceabcg.html#a97c884a2a934bf40d378024d81be625e',1,'abcg']]], + ['glinvalidateframebuffer_177',['glInvalidateFramebuffer',['../namespaceabcg.html#a619e3d0de44a879aa6db3054c39130ec',1,'abcg']]], + ['glinvalidatesubframebuffer_178',['glInvalidateSubFramebuffer',['../namespaceabcg.html#a47b7481c9fc066c9cd54a0f010258818',1,'abcg']]], + ['glisbuffer_179',['glIsBuffer',['../namespaceabcg.html#afb123afaf46459222024ea041cac15c7',1,'abcg']]], + ['glisenabled_180',['glIsEnabled',['../namespaceabcg.html#a2355d26ca6b32f64dd502ba787074e95',1,'abcg']]], + ['glisframebuffer_181',['glIsFramebuffer',['../namespaceabcg.html#abde059e7926e418ee7676f612480ca2e',1,'abcg']]], + ['glisprogram_182',['glIsProgram',['../namespaceabcg.html#ad8512fcd1782c81aaa121cd7e6c561d1',1,'abcg']]], + ['glisquery_183',['glIsQuery',['../namespaceabcg.html#a7a5eac1646a59b2c8de24b4862d3b2d9',1,'abcg']]], + ['glisrenderbuffer_184',['glIsRenderbuffer',['../namespaceabcg.html#a15acb0b1b9464f294f99aa989c44dc70',1,'abcg']]], + ['glissampler_185',['glIsSampler',['../namespaceabcg.html#ad85c0ff02a8b681ecb188752dd8ce9c0',1,'abcg']]], + ['glisshader_186',['glIsShader',['../namespaceabcg.html#a36db9b553f7422ea79b751c5763d194c',1,'abcg']]], + ['glissync_187',['glIsSync',['../namespaceabcg.html#a6e39dbba1c1d91b8df99ab60da87c364',1,'abcg']]], + ['glistexture_188',['glIsTexture',['../namespaceabcg.html#a913e9b053d880a383d8bf3d55cb5ead3',1,'abcg']]], + ['glistransformfeedback_189',['glIsTransformFeedback',['../namespaceabcg.html#aed892da4fd2e2517f53ca8c902d36a31',1,'abcg']]], + ['glisvertexarray_190',['glIsVertexArray',['../namespaceabcg.html#a5afdcd1166d09049b9bea8f425bbd0db',1,'abcg']]], + ['gllinewidth_191',['glLineWidth',['../namespaceabcg.html#aba2cae07b1fe8e188ff0fcc76ec9db8b',1,'abcg']]], + ['gllinkprogram_192',['glLinkProgram',['../namespaceabcg.html#af84c0f4d0816181cba506f1703c037c2',1,'abcg']]], + ['glmapbufferrange_193',['glMapBufferRange',['../namespaceabcg.html#a180e56ad70b052b7d8ef64a03559afcc',1,'abcg']]], + ['glpausetransformfeedback_194',['glPauseTransformFeedback',['../namespaceabcg.html#a03d850c93d16ad308516bb83bb8ffa0d',1,'abcg']]], + ['glpixelstorei_195',['glPixelStorei',['../namespaceabcg.html#a05ece875ff476f630548c8cf7a0d952b',1,'abcg']]], + ['glpolygonoffset_196',['glPolygonOffset',['../namespaceabcg.html#afa173d8901021cb88486592fcc300a14',1,'abcg']]], + ['glprogrambinary_197',['glProgramBinary',['../namespaceabcg.html#aa836ddfde2ab9014c8322a66b1fc5bcc',1,'abcg']]], + ['glprogramparameteri_198',['glProgramParameteri',['../namespaceabcg.html#ae48fb31c3e26632acba7e1a9753ee5c9',1,'abcg']]], + ['glreadbuffer_199',['glReadBuffer',['../namespaceabcg.html#a9fbd7418dfcde0cdbb4ff58d29e40a4f',1,'abcg']]], + ['glreadpixels_200',['glReadPixels',['../namespaceabcg.html#ae8720c564832cd331d886e24aaf68c29',1,'abcg']]], + ['glreleaseshadercompiler_201',['glReleaseShaderCompiler',['../namespaceabcg.html#a3e97ab629b7cc5d4c7259e521ebe5fb7',1,'abcg']]], + ['glrenderbufferstorage_202',['glRenderbufferStorage',['../namespaceabcg.html#aae32d699a30865e7aa4c4de786a1d593',1,'abcg']]], + ['glrenderbufferstoragemultisample_203',['glRenderbufferStorageMultisample',['../namespaceabcg.html#aee93697e0e0b92b0b73a9c374d4afff0',1,'abcg']]], + ['glresumetransformfeedback_204',['glResumeTransformFeedback',['../namespaceabcg.html#a81e93970a280fc3782f7577db7060458',1,'abcg']]], + ['glsamplecoverage_205',['glSampleCoverage',['../namespaceabcg.html#adee87442b65fa46fe96cceb6a21d496a',1,'abcg']]], + ['glsamplerparameterf_206',['glSamplerParameterf',['../namespaceabcg.html#aa12216132f4a0242e7f0882c99bc98ad',1,'abcg']]], + ['glsamplerparameterfv_207',['glSamplerParameterfv',['../namespaceabcg.html#a03ba96b4728e99b4f58cce1f3e102b49',1,'abcg']]], + ['glsamplerparameteri_208',['glSamplerParameteri',['../namespaceabcg.html#ae9971e1b8abb781440101bac0968a897',1,'abcg']]], + ['glsamplerparameteriv_209',['glSamplerParameteriv',['../namespaceabcg.html#a304af29cf7db15205236d97e1836e79a',1,'abcg']]], + ['glscissor_210',['glScissor',['../namespaceabcg.html#ae1a3e82a002194c222284c5588998cfb',1,'abcg']]], + ['glshaderbinary_211',['glShaderBinary',['../namespaceabcg.html#af1c355ed607c699a2fbe6b56454b84db',1,'abcg']]], + ['glshadersource_212',['glShaderSource',['../namespaceabcg.html#a828f4d3a0f75f391780765df28ce8914',1,'abcg']]], + ['glsltospv_213',['GLSLtoSPV',['../abcgVulkanShader_8cpp.html#ac02bb467fef306447a8fa8fe8aed50b1',1,'abcgVulkanShader.cpp']]], + ['glstencilfunc_214',['glStencilFunc',['../namespaceabcg.html#ad1bc3b8d63e3b65fc3a1222ce789db3a',1,'abcg']]], + ['glstencilfuncseparate_215',['glStencilFuncSeparate',['../namespaceabcg.html#a10f604e428c78fad5ca881ecae15f9df',1,'abcg']]], + ['glstencilmask_216',['glStencilMask',['../namespaceabcg.html#a1f1123ce5bc6fade14962343ad3395f0',1,'abcg']]], + ['glstencilmaskseparate_217',['glStencilMaskSeparate',['../namespaceabcg.html#aadbe72b51aec2a1355ab4a9fc312043c',1,'abcg']]], + ['glstencilop_218',['glStencilOp',['../namespaceabcg.html#a7b172b6de78b247898a24c61d6d1d25f',1,'abcg']]], + ['glstencilopseparate_219',['glStencilOpSeparate',['../namespaceabcg.html#a86ed23edfe4b5ef502fe321f5a40b706',1,'abcg']]], + ['glteximage2d_220',['glTexImage2D',['../namespaceabcg.html#ae220fd2c2bd61130ace06f851609903d',1,'abcg']]], + ['glteximage2dmultisample_221',['glTexImage2DMultisample',['../namespaceabcg.html#aea5f1cc76074ee940772a749cd1b57ad',1,'abcg']]], + ['glteximage3d_222',['glTexImage3D',['../namespaceabcg.html#a55111fa9ae85db9d5c62854dc5cfb735',1,'abcg']]], + ['gltexparameterf_223',['glTexParameterf',['../namespaceabcg.html#a3d91ea0fc162e4a0f5f6060418b6d61c',1,'abcg']]], + ['gltexparameterfv_224',['glTexParameterfv',['../namespaceabcg.html#a9f00bcbf608a6489e1bcbffe964574ea',1,'abcg']]], + ['gltexparameteri_225',['glTexParameteri',['../namespaceabcg.html#a4d4aae2bed9b15f89cd6bf9268cfcd0b',1,'abcg']]], + ['gltexparameteriv_226',['glTexParameteriv',['../namespaceabcg.html#aa4c561c1f3f974025cbf25837f5b0b41',1,'abcg']]], + ['gltexstorage2d_227',['glTexStorage2D',['../namespaceabcg.html#a4573fb1a4dd47d4a692b4602a4009918',1,'abcg']]], + ['gltexstorage3d_228',['glTexStorage3D',['../namespaceabcg.html#af9d8885c892cfeadf62c7280254d57f9',1,'abcg']]], + ['gltexsubimage2d_229',['glTexSubImage2D',['../namespaceabcg.html#a7ff895f0b4b215b432009d5a23645b34',1,'abcg']]], + ['gltexsubimage3d_230',['glTexSubImage3D',['../namespaceabcg.html#a7aaad5778d19c5cc07e1259010dd406a',1,'abcg']]], + ['gltransformfeedbackvaryings_231',['glTransformFeedbackVaryings',['../namespaceabcg.html#a0f8299d53f2d5e195444be565301462c',1,'abcg']]], + ['gluniform1f_232',['glUniform1f',['../namespaceabcg.html#a6f815dac65a78efa2afda323b1cadec9',1,'abcg']]], + ['gluniform1fv_233',['glUniform1fv',['../namespaceabcg.html#a0a55fd40d1c8f2dfc0fd072e5b2c5ebc',1,'abcg']]], + ['gluniform1i_234',['glUniform1i',['../namespaceabcg.html#a17c9ec119f0c1c6d101a042131774ef9',1,'abcg']]], + ['gluniform1iv_235',['glUniform1iv',['../namespaceabcg.html#a2ac0fcc475813238eec19657e6d4899d',1,'abcg']]], + ['gluniform1ui_236',['glUniform1ui',['../namespaceabcg.html#a4566f93a590c2437fab4c2ac07ea1454',1,'abcg']]], + ['gluniform1uiv_237',['glUniform1uiv',['../namespaceabcg.html#ae712e6a279573982c1c5e7c569a47add',1,'abcg']]], + ['gluniform2f_238',['glUniform2f',['../namespaceabcg.html#aeed384502019a1ea9c53c5f79387f4a6',1,'abcg']]], + ['gluniform2fv_239',['glUniform2fv',['../namespaceabcg.html#aba238c1971fc805fb79cc9249a4b3979',1,'abcg']]], + ['gluniform2i_240',['glUniform2i',['../namespaceabcg.html#ab923c4f8e4b6a7928d41e2c557083938',1,'abcg']]], + ['gluniform2iv_241',['glUniform2iv',['../namespaceabcg.html#adf14dfa164b234c7fbed7b45426b2d62',1,'abcg']]], + ['gluniform2ui_242',['glUniform2ui',['../namespaceabcg.html#ac9593131eae76be863d98795053363c5',1,'abcg']]], + ['gluniform2uiv_243',['glUniform2uiv',['../namespaceabcg.html#abeafef647d9a881976fb42ecc4756c8d',1,'abcg']]], + ['gluniform3f_244',['glUniform3f',['../namespaceabcg.html#a3ac2b6654fcb536e3d89e695b84d0229',1,'abcg']]], + ['gluniform3fv_245',['glUniform3fv',['../namespaceabcg.html#a97188797e9d2d99c779647cc2e3b1188',1,'abcg']]], + ['gluniform3i_246',['glUniform3i',['../namespaceabcg.html#a8e3f7eba54f08608b79aa8f3b469a970',1,'abcg']]], + ['gluniform3iv_247',['glUniform3iv',['../namespaceabcg.html#a99d565ab142c3aade17d3bf0165dc348',1,'abcg']]], + ['gluniform3ui_248',['glUniform3ui',['../namespaceabcg.html#aea378f4807f17ed76e8129260b35c1a1',1,'abcg']]], + ['gluniform3uiv_249',['glUniform3uiv',['../namespaceabcg.html#a15c8e64b115ca61dc7bd460af8447497',1,'abcg']]], + ['gluniform4f_250',['glUniform4f',['../namespaceabcg.html#a26ef61adcd575428307b9b9a92dc618c',1,'abcg']]], + ['gluniform4fv_251',['glUniform4fv',['../namespaceabcg.html#a3dbe8b9316fce91031a864a1a7b91497',1,'abcg']]], + ['gluniform4i_252',['glUniform4i',['../namespaceabcg.html#a3276a3ae4b0740216d4850df60881cfe',1,'abcg']]], + ['gluniform4iv_253',['glUniform4iv',['../namespaceabcg.html#afb64d90352e53e92718dd7f10a2822a6',1,'abcg']]], + ['gluniform4ui_254',['glUniform4ui',['../namespaceabcg.html#a506182a6eb4e8158ee10567344152470',1,'abcg']]], + ['gluniform4uiv_255',['glUniform4uiv',['../namespaceabcg.html#ac21f205c4a058a639fd695c4b4bf76fc',1,'abcg']]], + ['gluniformblockbinding_256',['glUniformBlockBinding',['../namespaceabcg.html#a81f720eec72780a58bf7719461d97971',1,'abcg']]], + ['gluniformmatrix2fv_257',['glUniformMatrix2fv',['../namespaceabcg.html#abc150697687bc94d1ec422a5f2db1b88',1,'abcg']]], + ['gluniformmatrix2x3fv_258',['glUniformMatrix2x3fv',['../namespaceabcg.html#ad53649314374711d76ff0b032950e9d2',1,'abcg']]], + ['gluniformmatrix2x4fv_259',['glUniformMatrix2x4fv',['../namespaceabcg.html#ae942855746c560463aed347013e2e84f',1,'abcg']]], + ['gluniformmatrix3fv_260',['glUniformMatrix3fv',['../namespaceabcg.html#a5f5c89006586583bd0cbabbace3a1d94',1,'abcg']]], + ['gluniformmatrix3x2fv_261',['glUniformMatrix3x2fv',['../namespaceabcg.html#abb0b676883c3e5c717cea345b043a372',1,'abcg']]], + ['gluniformmatrix3x4fv_262',['glUniformMatrix3x4fv',['../namespaceabcg.html#a8b8f3bffbbf4e2d6ec0afa0f130f2132',1,'abcg']]], + ['gluniformmatrix4fv_263',['glUniformMatrix4fv',['../namespaceabcg.html#a640ca79d0f9c8636c4161cea447a361d',1,'abcg']]], + ['gluniformmatrix4x2fv_264',['glUniformMatrix4x2fv',['../namespaceabcg.html#a549e5d5f67f44712248cf3e26af0ddd6',1,'abcg']]], + ['gluniformmatrix4x3fv_265',['glUniformMatrix4x3fv',['../namespaceabcg.html#a2a4e0b3c0401e2a85fe389191c5d768f',1,'abcg']]], + ['glunmapbuffer_266',['glUnmapBuffer',['../namespaceabcg.html#a1f475772cbe67c5b2370ef179c99b614',1,'abcg']]], + ['gluseprogram_267',['glUseProgram',['../namespaceabcg.html#ac050825096a0ef3f71c0dd6452f9dfc0',1,'abcg']]], + ['glvalidateprogram_268',['glValidateProgram',['../namespaceabcg.html#a4ca1b9c8efcec40ef7506d115807a252',1,'abcg']]], + ['glvertexattrib1f_269',['glVertexAttrib1f',['../namespaceabcg.html#af725d24a5b6b6483d1cd3420dc6ec011',1,'abcg']]], + ['glvertexattrib1fv_270',['glVertexAttrib1fv',['../namespaceabcg.html#aeff647ce94259b8e0fbe731595cf1931',1,'abcg']]], + ['glvertexattrib2f_271',['glVertexAttrib2f',['../namespaceabcg.html#ab0c88524f1c60a35e818cd6f8902c2e7',1,'abcg']]], + ['glvertexattrib2fv_272',['glVertexAttrib2fv',['../namespaceabcg.html#a3be34bb76d1f704893e5ae334488f372',1,'abcg']]], + ['glvertexattrib3f_273',['glVertexAttrib3f',['../namespaceabcg.html#afa1466dac879205506b78b021aafff27',1,'abcg']]], + ['glvertexattrib3fv_274',['glVertexAttrib3fv',['../namespaceabcg.html#aad00233878a4e63de78696409cb8cfe7',1,'abcg']]], + ['glvertexattrib4f_275',['glVertexAttrib4f',['../namespaceabcg.html#a16e4ed4c33c7e9abd8eb412c422c7f8a',1,'abcg']]], + ['glvertexattrib4fv_276',['glVertexAttrib4fv',['../namespaceabcg.html#af15b80a8f2eb74ae9de6f26996d3d51d',1,'abcg']]], + ['glvertexattribdivisor_277',['glVertexAttribDivisor',['../namespaceabcg.html#a6bc99961c0b460aff0c6176e08667ad5',1,'abcg']]], + ['glvertexattribi4i_278',['glVertexAttribI4i',['../namespaceabcg.html#a298da5e81cd558e36acc8517f183330a',1,'abcg']]], + ['glvertexattribi4iv_279',['glVertexAttribI4iv',['../namespaceabcg.html#a2f957d37e18d6883d73b0c4d81c7925f',1,'abcg']]], + ['glvertexattribi4ui_280',['glVertexAttribI4ui',['../namespaceabcg.html#a3f20fa49edff456e65bcbbfc40befa92',1,'abcg']]], + ['glvertexattribi4uiv_281',['glVertexAttribI4uiv',['../namespaceabcg.html#ac1ce439bbbfbaca867e112c7c75fdf2e',1,'abcg']]], + ['glvertexattribipointer_282',['glVertexAttribIPointer',['../namespaceabcg.html#aa76792de0db9acdbb75c5b7a228dc022',1,'abcg']]], + ['glvertexattribpointer_283',['glVertexAttribPointer',['../namespaceabcg.html#af56cc0ad4060e65221188cfa41a59168',1,'abcg']]], + ['glviewport_284',['glViewport',['../namespaceabcg.html#a4488c395e82a5408c4321a611f039c78',1,'abcg']]], + ['glwaitsync_285',['glWaitSync',['../namespaceabcg.html#a14893e8222fcaac3d07be752b3c72c04',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/functions_6.html b/abcg/doc/html/search/functions_6.html deleted file mode 100644 index 9c4f5fc65..000000000 --- a/abcg/doc/html/search/functions_6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_6.js b/abcg/doc/html/search/functions_6.js index 9e90514b8..2dd77e800 100644 --- a/abcg/doc/html/search/functions_6.js +++ b/abcg/doc/html/search/functions_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['handleevent_908',['handleEvent',['../classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633',1,'abcg::Window']]], - ['hashcombine_909',['hashCombine',['../namespaceabcg.html#aed04a19d18acb506c896c2f220d495c1',1,'abcg']]], - ['hashcombineseed_910',['hashCombineSeed',['../namespaceabcg.html#a087b770c423ea0ec8a1e54e655dbb0a0',1,'abcg']]] + ['handleevent_0',['handleEvent',['../classabcg_1_1Window.html#a7e2b0741b0314a4e6472353de3de1633',1,'abcg::Window']]], + ['hashcombine_1',['hashCombine',['../namespaceabcg.html#aed04a19d18acb506c896c2f220d495c1',1,'abcg']]], + ['hashcombineseed_2',['hashCombineSeed',['../namespaceabcg.html#a087b770c423ea0ec8a1e54e655dbb0a0',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/functions_7.html b/abcg/doc/html/search/functions_7.html deleted file mode 100644 index 46b5c0f61..000000000 --- a/abcg/doc/html/search/functions_7.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_7.js b/abcg/doc/html/search/functions_7.js index 7d3945248..0ea0891e8 100644 --- a/abcg/doc/html/search/functions_7.js +++ b/abcg/doc/html/search/functions_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['loaddata_911',['loadData',['../classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b',1,'abcg::VulkanBuffer']]], - ['loadopenglcubemap_912',['loadOpenGLCubemap',['../namespaceabcg.html#a39af18b7fd13bbdcd404b344ca29014e',1,'abcg']]], - ['loadopengltexture_913',['loadOpenGLTexture',['../namespaceabcg.html#ae4a5204a112c5bfabcab65d66f49aa8d',1,'abcg']]] + ['loaddata_0',['loadData',['../classabcg_1_1VulkanBuffer.html#a9e880ba0292183708e7681fb9d28132b',1,'abcg::VulkanBuffer']]], + ['loadopenglcubemap_1',['loadOpenGLCubemap',['../namespaceabcg.html#a39af18b7fd13bbdcd404b344ca29014e',1,'abcg']]], + ['loadopengltexture_2',['loadOpenGLTexture',['../namespaceabcg.html#ae4a5204a112c5bfabcab65d66f49aa8d',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/functions_8.html b/abcg/doc/html/search/functions_8.html deleted file mode 100644 index 31a1d9503..000000000 --- a/abcg/doc/html/search/functions_8.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_8.js b/abcg/doc/html/search/functions_8.js index bb297a03b..4f0274d15 100644 --- a/abcg/doc/html/search/functions_8.js +++ b/abcg/doc/html/search/functions_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['mousemove_914',['mouseMove',['../classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946',1,'abcg::TrackBall']]], - ['mousepress_915',['mousePress',['../classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b',1,'abcg::TrackBall']]], - ['mouserelease_916',['mouseRelease',['../classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe',1,'abcg::TrackBall']]] + ['mousemove_0',['mouseMove',['../classabcg_1_1TrackBall.html#ad19937746c776c6d57c649d5fc7ff946',1,'abcg::TrackBall']]], + ['mousepress_1',['mousePress',['../classabcg_1_1TrackBall.html#a3aa3387808cfa381b56782afad37534b',1,'abcg::TrackBall']]], + ['mouserelease_2',['mouseRelease',['../classabcg_1_1TrackBall.html#ab107dfd5ea36c76b57ed90fca8d019fe',1,'abcg::TrackBall']]] ]; diff --git a/abcg/doc/html/search/functions_9.html b/abcg/doc/html/search/functions_9.html deleted file mode 100644 index 9a8e4290c..000000000 --- a/abcg/doc/html/search/functions_9.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_9.js b/abcg/doc/html/search/functions_9.js index 3f0cc2025..72a6326d9 100644 --- a/abcg/doc/html/search/functions_9.js +++ b/abcg/doc/html/search/functions_9.js @@ -1,19 +1,19 @@ var searchData= [ - ['buffer_20const_20_26_917',['Buffer const &',['../classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e',1,'abcg::VulkanBuffer']]], - ['device_20const_20_26_918',['Device const &',['../classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a',1,'abcg::VulkanDevice']]], - ['image_20const_20_26_919',['Image const &',['../classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986',1,'abcg::VulkanImage']]], - ['instance_20const_20_26_920',['Instance const &',['../classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f',1,'abcg::VulkanInstance']]], - ['oncreate_921',['onCreate',['../classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679',1,'abcg::VulkanWindow::onCreate()'],['../classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797',1,'abcg::OpenGLWindow::onCreate()']]], - ['ondestroy_922',['onDestroy',['../classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a',1,'abcg::VulkanWindow::onDestroy()'],['../classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd',1,'abcg::OpenGLWindow::onDestroy()']]], - ['onevent_923',['onEvent',['../classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762',1,'abcg::VulkanWindow::onEvent()'],['../classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882',1,'abcg::OpenGLWindow::onEvent(SDL_Event const &event)']]], - ['onpaint_924',['onPaint',['../classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016',1,'abcg::OpenGLWindow::onPaint()'],['../classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205',1,'abcg::VulkanWindow::onPaint()']]], - ['onpaintui_925',['onPaintUI',['../classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79',1,'abcg::OpenGLWindow::onPaintUI()'],['../classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0',1,'abcg::VulkanWindow::onPaintUI()']]], - ['onresize_926',['onResize',['../classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e',1,'abcg::OpenGLWindow::onResize()'],['../classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902',1,'abcg::VulkanWindow::onResize()']]], - ['onupdate_927',['onUpdate',['../classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d',1,'abcg::OpenGLWindow::onUpdate()'],['../classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5',1,'abcg::VulkanWindow::onUpdate()']]], - ['openglerror_928',['OpenGLError',['../classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0',1,'abcg::OpenGLError']]], - ['operator_3d_929',['operator=',['../classabcg_1_1Window.html#a2cad313eeee01bf3b89e248cd25ed71e',1,'abcg::Window::operator=(Window const &)=delete'],['../classabcg_1_1Window.html#a4efa74388a703f1d8dcb4493d4ea4637',1,'abcg::Window::operator=(Window &&)=default']]], - ['physicaldevice_20const_20_26_930',['PhysicalDevice const &',['../classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1',1,'abcg::VulkanPhysicalDevice']]], - ['pipeline_20const_20_26_931',['Pipeline const &',['../classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419',1,'abcg::VulkanPipeline']]], - ['swapchainkhr_20const_20_26_932',['SwapchainKHR const &',['../classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7',1,'abcg::VulkanSwapchain']]] + ['oncreate_0',['oncreate',['../classabcg_1_1VulkanWindow.html#a2b72506b2279785a2742ba93428cd679',1,'abcg::VulkanWindow::onCreate()'],['../classabcg_1_1OpenGLWindow.html#adf60bc348bac241ebaafc74fc958f797',1,'abcg::OpenGLWindow::onCreate()']]], + ['ondestroy_1',['ondestroy',['../classabcg_1_1OpenGLWindow.html#a728da166bea2399508752ac30f055fbd',1,'abcg::OpenGLWindow::onDestroy()'],['../classabcg_1_1VulkanWindow.html#a73d7764772af75c11cd79285a258e28a',1,'abcg::VulkanWindow::onDestroy()']]], + ['onevent_2',['onevent',['../classabcg_1_1OpenGLWindow.html#ac883112c71084751a6b6c6bde5ef4882',1,'abcg::OpenGLWindow::onEvent()'],['../classabcg_1_1VulkanWindow.html#ab8bd7fb6dcf8e770d1108ae6667c4762',1,'abcg::VulkanWindow::onEvent()']]], + ['onpaint_3',['onpaint',['../classabcg_1_1OpenGLWindow.html#a792a900730690de42f2511b9aa83c016',1,'abcg::OpenGLWindow::onPaint()'],['../classabcg_1_1VulkanWindow.html#a2325095d54d08ec014f4173242565205',1,'abcg::VulkanWindow::onPaint()']]], + ['onpaintui_4',['onpaintui',['../classabcg_1_1OpenGLWindow.html#ac46e03a19382c3becfb615de33ae8b79',1,'abcg::OpenGLWindow::onPaintUI()'],['../classabcg_1_1VulkanWindow.html#a42ea921c25307e0edcbf6271e52ef3c0',1,'abcg::VulkanWindow::onPaintUI()']]], + ['onresize_5',['onresize',['../classabcg_1_1OpenGLWindow.html#a3752d51b1a5c75ed5a2322aceafbb59e',1,'abcg::OpenGLWindow::onResize()'],['../classabcg_1_1VulkanWindow.html#a9c80fcb8dc6f482a4b440a273ca69902',1,'abcg::VulkanWindow::onResize()']]], + ['onupdate_6',['onupdate',['../classabcg_1_1OpenGLWindow.html#a71588879a55ea01d33e554d552d2958d',1,'abcg::OpenGLWindow::onUpdate()'],['../classabcg_1_1VulkanWindow.html#ac32aced497100ccc33ae89d6181c2df5',1,'abcg::VulkanWindow::onUpdate()']]], + ['openglerror_7',['OpenGLError',['../classabcg_1_1OpenGLError.html#a6f1a5080226aa9434ef1f5b096710fa0',1,'abcg::OpenGLError']]], + ['operator_20vk_3a_3abuffer_20const_20_26_8',['Buffer const &',['../classabcg_1_1VulkanBuffer.html#a4a0191a5b52124471dc6d91e6d85c60e',1,'abcg::VulkanBuffer']]], + ['operator_20vk_3a_3adevice_20const_20_26_9',['Device const &',['../classabcg_1_1VulkanDevice.html#a86465597444797c920cf26c81c076f9a',1,'abcg::VulkanDevice']]], + ['operator_20vk_3a_3aimage_20const_20_26_10',['Image const &',['../classabcg_1_1VulkanImage.html#af132a68f8fbdcbbc7f7e68f9b07d2986',1,'abcg::VulkanImage']]], + ['operator_20vk_3a_3ainstance_20const_20_26_11',['Instance const &',['../classabcg_1_1VulkanInstance.html#a6ec883f5f84307353b0bbfe85e5c749f',1,'abcg::VulkanInstance']]], + ['operator_20vk_3a_3aphysicaldevice_20const_20_26_12',['PhysicalDevice const &',['../classabcg_1_1VulkanPhysicalDevice.html#ae9050f42311da8eb11e2a1656db7c8a1',1,'abcg::VulkanPhysicalDevice']]], + ['operator_20vk_3a_3apipeline_20const_20_26_13',['Pipeline const &',['../classabcg_1_1VulkanPipeline.html#a49a3fddd5247929486f870e4f4d64419',1,'abcg::VulkanPipeline']]], + ['operator_20vk_3a_3aswapchainkhr_20const_20_26_14',['SwapchainKHR const &',['../classabcg_1_1VulkanSwapchain.html#a902e86fe22ca7541da91daf6a23e53a7',1,'abcg::VulkanSwapchain']]], + ['operator_3d_15',['operator=',['../classabcg_1_1Window.html#acec165afa1879a622118f7a2ab8d87e4',1,'abcg::Window::operator=(Window const &)=delete'],['../classabcg_1_1Window.html#a93d060f22a995fc807da249d222b8c66',1,'abcg::Window::operator=(Window &&)=default']]] ]; diff --git a/abcg/doc/html/search/functions_a.html b/abcg/doc/html/search/functions_a.html deleted file mode 100644 index 5ecc152ca..000000000 --- a/abcg/doc/html/search/functions_a.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_a.js b/abcg/doc/html/search/functions_a.js index 4d3fa6314..21089abfc 100644 --- a/abcg/doc/html/search/functions_a.js +++ b/abcg/doc/html/search/functions_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['paint_933',['paint',['../classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0',1,'abcg::Window']]], - ['present_934',['present',['../classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b',1,'abcg::VulkanSwapchain']]] + ['paint_0',['paint',['../classabcg_1_1Window.html#a62100744ba7d2df02aad4acfba4121b0',1,'abcg::Window']]], + ['present_1',['present',['../classabcg_1_1VulkanSwapchain.html#a666dd09f50b3f9e06b02d99f664c528b',1,'abcg::VulkanSwapchain']]] ]; diff --git a/abcg/doc/html/search/functions_b.html b/abcg/doc/html/search/functions_b.html deleted file mode 100644 index e301fedd7..000000000 --- a/abcg/doc/html/search/functions_b.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_b.js b/abcg/doc/html/search/functions_b.js index 6160f7d8b..920d48c7d 100644 --- a/abcg/doc/html/search/functions_b.js +++ b/abcg/doc/html/search/functions_b.js @@ -1,9 +1,9 @@ var searchData= [ - ['render_935',['render',['../classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830',1,'abcg::VulkanSwapchain']]], - ['resizeviewport_936',['resizeViewport',['../classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da',1,'abcg::TrackBall']]], - ['resizingeventwatcher_937',['resizingEventWatcher',['../namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b',1,'abcg']]], - ['restart_938',['restart',['../classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c',1,'abcg::Timer']]], - ['run_939',['run',['../classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d',1,'abcg::Application']]], - ['runtimeerror_940',['RuntimeError',['../classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9',1,'abcg::RuntimeError']]] + ['render_0',['render',['../classabcg_1_1VulkanSwapchain.html#ab5a121bc5ed21c2f6ecabe00464a9830',1,'abcg::VulkanSwapchain']]], + ['resizeviewport_1',['resizeViewport',['../classabcg_1_1TrackBall.html#ad0e7501acd24d9ce7975561fab0092da',1,'abcg::TrackBall']]], + ['resizingeventwatcher_2',['resizingEventWatcher',['../namespaceabcg.html#a6825799aa852dc7612dad9326be2fb3b',1,'abcg']]], + ['restart_3',['restart',['../classabcg_1_1Timer.html#a5cdb94e9a81ed24604079384a40cb56c',1,'abcg::Timer']]], + ['run_4',['run',['../classabcg_1_1Application.html#aa5a85168c861a3502d37a1336f1aae0d',1,'abcg::Application']]], + ['runtimeerror_5',['RuntimeError',['../classabcg_1_1RuntimeError.html#a763cafc3e784884aff12f98e58d189c9',1,'abcg::RuntimeError']]] ]; diff --git a/abcg/doc/html/search/functions_c.html b/abcg/doc/html/search/functions_c.html deleted file mode 100644 index c4f326877..000000000 --- a/abcg/doc/html/search/functions_c.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_c.js b/abcg/doc/html/search/functions_c.js index 9bb11636e..5d8bfd447 100644 --- a/abcg/doc/html/search/functions_c.js +++ b/abcg/doc/html/search/functions_c.js @@ -1,12 +1,12 @@ var searchData= [ - ['savescreenshotpng_941',['saveScreenshotPNG',['../classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff',1,'abcg::OpenGLWindow']]], - ['sdlerror_942',['SDLError',['../classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae',1,'abcg::SDLError']]], - ['sdlimageerror_943',['SDLImageError',['../classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4',1,'abcg::SDLImageError']]], - ['setaxis_944',['setAxis',['../classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8',1,'abcg::TrackBall']]], - ['setenableresizingeventwatcher_945',['setEnableResizingEventWatcher',['../classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e',1,'abcg::Window']]], - ['setopenglsettings_946',['setOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067',1,'abcg::OpenGLWindow']]], - ['setvelocity_947',['setVelocity',['../classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f',1,'abcg::TrackBall']]], - ['setvulkansettings_948',['setVulkanSettings',['../classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6',1,'abcg::VulkanWindow']]], - ['setwindowsettings_949',['setWindowSettings',['../classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277',1,'abcg::Window']]] + ['savescreenshotpng_0',['saveScreenshotPNG',['../classabcg_1_1OpenGLWindow.html#a800dee62e340fda9f5e8cd56a87a92ff',1,'abcg::OpenGLWindow']]], + ['sdlerror_1',['SDLError',['../classabcg_1_1SDLError.html#acda7cd2b446cebf8bc34bdd6b49650ae',1,'abcg::SDLError']]], + ['sdlimageerror_2',['SDLImageError',['../classabcg_1_1SDLImageError.html#aa74124d1d9ad554b40bed725fdeecbf4',1,'abcg::SDLImageError']]], + ['setaxis_3',['setAxis',['../classabcg_1_1TrackBall.html#a78c570b915dd329448b0a6110da57af8',1,'abcg::TrackBall']]], + ['setenableresizingeventwatcher_4',['setEnableResizingEventWatcher',['../classabcg_1_1Window.html#ac78275433807c6bef0d803c025239a6e',1,'abcg::Window']]], + ['setopenglsettings_5',['setOpenGLSettings',['../classabcg_1_1OpenGLWindow.html#ad22c7e5387a252da2f674afbaceb6067',1,'abcg::OpenGLWindow']]], + ['setvelocity_6',['setVelocity',['../classabcg_1_1TrackBall.html#abdd3ed81210312f961aba9d9a6ab940f',1,'abcg::TrackBall']]], + ['setvulkansettings_7',['setVulkanSettings',['../classabcg_1_1VulkanWindow.html#ab3a719010faef282c83eacb999d0c3e6',1,'abcg::VulkanWindow']]], + ['setwindowsettings_8',['setWindowSettings',['../classabcg_1_1Window.html#a893b26152c708ec954c5dd14dcc1e277',1,'abcg::Window']]] ]; diff --git a/abcg/doc/html/search/functions_d.html b/abcg/doc/html/search/functions_d.html deleted file mode 100644 index 7a1ed065d..000000000 --- a/abcg/doc/html/search/functions_d.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_d.js b/abcg/doc/html/search/functions_d.js index ee1c39523..f5473c93d 100644 --- a/abcg/doc/html/search/functions_d.js +++ b/abcg/doc/html/search/functions_d.js @@ -1,9 +1,9 @@ var searchData= [ - ['tobluestring_950',['toBlueString',['../namespaceabcg.html#a1b13712894adf3cfdda66dd3ddd14256',1,'abcg']]], - ['togglefullscreen_951',['toggleFullscreen',['../classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6',1,'abcg::Window']]], - ['toredstring_952',['toRedString',['../namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d',1,'abcg']]], - ['toyellowstring_953',['toYellowString',['../namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d',1,'abcg']]], - ['triggeropenglshadercompile_954',['triggerOpenGLShaderCompile',['../namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102',1,'abcg']]], - ['triggeropenglshaderlink_955',['triggerOpenGLShaderLink',['../namespaceabcg.html#aee435331b56516022710b8acc098883a',1,'abcg']]] + ['tobluestring_0',['toBlueString',['../namespaceabcg.html#a1b13712894adf3cfdda66dd3ddd14256',1,'abcg']]], + ['togglefullscreen_1',['toggleFullscreen',['../classabcg_1_1Window.html#acc923148257095b1baf454607ef21ad6',1,'abcg::Window']]], + ['toredstring_2',['toRedString',['../namespaceabcg.html#a7ffc0a33678775f855ffa982c00ccb0d',1,'abcg']]], + ['toyellowstring_3',['toYellowString',['../namespaceabcg.html#a9a8a9c73318a69a62645ca5ee239763d',1,'abcg']]], + ['triggeropenglshadercompile_4',['triggerOpenGLShaderCompile',['../namespaceabcg.html#a49e7d7355e5505155f33045df8ab1102',1,'abcg']]], + ['triggeropenglshaderlink_5',['triggerOpenGLShaderLink',['../namespaceabcg.html#aee435331b56516022710b8acc098883a',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/functions_e.html b/abcg/doc/html/search/functions_e.html deleted file mode 100644 index 22d2a6bf5..000000000 --- a/abcg/doc/html/search/functions_e.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_e.js b/abcg/doc/html/search/functions_e.js index 349e87749..58dca5571 100644 --- a/abcg/doc/html/search/functions_e.js +++ b/abcg/doc/html/search/functions_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['vulkanerror_956',['VulkanError',['../classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce',1,'abcg::VulkanError']]] + ['vulkanerror_0',['VulkanError',['../classabcg_1_1VulkanError.html#aa5a0a0656ae43e62cbffd8cf4ce758ce',1,'abcg::VulkanError']]] ]; diff --git a/abcg/doc/html/search/functions_f.html b/abcg/doc/html/search/functions_f.html deleted file mode 100644 index 54b7dee08..000000000 --- a/abcg/doc/html/search/functions_f.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/functions_f.js b/abcg/doc/html/search/functions_f.js index 1185a0774..b4ea9a226 100644 --- a/abcg/doc/html/search/functions_f.js +++ b/abcg/doc/html/search/functions_f.js @@ -1,6 +1,6 @@ var searchData= [ - ['what_957',['what',['../classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb',1,'abcg::Exception']]], - ['window_958',['Window',['../classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf',1,'abcg::Window::Window()=default'],['../classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48',1,'abcg::Window::Window(Window const &)=delete'],['../classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0',1,'abcg::Window::Window(Window &&)=default']]], - ['withcommandbuffer_959',['withCommandBuffer',['../classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc',1,'abcg::VulkanDevice']]] + ['what_0',['what',['../classabcg_1_1Exception.html#a2570f60fe3573e51566430f5a7c5f5fb',1,'abcg::Exception']]], + ['window_1',['window',['../classabcg_1_1Window.html#aa702b018021cfe38c189dc966d8ac6cf',1,'abcg::Window::Window()=default'],['../classabcg_1_1Window.html#aa8b9f266a2a760f8c28eedab86bada48',1,'abcg::Window::Window(Window const &)=delete'],['../classabcg_1_1Window.html#a15e6b232cf072323945cf357425b24e0',1,'abcg::Window::Window(Window &&)=default']]], + ['withcommandbuffer_2',['withCommandBuffer',['../classabcg_1_1VulkanDevice.html#af7d9903814f4f83641f1860fd0d5d0bc',1,'abcg::VulkanDevice']]] ]; diff --git a/abcg/doc/html/search/mag.svg b/abcg/doc/html/search/mag.svg new file mode 100644 index 000000000..ffb6cf0d0 --- /dev/null +++ b/abcg/doc/html/search/mag.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/abcg/doc/html/search/mag_d.svg b/abcg/doc/html/search/mag_d.svg new file mode 100644 index 000000000..4122773f9 --- /dev/null +++ b/abcg/doc/html/search/mag_d.svg @@ -0,0 +1,24 @@ + + + + + + + diff --git a/abcg/doc/html/search/mag_sel.svg b/abcg/doc/html/search/mag_sel.svg index 03626f64a..553dba877 100644 --- a/abcg/doc/html/search/mag_sel.svg +++ b/abcg/doc/html/search/mag_sel.svg @@ -1,59 +1,17 @@ - + - - - - image/svg+xml - - - - - + > - + /> + /> diff --git a/abcg/doc/html/search/mag_seld.svg b/abcg/doc/html/search/mag_seld.svg new file mode 100644 index 000000000..c906f84c8 --- /dev/null +++ b/abcg/doc/html/search/mag_seld.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/abcg/doc/html/search/namespaces_0.html b/abcg/doc/html/search/namespaces_0.html deleted file mode 100644 index 21db2c3a5..000000000 --- a/abcg/doc/html/search/namespaces_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/namespaces_0.js b/abcg/doc/html/search/namespaces_0.js index df2de9c69..17ad0a84a 100644 --- a/abcg/doc/html/search/namespaces_0.js +++ b/abcg/doc/html/search/namespaces_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['abcg_551',['abcg',['../namespaceabcg.html',1,'']]] + ['abcg_0',['abcg',['../namespaceabcg.html',1,'']]] ]; diff --git a/abcg/doc/html/search/nomatches.html b/abcg/doc/html/search/nomatches.html deleted file mode 100644 index 2b9360b6b..000000000 --- a/abcg/doc/html/search/nomatches.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -
-
No Matches
-
- - diff --git a/abcg/doc/html/search/pages_0.html b/abcg/doc/html/search/pages_0.html deleted file mode 100644 index 8517b48f0..000000000 --- a/abcg/doc/html/search/pages_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/pages_0.js b/abcg/doc/html/search/pages_0.js index 7256f72cf..400b20638 100644 --- a/abcg/doc/html/search/pages_0.js +++ b/abcg/doc/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['abcg_1042',['ABCg',['../index.html',1,'']]] + ['abcg_0',['ABCg',['../index.html',1,'']]] ]; diff --git a/abcg/doc/html/search/pages_1.html b/abcg/doc/html/search/pages_1.html deleted file mode 100644 index a0fb67963..000000000 --- a/abcg/doc/html/search/pages_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/pages_1.js b/abcg/doc/html/search/pages_1.js index 1ecd70fa2..dc7f55397 100644 --- a/abcg/doc/html/search/pages_1.js +++ b/abcg/doc/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['release_20notes_1043',['Release notes',['../md__home_harlen_dev_abcg_CHANGELOG.html',1,'']]] + ['notes_0',['Release notes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html',1,'']]] ]; diff --git a/abcg/doc/html/search/pages_2.js b/abcg/doc/html/search/pages_2.js new file mode 100644 index 000000000..5e3c185a2 --- /dev/null +++ b/abcg/doc/html/search/pages_2.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['release_20notes_0',['Release notes',['../md__2home_2harlen_2dev_2abcg_2CHANGELOG.html',1,'']]] +]; diff --git a/abcg/doc/html/search/related_0.html b/abcg/doc/html/search/related_0.html deleted file mode 100644 index 506aaecc0..000000000 --- a/abcg/doc/html/search/related_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/abcg/doc/html/search/related_0.js b/abcg/doc/html/search/related_0.js index 7c9d72136..efe597273 100644 --- a/abcg/doc/html/search/related_0.js +++ b/abcg/doc/html/search/related_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['resizingeventwatcher_1035',['resizingEventWatcher',['../classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509',1,'abcg::Window']]] + ['resizingeventwatcher_0',['resizingEventWatcher',['../classabcg_1_1Window.html#a33a77ed4888300e0008bb92fb5fec509',1,'abcg::Window']]] ]; diff --git a/abcg/doc/html/search/search.css b/abcg/doc/html/search/search.css index 954ce5ae0..19f76f9d5 100644 --- a/abcg/doc/html/search/search.css +++ b/abcg/doc/html/search/search.css @@ -1,10 +1,33 @@ -/*---------------- Search Box */ +/*---------------- Search Box positioning */ + +#main-menu > li:last-child { + /* This
  • object is the parent of the search bar */ + display: flex; + justify-content: center; + align-items: center; + height: 36px; + margin-right: 1em; +} + +/*---------------- Search box styling */ + +.SRPage * { + font-weight: normal; + line-height: normal; +} + +dark-mode-toggle { + margin-left: 5px; + display: flex; + float: right; +} #MSearchBox { + display: inline-block; white-space : nowrap; - background: white; + background: var(--search-background-color); border-radius: 0.65em; - box-shadow: inset 0.5px 0.5px 3px 0px #555; + box-shadow: var(--search-box-shadow); z-index: 102; } @@ -17,28 +40,47 @@ #MSearchSelect { display: inline-block; vertical-align: middle; - height: 1.4em; - padding: 0 0 0 0.3em; - margin: 0; + width: 20px; + height: 19px; + background-image: var(--search-magnification-select-image); + margin: 0 0 0 0.3em; + padding: 0; +} + +#MSearchSelectExt { + display: inline-block; + vertical-align: middle; + width: 10px; + height: 19px; + background-image: var(--search-magnification-image); + margin: 0 0 0 0.5em; + padding: 0; } + #MSearchField { display: inline-block; vertical-align: middle; width: 7.5em; - height: 1.1em; + height: 19px; margin: 0 0.15em; padding: 0; line-height: 1em; border:none; - color: #909090; + color: var(--search-foreground-color); outline: none; - font-family: Arial, Verdana, sans-serif; + font-family: var(--font-family-search); -webkit-border-radius: 0px; border-radius: 0px; background: none; } +@media(hover: none) { + /* to avoid zooming on iOS */ + #MSearchField { + font-size: 16px; + } +} #MSearchBox .right { display: inline-block; @@ -59,23 +101,15 @@ } #MSearchCloseImg { - height: 1.4em; padding: 0.3em; margin: 0; } .MSearchBoxActive #MSearchField { - color: #000000; + color: var(--search-active-color); } -#main-menu > li:last-child { - /* This
  • object is the parent of the search bar */ - display: flex; - justify-content: center; - align-items: center; - height: 36px; - margin-right: 1em; -} + /*---------------- Search filter selection */ @@ -83,8 +117,8 @@ display: none; position: absolute; left: 0; top: 0; - border: 1px solid #2E9AFE; - background-color: #F3F9FE; + border: 1px solid var(--search-filter-border-color); + background-color: var(--search-filter-background-color); z-index: 10001; padding-top: 4px; padding-bottom: 4px; @@ -97,7 +131,7 @@ } .SelectItem { - font: 8pt Arial, Verdana, sans-serif; + font: 8pt var(--font-family-search); padding-left: 2px; padding-right: 12px; border: 0px; @@ -105,7 +139,7 @@ span.SelectionMark { margin-right: 4px; - font-family: monospace; + font-family: var(--font-family-monospace); outline-style: none; text-decoration: none; } @@ -113,7 +147,7 @@ span.SelectionMark { a.SelectItem { display: block; outline-style: none; - color: #000000; + color: var(--search-filter-foreground-color); text-decoration: none; padding-left: 6px; padding-right: 12px; @@ -121,14 +155,14 @@ a.SelectItem { a.SelectItem:focus, a.SelectItem:active { - color: #000000; + color: var(--search-filter-foreground-color); outline-style: none; text-decoration: none; } a.SelectItem:hover { - color: #FFFFFF; - background-color: #004789; + color: var(--search-filter-highlight-text-color); + background-color: var(--search-filter-highlight-bg-color); outline-style: none; text-decoration: none; cursor: pointer; @@ -138,7 +172,7 @@ a.SelectItem:hover { /*---------------- Search results window */ iframe#MSearchResults { - width: 60ex; + /*width: 60ex;*/ height: 15em; } @@ -146,9 +180,12 @@ iframe#MSearchResults { display: none; position: absolute; left: 0; top: 0; - border: 1px solid #000; - background-color: #DDEEFE; + border: 1px solid var(--search-results-border-color); + background-color: var(--search-results-background-color); z-index:10000; + width: 300px; + height: 400px; + overflow: auto; } /* ----------------------------------- */ @@ -156,7 +193,6 @@ iframe#MSearchResults { #SRIndex { clear:both; - padding-bottom: 15px; } .SREntry { @@ -169,8 +205,9 @@ iframe#MSearchResults { padding: 1px 5px; } -body.SRPage { +div.SRPage { margin: 5px 2px; + background-color: var(--search-results-background-color); } .SRChildren { @@ -182,17 +219,18 @@ body.SRPage { } .SRSymbol { - font-weight: bold; - color: #004F99; - font-family: Arial, Verdana, sans-serif; + font-weight: bold; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); text-decoration: none; outline: none; } a.SRScope { display: block; - color: #004F99; - font-family: Arial, Verdana, sans-serif; + color: var(--search-results-foreground-color); + font-family: var(--font-family-search); + font-size: 8pt; text-decoration: none; outline: none; } @@ -204,14 +242,14 @@ a.SRScope:focus, a.SRScope:active { span.SRScope { padding-left: 4px; - font-family: Arial, Verdana, sans-serif; + font-family: var(--font-family-search); } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; - font-family: Arial, Verdana, sans-serif; + font-family: var(--font-family-search); } .SRResult { @@ -225,14 +263,10 @@ div.searchresults { /*---------------- External search page results */ -.searchresult { - background-color: #E1F0FF; -} - .pages b { color: white; padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); + background-image: var(--nav-gradient-active-image-parent); background-repeat: repeat-x; text-shadow: 0 1px 1px #000000; } diff --git a/abcg/doc/html/search/search.js b/abcg/doc/html/search/search.js index fb226f734..6fd40c677 100644 --- a/abcg/doc/html/search/search.js +++ b/abcg/doc/html/search/search.js @@ -73,6 +73,8 @@ function getYPos(item) return y; } +var searchResults = new SearchResults("searchResults"); + /* A class handling everything associated with the search panel. Parameters: @@ -80,7 +82,7 @@ function getYPos(item) storing this instance. Is needed to be able to set timeouts. resultPath - path to use for external files */ -function SearchBox(name, resultsPath, inFrame, label, extension) +function SearchBox(name, resultsPath, extension) { if (!name || !resultsPath) { alert("Missing parameters to SearchBox."); } if (!extension || extension == "") { extension = ".html"; } @@ -96,8 +98,6 @@ function SearchBox(name, resultsPath, inFrame, label, extension) this.hideTimeout = 0; this.searchIndex = 0; this.searchActive = false; - this.insideFrame = inFrame; - this.searchLabel = label; this.extension = extension; // ----------- DOM Elements @@ -136,30 +136,14 @@ function SearchBox(name, resultsPath, inFrame, label, extension) var searchSelectWindow = this.DOMSearchSelectWindow(); var searchField = this.DOMSearchSelect(); - if (this.insideFrame) - { - var left = getXPos(searchField); - var top = getYPos(searchField); - left += searchField.offsetWidth + 6; - top += searchField.offsetHeight; - - // show search selection popup - searchSelectWindow.style.display='block'; - left -= searchSelectWindow.offsetWidth; - searchSelectWindow.style.left = left + 'px'; - searchSelectWindow.style.top = top + 'px'; - } - else - { - var left = getXPos(searchField); - var top = getYPos(searchField); - top += searchField.offsetHeight; + var left = getXPos(searchField); + var top = getYPos(searchField); + top += searchField.offsetHeight; - // show search selection popup - searchSelectWindow.style.display='block'; - searchSelectWindow.style.left = left + 'px'; - searchSelectWindow.style.top = top + 'px'; - } + // show search selection popup + searchSelectWindow.style.display='block'; + searchSelectWindow.style.left = left + 'px'; + searchSelectWindow.style.top = top + 'px'; // stop selection hide timer if (this.hideTimeout) @@ -172,7 +156,7 @@ function SearchBox(name, resultsPath, inFrame, label, extension) this.OnSearchSelectHide = function() { - this.hideTimeout = setTimeout(this.name +".CloseSelectionWindow()", + this.hideTimeout = setTimeout(this.CloseSelectionWindow.bind(this), this.closeSelectionTimeout); } @@ -205,11 +189,13 @@ function SearchBox(name, resultsPath, inFrame, label, extension) } else { - window.frames.MSearchResults.postMessage("take_focus", "*"); + var elem = searchResults.NavNext(0); + if (elem) elem.focus(); } } else if (e.keyCode==27) // Escape out of the search field { + e.stopPropagation(); this.DOMSearchField().blur(); this.DOMPopupSearchResultsWindow().style.display = 'none'; this.DOMSearchClose().style.display = 'none'; @@ -226,7 +212,7 @@ function SearchBox(name, resultsPath, inFrame, label, extension) if (searchValue != "") // non-empty search { // set timer for search update - this.keyTimeout = setTimeout(this.name + '.Search()', + this.keyTimeout = setTimeout(this.Search.bind(this), this.keyTimeoutLength); } else // empty search field @@ -304,6 +290,7 @@ function SearchBox(name, resultsPath, inFrame, label, extension) } else if (e.keyCode==13 || e.keyCode==27) { + e.stopPropagation(); this.OnSelectItem(this.searchIndex); this.CloseSelectionWindow(); this.DOMSearchField().focus(); @@ -341,55 +328,70 @@ function SearchBox(name, resultsPath, inFrame, label, extension) idxChar = searchValue.substr(0, 2); } - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; + var jsFile; var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); if (idx!=-1) { var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + this.extension; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; + jsFile = this.resultsPath + indexSectionNames[this.searchIndex] + '_' + hexCode + '.js'; } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches' + this.extension; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; + + var loadJS = function(url, impl, loc){ + var scriptTag = document.createElement('script'); + scriptTag.src = url; + scriptTag.onload = impl; + scriptTag.onreadystatechange = impl; + loc.appendChild(scriptTag); } - window.frames.MSearchResults.location = resultsPageWithSearch; var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + var domSearchBox = this.DOMSearchBox(); + var domPopupSearchResults = this.DOMPopupSearchResults(); + var domSearchClose = this.DOMSearchClose(); + var resultsPath = this.resultsPath; + + var handleResults = function() { + document.getElementById("Loading").style.display="none"; + if (typeof searchData !== 'undefined') { + createResults(resultsPath); + document.getElementById("NoMatches").style.display="none"; + } + + if (idx!=-1) { + searchResults.Search(searchValue); + } else { // no file with search results => force empty search results + searchResults.Search('===='); + } - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline-block'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } + if (domPopupSearchResultsWindow.style.display!='block') + { + domSearchClose.style.display = 'inline-block'; + var left = getXPos(domSearchBox) + 150; + var top = getYPos(domSearchBox) + 20; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + var maxWidth = document.body.clientWidth; + var maxHeight = document.body.clientHeight; + var width = 300; + if (left<10) left=10; + if (width+left+8>maxWidth) width=maxWidth-left-8; + var height = 400; + if (height+top+8>maxHeight) height=maxHeight-top-8; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResultsWindow.style.height = height + 'px'; + } + } + + if (jsFile) { + loadJS(jsFile, handleResults, this.DOMPopupSearchResultsWindow()); + } else { + handleResults(); } this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; } // -------- Activation Functions @@ -403,22 +405,15 @@ function SearchBox(name, resultsPath, inFrame, label, extension) ) { this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } + this.searchActive = true; } else if (!isActive) // directly remove the panel { this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; this.searchActive = false; this.lastSearchValue = '' this.lastResultsPage = ''; + this.DOMSearchField().value = ''; } } } @@ -647,7 +642,7 @@ function SearchResults(name) } else // return focus to search field { - parent.document.getElementById("MSearchField").focus(); + document.getElementById("MSearchField").focus(); } } else if (this.lastKey==40) // Down @@ -677,8 +672,9 @@ function SearchResults(name) } else if (this.lastKey==27) // Escape { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); } else if (this.lastKey==13) // Enter { @@ -720,8 +716,9 @@ function SearchResults(name) } else if (this.lastKey==27) // Escape { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); + e.stopPropagation(); + searchBox.CloseResultsWindow(); + document.getElementById("MSearchField").focus(); } else if (this.lastKey==13) // Enter { @@ -744,9 +741,10 @@ function setClassAttr(elem,attr) elem.setAttribute('className',attr); } -function createResults() +function createResults(resultsPath) { var results = document.getElementById("SRResults"); + results.innerHTML = ''; for (var e=0; e - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/typedefs_0.js b/abcg/doc/html/search/typedefs_0.js index 641f5f589..2d9e78530 100644 --- a/abcg/doc/html/search/typedefs_0.js +++ b/abcg/doc/html/search/typedefs_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['source_5flocation_1015',['source_location',['../namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2',1,'abcg']]] + ['source_5flocation_0',['source_location',['../namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2',1,'abcg']]] ]; diff --git a/abcg/doc/html/search/typedefs_1.html b/abcg/doc/html/search/typedefs_1.html deleted file mode 100644 index 46cf01e62..000000000 --- a/abcg/doc/html/search/typedefs_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/typedefs_1.js b/abcg/doc/html/search/typedefs_1.js deleted file mode 100644 index 4f233d449..000000000 --- a/abcg/doc/html/search/typedefs_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['source_5flocation_898',['source_location',['../namespaceabcg.html#acb1d90de1449e0e743214d0ae8bddff2',1,'abcg']]] -]; diff --git a/abcg/doc/html/search/variables_0.html b/abcg/doc/html/search/variables_0.html deleted file mode 100644 index 1e477c08c..000000000 --- a/abcg/doc/html/search/variables_0.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_0.js b/abcg/doc/html/search/variables_0.js index f1f2bbf95..2b3f427a7 100644 --- a/abcg/doc/html/search/variables_0.js +++ b/abcg/doc/html/search/variables_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['attributedescriptions_961',['attributeDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f',1,'abcg::VulkanPipelineCreateInfo']]] + ['attributedescriptions_0',['attributeDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#a21d205573366e2e553b04b429c129d3f',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_1.html b/abcg/doc/html/search/variables_1.html deleted file mode 100644 index ea73d9a49..000000000 --- a/abcg/doc/html/search/variables_1.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_1.js b/abcg/doc/html/search/variables_1.js index 2063add94..68343fb41 100644 --- a/abcg/doc/html/search/variables_1.js +++ b/abcg/doc/html/search/variables_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['bindingdescriptions_962',['bindingDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc',1,'abcg::VulkanPipelineCreateInfo']]] + ['bindingdescriptions_0',['bindingDescriptions',['../structabcg_1_1VulkanPipelineCreateInfo.html#aeceb310b6089dbc7fc03f4d4107a01bc',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_2.html b/abcg/doc/html/search/variables_2.html deleted file mode 100644 index 0580462e9..000000000 --- a/abcg/doc/html/search/variables_2.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_2.js b/abcg/doc/html/search/variables_2.js index 25ff989f5..6219fbe75 100644 --- a/abcg/doc/html/search/variables_2.js +++ b/abcg/doc/html/search/variables_2.js @@ -1,10 +1,10 @@ var searchData= [ - ['colorblendattachment_963',['colorBlendAttachment',['../structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf',1,'abcg::VulkanPipelineCreateInfo']]], - ['colorblendstate_964',['colorBlendState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2',1,'abcg::VulkanPipelineCreateInfo']]], - ['colorimage_965',['colorImage',['../structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79',1,'abcg::VulkanFrame']]], - ['commandbuffer_966',['commandBuffer',['../structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020',1,'abcg::VulkanFrame']]], - ['commandbufferui_967',['commandBufferUI',['../structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4',1,'abcg::VulkanFrame']]], - ['commandpool_968',['commandPool',['../structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89',1,'abcg::VulkanFrame']]], - ['compute_969',['compute',['../structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca',1,'abcg::VulkanCommandPools::compute()'],['../structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a',1,'abcg::VulkanQueues::compute()'],['../structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594',1,'abcg::VulkanQueuesFamilies::compute()']]] + ['colorblendattachment_0',['colorBlendAttachment',['../structabcg_1_1VulkanPipelineCreateInfo.html#aa5ea15999850fa2dfe34904cc2967dcf',1,'abcg::VulkanPipelineCreateInfo']]], + ['colorblendstate_1',['colorBlendState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a8f619f17d792103695630434e5ffa8b2',1,'abcg::VulkanPipelineCreateInfo']]], + ['colorimage_2',['colorImage',['../structabcg_1_1VulkanFrame.html#a4d4e911f29fb4da4c62f3f7af4607f79',1,'abcg::VulkanFrame']]], + ['commandbuffer_3',['commandBuffer',['../structabcg_1_1VulkanFrame.html#a09e1b9bef7c11ce5217a30e2d60cf020',1,'abcg::VulkanFrame']]], + ['commandbufferui_4',['commandBufferUI',['../structabcg_1_1VulkanFrame.html#a78141c209406580fe7b7b308a89e5aa4',1,'abcg::VulkanFrame']]], + ['commandpool_5',['commandPool',['../structabcg_1_1VulkanFrame.html#aeb73ab1a9f74961233d4b29a563aef89',1,'abcg::VulkanFrame']]], + ['compute_6',['compute',['../structabcg_1_1VulkanCommandPools.html#ae92fad133885626122607f37761b39ca',1,'abcg::VulkanCommandPools::compute'],['../structabcg_1_1VulkanQueues.html#ad4407f2456a1102537909ac3fef5928a',1,'abcg::VulkanQueues::compute'],['../structabcg_1_1VulkanQueuesFamilies.html#a5079aa2f106d59fd3c437f0b8d982594',1,'abcg::VulkanQueuesFamilies::compute']]] ]; diff --git a/abcg/doc/html/search/variables_3.html b/abcg/doc/html/search/variables_3.html deleted file mode 100644 index 0d69e7619..000000000 --- a/abcg/doc/html/search/variables_3.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_3.js b/abcg/doc/html/search/variables_3.js index 30cbb247f..51de2b6ba 100644 --- a/abcg/doc/html/search/variables_3.js +++ b/abcg/doc/html/search/variables_3.js @@ -1,8 +1,8 @@ var searchData= [ - ['data_970',['data',['../structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f',1,'abcg::VulkanBufferCreateInfo']]], - ['depthbuffersize_971',['depthBufferSize',['../structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a',1,'abcg::OpenGLSettings::depthBufferSize()'],['../structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b',1,'abcg::VulkanSettings::depthBufferSize()']]], - ['depthstencilstate_972',['depthStencilState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5',1,'abcg::VulkanPipelineCreateInfo']]], - ['doublebuffering_973',['doubleBuffering',['../structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338',1,'abcg::OpenGLSettings']]], - ['dynamicstates_974',['dynamicStates',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd',1,'abcg::VulkanPipelineCreateInfo']]] + ['data_0',['data',['../structabcg_1_1VulkanBufferCreateInfo.html#aa4f7f6a94fa3ce7cf7aef99afa16ac5f',1,'abcg::VulkanBufferCreateInfo']]], + ['depthbuffersize_1',['depthbuffersize',['../structabcg_1_1OpenGLSettings.html#a7e55ed42551b900cad40fc62f625350a',1,'abcg::OpenGLSettings::depthBufferSize'],['../structabcg_1_1VulkanSettings.html#a07bf4a2018e4c5e448aa7e6685a7885b',1,'abcg::VulkanSettings::depthBufferSize']]], + ['depthstencilstate_2',['depthStencilState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a975155f44a0ef2085102344e6e1f0fa5',1,'abcg::VulkanPipelineCreateInfo']]], + ['doublebuffering_3',['doubleBuffering',['../structabcg_1_1OpenGLSettings.html#a803c16f1fb40cc35f125722fa38e4338',1,'abcg::OpenGLSettings']]], + ['dynamicstates_4',['dynamicStates',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc27c6b72ac275c76b7edc49b00a2ecd',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_4.html b/abcg/doc/html/search/variables_4.html deleted file mode 100644 index a4b6506bb..000000000 --- a/abcg/doc/html/search/variables_4.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_4.js b/abcg/doc/html/search/variables_4.js index c4a9e020a..60d0e1452 100644 --- a/abcg/doc/html/search/variables_4.js +++ b/abcg/doc/html/search/variables_4.js @@ -1,7 +1,7 @@ var searchData= [ - ['fence_975',['fence',['../structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3',1,'abcg::VulkanFrame']]], - ['flipupsidedown_976',['flipUpsideDown',['../structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad',1,'abcg::OpenGLTextureCreateInfo']]], - ['framebuffermain_977',['framebufferMain',['../structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820',1,'abcg::VulkanFrame']]], - ['fullscreenelementid_978',['fullscreenElementID',['../structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a',1,'abcg::WindowSettings']]] + ['fence_0',['fence',['../structabcg_1_1VulkanFrame.html#a588976a9c273de75dec81028086c6fc3',1,'abcg::VulkanFrame']]], + ['flipupsidedown_1',['flipUpsideDown',['../structabcg_1_1OpenGLTextureCreateInfo.html#addabf0f11e77eb4e2605940ec91a1dad',1,'abcg::OpenGLTextureCreateInfo']]], + ['framebuffermain_2',['framebufferMain',['../structabcg_1_1VulkanFrame.html#aba1f36e936ceaff0f968d8e234d8f820',1,'abcg::VulkanFrame']]], + ['fullscreenelementid_3',['fullscreenElementID',['../structabcg_1_1WindowSettings.html#a63c8ca61aba15173b7875a02ab16b19a',1,'abcg::WindowSettings']]] ]; diff --git a/abcg/doc/html/search/variables_5.html b/abcg/doc/html/search/variables_5.html deleted file mode 100644 index 7e345d16c..000000000 --- a/abcg/doc/html/search/variables_5.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_5.js b/abcg/doc/html/search/variables_5.js index fe411d51e..1b8562a6c 100644 --- a/abcg/doc/html/search/variables_5.js +++ b/abcg/doc/html/search/variables_5.js @@ -1,5 +1,5 @@ var searchData= [ - ['generatemipmaps_979',['generateMipmaps',['../structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f',1,'abcg::OpenGLTextureCreateInfo::generateMipmaps()'],['../structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563',1,'abcg::OpenGLCubemapCreateInfo::generateMipmaps()']]], - ['graphics_980',['graphics',['../structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d',1,'abcg::VulkanCommandPools::graphics()'],['../structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d',1,'abcg::VulkanQueues::graphics()'],['../structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034',1,'abcg::VulkanQueuesFamilies::graphics()']]] + ['generatemipmaps_0',['generatemipmaps',['../structabcg_1_1OpenGLTextureCreateInfo.html#aeb7ce4f29f2ecf6f4866a3448b73313f',1,'abcg::OpenGLTextureCreateInfo::generateMipmaps'],['../structabcg_1_1OpenGLCubemapCreateInfo.html#affcc0a8f16f52376045888f01dad8563',1,'abcg::OpenGLCubemapCreateInfo::generateMipmaps']]], + ['graphics_1',['graphics',['../structabcg_1_1VulkanCommandPools.html#a207d9deea08cda2bb99832828a63a44d',1,'abcg::VulkanCommandPools::graphics'],['../structabcg_1_1VulkanQueues.html#a9c0f22bd376af220feb2ffb92962408d',1,'abcg::VulkanQueues::graphics'],['../structabcg_1_1VulkanQueuesFamilies.html#afd66ca6fa2734f9789ed51809e74b034',1,'abcg::VulkanQueuesFamilies::graphics']]] ]; diff --git a/abcg/doc/html/search/variables_6.html b/abcg/doc/html/search/variables_6.html deleted file mode 100644 index 7d48e75e2..000000000 --- a/abcg/doc/html/search/variables_6.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_6.js b/abcg/doc/html/search/variables_6.js index f2b66bb4f..6b7cc9bf3 100644 --- a/abcg/doc/html/search/variables_6.js +++ b/abcg/doc/html/search/variables_6.js @@ -1,4 +1,4 @@ var searchData= [ - ['height_981',['height',['../structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d',1,'abcg::WindowSettings']]] + ['height_0',['height',['../structabcg_1_1WindowSettings.html#a7248a419830adea17916558922e05e9d',1,'abcg::WindowSettings']]] ]; diff --git a/abcg/doc/html/search/variables_7.html b/abcg/doc/html/search/variables_7.html deleted file mode 100644 index 5c2634092..000000000 --- a/abcg/doc/html/search/variables_7.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_7.js b/abcg/doc/html/search/variables_7.js index 77444ef03..e2aa1b934 100644 --- a/abcg/doc/html/search/variables_7.js +++ b/abcg/doc/html/search/variables_7.js @@ -1,6 +1,6 @@ var searchData= [ - ['index_982',['index',['../structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1',1,'abcg::VulkanFrame']]], - ['info_983',['info',['../structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2',1,'abcg::VulkanImageCreateInfo']]], - ['inputassemblystate_984',['inputAssemblyState',['../structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2',1,'abcg::VulkanPipelineCreateInfo']]] + ['index_0',['index',['../structabcg_1_1VulkanFrame.html#a13923e36b6699adeac0d6d77303b8cc1',1,'abcg::VulkanFrame']]], + ['info_1',['info',['../structabcg_1_1VulkanImageCreateInfo.html#a23600b7bb3043910f998e6f628a8f8e2',1,'abcg::VulkanImageCreateInfo']]], + ['inputassemblystate_2',['inputAssemblyState',['../structabcg_1_1VulkanPipelineCreateInfo.html#accfcb22092ee18ee7ef87a871f3748c2',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_8.html b/abcg/doc/html/search/variables_8.html deleted file mode 100644 index dc9ec54a5..000000000 --- a/abcg/doc/html/search/variables_8.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_8.js b/abcg/doc/html/search/variables_8.js index 555271568..88238a193 100644 --- a/abcg/doc/html/search/variables_8.js +++ b/abcg/doc/html/search/variables_8.js @@ -1,6 +1,6 @@ var searchData= [ - ['majorversion_985',['majorVersion',['../structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419',1,'abcg::OpenGLSettings']]], - ['minorversion_986',['minorVersion',['../structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f',1,'abcg::OpenGLSettings']]], - ['multisamplestate_987',['multisampleState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b',1,'abcg::VulkanPipelineCreateInfo']]] + ['majorversion_0',['majorVersion',['../structabcg_1_1OpenGLSettings.html#afc7fa9f1313149f8adf2ae0cca988419',1,'abcg::OpenGLSettings']]], + ['minorversion_1',['minorVersion',['../structabcg_1_1OpenGLSettings.html#ab6cd2256bf7a8ba13ca1a9d6d8c5430f',1,'abcg::OpenGLSettings']]], + ['multisamplestate_2',['multisampleState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a706358a130780833d6142a57c44d8e6b',1,'abcg::VulkanPipelineCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_9.html b/abcg/doc/html/search/variables_9.html deleted file mode 100644 index 7b0147509..000000000 --- a/abcg/doc/html/search/variables_9.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_9.js b/abcg/doc/html/search/variables_9.js index 01d2d59df..371291e9d 100644 --- a/abcg/doc/html/search/variables_9.js +++ b/abcg/doc/html/search/variables_9.js @@ -1,10 +1,10 @@ var searchData= [ - ['path_988',['path',['../structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb',1,'abcg::OpenGLTextureCreateInfo']]], - ['paths_989',['paths',['../structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0',1,'abcg::OpenGLCubemapCreateInfo']]], - ['pipelinecache_990',['pipelineCache',['../structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b',1,'abcg::VulkanPipelineCreateInfo']]], - ['pipelinelayout_991',['pipelineLayout',['../structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7',1,'abcg::VulkanPipelineCreateInfo']]], - ['present_992',['present',['../structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693',1,'abcg::VulkanQueues::present()'],['../structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e',1,'abcg::VulkanQueuesFamilies::present()']]], - ['profile_993',['profile',['../structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06',1,'abcg::OpenGLSettings']]], - ['properties_994',['properties',['../structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465',1,'abcg::VulkanBufferCreateInfo::properties()'],['../structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430',1,'abcg::VulkanImageCreateInfo::properties()']]] + ['path_0',['path',['../structabcg_1_1OpenGLTextureCreateInfo.html#aa530e14dd1ebe827bdbb1e12c2fde9eb',1,'abcg::OpenGLTextureCreateInfo']]], + ['paths_1',['paths',['../structabcg_1_1OpenGLCubemapCreateInfo.html#aa7c351d152aa3cbe2489d1c0a3321cf0',1,'abcg::OpenGLCubemapCreateInfo']]], + ['pipelinecache_2',['pipelineCache',['../structabcg_1_1VulkanPipelineCreateInfo.html#a458a37fb1c02f8e8f38e225e03958e4b',1,'abcg::VulkanPipelineCreateInfo']]], + ['pipelinelayout_3',['pipelineLayout',['../structabcg_1_1VulkanPipelineCreateInfo.html#af6f17be735d6640f8ba1acca984888b7',1,'abcg::VulkanPipelineCreateInfo']]], + ['present_4',['present',['../structabcg_1_1VulkanQueues.html#ae2266d17e17ae1aaa598c1401a9d5693',1,'abcg::VulkanQueues::present'],['../structabcg_1_1VulkanQueuesFamilies.html#af4cb4d7aaea6ea89c19a416d4bbb396e',1,'abcg::VulkanQueuesFamilies::present']]], + ['profile_5',['profile',['../structabcg_1_1OpenGLSettings.html#aea12bf2d9cab8d22450248f53cc53c06',1,'abcg::OpenGLSettings']]], + ['properties_6',['properties',['../structabcg_1_1VulkanBufferCreateInfo.html#aaf7fd4b23a9eebef487087cca6150465',1,'abcg::VulkanBufferCreateInfo::properties'],['../structabcg_1_1VulkanImageCreateInfo.html#ad7e70aa61a2a45bbd88470c0cb299430',1,'abcg::VulkanImageCreateInfo::properties']]] ]; diff --git a/abcg/doc/html/search/variables_a.html b/abcg/doc/html/search/variables_a.html deleted file mode 100644 index 52a724d19..000000000 --- a/abcg/doc/html/search/variables_a.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_a.js b/abcg/doc/html/search/variables_a.js index 17dbf593c..b53a1a21c 100644 --- a/abcg/doc/html/search/variables_a.js +++ b/abcg/doc/html/search/variables_a.js @@ -1,5 +1,5 @@ var searchData= [ - ['rasterizationstate_995',['rasterizationState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be',1,'abcg::VulkanPipelineCreateInfo']]], - ['righthandedsystem_996',['rightHandedSystem',['../structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137',1,'abcg::OpenGLCubemapCreateInfo']]] + ['rasterizationstate_0',['rasterizationState',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3ac302c83e1a05758d9fe1efb4d593be',1,'abcg::VulkanPipelineCreateInfo']]], + ['righthandedsystem_1',['rightHandedSystem',['../structabcg_1_1OpenGLCubemapCreateInfo.html#a243dcbc334ab16177e9a1c602da5b137',1,'abcg::OpenGLCubemapCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_b.html b/abcg/doc/html/search/variables_b.html deleted file mode 100644 index f376b27af..000000000 --- a/abcg/doc/html/search/variables_b.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_b.js b/abcg/doc/html/search/variables_b.js index 47910c702..9abb17fca 100644 --- a/abcg/doc/html/search/variables_b.js +++ b/abcg/doc/html/search/variables_b.js @@ -1,14 +1,14 @@ var searchData= [ - ['samples_997',['samples',['../structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b',1,'abcg::OpenGLSettings::samples()'],['../structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e',1,'abcg::VulkanSettings::samples()']]], - ['scissors_998',['scissors',['../structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6',1,'abcg::VulkanPipelineCreateInfo']]], - ['shader_999',['shader',['../structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a',1,'abcg::OpenGLShader']]], - ['shaders_1000',['shaders',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9',1,'abcg::VulkanPipelineCreateInfo']]], - ['showfps_1001',['showFPS',['../structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028',1,'abcg::WindowSettings']]], - ['showfullscreenbutton_1002',['showFullscreenButton',['../structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c',1,'abcg::WindowSettings']]], - ['size_1003',['size',['../structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3',1,'abcg::VulkanBufferCreateInfo']]], - ['source_1004',['source',['../structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47',1,'abcg::ShaderSource']]], - ['srgbtolinear_1005',['sRGBToLinear',['../structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c',1,'abcg::OpenGLTextureCreateInfo']]], - ['stage_1006',['stage',['../structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53',1,'abcg::OpenGLShader::stage()'],['../structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e',1,'abcg::ShaderSource::stage()']]], - ['stencilbuffersize_1007',['stencilBufferSize',['../structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9',1,'abcg::OpenGLSettings::stencilBufferSize()'],['../structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092',1,'abcg::VulkanSettings::stencilBufferSize()']]] + ['samples_0',['samples',['../structabcg_1_1OpenGLSettings.html#a638f3bdcce5d64d33af0ea962e1d442b',1,'abcg::OpenGLSettings::samples'],['../structabcg_1_1VulkanSettings.html#a2313becf3db6422e7e21db4c85a6ca3e',1,'abcg::VulkanSettings::samples']]], + ['scissors_1',['scissors',['../structabcg_1_1VulkanPipelineCreateInfo.html#a1e14b7422be45775bd1f32d6b7b781f6',1,'abcg::VulkanPipelineCreateInfo']]], + ['shader_2',['shader',['../structabcg_1_1OpenGLShader.html#a11bf84aa5bd59ff6922c8dd7e2584d0a',1,'abcg::OpenGLShader']]], + ['shaders_3',['shaders',['../structabcg_1_1VulkanPipelineCreateInfo.html#a3e96b2025d8cc1ffba218670c2403fa9',1,'abcg::VulkanPipelineCreateInfo']]], + ['showfps_4',['showFPS',['../structabcg_1_1WindowSettings.html#aabd375c2547aa72f935e2424001aa028',1,'abcg::WindowSettings']]], + ['showfullscreenbutton_5',['showFullscreenButton',['../structabcg_1_1WindowSettings.html#a1e5f889ea5ca8aff15df1a14f394a95c',1,'abcg::WindowSettings']]], + ['size_6',['size',['../structabcg_1_1VulkanBufferCreateInfo.html#a862c279c01a8d9d85f1e90b6f12d0dc3',1,'abcg::VulkanBufferCreateInfo']]], + ['source_7',['source',['../structabcg_1_1ShaderSource.html#acbbc27c5cbecd70681a56edf39f5ff47',1,'abcg::ShaderSource']]], + ['srgbtolinear_8',['sRGBToLinear',['../structabcg_1_1OpenGLTextureCreateInfo.html#acee939c3416c3b9c6ca3263740063f3c',1,'abcg::OpenGLTextureCreateInfo']]], + ['stage_9',['stage',['../structabcg_1_1OpenGLShader.html#a7b8598c453a1d9a6f9013ceba863cc53',1,'abcg::OpenGLShader::stage'],['../structabcg_1_1ShaderSource.html#aea139da85d000dcb2b3127081d26423e',1,'abcg::ShaderSource::stage']]], + ['stencilbuffersize_10',['stencilbuffersize',['../structabcg_1_1OpenGLSettings.html#ada0db76607a2f84573763ceeeeb882c9',1,'abcg::OpenGLSettings::stencilBufferSize'],['../structabcg_1_1VulkanSettings.html#ac946ad39a7588eb5a960cd3b3fbf2092',1,'abcg::VulkanSettings::stencilBufferSize']]] ]; diff --git a/abcg/doc/html/search/variables_c.html b/abcg/doc/html/search/variables_c.html deleted file mode 100644 index 6019eba96..000000000 --- a/abcg/doc/html/search/variables_c.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_c.js b/abcg/doc/html/search/variables_c.js index 245df1ee8..c9b24fb99 100644 --- a/abcg/doc/html/search/variables_c.js +++ b/abcg/doc/html/search/variables_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['title_1008',['title',['../structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d',1,'abcg::WindowSettings']]], - ['transfer_1009',['transfer',['../structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4',1,'abcg::VulkanCommandPools::transfer()'],['../structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4',1,'abcg::VulkanQueues::transfer()'],['../structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab',1,'abcg::VulkanQueuesFamilies::transfer()']]] + ['title_0',['title',['../structabcg_1_1WindowSettings.html#a8136786953b8042eda46ff55298a4d9d',1,'abcg::WindowSettings']]], + ['transfer_1',['transfer',['../structabcg_1_1VulkanCommandPools.html#aa0c7811d81fa0c51293bd3f6dbe3f4f4',1,'abcg::VulkanCommandPools::transfer'],['../structabcg_1_1VulkanQueues.html#a70263f2f8818d99a550e9a070e2486c4',1,'abcg::VulkanQueues::transfer'],['../structabcg_1_1VulkanQueuesFamilies.html#a6b157e8e7c13fe4033ee2b0cf8b8d7ab',1,'abcg::VulkanQueuesFamilies::transfer']]] ]; diff --git a/abcg/doc/html/search/variables_d.html b/abcg/doc/html/search/variables_d.html deleted file mode 100644 index f61ae7511..000000000 --- a/abcg/doc/html/search/variables_d.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_d.js b/abcg/doc/html/search/variables_d.js index 619788092..ffcd79720 100644 --- a/abcg/doc/html/search/variables_d.js +++ b/abcg/doc/html/search/variables_d.js @@ -1,4 +1,4 @@ var searchData= [ - ['usage_1010',['usage',['../structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5',1,'abcg::VulkanBufferCreateInfo']]] + ['usage_0',['usage',['../structabcg_1_1VulkanBufferCreateInfo.html#aac514269f34a7e48e58d483ed6936ba5',1,'abcg::VulkanBufferCreateInfo']]] ]; diff --git a/abcg/doc/html/search/variables_e.html b/abcg/doc/html/search/variables_e.html deleted file mode 100644 index 7bfd37215..000000000 --- a/abcg/doc/html/search/variables_e.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_e.js b/abcg/doc/html/search/variables_e.js index 82897454c..8f7ed957d 100644 --- a/abcg/doc/html/search/variables_e.js +++ b/abcg/doc/html/search/variables_e.js @@ -1,6 +1,6 @@ var searchData= [ - ['viewinfo_1011',['viewInfo',['../structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6',1,'abcg::VulkanImageCreateInfo']]], - ['viewports_1012',['viewports',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f',1,'abcg::VulkanPipelineCreateInfo']]], - ['vsync_1013',['vSync',['../structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672',1,'abcg::OpenGLSettings::vSync()'],['../structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3',1,'abcg::VulkanSettings::vSync()']]] + ['viewinfo_0',['viewInfo',['../structabcg_1_1VulkanImageCreateInfo.html#a586c6bdaa5adc45d20f905dd145aa5d6',1,'abcg::VulkanImageCreateInfo']]], + ['viewports_1',['viewports',['../structabcg_1_1VulkanPipelineCreateInfo.html#afc507b1cea2ca3b5234548575955c40f',1,'abcg::VulkanPipelineCreateInfo']]], + ['vsync_2',['vsync',['../structabcg_1_1OpenGLSettings.html#a6b44d787ebf56ea516cfb5a0c87f9672',1,'abcg::OpenGLSettings::vSync'],['../structabcg_1_1VulkanSettings.html#a835e8a78a2b87f3839af4fde3a4a6da3',1,'abcg::VulkanSettings::vSync']]] ]; diff --git a/abcg/doc/html/search/variables_f.html b/abcg/doc/html/search/variables_f.html deleted file mode 100644 index d97920d08..000000000 --- a/abcg/doc/html/search/variables_f.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - -
    -
    Loading...
    -
    - -
    Searching...
    -
    No Matches
    - -
    - - diff --git a/abcg/doc/html/search/variables_f.js b/abcg/doc/html/search/variables_f.js index d5ba32b12..bc897932b 100644 --- a/abcg/doc/html/search/variables_f.js +++ b/abcg/doc/html/search/variables_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['width_1014',['width',['../structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36',1,'abcg::WindowSettings']]] + ['width_0',['width',['../structabcg_1_1WindowSettings.html#ada062b6fe2f5b26d0088af70bb790c36',1,'abcg::WindowSettings']]] ]; diff --git a/abcg/doc/html/snapshot.png b/abcg/doc/html/snapshot.png deleted file mode 100644 index e76920484..000000000 Binary files a/abcg/doc/html/snapshot.png and /dev/null differ diff --git a/abcg/doc/html/splitbard.png b/abcg/doc/html/splitbard.png new file mode 100644 index 000000000..18a1d74cd Binary files /dev/null and b/abcg/doc/html/splitbard.png differ diff --git a/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo-members.html b/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo-members.html index 95329658b..60bd13933 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo-members.html +++ b/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
  • - + +/* @license-end */ +
    @@ -79,7 +80,7 @@

    @@ -93,28 +94,34 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLCubemapCreateInfo Member List
    +
    abcg::OpenGLCubemapCreateInfo Member List
    diff --git a/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo.html b/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo.html index c275c67a3..f77f53d6e 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo.html +++ b/abcg/doc/html/structabcg_1_1OpenGLCubemapCreateInfo.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLCubemapCreateInfo Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@

    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@

    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLCubemapCreateInfo Struct Reference
    +
    abcg::OpenGLCubemapCreateInfo Struct Reference
    @@ -112,23 +119,23 @@

    #include <abcgOpenGLImage.hpp>

    - - - + + - - + + - - + +

    +

    Public Attributes

    std::array< std::string_view, 6 > paths {}
     Array of paths to the image files (PNG or JPEG) containing the sides of the cube map, given in the order +x, -y, +y, -y, +z, -z. More...
    std::array< std::string_view, 6 > paths {}
     Array of paths to the image files (PNG or JPEG) containing the sides of the cube map, given in the order +x, -y, +y, -y, +z, -z.
     
    bool generateMipmaps {true}
     Whether to generate mipmap levels. More...
    bool generateMipmaps {true}
     Whether to generate mipmap levels.
     
    bool rightHandedSystem {true}
     Whether to convert the cubemap from a left-handed system to a right-handed system. More...
    bool rightHandedSystem {true}
     Whether to convert the cubemap from a left-handed system to a right-handed system.
     

    Detailed Description

    Configuration settings for creating a cubemap texture for OpenGL.

    Member Data Documentation

    - -

    ◆ generateMipmaps

    + +

    ◆ generateMipmaps

    @@ -143,8 +150,8 @@

    -

    ◆ paths

    + +

    ◆ paths

    @@ -159,8 +166,8 @@

    -

    ◆ rightHandedSystem

    + +

    ◆ rightHandedSystem

    @@ -184,7 +191,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1OpenGLSettings-members.html b/abcg/doc/html/structabcg_1_1OpenGLSettings-members.html index c1d17b068..420aa6760 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLSettings-members.html +++ b/abcg/doc/html/structabcg_1_1OpenGLSettings-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,33 +94,39 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLSettings Member List
    +
    abcg::OpenGLSettings Member List

    diff --git a/abcg/doc/html/structabcg_1_1OpenGLSettings.html b/abcg/doc/html/structabcg_1_1OpenGLSettings.html index 84a3e3630..c431ee621 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLSettings.html +++ b/abcg/doc/html/structabcg_1_1OpenGLSettings.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLSettings Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLSettings Struct Reference
    +
    abcg::OpenGLSettings Struct Reference
    @@ -112,31 +119,31 @@

    #include <abcgOpenGLWindow.hpp>

    - - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + +

    +

    Public Attributes

    OpenGLProfile profile {OpenGLProfile::Core}
     Type of OpenGL context. More...
    OpenGLProfile profile {OpenGLProfile::Core}
     Type of OpenGL context.
     
    int majorVersion {3}
     OpenGL context major version. More...
    int majorVersion {3}
     OpenGL context major version.
     
    int minorVersion {3}
     OpenGL context minor version. More...
    int minorVersion {3}
     OpenGL context minor version.
     
    int depthBufferSize {24}
     Minimum number of bits in the depth buffer. More...
    int depthBufferSize {24}
     Minimum number of bits in the depth buffer.
     
    int stencilBufferSize {0}
     Minimum number of bits in the stencil buffer. More...
    int stencilBufferSize {0}
     Minimum number of bits in the stencil buffer.
     
    int samples {0}
     Number of samples used around the current pixel used for multisample anti-aliasing. More...
    int samples {0}
     Number of samples used around the current pixel used for multisample anti-aliasing.
     
    bool vSync {false}
     Whether the swapping of the front and back frame buffers is synchronized with the vertical retrace. More...
    bool vSync {false}
     Whether the swapping of the front and back frame buffers is synchronized with the vertical retrace.
     
    bool doubleBuffering {true}
     Whether the output is double buffered. More...
    bool doubleBuffering {true}
     Whether the output is double buffered.
     

    Detailed Description

    @@ -146,8 +153,8 @@
    abcg::OpenGLWindow::setOpenGLSettings.

    Member Data Documentation

    - -

    ◆ depthBufferSize

    + +

    ◆ depthBufferSize

    @@ -162,8 +169,8 @@

    -

    ◆ doubleBuffering

    + +

    ◆ doubleBuffering

    @@ -178,8 +185,8 @@

    -

    ◆ majorVersion

    + +

    ◆ majorVersion

    @@ -194,8 +201,8 @@

    -

    ◆ minorVersion

    + +

    ◆ minorVersion

    @@ -210,8 +217,8 @@

    -

    ◆ profile

    + +

    ◆ profile

    @@ -226,8 +233,8 @@

    -

    ◆ samples

    + +

    ◆ samples

    @@ -242,8 +249,8 @@

    -

    ◆ stencilBufferSize

    + +

    ◆ stencilBufferSize

    @@ -258,8 +265,8 @@

    -

    ◆ vSync

    + +

    ◆ vSync

    @@ -283,7 +290,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1OpenGLShader-members.html b/abcg/doc/html/structabcg_1_1OpenGLShader-members.html index 57944cc5f..3d4c9cf74 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLShader-members.html +++ b/abcg/doc/html/structabcg_1_1OpenGLShader-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,27 +94,33 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLShader Member List
    +
    abcg::OpenGLShader Member List

    This is the complete list of members for abcg::OpenGLShader, including all inherited members.

    - +
    shaderabcg::OpenGLShader
    stageabcg::OpenGLShader
    stageabcg::OpenGLShader

    diff --git a/abcg/doc/html/structabcg_1_1OpenGLShader.html b/abcg/doc/html/structabcg_1_1OpenGLShader.html index 1f1948368..8aa56cdcc 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLShader.html +++ b/abcg/doc/html/structabcg_1_1OpenGLShader.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLShader Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLShader Struct Reference
    +
    abcg::OpenGLShader Struct Reference
    @@ -112,20 +119,20 @@

    #include <abcgOpenGLShader.hpp>

    - - - + + - - + +

    +

    Public Attributes

    GLuint shader {}
     Shader object. More...
    GLuint shader {}
     Shader object.
     
    GLuint stage {}
     Shader stage (e.g., GL_VERTEX_SHADER). More...
    GLuint stage {}
     Shader stage (e.g., GL_VERTEX_SHADER).
     

    Detailed Description

    OpenGL shader object and its corresponding stage.

    Member Data Documentation

    - -

    ◆ shader

    + +

    ◆ shader

    @@ -140,8 +147,8 @@

    -

    ◆ stage

    + +

    ◆ stage

    @@ -165,7 +172,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo-members.html b/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo-members.html index cba245d7e..c170f3cf8 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo-members.html +++ b/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,29 +94,35 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLTextureCreateInfo Member List
    +
    abcg::OpenGLTextureCreateInfo Member List
    diff --git a/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo.html b/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo.html index e51f09b1c..952e7c9ce 100644 --- a/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo.html +++ b/abcg/doc/html/structabcg_1_1OpenGLTextureCreateInfo.html @@ -5,7 +5,7 @@ - + ABCg: abcg::OpenGLTextureCreateInfo Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@

    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@

    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::OpenGLTextureCreateInfo Struct Reference
    +
    abcg::OpenGLTextureCreateInfo Struct Reference
    @@ -112,26 +119,26 @@

    #include <abcgOpenGLImage.hpp>

    - - - + + - - + + - - + + - - + +

    +

    Public Attributes

    std::string_view path {}
     Path to the image file (PNG or JPEG). More...
    std::string_view path {}
     Path to the image file (PNG or JPEG).
     
    bool generateMipmaps {true}
     Whether to generate mipmap levels. More...
    bool generateMipmaps {true}
     Whether to generate mipmap levels.
     
    bool flipUpsideDown {true}
     Whether to flip the image upside down. More...
    bool flipUpsideDown {true}
     Whether to flip the image upside down.
     
    bool sRGBToLinear {false}
     Whether to apply gamma decoding (expansion) to convert an image in sRGB space to linear space. More...
    bool sRGBToLinear {false}
     Whether to apply gamma decoding (expansion) to convert an image in sRGB space to linear space.
     

    Detailed Description

    Configuration settings for creating a 2D texture for OpenGL.

    Member Data Documentation

    - -

    ◆ flipUpsideDown

    + +

    ◆ flipUpsideDown

    @@ -146,8 +153,8 @@

    -

    ◆ generateMipmaps

    + +

    ◆ generateMipmaps

    @@ -162,8 +169,8 @@

    -

    ◆ path

    + +

    ◆ path

    @@ -178,8 +185,8 @@

    -

    ◆ sRGBToLinear

    + +

    ◆ sRGBToLinear

    @@ -203,7 +210,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1ShaderSource-members.html b/abcg/doc/html/structabcg_1_1ShaderSource-members.html index de6d452ea..502ae9289 100644 --- a/abcg/doc/html/structabcg_1_1ShaderSource-members.html +++ b/abcg/doc/html/structabcg_1_1ShaderSource-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,27 +94,33 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::ShaderSource Member List
    +
    abcg::ShaderSource Member List

    This is the complete list of members for abcg::ShaderSource, including all inherited members.

    - +
    sourceabcg::ShaderSource
    stageabcg::ShaderSource
    stageabcg::ShaderSource

    diff --git a/abcg/doc/html/structabcg_1_1ShaderSource.html b/abcg/doc/html/structabcg_1_1ShaderSource.html index ceef03bae..8c70b2f8c 100644 --- a/abcg/doc/html/structabcg_1_1ShaderSource.html +++ b/abcg/doc/html/structabcg_1_1ShaderSource.html @@ -5,7 +5,7 @@ - + ABCg: abcg::ShaderSource Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::ShaderSource Struct Reference
    +
    abcg::ShaderSource Struct Reference
    @@ -112,20 +119,20 @@

    #include <abcgShader.hpp>

    - - - + + - - + +

    +

    Public Attributes

    std::string source {}
     Shader source code. More...
    std::string source {}
     Shader source code.
     
    abcg::ShaderStage stage {}
     Shader stage. More...
    abcg::ShaderStage stage {}
     Shader stage.
     

    Detailed Description

    Shader source code and corresponding stage.

    Member Data Documentation

    - -

    ◆ source

    + +

    ◆ source

    @@ -141,8 +148,8 @@

    -

    ◆ stage

    + +

    ◆ stage

    @@ -166,7 +173,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1Shaders-members.html b/abcg/doc/html/structabcg_1_1Shaders-members.html deleted file mode 100644 index 7b46d1395..000000000 --- a/abcg/doc/html/structabcg_1_1Shaders-members.html +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::Shaders Member List
    -
    - -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1Shaders.html b/abcg/doc/html/structabcg_1_1Shaders.html deleted file mode 100644 index 8e1da0a43..000000000 --- a/abcg/doc/html/structabcg_1_1Shaders.html +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - - ABCg: abcg::Shaders Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::Shaders Struct Reference
    -
    -
    - -

    Simple structure of strings containing paths or source code of shaders to be compiled. - More...

    - -

    #include <abcg_shader.hpp>

    - - - - - - - - - - - - - - - - - - - - -

    -Public Attributes

    std::string vertexShader {}
     String containing the path or source code of a vertex shader. More...
     
    std::string fragmentShader {}
     String containing the path or source code of a fragment shader. More...
     
    std::string geometryShader {}
     String containing the path or source code of a geometry shader. More...
     
    std::string tessControlShader {}
     String containing the path or source code of a tessellation control shader. More...
     
    std::string tessEvalShader {}
     String containing the path or source code of a tessellation evaluation shader. More...
     
    std::string computeShader {}
     String containing the path or source code of a computer shader. More...
     
    -

    Detailed Description

    -

    Simple structure of strings containing paths or source code of shaders to be compiled.

    -

    This is used as input to abcg::opengl::createProgram and abcg::opengl::triggerCompile.

    -

    Mixing paths and source codes is supported. For example, abcg::Shaders::vertexShader can contain the path to the vertex shader file, while abcg::Shaders::fragmentShader can contain the source code of the fragment shader. If a string is empty, the correspoding shader is not used.

    -
    See also
    abcg::opengl::createProgram.
    -
    -abcg::opengl::triggerCompile.
    -

    Member Data Documentation

    - -

    ◆ computeShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::computeShader {}
    -
    - -

    String containing the path or source code of a computer shader.

    -

    This is not used when the OpenGL context is created with abcg::OpenGLProfile::ES.

    - -
    -
    - -

    ◆ fragmentShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::fragmentShader {}
    -
    - -

    String containing the path or source code of a fragment shader.

    - -
    -
    - -

    ◆ geometryShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::geometryShader {}
    -
    - -

    String containing the path or source code of a geometry shader.

    - -
    -
    - -

    ◆ tessControlShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::tessControlShader {}
    -
    - -

    String containing the path or source code of a tessellation control shader.

    -

    This is not used when the OpenGL context is created with abcg::OpenGLProfile::ES.

    - -
    -
    - -

    ◆ tessEvalShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::tessEvalShader {}
    -
    - -

    String containing the path or source code of a tessellation evaluation shader.

    -

    This is not used when the OpenGL context is created with abcg::OpenGLProfile::ES.

    - -
    -
    - -

    ◆ vertexShader

    - -
    -
    - - - - -
    std::string abcg::Shaders::vertexShader {}
    -
    - -

    String containing the path or source code of a vertex shader.

    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1Shaders.js b/abcg/doc/html/structabcg_1_1Shaders.js deleted file mode 100644 index 62aa89b2c..000000000 --- a/abcg/doc/html/structabcg_1_1Shaders.js +++ /dev/null @@ -1,9 +0,0 @@ -var structabcg_1_1Shaders = -[ - [ "computeShader", "structabcg_1_1Shaders.html#a02d9a6d45a21a407cd6d9191e9411c9e", null ], - [ "fragmentShader", "structabcg_1_1Shaders.html#a3dd771e9875fa9f5eb5b088507ae2214", null ], - [ "geometryShader", "structabcg_1_1Shaders.html#aeef2e0860243c794761b50922c4da1ca", null ], - [ "tessControlShader", "structabcg_1_1Shaders.html#a7f4ee877f36b939021885da9a542cc7b", null ], - [ "tessEvalShader", "structabcg_1_1Shaders.html#a794ec32891466ada0ff172bcc6c106d6", null ], - [ "vertexShader", "structabcg_1_1Shaders.html#a4cc85a01f9fcc5e10a490852c8052ba5", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1Size-members.html b/abcg/doc/html/structabcg_1_1Size-members.html deleted file mode 100644 index 1703a50a3..000000000 --- a/abcg/doc/html/structabcg_1_1Size-members.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::Size Member List
    -
    -
    - -

    This is the complete list of members for abcg::Size, including all inherited members.

    - - - -
    heightabcg::Size
    widthabcg::Size
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1Size.html b/abcg/doc/html/structabcg_1_1Size.html deleted file mode 100644 index 0ca2c4513..000000000 --- a/abcg/doc/html/structabcg_1_1Size.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - - ABCg: abcg::Size Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::Size Struct Reference
    -
    -
    - -

    Simple structure for holding a 2D size. - More...

    - -

    #include <abcgWindow.hpp>

    - - - - - - -

    -Public Attributes

    int width {}
     
    int height {}
     
    -

    Detailed Description

    -

    Simple structure for holding a 2D size.

    -

    Member Data Documentation

    - -

    ◆ height

    - -
    -
    - - - - -
    int abcg::Size::height {}
    -
    - -
    -
    - -

    ◆ width

    - -
    -
    - - - - -
    int abcg::Size::width {}
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1Size.js b/abcg/doc/html/structabcg_1_1Size.js deleted file mode 100644 index 1c81baf60..000000000 --- a/abcg/doc/html/structabcg_1_1Size.js +++ /dev/null @@ -1,5 +0,0 @@ -var structabcg_1_1Size = -[ - [ "height", "structabcg_1_1Size.html#a2d611b0ba0c36839f9d0d86385b2d75a", null ], - [ "width", "structabcg_1_1Size.html#a44e3d01442565f93e273d3c92e3da755", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo-members.html b/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo-members.html index ed2d4b232..55c3f1e04 100644 --- a/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,29 +94,35 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanBufferCreateInfo Member List
    +
    abcg::VulkanBufferCreateInfo Member List
    diff --git a/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo.html b/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo.html index dc2d1e47d..0d08a1820 100644 --- a/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo.html +++ b/abcg/doc/html/structabcg_1_1VulkanBufferCreateInfo.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanBufferCreateInfo Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@

    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanBufferCreateInfo Struct Reference
    +
    abcg::VulkanBufferCreateInfo Struct Reference
    @@ -112,22 +119,22 @@

    #include <abcgVulkanBuffer.hpp>

    - - + - + - + - +

    +

    Public Attributes

    vk::DeviceSize size {}
    vk::DeviceSize size {}
     
    vk::BufferUsageFlags usage {}
    vk::BufferUsageFlags usage {}
     
    vk::MemoryPropertyFlags properties {}
    vk::MemoryPropertyFlags properties {}
     
    std::optional< gsl::not_null< void const * > > data {}
    std::optional< gsl::not_null< void const * > > data {}
     

    Detailed Description

    Creation info structure for abcg::VulkanBuffer::create.

    Member Data Documentation

    - -

    ◆ data

    + +

    ◆ data

    @@ -140,8 +147,8 @@

    -

    ◆ properties

    + +

    ◆ properties

    @@ -154,8 +161,8 @@

    -

    ◆ size

    + +

    ◆ size

    @@ -168,8 +175,8 @@

    -

    ◆ usage

    + +

    ◆ usage

    @@ -191,7 +198,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanCommandPools-members.html b/abcg/doc/html/structabcg_1_1VulkanCommandPools-members.html index 182cf59cb..e1c0c168c 100644 --- a/abcg/doc/html/structabcg_1_1VulkanCommandPools-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanCommandPools-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,28 +94,34 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanCommandPools Member List
    +
    abcg::VulkanCommandPools Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanCommandPools.html b/abcg/doc/html/structabcg_1_1VulkanCommandPools.html index d5f14ce01..338731308 100644 --- a/abcg/doc/html/structabcg_1_1VulkanCommandPools.html +++ b/abcg/doc/html/structabcg_1_1VulkanCommandPools.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanCommandPools Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanCommandPools Struct Reference
    +
    abcg::VulkanCommandPools Struct Reference
    @@ -112,20 +119,20 @@

    #include <abcgVulkanDevice.hpp>

    - - + - + - +

    +

    Public Attributes

    vk::CommandPool compute
    vk::CommandPool compute
     
    vk::CommandPool graphics
    vk::CommandPool graphics
     
    vk::CommandPool transfer
    vk::CommandPool transfer
     

    Detailed Description

    Command pools associated with a Vulkan device.

    Member Data Documentation

    - -

    ◆ compute

    + +

    ◆ compute

    @@ -138,8 +145,8 @@

    -

    ◆ graphics

    + +

    ◆ graphics

    @@ -152,8 +159,8 @@

    -

    ◆ transfer

    + +

    ◆ transfer

    @@ -175,7 +182,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanExtensions-members.html b/abcg/doc/html/structabcg_1_1VulkanExtensions-members.html deleted file mode 100644 index 513372594..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanExtensions-members.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::VulkanExtensions Member List
    -
    -
    - -

    This is the complete list of members for abcg::VulkanExtensions, including all inherited members.

    - - -
    namesabcg::VulkanExtensions
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanExtensions.html b/abcg/doc/html/structabcg_1_1VulkanExtensions.html deleted file mode 100644 index 68cda9f7b..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanExtensions.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - ABCg: abcg::VulkanExtensions Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::VulkanExtensions Struct Reference
    -
    -
    - -

    Data that represents extension names. - More...

    - -

    #include <abcg_vulkan.hpp>

    - - - - -

    -Public Attributes

    std::vector< char const * > names
     
    -

    Detailed Description

    -

    Data that represents extension names.

    -

    Member Data Documentation

    - -

    ◆ names

    - -
    -
    - - - - -
    std::vector<char const *> abcg::VulkanExtensions::names
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanExtensions.js b/abcg/doc/html/structabcg_1_1VulkanExtensions.js deleted file mode 100644 index 5beccac82..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanExtensions.js +++ /dev/null @@ -1,4 +0,0 @@ -var structabcg_1_1VulkanExtensions = -[ - [ "names", "structabcg_1_1VulkanExtensions.html#a402baa115de010729005fb77717e49b4", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanFrame-members.html b/abcg/doc/html/structabcg_1_1VulkanFrame-members.html index c3c564f75..e2fc4a817 100644 --- a/abcg/doc/html/structabcg_1_1VulkanFrame-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanFrame-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,32 +94,38 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanFrame Member List
    +
    abcg::VulkanFrame Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanFrame.html b/abcg/doc/html/structabcg_1_1VulkanFrame.html index a1e47b6a2..93371ea99 100644 --- a/abcg/doc/html/structabcg_1_1VulkanFrame.html +++ b/abcg/doc/html/structabcg_1_1VulkanFrame.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanFrame Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanFrame Struct Reference
    +
    abcg::VulkanFrame Struct Reference
    @@ -114,31 +121,31 @@
    Collaboration diagram for abcg::VulkanFrame:
    -
    +
    [legend]
    - - + - + - + - + - + - + - +

    +

    Public Attributes

    uint32_t index {}
    uint32_t index {}
     
    vk::CommandPool commandPool
    vk::CommandPool commandPool
     
    vk::CommandBuffer commandBuffer
    vk::CommandBuffer commandBuffer
     
    vk::CommandBuffer commandBufferUI
    vk::CommandBuffer commandBufferUI
     
    vk::Fence fence
    vk::Fence fence
     
    VulkanImage colorImage
    VulkanImage colorImage
     
    vk::Framebuffer framebufferMain
    vk::Framebuffer framebufferMain
     

    Detailed Description

    Data needed by a rendering frame.

    Member Data Documentation

    - -

    ◆ colorImage

    + +

    ◆ colorImage

    @@ -151,8 +158,8 @@

    -

    ◆ commandBuffer

    + +

    ◆ commandBuffer

    @@ -165,8 +172,8 @@

    -

    ◆ commandBufferUI

    + +

    ◆ commandBufferUI

    @@ -179,8 +186,8 @@

    -

    ◆ commandPool

    + +

    ◆ commandPool

    @@ -193,8 +200,8 @@

    -

    ◆ fence

    + +

    ◆ fence

    @@ -207,8 +214,8 @@

    -

    ◆ framebufferMain

    + +

    ◆ framebufferMain

    @@ -221,8 +228,8 @@

    -

    ◆ index

    + +

    ◆ index

    @@ -244,7 +251,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.map b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.map index 7d697dee7..2550093f2 100644 --- a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.map +++ b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.map @@ -1,4 +1,5 @@ - - + + + diff --git a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.md5 b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.md5 index 717144323..1b576704b 100644 --- a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.md5 +++ b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.md5 @@ -1 +1 @@ -6899c6abf20c749a6720f9f3470d5c3e \ No newline at end of file +25c693a8a56014e7a1a5400267f5d3c0 \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.svg b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.svg index 8479b278a..1644c66a6 100644 --- a/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.svg +++ b/abcg/doc/html/structabcg_1_1VulkanFrame__coll__graph.svg @@ -4,34 +4,37 @@ - - + + abcg::VulkanFrame - + Node1 - - -abcg::VulkanFrame + + +abcg::VulkanFrame - + Node2 - - -abcg::VulkanImage + + +abcg::VulkanImage - + Node2->Node1 - - - colorImage + + + + + + colorImage diff --git a/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo-members.html b/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo-members.html index b3ce36465..03199f4d9 100644 --- a/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,28 +94,34 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanImageCreateInfo Member List
    +
    abcg::VulkanImageCreateInfo Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo.html b/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo.html index a62149899..fa65cd18b 100644 --- a/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo.html +++ b/abcg/doc/html/structabcg_1_1VulkanImageCreateInfo.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanImageCreateInfo Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanImageCreateInfo Struct Reference
    +
    abcg::VulkanImageCreateInfo Struct Reference
    @@ -112,20 +119,20 @@

    #include <abcgVulkanImage.hpp>

    - - + - + - +

    +

    Public Attributes

    vk::ImageCreateInfo info {}
    vk::ImageCreateInfo info {}
     
    vk::MemoryPropertyFlags properties {}
    vk::MemoryPropertyFlags properties {}
     
    vk::ImageViewCreateInfo viewInfo {}
    vk::ImageViewCreateInfo viewInfo {}
     

    Detailed Description

    Creation info structure for abcg::VulkanImage.

    Member Data Documentation

    - -

    ◆ info

    + +

    ◆ info

    @@ -138,8 +145,8 @@

    -

    ◆ properties

    + +

    ◆ properties

    @@ -152,8 +159,8 @@

    -

    ◆ viewInfo

    + +

    ◆ viewInfo

    @@ -175,7 +182,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanLayers-members.html b/abcg/doc/html/structabcg_1_1VulkanLayers-members.html deleted file mode 100644 index 89dbf8444..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanLayers-members.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::VulkanLayers Member List
    -
    -
    - -

    This is the complete list of members for abcg::VulkanLayers, including all inherited members.

    - - -
    namesabcg::VulkanLayers
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanLayers.html b/abcg/doc/html/structabcg_1_1VulkanLayers.html deleted file mode 100644 index 4757ed358..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanLayers.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - ABCg: abcg::VulkanLayers Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::VulkanLayers Struct Reference
    -
    -
    - -

    Data that represents layer names. - More...

    - -

    #include <abcg_vulkan.hpp>

    - - - - -

    -Public Attributes

    std::vector< char const * > names
     
    -

    Detailed Description

    -

    Data that represents layer names.

    -

    Member Data Documentation

    - -

    ◆ names

    - -
    -
    - - - - -
    std::vector<char const *> abcg::VulkanLayers::names
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanLayers.js b/abcg/doc/html/structabcg_1_1VulkanLayers.js deleted file mode 100644 index dc462cae2..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanLayers.js +++ /dev/null @@ -1,4 +0,0 @@ -var structabcg_1_1VulkanLayers = -[ - [ "names", "structabcg_1_1VulkanLayers.html#afbf4a6c9af15a7aaf11a5394a36d9e53", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo-members.html b/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo-members.html index 6e4105bca..8401d106d 100644 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,39 +94,45 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanPipelineCreateInfo Member List
    +
    abcg::VulkanPipelineCreateInfo Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo.html b/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo.html index fa719f7b8..94b7f325f 100644 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo.html +++ b/abcg/doc/html/structabcg_1_1VulkanPipelineCreateInfo.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanPipelineCreateInfo Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +
    @@ -79,7 +80,7 @@

    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanPipelineCreateInfo Struct Reference
    +
    abcg::VulkanPipelineCreateInfo Struct Reference
    @@ -112,42 +119,42 @@

    #include <abcgVulkanPipeline.hpp>

    - - + - + - + - + - + - + - + - + - + - + - + - + - + - +

    +

    Public Attributes

    std::vector< abcg::VulkanShadershaders {}
    std::vector< abcg::VulkanShadershaders {}
     
    std::vector< vk::VertexInputBindingDescription > bindingDescriptions {}
    std::vector< vk::VertexInputBindingDescription > bindingDescriptions {}
     
    std::vector< vk::VertexInputAttributeDescription > attributeDescriptions {}
    std::vector< vk::VertexInputAttributeDescription > attributeDescriptions {}
     
    vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState {}
    vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState {}
     
    std::optional< std::vector< vk::Viewport > > viewports {}
    std::optional< std::vector< vk::Viewport > > viewports {}
     
    std::optional< std::vector< vk::Rect2D > > scissors {}
    std::optional< std::vector< vk::Rect2D > > scissors {}
     
    vk::PipelineRasterizationStateCreateInfo rasterizationState {}
    vk::PipelineRasterizationStateCreateInfo rasterizationState {}
     
    std::optional< vk::PipelineMultisampleStateCreateInfo > multisampleState {}
    std::optional< vk::PipelineMultisampleStateCreateInfo > multisampleState {}
     
    std::optional< vk::PipelineDepthStencilStateCreateInfo > depthStencilState {}
    std::optional< vk::PipelineDepthStencilStateCreateInfo > depthStencilState {}
     
    std::optional< vk::PipelineColorBlendAttachmentState > colorBlendAttachment {}
    std::optional< vk::PipelineColorBlendAttachmentState > colorBlendAttachment {}
     
    std::optional< vk::PipelineColorBlendStateCreateInfo > colorBlendState {}
    std::optional< vk::PipelineColorBlendStateCreateInfo > colorBlendState {}
     
    std::vector< vk::DynamicState > dynamicStates {}
    std::vector< vk::DynamicState > dynamicStates {}
     
    vk::PipelineLayoutCreateInfo pipelineLayout {}
    vk::PipelineLayoutCreateInfo pipelineLayout {}
     
    vk::PipelineCache pipelineCache {}
    vk::PipelineCache pipelineCache {}
     

    Detailed Description

    Creation info structure for abcg::VulkanPipeline::create.

    Member Data Documentation

    - -

    ◆ attributeDescriptions

    + +

    ◆ attributeDescriptions

    @@ -160,8 +167,8 @@

    -

    ◆ bindingDescriptions

    + +

    ◆ bindingDescriptions

    @@ -174,8 +181,8 @@

    -

    ◆ colorBlendAttachment

    + +

    ◆ colorBlendAttachment

    @@ -188,8 +195,8 @@

    -

    ◆ colorBlendState

    + +

    ◆ colorBlendState

    @@ -202,8 +209,8 @@

    -

    ◆ depthStencilState

    + +

    ◆ depthStencilState

    @@ -216,8 +223,8 @@

    -

    ◆ dynamicStates

    + +

    ◆ dynamicStates

    @@ -230,8 +237,8 @@

    -

    ◆ inputAssemblyState

    + +

    ◆ inputAssemblyState

    @@ -244,8 +251,8 @@

    -

    ◆ multisampleState

    + +

    ◆ multisampleState

    @@ -258,8 +265,8 @@

    -

    ◆ pipelineCache

    + +

    ◆ pipelineCache

    @@ -272,8 +279,8 @@

    -

    ◆ pipelineLayout

    + +

    ◆ pipelineLayout

    @@ -286,8 +293,8 @@

    -

    ◆ rasterizationState

    + +

    ◆ rasterizationState

    @@ -300,8 +307,8 @@

    -

    ◆ scissors

    + +

    ◆ scissors

    @@ -314,8 +321,8 @@

    -

    ◆ shaders

    + +

    ◆ shaders

    @@ -328,8 +335,8 @@

    -

    ◆ viewports

    + +

    ◆ viewports

    @@ -351,7 +358,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings-members.html b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings-members.html deleted file mode 100644 index f2e88b528..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings-members.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - - - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.html b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.html deleted file mode 100644 index 2e9fbb36d..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.html +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - - - ABCg: abcg::VulkanPipelineSettings Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::VulkanPipelineSettings Struct Reference
    -
    -
    - -

    Creation info structure for abcg::VulkanPipeline::create. - More...

    - -

    #include <abcgVulkanPipeline.hpp>

    -
    -Collaboration diagram for abcg::VulkanPipelineSettings:
    -
    -
    -
    [legend]
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

    -Public Attributes

    abcg::VulkanSwapchain swapchain {}
     
    std::vector< abcg::VulkanShadershaders {}
     
    std::vector< vk::VertexInputBindingDescription > bindingDescriptions {}
     
    std::vector< vk::VertexInputAttributeDescription > attributeDescriptions {}
     
    vk::PipelineInputAssemblyStateCreateInfo inputAssemblyState {}
     
    std::optional< std::vector< vk::Viewport > > viewports {}
     
    std::optional< std::vector< vk::Rect2D > > scissors {}
     
    vk::PipelineRasterizationStateCreateInfo rasterizationState {}
     
    std::optional< vk::PipelineMultisampleStateCreateInfo > multisampleState {}
     
    std::optional< vk::PipelineDepthStencilStateCreateInfo > depthStencilState {}
     
    std::optional< vk::PipelineColorBlendAttachmentState > colorBlendAttachment {}
     
    std::optional< vk::PipelineColorBlendStateCreateInfo > colorBlendState {}
     
    std::vector< vk::DynamicState > dynamicStates {}
     
    vk::PipelineLayoutCreateInfo pipelineLayout {}
     
    vk::PipelineCache pipelineCache {}
     
    -

    Detailed Description

    -

    Creation info structure for abcg::VulkanPipeline::create.

    -

    Member Data Documentation

    - -

    ◆ attributeDescriptions

    - -
    -
    - - - - -
    std::vector<vk::VertexInputAttributeDescription> abcg::VulkanPipelineSettings::attributeDescriptions {}
    -
    - -
    -
    - -

    ◆ bindingDescriptions

    - -
    -
    - - - - -
    std::vector<vk::VertexInputBindingDescription> abcg::VulkanPipelineSettings::bindingDescriptions {}
    -
    - -
    -
    - -

    ◆ colorBlendAttachment

    - -
    -
    - - - - -
    std::optional<vk::PipelineColorBlendAttachmentState> abcg::VulkanPipelineSettings::colorBlendAttachment {}
    -
    - -
    -
    - -

    ◆ colorBlendState

    - -
    -
    - - - - -
    std::optional<vk::PipelineColorBlendStateCreateInfo> abcg::VulkanPipelineSettings::colorBlendState {}
    -
    - -
    -
    - -

    ◆ depthStencilState

    - -
    -
    - - - - -
    std::optional<vk::PipelineDepthStencilStateCreateInfo> abcg::VulkanPipelineSettings::depthStencilState {}
    -
    - -
    -
    - -

    ◆ dynamicStates

    - -
    -
    - - - - -
    std::vector<vk::DynamicState> abcg::VulkanPipelineSettings::dynamicStates {}
    -
    - -
    -
    - -

    ◆ inputAssemblyState

    - -
    -
    - - - - -
    vk::PipelineInputAssemblyStateCreateInfo abcg::VulkanPipelineSettings::inputAssemblyState {}
    -
    - -
    -
    - -

    ◆ multisampleState

    - -
    -
    - - - - -
    std::optional<vk::PipelineMultisampleStateCreateInfo> abcg::VulkanPipelineSettings::multisampleState {}
    -
    - -
    -
    - -

    ◆ pipelineCache

    - -
    -
    - - - - -
    vk::PipelineCache abcg::VulkanPipelineSettings::pipelineCache {}
    -
    - -
    -
    - -

    ◆ pipelineLayout

    - -
    -
    - - - - -
    vk::PipelineLayoutCreateInfo abcg::VulkanPipelineSettings::pipelineLayout {}
    -
    - -
    -
    - -

    ◆ rasterizationState

    - -
    -
    - - - - -
    vk::PipelineRasterizationStateCreateInfo abcg::VulkanPipelineSettings::rasterizationState {}
    -
    - -
    -
    - -

    ◆ scissors

    - -
    -
    - - - - -
    std::optional<std::vector<vk::Rect2D> > abcg::VulkanPipelineSettings::scissors {}
    -
    - -
    -
    - -

    ◆ shaders

    - -
    -
    - - - - -
    std::vector<abcg::VulkanShader> abcg::VulkanPipelineSettings::shaders {}
    -
    - -
    -
    - -

    ◆ swapchain

    - -
    -
    - - - - -
    abcg::VulkanSwapchain abcg::VulkanPipelineSettings::swapchain {}
    -
    - -
    -
    - -

    ◆ viewports

    - -
    -
    - - - - -
    std::optional<std::vector<vk::Viewport> > abcg::VulkanPipelineSettings::viewports {}
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.js b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.js deleted file mode 100644 index 0fa0d089c..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings.js +++ /dev/null @@ -1,18 +0,0 @@ -var structabcg_1_1VulkanPipelineSettings = -[ - [ "attributeDescriptions", "structabcg_1_1VulkanPipelineSettings.html#a8f2628a16ff715cf07008dbdcf131c6e", null ], - [ "bindingDescriptions", "structabcg_1_1VulkanPipelineSettings.html#aa8e38d78f5e659058f6db9da001188b4", null ], - [ "colorBlendAttachment", "structabcg_1_1VulkanPipelineSettings.html#a1a50015828719cb9b9a7a10801fa260f", null ], - [ "colorBlendState", "structabcg_1_1VulkanPipelineSettings.html#a47cb22dc99c9a616374e909b9b2788b0", null ], - [ "depthStencilState", "structabcg_1_1VulkanPipelineSettings.html#aec577c00d7df5b651a5c59e11b8bf24c", null ], - [ "dynamicStates", "structabcg_1_1VulkanPipelineSettings.html#a4b1789ea2ed1d49a84a29bad44ecf6c5", null ], - [ "inputAssemblyState", "structabcg_1_1VulkanPipelineSettings.html#abdc39f12e030e3faef0c4fc9dc424c53", null ], - [ "multisampleState", "structabcg_1_1VulkanPipelineSettings.html#a2ccabb20efc5ab025916eb93d51fcff4", null ], - [ "pipelineCache", "structabcg_1_1VulkanPipelineSettings.html#a50e638c6778e3b4faec7e059645a7d1a", null ], - [ "pipelineLayout", "structabcg_1_1VulkanPipelineSettings.html#a39019628cfeede05436de7cecf2e7599", null ], - [ "rasterizationState", "structabcg_1_1VulkanPipelineSettings.html#a532921fede8a6ad34a247e8fce2296a0", null ], - [ "scissors", "structabcg_1_1VulkanPipelineSettings.html#acdcbc1c8bb71d601b0a707a6b777fa6d", null ], - [ "shaders", "structabcg_1_1VulkanPipelineSettings.html#a9d1b3a2c1e7e929347467a45309fe2e6", null ], - [ "swapchain", "structabcg_1_1VulkanPipelineSettings.html#aa8fb93cba3fcf05af37b97e0e68e5dcf", null ], - [ "viewports", "structabcg_1_1VulkanPipelineSettings.html#a077d5cf254eb49666e61ca85363f2303", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.map b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.map deleted file mode 100644 index afe8233ee..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.md5 b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.md5 deleted file mode 100644 index f5fa870e8..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -4729c8f6ea63fdb8d650b3356d5619d3 \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.svg b/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.svg deleted file mode 100644 index 181b19096..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanPipelineSettings__coll__graph.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - -abcg::VulkanPipelineSettings - - -Node1 - - -abcg::VulkanPipelineSettings - - - - - -Node2 - - -abcg::VulkanSwapchain - - - - - -Node2->Node1 - - - swapchain - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanQueues-members.html b/abcg/doc/html/structabcg_1_1VulkanQueues-members.html index e5c1f7359..062ed0dd9 100644 --- a/abcg/doc/html/structabcg_1_1VulkanQueues-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanQueues-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,29 +94,35 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanQueues Member List
    +
    abcg::VulkanQueues Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanQueues.html b/abcg/doc/html/structabcg_1_1VulkanQueues.html index 512e78c53..b412067c1 100644 --- a/abcg/doc/html/structabcg_1_1VulkanQueues.html +++ b/abcg/doc/html/structabcg_1_1VulkanQueues.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanQueues Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanQueues Struct Reference
    +
    abcg::VulkanQueues Struct Reference
    @@ -112,22 +119,22 @@

    #include <abcgVulkanDevice.hpp>

    - - + - + - + - +

    +

    Public Attributes

    vk::Queue compute
    vk::Queue compute
     
    vk::Queue graphics
    vk::Queue graphics
     
    vk::Queue present
    vk::Queue present
     
    vk::Queue transfer
    vk::Queue transfer
     

    Detailed Description

    Queues associated with a Vulkan device.

    Member Data Documentation

    - -

    ◆ compute

    + +

    ◆ compute

    @@ -140,8 +147,8 @@

    -

    ◆ graphics

    + +

    ◆ graphics

    @@ -154,8 +161,8 @@

    -

    ◆ present

    + +

    ◆ present

    @@ -168,8 +175,8 @@

    -

    ◆ transfer

    + +

    ◆ transfer

    @@ -191,7 +198,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies-members.html b/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies-members.html index a79b12dfa..39007e042 100644 --- a/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,29 +94,35 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanQueuesFamilies Member List
    +
    abcg::VulkanQueuesFamilies Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies.html b/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies.html index d1dfed595..c0095ab27 100644 --- a/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies.html +++ b/abcg/doc/html/structabcg_1_1VulkanQueuesFamilies.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanQueuesFamilies Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanQueuesFamilies Struct Reference
    +
    abcg::VulkanQueuesFamilies Struct Reference
    @@ -112,22 +119,22 @@

    #include <abcgVulkanPhysicalDevice.hpp>

    - - + - + - + - +

    +

    Public Attributes

    std::optional< uint32_t > compute
    std::optional< uint32_t > compute
     
    std::optional< uint32_t > graphics
    std::optional< uint32_t > graphics
     
    std::optional< uint32_t > present
    std::optional< uint32_t > present
     
    std::optional< uint32_t > transfer
    std::optional< uint32_t > transfer
     

    Detailed Description

    Supported queues families.

    Member Data Documentation

    - -

    ◆ compute

    + +

    ◆ compute

    @@ -140,8 +147,8 @@

    -

    ◆ graphics

    + +

    ◆ graphics

    @@ -154,8 +161,8 @@

    -

    ◆ present

    + +

    ◆ present

    @@ -168,8 +175,8 @@

    -

    ◆ transfer

    + +

    ◆ transfer

    @@ -191,7 +198,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanSettings-members.html b/abcg/doc/html/structabcg_1_1VulkanSettings-members.html index 88e3ba173..b6fe6978a 100644 --- a/abcg/doc/html/structabcg_1_1VulkanSettings-members.html +++ b/abcg/doc/html/structabcg_1_1VulkanSettings-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,29 +94,35 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanSettings Member List
    +
    abcg::VulkanSettings Member List

    diff --git a/abcg/doc/html/structabcg_1_1VulkanSettings.html b/abcg/doc/html/structabcg_1_1VulkanSettings.html index 85f4d95fc..b2c8294d8 100644 --- a/abcg/doc/html/structabcg_1_1VulkanSettings.html +++ b/abcg/doc/html/structabcg_1_1VulkanSettings.html @@ -5,7 +5,7 @@ - + ABCg: abcg::VulkanSettings Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::VulkanSettings Struct Reference
    +
    abcg::VulkanSettings Struct Reference
    @@ -112,19 +119,19 @@

    #include <abcgVulkanWindow.hpp>

    - - - + + - - + + - - + + - - + +

    +

    Public Attributes

    int depthBufferSize {24}
     Minimum number of bits in the depth buffer. More...
    int depthBufferSize {24}
     Minimum number of bits in the depth buffer.
     
    int stencilBufferSize {0}
     Minimum number of bits in the stencil buffer. More...
    int stencilBufferSize {0}
     Minimum number of bits in the stencil buffer.
     
    int samples {0}
     Number of desired samples to be used for multisample anti-aliasing. More...
    int samples {0}
     Number of desired samples to be used for multisample anti-aliasing.
     
    bool vSync {false}
     Whether to synchronize the presentation with the vertical retrace. More...
    bool vSync {false}
     Whether to synchronize the presentation with the vertical retrace.
     

    Detailed Description

    @@ -134,8 +141,8 @@
    abcg::VulkanWindow::setVulkanSettings.

    Member Data Documentation

    - -

    ◆ depthBufferSize

    + +

    ◆ depthBufferSize

    @@ -150,8 +157,8 @@

    -

    ◆ samples

    + +

    ◆ samples

    @@ -167,8 +174,8 @@

    -

    ◆ stencilBufferSize

    + +

    ◆ stencilBufferSize

    @@ -183,8 +190,8 @@

    -

    ◆ vSync

    + +

    ◆ vSync

    @@ -209,7 +216,7 @@

    diff --git a/abcg/doc/html/structabcg_1_1VulkanSupport-members.html b/abcg/doc/html/structabcg_1_1VulkanSupport-members.html deleted file mode 100644 index a75859509..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSupport-members.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::VulkanSupport Member List
    -
    -
    - -

    This is the complete list of members for abcg::VulkanSupport, including all inherited members.

    - - - - -
    capabilitiesabcg::VulkanSupport
    formatsabcg::VulkanSupport
    presentModesabcg::VulkanSupport
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanSupport.html b/abcg/doc/html/structabcg_1_1VulkanSupport.html deleted file mode 100644 index 831ffb8b7..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSupport.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - ABCg: abcg::VulkanSupport Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::VulkanSupport Struct Reference
    -
    -
    - -

    Surface capabilities, supported formats and presentation modes. - More...

    - -

    #include <abcgVulkanPhysicalDevice.hpp>

    - - - - - - - - -

    -Public Attributes

    vk::SurfaceCapabilitiesKHR capabilities {}
     
    std::vector< vk::SurfaceFormatKHR > formats
     
    std::vector< vk::PresentModeKHR > presentModes
     
    -

    Detailed Description

    -

    Surface capabilities, supported formats and presentation modes.

    -

    Member Data Documentation

    - -

    ◆ capabilities

    - -
    -
    - - - - -
    vk::SurfaceCapabilitiesKHR abcg::VulkanSupport::capabilities {}
    -
    - -
    -
    - -

    ◆ formats

    - -
    -
    - - - - -
    std::vector<vk::SurfaceFormatKHR> abcg::VulkanSupport::formats
    -
    - -
    -
    - -

    ◆ presentModes

    - -
    -
    - - - - -
    std::vector<vk::PresentModeKHR> abcg::VulkanSupport::presentModes
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanSupport.js b/abcg/doc/html/structabcg_1_1VulkanSupport.js deleted file mode 100644 index eb93ad3b0..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSupport.js +++ /dev/null @@ -1,6 +0,0 @@ -var structabcg_1_1VulkanSupport = -[ - [ "capabilities", "structabcg_1_1VulkanSupport.html#a382398ab47f3d98fdfd3ee02313920e9", null ], - [ "formats", "structabcg_1_1VulkanSupport.html#ae093b445cf7582b6f14f726f1fd61c88", null ], - [ "presentModes", "structabcg_1_1VulkanSupport.html#a829fb23ddff42adb65d5c5c5298bff1e", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport-members.html b/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport-members.html deleted file mode 100644 index a23838b93..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport-members.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - ABCg: Member List - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    -
    -
    abcg::VulkanSwapchainSupport Member List
    -
    - -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.html b/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.html deleted file mode 100644 index 159cf393b..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - ABCg: abcg::VulkanSwapchainSupport Struct Reference - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    -
    ABCg -  v3.0.0 -
    -
    Development framework for MCTA008-17
    -
    -
    - - - - - - -
    -
    - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - -
    - -
    -
    abcg::VulkanSwapchainSupport Struct Reference
    -
    -
    - -

    Data that represents the details of the swapchain support. - More...

    - -

    #include <abcg_vulkan.hpp>

    - - - - - - - - -

    -Public Attributes

    vk::SurfaceCapabilitiesKHR capabilities
     
    std::vector< vk::SurfaceFormatKHR > formats
     
    std::vector< vk::PresentModeKHR > presentModes
     
    -

    Detailed Description

    -

    Data that represents the details of the swapchain support.

    -

    Member Data Documentation

    - -

    ◆ capabilities

    - -
    -
    - - - - -
    vk::SurfaceCapabilitiesKHR abcg::VulkanSwapchainSupport::capabilities
    -
    - -
    -
    - -

    ◆ formats

    - -
    -
    - - - - -
    std::vector<vk::SurfaceFormatKHR> abcg::VulkanSwapchainSupport::formats
    -
    - -
    -
    - -

    ◆ presentModes

    - -
    -
    - - - - -
    std::vector<vk::PresentModeKHR> abcg::VulkanSwapchainSupport::presentModes
    -
    - -
    -
    -
    The documentation for this struct was generated from the following file: -
    -
    - - - - diff --git a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.js b/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.js deleted file mode 100644 index a60d9ee36..000000000 --- a/abcg/doc/html/structabcg_1_1VulkanSwapchainSupport.js +++ /dev/null @@ -1,6 +0,0 @@ -var structabcg_1_1VulkanSwapchainSupport = -[ - [ "capabilities", "structabcg_1_1VulkanSwapchainSupport.html#a433eeba287b25dc3f086794f29b6167c", null ], - [ "formats", "structabcg_1_1VulkanSwapchainSupport.html#aebac697d086f7e90952583abac15c9ee", null ], - [ "presentModes", "structabcg_1_1VulkanSwapchainSupport.html#a0293f838870dc41ed21d043644ac42b6", null ] -]; \ No newline at end of file diff --git a/abcg/doc/html/structabcg_1_1WindowSettings-members.html b/abcg/doc/html/structabcg_1_1WindowSettings-members.html index 878191fa4..b5e1fb16f 100644 --- a/abcg/doc/html/structabcg_1_1WindowSettings-members.html +++ b/abcg/doc/html/structabcg_1_1WindowSettings-members.html @@ -5,7 +5,7 @@ - + ABCg: Member List @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,31 +94,37 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::WindowSettings Member List
    +
    abcg::WindowSettings Member List

    diff --git a/abcg/doc/html/structabcg_1_1WindowSettings.html b/abcg/doc/html/structabcg_1_1WindowSettings.html index f226c6326..b8cd0becb 100644 --- a/abcg/doc/html/structabcg_1_1WindowSettings.html +++ b/abcg/doc/html/structabcg_1_1WindowSettings.html @@ -5,7 +5,7 @@ - + ABCg: abcg::WindowSettings Struct Reference @@ -19,9 +19,9 @@ @@ -43,7 +43,7 @@
    ABCg -  v3.1.1 +  v3.1.2
    Development framework for MCTA008-17
    @@ -51,21 +51,22 @@
    - + +/* @license-end */ +

    @@ -79,7 +80,7 @@
    @@ -93,17 +94,23 @@
    - +
    +
    +
    +
    +
    Loading...
    +
    Searching...
    +
    No Matches
    +
    +
    +
    -
    -
    abcg::WindowSettings Struct Reference
    +
    abcg::WindowSettings Struct Reference
    @@ -112,25 +119,25 @@

    #include <abcgWindow.hpp>

    - - - + + - - + + - - + + - - + + - - + + - - + +

    +

    Public Attributes

    int width {800}
     Window width in windowed mode, in pixels. More...
    int width {800}
     Window width in windowed mode, in pixels.
     
    int height {600}
     Window height in windowed mode, in pixels. More...
    int height {600}
     Window height in windowed mode, in pixels.
     
    bool showFPS {true}
     Whether to show an overlay window with a FPS counter. More...
    bool showFPS {true}
     Whether to show an overlay window with a FPS counter.
     
    bool showFullscreenButton {true}
     Whether to show a button to toggle fullscreen on/off. More...
    bool showFullscreenButton {true}
     Whether to show a button to toggle fullscreen on/off.
     
    std::string fullscreenElementID {"#canvas"}
     HTML element ID used for registering the fullscreen callback when the application is built for WebAssembly. More...
    std::string fullscreenElementID {"#canvas"}
     HTML element ID used for registering the fullscreen callback when the application is built for WebAssembly.
     
    std::string title {"ABCg Window"}
     String containing the window title. More...
    std::string title {"ABCg Window"}
     String containing the window title.
     

    Detailed Description

    @@ -140,8 +147,8 @@
    abcg::OpenGLWindow::getWindowSettings.

    Member Data Documentation

    - -

    ◆ fullscreenElementID

    + +

    ◆ fullscreenElementID

    @@ -156,8 +163,8 @@

    -

    ◆ height

    + +

    ◆ height

    @@ -173,8 +180,8 @@

    -

    ◆ showFPS

    + +

    ◆ showFPS

    @@ -189,8 +196,8 @@

    -

    ◆ showFullscreenButton

    + +

    ◆ showFullscreenButton

    @@ -205,14 +212,14 @@

    -

    ◆ title

    + +

    ◆ title

    - +
    std::string abcg::WindowSettings::title {"ABCg Window"}std::string abcg::WindowSettings::title {"ABCg Window"}
    @@ -221,8 +228,8 @@

    -

    ◆ width

    + +

    ◆ width

    @@ -247,7 +254,7 @@

    diff --git a/abcg/doc/html/tab_ad.png b/abcg/doc/html/tab_ad.png new file mode 100644 index 000000000..880241fcc Binary files /dev/null and b/abcg/doc/html/tab_ad.png differ diff --git a/abcg/doc/html/tab_bd.png b/abcg/doc/html/tab_bd.png new file mode 100644 index 000000000..589885cfc Binary files /dev/null and b/abcg/doc/html/tab_bd.png differ diff --git a/abcg/doc/html/tab_hd.png b/abcg/doc/html/tab_hd.png new file mode 100644 index 000000000..0fd62f19f Binary files /dev/null and b/abcg/doc/html/tab_hd.png differ diff --git a/abcg/doc/html/tab_sd.png b/abcg/doc/html/tab_sd.png new file mode 100644 index 000000000..b1a0f855f Binary files /dev/null and b/abcg/doc/html/tab_sd.png differ diff --git a/abcg/doc/html/tabs.css b/abcg/doc/html/tabs.css index 7d45d36c1..df7944b79 100644 --- a/abcg/doc/html/tabs.css +++ b/abcg/doc/html/tabs.css @@ -1 +1 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0px 1px 1px rgba(255,255,255,0.9);color:#283A5D;outline:none}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283A5D transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox a:hover span.sub-arrow{border-color:#fff transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0 !important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:#fff;text-shadow:0px 1px 1px #000}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent #fff}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0px/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.main-menu-btn{position:relative;display:inline-block;width:36px;height:36px;text-indent:36px;margin-left:8px;white-space:nowrap;overflow:hidden;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0)}.main-menu-btn-icon,.main-menu-btn-icon:before,.main-menu-btn-icon:after{position:absolute;top:50%;left:2px;height:2px;width:24px;background:var(--nav-menu-button-color);-webkit-transition:all 0.25s;transition:all 0.25s}.main-menu-btn-icon:before{content:'';top:-7px;left:0}.main-menu-btn-icon:after{content:'';top:7px;left:0}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon{height:0}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}#main-menu-state:checked~.main-menu-btn .main-menu-btn-icon:after{top:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}#main-menu-state{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}#main-menu-state:not(:checked)~#main-menu{display:none}#main-menu-state:checked~#main-menu{display:block}@media (min-width: 768px){.main-menu-btn{position:absolute;top:-99999px}#main-menu-state:not(:checked)~#main-menu{display:block}}.sm-dox{background-image:var(--nav-gradient-image)}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0px 12px;padding-right:43px;font-family:var(--font-family-nav);font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:var(--nav-text-normal-shadow);color:var(--nav-text-normal-color);outline:none}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a.current{color:#D23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace !important;text-align:center;text-shadow:none;background:var(--nav-menu-toggle-color);border-radius:5px}.sm-dox a span.sub-arrow:before{display:block;content:'+'}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{border-radius:0}.sm-dox ul{background:var(--nav-menu-background-color)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:var(--nav-menu-background-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:0px 1px 1px #000}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media (min-width: 768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:var(--nav-gradient-image);line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:var(--nav-text-normal-color) transparent transparent transparent;background:transparent;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0px 12px;background-image:var(--nav-separator-image);background-repeat:no-repeat;background-position:right;border-radius:0 !important}.sm-dox a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox a:hover span.sub-arrow{border-color:var(--nav-text-hover-color) transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent var(--nav-menu-background-color) transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:var(--nav-menu-background-color);border-radius:5px !important;box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent var(--nav-menu-foreground-color);border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:var(--nav-menu-foreground-color);background-image:none;border:0 !important;color:var(--nav-menu-foreground-color);background-image:none}.sm-dox ul a:hover{background-image:var(--nav-gradient-active-image);background-repeat:repeat-x;color:var(--nav-text-hover-color);text-shadow:var(--nav-text-hover-shadow)}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent var(--nav-text-hover-color)}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:var(--nav-menu-background-color);height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #D23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#D23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent var(--nav-menu-foreground-color) transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:var(--nav-menu-foreground-color) transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px !important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:var(--nav-gradient-image)}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:var(--nav-menu-background-color)}} diff --git a/abcg/doc/latex/Makefile b/abcg/doc/latex/Makefile deleted file mode 100644 index 877c9cccd..000000000 --- a/abcg/doc/latex/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -LATEX_CMD=pdflatex - -all: refman.pdf - -pdf: refman.pdf - -refman.pdf: clean refman.tex - $(LATEX_CMD) refman - makeindex refman.idx - $(LATEX_CMD) refman - latex_count=8 ; \ - while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ - do \ - echo "Rerunning latex...." ;\ - $(LATEX_CMD) refman ;\ - latex_count=`expr $$latex_count - 1` ;\ - done - makeindex refman.idx - $(LATEX_CMD) refman - - -clean: - rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf diff --git a/abcg/doc/latex/doxygen.sty b/abcg/doc/latex/doxygen.sty deleted file mode 100644 index 8f59bccf5..000000000 --- a/abcg/doc/latex/doxygen.sty +++ /dev/null @@ -1,576 +0,0 @@ -\NeedsTeXFormat{LaTeX2e} -\ProvidesPackage{doxygen} - -% Packages used by this style file -\RequirePackage{alltt} -%%\RequirePackage{array} %% moved to refman.tex due to workaround for LaTex 2019 version and unmaintained tabu package -\RequirePackage{calc} -\RequirePackage{float} -%%\RequirePackage{ifthen} %% moved to refman.tex due to workaround for LaTex 2019 version and unmaintained tabu package -\RequirePackage{verbatim} -\RequirePackage[table]{xcolor} -\RequirePackage{longtable_doxygen} -\RequirePackage{tabu_doxygen} -\RequirePackage{fancyvrb} -\RequirePackage{tabularx} -\RequirePackage{multicol} -\RequirePackage{multirow} -\RequirePackage{hanging} -\RequirePackage{ifpdf} -\RequirePackage{adjustbox} -\RequirePackage{amssymb} -\RequirePackage{stackengine} -\RequirePackage[normalem]{ulem} % for strikeout, but don't modify emphasis - -%---------- Internal commands used in this style file ---------------- - -\newcommand{\ensurespace}[1]{% - \begingroup% - \setlength{\dimen@}{#1}% - \vskip\z@\@plus\dimen@% - \penalty -100\vskip\z@\@plus -\dimen@% - \vskip\dimen@% - \penalty 9999% - \vskip -\dimen@% - \vskip\z@skip% hide the previous |\vskip| from |\addvspace| - \endgroup% -} - -\newcommand{\DoxyHorRuler}[1]{% - \setlength{\parskip}{0ex plus 0ex minus 0ex}% - \ifthenelse{#1=0}% - {% - \hrule% - }% - {% - \hrulefilll% - }% -} -\newcommand{\DoxyLabelFont}{} -\newcommand{\entrylabel}[1]{% - {% - \parbox[b]{\labelwidth-4pt}{% - \makebox[0pt][l]{\DoxyLabelFont#1}% - \vspace{1.5\baselineskip}% - }% - }% -} - -\newenvironment{DoxyDesc}[1]{% - \ensurespace{4\baselineskip}% - \begin{list}{}{% - \settowidth{\labelwidth}{20pt}% - %\setlength{\parsep}{0pt}% - \setlength{\itemsep}{0pt}% - \setlength{\leftmargin}{\labelwidth+\labelsep}% - \renewcommand{\makelabel}{\entrylabel}% - }% - \item[#1]% -}{% - \end{list}% -} - -\newsavebox{\xrefbox} -\newlength{\xreflength} -\newcommand{\xreflabel}[1]{% - \sbox{\xrefbox}{#1}% - \setlength{\xreflength}{\wd\xrefbox}% - \ifthenelse{\xreflength>\labelwidth}{% - \begin{minipage}{\textwidth}% - \setlength{\parindent}{0pt}% - \hangindent=15pt\bfseries #1\vspace{1.2\itemsep}% - \end{minipage}% - }{% - \parbox[b]{\labelwidth}{\makebox[0pt][l]{\textbf{#1}}}% - }% -} - -%---------- Commands used by doxygen LaTeX output generator ---------- - -% Used by
     ... 
    -\newenvironment{DoxyPre}{% - \small% - \begin{alltt}% -}{% - \end{alltt}% - \normalsize% -} -% Necessary for redefining not defined characters, i.e. "Replacement Character" in tex output. -\newlength{\CodeWidthChar} -\newlength{\CodeHeightChar} -\settowidth{\CodeWidthChar}{?} -\settoheight{\CodeHeightChar}{?} -% Necessary for hanging indent -\newlength{\DoxyCodeWidth} - -\newcommand\DoxyCodeLine[1]{\hangpara{\DoxyCodeWidth}{1}{#1}\par} - -\newcommand\NiceSpace{% - \discretionary{}{\kern\fontdimen2\font}{\kern\fontdimen2\font}% -} - -% Used by @code ... @endcode -\newenvironment{DoxyCode}[1]{% - \par% - \scriptsize% - \normalfont\ttfamily% - \rightskip0pt plus 1fil% - \settowidth{\DoxyCodeWidth}{000000}% - \settowidth{\CodeWidthChar}{?}% - \settoheight{\CodeHeightChar}{?}% - \setlength{\parskip}{0ex plus 0ex minus 0ex}% - \ifthenelse{\equal{#1}{0}} - { - {\lccode`~32 \lowercase{\global\let~}\NiceSpace}\obeyspaces% - } - { - {\lccode`~32 \lowercase{\global\let~}}\obeyspaces% - } - -}{% - \normalfont% - \normalsize% - \settowidth{\CodeWidthChar}{?}% - \settoheight{\CodeHeightChar}{?}% -} - -% Redefining not defined characters, i.e. "Replacement Character" in tex output. -\def\ucr{\adjustbox{width=\CodeWidthChar,height=\CodeHeightChar}{\stackinset{c}{}{c}{-.2pt}{% - \textcolor{white}{\sffamily\bfseries\small ?}}{% - \rotatebox{45}{$\blacksquare$}}}} - -% Used by @example, @include, @includelineno and @dontinclude -\newenvironment{DoxyCodeInclude}[1]{% - \DoxyCode{#1}% -}{% - \endDoxyCode% -} - -% Used by @verbatim ... @endverbatim -\newenvironment{DoxyVerb}{% - \footnotesize% - \verbatim% -}{% - \endverbatim% - \normalsize% -} - -% Used by @verbinclude -\newenvironment{DoxyVerbInclude}{% - \DoxyVerb% -}{% - \endDoxyVerb% -} - -% Used by numbered lists (using '-#' or
      ...
    ) -\newenvironment{DoxyEnumerate}{% - \enumerate% -}{% - \endenumerate% -} - -% Used by bullet lists (using '-', @li, @arg, or
      ...
    ) -\newenvironment{DoxyItemize}{% - \itemize% -}{% - \enditemize% -} - -% Used by description lists (using
    ...
    ) -\newenvironment{DoxyDescription}{% - \description% -}{% - \enddescription% -} - -% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc -% (only if caption is specified) -\newenvironment{DoxyImage}{% - \begin{figure}[H]% - \centering% -}{% - \end{figure}% -} - -% Used by @image, @dotfile, @dot ... @enddot, and @msc ... @endmsc -% (only if no caption is specified) -\newenvironment{DoxyImageNoCaption}{% - \begin{center}% -}{% - \end{center}% -} - -% Used by @image -% (only if inline is specified) -\newenvironment{DoxyInlineImage}{% -}{% -} - -% Used by @attention -\newenvironment{DoxyAttention}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @author and @authors -\newenvironment{DoxyAuthor}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @date -\newenvironment{DoxyDate}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @invariant -\newenvironment{DoxyInvariant}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @note -\newenvironment{DoxyNote}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @post -\newenvironment{DoxyPostcond}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @pre -\newenvironment{DoxyPrecond}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @copyright -\newenvironment{DoxyCopyright}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @remark -\newenvironment{DoxyRemark}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @return and @returns -\newenvironment{DoxyReturn}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @since -\newenvironment{DoxySince}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @see -\newenvironment{DoxySeeAlso}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @version -\newenvironment{DoxyVersion}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @warning -\newenvironment{DoxyWarning}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by @internal -\newenvironment{DoxyInternal}[1]{% - \paragraph*{#1}% -}{% -} - -% Used by @par and @paragraph -\newenvironment{DoxyParagraph}[1]{% - \begin{DoxyDesc}{#1}% -}{% - \end{DoxyDesc}% -} - -% Used by parameter lists -\newenvironment{DoxyParams}[2][]{% - \tabulinesep=1mm% - \par% - \ifthenelse{\equal{#1}{}}% - {\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|}}% name + description - {\ifthenelse{\equal{#1}{1}}% - {\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + name + desc - {\begin{longtabu*}spread 0pt [l]{|X[-1,l]|X[-1,l]|X[-1,l]|X[-1,l]|}}% in/out + type + name + desc - } - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #2}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used for fields of simple structs -\newenvironment{DoxyFields}[1]{% - \tabulinesep=1mm% - \par% - \begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|X[-1,l]|}% - \multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{3}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used for fields simple class style enums -\newenvironment{DoxyEnumFields}[1]{% - \tabulinesep=1mm% - \par% - \begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used for parameters within a detailed function description -\newenvironment{DoxyParamCaption}{% - \renewcommand{\item}[2][]{\\ \hspace*{2.0cm} ##1 {\em ##2}}% -}{% -} - -% Used by return value lists -\newenvironment{DoxyRetVals}[1]{% - \tabulinesep=1mm% - \par% - \begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used by exception lists -\newenvironment{DoxyExceptions}[1]{% - \tabulinesep=1mm% - \par% - \begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used by template parameter lists -\newenvironment{DoxyTemplParams}[1]{% - \tabulinesep=1mm% - \par% - \begin{longtabu*}spread 0pt [l]{|X[-1,r]|X[-1,l]|}% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endfirsthead% - \multicolumn{2}{l}{\hspace{-6pt}\bfseries\fontseries{bc}\selectfont\color{darkgray} #1}\\[1ex]% - \hline% - \endhead% -}{% - \end{longtabu*}% - \vspace{6pt}% -} - -% Used for member lists -\newenvironment{DoxyCompactItemize}{% - \begin{itemize}% - \setlength{\itemsep}{-3pt}% - \setlength{\parsep}{0pt}% - \setlength{\topsep}{0pt}% - \setlength{\partopsep}{0pt}% -}{% - \end{itemize}% -} - -% Used for member descriptions -\newenvironment{DoxyCompactList}{% - \begin{list}{}{% - \setlength{\leftmargin}{0.5cm}% - \setlength{\itemsep}{0pt}% - \setlength{\parsep}{0pt}% - \setlength{\topsep}{0pt}% - \renewcommand{\makelabel}{\hfill}% - }% -}{% - \end{list}% -} - -% Used for reference lists (@bug, @deprecated, @todo, etc.) -\newenvironment{DoxyRefList}{% - \begin{list}{}{% - \setlength{\labelwidth}{10pt}% - \setlength{\leftmargin}{\labelwidth}% - \addtolength{\leftmargin}{\labelsep}% - \renewcommand{\makelabel}{\xreflabel}% - }% -}{% - \end{list}% -} - -% Used by @bug, @deprecated, @todo, etc. -\newenvironment{DoxyRefDesc}[1]{% - \begin{list}{}{% - \renewcommand\makelabel[1]{\textbf{##1}}% - \settowidth\labelwidth{\makelabel{#1}}% - \setlength\leftmargin{\labelwidth+\labelsep}% - }% -}{% - \end{list}% -} - -% Used by parameter lists and simple sections -\newenvironment{Desc} -{\begin{list}{}{% - \settowidth{\labelwidth}{20pt}% - \setlength{\parsep}{0pt}% - \setlength{\itemsep}{0pt}% - \setlength{\leftmargin}{\labelwidth+\labelsep}% - \renewcommand{\makelabel}{\entrylabel}% - } -}{% - \end{list}% -} - -% Used by tables -\newcommand{\PBS}[1]{\let\temp=\\#1\let\\=\temp}% -\newenvironment{TabularC}[1]% -{\tabulinesep=1mm -\begin{longtabu*}spread 0pt [c]{*#1{|X[-1]}|}}% -{\end{longtabu*}\par}% - -\newenvironment{TabularNC}[1]% -{\begin{tabu}spread 0pt [l]{*#1{|X[-1]}|}}% -{\end{tabu}\par}% - -% Used for member group headers -\newenvironment{Indent}{% - \begin{list}{}{% - \setlength{\leftmargin}{0.5cm}% - }% - \item[]\ignorespaces% -}{% - \unskip% - \end{list}% -} - -% Used when hyperlinks are turned off -\newcommand{\doxyref}[3]{% - \textbf{#1} (\textnormal{#2}\,\pageref{#3})% -} - -% Used to link to a table when hyperlinks are turned on -\newcommand{\doxytablelink}[2]{% - \ref{#1}% -} - -% Used to link to a table when hyperlinks are turned off -\newcommand{\doxytableref}[3]{% - \ref{#3}% -} - -% Used by @addindex -\newcommand{\lcurly}{\{} -\newcommand{\rcurly}{\}} - -% Colors used for syntax highlighting -\definecolor{comment}{rgb}{0.5,0.0,0.0} -\definecolor{keyword}{rgb}{0.0,0.5,0.0} -\definecolor{keywordtype}{rgb}{0.38,0.25,0.125} -\definecolor{keywordflow}{rgb}{0.88,0.5,0.0} -\definecolor{preprocessor}{rgb}{0.5,0.38,0.125} -\definecolor{stringliteral}{rgb}{0.0,0.125,0.25} -\definecolor{charliteral}{rgb}{0.0,0.5,0.5} -\definecolor{vhdldigit}{rgb}{1.0,0.0,1.0} -\definecolor{vhdlkeyword}{rgb}{0.43,0.0,0.43} -\definecolor{vhdllogic}{rgb}{1.0,0.0,0.0} -\definecolor{vhdlchar}{rgb}{0.0,0.0,0.0} - -% Color used for table heading -\newcommand{\tableheadbgcolor}{lightgray}% - -% Version of hypertarget with correct landing location -\newcommand{\Hypertarget}[1]{\Hy@raisedlink{\hypertarget{#1}{}}} - -% possibility to have sections etc. be within the margins -% unfortunately had to copy part of book.cls and add \raggedright -\makeatletter -\newcommand\doxysection{\@startsection {section}{1}{\z@}% - {-3.5ex \@plus -1ex \@minus -.2ex}% - {2.3ex \@plus.2ex}% - {\raggedright\normalfont\Large\bfseries}} -\newcommand\doxysubsection{\@startsection{subsection}{2}{\z@}% - {-3.25ex\@plus -1ex \@minus -.2ex}% - {1.5ex \@plus .2ex}% - {\raggedright\normalfont\large\bfseries}} -\newcommand\doxysubsubsection{\@startsection{subsubsection}{3}{\z@}% - {-3.25ex\@plus -1ex \@minus -.2ex}% - {1.5ex \@plus .2ex}% - {\raggedright\normalfont\normalsize\bfseries}} -\newcommand\doxyparagraph{\@startsection{paragraph}{4}{\z@}% - {3.25ex \@plus1ex \@minus.2ex}% - {-1em}% - {\raggedright\normalfont\normalsize\bfseries}} -\newcommand\doxysubparagraph{\@startsection{subparagraph}{5}{\parindent}% - {3.25ex \@plus1ex \@minus .2ex}% - {-1em}% - {\raggedright\normalfont\normalsize\bfseries}} -\makeatother -% Define caption that is also suitable in a table -\makeatletter -\def\doxyfigcaption{% -\H@refstepcounter{figure}% -\@dblarg{\@caption{figure}}} -\makeatother diff --git a/abcg/doc/latex/longtable_doxygen.sty b/abcg/doc/latex/longtable_doxygen.sty deleted file mode 100644 index a0eb314f9..000000000 --- a/abcg/doc/latex/longtable_doxygen.sty +++ /dev/null @@ -1,448 +0,0 @@ -%% -%% This is file `longtable.sty', -%% generated with the docstrip utility. -%% -%% The original source files were: -%% -%% longtable.dtx (with options: `package') -%% -%% This is a generated file. -%% -%% The source is maintained by the LaTeX Project team and bug -%% reports for it can be opened at http://latex-project.org/bugs.html -%% (but please observe conditions on bug reports sent to that address!) -%% -%% Copyright 1993-2016 -%% The LaTeX3 Project and any individual authors listed elsewhere -%% in this file. -%% -%% This file was generated from file(s) of the Standard LaTeX `Tools Bundle'. -%% -------------------------------------------------------------------------- -%% -%% It may be distributed and/or modified under the -%% conditions of the LaTeX Project Public License, either version 1.3c -%% of this license or (at your option) any later version. -%% The latest version of this license is in -%% http://www.latex-project.org/lppl.txt -%% and version 1.3c or later is part of all distributions of LaTeX -%% version 2005/12/01 or later. -%% -%% This file may only be distributed together with a copy of the LaTeX -%% `Tools Bundle'. You may however distribute the LaTeX `Tools Bundle' -%% without such generated files. -%% -%% The list of all files belonging to the LaTeX `Tools Bundle' is -%% given in the file `manifest.txt'. -%% -%% File: longtable.dtx Copyright (C) 1990-2001 David Carlisle -\NeedsTeXFormat{LaTeX2e}[1995/06/01] -\ProvidesPackage{longtable_doxygen} - [2014/10/28 v4.11 Multi-page Table package (DPC) - frozen version for doxygen] -\def\LT@err{\PackageError{longtable}} -\def\LT@warn{\PackageWarning{longtable}} -\def\LT@final@warn{% - \AtEndDocument{% - \LT@warn{Table \@width s have changed. Rerun LaTeX.\@gobbletwo}}% - \global\let\LT@final@warn\relax} -\DeclareOption{errorshow}{% - \def\LT@warn{\PackageInfo{longtable}}} -\DeclareOption{pausing}{% - \def\LT@warn#1{% - \LT@err{#1}{This is not really an error}}} -\DeclareOption{set}{} -\DeclareOption{final}{} -\ProcessOptions -\newskip\LTleft \LTleft=\fill -\newskip\LTright \LTright=\fill -\newskip\LTpre \LTpre=\bigskipamount -\newskip\LTpost \LTpost=\bigskipamount -\newcount\LTchunksize \LTchunksize=20 -\let\c@LTchunksize\LTchunksize -\newdimen\LTcapwidth \LTcapwidth=4in -\newbox\LT@head -\newbox\LT@firsthead -\newbox\LT@foot -\newbox\LT@lastfoot -\newcount\LT@cols -\newcount\LT@rows -\newcounter{LT@tables} -\newcounter{LT@chunks}[LT@tables] -\ifx\c@table\undefined - \newcounter{table} - \def\fnum@table{\tablename~\thetable} -\fi -\ifx\tablename\undefined - \def\tablename{Table} -\fi -\newtoks\LT@p@ftn -\mathchardef\LT@end@pen=30000 -\def\longtable{% - \par - \ifx\multicols\@undefined - \else - \ifnum\col@number>\@ne - \@twocolumntrue - \fi - \fi - \if@twocolumn - \LT@err{longtable not in 1-column mode}\@ehc - \fi - \begingroup - \@ifnextchar[\LT@array{\LT@array[x]}} -\def\LT@array[#1]#2{% - \refstepcounter{table}\stepcounter{LT@tables}% - \if l#1% - \LTleft\z@ \LTright\fill - \else\if r#1% - \LTleft\fill \LTright\z@ - \else\if c#1% - \LTleft\fill \LTright\fill - \fi\fi\fi - \let\LT@mcol\multicolumn - \let\LT@@tabarray\@tabarray - \let\LT@@hl\hline - \def\@tabarray{% - \let\hline\LT@@hl - \LT@@tabarray}% - \let\\\LT@tabularcr\let\tabularnewline\\% - \def\newpage{\noalign{\break}}% - \def\pagebreak{\noalign{\ifnum`}=0\fi\@testopt{\LT@no@pgbk-}4}% - \def\nopagebreak{\noalign{\ifnum`}=0\fi\@testopt\LT@no@pgbk4}% - \let\hline\LT@hline \let\kill\LT@kill\let\caption\LT@caption - \@tempdima\ht\strutbox - \let\@endpbox\LT@endpbox - \ifx\extrarowheight\@undefined - \let\@acol\@tabacol - \let\@classz\@tabclassz \let\@classiv\@tabclassiv - \def\@startpbox{\vtop\LT@startpbox}% - \let\@@startpbox\@startpbox - \let\@@endpbox\@endpbox - \let\LT@LL@FM@cr\@tabularcr - \else - \advance\@tempdima\extrarowheight - \col@sep\tabcolsep - \let\@startpbox\LT@startpbox\let\LT@LL@FM@cr\@arraycr - \fi - \setbox\@arstrutbox\hbox{\vrule - \@height \arraystretch \@tempdima - \@depth \arraystretch \dp \strutbox - \@width \z@}% - \let\@sharp##\let\protect\relax - \begingroup - \@mkpream{#2}% - \xdef\LT@bchunk{% - \global\advance\c@LT@chunks\@ne - \global\LT@rows\z@\setbox\z@\vbox\bgroup - \LT@setprevdepth - \tabskip\LTleft \noexpand\halign to\hsize\bgroup - \tabskip\z@ \@arstrut \@preamble \tabskip\LTright \cr}% - \endgroup - \expandafter\LT@nofcols\LT@bchunk&\LT@nofcols - \LT@make@row - \m@th\let\par\@empty - \everycr{}\lineskip\z@\baselineskip\z@ - \LT@bchunk} -\def\LT@no@pgbk#1[#2]{\penalty #1\@getpen{#2}\ifnum`{=0\fi}} -\def\LT@start{% - \let\LT@start\endgraf - \endgraf\penalty\z@\vskip\LTpre - \dimen@\pagetotal - \advance\dimen@ \ht\ifvoid\LT@firsthead\LT@head\else\LT@firsthead\fi - \advance\dimen@ \dp\ifvoid\LT@firsthead\LT@head\else\LT@firsthead\fi - \advance\dimen@ \ht\LT@foot - \dimen@ii\vfuzz - \vfuzz\maxdimen - \setbox\tw@\copy\z@ - \setbox\tw@\vsplit\tw@ to \ht\@arstrutbox - \setbox\tw@\vbox{\unvbox\tw@}% - \vfuzz\dimen@ii - \advance\dimen@ \ht - \ifdim\ht\@arstrutbox>\ht\tw@\@arstrutbox\else\tw@\fi - \advance\dimen@\dp - \ifdim\dp\@arstrutbox>\dp\tw@\@arstrutbox\else\tw@\fi - \advance\dimen@ -\pagegoal - \ifdim \dimen@>\z@\vfil\break\fi - \global\@colroom\@colht - \ifvoid\LT@foot\else - \advance\vsize-\ht\LT@foot - \global\advance\@colroom-\ht\LT@foot - \dimen@\pagegoal\advance\dimen@-\ht\LT@foot\pagegoal\dimen@ - \maxdepth\z@ - \fi - \ifvoid\LT@firsthead\copy\LT@head\else\box\LT@firsthead\fi\nobreak - \output{\LT@output}} -\def\endlongtable{% - \crcr - \noalign{% - \let\LT@entry\LT@entry@chop - \xdef\LT@save@row{\LT@save@row}}% - \LT@echunk - \LT@start - \unvbox\z@ - \LT@get@widths - \if@filesw - {\let\LT@entry\LT@entry@write\immediate\write\@auxout{% - \gdef\expandafter\noexpand - \csname LT@\romannumeral\c@LT@tables\endcsname - {\LT@save@row}}}% - \fi - \ifx\LT@save@row\LT@@save@row - \else - \LT@warn{Column \@width s have changed\MessageBreak - in table \thetable}% - \LT@final@warn - \fi - \endgraf\penalty -\LT@end@pen - \endgroup - \global\@mparbottom\z@ - \pagegoal\vsize - \endgraf\penalty\z@\addvspace\LTpost - \ifvoid\footins\else\insert\footins{}\fi} -\def\LT@nofcols#1&{% - \futurelet\@let@token\LT@n@fcols} -\def\LT@n@fcols{% - \advance\LT@cols\@ne - \ifx\@let@token\LT@nofcols - \expandafter\@gobble - \else - \expandafter\LT@nofcols - \fi} -\def\LT@tabularcr{% - \relax\iffalse{\fi\ifnum0=`}\fi - \@ifstar - {\def\crcr{\LT@crcr\noalign{\nobreak}}\let\cr\crcr - \LT@t@bularcr}% - {\LT@t@bularcr}} -\let\LT@crcr\crcr -\let\LT@setprevdepth\relax -\def\LT@t@bularcr{% - \global\advance\LT@rows\@ne - \ifnum\LT@rows=\LTchunksize - \gdef\LT@setprevdepth{% - \prevdepth\z@\global - \global\let\LT@setprevdepth\relax}% - \expandafter\LT@xtabularcr - \else - \ifnum0=`{}\fi - \expandafter\LT@LL@FM@cr - \fi} -\def\LT@xtabularcr{% - \@ifnextchar[\LT@argtabularcr\LT@ntabularcr} -\def\LT@ntabularcr{% - \ifnum0=`{}\fi - \LT@echunk - \LT@start - \unvbox\z@ - \LT@get@widths - \LT@bchunk} -\def\LT@argtabularcr[#1]{% - \ifnum0=`{}\fi - \ifdim #1>\z@ - \unskip\@xargarraycr{#1}% - \else - \@yargarraycr{#1}% - \fi - \LT@echunk - \LT@start - \unvbox\z@ - \LT@get@widths - \LT@bchunk} -\def\LT@echunk{% - \crcr\LT@save@row\cr\egroup - \global\setbox\@ne\lastbox - \unskip - \egroup} -\def\LT@entry#1#2{% - \ifhmode\@firstofone{&}\fi\omit - \ifnum#1=\c@LT@chunks - \else - \kern#2\relax - \fi} -\def\LT@entry@chop#1#2{% - \noexpand\LT@entry - {\ifnum#1>\c@LT@chunks - 1}{0pt% - \else - #1}{#2% - \fi}} -\def\LT@entry@write{% - \noexpand\LT@entry^^J% - \@spaces} -\def\LT@kill{% - \LT@echunk - \LT@get@widths - \expandafter\LT@rebox\LT@bchunk} -\def\LT@rebox#1\bgroup{% - #1\bgroup - \unvbox\z@ - \unskip - \setbox\z@\lastbox} -\def\LT@blank@row{% - \xdef\LT@save@row{\expandafter\LT@build@blank - \romannumeral\number\LT@cols 001 }} -\def\LT@build@blank#1{% - \if#1m% - \noexpand\LT@entry{1}{0pt}% - \expandafter\LT@build@blank - \fi} -\def\LT@make@row{% - \global\expandafter\let\expandafter\LT@save@row - \csname LT@\romannumeral\c@LT@tables\endcsname - \ifx\LT@save@row\relax - \LT@blank@row - \else - {\let\LT@entry\or - \if!% - \ifcase\expandafter\expandafter\expandafter\LT@cols - \expandafter\@gobble\LT@save@row - \or - \else - \relax - \fi - !% - \else - \aftergroup\LT@blank@row - \fi}% - \fi} -\let\setlongtables\relax -\def\LT@get@widths{% - \setbox\tw@\hbox{% - \unhbox\@ne - \let\LT@old@row\LT@save@row - \global\let\LT@save@row\@empty - \count@\LT@cols - \loop - \unskip - \setbox\tw@\lastbox - \ifhbox\tw@ - \LT@def@row - \advance\count@\m@ne - \repeat}% - \ifx\LT@@save@row\@undefined - \let\LT@@save@row\LT@save@row - \fi} -\def\LT@def@row{% - \let\LT@entry\or - \edef\@tempa{% - \ifcase\expandafter\count@\LT@old@row - \else - {1}{0pt}% - \fi}% - \let\LT@entry\relax - \xdef\LT@save@row{% - \LT@entry - \expandafter\LT@max@sel\@tempa - \LT@save@row}} -\def\LT@max@sel#1#2{% - {\ifdim#2=\wd\tw@ - #1% - \else - \number\c@LT@chunks - \fi}% - {\the\wd\tw@}} -\def\LT@hline{% - \noalign{\ifnum0=`}\fi - \penalty\@M - \futurelet\@let@token\LT@@hline} -\def\LT@@hline{% - \ifx\@let@token\hline - \global\let\@gtempa\@gobble - \gdef\LT@sep{\penalty-\@medpenalty\vskip\doublerulesep}% - \else - \global\let\@gtempa\@empty - \gdef\LT@sep{\penalty-\@lowpenalty\vskip-\arrayrulewidth}% - \fi - \ifnum0=`{\fi}% - \multispan\LT@cols - \unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr - \noalign{\LT@sep}% - \multispan\LT@cols - \unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr - \noalign{\penalty\@M}% - \@gtempa} -\def\LT@caption{% - \noalign\bgroup - \@ifnextchar[{\egroup\LT@c@ption\@firstofone}\LT@capti@n} -\def\LT@c@ption#1[#2]#3{% - \LT@makecaption#1\fnum@table{#3}% - \def\@tempa{#2}% - \ifx\@tempa\@empty\else - {\let\\\space - \addcontentsline{lot}{table}{\protect\numberline{\thetable}{#2}}}% - \fi} -\def\LT@capti@n{% - \@ifstar - {\egroup\LT@c@ption\@gobble[]}% - {\egroup\@xdblarg{\LT@c@ption\@firstofone}}} -\def\LT@makecaption#1#2#3{% - \LT@mcol\LT@cols c{\hbox to\z@{\hss\parbox[t]\LTcapwidth{% - \sbox\@tempboxa{#1{#2: }#3}% - \ifdim\wd\@tempboxa>\hsize - #1{#2: }#3% - \else - \hbox to\hsize{\hfil\box\@tempboxa\hfil}% - \fi - \endgraf\vskip\baselineskip}% - \hss}}} -\def\LT@output{% - \ifnum\outputpenalty <-\@Mi - \ifnum\outputpenalty > -\LT@end@pen - \LT@err{floats and marginpars not allowed in a longtable}\@ehc - \else - \setbox\z@\vbox{\unvbox\@cclv}% - \ifdim \ht\LT@lastfoot>\ht\LT@foot - \dimen@\pagegoal - \advance\dimen@-\ht\LT@lastfoot - \ifdim\dimen@<\ht\z@ - \setbox\@cclv\vbox{\unvbox\z@\copy\LT@foot\vss}% - \@makecol - \@outputpage - \setbox\z@\vbox{\box\LT@head}% - \fi - \fi - \global\@colroom\@colht - \global\vsize\@colht - \vbox - {\unvbox\z@\box\ifvoid\LT@lastfoot\LT@foot\else\LT@lastfoot\fi}% - \fi - \else - \setbox\@cclv\vbox{\unvbox\@cclv\copy\LT@foot\vss}% - \@makecol - \@outputpage - \global\vsize\@colroom - \copy\LT@head\nobreak - \fi} -\def\LT@end@hd@ft#1{% - \LT@echunk - \ifx\LT@start\endgraf - \LT@err - {Longtable head or foot not at start of table}% - {Increase LTchunksize}% - \fi - \setbox#1\box\z@ - \LT@get@widths - \LT@bchunk} -\def\endfirsthead{\LT@end@hd@ft\LT@firsthead} -\def\endhead{\LT@end@hd@ft\LT@head} -\def\endfoot{\LT@end@hd@ft\LT@foot} -\def\endlastfoot{\LT@end@hd@ft\LT@lastfoot} -\def\LT@startpbox#1{% - \bgroup - \let\@footnotetext\LT@p@ftntext - \setlength\hsize{#1}% - \@arrayparboxrestore - \vrule \@height \ht\@arstrutbox \@width \z@} -\def\LT@endpbox{% - \@finalstrut\@arstrutbox - \egroup - \the\LT@p@ftn - \global\LT@p@ftn{}% - \hfil} -\def\LT@p@ftntext#1{% - \edef\@tempa{\the\LT@p@ftn\noexpand\footnotetext[\the\c@footnote]}% - \global\LT@p@ftn\expandafter{\@tempa{#1}}}% - -\@namedef{ver@longtable.sty}{2014/10/28 v4.11 Multi-page Table package (DPC) - frozen version for doxygen} -\endinput -%% -%% End of file `longtable.sty'. diff --git a/abcg/doc/latex/refman.tex b/abcg/doc/latex/refman.tex deleted file mode 100644 index d878a39db..000000000 --- a/abcg/doc/latex/refman.tex +++ /dev/null @@ -1,184 +0,0 @@ -\let\mypdfximage\pdfximage\def\pdfximage{\immediate\mypdfximage}\documentclass[twoside]{book} - -%% moved from doxygen.sty due to workaround for LaTex 2019 version and unmaintained tabu package -\usepackage{ifthen} -\ifx\requestedLaTeXdate\undefined -\usepackage{array} -\else -\usepackage{array}[=2016-10-06] -\fi -%% -% Packages required by doxygen -\usepackage{fixltx2e} -\usepackage{doxygen} -\usepackage{graphicx} -\usepackage[utf8]{inputenc} -\usepackage{makeidx} -\PassOptionsToPackage{warn}{textcomp} -\usepackage{textcomp} -\usepackage[nointegrals]{wasysym} -\usepackage{ifxetex} - -% Font selection -\usepackage[T1]{fontenc} -\usepackage[scaled=.90]{helvet} -\usepackage{courier} -\renewcommand{\familydefault}{\sfdefault} -\usepackage{sectsty} -\allsectionsfont{% - \fontseries{bc}\selectfont% - \color{darkgray}% -} -\renewcommand{\DoxyLabelFont}{% - \fontseries{bc}\selectfont% - \color{darkgray}% -} -\newcommand{\+}{\discretionary{\mbox{\scriptsize$\hookleftarrow$}}{}{}} - -% Arguments of doxygenemoji: -% 1) '::' form of the emoji, already "LaTeX"-escaped -% 2) file with the name of the emoji without the .png extension -% in case image exist use this otherwise use the '::' form -\newcommand{\doxygenemoji}[2]{% - \IfFileExists{./#2.png}{\raisebox{-0.1em}{\includegraphics[height=0.9em]{./#2.png}}}{#1}% -} -% Page & text layout -\usepackage{geometry} -\geometry{% - a4paper,% - top=2.5cm,% - bottom=2.5cm,% - left=2.5cm,% - right=2.5cm% -} -\tolerance=750 -\hfuzz=15pt -\hbadness=750 -\setlength{\emergencystretch}{15pt} -\setlength{\parindent}{0cm} -\newcommand{\doxynormalparskip}{\setlength{\parskip}{3ex plus 2ex minus 2ex}} -\newcommand{\doxytocparskip}{\setlength{\parskip}{1ex plus 0ex minus 0ex}} -\doxynormalparskip -\makeatletter -\renewcommand{\paragraph}{% - \@startsection{paragraph}{4}{0ex}{-1.0ex}{1.0ex}{% - \normalfont\normalsize\bfseries\SS@parafont% - }% -} -\renewcommand{\subparagraph}{% - \@startsection{subparagraph}{5}{0ex}{-1.0ex}{1.0ex}{% - \normalfont\normalsize\bfseries\SS@subparafont% - }% -} -\makeatother - -\makeatletter -\newcommand\hrulefilll{\leavevmode\leaders\hrule\hskip 0pt plus 1filll\kern\z@} -\makeatother - -% Headers & footers -\usepackage{fancyhdr} -\pagestyle{fancyplain} -\renewcommand{\footrulewidth}{0.4pt} -% -\fancypagestyle{fancyplain}{ -\fancyhf{} -\fancyhead[LE, RO]{\bfseries\thepage} -\fancyhead[LO]{\bfseries\rightmark} -\fancyhead[RE]{\bfseries\leftmark} -\fancyfoot[LO, RE]{\bfseries\scriptsize Generated by Doxygen } -} -% -\fancypagestyle{plain}{ -\fancyhf{} -\fancyfoot[LO, RE]{\bfseries\scriptsize Generated by Doxygen } -\renewcommand{\headrulewidth}{0pt}} -% -\pagestyle{fancyplain} -% -\renewcommand{\chaptermark}[1]{% - \markboth{#1}{}% -} -\renewcommand{\sectionmark}[1]{% - \markright{\thesection\ #1}% -} - -% Indices & bibliography -\usepackage{natbib} -\usepackage[titles]{tocloft} -\setcounter{tocdepth}{3} -\setcounter{secnumdepth}{5} -\makeindex - -\usepackage{newunicodechar} - \newunicodechar{⁻}{${}^{-}$}% Superscript minus - \newunicodechar{²}{${}^{2}$}% Superscript two - \newunicodechar{³}{${}^{3}$}% Superscript three - -% Hyperlinks (required, but should be loaded last) -\ifpdf - \usepackage[pdftex,pagebackref=true]{hyperref} -\else - \ifxetex - \usepackage[pagebackref=true]{hyperref} - \else - \usepackage[ps2pdf,pagebackref=true]{hyperref} - \fi -\fi - -\hypersetup{% - colorlinks=true,% - linkcolor=blue,% - citecolor=blue,% - unicode% -} - -% Custom commands -\newcommand{\clearemptydoublepage}{% - \newpage{\pagestyle{empty}\cleardoublepage}% -} - -\usepackage{caption} -\captionsetup{labelsep=space,justification=centering,font={bf},singlelinecheck=off,skip=4pt,position=top} - -\usepackage{etoc} -\etocsettocstyle{\doxytocparskip}{\doxynormalparskip} -\renewcommand{\numberline}[1]{#1~} -%===== C O N T E N T S ===== - -\begin{document} -\raggedbottom - -% Titlepage & ToC -\hypersetup{pageanchor=false, - bookmarksnumbered=true, - pdfencoding=unicode - } -\pagenumbering{alph} -\begin{titlepage} -\vspace*{7cm} -\begin{center}% -{\Large My Project }\\ -\vspace*{1cm} -{\large Generated by Doxygen 1.9.1}\\ -\end{center} -\end{titlepage} -\clearemptydoublepage -\pagenumbering{roman} -\tableofcontents -\clearemptydoublepage -\pagenumbering{arabic} -\hypersetup{pageanchor=true} - -%--- Begin generated contents --- -%--- End generated contents --- - -% Index -\backmatter -\newpage -\phantomsection -\clearemptydoublepage -\addcontentsline{toc}{chapter}{\indexname} -\printindex - -\end{document} diff --git a/abcg/doc/latex/tabu_doxygen.sty b/abcg/doc/latex/tabu_doxygen.sty deleted file mode 100644 index 60fd7e8dc..000000000 --- a/abcg/doc/latex/tabu_doxygen.sty +++ /dev/null @@ -1,2557 +0,0 @@ -%% -%% This is file `tabu.sty', -%% generated with the docstrip utility. -%% -%% The original source files were: -%% -%% tabu.dtx (with options: `package') -%% -%% This is a generated file. -%% Copyright (FC) 2010-2011 - lppl -%% -%% tabu : 2011/02/26 v2.8 - tabu : Flexible LaTeX tabulars -%% -%% ********************************************************************************************** -%% \begin{tabu} { preamble } => default target: \linewidth or \linegoal -%% \begin{tabu} to { preamble } => target specified -%% \begin{tabu} spread { preamble } => target relative to the ``natural width'' -%% -%% tabu works in text and in math modes. -%% -%% X columns: automatic width adjustment + horizontal and vertical alignment -%% \begin{tabu} { X[4c] X[1c] X[-2ml] } -%% -%% Horizontal lines and / or leaders: -%% \hline\hline => double horizontal line -%% \firsthline\hline => for nested tabulars -%% \lasthline\hline => for nested tabulars -%% \tabucline[line spec]{column-column} => ``funny'' lines (dash/leader) -%% Automatic lines / leaders : -%% \everyrow{\hline\hline} -%% -%% Vertical lines and / or leaders: -%% \begin{tabu} { |[3pt red] X[4c] X[1c] X[-2ml] |[3pt blue] } -%% \begin{tabu} { |[3pt red] X[4c] X[1c] X[-2ml] |[3pt on 2pt off 4pt blue] } -%% -%% Fixed vertical spacing adjustment: -%% \extrarowheight= \extrarowdepth= -%% or: \extrarowsep= => may be prefixed by \global -%% -%% Dynamic vertical spacing adjustment: -%% \abovetabulinesep= \belowtabulinesep= -%% or: \tabulinesep= => may be prefixed by \global -%% -%% delarray.sty shortcuts: in math and text modes -%% \begin{tabu} .... \({ preamble }\) -%% -%% Algorithms reports: -%% \tracingtabu=1 \tracingtabu=2 -%% -%% ********************************************************************************************** -%% -%% This work may be distributed and/or modified under the -%% conditions of the LaTeX Project Public License, either -%% version 1.3 of this license or (at your option) any later -%% version. The latest version of this license is in -%% http://www.latex-project.org/lppl.txt -%% -%% This work consists of the main source file tabu.dtx -%% and the derived files -%% tabu.sty, tabu.pdf, tabu.ins -%% -%% tabu : Flexible LaTeX tabulars -%% lppl copyright 2010-2011 by FC -%% - -\NeedsTeXFormat{LaTeX2e}[2005/12/01] -\ProvidesPackage{tabu_doxygen}[2011/02/26 v2.8 - flexible LaTeX tabulars (FC), frozen version for doxygen] -\RequirePackage{array}[2008/09/09] -\RequirePackage{varwidth}[2009/03/30] -\AtEndOfPackage{\tabu@AtEnd \let\tabu@AtEnd \@undefined} -\let\tabu@AtEnd\@empty -\def\TMP@EnsureCode#1={% - \edef\tabu@AtEnd{\tabu@AtEnd - \catcode#1 \the\catcode#1}% - \catcode#1=% -}% \TMP@EnsureCode -\TMP@EnsureCode 33 = 12 % ! -\TMP@EnsureCode 58 = 12 % : (for siunitx) -\TMP@EnsureCode124 = 12 % | -\TMP@EnsureCode 36 = 3 % $ = math shift -\TMP@EnsureCode 38 = 4 % & = tab alignment character -\TMP@EnsureCode 32 = 10 % space -\TMP@EnsureCode 94 = 7 % ^ -\TMP@EnsureCode 95 = 8 % _ -%% Constants -------------------------------------------------------- -\newcount \c@taburow \def\thetaburow {\number\c@taburow} -\newcount \tabu@nbcols -\newcount \tabu@cnt -\newcount \tabu@Xcol -\let\tabu@start \@tempcnta -\let\tabu@stop \@tempcntb -\newcount \tabu@alloc \tabu@alloc=\m@ne -\newcount \tabu@nested -\def\tabu@alloc@{\global\advance\tabu@alloc \@ne \tabu@nested\tabu@alloc} -\newdimen \tabu@target -\newdimen \tabu@spreadtarget -\newdimen \tabu@naturalX -\newdimen \tabucolX -\let\tabu@DELTA \@tempdimc -\let\tabu@thick \@tempdima -\let\tabu@on \@tempdimb -\let\tabu@off \@tempdimc -\newdimen \tabu@Xsum -\newdimen \extrarowdepth -\newdimen \abovetabulinesep -\newdimen \belowtabulinesep -\newdimen \tabustrutrule \tabustrutrule \z@ -\newtoks \tabu@thebody -\newtoks \tabu@footnotes -\newsavebox \tabu@box -\newsavebox \tabu@arstrutbox -\newsavebox \tabu@hleads -\newsavebox \tabu@vleads -\newif \iftabu@colortbl -\newif \iftabu@siunitx -\newif \iftabu@measuring -\newif \iftabu@spread -\newif \iftabu@negcoef -\newif \iftabu@everyrow -\def\tabu@everyrowtrue {\global\let\iftabu@everyrow \iftrue} -\def\tabu@everyrowfalse{\global\let\iftabu@everyrow \iffalse} -\newif \iftabu@long -\newif \iftabuscantokens -\def\tabu@rescan {\tabu@verbatim \scantokens } -%% Utilities (for internal usage) ----------------------------------- -\def\tabu@gobblespace #1 {#1} -\def\tabu@gobbletoken #1#2{#1} -\def\tabu@gobbleX{\futurelet\@let@token \tabu@gobblex} -\def\tabu@gobblex{\if ^^J\noexpand\@let@token \expandafter\@gobble - \else\ifx \@sptoken\@let@token - \expandafter\tabu@gobblespace\expandafter\tabu@gobbleX - \fi\fi -}% \tabu@gobblex -\def\tabu@X{^^J} -{\obeyspaces -\global\let\tabu@spxiii= % saves an active space (for \ifx) -\gdef\tabu@@spxiii{ }} -\def\tabu@ifenvir {% only for \multicolumn - \expandafter\tabu@if@nvir\csname\@currenvir\endcsname -}% \tabu@ifenvir -\def\tabu@if@nvir #1{\csname @\ifx\tabu#1first\else - \ifx\longtabu#1first\else - second\fi\fi oftwo\endcsname -}% \tabu@ifenvir -\def\tabu@modulo #1#2{\numexpr\ifnum\numexpr#1=\z@ 0\else #1-(#1-(#2-1)/2)/(#2)*(#2)\fi} -{\catcode`\&=3 -\gdef\tabu@strtrim #1{% #1 = control sequence to trim - \ifodd 1\ifx #1\@empty \else \ifx #1\space \else 0\fi \fi - \let\tabu@c@l@r \@empty \let#1\@empty - \else \expandafter \tabu@trimspaces #1\@nnil - \fi -}% \tabu@strtrim -\gdef\tabu@trimspaces #1\@nnil{\let\tabu@c@l@r=#2\tabu@firstspace .#1& }% -\gdef\tabu@firstspace #1#2#3 &{\tabu@lastspace #2#3&} -\gdef\tabu@lastspace #1{\def #3{#1}% - \ifx #3\tabu@c@l@r \def\tabu@c@l@r{\protect\color{#1}}\expandafter\remove@to@nnil \fi - \tabu@trimspaces #1\@nnil} -}% \catcode -\def\tabu@sanitizearg #1#2{{% - \csname \ifcsname if@safe@actives\endcsname % - @safe@activestrue\else - relax\fi \endcsname - \edef#2{#1}\tabu@strtrim#2\@onelevel@sanitize#2% - \expandafter}\expandafter\def\expandafter#2\expandafter{#2}% -}% \tabu@sanitizearg -\def\tabu@textbar #1{\begingroup \endlinechar\m@ne \scantokens{\def\:{|}}% - \expandafter\endgroup \expandafter#1\:% !!! semi simple group !!! -}% \tabu@textbar -\def\tabu@everyrow@bgroup{\iftabu@everyrow \begingroup \else \noalign{\ifnum0=`}\fi \fi} -\def\tabu@everyrow@egroup{% - \iftabu@everyrow \expandafter \endgroup \the\toks@ - \else \ifnum0=`{\fi}% - \fi -}% \tabu@everyrow@egroup -\def\tabu@arstrut {\global\setbox\@arstrutbox \hbox{\vrule - height \arraystretch \dimexpr\ht\strutbox+\extrarowheight - depth \arraystretch \dimexpr\dp\strutbox+\extrarowdepth - width \z@}% -}% \tabu@arstrut -\def\tabu@rearstrut {% - \@tempdima \arraystretch\dimexpr\ht\strutbox+\extrarowheight \relax - \@tempdimb \arraystretch\dimexpr\dp\strutbox+\extrarowdepth \relax - \ifodd 1\ifdim \ht\@arstrutbox=\@tempdima - \ifdim \dp\@arstrutbox=\@tempdimb 0 \fi\fi - \tabu@mkarstrut - \fi -}% \tabu@rearstrut -\def\tabu@@DBG #1{\ifdim\tabustrutrule>\z@ \color{#1}\fi} -\def\tabu@DBG@arstrut {\global\setbox\@arstrutbox - \hbox to\z@{\hbox to\z@{\hss - {\tabu@DBG{cyan}\vrule - height \arraystretch \dimexpr\ht\strutbox+\extrarowheight - depth \z@ - width \tabustrutrule}\kern-\tabustrutrule - {\tabu@DBG{pink}\vrule - height \z@ - depth \arraystretch \dimexpr\dp\strutbox+\extrarowdepth - width \tabustrutrule}}}% -}% \tabu@DBG@arstrut -\def\tabu@save@decl{\toks\count@ \expandafter{\the\toks\expandafter\count@ - \@nextchar}}% -\def\tabu@savedecl{\ifcat$\d@llarend\else - \let\save@decl \tabu@save@decl \fi % no inversion of tokens in text mode -}% \tabu@savedecl -\def\tabu@finalstrut #1{\unskip\ifhmode\nobreak\fi\vrule height\z@ depth\z@ width\z@} -\newcommand*\tabuDisableCommands {\g@addto@macro\tabu@trialh@@k } -\let\tabu@trialh@@k \@empty -\def\tabu@nowrite #1#{{\afterassignment}\toks@} -\let\tabu@write\write -\let\tabu@immediate\immediate -\def\tabu@WRITE{\begingroup - \def\immediate\write{\aftergroup\endgroup - \tabu@immediate\tabu@write}% -}% \tabu@WRITE -\expandafter\def\expandafter\tabu@GenericError\expandafter{% - \expandafter\tabu@WRITE\GenericError} -\def\tabu@warn{\tabu@WRITE\PackageWarning{tabu}} -\def\tabu@noxfootnote [#1]{\@gobble} -\def\tabu@nocolor #1#{\@gobble} -\newcommand*\tabu@norowcolor[2][]{} -\def\tabu@maybesiunitx #1{\def\tabu@temp{#1}% - \futurelet\@let@token \tabu@m@ybesiunitx} -\def\tabu@m@ybesiunitx #1{\def\tabu@m@ybesiunitx {% - \ifx #1\@let@token \let\tabu@cellleft \@empty \let\tabu@cellright \@empty \fi - \tabu@temp}% \tabu@m@ybesiunitx -}\expandafter\tabu@m@ybesiunitx \csname siunitx_table_collect_begin:Nn\endcsname -\def\tabu@celllalign@def #1{\def\tabu@celllalign{\tabu@maybesiunitx{#1}}}% -%% Fixed vertical spacing adjustment: \extrarowsep ------------------ -\newcommand*\extrarowsep{\edef\tabu@C@extra{\the\numexpr\tabu@C@extra+1}% - \iftabu@everyrow \aftergroup\tabu@Gextra - \else \aftergroup\tabu@n@Gextra - \fi - \@ifnextchar={\tabu@gobbletoken\tabu@extra} \tabu@extra -}% \extrarowsep -\def\tabu@extra {\@ifnextchar_% - {\tabu@gobbletoken{\tabu@setextra\extrarowheight \extrarowdepth}} - {\ifx ^\@let@token \def\tabu@temp{% - \tabu@gobbletoken{\tabu@setextra\extrarowdepth \extrarowheight}}% - \else \let\tabu@temp \@empty - \afterassignment \tabu@setextrasep \extrarowdepth - \fi \tabu@temp}% -}% \tabu@extra -\def\tabu@setextra #1#2{\def\tabu@temp{\tabu@extr@#1#2}\afterassignment\tabu@temp#2} -\def\tabu@extr@ #1#2{\@ifnextchar^% - {\tabu@gobbletoken{\tabu@setextra\extrarowdepth \extrarowheight}} - {\ifx _\@let@token \def\tabu@temp{% - \tabu@gobbletoken{\tabu@setextra\extrarowheight \extrarowdepth}}% - \else \let\tabu@temp \@empty - \tabu@Gsave \tabu@G@extra \tabu@C@extra \extrarowheight \extrarowdepth - \fi \tabu@temp}% -}% \tabu@extr@ -\def\tabu@setextrasep {\extrarowheight=\extrarowdepth - \tabu@Gsave \tabu@G@extra \tabu@C@extra \extrarowheight \extrarowdepth -}% \tabu@setextrasep -\def\tabu@Gextra{\ifx \tabu@G@extra\@empty \else {\tabu@Rextra}\fi} -\def\tabu@n@Gextra{\ifx \tabu@G@extra\@empty \else \noalign{\tabu@Rextra}\fi} -\def\tabu@Rextra{\tabu@Grestore \tabu@G@extra \tabu@C@extra} -\let\tabu@C@extra \z@ -\let\tabu@G@extra \@empty -%% Dynamic vertical spacing adjustment: \tabulinesep ---------------- -\newcommand*\tabulinesep{\edef\tabu@C@linesep{\the\numexpr\tabu@C@linesep+1}% - \iftabu@everyrow \aftergroup\tabu@Glinesep - \else \aftergroup\tabu@n@Glinesep - \fi - \@ifnextchar={\tabu@gobbletoken\tabu@linesep} \tabu@linesep -}% \tabulinesep -\def\tabu@linesep {\@ifnextchar_% - {\tabu@gobbletoken{\tabu@setsep\abovetabulinesep \belowtabulinesep}} - {\ifx ^\@let@token \def\tabu@temp{% - \tabu@gobbletoken{\tabu@setsep\belowtabulinesep \abovetabulinesep}}% - \else \let\tabu@temp \@empty - \afterassignment \tabu@setlinesep \abovetabulinesep - \fi \tabu@temp}% -}% \tabu@linesep -\def\tabu@setsep #1#2{\def\tabu@temp{\tabu@sets@p#1#2}\afterassignment\tabu@temp#2} -\def\tabu@sets@p #1#2{\@ifnextchar^% - {\tabu@gobbletoken{\tabu@setsep\belowtabulinesep \abovetabulinesep}} - {\ifx _\@let@token \def\tabu@temp{% - \tabu@gobbletoken{\tabu@setsep\abovetabulinesep \belowtabulinesep}}% - \else \let\tabu@temp \@empty - \tabu@Gsave \tabu@G@linesep \tabu@C@linesep \abovetabulinesep \belowtabulinesep - \fi \tabu@temp}% -}% \tabu@sets@p -\def\tabu@setlinesep {\belowtabulinesep=\abovetabulinesep - \tabu@Gsave \tabu@G@linesep \tabu@C@linesep \abovetabulinesep \belowtabulinesep -}% \tabu@setlinesep -\def\tabu@Glinesep{\ifx \tabu@G@linesep\@empty \else {\tabu@Rlinesep}\fi} -\def\tabu@n@Glinesep{\ifx \tabu@G@linesep\@empty \else \noalign{\tabu@Rlinesep}\fi} -\def\tabu@Rlinesep{\tabu@Grestore \tabu@G@linesep \tabu@C@linesep} -\let\tabu@C@linesep \z@ -\let\tabu@G@linesep \@empty -%% \global\extrarowsep and \global\tabulinesep ------------------- -\def\tabu@Gsave #1#2#3#4{\xdef#1{#1% - \toks#2{\toks\the\currentgrouplevel{\global#3\the#3\global#4\the#4}}}% -}% \tabu@Gsave -\def\tabu@Grestore#1#2{% - \toks#2{}#1\toks\currentgrouplevel\expandafter{\expandafter}\the\toks#2\relax - \ifcat$\the\toks\currentgrouplevel$\else - \global\let#1\@empty \global\let#2\z@ - \the\toks\currentgrouplevel - \fi -}% \tabu@Grestore -%% Setting code for every row --------------------------------------- -\newcommand*\everyrow{\tabu@everyrow@bgroup - \tabu@start \z@ \tabu@stop \z@ \tabu@evrstartstop -}% \everyrow -\def\tabu@evrstartstop {\@ifnextchar^% - {\afterassignment \tabu@evrstartstop \tabu@stop=}% - {\ifx ^\@let@token - \afterassignment\tabu@evrstartstop \tabu@start=% - \else \afterassignment\tabu@everyr@w \toks@ - \fi}% -}% \tabu@evrstartstop -\def\tabu@everyr@w {% - \xdef\tabu@everyrow{% - \noexpand\tabu@everyrowfalse - \let\noalign \relax - \noexpand\tabu@rowfontreset - \iftabu@colortbl \noexpand\tabu@rc@ \fi % \taburowcolors - \let\noexpand\tabu@docline \noexpand\tabu@docline@evr - \the\toks@ - \noexpand\tabu@evrh@@k - \noexpand\tabu@rearstrut - \global\advance\c@taburow \@ne}% - \iftabu@everyrow \toks@\expandafter - {\expandafter\def\expandafter\tabu@evr@L\expandafter{\the\toks@}\ignorespaces}% - \else \xdef\tabu@evr@G{\the\toks@}% - \fi - \tabu@everyrow@egroup -}% \tabu@everyr@w -\def\tabu@evr {\def\tabu@evrh@@k} % for internal use only -\tabu@evr{} -%% line style and leaders ------------------------------------------- -\newcommand*\newtabulinestyle [1]{% - {\@for \@tempa :=#1\do{\expandafter\tabu@newlinestyle \@tempa==\@nil}}% -}% \newtabulinestyle -\def\tabu@newlinestyle #1=#2=#3\@nil{\tabu@getline {#2}% - \tabu@sanitizearg {#1}\@tempa - \ifodd 1\ifx \@tempa\@empty \ifdefined\tabu@linestyle@ 0 \fi\fi - \global\expandafter\let - \csname tabu@linestyle@\@tempa \endcsname =\tabu@thestyle \fi -}% \tabu@newlinestyle -\newcommand*\tabulinestyle [1]{\tabu@everyrow@bgroup \tabu@getline{#1}% - \iftabu@everyrow - \toks@\expandafter{\expandafter \def \expandafter - \tabu@ls@L\expandafter{\tabu@thestyle}\ignorespaces}% - \gdef\tabu@ls@{\tabu@ls@L}% - \else - \global\let\tabu@ls@G \tabu@thestyle - \gdef\tabu@ls@{\tabu@ls@G}% - \fi - \tabu@everyrow@egroup -}% \tabulinestyle -\newcommand*\taburulecolor{\tabu@everyrow@bgroup \tabu@textbar \tabu@rulecolor} -\def\tabu@rulecolor #1{\toks@{}% - \def\tabu@temp #1##1#1{\tabu@ruledrsc{##1}}\@ifnextchar #1% - \tabu@temp - \tabu@rulearc -}% \tabu@rulecolor -\def\tabu@ruledrsc #1{\edef\tabu@temp{#1}\tabu@strtrim\tabu@temp - \ifx \tabu@temp\@empty \def\tabu@temp{\tabu@rule@drsc@ {}{}}% - \else \edef\tabu@temp{\noexpand\tabu@rule@drsc@ {}{\tabu@temp}}% - \fi - \tabu@temp -}% \tabu@ruledrsc@ -\def\tabu@ruledrsc@ #1#{\tabu@rule@drsc@ {#1}} -\def\tabu@rule@drsc@ #1#2{% - \iftabu@everyrow - \ifx \\#1#2\\\toks@{\let\CT@drsc@ \relax}% - \else \toks@{\def\CT@drsc@{\color #1{#2}}}% - \fi - \else - \ifx \\#1#2\\\global\let\CT@drsc@ \relax - \else \gdef\CT@drsc@{\color #1{#2}}% - \fi - \fi - \tabu@rulearc -}% \tabu@rule@drsc@ -\def\tabu@rulearc #1#{\tabu@rule@arc@ {#1}} -\def\tabu@rule@arc@ #1#2{% - \iftabu@everyrow - \ifx \\#1#2\\\toks@\expandafter{\the\toks@ \def\CT@arc@{}}% - \else \toks@\expandafter{\the\toks@ \def\CT@arc@{\color #1{#2}}}% - \fi - \toks@\expandafter{\the\toks@ - \let\tabu@arc@L \CT@arc@ - \let\tabu@drsc@L \CT@drsc@ - \ignorespaces}% - \else - \ifx \\#1#2\\\gdef\CT@arc@{}% - \else \gdef\CT@arc@{\color #1{#2}}% - \fi - \global\let\tabu@arc@G \CT@arc@ - \global\let\tabu@drsc@G \CT@drsc@ - \fi - \tabu@everyrow@egroup -}% \tabu@rule@arc@ -\def\taburowcolors {\tabu@everyrow@bgroup \@testopt \tabu@rowcolors 1} -\def\tabu@rowcolors [#1]#2#{\tabu@rowc@lors{#1}{#2}} -\def\tabu@rowc@lors #1#2#3{% - \toks@{}\@defaultunits \count@ =\number0#2\relax \@nnil - \@defaultunits \tabu@start =\number0#1\relax \@nnil - \ifnum \count@<\tw@ \count@=\tw@ \fi - \advance\tabu@start \m@ne - \ifnum \tabu@start<\z@ \tabu@start \z@ \fi - \tabu@rowcolorseries #3\in@..\in@ \@nnil -}% \tabu@rowcolors -\def\tabu@rowcolorseries #1..#2\in@ #3\@nnil {% - \ifx \in@#1\relax - \iftabu@everyrow \toks@{\def\tabu@rc@{}\let\tabu@rc@L \tabu@rc@}% - \else \gdef\tabu@rc@{}\global\let\tabu@rc@G \tabu@rc@ - \fi - \else - \ifx \\#2\\\tabu@rowcolorserieserror \fi - \tabu@sanitizearg{#1}\tabu@temp - \tabu@sanitizearg{#2}\@tempa - \advance\count@ \m@ne - \iftabu@everyrow - \def\tabu@rc@ ##1##2##3##4{\def\tabu@rc@{% - \ifnum ##2=\c@taburow - \definecolorseries{tabu@rcseries@\the\tabu@nested}{rgb}{last}{##3}{##4}\fi - \ifnum \c@taburow<##2 \else - \ifnum \tabu@modulo {\c@taburow-##2}{##1+1}=\z@ - \resetcolorseries[{##1}]{tabu@rcseries@\the\tabu@nested}\fi - \xglobal\colorlet{tabu@rc@\the\tabu@nested}{tabu@rcseries@\the\tabu@nested!!+}% - \rowcolor{tabu@rc@\the\tabu@nested}\fi}% - }\edef\x{\noexpand\tabu@rc@ {\the\count@} - {\the\tabu@start} - {\tabu@temp} - {\@tempa}% - }\x - \toks@\expandafter{\expandafter\def\expandafter\tabu@rc@\expandafter{\tabu@rc@}}% - \toks@\expandafter{\the\toks@ \let\tabu@rc@L \tabu@rc@ \ignorespaces}% - \else % inside \noalign - \definecolorseries{tabu@rcseries@\the\tabu@nested}{rgb}{last}{\tabu@temp}{\@tempa}% - \expandafter\resetcolorseries\expandafter[\the\count@]{tabu@rcseries@\the\tabu@nested}% - \xglobal\colorlet{tabu@rc@\the\tabu@nested}{tabu@rcseries@\the\tabu@nested!!+}% - \let\noalign \relax \rowcolor{tabu@rc@\the\tabu@nested}% - \def\tabu@rc@ ##1##2{\gdef\tabu@rc@{% - \ifnum \tabu@modulo {\c@taburow-##2}{##1+1}=\@ne - \resetcolorseries[{##1}]{tabu@rcseries@\the\tabu@nested}\fi - \xglobal\colorlet{tabu@rc@\the\tabu@nested}{tabu@rcseries@\the\tabu@nested!!+}% - \rowcolor{tabu@rc@\the\tabu@nested}}% - }\edef\x{\noexpand\tabu@rc@{\the\count@}{\the\c@taburow}}\x - \global\let\tabu@rc@G \tabu@rc@ - \fi - \fi - \tabu@everyrow@egroup -}% \tabu@rowcolorseries -\tabuDisableCommands {\let\tabu@rc@ \@empty } -\def\tabu@rowcolorserieserror {\PackageError{tabu} - {Invalid syntax for \string\taburowcolors - \MessageBreak Please look at the documentation!}\@ehd -}% \tabu@rowcolorserieserror -\newcommand*\tabureset {% - \tabulinesep=\z@ \extrarowsep=\z@ \extratabsurround=\z@ - \tabulinestyle{}\everyrow{}\taburulecolor||{}\taburowcolors{}% -}% \tabureset -%% Parsing the line styles ------------------------------------------ -\def\tabu@getline #1{\begingroup - \csname \ifcsname if@safe@actives\endcsname % - @safe@activestrue\else - relax\fi \endcsname - \edef\tabu@temp{#1}\tabu@sanitizearg{#1}\@tempa - \let\tabu@thestyle \relax - \ifcsname tabu@linestyle@\@tempa \endcsname - \edef\tabu@thestyle{\endgroup - \def\tabu@thestyle{\expandafter\noexpand - \csname tabu@linestyle@\@tempa\endcsname}% - }\tabu@thestyle - \else \expandafter\tabu@definestyle \tabu@temp \@nil - \fi -}% \tabu@getline -\def\tabu@definestyle #1#2\@nil {\endlinechar \m@ne \makeatletter - \tabu@thick \maxdimen \tabu@on \maxdimen \tabu@off \maxdimen - \let\tabu@c@lon \@undefined \let\tabu@c@loff \@undefined - \ifodd 1\ifcat .#1\else\ifcat\relax #1\else 0\fi\fi % catcode 12 or non expandable cs - \def\tabu@temp{\tabu@getparam{thick}}% - \else \def\tabu@temp{\tabu@getparam{thick}\maxdimen}% - \fi - {% - \let\tabu@ \relax - \def\:{\obeyspaces \tabu@oXIII \tabu@commaXIII \edef\:}% (space active \: happy ;-)) - \scantokens{\:{\tabu@temp #1#2 \tabu@\tabu@}}% - \expandafter}\expandafter - \def\expandafter\:\expandafter{\:}% line spec rewritten now ;-) - \def\;{\def\:}% - \scantokens\expandafter{\expandafter\;\expandafter{\:}}% space is now inactive (catcode 10) - \let\tabu@ \tabu@getcolor \:% all arguments are ready now ;-) - \ifdefined\tabu@c@lon \else \let\tabu@c@lon\@empty \fi - \ifx \tabu@c@lon\@empty \def\tabu@c@lon{\CT@arc@}\fi - \ifdefined\tabu@c@loff \else \let\tabu@c@loff \@empty \fi - \ifdim \tabu@on=\maxdimen \ifdim \tabu@off<\maxdimen - \tabu@on \tabulineon \fi\fi - \ifdim \tabu@off=\maxdimen \ifdim \tabu@on<\maxdimen - \tabu@off \tabulineoff \fi\fi - \ifodd 1\ifdim \tabu@off=\maxdimen \ifdim \tabu@on=\maxdimen 0 \fi\fi - \in@true % - \else \in@false % - \fi - \ifdim\tabu@thick=\maxdimen \def\tabu@thick{\arrayrulewidth}% - \else \edef\tabu@thick{\the\tabu@thick}% - \fi - \edef \tabu@thestyle ##1##2{\endgroup - \def\tabu@thestyle{% - \ifin@ \noexpand\tabu@leadersstyle {\tabu@thick} - {\the\tabu@on}{##1} - {\the\tabu@off}{##2}% - \else \noexpand\tabu@rulesstyle - {##1\vrule width \tabu@thick}% - {##1\leaders \hrule height \tabu@thick \hfil}% - \fi}% - }\expandafter \expandafter - \expandafter \tabu@thestyle \expandafter - \expandafter \expandafter - {\expandafter\tabu@c@lon\expandafter}\expandafter{\tabu@c@loff}% -}% \tabu@definestyle -{\catcode`\O=\active \lccode`\O=`\o \catcode`\,=\active - \lowercase{\gdef\tabu@oXIII {\catcode`\o=\active \let O=\tabu@oxiii}} - \gdef\tabu@commaXIII {\catcode`\,=\active \let ,=\space} -}% \catcode -\def\tabu@oxiii #1{% - \ifcase \ifx n#1\z@ \else - \ifx f#1\@ne\else - \tw@ \fi\fi - \expandafter\tabu@onxiii - \or \expandafter\tabu@ofxiii - \else o% - \fi#1}% -\def\tabu@onxiii #1#2{% - \ifcase \ifx !#2\tw@ \else - \ifcat.\noexpand#2\z@ \else - \ifx \tabu@spxiii#2\@ne\else - \tw@ \fi\fi\fi - \tabu@getparam{on}#2\expandafter\@gobble - \or \expandafter\tabu@onxiii % (space is active) - \else o\expandafter\@firstofone - \fi{#1#2}}% -\def\tabu@ofxiii #1#2{% - \ifx #2f\expandafter\tabu@offxiii - \else o\expandafter\@firstofone - \fi{#1#2}} -\def\tabu@offxiii #1#2{% - \ifcase \ifx !#2\tw@ \else - \ifcat.\noexpand#2\z@ \else - \ifx\tabu@spxiii#2\@ne \else - \tw@ \fi\fi\fi - \tabu@getparam{off}#2\expandafter\@gobble - \or \expandafter\tabu@offxiii % (space is active) - \else o\expandafter\@firstofone - \fi{#1#2}} -\def\tabu@getparam #1{\tabu@ \csname tabu@#1\endcsname=} -\def\tabu@getcolor #1{% \tabu@ <- \tabu@getcolor after \edef - \ifx \tabu@#1\else % no more spec - \let\tabu@theparam=#1\afterassignment \tabu@getc@l@r #1\fi -}% \tabu@getcolor -\def\tabu@getc@l@r #1\tabu@ {% - \def\tabu@temp{#1}\tabu@strtrim \tabu@temp - \ifx \tabu@temp\@empty - \else%\ifcsname \string\color@\tabu@temp \endcsname % if the color exists - \ifx \tabu@theparam \tabu@off \let\tabu@c@loff \tabu@c@l@r - \else \let\tabu@c@lon \tabu@c@l@r - \fi - %\else \tabu@warncolour{\tabu@temp}% - \fi%\fi - \tabu@ % next spec -}% \tabu@getc@l@r -\def\tabu@warncolour #1{\PackageWarning{tabu} - {Color #1 is not defined. Default color used}% -}% \tabu@warncolour -\def\tabu@leadersstyle #1#2#3#4#5{\def\tabu@leaders{{#1}{#2}{#3}{#4}{#5}}% - \ifx \tabu@leaders\tabu@leaders@G \else - \tabu@LEADERS{#1}{#2}{#3}{#4}{#5}\fi -}% \tabu@leadersstyle -\def\tabu@rulesstyle #1#2{\let\tabu@leaders \@undefined - \gdef\tabu@thevrule{#1}\gdef\tabu@thehrule{#2}% -}% \tabu@rulesstyle -%% The leaders boxes ------------------------------------------------ -\def\tabu@LEADERS #1#2#3#4#5{%% width, dash, dash color, gap, gap color - {\let\color \tabu@color % => during trials -> \color = \tabu@nocolor - {% % but the leaders boxes should have colors ! - \def\@therule{\vrule}\def\@thick{height}\def\@length{width}% - \def\@box{\hbox}\def\@unbox{\unhbox}\def\@elt{\wd}% - \def\@skip{\hskip}\def\@ss{\hss}\def\tabu@leads{\tabu@hleads}% - \tabu@l@@d@rs {#1}{#2}{#3}{#4}{#5}% - \global\let\tabu@thehleaders \tabu@theleaders - }% - {% - \def\@therule{\hrule}\def\@thick{width}\def\@length{height}% - \def\@box{\vbox}\def\@unbox{\unvbox}\def\@elt{\ht}% - \def\@skip{\vskip}\def\@ss{\vss}\def\tabu@leads{\tabu@vleads}% - \tabu@l@@d@rs {#1}{#2}{#3}{#4}{#5}% - \global\let\tabu@thevleaders \tabu@theleaders - }% - \gdef\tabu@leaders@G{{#1}{#2}{#3}{#4}{#5}}% - }% -}% \tabu@LEADERS -\def\tabu@therule #1#2{\@therule \@thick#1\@length\dimexpr#2/2 \@depth\z@} -\def\tabu@l@@d@rs #1#2#3#4#5{%% width, dash, dash color, gap, gap color - \global\setbox \tabu@leads=\@box{% - {#3\tabu@therule{#1}{#2}}% - \ifx\\#5\\\@skip#4\else{#5\tabu@therule{#1}{#4*2}}\fi - {#3\tabu@therule{#1}{#2}}}% - \global\setbox\tabu@leads=\@box to\@elt\tabu@leads{\@ss - {#3\tabu@therule{#1}{#2}}\@unbox\tabu@leads}% - \edef\tabu@theleaders ##1{\def\noexpand\tabu@theleaders {% - {##1\tabu@therule{#1}{#2}}% - \xleaders \copy\tabu@leads \@ss - \tabu@therule{0pt}{-#2}{##1\tabu@therule{#1}{#2}}}% - }\tabu@theleaders{#3}% -}% \tabu@l@@d@rs -%% \tabu \endtabu \tabu* \longtabu \endlongtabu \longtabu* ---------- -\newcommand*\tabu {\tabu@longfalse - \ifmmode \def\tabu@ {\array}\def\endtabu {\endarray}% - \else \def\tabu@ {\tabu@tabular}\def\endtabu {\endtabular}\fi - \expandafter\let\csname tabu*\endcsname \tabu - \expandafter\def\csname endtabu*\endcsname{\endtabu}% - \tabu@spreadfalse \tabu@negcoeffalse \tabu@settarget -}% {tabu} -\let\tabu@tabular \tabular % -\expandafter\def\csname tabu*\endcsname{\tabuscantokenstrue \tabu} -\newcommand*\longtabu {\tabu@longtrue - \ifmmode\PackageError{tabu}{longtabu not allowed in math mode}\fi - \def\tabu@{\longtable}\def\endlongtabu{\endlongtable}% - \LTchunksize=\@M - \expandafter\let\csname tabu*\endcsname \tabu - \expandafter\def\csname endlongtabu*\endcsname{\endlongtabu}% - \let\LT@startpbox \tabu@LT@startpbox % \everypar{ array struts } - \tabu@spreadfalse \tabu@negcoeffalse \tabu@settarget -}% {longtabu} -\expandafter\def\csname longtabu*\endcsname{\tabuscantokenstrue \longtabu} -\def\tabu@nolongtabu{\PackageError{tabu} - {longtabu requires the longtable package}\@ehd} -%% Read the target and then : \tabular or \@array ------------------ -\def\tabu@settarget {\futurelet\@let@token \tabu@sett@rget } -\def\tabu@sett@rget {\tabu@target \z@ - \ifcase \ifx \bgroup\@let@token \z@ \else - \ifx \@sptoken\@let@token \@ne \else - \if t\@let@token \tw@ \else - \if s\@let@token \thr@@\else - \z@\fi\fi\fi\fi - \expandafter\tabu@begin - \or \expandafter\tabu@gobblespace\expandafter\tabu@settarget - \or \expandafter\tabu@to - \or \expandafter\tabu@spread - \fi -}% \tabu@sett@rget -\def\tabu@to to{\def\tabu@halignto{to}\tabu@gettarget} -\def\tabu@spread spread{\tabu@spreadtrue\def\tabu@halignto{spread}\tabu@gettarget} -\def\tabu@gettarget {\afterassignment\tabu@linegoaltarget \tabu@target } -\def\tabu@linegoaltarget {\futurelet\tabu@temp \tabu@linegoalt@rget } -\def\tabu@linegoalt@rget {% - \ifx \tabu@temp\LNGL@setlinegoal - \LNGL@setlinegoal \expandafter \@firstoftwo \fi % @gobbles \LNGL@setlinegoal - \tabu@begin -}% \tabu@linegoalt@rget -\def\tabu@begin #1#{% - \iftabu@measuring \expandafter\tabu@nestedmeasure \fi - \ifdim \tabu@target=\z@ \let\tabu@halignto \@empty - \else \edef\tabu@halignto{\tabu@halignto\the\tabu@target}% - \fi - \@testopt \tabu@tabu@ \tabu@aligndefault #1\@nil -}% \tabu@begin -\long\def\tabu@tabu@ [#1]#2\@nil #3{\tabu@setup - \def\tabu@align {#1}\def\tabu@savedpream{\NC@find #3}% - \tabu@ [\tabu@align ]#2{#3\tabu@rewritefirst }% -}% \tabu@tabu@ -\def\tabu@nestedmeasure {% - \ifodd 1\iftabu@spread \else \ifdim\tabu@target=\z@ \else 0 \fi\fi\relax - \tabu@spreadtrue - \else \begingroup \iffalse{\fi \ifnum0=`}\fi - \toks@{}\def\tabu@stack{b}% - \expandafter\tabu@collectbody\expandafter\tabu@quickrule - \expandafter\endgroup - \fi -}% \tabu@nestedmeasure -\def\tabu@quickrule {\indent\vrule height\z@ depth\z@ width\tabu@target} -%% \tabu@setup \tabu@init \tabu@indent -\def\tabu@setup{\tabu@alloc@ - \ifcase \tabu@nested - \ifmmode \else \iftabu@spread\else \ifdim\tabu@target=\z@ - \let\tabu@afterendpar \par - \fi\fi\fi - \def\tabu@aligndefault{c}\tabu@init \tabu@indent - \else % - \def\tabu@aligndefault{t}\let\tabudefaulttarget \linewidth - \fi - \let\tabu@thetarget \tabudefaulttarget \let\tabu@restored \@undefined - \edef\tabu@NC@list{\the\NC@list}\NC@list{\NC@do \tabu@rewritefirst}% - \everycr{}\let\@startpbox \tabu@startpbox % for nested tabu inside longtabu... - \let\@endpbox \tabu@endpbox % idem " " " " " " - \let\@tabarray \tabu@tabarray % idem " " " " " " - \tabu@setcleanup \tabu@setreset -}% \tabu@setup -\def\tabu@init{\tabu@starttimer \tabu@measuringfalse - \edef\tabu@hfuzz {\the\dimexpr\hfuzz+1sp}\global\tabu@footnotes{}% - \let\firsthline \tabu@firsthline \let\lasthline \tabu@lasthline - \let\firstline \tabu@firstline \let\lastline \tabu@lastline - \let\hline \tabu@hline \let\@xhline \tabu@xhline - \let\color \tabu@color \let\@arstrutbox \tabu@arstrutbox - \iftabu@colortbl\else\let\LT@@hline \tabu@LT@@hline \fi - \tabu@trivlist % - \let\@footnotetext \tabu@footnotetext \let\@xfootnotetext \tabu@xfootnotetext - \let\@xfootnote \tabu@xfootnote \let\centering \tabu@centering - \let\raggedright \tabu@raggedright \let\raggedleft \tabu@raggedleft - \let\tabudecimal \tabu@tabudecimal \let\Centering \tabu@Centering - \let\RaggedRight \tabu@RaggedRight \let\RaggedLeft \tabu@RaggedLeft - \let\justifying \tabu@justifying \let\rowfont \tabu@rowfont - \let\fbox \tabu@fbox \let\color@b@x \tabu@color@b@x - \let\tabu@@everycr \everycr \let\tabu@@everypar \everypar - \let\tabu@prepnext@tokORI \prepnext@tok\let\prepnext@tok \tabu@prepnext@tok - \let\tabu@multicolumnORI\multicolumn \let\multicolumn \tabu@multicolumn - \let\tabu@startpbox \@startpbox % for nested tabu inside longtabu pfff !!! - \let\tabu@endpbox \@endpbox % idem " " " " " " " - \let\tabu@tabarray \@tabarray % idem " " " " " " " - \tabu@adl@fix \let\endarray \tabu@endarray % colortbl & arydshln (delarray) - \iftabu@colortbl\CT@everycr\expandafter{\expandafter\iftabu@everyrow \the\CT@everycr \fi}\fi -}% \tabu@init -\def\tabu@indent{% correction for indentation - \ifdim \parindent>\z@\ifx \linewidth\tabudefaulttarget - \everypar\expandafter{% - \the\everypar\everypar\expandafter{\the\everypar}% - \setbox\z@=\lastbox - \ifdim\wd\z@>\z@ \edef\tabu@thetarget - {\the\dimexpr -\wd\z@+\tabudefaulttarget}\fi - \box\z@}% - \fi\fi -}% \tabu@indent -\def\tabu@setcleanup {% saves last global assignments - \ifodd 1\ifmmode \else \iftabu@long \else 0\fi\fi\relax - \def\tabu@aftergroupcleanup{% - \def\tabu@aftergroupcleanup{\aftergroup\tabu@cleanup}}% - \else - \def\tabu@aftergroupcleanup{% - \aftergroup\aftergroup\aftergroup\tabu@cleanup - \let\tabu@aftergroupcleanup \relax}% - \fi - \let\tabu@arc@Gsave \tabu@arc@G - \let\tabu@arc@G \tabu@arc@L % - \let\tabu@drsc@Gsave \tabu@drsc@G - \let\tabu@drsc@G \tabu@drsc@L % - \let\tabu@ls@Gsave \tabu@ls@G - \let\tabu@ls@G \tabu@ls@L % - \let\tabu@rc@Gsave \tabu@rc@G - \let\tabu@rc@G \tabu@rc@L % - \let\tabu@evr@Gsave \tabu@evr@G - \let\tabu@evr@G \tabu@evr@L % - \let\tabu@celllalign@save \tabu@celllalign - \let\tabu@cellralign@save \tabu@cellralign - \let\tabu@cellleft@save \tabu@cellleft - \let\tabu@cellright@save \tabu@cellright - \let\tabu@@celllalign@save \tabu@@celllalign - \let\tabu@@cellralign@save \tabu@@cellralign - \let\tabu@@cellleft@save \tabu@@cellleft - \let\tabu@@cellright@save \tabu@@cellright - \let\tabu@rowfontreset@save \tabu@rowfontreset - \let\tabu@@rowfontreset@save\tabu@@rowfontreset - \let\tabu@rowfontreset \@empty - \edef\tabu@alloc@save {\the\tabu@alloc}% restore at \tabu@reset - \edef\c@taburow@save {\the\c@taburow}% - \edef\tabu@naturalX@save {\the\tabu@naturalX}% - \let\tabu@naturalXmin@save \tabu@naturalXmin - \let\tabu@naturalXmax@save \tabu@naturalXmax - \let\tabu@mkarstrut@save \tabu@mkarstrut - \edef\tabu@clarstrut{% - \extrarowheight \the\dimexpr \ht\@arstrutbox-\ht\strutbox \relax - \extrarowdepth \the\dimexpr \dp\@arstrutbox-\dp\strutbox \relax - \let\noexpand\@arraystretch \@ne \noexpand\tabu@rearstrut}% -}% \tabu@setcleanup -\def\tabu@cleanup {\begingroup - \globaldefs\@ne \tabu@everyrowtrue - \let\tabu@arc@G \tabu@arc@Gsave - \let\CT@arc@ \tabu@arc@G - \let\tabu@drsc@G \tabu@drsc@Gsave - \let\CT@drsc@ \tabu@drsc@G - \let\tabu@ls@G \tabu@ls@Gsave - \let\tabu@ls@ \tabu@ls@G - \let\tabu@rc@G \tabu@rc@Gsave - \let\tabu@rc@ \tabu@rc@G - \let\CT@do@color \relax - \let\tabu@evr@G \tabu@evr@Gsave - \let\tabu@celllalign \tabu@celllalign@save - \let\tabu@cellralign \tabu@cellralign@save - \let\tabu@cellleft \tabu@cellleft@save - \let\tabu@cellright \tabu@cellright@save - \let\tabu@@celllalign \tabu@@celllalign@save - \let\tabu@@cellralign \tabu@@cellralign@save - \let\tabu@@cellleft \tabu@@cellleft@save - \let\tabu@@cellright \tabu@@cellright@save - \let\tabu@rowfontreset \tabu@rowfontreset@save - \let\tabu@@rowfontreset \tabu@@rowfontreset@save - \tabu@naturalX =\tabu@naturalX@save - \let\tabu@naturalXmax \tabu@naturalXmax@save - \let\tabu@naturalXmin \tabu@naturalXmin@save - \let\tabu@mkarstrut \tabu@mkarstrut@save - \c@taburow =\c@taburow@save - \ifcase \tabu@nested \tabu@alloc \m@ne\fi - \endgroup % - \ifcase \tabu@nested - \the\tabu@footnotes \global\tabu@footnotes{}% - \tabu@afterendpar \tabu@elapsedtime - \fi - \tabu@clarstrut - \everyrow\expandafter {\tabu@evr@G}% -}% \tabu@cleanup -\let\tabu@afterendpar \relax -\def\tabu@setreset {% - \edef\tabu@savedparams {% \relax for \tabu@message@save - \ifmmode \col@sep \the\arraycolsep - \else \col@sep \the\tabcolsep \fi \relax - \arrayrulewidth \the\arrayrulewidth \relax - \doublerulesep \the\doublerulesep \relax - \extratabsurround \the\extratabsurround \relax - \extrarowheight \the\extrarowheight \relax - \extrarowdepth \the\extrarowdepth \relax - \abovetabulinesep \the\abovetabulinesep \relax - \belowtabulinesep \the\belowtabulinesep \relax - \def\noexpand\arraystretch{\arraystretch}% - \ifdefined\minrowclearance \minrowclearance\the\minrowclearance\relax\fi}% - \begingroup - \@temptokena\expandafter{\tabu@savedparams}% => only for \savetabu / \usetabu - \ifx \tabu@arc@L\relax \else \tabu@setsave \tabu@arc@L \fi - \ifx \tabu@drsc@L\relax \else \tabu@setsave \tabu@drsc@L \fi - \tabu@setsave \tabu@ls@L \tabu@setsave \tabu@evr@L - \expandafter \endgroup \expandafter - \def\expandafter\tabu@saved@ \expandafter{\the\@temptokena - \let\tabu@arc@G \tabu@arc@L - \let\tabu@drsc@G \tabu@drsc@L - \let\tabu@ls@G \tabu@ls@L - \let\tabu@rc@G \tabu@rc@L - \let\tabu@evr@G \tabu@evr@L}% - \def\tabu@reset{\tabu@savedparams - \tabu@everyrowtrue \c@taburow \z@ - \let\CT@arc@ \tabu@arc@L - \let\CT@drsc@ \tabu@drsc@L - \let\tabu@ls@ \tabu@ls@L - \let\tabu@rc@ \tabu@rc@L - \global\tabu@alloc \tabu@alloc@save - \everyrow\expandafter{\tabu@evr@L}}% -}% \tabu@reset -\def\tabu@setsave #1{\expandafter\tabu@sets@ve #1\@nil{#1}} -\long\def\tabu@sets@ve #1\@nil #2{\@temptokena\expandafter{\the\@temptokena \def#2{#1}}} -%% The Rewriting Process ------------------------------------------- -\def\tabu@newcolumntype #1{% - \expandafter\tabu@new@columntype - \csname NC@find@\string#1\expandafter\endcsname - \csname NC@rewrite@\string#1\endcsname - {#1}% -}% \tabu@newcolumntype -\def\tabu@new@columntype #1#2#3{% - \def#1##1#3{\NC@{##1}}% - \let#2\relax \newcommand*#2% -}% \tabu@new@columntype -\def\tabu@privatecolumntype #1{% - \expandafter\tabu@private@columntype - \csname NC@find@\string#1\expandafter\endcsname - \csname NC@rewrite@\string#1\expandafter\endcsname - \csname tabu@NC@find@\string#1\expandafter\endcsname - \csname tabu@NC@rewrite@\string#1\endcsname - {#1}% -}% \tabu@privatecolumntype -\def\tabu@private@columntype#1#2#3#4{% - \g@addto@macro\tabu@privatecolumns{\let#1#3\let#2#4}% - \tabu@new@columntype#3#4% -}% \tabu@private@columntype -\let\tabu@privatecolumns \@empty -\newcommand*\tabucolumn [1]{\expandafter \def \expandafter - \tabu@highprioritycolumns\expandafter{\tabu@highprioritycolumns - \NC@do #1}}% -\let\tabu@highprioritycolumns \@empty -%% The | ``column'' : rewriting process -------------------------- -\tabu@privatecolumntype |{\tabu@rewritevline} -\newcommand*\tabu@rewritevline[1][]{\tabu@vlinearg{#1}% - \expandafter \NC@find \tabu@rewritten} -\def\tabu@lines #1{% - \ifx|#1\else \tabu@privatecolumntype #1{\tabu@rewritevline}\fi - \NC@list\expandafter{\the\NC@list \NC@do #1}% -}% \tabu@lines@ -\def\tabu@vlinearg #1{% - \ifx\\#1\\\def\tabu@thestyle {\tabu@ls@}% - \else\tabu@getline {#1}% - \fi - \def\tabu@rewritten ##1{\def\tabu@rewritten{!{##1\tabu@thevline}}% - }\expandafter\tabu@rewritten\expandafter{\tabu@thestyle}% - \expandafter \tabu@keepls \tabu@thestyle \@nil -}% \tabu@vlinearg -\def\tabu@keepls #1\@nil{% - \ifcat $\@cdr #1\@nil $% - \ifx \relax#1\else - \ifx \tabu@ls@#1\else - \let#1\relax - \xdef\tabu@mkpreambuffer{\tabu@mkpreambuffer - \tabu@savels\noexpand#1}\fi\fi\fi -}% \tabu@keepls -\def\tabu@thevline {\begingroup - \ifdefined\tabu@leaders - \setbox\@tempboxa=\vtop to\dimexpr - \ht\@arstrutbox+\dp\@arstrutbox{{\tabu@thevleaders}}% - \ht\@tempboxa=\ht\@arstrutbox \dp\@tempboxa=\dp\@arstrutbox - \box\@tempboxa - \else - \tabu@thevrule - \fi \endgroup -}% \tabu@thevline -\def\tabu@savels #1{% - \expandafter\let\csname\string#1\endcsname #1% - \expandafter\def\expandafter\tabu@reset\expandafter{\tabu@reset - \tabu@resetls#1}}% -\def\tabu@resetls #1{\expandafter\let\expandafter#1\csname\string#1\endcsname}% -%% \multicolumn inside tabu environment ----------------------------- -\tabu@newcolumntype \tabu@rewritemulticolumn{% - \aftergroup \tabu@endrewritemulticolumn % after \@mkpream group - \NC@list{\NC@do *}\tabu@textbar \tabu@lines - \tabu@savedecl - \tabu@privatecolumns - \NC@list\expandafter{\the\expandafter\NC@list \tabu@NC@list}% - \let\tabu@savels \relax - \NC@find -}% \tabu@rewritemulticolumn -\def\tabu@endrewritemulticolumn{\gdef\tabu@mkpreambuffer{}\endgroup} -\def\tabu@multicolumn{\tabu@ifenvir \tabu@multic@lumn \tabu@multicolumnORI} -\long\def\tabu@multic@lumn #1#2#3{\multispan{#1}\begingroup - \tabu@everyrowtrue - \NC@list{\NC@do \tabu@rewritemulticolumn}% - \expandafter\@gobbletwo % gobbles \multispan{#1} - \tabu@multicolumnORI{#1}{\tabu@rewritemulticolumn #2}% - {\iftabuscantokens \tabu@rescan \else \expandafter\@firstofone \fi - {#3}}% -}% \tabu@multic@lumn -%% The X column(s): rewriting process ----------------------------- -\tabu@privatecolumntype X[1][]{\begingroup \tabu@siunitx{\endgroup \tabu@rewriteX {#1}}} -\def\tabu@nosiunitx #1{#1{}{}\expandafter \NC@find \tabu@rewritten } -\def\tabu@siunitx #1{\@ifnextchar \bgroup - {\tabu@rewriteX@Ss{#1}} - {\tabu@nosiunitx{#1}}} -\def\tabu@rewriteX@Ss #1#2{\@temptokena{}% - \@defaultunits \let\tabu@temp =#2\relax\@nnil - \ifodd 1\ifx S\tabu@temp \else \ifx s\tabu@temp \else 0 \fi\fi - \def\NC@find{\def\NC@find >####1####2<####3\relax{#1 {####1}{####3}% - }\expandafter\NC@find \the\@temptokena \relax - }\expandafter\NC@rewrite@S \@gobble #2\relax - \else \tabu@siunitxerror - \fi - \expandafter \NC@find \tabu@rewritten -}% \tabu@rewriteX@Ss -\def\tabu@siunitxerror {\PackageError{tabu}{Not a S nor s column ! - \MessageBreak X column can only embed siunitx S or s columns}\@ehd -}% \tabu@siunitxerror -\def\tabu@rewriteX #1#2#3{\tabu@Xarg {#1}{#2}{#3}% - \iftabu@measuring - \else \tabu@measuringtrue % first X column found in the preamble - \let\@halignto \relax \let\tabu@halignto \relax - \iftabu@spread \tabu@spreadtarget \tabu@target \tabu@target \z@ - \else \tabu@spreadtarget \z@ \fi - \ifdim \tabu@target=\z@ - \setlength\tabu@target \tabu@thetarget - \tabu@message{\tabu@message@defaulttarget}% - \else \tabu@message{\tabu@message@target}\fi - \fi -}% \tabu@rewriteX -\def\tabu@rewriteXrestore #1#2#3{\let\@halignto \relax - \def\tabu@rewritten{l}} -\def\tabu@Xarg #1#2#3{% - \advance\tabu@Xcol \@ne \let\tabu@Xlcr \@empty - \let\tabu@Xdisp \@empty \let\tabu@Xmath \@empty - \ifx\\#1\\% - \def\tabu@rewritten{p}\tabucolX \p@ % - \else - \let\tabu@rewritten \@empty \let\tabu@temp \@empty \tabucolX \z@ - \tabu@Xparse {}#1\relax - \fi - \tabu@Xrewritten{#2}{#3}% -}% \tabu@Xarg -\def\tabu@Xparse #1{\futurelet\@let@token \tabu@Xtest} -\expandafter\def\expandafter\tabu@Xparsespace\space{\tabu@Xparse{}} -\def\tabu@Xtest{% - \ifcase \ifx \relax\@let@token \z@ \else - \if ,\@let@token \m@ne\else - \if p\@let@token 1\else - \if m\@let@token 2\else - \if b\@let@token 3\else - \if l\@let@token 4\else - \if c\@let@token 5\else - \if r\@let@token 6\else - \if j\@let@token 7\else - \if L\@let@token 8\else - \if C\@let@token 9\else - \if R\@let@token 10\else - \if J\@let@token 11\else - \ifx \@sptoken\@let@token 12\else - \if .\@let@token 13\else - \if -\@let@token 13\else - \ifcat $\@let@token 14\else - 15\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\relax - \or \tabu@Xtype {p}% - \or \tabu@Xtype {m}% - \or \tabu@Xtype {b}% - \or \tabu@Xalign \raggedright\relax - \or \tabu@Xalign \centering\relax - \or \tabu@Xalign \raggedleft\relax - \or \tabu@Xalign \tabu@justify\relax - \or \tabu@Xalign \RaggedRight\raggedright - \or \tabu@Xalign \Centering\centering - \or \tabu@Xalign \RaggedLeft\raggedleft - \or \tabu@Xalign \justifying\tabu@justify - \or \expandafter \tabu@Xparsespace - \or \expandafter \tabu@Xcoef - \or \expandafter \tabu@Xm@th - \or \tabu@Xcoef{}% - \else\expandafter \tabu@Xparse - \fi -}% \tabu@Xtest -\def\tabu@Xalign #1#2{% - \ifx \tabu@Xlcr\@empty \else \PackageWarning{tabu} - {Duplicate horizontal alignment specification}\fi - \ifdefined#1\def\tabu@Xlcr{#1}\let#1\relax - \else \def\tabu@Xlcr{#2}\let#2\relax\fi - \expandafter\tabu@Xparse -}% \tabu@Xalign -\def\tabu@Xtype #1{% - \ifx \tabu@rewritten\@empty \else \PackageWarning{tabu} - {Duplicate vertical alignment specification}\fi - \def\tabu@rewritten{#1}\expandafter\tabu@Xparse -}% \tabu@Xtype -\def\tabu@Xcoef#1{\edef\tabu@temp{\tabu@temp#1}% - \afterassignment\tabu@Xc@ef \tabu@cnt\number\if-#10\fi -}% \tabu@Xcoef -\def\tabu@Xc@ef{\advance\tabucolX \tabu@temp\the\tabu@cnt\p@ - \tabu@Xparse{}% -}% \tabu@Xc@ef -\def\tabu@Xm@th #1{\futurelet \@let@token \tabu@Xd@sp} -\def\tabu@Xd@sp{\let\tabu@Xmath=$% - \ifx $\@let@token \def\tabu@Xdisp{\displaystyle}% - \expandafter\tabu@Xparse - \else \expandafter\tabu@Xparse\expandafter{\expandafter}% - \fi -}% \tabu@Xd@sp -\def\tabu@Xrewritten {% - \ifx \tabu@rewritten\@empty \def\tabu@rewritten{p}\fi - \ifdim \tabucolX<\z@ \tabu@negcoeftrue - \else\ifdim \tabucolX=\z@ \tabucolX \p@ - \fi\fi - \edef\tabu@temp{{\the\tabu@Xcol}{\tabu@strippt\tabucolX}}% - \edef\tabu@Xcoefs{\tabu@Xcoefs \tabu@ \tabu@temp}% - \edef\tabu@rewritten ##1##2{\def\noexpand\tabu@rewritten{% - >{\tabu@Xlcr \ifx$\tabu@Xmath$\tabu@Xdisp\fi ##1}% - \tabu@rewritten {\tabu@hsize \tabu@temp}% - <{##2\ifx$\tabu@Xmath$\fi}}% - }\tabu@rewritten -}% \tabu@Xrewritten -\def\tabu@hsize #1#2{% - \ifdim #2\p@<\z@ - \ifdim \tabucolX=\maxdimen \tabu@wd{#1}\else - \ifdim \tabu@wd{#1}<-#2\tabucolX \tabu@wd{#1}\else -#2\tabucolX\fi - \fi - \else #2\tabucolX - \fi -}% \tabu@hsize -%% \usetabu and \preamble: rewriting process --------------------- -\tabu@privatecolumntype \usetabu [1]{% - \ifx\\#1\\\tabu@saveerr{}\else - \@ifundefined{tabu@saved@\string#1} - {\tabu@saveerr{#1}} - {\let\tabu@rewriteX \tabu@rewriteXrestore - \csname tabu@saved@\string#1\expandafter\endcsname\expandafter\@ne}% - \fi -}% \NC@rewrite@\usetabu -\tabu@privatecolumntype \preamble [1]{% - \ifx\\#1\\\tabu@saveerr{}\else - \@ifundefined{tabu@saved@\string#1} - {\tabu@saveerr{#1}} - {\csname tabu@saved@\string#1\expandafter\endcsname\expandafter\z@}% - \fi -}% \NC@rewrite@\preamble -%% Controlling the rewriting process ------------------------------- -\tabu@newcolumntype \tabu@rewritefirst{% - \iftabu@long \aftergroup \tabu@longpream % - \else \aftergroup \tabu@pream - \fi - \let\tabu@ \relax \let\tabu@hsize \relax - \let\tabu@Xcoefs \@empty \let\tabu@savels \relax - \tabu@Xcol \z@ \tabu@cnt \tw@ - \gdef\tabu@mkpreambuffer{\tabu@{}}\tabu@measuringfalse - \global\setbox\@arstrutbox \box\@arstrutbox - \NC@list{\NC@do *}\tabu@textbar \tabu@lines - \NC@list\expandafter{\the\NC@list \NC@do X}% - \iftabu@siunitx % - \NC@list\expandafter{\the\NC@list \NC@do S\NC@do s}\fi - \NC@list\expandafter{\the\expandafter\NC@list \tabu@highprioritycolumns}% - \expandafter\def\expandafter\tabu@NC@list\expandafter{% - \the\expandafter\NC@list \tabu@NC@list}% % * | X S - \NC@list\expandafter{\expandafter \NC@do \expandafter\usetabu - \expandafter \NC@do \expandafter\preamble - \the\NC@list \NC@do \tabu@rewritemiddle - \NC@do \tabu@rewritelast}% - \tabu@savedecl - \tabu@privatecolumns - \edef\tabu@prev{\the\@temptokena}\NC@find \tabu@rewritemiddle -}% NC@rewrite@\tabu@rewritefirst -\tabu@newcolumntype \tabu@rewritemiddle{% - \edef\tabu@temp{\the\@temptokena}\NC@find \tabu@rewritelast -}% \NC@rewrite@\tabu@rewritemiddle -\tabu@newcolumntype \tabu@rewritelast{% - \ifx \tabu@temp\tabu@prev \advance\tabu@cnt \m@ne - \NC@list\expandafter{\tabu@NC@list \NC@do \tabu@rewritemiddle - \NC@do \tabu@rewritelast}% - \else \let\tabu@prev\tabu@temp - \fi - \ifcase \tabu@cnt \expandafter\tabu@endrewrite - \else \expandafter\NC@find \expandafter\tabu@rewritemiddle - \fi -}% \NC@rewrite@\tabu@rewritelast -%% Choosing the strategy -------------------------------------------- -\def\tabu@endrewrite {% - \let\tabu@temp \NC@find - \ifx \@arrayright\relax \let\@arrayright \@empty \fi - \count@=% - \ifx \@finalstrut\tabu@finalstrut \z@ % outer in mode 0 print - \iftabu@measuring - \xdef\tabu@mkpreambuffer{\tabu@mkpreambuffer - \tabu@target \csname tabu@\the\tabu@nested.T\endcsname - \tabucolX \csname tabu@\the\tabu@nested.X\endcsname - \edef\@halignto {\ifx\@arrayright\@empty to\tabu@target\fi}}% - \fi - \else\iftabu@measuring 4 % X columns - \xdef\tabu@mkpreambuffer{\tabu@{\tabu@mkpreambuffer - \tabu@target \the\tabu@target - \tabu@spreadtarget \the\tabu@spreadtarget}% - \def\noexpand\tabu@Xcoefs{\tabu@Xcoefs}% - \edef\tabu@halignto{\ifx \@arrayright\@empty to\tabu@target\fi}}% - \let\tabu@Xcoefs \relax - \else\ifcase\tabu@nested \thr@@ % outer, no X - \global\let\tabu@afterendpar \relax - \else \@ne % inner, no X, outer in mode 1 or 2 - \fi - \ifdefined\tabu@usetabu - \else \ifdim\tabu@target=\z@ - \else \let\tabu@temp \tabu@extracolsep - \fi\fi - \fi - \fi - \xdef\tabu@mkpreambuffer{\count@ \the\count@ \tabu@mkpreambuffer}% - \tabu@temp -}% \tabu@endrewrite -\def\tabu@extracolsep{\@defaultunits \expandafter\let - \expandafter\tabu@temp \expandafter=\the\@temptokena \relax\@nnil - \ifx \tabu@temp\@sptoken - \expandafter\tabu@gobblespace \expandafter\tabu@extracolsep - \else - \edef\tabu@temp{\noexpand\NC@find - \if |\noexpand\tabu@temp @% - \else\if !\noexpand\tabu@temp @% - \else !% - \fi\fi - {\noexpand\extracolsep\noexpand\@flushglue}}% - \fi - \tabu@temp -}% \tabu@extrac@lsep -%% Implementing the strategy ---------------------------------------- -\long\def\tabu@pream #1\@preamble {% - \let\tabu@ \tabu@@ \tabu@mkpreambuffer \tabu@aftergroupcleanup - \NC@list\expandafter {\tabu@NC@list}% in case of nesting... - \ifdefined\tabu@usetabu \tabu@usetabu \tabu@target \z@ \fi - \let\tabu@savedpreamble \@preamble - \global\let\tabu@elapsedtime \relax - \tabu@thebody ={#1\tabu@aftergroupcleanup}% - \tabu@thebody =\expandafter{\the\expandafter\tabu@thebody - \@preamble}% - \edef\tabuthepreamble {\the\tabu@thebody}% ( no @ allowed for \scantokens ) - \tabu@select -}% \tabu@pream -\long\def\tabu@longpream #1\LT@bchunk #2\LT@bchunk{% - \let\tabu@ \tabu@@ \tabu@mkpreambuffer \tabu@aftergroupcleanup - \NC@list\expandafter {\tabu@NC@list}% in case of nesting... - \let\tabu@savedpreamble \@preamble - \global\let\tabu@elapsedtime \relax - \tabu@thebody ={#1\LT@bchunk #2\tabu@aftergroupcleanup \LT@bchunk}% - \edef\tabuthepreamble {\the\tabu@thebody}% ( no @ allowed for \scantokens ) - \tabu@select -}% \tabu@longpream -\def\tabu@select {% - \ifnum\tabu@nested>\z@ \tabuscantokensfalse \fi - \ifnum \count@=\@ne \iftabu@measuring \count@=\tw@ \fi\fi - \ifcase \count@ - \global\let\tabu@elapsedtime \relax - \tabu@seteverycr - \expandafter \tabuthepreamble % vertical adjustment (inherited from outer) - \or % exit in vertical measure + struts per cell because no X and outer in mode 3 - \tabu@evr{\tabu@verticalinit}\tabu@celllalign@def{\tabu@verticalmeasure}% - \def\tabu@cellralign{\tabu@verticalspacing}% - \tabu@seteverycr - \expandafter \tabuthepreamble - \or % exit without measure because no X and outer in mode 4 - \tabu@evr{}\tabu@celllalign@def{}\let\tabu@cellralign \@empty - \tabu@seteverycr - \expandafter \tabuthepreamble - \else % needs trials - \tabu@evr{}\tabu@celllalign@def{}\let\tabu@cellralign \@empty - \tabu@savecounters - \expandafter \tabu@setstrategy - \fi -}% \tabu@select -\def\tabu@@ {\gdef\tabu@mkpreambuffer} -%% Protections to set up before trials ------------------------------ -\def\tabu@setstrategy {\begingroup % - \tabu@trialh@@k \tabu@cnt \z@ % number of trials - \hbadness \@M \let\hbadness \@tempcnta - \hfuzz \maxdimen \let\hfuzz \@tempdima - \let\write \tabu@nowrite\let\GenericError \tabu@GenericError - \let\savetabu \@gobble \let\tabudefaulttarget \linewidth - \let\@footnotetext \@gobble \let\@xfootnote \tabu@xfootnote - \let\color \tabu@nocolor\let\rowcolor \tabu@norowcolor - \let\tabu@aftergroupcleanup \relax % only after the last trial - \tabu@mkpreambuffer - \ifnum \count@>\thr@@ \let\@halignto \@empty \tabucolX@init - \def\tabu@lasttry{\m@ne\p@}\fi - \begingroup \iffalse{\fi \ifnum0=`}\fi - \toks@{}\def\tabu@stack{b}\iftabuscantokens \endlinechar=10 \obeyspaces \fi % - \tabu@collectbody \tabu@strategy % -}% \tabu@setstrategy -\def\tabu@savecounters{% - \def\@elt ##1{\csname c@##1\endcsname\the\csname c@##1\endcsname}% - \edef\tabu@clckpt {\begingroup \globaldefs=\@ne \cl@@ckpt \endgroup}\let\@elt \relax -}% \tabu@savecounters -\def\tabucolX@init {% \tabucolX <= \tabu@target / (sum coefs > 0) - \dimen@ \z@ \tabu@Xsum \z@ \tabucolX \z@ \let\tabu@ \tabu@Xinit \tabu@Xcoefs - \ifdim \dimen@>\z@ - \@tempdima \dimexpr \tabu@target *\p@/\dimen@ + \tabu@hfuzz\relax - \ifdim \tabucolX<\@tempdima \tabucolX \@tempdima \fi - \fi -}% \tabucolX@init -\def\tabu@Xinit #1#2{\tabu@Xcol #1 \advance \tabu@Xsum - \ifdim #2\p@>\z@ #2\p@ \advance\dimen@ #2\p@ - \else -#2\p@ \tabu@negcoeftrue - \@tempdima \dimexpr \tabu@target*\p@/\dimexpr-#2\p@\relax \relax - \ifdim \tabucolX<\@tempdima \tabucolX \@tempdima \fi - \tabu@wddef{#1}{0pt}% - \fi -}% \tabu@Xinit -%% Collecting the environment body ---------------------------------- -\long\def\tabu@collectbody #1#2\end #3{% - \edef\tabu@stack{\tabu@pushbegins #2\begin\end\expandafter\@gobble\tabu@stack}% - \ifx \tabu@stack\@empty - \toks@\expandafter{\expandafter\tabu@thebody\expandafter{\the\toks@ #2}% - \def\tabu@end@envir{\end{#3}}% - \iftabuscantokens - \iftabu@long \def\tabu@endenvir {\end{#3}\tabu@gobbleX}% - \else \def\tabu@endenvir {\let\endarray \@empty - \end{#3}\tabu@gobbleX}% - \fi - \else \def\tabu@endenvir {\end{#3}}\fi}% - \let\tabu@collectbody \tabu@endofcollect - \else\def\tabu@temp{#3}% - \ifx \tabu@temp\@empty \toks@\expandafter{\the\toks@ #2\end }% - \else \ifx\tabu@temp\tabu@@spxiii \toks@\expandafter{\the\toks@ #2\end #3}% - \else \ifx\tabu@temp\tabu@X \toks@\expandafter{\the\toks@ #2\end #3}% - \else \toks@\expandafter{\the\toks@ #2\end{#3}}% - \fi\fi\fi - \fi - \tabu@collectbody{#1}% -}% \tabu@collectbody -\long\def\tabu@pushbegins#1\begin#2{\ifx\end#2\else b\expandafter\tabu@pushbegins\fi}% -\def\tabu@endofcollect #1{\ifnum0=`{}\fi - \expandafter\endgroup \the\toks@ #1% -}% \tabu@endofcollect -%% The trials: switching between strategies ------------------------- -\def\tabu@strategy {\relax % stops \count@ assignment ! - \ifcase\count@ % case 0 = print with vertical adjustment (outer is finished) - \expandafter \tabu@endoftrials - \or % case 1 = exit in vertical measure (outer in mode 3) - \expandafter\xdef\csname tabu@\the\tabu@nested.T\endcsname{\the\tabu@target}% - \expandafter\xdef\csname tabu@\the\tabu@nested.X\endcsname{\the\tabucolX}% - \expandafter \tabu@endoftrials - \or % case 2 = exit with a rule replacing the table (outer in mode 4) - \expandafter \tabu@quickend - \or % case 3 = outer is in mode 3 because of no X - \begingroup - \tabu@evr{\tabu@verticalinit}\tabu@celllalign@def{\tabu@verticalmeasure}% - \def\tabu@cellralign{\tabu@verticalspacing}% - \expandafter \tabu@measuring - \else % case 4 = horizontal measure - \begingroup - \global\let\tabu@elapsedtime \tabu@message@etime - \long\def\multicolumn##1##2##3{\multispan{##1}}% - \let\tabu@startpboxORI \@startpbox - \iftabu@spread - \def\tabu@naturalXmax {\z@}% - \let\tabu@naturalXmin \tabu@naturalXmax - \tabu@evr{\global\tabu@naturalX \z@}% - \let\@startpbox \tabu@startpboxmeasure - \else\iftabu@negcoef - \let\@startpbox \tabu@startpboxmeasure - \else \let\@startpbox \tabu@startpboxquick - \fi\fi - \expandafter \tabu@measuring - \fi -}% \tabu@strategy -\def\tabu@measuring{\expandafter \tabu@trial \expandafter - \count@ \the\count@ \tabu@endtrial -}% \tabu@measuring -\def\tabu@trial{\iftabu@long \tabu@longtrial \else \tabu@shorttrial \fi} -\def\tabu@shorttrial {\setbox\tabu@box \hbox\bgroup \tabu@seteverycr - \ifx \tabu@savecounters\relax \else - \let\tabu@savecounters \relax \tabu@clckpt \fi - $\iftabuscantokens \tabu@rescan \else \expandafter\@secondoftwo \fi - \expandafter{\expandafter \tabuthepreamble - \the\tabu@thebody - \csname tabu@adl@endtrial\endcsname - \endarray}$\egroup % got \tabu@box -}% \tabu@shorttrial -\def\tabu@longtrial {\setbox\tabu@box \hbox\bgroup \tabu@seteverycr - \ifx \tabu@savecounters\relax \else - \let\tabu@savecounters \relax \tabu@clckpt \fi - \iftabuscantokens \tabu@rescan \else \expandafter\@secondoftwo \fi - \expandafter{\expandafter \tabuthepreamble - \the\tabu@thebody - \tabuendlongtrial}\egroup % got \tabu@box -}% \tabu@longtrial -\def\tabuendlongtrial{% no @ allowed for \scantokens - \LT@echunk \global\setbox\@ne \hbox{\unhbox\@ne}\kern\wd\@ne - \LT@get@widths -}% \tabuendlongtrial -\def\tabu@adl@endtrial{% - \crcr \noalign{\global\adl@ncol \tabu@nbcols}}% anything global is crap, junky and fails ! -\def\tabu@seteverycr {\tabu@reset - \everycr \expandafter{\the\everycr \tabu@everycr}% - \let\everycr \tabu@noeverycr % -}% \tabu@seteverycr -\def\tabu@noeverycr{{\aftergroup\tabu@restoreeverycr \afterassignment}\toks@} -\def\tabu@restoreeverycr {\let\everycr \tabu@@everycr} -\def\tabu@everycr {\iftabu@everyrow \noalign{\tabu@everyrow}\fi} -\def\tabu@endoftrials {% - \iftabuscantokens \expandafter\@firstoftwo - \else \expandafter\@secondoftwo - \fi - {\expandafter \tabu@closetrialsgroup \expandafter - \tabu@rescan \expandafter{% - \expandafter\tabuthepreamble - \the\expandafter\tabu@thebody - \iftabu@long \else \endarray \fi}} - {\expandafter\tabu@closetrialsgroup \expandafter - \tabuthepreamble - \the\tabu@thebody}% - \tabu@endenvir % Finish ! -}% \tabu@endoftrials -\def\tabu@closetrialsgroup {% - \toks@\expandafter{\tabu@endenvir}% - \edef\tabu@bufferX{\endgroup - \tabucolX \the\tabucolX - \tabu@target \the\tabu@target - \tabu@cnt \the\tabu@cnt - \def\noexpand\tabu@endenvir{\the\toks@}% - %Quid de \@halignto = \tabu@halignto ?? - }% \tabu@bufferX - \tabu@bufferX - \ifcase\tabu@nested % print out (outer in mode 0) - \global\tabu@cnt \tabu@cnt - \tabu@evr{\tabu@verticaldynamicadjustment}% - \tabu@celllalign@def{\everypar{}}\let\tabu@cellralign \@empty - \let\@finalstrut \tabu@finalstrut - \else % vertical measure of nested tabu - \tabu@evr{\tabu@verticalinit}% - \tabu@celllalign@def{\tabu@verticalmeasure}% - \def\tabu@cellralign{\tabu@verticalspacing}% - \fi - \tabu@clckpt \let\@halignto \tabu@halignto - \let\@halignto \@empty - \tabu@seteverycr - \ifdim \tabustrutrule>\z@ \ifnum\tabu@nested=\z@ - \setbox\@arstrutbox \box\voidb@x % force \@arstrutbox to be rebuilt (visible struts) - \fi\fi -}% \tabu@closetrialsgroup -\def\tabu@quickend {\expandafter \endgroup \expandafter - \tabu@target \the\tabu@target \tabu@quickrule - \let\endarray \relax \tabu@endenvir -}% \tabu@quickend -\def\tabu@endtrial {\relax % stops \count@ assignment ! - \ifcase \count@ \tabu@err % case 0 = impossible here - \or \tabu@err % case 1 = impossible here - \or \tabu@err % case 2 = impossible here - \or % case 3 = outer goes into mode 0 - \def\tabu@bufferX{\endgroup}\count@ \z@ - \else % case 4 = outer goes into mode 3 - \iftabu@spread \tabu@spreadarith % inner into mode 1 (outer in mode 3) - \else \tabu@arith % or 2 (outer in mode 4) - \fi - \count@=% - \ifcase\tabu@nested \thr@@ % outer goes into mode 3 - \else\iftabu@measuring \tw@ % outer is in mode 4 - \else \@ne % outer is in mode 3 - \fi\fi - \edef\tabu@bufferX{\endgroup - \tabucolX \the\tabucolX - \tabu@target \the\tabu@target}% - \fi - \expandafter \tabu@bufferX \expandafter - \count@ \the\count@ \tabu@strategy -}% \tabu@endtrial -\def\tabu@err{\errmessage{(tabu) Internal impossible error! (\count@=\the\count@)}} -%% The algorithms: compute the widths / stop or go on --------------- -\def\tabu@arithnegcoef {% - \@tempdima \z@ \dimen@ \z@ \let\tabu@ \tabu@arith@negcoef \tabu@Xcoefs -}% \tabu@arithnegcoef -\def\tabu@arith@negcoef #1#2{% - \ifdim #2\p@>\z@ \advance\dimen@ #2\p@ % saturated by definition - \advance\@tempdima #2\tabucolX - \else - \ifdim -#2\tabucolX <\tabu@wd{#1}% c_i X < natural width <= \tabu@target-> saturated - \advance\dimen@ -#2\p@ - \advance\@tempdima -#2\tabucolX - \else - \advance\@tempdima \tabu@wd{#1}% natural width <= c_i X => neutralised - \ifdim \tabu@wd{#1}<\tabu@target \else % neutralised - \advance\dimen@ -#2\p@ % saturated (natural width = tabu@target) - \fi - \fi - \fi -}% \tabu@arith@negcoef -\def\tabu@givespace #1#2{% here \tabu@DELTA < \z@ - \ifdim \@tempdima=\z@ - \tabu@wddef{#1}{\the\dimexpr -\tabu@DELTA*\p@/\tabu@Xsum}% - \else - \tabu@wddef{#1}{\the\dimexpr \tabu@hsize{#1}{#2} - *(\p@ -\tabu@DELTA*\p@/\@tempdima)/\p@\relax}% - \fi -}% \tabu@givespace -\def\tabu@arith {\advance\tabu@cnt \@ne - \ifnum \tabu@cnt=\@ne \tabu@message{\tabu@titles}\fi - \tabu@arithnegcoef - \@tempdimb \dimexpr \wd\tabu@box -\@tempdima \relax % - \tabu@DELTA = \dimexpr \wd\tabu@box - \tabu@target \relax - \tabu@message{\tabu@message@arith}% - \ifdim \tabu@DELTA <\tabu@hfuzz - \ifdim \tabu@DELTA<\z@ % wd (tabu)<\tabu@target ? - \let\tabu@ \tabu@givespace \tabu@Xcoefs - \advance\@tempdima \@tempdimb \advance\@tempdima -\tabu@DELTA % for message - \else % already converged: nothing to do but nearly impossible... - \fi - \tabucolX \maxdimen - \tabu@measuringfalse - \else % need for narrower X columns - \tabucolX =\dimexpr (\@tempdima -\tabu@DELTA) *\p@/\tabu@Xsum \relax - \tabu@measuringtrue - \@whilesw \iftabu@measuring\fi {% - \advance\tabu@cnt \@ne - \tabu@arithnegcoef - \tabu@DELTA =\dimexpr \@tempdima+\@tempdimb -\tabu@target \relax % always < 0 here - \tabu@message{\tabu@header - \tabu@msgalign \tabucolX { }{ }{ }{ }{ }\@@ - \tabu@msgalign \@tempdima+\@tempdimb { }{ }{ }{ }{ }\@@ - \tabu@msgalign \tabu@target { }{ }{ }{ }{ }\@@ - \tabu@msgalign@PT \dimen@ { }{}{}{}{}{}{}\@@ - \ifdim -\tabu@DELTA<\tabu@hfuzz \tabu@spaces target ok\else - \tabu@msgalign \dimexpr -\tabu@DELTA *\p@/\dimen@ {}{}{}{}{}\@@ - \fi}% - \ifdim -\tabu@DELTA<\tabu@hfuzz - \advance\@tempdima \@tempdimb % for message - \tabu@measuringfalse - \else - \advance\tabucolX \dimexpr -\tabu@DELTA *\p@/\dimen@ \relax - \fi - }% - \fi - \tabu@message{\tabu@message@reached}% - \edef\tabu@bufferX{\endgroup \tabu@cnt \the\tabu@cnt - \tabucolX \the\tabucolX - \tabu@target \the\tabu@target}% -}% \tabu@arith -\def\tabu@spreadarith {% - \dimen@ \z@ \@tempdima \tabu@naturalXmax \let\tabu@ \tabu@spread@arith \tabu@Xcoefs - \edef\tabu@naturalXmin {\the\dimexpr\tabu@naturalXmin*\dimen@/\p@}% - \@tempdimc =\dimexpr \wd\tabu@box -\tabu@naturalXmax+\tabu@naturalXmin \relax - \iftabu@measuring - \tabu@target =\dimexpr \@tempdimc+\tabu@spreadtarget \relax - \edef\tabu@bufferX{\endgroup \tabucolX \the\tabucolX \tabu@target\the\tabu@target}% - \else - \tabu@message{\tabu@message@spreadarith}% - \ifdim \dimexpr \@tempdimc+\tabu@spreadtarget >\tabu@target - \tabu@message{(tabu) spread - \ifdim \@tempdimc>\tabu@target useless here: default target used% - \else too large: reduced to fit default target\fi.}% - \else - \tabu@target =\dimexpr \@tempdimc+\tabu@spreadtarget \relax - \tabu@message{(tabu) spread: New target set to \the\tabu@target^^J}% - \fi - \begingroup \let\tabu@wddef \@gobbletwo - \@tempdimb \@tempdima - \tabucolX@init - \tabu@arithnegcoef - \wd\tabu@box =\dimexpr \wd\tabu@box +\@tempdima-\@tempdimb \relax - \expandafter\endgroup \expandafter\tabucolX \the\tabucolX - \tabu@arith - \fi -}% \tabu@spreadarith -\def\tabu@spread@arith #1#2{% - \ifdim #2\p@>\z@ \advance\dimen@ #2\p@ - \else \advance\@tempdima \tabu@wd{#1}\relax - \fi -}% \tabu@spread@arith -%% Reporting in the .log file --------------------------------------- -\def\tabu@message@defaulttarget{% - \ifnum\tabu@nested=\z@^^J(tabu) Default target: - \ifx\tabudefaulttarget\linewidth \string\linewidth - \ifdim \tabu@thetarget=\linewidth \else - -\the\dimexpr\linewidth-\tabu@thetarget\fi = - \else\ifx\tabudefaulttarget\linegoal\string\linegoal= - \fi\fi - \else (tabu) Default target (nested): \fi - \the\tabu@target \on@line - \ifnum\tabu@nested=\z@ , page \the\c@page\fi} -\def\tabu@message@target {^^J(tabu) Target specified: - \the\tabu@target \on@line, page \the\c@page} -\def\tabu@message@arith {\tabu@header - \tabu@msgalign \tabucolX { }{ }{ }{ }{ }\@@ - \tabu@msgalign \wd\tabu@box { }{ }{ }{ }{ }\@@ - \tabu@msgalign \tabu@target { }{ }{ }{ }{ }\@@ - \tabu@msgalign@PT \dimen@ { }{}{}{}{}{}{}\@@ - \ifdim \tabu@DELTA<\tabu@hfuzz giving space\else - \tabu@msgalign \dimexpr (\@tempdima-\tabu@DELTA) *\p@/\tabu@Xsum -\tabucolX {}{}{}{}{}\@@ - \fi -}% \tabu@message@arith -\def\tabu@message@spreadarith {\tabu@spreadheader - \tabu@msgalign \tabu@spreadtarget { }{ }{ }{ }{}\@@ - \tabu@msgalign \wd\tabu@box { }{ }{ }{ }{}\@@ - \tabu@msgalign -\tabu@naturalXmax { }{}{}{}{}\@@ - \tabu@msgalign \tabu@naturalXmin { }{ }{ }{ }{}\@@ - \tabu@msgalign \ifdim \dimexpr\@tempdimc>\tabu@target \tabu@target - \else \@tempdimc+\tabu@spreadtarget \fi - {}{}{}{}{}\@@} -\def\tabu@message@negcoef #1#2{ - \tabu@spaces\tabu@spaces\space * #1. X[\rem@pt#2]: - \space width = \tabu@wd {#1} - \expandafter\string\csname tabu@\the\tabu@nested.W\number#1\endcsname - \ifdim -\tabu@pt#2\tabucolX<\tabu@target - < \number-\rem@pt#2 X - = \the\dimexpr -\tabu@pt#2\tabucolX \relax - \else - <= \the\tabu@target\space < \number-\rem@pt#2 X\fi} -\def\tabu@message@reached{\tabu@header - ******* Reached Target: - hfuzz = \tabu@hfuzz\on@line\space *******} -\def\tabu@message@etime{\edef\tabu@stoptime{\the\pdfelapsedtime}% - \tabu@message{(tabu)\tabu@spaces Time elapsed during measure: - \the\numexpr(\tabu@stoptime-\tabu@starttime-32767)/65536\relax sec - \the\numexpr\numexpr(\tabu@stoptime-\tabu@starttime) - -\numexpr(\tabu@stoptime-\tabu@starttime-32767)/65536\relax*65536\relax - *1000/65536\relax ms \tabu@spaces(\the\tabu@cnt\space - cycle\ifnum\tabu@cnt>\@ne s\fi)^^J^^J}} -\def\tabu@message@verticalsp {% - \ifdim \@tempdima>\tabu@ht - \ifdim \@tempdimb>\tabu@dp - \expandafter\expandafter\expandafter\string\tabu@ht = - \tabu@msgalign \@tempdima { }{ }{ }{ }{ }\@@ - \expandafter\expandafter\expandafter\string\tabu@dp = - \tabu@msgalign \@tempdimb { }{ }{ }{ }{ }\@@^^J% - \else - \expandafter\expandafter\expandafter\string\tabu@ht = - \tabu@msgalign \@tempdima { }{ }{ }{ }{ }\@@^^J% - \fi - \else\ifdim \@tempdimb>\tabu@dp - \tabu@spaces\tabu@spaces\tabu@spaces - \expandafter\expandafter\expandafter\string\tabu@dp = - \tabu@msgalign \@tempdimb { }{ }{ }{ }{ }\@@^^J\fi - \fi -}% \tabu@message@verticalsp -\edef\tabu@spaces{\@spaces} -\def\tabu@strippt{\expandafter\tabu@pt\the} -{\@makeother\P \@makeother\T\lowercase{\gdef\tabu@pt #1PT{#1}}} -\def\tabu@msgalign{\expandafter\tabu@msg@align\the\dimexpr} -\def\tabu@msgalign@PT{\expandafter\tabu@msg@align\romannumeral-`\0\tabu@strippt} -\def\do #1{% - \def\tabu@msg@align##1.##2##3##4##5##6##7##8##9\@@{% - \ifnum##1<10 #1 #1\else - \ifnum##1<100 #1 \else - \ifnum##1<\@m #1\fi\fi\fi - ##1.##2##3##4##5##6##7##8#1}% - \def\tabu@header{(tabu) \ifnum\tabu@cnt<10 #1\fi\the\tabu@cnt) }% - \def\tabu@titles{\ifnum \tabu@nested=\z@ - (tabu) Try#1 #1 tabu X #1 #1 #1tabu Width #1 #1 Target - #1 #1 #1 Coefs #1 #1 #1 Update^^J\fi}% - \def\tabu@spreadheader{% - (tabu) Try#1 #1 Spread #1 #1 tabu Width #1 #1 #1 Nat. X #1 #1 #1 #1Nat. Min. - #1 New Target^^J% - (tabu) sprd} - \def\tabu@message@save {\begingroup - \def\x ####1{\tabu@msg@align ####1{ }{ }{ }{ }{}\@@} - \def\z ####1{\expandafter\x\expandafter{\romannumeral-`\0\tabu@strippt - \dimexpr####1\p@{ }{ }}}% - \let\color \relax \def\tabu@rulesstyle ####1####2{\detokenize{####1}}% - \let\CT@arc@ \relax \let\@preamble \@gobble - \let\tabu@savedpream \@firstofone - \let\tabu@savedparams \@firstofone - \def\tabu@target ####1\relax {(tabu) target #1 #1 #1 #1 #1 = \x{####1}^^J}% - \def\tabucolX ####1\relax {(tabu) X columns width#1 = \x{####1}^^J}% - \def\tabu@nbcols ####1\relax {(tabu) Number of columns: \z{####1}^^J}% - \def\tabu@aligndefault ####1{(tabu) Default alignment: #1 #1 ####1^^J}% - \def\col@sep ####1\relax {(tabu) column sep #1 #1 #1 = \x{####1}^^J}% - \def\arrayrulewidth ####1\relax{(tabu) arrayrulewidth #1 = \x{####1}}% - \def\doublerulesep ####1\relax { doublerulesep = \x{####1}^^J}% - \def\extratabsurround####1\relax{(tabu) extratabsurround = \x{####1}^^J}% - \def\extrarowheight ####1\relax{(tabu) extrarowheight #1 = \x{####1}}% - \def\extrarowdepth ####1\relax {extrarowdepth = \x{####1}^^J}% - \def\abovetabulinesep####1\relax{(tabu) abovetabulinesep=\x{####1} }% - \def\belowtabulinesep####1\relax{ belowtabulinesep=\x{####1}^^J}% - \def\arraystretch ####1{(tabu) arraystretch #1 #1 = \z{####1}^^J}% - \def\minrowclearance####1\relax{(tabu) minrowclearance #1 = \x{####1}^^J}% - \def\tabu@arc@L ####1{(tabu) taburulecolor #1 #1 = ####1^^J}% - \def\tabu@drsc@L ####1{(tabu) tabudoublerulecolor= ####1^^J}% - \def\tabu@evr@L ####1{(tabu) everyrow #1 #1 #1 #1 = \detokenize{####1}^^J}% - \def\tabu@ls@L ####1{(tabu) line style = \detokenize{####1}^^J}% - \def\NC@find ####1\@nil{(tabu) tabu preamble#1 #1 = \detokenize{####1}^^J}% - \def\tabu@wddef####1####2{(tabu) Natural width ####1 = \x{####2}^^J}% - \let\edef \@gobbletwo \let\def \@empty \let\let \@gobbletwo - \tabu@message{% - (tabu) \string\savetabu{\tabu@temp}: \on@line^^J% - \tabu@usetabu \@nil^^J}% - \endgroup} -}\do{ } -%% Measuring the natural width (varwidth) - store the results ------- -\def\tabu@startpboxmeasure #1{\bgroup % entering \vtop - \edef\tabu@temp{\expandafter\@secondoftwo \ifx\tabu@hsize #1\else\relax\fi}% - \ifodd 1\ifx \tabu@temp\@empty 0 \else % starts with \tabu@hsize ? - \iftabu@spread \else % if spread -> measure - \ifdim \tabu@temp\p@>\z@ 0 \fi\fi\fi% if coef>0 -> do not measure - \let\@startpbox \tabu@startpboxORI % restore immediately (nesting) - \tabu@measuringtrue % for the quick option... - \tabu@Xcol =\expandafter\@firstoftwo\ifx\tabu@hsize #1\fi - \ifdim \tabu@temp\p@>\z@ \ifdim \tabu@temp\tabucolX<\tabu@target - \tabu@target=\tabu@temp\tabucolX \fi\fi - \setbox\tabu@box \hbox \bgroup - \begin{varwidth}\tabu@target - \let\FV@ListProcessLine \tabu@FV@ListProcessLine % \hbox to natural width... - \narrowragged \arraybackslash \parfillskip \@flushglue - \ifdefined\pdfadjustspacing \pdfadjustspacing\z@ \fi - \bgroup \aftergroup\tabu@endpboxmeasure - \ifdefined \cellspacetoplimit \tabu@cellspacepatch \fi - \else \expandafter\@gobble - \tabu@startpboxquick{#1}% \@gobble \bgroup - \fi -}% \tabu@startpboxmeasure -\def\tabu@cellspacepatch{\def\bcolumn##1\@nil{}\let\ecolumn\@empty - \bgroup\color@begingroup} -\def\tabu@endpboxmeasure {% - \@finalstrut \@arstrutbox - \end{varwidth}\egroup % - \ifdim \tabu@temp\p@ <\z@ % neg coef - \ifdim \tabu@wd\tabu@Xcol <\wd\tabu@box - \tabu@wddef\tabu@Xcol {\the\wd\tabu@box}% - \tabu@debug{\tabu@message@endpboxmeasure}% - \fi - \else % spread coef>0 - \global\advance \tabu@naturalX \wd\tabu@box - \@tempdima =\dimexpr \wd\tabu@box *\p@/\dimexpr \tabu@temp\p@\relax \relax - \ifdim \tabu@naturalXmax <\tabu@naturalX - \xdef\tabu@naturalXmax {\the\tabu@naturalX}\fi - \ifdim \tabu@naturalXmin <\@tempdima - \xdef\tabu@naturalXmin {\the\@tempdima}\fi - \fi - \box\tabu@box \egroup % end of \vtop (measure) restore \tabu@target -}% \tabu@endpboxmeasure -\def\tabu@wddef #1{\expandafter\xdef - \csname tabu@\the\tabu@nested.W\number#1\endcsname} -\def\tabu@wd #1{\csname tabu@\the\tabu@nested.W\number#1\endcsname} -\def\tabu@message@endpboxmeasure{\tabu@spaces\tabu@spaces<-> % <-> save natural wd - \the\tabu@Xcol. X[\tabu@temp]: - target = \the\tabucolX \space - \expandafter\expandafter\expandafter\string\tabu@wd\tabu@Xcol - =\tabu@wd\tabu@Xcol -}% \tabu@message@endpboxmeasure -\def\tabu@startpboxquick {\bgroup - \let\@startpbox \tabu@startpboxORI % restore immediately - \let\tabu \tabu@quick % \begin is expanded before... - \expandafter\@gobble \@startpbox % gobbles \bgroup -}% \tabu@startpboxquick -\def\tabu@quick {\begingroup \iffalse{\fi \ifnum0=`}\fi - \toks@{}\def\tabu@stack{b}\tabu@collectbody \tabu@endquick -}% \tabu@quick -\def\tabu@endquick {% - \ifodd 1\ifx\tabu@end@envir\tabu@endtabu \else - \ifx\tabu@end@envir\tabu@endtabus \else 0\fi\fi\relax - \endgroup - \else \let\endtabu \relax - \tabu@end@envir - \fi -}% \tabu@quick -\def\tabu@endtabu {\end{tabu}} -\def\tabu@endtabus {\end{tabu*}} -%% Measuring the heights and depths - store the results ------------- -\def\tabu@verticalmeasure{\everypar{}% - \ifnum \currentgrouptype>12 % 14=semi-simple, 15=math shift group - \setbox\tabu@box =\hbox\bgroup - \let\tabu@verticalspacing \tabu@verticalsp@lcr - \d@llarbegin % after \hbox ... - \else - \edef\tabu@temp{\ifnum\currentgrouptype=5\vtop - \else\ifnum\currentgrouptype=12\vcenter - \else\vbox\fi\fi}% - \setbox\tabu@box \hbox\bgroup$\tabu@temp \bgroup - \let\tabu@verticalspacing \tabu@verticalsp@pmb - \fi -}% \tabu@verticalmeasure -\def\tabu@verticalsp@lcr{% - \d@llarend \egroup % - \@tempdima \dimexpr \ht\tabu@box+\abovetabulinesep - \@tempdimb \dimexpr \dp\tabu@box+\belowtabulinesep \relax - \ifdim\tabustrutrule>\z@ \tabu@debug{\tabu@message@verticalsp}\fi - \ifdim \tabu@ht<\@tempdima \tabu@htdef{\the\@tempdima}\fi - \ifdim \tabu@dp<\@tempdimb \tabu@dpdef{\the\@tempdimb}\fi - \noindent\vrule height\@tempdima depth\@tempdimb -}% \tabu@verticalsp@lcr -\def\tabu@verticalsp@pmb{% inserts struts as needed - \par \expandafter\egroup - \expandafter$\expandafter - \egroup \expandafter - \@tempdimc \the\prevdepth - \@tempdima \dimexpr \ht\tabu@box+\abovetabulinesep - \@tempdimb \dimexpr \dp\tabu@box+\belowtabulinesep \relax - \ifdim\tabustrutrule>\z@ \tabu@debug{\tabu@message@verticalsp}\fi - \ifdim \tabu@ht<\@tempdima \tabu@htdef{\the\@tempdima}\fi - \ifdim \tabu@dp<\@tempdimb \tabu@dpdef{\the\@tempdimb}\fi - \let\@finalstrut \@gobble - \hrule height\@tempdima depth\@tempdimb width\hsize -%% \box\tabu@box -}% \tabu@verticalsp@pmb - -\def\tabu@verticalinit{% - \ifnum \c@taburow=\z@ \tabu@rearstrut \fi % after \tabu@reset ! - \advance\c@taburow \@ne - \tabu@htdef{\the\ht\@arstrutbox}\tabu@dpdef{\the\dp\@arstrutbox}% - \advance\c@taburow \m@ne -}% \tabu@verticalinit -\def\tabu@htdef {\expandafter\xdef \csname tabu@\the\tabu@nested.H\the\c@taburow\endcsname} -\def\tabu@ht {\csname tabu@\the\tabu@nested.H\the\c@taburow\endcsname} -\def\tabu@dpdef {\expandafter\xdef \csname tabu@\the\tabu@nested.D\the\c@taburow\endcsname} -\def\tabu@dp {\csname tabu@\the\tabu@nested.D\the\c@taburow\endcsname} -\def\tabu@verticaldynamicadjustment {% - \advance\c@taburow \@ne - \extrarowheight \dimexpr\tabu@ht - \ht\strutbox - \extrarowdepth \dimexpr\tabu@dp - \dp\strutbox - \let\arraystretch \@empty - \advance\c@taburow \m@ne -}% \tabu@verticaldynamicadjustment -\def\tabuphantomline{\crcr \noalign{% - {\globaldefs \@ne - \setbox\@arstrutbox \box\voidb@x - \let\tabu@@celllalign \tabu@celllalign - \let\tabu@@cellralign \tabu@cellralign - \let\tabu@@cellleft \tabu@cellleft - \let\tabu@@cellright \tabu@cellright - \let\tabu@@thevline \tabu@thevline - \let\tabu@celllalign \@empty - \let\tabu@cellralign \@empty - \let\tabu@cellright \@empty - \let\tabu@cellleft \@empty - \let\tabu@thevline \relax}% - \edef\tabu@temp{\tabu@multispan \tabu@nbcols{\noindent &}}% - \toks@\expandafter{\tabu@temp \noindent\tabu@everyrowfalse \cr - \noalign{\tabu@rearstrut - {\globaldefs\@ne - \let\tabu@celllalign \tabu@@celllalign - \let\tabu@cellralign \tabu@@cellralign - \let\tabu@cellleft \tabu@@cellleft - \let\tabu@cellright \tabu@@cellright - \let\tabu@thevline \tabu@@thevline}}}% - \expandafter}\the\toks@ -}% \tabuphantomline -%% \firsthline and \lasthline corrections --------------------------- -\def\tabu@firstline {\tabu@hlineAZ \tabu@firsthlinecorrection {}} -\def\tabu@firsthline{\tabu@hlineAZ \tabu@firsthlinecorrection \hline} -\def\tabu@lastline {\tabu@hlineAZ \tabu@lasthlinecorrection {}} -\def\tabu@lasthline {\tabu@hlineAZ \tabu@lasthlinecorrection \hline} -\def\tabu@hline {% replaces \hline if no colortbl (see \AtBeginDocument) - \noalign{\ifnum0=`}\fi - {\CT@arc@\hrule height\arrayrulewidth}% - \futurelet \tabu@temp \tabu@xhline -}% \tabu@hline -\def\tabu@xhline{% - \ifx \tabu@temp \hline - {\ifx \CT@drsc@\relax \vskip - \else\ifx \CT@drsc@\@empty \vskip - \else \CT@drsc@\hrule height - \fi\fi - \doublerulesep}% - \fi - \ifnum0=`{\fi}% -}% \tabu@xhline -\def\tabu@hlineAZ #1#2{\noalign{\ifnum0=`}\fi \dimen@ \z@ \count@ \z@ - \toks@{}\def\tabu@hlinecorrection{#1}\def\tabu@temp{#2}% - \tabu@hlineAZsurround -}% \tabu@hlineAZ -\newcommand*\tabu@hlineAZsurround[1][\extratabsurround]{% - \extratabsurround #1\let\tabucline \tabucline@scan - \let\hline \tabu@hlinescan \let\firsthline \hline - \let\cline \tabu@clinescan \let\lasthline \hline - \expandafter \futurelet \expandafter \tabu@temp - \expandafter \tabu@nexthlineAZ \tabu@temp -}% \tabu@hlineAZsurround -\def\tabu@hlinescan {\tabu@thick \arrayrulewidth \tabu@xhlineAZ \hline} -\def\tabu@clinescan #1{\tabu@thick \arrayrulewidth \tabu@xhlineAZ {\cline{#1}}} -\def\tabucline@scan{\@testopt \tabucline@sc@n {}} -\def\tabucline@sc@n #1[#2]{\tabu@xhlineAZ {\tabucline[{#1}]{#2}}} -\def\tabu@nexthlineAZ{% - \ifx \tabu@temp\hline \else - \ifx \tabu@temp\cline \else - \ifx \tabu@temp\tabucline \else - \tabu@hlinecorrection - \fi\fi\fi -}% \tabu@nexthlineAZ -\def\tabu@xhlineAZ #1{% - \toks@\expandafter{\the\toks@ #1}% - \@tempdimc \tabu@thick % The last line width - \ifcase\count@ \@tempdimb \tabu@thick % The first line width - \else \advance\dimen@ \dimexpr \tabu@thick+\doublerulesep \relax - \fi - \advance\count@ \@ne \futurelet \tabu@temp \tabu@nexthlineAZ -}% \tabu@xhlineAZ -\def\tabu@firsthlinecorrection{% \count@ = number of \hline -1 - \@tempdima \dimexpr \ht\@arstrutbox+\dimen@ - \edef\firsthline{% - \omit \hbox to\z@{\hss{\noexpand\tabu@DBG{yellow}\vrule - height \the\dimexpr\@tempdima+\extratabsurround - depth \dp\@arstrutbox - width \tabustrutrule}\hss}\cr - \noalign{\vskip -\the\dimexpr \@tempdima+\@tempdimb - +\dp\@arstrutbox \relax}% - \the\toks@ - }\ifnum0=`{\fi - \expandafter}\firsthline % we are then ! -}% \tabu@firsthlinecorrection -\def\tabu@lasthlinecorrection{% - \@tempdima \dimexpr \dp\@arstrutbox+\dimen@+\@tempdimb+\@tempdimc - \edef\lasthline{% - \the\toks@ - \noalign{\vskip -\the\dimexpr\dimen@+\@tempdimb+\dp\@arstrutbox}% - \omit \hbox to\z@{\hss{\noexpand\tabu@DBG{yellow}\vrule - depth \the\dimexpr \dp\@arstrutbox+\@tempdimb+\dimen@ - +\extratabsurround-\@tempdimc - height \z@ - width \tabustrutrule}\hss}\cr - }\ifnum0=`{\fi - \expandafter}\lasthline % we are then ! -}% \tabu@lasthlinecorrection -\def\tabu@LT@@hline{% - \ifx\LT@next\hline - \global\let\LT@next \@gobble - \ifx \CT@drsc@\relax - \gdef\CT@LT@sep{% - \noalign{\penalty-\@medpenalty\vskip\doublerulesep}}% - \else - \gdef\CT@LT@sep{% - \multispan\LT@cols{% - \CT@drsc@\leaders\hrule\@height\doublerulesep\hfill}\cr}% - \fi - \else - \global\let\LT@next\empty - \gdef\CT@LT@sep{% - \noalign{\penalty-\@lowpenalty\vskip-\arrayrulewidth}}% - \fi - \ifnum0=`{\fi}% - \multispan\LT@cols - {\CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill}\cr - \CT@LT@sep - \multispan\LT@cols - {\CT@arc@\leaders\hrule\@height\arrayrulewidth\hfill}\cr - \noalign{\penalty\@M}% - \LT@next -}% \tabu@LT@@hline -%% Horizontal lines : \tabucline ------------------------------------ -\let\tabu@start \@tempcnta -\let\tabu@stop \@tempcntb -\newcommand*\tabucline{\noalign{\ifnum0=`}\fi \tabu@cline} -\newcommand*\tabu@cline[2][]{\tabu@startstop{#2}% - \ifnum \tabu@stop<\z@ \toks@{}% - \else \tabu@clinearg{#1}\tabu@thestyle - \edef\tabucline{\toks@{% - \ifnum \tabu@start>\z@ \omit - \tabu@multispan\tabu@start {\span\omit}&\fi - \omit \tabu@multispan\tabu@stop {\span\omit}% - \tabu@thehline\cr - }}\tabucline - \tabu@tracinglines{(tabu:tabucline) Style: #1^^J\the\toks@^^J^^J}% - \fi - \futurelet \tabu@temp \tabu@xcline -}% \tabu@cline -\def\tabu@clinearg #1{% - \ifx\\#1\\\let\tabu@thestyle \tabu@ls@ - \else \@defaultunits \expandafter\let\expandafter\@tempa - \romannumeral-`\0#1\relax \@nnil - \ifx \hbox\@tempa \tabu@clinebox{#1}% - \else\ifx \box\@tempa \tabu@clinebox{#1}% - \else\ifx \vbox\@tempa \tabu@clinebox{#1}% - \else\ifx \vtop\@tempa \tabu@clinebox{#1}% - \else\ifx \copy\@tempa \tabu@clinebox{#1}% - \else\ifx \leaders\@tempa \tabu@clineleads{#1}% - \else\ifx \cleaders\@tempa \tabu@clineleads{#1}% - \else\ifx \xleaders\@tempa \tabu@clineleads{#1}% - \else\tabu@getline {#1}% - \fi\fi\fi\fi\fi\fi\fi\fi - \fi -}% \tabu@clinearg -\def\tabu@clinebox #1{\tabu@clineleads{\xleaders#1\hss}} -\def\tabu@clineleads #1{% - \let\tabu@thestyle \relax \let\tabu@leaders \@undefined - \gdef\tabu@thehrule{#1}} -\def\tabu@thehline{\begingroup - \ifdefined\tabu@leaders - \noexpand\tabu@thehleaders - \else \noexpand\tabu@thehrule - \fi \endgroup -}% \tabu@thehline -\def\tabu@xcline{% - \ifx \tabu@temp\tabucline - \toks@\expandafter{\the\toks@ \noalign - {\ifx\CT@drsc@\relax \vskip - \else \CT@drsc@\hrule height - \fi - \doublerulesep}}% - \fi - \tabu@docline -}% \tabu@xcline -\def\tabu@docline {\ifnum0=`{\fi \expandafter}\the\toks@} -\def\tabu@docline@evr {\xdef\tabu@doclineafter{\the\toks@}% - \ifnum0=`{\fi}\aftergroup\tabu@doclineafter} -\def\tabu@multispan #1#2{% - \ifnum\numexpr#1>\@ne #2\expandafter\tabu@multispan - \else \expandafter\@gobbletwo - \fi {#1-1}{#2}% -}% \tabu@multispan -\def\tabu@startstop #1{\tabu@start@stop #1\relax 1-\tabu@nbcols \@nnil} -\def\tabu@start@stop #1-#2\@nnil{% - \@defaultunits \tabu@start\number 0#1\relax \@nnil - \@defaultunits \tabu@stop \number 0#2\relax \@nnil - \tabu@stop \ifnum \tabu@start>\tabu@nbcols \m@ne - \else\ifnum \tabu@stop=\z@ \tabu@nbcols - \else\ifnum \tabu@stop>\tabu@nbcols \tabu@nbcols - \else \tabu@stop - \fi\fi\fi - \advance\tabu@start \m@ne - \ifnum \tabu@start>\z@ \advance\tabu@stop -\tabu@start \fi -}% \tabu@start@stop -%% Numbers: siunitx S columns (and \tabudecimal) ------------------- -\def\tabu@tabudecimal #1{% - \def\tabu@decimal{#1}\@temptokena{}% - \let\tabu@getdecimal@ \tabu@getdecimal@ignorespaces - \tabu@scandecimal -}% \tabu@tabudecimal -\def\tabu@scandecimal{\futurelet \tabu@temp \tabu@getdecimal@} -\def\tabu@skipdecimal#1{#1\tabu@scandecimal} -\def\tabu@getdecimal@ignorespaces{% - \ifcase 0\ifx\tabu@temp\ignorespaces\else - \ifx\tabu@temp\@sptoken1\else - 2\fi\fi\relax - \let\tabu@getdecimal@ \tabu@getdecimal - \expandafter\tabu@skipdecimal - \or \expandafter\tabu@gobblespace\expandafter\tabu@scandecimal - \else \expandafter\tabu@skipdecimal - \fi -}% \tabu@getdecimal@ignorespaces -\def\tabu@get@decimal#1{\@temptokena\expandafter{\the\@temptokena #1}% - \tabu@scandecimal} -\def\do#1{% - \def\tabu@get@decimalspace#1{% - \@temptokena\expandafter{\the\@temptokena #1}\tabu@scandecimal}% -}\do{ } -\let\tabu@@tabudecimal \tabu@tabudecimal -\def\tabu@getdecimal{% - \ifcase 0\ifx 0\tabu@temp\else - \ifx 1\tabu@temp\else - \ifx 2\tabu@temp\else - \ifx 3\tabu@temp\else - \ifx 4\tabu@temp\else - \ifx 5\tabu@temp\else - \ifx 6\tabu@temp\else - \ifx 7\tabu@temp\else - \ifx 8\tabu@temp\else - \ifx 9\tabu@temp\else - \ifx .\tabu@temp\else - \ifx ,\tabu@temp\else - \ifx -\tabu@temp\else - \ifx +\tabu@temp\else - \ifx e\tabu@temp\else - \ifx E\tabu@temp\else - \ifx\tabu@cellleft\tabu@temp1\else - \ifx\ignorespaces\tabu@temp1\else - \ifx\@sptoken\tabu@temp2\else - 3\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\fi\relax - \expandafter\tabu@get@decimal - \or \expandafter\tabu@skipdecimal - \or \expandafter\tabu@get@decimalspace - \else\expandafter\tabu@printdecimal - \fi -}% \tabu@getdecimal -\def\tabu@printdecimal{% - \edef\tabu@temp{\the\@temptokena}% - \ifx\tabu@temp\@empty\else - \ifx\tabu@temp\space\else - \expandafter\tabu@decimal\expandafter{\the\@temptokena}% - \fi\fi -}% \tabu@printdecimal -%% Verbatim inside X columns ---------------------------------------- -\def\tabu@verbatim{% - \let\verb \tabu@verb - \let\FV@DefineCheckEnd \tabu@FV@DefineCheckEnd -}% \tabu@verbatim -\let\tabu@ltx@verb \verb -\def\tabu@verb{\@ifstar {\tabu@ltx@verb*} \tabu@ltx@verb} -\def\tabu@fancyvrb {% - \def\tabu@FV@DefineCheckEnd ##1{% - \def\tabu@FV@DefineCheckEnd{% - ##1% - \let\FV@CheckEnd \tabu@FV@CheckEnd - \let\FV@@CheckEnd \tabu@FV@@CheckEnd - \let\FV@@@CheckEnd \tabu@FV@@@CheckEnd - \edef\FV@EndScanning{% - \def\noexpand\next{\noexpand\end{\FV@EnvironName}}% - \global\let\noexpand\FV@EnvironName\relax - \noexpand\next}% - \xdef\FV@EnvironName{\detokenize\expandafter{\FV@EnvironName}}}% - }\expandafter\tabu@FV@DefineCheckEnd\expandafter{\FV@DefineCheckEnd} -}% \tabu@fancyvrb -\def\tabu@FV@CheckEnd #1{\expandafter\FV@@CheckEnd \detokenize{#1\end{}}\@nil} -\edef\tabu@FV@@@CheckEnd {\detokenize{\end{}}} -\begingroup -\catcode`\[1 \catcode`\]2 -\@makeother\{ \@makeother\} - \edef\x[\endgroup - \def\noexpand\tabu@FV@@CheckEnd ##1\detokenize[\end{]##2\detokenize[}]##3% - ]\x \@nil{\def\@tempa{#2}\def\@tempb{#3}} -\def\tabu@FV@ListProcessLine #1{% - \hbox {%to \hsize{% - \kern\leftmargin - \hbox {%to \linewidth{% - \FV@LeftListNumber - \FV@LeftListFrame - \FancyVerbFormatLine{#1}\hss -%% DG/SR modification begin - Jan. 28, 1998 (for numbers=right add-on) -%% \FV@RightListFrame}% - \FV@RightListFrame - \FV@RightListNumber}% -%% DG/SR modification end - \hss}} -%% \savetabu -------------------------------------------------------- -\newcommand*\savetabu[1]{\noalign{% - \tabu@sanitizearg{#1}\tabu@temp - \ifx \tabu@temp\@empty \tabu@savewarn{}{The tabu will not be saved}\else - \@ifundefined{tabu@saved@\tabu@temp}{}{\tabu@savewarn{#1}{Overwriting}}% - \ifdefined\tabu@restored \expandafter\let - \csname tabu@saved@\tabu@temp \endcsname \tabu@restored - \else {\tabu@save}% - \fi - \fi}% -}% \savetabu -\def\tabu@save {% - \toks0\expandafter{\tabu@saved@}% - \iftabu@negcoef - \let\tabu@wddef \relax \let\tabu@ \tabu@savewd \edef\tabu@savewd{\tabu@Xcoefs}% - \toks0\expandafter{\the\toks\expandafter0\tabu@savewd}\fi - \toks1\expandafter{\tabu@savedpream}% - \toks2\expandafter{\tabu@savedpreamble}% - \let\@preamble \relax - \let\tabu@savedpream \relax \let\tabu@savedparams \relax - \edef\tabu@preamble{% - \def\noexpand\tabu@aligndefault{\tabu@align}% - \def\tabu@savedparams {\noexpand\the\toks0}% - \def\tabu@savedpream {\noexpand\the\toks1}}% - \edef\tabu@usetabu{% - \def\@preamble {\noexpand\the\toks2}% - \tabu@target \the\tabu@target \relax - \tabucolX \the\tabucolX \relax - \tabu@nbcols \the\tabu@nbcols \relax - \def\noexpand\tabu@aligndefault{\tabu@align}% - \def\tabu@savedparams {\noexpand\the\toks0}% - \def\tabu@savedpream {\noexpand\the\toks1}}% - \let\tabu@aligndefault \relax \let\@sharp \relax - \edef\@tempa{\noexpand\tabu@s@ved - {\tabu@usetabu} - {\tabu@preamble} - {\the\toks1}}\@tempa - \tabu@message@save -}% \tabu@save -\long\def\tabu@s@ved #1#2#3{% - \def\tabu@usetabu{#1}% - \expandafter\gdef\csname tabu@saved@\tabu@temp\endcsname ##1{% - \ifodd ##1% \usetabu - \tabu@measuringfalse \tabu@spreadfalse % Just in case... - \gdef\tabu@usetabu {% - \ifdim \tabu@target>\z@ \tabu@warn@usetabu \fi - \global\let\tabu@usetabu \@undefined - \def\@halignto {to\tabu@target}% - #1% - \ifx \tabu@align\tabu@aligndefault@text - \ifnum \tabu@nested=\z@ - \let\tabu@align \tabu@aligndefault \fi\fi}% - \else % \preamble - \gdef\tabu@preamble {% - \global\let\tabu@preamble \@undefined - #2% - \ifx \tabu@align\tabu@aligndefault@text - \ifnum \tabu@nested=\z@ - \let\tabu@align \tabu@aligndefault \fi\fi}% - \fi - #3}% -}% \tabu@s@ved -\def\tabu@aligndefault@text {\tabu@aligndefault}% -\def\tabu@warn@usetabu {\PackageWarning{tabu} - {Specifying a target with \string\usetabu\space is useless - \MessageBreak The target cannot be changed!}} -\def\tabu@savewd #1#2{\ifdim #2\p@<\z@ \tabu@wddef{#1}{\tabu@wd{#1}}\fi} -\def\tabu@savewarn#1#2{\PackageInfo{tabu} - {User-name `#1' already used for \string\savetabu - \MessageBreak #2}}% -\def\tabu@saveerr#1{\PackageError{tabu} - {User-name `#1' is unknown for \string\usetabu - \MessageBreak I cannot restore an unknown preamble!}\@ehd} -%% \rowfont --------------------------------------------------------- -\newskip \tabu@cellskip -\def\tabu@rowfont{\ifdim \baselineskip=\z@\noalign\fi - {\ifnum0=`}\fi \tabu@row@font} -\newcommand*\tabu@row@font[2][]{% - \ifnum7=\currentgrouptype - \global\let\tabu@@cellleft \tabu@cellleft - \global\let\tabu@@cellright \tabu@cellright - \global\let\tabu@@celllalign \tabu@celllalign - \global\let\tabu@@cellralign \tabu@cellralign - \global\let\tabu@@rowfontreset\tabu@rowfontreset - \fi - \global\let\tabu@rowfontreset \tabu@rowfont@reset - \expandafter\gdef\expandafter\tabu@cellleft\expandafter{\tabu@cellleft #2}% - \ifcsname tabu@cell@#1\endcsname % row alignment - \csname tabu@cell@#1\endcsname \fi - \ifnum0=`{\fi}% end of group / noalign group -}% \rowfont -\def\tabu@ifcolorleavevmode #1{\let\color \tabu@leavevmodecolor #1\let\color\tabu@color}% -\def\tabu@rowfont@reset{% - \global\let\tabu@rowfontreset \tabu@@rowfontreset - \global\let\tabu@cellleft \tabu@@cellleft - \global\let\tabu@cellright \tabu@@cellright - \global\let\tabu@cellfont \@empty - \global\let\tabu@celllalign \tabu@@celllalign - \global\let\tabu@cellralign \tabu@@cellralign -}% \tabu@@rowfontreset -\let\tabu@rowfontreset \@empty % overwritten \AtBeginDocument if colortbl -%% \tabu@prepnext@tok ----------------------------------------------- -\newif \iftabu@cellright -\def\tabu@prepnext@tok{% - \ifnum \count@<\z@ % - \@tempcnta \@M % - \tabu@nbcols\z@ - \let\tabu@fornoopORI \@fornoop - \tabu@cellrightfalse - \else - \ifcase \numexpr \count@-\@tempcnta \relax % (case 0): prev. token is left - \advance \tabu@nbcols \@ne - \iftabu@cellright % before-previous token is right and is finished - \tabu@cellrightfalse % - \tabu@righttok - \fi - \tabu@lefttok - \or % (case 1) previous token is right - \tabu@cellrighttrue \let\@fornoop \tabu@lastnoop - \else % special column: do not change the token - \iftabu@cellright % before-previous token is right - \tabu@cellrightfalse - \tabu@righttok - \fi - \fi % \ifcase - \fi - \tabu@prepnext@tokORI -}% \tabu@prepnext@tok -\long\def\tabu@lastnoop#1\@@#2#3{\tabu@lastn@@p #2\@nextchar \in@\in@@} -\def\tabu@lastn@@p #1\@nextchar #2#3\in@@{% - \ifx \in@#2\else - \let\@fornoop \tabu@fornoopORI - \xdef\tabu@mkpreambuffer{\tabu@nbcols\the\tabu@nbcols \tabu@mkpreambuffer}% - \toks0\expandafter{\expandafter\tabu@everyrowtrue \the\toks0}% - \expandafter\prepnext@tok - \fi -}% \tabu@lastnoop -\def\tabu@righttok{% - \advance \count@ \m@ne - \toks\count@\expandafter {\the\toks\count@ \tabu@cellright \tabu@cellralign}% - \advance \count@ \@ne -}% \tabu@righttok -\def\tabu@lefttok{\toks\count@\expandafter{\expandafter\tabu@celllalign - \the\toks\count@ \tabu@cellleft}% after because of $ -}% \tabu@lefttok -%% Neutralisation of glues ------------------------------------------ -\let\tabu@cellleft \@empty -\let\tabu@cellright \@empty -\tabu@celllalign@def{\tabu@cellleft}% -\let\tabu@cellralign \@empty -\def\tabu@cell@align #1#2#3{% - \let\tabu@maybesiunitx \toks@ \tabu@celllalign - \global \expandafter \tabu@celllalign@def \expandafter {\the\toks@ #1}% - \toks@\expandafter{\tabu@cellralign #2}% - \xdef\tabu@cellralign{\the\toks@}% - \toks@\expandafter{\tabu@cellleft #3}% - \xdef\tabu@cellleft{\the\toks@}% -}% \tabu@cell@align -\def\tabu@cell@l{% force alignment to left - \tabu@cell@align - {\tabu@removehfil \raggedright \tabu@cellleft}% left - {\tabu@flush1\tabu@ignorehfil}% right - \raggedright -}% \tabu@cell@l -\def\tabu@cell@c{% force alignment to center - \tabu@cell@align - {\tabu@removehfil \centering \tabu@flush{.5}\tabu@cellleft} - {\tabu@flush{.5}\tabu@ignorehfil} - \centering -}% \tabu@cell@c -\def\tabu@cell@r{% force alignment to right - \tabu@cell@align - {\tabu@removehfil \raggedleft \tabu@flush1\tabu@cellleft} - \tabu@ignorehfil - \raggedleft -}% \tabu@cell@r -\def\tabu@cell@j{% force justification (for p, m, b columns) - \tabu@cell@align - {\tabu@justify\tabu@cellleft} - {} - \tabu@justify -}% \tabu@cell@j -\def\tabu@justify{% - \leftskip\z@skip \@rightskip\leftskip \rightskip\@rightskip - \parfillskip\@flushglue -}% \tabu@justify -%% ragged2e settings -\def\tabu@cell@L{% force alignment to left (ragged2e) - \tabu@cell@align - {\tabu@removehfil \RaggedRight \tabu@cellleft} - {\tabu@flush 1\tabu@ignorehfil} - \RaggedRight -}% \tabu@cell@L -\def\tabu@cell@C{% force alignment to center (ragged2e) - \tabu@cell@align - {\tabu@removehfil \Centering \tabu@flush{.5}\tabu@cellleft} - {\tabu@flush{.5}\tabu@ignorehfil} - \Centering -}% \tabu@cell@C -\def\tabu@cell@R{% force alignment to right (ragged2e) - \tabu@cell@align - {\tabu@removehfil \RaggedLeft \tabu@flush 1\tabu@cellleft} - \tabu@ignorehfil - \RaggedLeft -}% \tabu@cell@R -\def\tabu@cell@J{% force justification (ragged2e) - \tabu@cell@align - {\justifying \tabu@cellleft} - {} - \justifying -}% \tabu@cell@J -\def\tabu@flush#1{% - \iftabu@colortbl % colortbl uses \hfill rather than \hfil - \hskip \ifnum13<\currentgrouptype \stretch{#1}% - \else \ifdim#1pt<\p@ \tabu@cellskip - \else \stretch{#1} - \fi\fi \relax - \else % array.sty - \ifnum 13<\currentgrouptype - \hfil \hskip1sp \relax \fi - \fi -}% \tabu@flush -\let\tabu@hfil \hfil -\let\tabu@hfill \hfill -\let\tabu@hskip \hskip -\def\tabu@removehfil{% - \iftabu@colortbl - \unkern \tabu@cellskip =\lastskip - \ifnum\gluestretchorder\tabu@cellskip =\tw@ \hskip-\tabu@cellskip - \else \tabu@cellskip \z@skip - \fi - \else - \ifdim\lastskip=1sp\unskip\fi - \ifnum\gluestretchorder\lastskip =\@ne - \hfilneg % \hfilneg for array.sty but not for colortbl... - \fi - \fi -}% \tabu@removehfil -\def\tabu@ignorehfil{\aftergroup \tabu@nohfil} -\def\tabu@nohfil{% \hfil -> do nothing + restore original \hfil - \def\hfil{\let\hfil \tabu@hfil}% local to (alignment template) group -}% \tabu@nohfil -\def\tabu@colortblalignments {% if colortbl - \def\tabu@nohfil{% - \def\hfil {\let\hfil \tabu@hfil}% local to (alignment template) group - \def\hfill {\let\hfill \tabu@hfill}% (colortbl uses \hfill) pfff... - \def\hskip ####1\relax{\let\hskip \tabu@hskip}}% local -}% \tabu@colortblalignments -%% Taking care of footnotes and hyperfootnotes ---------------------- -\long\def\tabu@footnotetext #1{% - \edef\@tempa{\the\tabu@footnotes - \noexpand\footnotetext [\the\csname c@\@mpfn\endcsname]}% - \global\tabu@footnotes\expandafter{\@tempa {#1}}}% -\long\def\tabu@xfootnotetext [#1]#2{% - \global\tabu@footnotes\expandafter{\the\tabu@footnotes - \footnotetext [{#1}]{#2}}} -\let\tabu@xfootnote \@xfootnote -\long\def\tabu@Hy@ftntext{\tabu@Hy@ftntxt {\the \c@footnote }} -\long\def\tabu@Hy@xfootnote [#1]{% - \begingroup - \value\@mpfn #1\relax - \protected@xdef \@thefnmark {\thempfn}% - \endgroup - \@footnotemark \tabu@Hy@ftntxt {#1}% -}% \tabu@Hy@xfootnote -\long\def\tabu@Hy@ftntxt #1#2{% - \edef\@tempa{% - \the\tabu@footnotes - \begingroup - \value\@mpfn #1\relax - \noexpand\protected@xdef\noexpand\@thefnmark {\noexpand\thempfn}% - \expandafter \noexpand \expandafter - \tabu@Hy@footnotetext \expandafter{\Hy@footnote@currentHref}% - }% - \global\tabu@footnotes\expandafter{\@tempa {#2}% - \endgroup}% -}% \tabu@Hy@ftntxt -\long\def\tabu@Hy@footnotetext #1#2{% - \H@@footnotetext{% - \ifHy@nesting - \hyper@@anchor {#1}{#2}% - \else - \Hy@raisedlink{% - \hyper@@anchor {#1}{\relax}% - }% - \def\@currentHref {#1}% - \let\@currentlabelname \@empty - #2% - \fi - }% -}% \tabu@Hy@footnotetext -%% No need for \arraybackslash ! ------------------------------------ -\def\tabu@latextwoe {% -\def\tabu@temp##1##2##3{{\toks@\expandafter{##2##3}\xdef##1{\the\toks@}}} -\tabu@temp \tabu@centering \centering \arraybackslash -\tabu@temp \tabu@raggedleft \raggedleft \arraybackslash -\tabu@temp \tabu@raggedright \raggedright \arraybackslash -}% \tabu@latextwoe -\def\tabu@raggedtwoe {% -\def\tabu@temp ##1##2##3{{\toks@\expandafter{##2##3}\xdef##1{\the\toks@}}} -\tabu@temp \tabu@Centering \Centering \arraybackslash -\tabu@temp \tabu@RaggedLeft \RaggedLeft \arraybackslash -\tabu@temp \tabu@RaggedRight \RaggedRight \arraybackslash -\tabu@temp \tabu@justifying \justifying \arraybackslash -}% \tabu@raggedtwoe -\def\tabu@normalcrbackslash{\let\\\@normalcr} -\def\tabu@trivlist{\expandafter\def\expandafter\@trivlist\expandafter{% - \expandafter\tabu@normalcrbackslash \@trivlist}} -%% Utilities: \fbox \fcolorbox and \tabudecimal ------------------- -\def\tabu@fbox {\leavevmode\afterassignment\tabu@beginfbox \setbox\@tempboxa\hbox} -\def\tabu@beginfbox {\bgroup \kern\fboxsep - \bgroup\aftergroup\tabu@endfbox} -\def\tabu@endfbox {\kern\fboxsep\egroup\egroup - \@frameb@x\relax} -\def\tabu@color@b@x #1#2{\leavevmode \bgroup - \def\tabu@docolor@b@x{#1{#2\color@block{\wd\z@}{\ht\z@}{\dp\z@}\box\z@}}% - \afterassignment\tabu@begincolor@b@x \setbox\z@ \hbox -}% \tabu@color@b@x -\def\tabu@begincolor@b@x {\kern\fboxsep \bgroup - \aftergroup\tabu@endcolor@b@x \set@color} -\def\tabu@endcolor@b@x {\kern\fboxsep \egroup - \dimen@\ht\z@ \advance\dimen@ \fboxsep \ht\z@ \dimen@ - \dimen@\dp\z@ \advance\dimen@ \fboxsep \dp\z@ \dimen@ - \tabu@docolor@b@x \egroup -}% \tabu@endcolor@b@x -%% Corrections (arydshln, delarray, colortbl) ----------------------- -\def\tabu@fix@arrayright {%% \@arrayright is missing from \endarray - \iftabu@colortbl - \ifdefined\adl@array % - \def\tabu@endarray{% - \adl@endarray \egroup \adl@arrayrestore \CT@end \egroup % - \@arrayright % - \gdef\@preamble{}}% - \else % - \def\tabu@endarray{% - \crcr \egroup \egroup % - \@arrayright % - \gdef\@preamble{}\CT@end}% - \fi - \else - \ifdefined\adl@array % - \def\tabu@endarray{% - \adl@endarray \egroup \adl@arrayrestore \egroup % - \@arrayright % - \gdef\@preamble{}}% - \else % - \PackageWarning{tabu} - {\string\@arrayright\space is missing from the - \MessageBreak definition of \string\endarray. - \MessageBreak Compatibility with delarray.sty is broken.}% - \fi\fi -}% \tabu@fix@arrayright -\def\tabu@adl@xarraydashrule #1#2#3{% - \ifnum\@lastchclass=\adl@class@start\else - \ifnum\@lastchclass=\@ne\else - \ifnum\@lastchclass=5 \else % @-arg (class 5) and !-arg (class 1) - \adl@leftrulefalse \fi\fi % must be treated the same - \fi - \ifadl@zwvrule\else \ifadl@inactive\else - \@addtopreamble{\vrule\@width\arrayrulewidth - \@height\z@ \@depth\z@}\fi \fi - \ifadl@leftrule - \@addtopreamble{\adl@vlineL{\CT@arc@}{\adl@dashgapcolor}% - {\number#1}#3}% - \else \@addtopreamble{\adl@vlineR{\CT@arc@}{\adl@dashgapcolor}% - {\number#2}#3} - \fi -}% \tabu@adl@xarraydashrule -\def\tabu@adl@act@endpbox {% - \unskip \ifhmode \nobreak \fi \@finalstrut \@arstrutbox - \egroup \egroup - \adl@colhtdp \box\adl@box \hfil -}% \tabu@adl@act@endpbox -\def\tabu@adl@fix {% - \let\adl@xarraydashrule \tabu@adl@xarraydashrule % arydshln - \let\adl@act@endpbox \tabu@adl@act@endpbox % arydshln - \let\adl@act@@endpbox \tabu@adl@act@endpbox % arydshln - \let\@preamerror \@preamerr % arydshln -}% \tabu@adl@fix -%% Correction for longtable' \@startbox definition ------------------ -%% => \everypar is ``missing'' : TeX should be in vertical mode -\def\tabu@LT@startpbox #1{% - \bgroup - \let\@footnotetext\LT@p@ftntext - \setlength\hsize{#1}% - \@arrayparboxrestore - \everypar{% - \vrule \@height \ht\@arstrutbox \@width \z@ - \everypar{}}% -}% \tabu@LT@startpbox -%% \tracingtabu and the package options ------------------ -\DeclareOption{delarray}{\AtEndOfPackage{\RequirePackage{delarray}}} -\DeclareOption{linegoal}{% - \AtEndOfPackage{% - \RequirePackage{linegoal}[2010/12/07]% - \let\tabudefaulttarget \linegoal% \linegoal is \linewidth if not pdfTeX -}} -\DeclareOption{scantokens}{\tabuscantokenstrue} -\DeclareOption{debugshow}{\AtEndOfPackage{\tracingtabu=\tw@}} -\def\tracingtabu {\begingroup\@ifnextchar=% - {\afterassignment\tabu@tracing\count@} - {\afterassignment\tabu@tracing\count@1\relax}} -\def\tabu@tracing{\expandafter\endgroup - \expandafter\tabu@tr@cing \the\count@ \relax -}% \tabu@tracing -\def\tabu@tr@cing #1\relax {% - \ifnum#1>\thr@@ \let\tabu@tracinglines\message - \else \let\tabu@tracinglines\@gobble - \fi - \ifnum#1>\tw@ \let\tabu@DBG \tabu@@DBG - \def\tabu@mkarstrut {\tabu@DBG@arstrut}% - \tabustrutrule 1.5\p@ - \else \let\tabu@DBG \@gobble - \def\tabu@mkarstrut {\tabu@arstrut}% - \tabustrutrule \z@ - \fi - \ifnum#1>\@ne \let\tabu@debug \message - \else \let\tabu@debug \@gobble - \fi - \ifnum#1>\z@ - \let\tabu@message \message - \let\tabu@tracing@save \tabu@message@save - \let\tabu@starttimer \tabu@pdftimer - \else - \let\tabu@message \@gobble - \let\tabu@tracing@save \@gobble - \let\tabu@starttimer \relax - \fi -}% \tabu@tr@cing -%% Setup \AtBeginDocument -\AtBeginDocument{\tabu@AtBeginDocument} -\def\tabu@AtBeginDocument{\let\tabu@AtBeginDocument \@undefined - \ifdefined\arrayrulecolor \tabu@colortbltrue % - \tabu@colortblalignments % different glues are used - \else \tabu@colortblfalse \fi - \ifdefined\CT@arc@ \else \let\CT@arc@ \relax \fi - \ifdefined\CT@drsc@\else \let\CT@drsc@ \relax \fi - \let\tabu@arc@L \CT@arc@ \let\tabu@drsc@L \CT@drsc@ - \ifodd 1\ifcsname siunitx_table_collect_begin:Nn\endcsname % - \expandafter\ifx - \csname siunitx_table_collect_begin:Nn\endcsname\relax 0\fi\fi\relax - \tabu@siunitxtrue - \else \let\tabu@maybesiunitx \@firstofone % - \let\tabu@siunitx \tabu@nosiunitx - \tabu@siunitxfalse - \fi - \ifdefined\adl@array % - \else \let\tabu@adl@fix \relax - \let\tabu@adl@endtrial \@empty \fi - \ifdefined\longtable % - \else \let\longtabu \tabu@nolongtabu \fi - \ifdefined\cellspacetoplimit \tabu@warn@cellspace\fi - \csname\ifcsname ifHy@hyperfootnotes\endcsname % - ifHy@hyperfootnotes\else iffalse\fi\endcsname - \let\tabu@footnotetext \tabu@Hy@ftntext - \let\tabu@xfootnote \tabu@Hy@xfootnote \fi - \ifdefined\FV@DefineCheckEnd% - \tabu@fancyvrb \fi - \ifdefined\color % - \let\tabu@color \color - \def\tabu@leavevmodecolor ##1{% - \def\tabu@leavevmodecolor {\leavevmode ##1}% - }\expandafter\tabu@leavevmodecolor\expandafter{\color}% - \else - \let\tabu@color \tabu@nocolor - \let\tabu@leavevmodecolor \@firstofone \fi - \tabu@latextwoe - \ifdefined\@raggedtwoe@everyselectfont % - \tabu@raggedtwoe - \else - \let\tabu@cell@L \tabu@cell@l - \let\tabu@cell@R \tabu@cell@r - \let\tabu@cell@C \tabu@cell@c - \let\tabu@cell@J \tabu@cell@j \fi - \expandafter\in@ \expandafter\@arrayright \expandafter{\endarray}% - \ifin@ \let\tabu@endarray \endarray - \else \tabu@fix@arrayright \fi% - \everyrow{}% -}% \tabu@AtBeginDocument -\def\tabu@warn@cellspace{% - \PackageWarning{tabu}{% - Package cellspace has some limitations - \MessageBreak And redefines some macros of array.sty. - \MessageBreak Please use \string\tabulinesep\space to control - \MessageBreak vertical spacing of lines inside tabu environment}% -}% \tabu@warn@cellspace -%% tabu Package initialisation -\tabuscantokensfalse -\let\tabu@arc@G \relax -\let\tabu@drsc@G \relax -\let\tabu@evr@G \@empty -\let\tabu@rc@G \@empty -\def\tabu@ls@G {\tabu@linestyle@}% -\let\tabu@@rowfontreset \@empty % -\let\tabu@@celllalign \@empty -\let\tabu@@cellralign \@empty -\let\tabu@@cellleft \@empty -\let\tabu@@cellright \@empty -\def\tabu@naturalXmin {\z@} -\def\tabu@naturalXmax {\z@} -\let\tabu@rowfontreset \@empty -\def\tabulineon {4pt}\let\tabulineoff \tabulineon -\tabu@everyrowtrue -\ifdefined\pdfelapsedtime % - \def\tabu@pdftimer {\xdef\tabu@starttime{\the\pdfelapsedtime}}% -\else \let\tabu@pdftimer \relax \let\tabu@message@etime \relax -\fi -\tracingtabu=\z@ -\newtabulinestyle {=\maxdimen}% creates the 'factory' settings \tabu@linestyle@ -\tabulinestyle{} -\taburowcolors{} -\let\tabudefaulttarget \linewidth -\ProcessOptions* % \ProcessOptions* is quicker ! -\endinput -%% -%% End of file `tabu.sty'.