[r-base] 03/03: Import Debian version 3.4.0-1
Ximin Luo
infinity0 at debian.org
Tue May 2 11:57:24 UTC 2017
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository r-base.
commit fd651ef6e6af3644b606b40da5029f55f03ca3f5
Author: Ximin Luo <infinity0 at debian.org>
Date: Tue May 2 13:56:14 2017 +0200
Import Debian version 3.4.0-1
---
debian/R | 493 --
debian/R.bash-completion | 28 +-
debian/changelog | 445 +-
debian/control | 10 +-
debian/icon-class-patch/R.desktop | 2 +-
debian/r-base-core.dirs | 2 +-
debian/r-base-core.maintscript | 1 +
debian/r-base-core.postinst | 16 +-
...-base-core.shlibs => r-base-core.shlibs.hidden} | 0
debian/r-cran.mk | 28 +-
debian/r-mathlib.lintian | 1 +
debian/r-mathlib.postinst | 27 +
.../{r-mathlib.shlibs => r-mathlib.shlibs.hidden} | 0
debian/rules | 54 +-
debian/updated_x11_logo.patch | 7692 ++++++++++++++++++++
15 files changed, 8255 insertions(+), 544 deletions(-)
diff --git a/debian/R b/debian/R
deleted file mode 100644
index f39a4f0..0000000
--- a/debian/R
+++ /dev/null
@@ -1,493 +0,0 @@
-### Copyright (C) 2005-2011 Deepayan Sarkar <Deepayan.Sarkar at R-project.org>
-###
-### This file provides programmable completion for R under the bash
-### shell. It is made available under the terms of the GNU General
-### Public License, version 2, or at your option, any later version,
-### incorporated herein by reference.
-###
-### This program is distributed in the hope that it will be
-### useful, but WITHOUT ANY WARRANTY; without even the implied
-### warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
-### PURPOSE. See the GNU General Public License, available at
-### http://www.gnu.org/licenses/gpl.txt, for more details.
-
-
-### NOTE: This does NOT provide completion for commands within R, only
-### for R's command-line options. For example,
-###
-### R CMD build --f[TAB]
-###
-### will complete to --force and so on. In other words, this is
-### potentially useful (for the most part) to package developers, not
-### regular users.
-
-### NEWS: Updated for R 2.4.0 (October 2006)
-
-### BUGS: As it stands, this is far from perfect. Known bugs include:
-###
-### (1) file/directory name completion doesn't work when there is a ~
-### (1) in the name. Fortunately, in such situations, one can always
-### (1) fall back to standard completion by using M-/ instead of TAB
-###
-### (2) Not all mutually exclusive options are properly handled
-###
-### (3) Doesn't test for the existence of R before defining the
-### (3) completion function (not strictly a bug, but definitely not a
-### (3) good feature)
-
-
-### INSTALLATION AND USAGE: You need to first install and enable bash
-### completion on your system to use this script. See
-###
-### http://www.caliban.org/bash/index.shtml#completion
-###
-### to learn more about bash completion. On a modern Debian system,
-### all the necessary files are already installed by the bash package.
-### To enable it, just uncomment the following lines in your .bashrc
-###
-### # if [ "$PS1" -a -f /etc/bash_completion ]; then
-### # . /etc/bash_completion
-### # fi
-###
-### or to try it out in your current shell, type
-###
-### . /etc/bash_completion
-###
-### Once you are using bash completion, you can enable completion for
-### R by similarly sourcing this file. For permanent use, place it in
-### your $BASH_COMPLETION_DIR (/etc/bash_completion.d in Debian). If
-### you don't have access to do that, copy the contents of this file
-### in it's entirety to your ~/.bash_completion, which is sourced by
-### the bash_completion script.
-
-
-
-
-_R()
-{
- local cur loneOpts helpOpts stdOpts argOpts versOpts cmds cmd furtherOpts
- local fileNames dirNames i lastToken
- # local IFS=$'\t\n'
-
- COMPREPLY=()
- cur=${COMP_WORDS[COMP_CWORD]}
-
- loneOpts='--version RHOME'
- versOpts='-v --version' # only on commands
- helpOpts='-h --help'
-
- stdOpts='--save --no-save --no-environ --no-site-file \
- --no-init-file --restore --no-restore-data --no-restore-history \
- --no-restore --vanilla --no-readline -q --quiet --silent --slave \
- --interactive --verbose -d -g --args -f -e'
-
- ## these should end with a '=' and not be followed by a space.
- ## Unfortunately, I haven't figured out how to make that work.
- ## -nospace doesn't suppress the space, and if I add = at the end,
- ## they get completed as "--debugger\= " etc. Anyway, they are
- ## kept separate in anticipation of some future fix...
-
- argOpts='--min-vsize --max-vsize --min-nsize --max-nsize \
- --encoding --max-ppsize --debugger --debugger-args \
- --gui --arch --file'
-
- cmds='BATCH COMPILE SHLIB INSTALL REMOVE build check LINK Rprof \
- Rdconv Rd2pdf Rd2txt Stangle Sweave Rdiff config javareconf rtags'
-
-
-
-
- fileNames='' # possible to have files in certain commands (e.g. BATCH)
- dirNames=''
-
-
- if [[ $COMP_CWORD -eq 1 ]] ; then
- COMPREPLY=(
- $( compgen -W "CMD $loneOpts $helpOpts $stdOpts" -- $cur )
- $( compgen -o nospace -W "$argOpts" -- $cur )
- )
- return 0
- fi
-
- ## certain tokens preclude further activity
- if [[ ${COMP_WORDS[$COMP_CWORD-1]} == @(-v|--version|RHOME|-h|--help) ]] ; then
- return 0
- fi
-
- ## more complicated stuff
- ## keep last token for use later
- lastToken=${COMP_WORDS[$COMP_CWORD-1]}
-
-
- ## if [[ $COMP_CWORD -gt 1 ]] && (implied)
- if [[ ${COMP_WORDS[1]} == "CMD" ]] ; then
-
- if [[ $COMP_CWORD -eq 2 ]] ; then
- COMPREPLY=(
- $( compgen -W "$cmds" -- $cur )
- )
- return 0
- else
-
- ## COMP_CWORD >= 3. cmd=${COMP_WORDS[2]} is (hopefully)
- ## one of $cmds. At this point, all further options
- ## (except -v|-h|RHOME etc handled above) will be assumed
- ## repeatable (except for duplicates and exclusives, to be
- ## handled later). In the next step, possible completions
- ## for each cmd will be derived.
-
- ## A largely similar derivation is also needed for the
- ## case when ${COMP_WORDS[2]} is not CMD. A similar
- ## completion list will be derived in that case.
- ## Afterwards, things will be removed from these as
- ## needed, before the final COMPREPLY is computed.
-
- cmd=${COMP_WORDS[2]}
- case $cmd in
- BATCH)
-
- ## if last word is a filename (not starting with
- ## -) then no more options are allowed, but can be
- ## followed by any file (outfile)
-
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken != -* ]] ; then
-
- furtherOpts=""
- fileNames=$( compgen -f -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- else
-
- furtherOpts="$versOpts $helpOpts $stdOpts $argOpts --no-timing"
- fileNames=$( compgen -f -X '!*.@(R|r|S|s)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
- ;;
-
- COMPILE)
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken != -* ]] ; then
-
- furtherOpts=""
- fileNames=$( compgen -f -X '!*.@(c|cc|cpp|C|f)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- else
-
- furtherOpts="$versOpts $helpOpts -D"
- fileNames=$( compgen -f -X '!*.@(c|cc|cpp|C|f)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
- ;;
-
- SHLIB)
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken != -* ]] ; then
-
- furtherOpts=""
- fileNames=$( compgen -f -X '!*.@(a|o)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- else
-
- furtherOpts="$versOpts $helpOpts -o --output -c --clean \
- --preclean -n --dry-run"
- fileNames=$( compgen -f -X '!*.@(a|o)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
-
- ;;
-
- INSTALL)
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken == @(-l|--library) ]] ; then
-
- furtherOpts=""
- dirNames=$( compgen -d -- "$cur" )
-
- else
-
- furtherOpts="$versOpts $helpOpts \
---configure-args --configure-vars -c --clean --preclean -d --debug -l \
---library --no-configure --no-docs --html --no-html --latex --example \
---fake --no-lock --lock --pkglock --build --install-tests --no-R, \
---no-libs --no-data --no-help --no-demo --no-exec --no-inst \
---no-multiarch --libs-only --data-compress --resave-data \
---compact-docs --with-keep.source --without-keep.source --byte-compile \
---no-clean-on-error"
- fileNames=$( compgen -f -X '!*.@(tar.gz|tgz)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
- ;;
-
- REMOVE)
- furtherOpts="$versOpts $helpOpts -l --library"
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken == @(-l|--library) ]] ; then
- dirNames=$( compgen -d -- "$cur" )
- fi
- ;;
-
- build)
-
- furtherOpts="$versOpts $helpOpts \
---force --keep-empty-dirs --no-vignettes --no-manual --resave-data \
---no-resave-data --compact-vignettes"
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- check)
-
- furtherOpts="$versOpts $helpOpts \
--l --library -o --outdir \
---no-clean --no-codoc --no-examples --no-install --no-tests \
---no-manual --no-vignettes --no-rebuild-vignettes --use-gct \
---use-valgrind --timings --install-args --check-subdirs \
---extra-arch --multiarch --no-multiarch --force-multiarch"
-
- fileNames=$( compgen -f -X '!*.@(tar.gz|tgz)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- LINK)
- furtherOpts="$versOpts $helpOpts"
- ;;
-
- Rprof)
- furtherOpts="$versOpts $helpOpts --total --self --min%total --min%self"
- fileNames=$( compgen -f -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- Rdconv)
-
- furtherOpts="$versOpts $helpOpts -t --type \
- --encoding --package -o --output --os --OS"
-
- fileNames=$( compgen -f -X '!*.@(Rd)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- Rd2pdf)
-
- furtherOpts="$versOpts $helpOpts --batch \
- --no-clean --no-preview --encoding --outputEncoding \
- --os --OS -o --output --force --title \
- --no-index --no-description --internals"
-
- fileNames=$( compgen -f -X '!*.@(Rd)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- Rd2txt)
- furtherOpts="$versOpts $helpOpts -t --type --encoding --package -o --output --os --OS"
- fileNames=$( compgen -f -X '!*.@(Rd)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- Sweave)
-
- ## if last word is a filename (not starting with
- ## -) then nothing more is allowed
-
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken != -* ]] ; then
-
- return 0
-
- else
-
- furtherOpts="$versOpts $helpOpts --driver --encoding --options --pdf"
- fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
- ;;
-
- Stangle)
-
- ## if last word is a filename (not starting with
- ## -) then nothing more is allowed
-
- if [[ $COMP_CWORD -gt 3 ]] && \
- [[ $lastToken != -* ]] ; then
-
- return 0
-
- else
-
- furtherOpts="$versOpts $helpOpts --encoding --options"
- fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- fi
- ;;
-
- config)
-
- if [[ $COMP_CWORD -gt 3 ]] ; then
-
- return 0
-
- else
-
- furtherOpts="$versOpts $helpOpts --ldflags --cppflags \
-BLAS_LIBS CC CFLAGS CPICFLAGS CPP CPPFLAGS CXX CXXCPP CXXFLAGS \
-CXXPICFLAGS DYLIB_EXT DYLIB_LD DYLIB_LDFLAGS F77 FFLAGS FLIBS \
-FPICFLAGS FC FCFLAGS FCPICFLAGS JAR JAVA JAVAC JAVAH JAVA_HOME \
-JAVA_LIBS JAVA_CPPFLAGS LAPACK_LIBS LIBnn LDFLAGS OBJC OBJCFLAGS MAKE \
-SAFE_FFLAGS SHLIB_CFLAGS SHLIB_CXXLD SHLIB_CXXLDFLAGS SHLIB_EXT \
-SHLIB_FFLAGS SHLIB_LD SHLIB_LDFLAGS SHLIB_FCLD, SHLIB_FCLDFLAGS \
-TCLTK_CPPFLAGS TCLTK_LIBS"
-
- fi
- ;;
-
-
- javareconf)
- furtherOpts="$versOpts $helpOpts -n --dry-run -e"
- ;;
-
-
- rtags)
- furtherOpts="$versOpts $helpOpts -o --output --no-c --no-R \
- --no-Rd -a --append -V --verbose"
- dirNames=$( compgen -d -- "$cur" )
- ;;
-
- esac
-
- fi
-
- elif [[ $lastToken == "<" ]] ; then
-
- ## R [options] < <need .R file here>
- furtherOpts=""
- fileNames=$( compgen -f -X '!*.@(R|r|S|s)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- elif [[ $lastToken == ">" ]] ; then
-
- ## R [options] > <need output file here>
- furtherOpts=""
- fileNames=$( compgen -f -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
-
- else
-
- case $lastToken in
-
- -g|--gui)
- furtherOpts="X11 Tk"
- ;;
- -d|--debugger) ## allow commands
- furtherOpts=$( compgen -c -- "$cur" )
- ;;
-
- *) ## NOT 'R CMD <something> ': see comments above
- furtherOpts="$versOpts $helpOpts $stdOpts $argOpts" ;;
-
- esac
- fi
-
- ## need some removal,
-
- ## take out options already given
- for (( i=1; i<=$COMP_CWORD-1; ++i )) ; do
-
- opt=${COMP_WORDS[$i]}
-
- case $opt in
- --*) optBase=${opt/=*/} ;;
- -*) optBase=${opt:0:2} ;;
- esac
-
- ## can't seem to do this using case
- if [[ $opt == "<" ]] ; then
- ## no more args allowed
- furtherOpts=""
- elif [[ $opt == ">" ]] ; then
- ## no more args allowed
- furtherOpts=""
- fi
-
-
- allOpts=" $furtherOpts "
- allOpts=${allOpts/ ${optBase} / }
-
- #echo $allOpts
-
- ## take out alternatives and mutually exclusives
- case $optBase in
-
-# not working
-# "<") ## only filenames allowed
-# echo "-----------"
-# allOpts=">" ;;
-# ">") ## only filenames allowed
-# allOpts="<" ;;
-
- -q|--quiet|--silent)
- allOpts=${allOpts/ -q / }
- allOpts=${allOpts/ --quiet / }
- allOpts=${allOpts/ --silent / }
- #echo $allOpts
-
- ;;
- --save|--no-save)
- allOpts=${allOpts/ --save / }
- allOpts=${allOpts/ --no-save / }
- ;;
- --vanilla)
- allOpts=${allOpts/ --no-save / }
- allOpts=${allOpts/ --no-restore / }
- allOpts=${allOpts/ --no-site-file / }
- allOpts=${allOpts/ --no-init-file / }
- allOpts=${allOpts/ --no-environ / }
- ;;
- -d) allOpts=${allOpts/ --debugger / } ;;
- --debugger) allOpts=${allOpts/ -d / } ;;
- --restore) allOpts=${allOpts/ --no-restore / } ;;
- --no-restore) allOpts=${allOpts/ --restore / } ;;
- -g|--gui)
- allOpts=${allOpts/ -g / }
- allOpts=${allOpts/ --gui / }
- ;;
-
- BATCH)
- allOpts=${allOpts/ --restore / }
- allOpts=${allOpts/ --save / }
- allOpts=${allOpts/ --no-readline / }
- ;;
-
- esac
-
- done
-
- ## and finally:
-
- COMPREPLY=(
- $( compgen -W "$allOpts $fileNames $dirNames" -- $cur )
- )
- return 0
-
-
-}
-
-
-complete -F _R -o filenames R
-
-## Add more aliases here, e.g.
-
-# for e in R-2.4 R-devel R-patched; do complete -F _R -o filenames ${e}; done
-
-
-
-### Local variables:
-### mode: shell-script
-### End:
diff --git a/debian/R.bash-completion b/debian/R.bash-completion
index 33ff259..8ca80b5 100644
--- a/debian/R.bash-completion
+++ b/debian/R.bash-completion
@@ -1,4 +1,4 @@
-### Copyright (C) 2005-2011 Deepayan Sarkar <Deepayan.Sarkar at R-project.org>
+## Copyright (C) 2005-2014 Deepayan Sarkar <Deepayan.Sarkar at R-project.org>
###
### This file provides programmable completion for R under the bash
### shell. It is made available under the terms of the GNU General
@@ -9,7 +9,7 @@
### useful, but WITHOUT ANY WARRANTY; without even the implied
### warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
### PURPOSE. See the GNU General Public License, available at
-### http://www.gnu.org/licenses/gpl.txt, for more details.
+### http://www.gnu.org/licenses/licenses.html, for more details.
### NOTE: This does NOT provide completion for commands within R, only
@@ -214,7 +214,8 @@ _R()
--no-libs --no-data --no-help --no-demo --no-exec --no-inst \
--no-multiarch --libs-only --data-compress --resave-data \
--compact-docs --with-keep.source --without-keep.source --byte-compile \
---no-clean-on-error --merge-multiarch"
+--no-byte-compile --no-test-load --no-clean-on-error --merge-multiarch \
+--built-timestamp"
fileNames=$( compgen -f -X '!*.@(tar.gz|tgz)' -- "$cur" )
dirNames=$( compgen -d -- "$cur" )
@@ -242,8 +243,9 @@ _R()
furtherOpts="$versOpts $helpOpts \
-l --library -o --output \
--no-clean --no-codoc --no-examples --no-install --no-tests \
---no-manual --no-vignettes --no-build-vignettes --use-gct \
---use-valgrind --timings --install-args --check-subdirs --as-cran \
+--no-manual --no-vignettes --no-build-vignettes --run-dontrun \
+--run-donttest --use-gct --use-valgrind --timings \
+--install-args --test-dir --check-subdirs --as-cran \
--extra-arch --multiarch --no-multiarch --force-multiarch"
fileNames=$( compgen -f -X '!*.@(tar.gz|tgz)' -- "$cur" )
@@ -299,8 +301,9 @@ _R()
else
furtherOpts="$versOpts $helpOpts --driver --engine --encoding --options --pdf --compact"
- fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
+ fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw|Rmd|rmd)' -- "$cur" )
+ dirNames=""
+ ## dirNames=$( compgen -d -- "$cur" )
fi
;;
@@ -318,8 +321,9 @@ _R()
else
furtherOpts="$versOpts $helpOpts --engine --encoding --options"
- fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw)' -- "$cur" )
- dirNames=$( compgen -d -- "$cur" )
+ fileNames=$( compgen -f -X '!*.@(Rnw|rnw|Snw|snw|Rmd|rmd)' -- "$cur" )
+ dirNames=""
+ ## dirNames=$( compgen -d -- "$cur" )
fi
;;
@@ -386,6 +390,12 @@ TCLTK_CPPFLAGS TCLTK_LIBS"
furtherOpts=$( compgen -c -- "$cur" )
;;
+ -f|--file)
+ fileNames=$( compgen -f -X '!*.@(R|r|S|s)' -- "$cur" )
+ dirNames=""
+ ## dirNames=$( compgen -d -- "$cur" )
+ ;;
+
*) ## NOT 'R CMD <something> ': see comments above
furtherOpts="$versOpts $helpOpts $stdOpts $argOpts" ;;
diff --git a/debian/changelog b/debian/changelog
index 0d1a5ae..56377f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,446 @@
-r-base (3.1.2-3.0~reproducible1) UNRELEASED; urgency=low
+r-base (3.4.0-1) unstable; urgency=medium
- * Enable extraction of build time from debian/changelog in debian/rules and
- debian/r-cran.mk.
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 21 Apr 2017 05:03:24 -0500
+
+r-base (3.3.3.20170413-1) unstable; urgency=medium
+
+ * Initial rc build (r72510) of R 3.4.0 expected for April 21
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 13 Apr 2017 22:43:25 -0500
+
+r-base (3.3.3.20170406-1) experimental; urgency=medium
+
+ * Initial beta build (r72492) of R 3.4.0 expected for April 21
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 06 Apr 2017 21:03:42 -0500
+
+r-base (3.3.3-1) unstable; urgency=medium
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 06 Mar 2017 05:06:20 -0600
+
+r-base (3.3.2.20170227-1) unstable; urgency=medium
+
+ * Initial rc build (r72279) of R 3.3.3 expected for March 6
+
+ * debian/control: Package r-base-dev now Depends: on pkg-config
+
+ * debian/r-cran.mk: xvfb-run now turns on GL extensions
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 27 Feb 2017 20:01:43 -0600
+
+r-base (3.3.2-1) unstable; urgency=medium
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 31 Oct 2016 06:04:25 -0500
+
+r-base (3.3.1.20161024-1) unstable; urgency=medium
+
+ * Initial rc build (r71578) of R 3.3.2 expected for October 31
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 24 Oct 2016 20:59:54 -0500
+
+r-base (3.3.1.20161020-1) unstable; urgency=medium
+
+ * Initial beta build (r71547) of R 3.3.2 expected for October 31
+
+ * debian/rules: Tweaks to configure-stamp dependency (cf #812544)
+
+ * debian/r-base-core.maintscript: Move bash-completion config file from
+ old location, if still present (Closes: #840506)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 20 Oct 2016 21:51:13 -0500
+
+r-base (3.3.1-2) unstable; urgency=medium
+
+ * Rebuilding under gcc-6
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 12 Aug 2016 12:23:55 -0500
+
+r-base (3.3.1-1.xenial.0) xenial; urgency=medium
+
+ * PPA build for Ubuntu 16.04 ("xenial")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 22 Jun 2016 10:46:47 -0500
+
+r-base (3.3.1-1) unstable; urgency=medium
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 21 Jun 2016 05:16:41 -0500
+
+r-base (3.3.0.20160615-1) unstable; urgency=medium
+
+ * Initial rc build (r70789) of R 3.3.1 expected for June 23
+
+ * debian/control: Set Standards-Version: to current version
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 15 Jun 2016 20:04:57 -0500
+
+r-base (3.3.0-2) unstable; urgency=medium
+
+ * debian/control: Add libicu-dev to Depends: for r-base-dev
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 19 May 2016 07:35:03 -0500
+
+r-base (3.3.0-1) unstable; urgency=medium
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 03 May 2016 06:05:36 -0500
+
+r-base (3.2.5.20160429-1) unstable; urgency=medium
+
+ * Second rc build (r70561) of R 3.3.0 expected for May 03
+
+ * debian/control: Remove remaining use of gcc-4.9 on mips (Closes: #818781)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 29 Apr 2016 06:22:06 -0500
+
+r-base (3.2.5.20160428-1) unstable; urgency=low
+
+ * Initial rc build (r70556) of R 3.3.0 expected for May 03
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 28 Apr 2016 06:42:20 -0500
+
+r-base (3.2.5-1) unstable; urgency=low
+
+ * New upstream release made today (as the version scheme in
+ 3.2.4-revised created issues for some systems)
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 14 Apr 2016 11:58:11 -0500
+
+r-base (3.2.4.20160412-1) unstable; urgency=low
+
+ * Fourth beta build (r70470) of R 3.3.0 expected for May 03
+
+ * debian/rules: Remove gcc-4.9 invocation for mips (Closes: #818781)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 12 Apr 2016 22:06:54 -0500
+
+r-base (3.2.4.20160411-1) unstable; urgency=low
+
+ * Third beta build (r70465) of R 3.3.0 expected for May 03
+
+ * debian/control: Remove use of gcc-4.9 on mips (Closes: #818781)
+
+ * debian/r-core.shlibs: Removed (Closes: #819343)
+ * debian/r-mathlib.shlibs: Ditto
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 11 Apr 2016 22:13:07 -0500
+
+r-base (3.2.4.20160406-1) unstable; urgency=medium
+
+ * Second beta build (r70427) of R 3.3.0 now expected for May 03
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 06 Apr 2016 09:00:27 -0500
+
+r-base (3.2.4.20160331-1) unstable; urgency=medium
+
+ * Initial beta build (r70404) of R 3.3.0 expected for April 14
+
+ * debian/r-cran.mk: Also remove LICENSE (Closes: #819344)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 31 Mar 2016 19:43:27 -0500
+
+r-base (3.2.4-revised-1) unstable; urgency=medium
+
+ * New upstream release this afternoon
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 16 Mar 2016 16:40:51 -0500
+
+r-base (3.2.4-1) unstable; urgency=medium
+
+ * New upstream version released this morning
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 10 Mar 2016 06:04:56 -0600
+
+r-base (3.2.3.20160306-1) unstable; urgency=medium
+
+ * Second rc build (r70278) of R 3.2.4 expected for March 10
+
+ * debian/rules: Do not install bash_completion in /etc (Closes: #816531)
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 04 Mar 2016 06:29:56 -0600
+
+r-base (3.2.3.20160303-1) unstable; urgency=low
+
+ * Initial rc build (r70270) of R 3.2.4 expected for March 10
+
+ * debian/rules: Adding 'R_TEXI2DVICMD=emulation' to cope with texinfo 6.1
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ * debian/rules: Commented-out make check with does not find packages
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 03 Mar 2016 21:01:10 -0600
+
+r-base (3.2.3-6) unstable; urgency=low
+
+ * Rebuilding to now use openjdk-8-jdk (rather than openjdk-7-jdk) as
+ keep in sync with the change at the default-jdk package
+
+ * debian/rules: Added explicit 'cd doc/manual && $(MAKE) html)'
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 18 Feb 2016 07:00:11 -0600
+
+r-base (3.2.3-5) unstable; urgency=low
+
+ * debian/icon-class-patch/R.desktop: Add trailing ';' in Categories
+ (with thanks to Pino Toscano) (Closes: #812475)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sun, 24 Jan 2016 21:04:36 -0600
+
+r-base (3.2.3-4) unstable; urgency=low
+
+ * debian/r-base-core.postinst: Don't run mktexlsr
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 13 Jan 2016 22:14:27 -0600
+
+r-base (3.2.3-3) unstable; urgency=low
+
+ * debian/control: Also add 'gcc-4.9 [mips]' to Depends: for r-base-core
+ to ensure compiler is present on installed system (thanks, Sébastien)
+
+ * debian/rules: Set 'R_GZIPCMD=gzip -n' to avoid a Lintian warning about
+ gzip files with timestamps
+
+ * debian/rules: No longer install menu file (and we have a desktop file)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 12 Jan 2016 12:51:40 -0600
- -- Jérémy Bobbio <lunar at debian.org> Tue, 13 Jan 2015 12:11:06 +0100
+r-base (3.2.3-2) unstable; urgency=low
+
+ [ Sébastien Villemot ]
+ * Use gcc-4.9 to compile C code on mips, as a workaround to a gcc-5 bug.
+ (Closes: #810357).
+ * Enable back optimization flags on mips and mipsel.
+
+ [ Dirk Eddelbuettel ]
+ * debian/control: Use Sebastien's patch and add gcc-4.9 for mips
+ * debian/rules: Use Sebastien's patch and enforce gcc-4.9 for mips, also
+ comment-out remaining suppression of optmization
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sun, 10 Jan 2016 21:22:03 -0600
+
+r-base (3.2.3-1.wily.0) wily; urgency=low
+
+ * PPA build for Ubuntu 15.10 ("wily")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 14 Dec 2015 13:08:31 -0600
+
+r-base (3.2.3-1) unstable; urgency=low
+
+ * New upstream version released this morning
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 10 Dec 2015 06:31:10 -0600
+
+r-base (3.2.2.20151203-1) unstable; urgency=low
+
+ * Initial rc build (r69731) of R 3.2.3 expected for December 10
+
+ * debian/updated_x11_logo.patch: Applied again to src/modules/X11/ files
+ devX11.c and rlogo_icon.h to provide the new R logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 03 Dec 2015 22:08:11 -0600
+
+r-base (3.2.2-1) unstable; urgency=low
+
+ * New upstream version released this morning
+
+ * debian/updated_x11_logo.patch: Applied to refresh bitmap'ed logo; now
+ using second patch with reduced memory footprint and resolution
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 14 Aug 2015 05:12:26 -0500
+
+r-base (3.2.1.20150808-1vivid2) vivid; urgency=low
+
+ * PPA build for Ubuntu 15.04 ("vivid")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 10 Aug 2015 11:56:02 -0500
+
+r-base (3.2.1.20150808-1) unstable; urgency=low
+
+ * Initial rc build (r68909) of R 3.2.2 expected for August 14
+
+ * debian/R.bash-completion: Updated from Deepayan's GH repo
+
+ * debian/updated_x11_logo.patch: Applied to refresh bitmap'ed logo; now
+ using second patch with reduced memory footprint and resolution
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sat, 08 Aug 2015 11:24:33 -0500
+
+r-base (3.2.1.20150804-1) unstable; urgency=low
+
+ * Initial beta build (r68823) of R 3.2.2 expected for August 14
+
+ * debian/updated_x11_logo.patch: Applied to refresh bitmap'ed logo
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 04 Aug 2015 16:24:59 -0500
+
+r-base (3.2.1-4) unstable; urgency=low
+
+ * src/main/datetime.c: One more change for the additional leapsecond
+
+ * debian/control: Add ca-certificates to Depends: for r-base-core to
+ support https via method "libcurl"
+
+ -- Dirk Eddelbuettel <edd at debian.org> Fri, 03 Jul 2015 03:40:19 -0500
+
+r-base (3.2.1-3) unstable; urgency=low
+
+ * src/library/base/R/zdatetime.R: Added additional leap second (also
+ included in R-patched and R-devel)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 01 Jul 2015 02:47:09 -0500
+
+r-base (3.2.1-2) unstable; urgency=low
+
+ * configure: Apply patch by Martin Michlmayr to ensure texi2any version
+ 6 or later is not wrongly rejected as too old (Closes: #790436)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 29 Jun 2015 12:13:49 -0500
+
+r-base (3.2.1-1) unstable; urgency=low
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 18 Jun 2015 05:06:51 -0500
+
+r-base (3.2.0.20150613-1) unstable; urgency=low
+
+ * Initial rc build (r68509) of R 3.2.1 expected for June 18
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sat, 13 Jun 2015 12:31:20 -0500
+
+r-base (3.2.0-4) unstable; urgency=low
+
+ * debian/rules: Set JAVA_HOME explicitly as suggested in a patch kindly
+ supplied by Emmanuel Bourg (Closes: #745098)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sun, 24 May 2015 08:17:33 -0500
+
+r-base (3.2.0-3vivid2) vivid; urgency=low
+
+ * PPA build for Ubuntu 14.10 ("vivid")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 12 May 2015 17:11:11 -0500
+
+r-base (3.2.0-3vivid1) utopic; urgency=low
+
+ * PPA build for Ubuntu 14.10 ("vivid")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 11 May 2015 06:51:17 -0500
+
+r-base (3.2.0-3) unstable; urgency=low
+
+ * debian/control: The r-base-core package now 'Provides: r-api-3' which
+ can be used to have r-cran-* depend on a particular API vintage.
+ (Closes: #704805)
+
+ * debiab/r-cran.mk: Have the build-time API vintage encoded as a Depends
+ (with thanks to Julian Gilbey, Charles Plessy, and others for the patch)
+
+ * debian/control: Set Standards-Version: to current version
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 11 May 2015 06:08:12 -0500
+
+r-base (3.2.0-2) unstable; urgency=low
+
+ * debian/r-cran.mk: Apply (modified) patch by Philipp Rinn to set
+ built-time (if unset) based on timestamp in debian/changelog
+ (Closes: #782764)
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 21 Apr 2015 20:38:57 -0500
+
+r-base (3.2.0-1utopic1) utopic; urgency=low
+
+ * PPA build for Ubuntu 14.10 ("utopic")
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 09 Apr 2015 06:41:55 -0500
+
+r-base (3.2.0-1) unstable; urgency=low
+
+ * New upstream version released this morning
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 16 Apr 2015 06:04:48 -0500
+
+r-base (3.1.3.20150413-1) unstable; urgency=low
+
+ * Third rc build (r68170) of R 3.2.0 expected for April 16
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sun, 12 Apr 2015 21:38:03 -0500
+
+r-base (3.1.3.20150410-1) unstable; urgency=low
+
+ * Second rc build (r68169) of R 3.2.0 expected for April 16
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 09 Apr 2015 19:00:20 -0500
+
+r-base (3.1.3.20150409-1) unstable; urgency=low
+
+ * Initial rc build (r68161) of R 3.2.0 expected for April 16
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 08 Apr 2015 22:38:30 -0500
+
+r-base (3.1.3-1) unstable; urgency=low
+
+ * New upstream version released this morning
+
+ * debian/reproducibility-patch/*.patch: Added two patches submitted to R
+ upstream and already integrated into upcoming R 3.2.0 releases; these
+ help setting a timestamp for the DESCRIPTION file of a) base R package
+ via a new env var PKG_BUILT_TIME passed down from debian/rules, and
+ also b) r-cran-* package built via r-cran.mk through a new option to
+ R CMD INSTALL
+
+ -- Dirk Eddelbuettel <edd at debian.org> Mon, 09 Mar 2015 06:32:25 -0500
+
+r-base (3.1.2.20150306-1) unstable; urgency=low
+
+ * Second rc build (r67947) of R 3.1.3 expected for March 9
+
+ * debian/reproducibility-patch/*.patch: Added two patches submitted to R
+ upstream and already integrated into upcoming R 3.2.0 releases; these
+ help setting a timestamp for the DESCRIPTION file of a) base R package
+ via a new env var PKG_BUILT_TIME passed down from debian/rules, and
+ also b) r-cran-* package built via r-cran.mk through a new option to
+ R CMD INSTALL
+
+ -- Dirk Eddelbuettel <edd at debian.org> Sat, 07 Mar 2015 09:51:04 -0600
+
+r-base (3.1.2.20150304-1) experimental; urgency=low
+
+ * Initial rc build (r67940) of R 3.1.3 expected for March 9
+
+ * debian/reproducibility-patch/*.patch: Added two patches submitted to R
+ upstream and already integrated into upcoming R 3.2.0 releases; these
+ help setting a timestamp for the DESCRIPTION file of a) base R package
+ via a new env var PKG_BUILT_TIME passed down from debian/rules, and
+ also b) r-cran-* package built via r-cran.mk through a new option to
+ R CMD INSTALL
+
+ -- Dirk Eddelbuettel <edd at debian.org> Wed, 04 Mar 2015 20:01:18 -0600
r-base (3.1.2-3) experimental; urgency=low
diff --git a/debian/control b/debian/control
index 5069ade..bc3c672 100644
--- a/debian/control
+++ b/debian/control
@@ -2,8 +2,8 @@ Source: r-base
Section: gnu-r
Priority: optional
Maintainer: Dirk Eddelbuettel <edd at debian.org>
-Standards-Version: 3.9.5
-Build-Depends: gcc (>= 4:4.1.0), g++ (>= 4:4.1.0), gfortran (>= 4:4.1.0), libblas-dev, liblapack-dev (>= 3.1.1), tcl8.6-dev, tk8.6-dev, bison, groff-base, libncurses5-dev, libreadline-dev, debhelper (>= 7.2.3), texinfo (>= 4.1-2), libbz2-dev, liblzma-dev, libpcre3-dev, xdg-utils, zlib1g-dev, libpng-dev, libjpeg-dev, libx11-dev, libxt-dev, x11proto-core-dev, libpango1.0-dev, libcairo2-dev, libtiff5-dev, xvfb, xauth, xfonts-base, texlive-base, texlive-latex-base, texlive-generic-recommende [...]
+Standards-Version: 3.9.8
+Build-Depends: gcc (>= 4:4.1.0), g++ (>= 4:4.1.0), gfortran (>= 4:4.1.0), libblas-dev, liblapack-dev (>= 3.1.1), tcl8.6-dev, tk8.6-dev, bison, groff-base, libncurses5-dev, libreadline-dev, debhelper (>= 7.2.3), texinfo (>= 4.1-2), libbz2-dev, liblzma-dev, libpcre3-dev, libcurl4-openssl-dev | libcurl4-dev, xdg-utils, zlib1g-dev, libpng-dev, libjpeg-dev, libx11-dev, libxt-dev, x11proto-core-dev, libpango1.0-dev, libcairo2-dev, libtiff5-dev, xvfb, xauth, xfonts-base, texlive-base, texlive-l [...]
Homepage: http://www.r-project.org/
Package: r-base
@@ -45,9 +45,9 @@ Description: GNU R statistical computation and graphics system
Package: r-base-core
Architecture: any
-Depends: ${misc:Depends}, ${perl:Depends}, zip, unzip, libpaper-utils, xdg-utils, ${shlibs:Depends}, ucf (>= 3.0)
+Depends: ${misc:Depends}, ${perl:Depends}, zip, unzip, libpaper-utils, xdg-utils, ${shlibs:Depends}, ucf (>= 3.0), ca-certificates
Replaces: r-base (<= 1.4.1-1), r-recommended (<< 1.9.0), r-gnome (<= 2.3.1), r-cran-rcompgen (<= 0.1-17-1), r-base-latex (<= 2.9.2-4)
-Provides: r-gnome, r-cran-rcompgen, r-base-latex
+Provides: r-gnome, r-cran-rcompgen, r-base-latex, r-api-3
Conflicts: r-gnome, r-cran-rcompgen, r-base-latex
Recommends: r-recommended, r-base-dev, r-doc-html
Suggests: ess, r-doc-info | r-doc-pdf, r-mathlib, r-base-html
@@ -83,7 +83,7 @@ Description: GNU R core of statistical computation and graphics system
Package: r-base-dev
Architecture: all
-Depends: ${misc:Depends}, r-base-core (>= ${source:Version}), build-essential, gcc, g++, gfortran, libblas-dev | libatlas-base-dev, liblapack-dev | libatlas-base-dev, libncurses5-dev, libreadline-dev, libjpeg-dev, libpcre3-dev, libpng-dev, zlib1g-dev, libbz2-dev, liblzma-dev, cdbs
+Depends: ${misc:Depends}, r-base-core (>= ${source:Version}), build-essential, gcc, g++, gfortran, libblas-dev | libatlas-base-dev, liblapack-dev | libatlas-base-dev, libncurses5-dev, libreadline-dev, libjpeg-dev, libpcre3-dev, libpng-dev, zlib1g-dev, libbz2-dev, liblzma-dev, libicu-dev, cdbs, xauth, pkg-config
Suggests: debhelper, texlive-base, texlive-latex-base, texlive-generic-recommended, texlive-fonts-recommended, texlive-fonts-extra, texlive-extra-utils, texlive-latex-recommended, texlive-latex-extra, texinfo
Description: GNU R installation of auxiliary GNU R packages
R is a system for statistical computation and graphics. It consists
diff --git a/debian/icon-class-patch/R.desktop b/debian/icon-class-patch/R.desktop
index f82fd6c..e044d3d 100644
--- a/debian/icon-class-patch/R.desktop
+++ b/debian/icon-class-patch/R.desktop
@@ -7,4 +7,4 @@ Exec=R
Icon=rlogo_icon
Terminal=true
StartupNotify=false
-Categories=Graphics;Science;Math
+Categories=Graphics;Science;Math;
diff --git a/debian/r-base-core.dirs b/debian/r-base-core.dirs
index 18412d8..614c1fe 100644
--- a/debian/r-base-core.dirs
+++ b/debian/r-base-core.dirs
@@ -1,6 +1,6 @@
etc/R
etc/ld.so.conf.d
-etc/bash_completion.d
+usr/share/bash-completion/completions
usr/bin
usr/lib/R
usr/lib/R/site-library
diff --git a/debian/r-base-core.maintscript b/debian/r-base-core.maintscript
new file mode 100644
index 0000000..2a0b05b
--- /dev/null
+++ b/debian/r-base-core.maintscript
@@ -0,0 +1 @@
+mv_conffile /etc/bash_completion.d/R /usr/share/bash-completion/completions/R
diff --git a/debian/r-base-core.postinst b/debian/r-base-core.postinst
index 4029b51..7007c6e 100644
--- a/debian/r-base-core.postinst
+++ b/debian/r-base-core.postinst
@@ -20,14 +20,14 @@ case "$1" in
tmpRenviron=$(mktemp)
chmod 0644 "$tmpRenviron"
cat /usr/lib/R/etc/Renviron.ucf > "$tmpRenviron"
- if [ -x /usr/bin/paperconf ]; then
+ #if [ -x /usr/bin/paperconf ]; then
## get the value we want from Debian's paperconf utility
papersize=`paperconf`
## have perl subst. second expression with $papersize for first
## uses the x mod. and curlies to denote the usual s|1st|2nd|
perl -p -i -e "s{^R_PAPERSIZE_USER=\\$\{R_PAPERSIZE\}}
{R_PAPERSIZE_USER=\\$\{R_PAPERSIZE-'$papersize'\}}x" "$tmpRenviron"
- fi
+ #fi
# edd 21 Jun 2008 whether or not Renviron was modified, ucf will handle it,
# so tell ucf that file Renviron.ucf is the source for
# conffile in /etc and register it
@@ -35,9 +35,9 @@ case "$1" in
ucfr r-base-core /etc/R/Renviron
rm -f "$tmpRenviron"
#
- if [ -x /usr/bin/update-menus ]; then
- update-menus
- fi
+ #if [ -x /usr/bin/update-menus ]; then
+ # update-menus
+ #fi
# edd 03 Apr 2003 cf Section 10.1.2 of Debian Policy
if [ ! -e /usr/local/lib/R ]; then
@@ -53,9 +53,9 @@ case "$1" in
fi
fi
- if [ -x /usr/bin/mktexlsr ]; then
- mktexlsr /usr/share/texmf
- fi
+ #if [ -x /usr/bin/mktexlsr ]; then
+ # mktexlsr /usr/share/texmf
+ #fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
diff --git a/debian/r-base-core.shlibs b/debian/r-base-core.shlibs.hidden
similarity index 100%
rename from debian/r-base-core.shlibs
rename to debian/r-base-core.shlibs.hidden
diff --git a/debian/r-cran.mk b/debian/r-cran.mk
index 25de168..7e54a19 100644
--- a/debian/r-cran.mk
+++ b/debian/r-cran.mk
@@ -7,7 +7,7 @@
# packages. Note that you still need to provide the other files in debian/*,
# in particular control, changelog and copyright.
#
-# Copyright 2003-2013 by Dirk Eddelbuettel <edd at debian.org>
+# Copyright 2003 - 2016 by Dirk Eddelbuettel <edd at debian.org>
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/langcore.mk
@@ -43,6 +43,9 @@ ifneq ($(makeFlags),)
makeFlagsCall := MAKEFLAGS=$(makeFlags)
endif
+## xvfb-run with GL extension and default resolution
+xvfbSrvArgs = -screen 0 1024x768x24 -ac +extension GLX +render -noreset
+
## and use the results to build the Debian'ized package name
package := r-$(debRreposname)-$(cranName)
@@ -61,6 +64,7 @@ endif
# dpkg-parsechangelog -l- --count 1 | \
# awk '/^Version/ {print $$2}')
rversion := $(shell dpkg-query -W -f='$${Version}' r-base-dev)
+rapiversion := $(shell dpkg-query -W -f='$${Provides}' r-base-core | grep -o 'r-api[^, ]*')
## we use these results for the to-be-installed-in directory
debRlib := $(CURDIR)/debian/$(package)/$(debRdir)
@@ -72,12 +76,22 @@ lintiandir := $(CURDIR)/debian/$(package)/usr/share/lintian/overrides
## cf discussion in http://bugs.debian.org/774031 --- and uncomment two assignments here
##
## extract built-timestamp from entry changelog and use as argument
-builttime := $(shell dpkg-parsechangelog -l$(CURDIR)/debian/changelog | awk -F': ' '/Date/ {print $$2}')
+#builttime := $(shell dpkg-parsechangelog -l$(CURDIR)/debian/changelog | awk -F': ' '/Date/ {print $$2}')
##
-builttimeStamp := "--built-timestamp=\"$(builttime)\""
+#builttimeStamp := "--built-timestamp=\"$(builttime)\""
##
## else
#builttimeStamp := ""
+#
+## Bug report #782764 with patch by Philipp Rinn building on what we had above
+## if no builttimeStamp is supplied, set built-time (to be set in DESCRIPTION)
+## to time of created source package based on stamp in changelog.
+## See discussion in http://bugs.debian.org/774031
+
+ifeq ($(builttimeStamp),)
+ builttime := $(shell dpkg-parsechangelog -l$(CURDIR)/debian/changelog | awk -F': ' '/Date/ {print $$2}')
+ builttimeStamp := "--built-timestamp=\"$(builttime)\""
+endif
common-install-indep:: R_any_arch
common-install-arch:: R_any_arch
@@ -87,12 +101,13 @@ R_any_arch:
dh_installdirs $(debRdir)
##
## support ${R:Depends} via debian/${package}.substvars
- echo "R:Depends=r-base-core (>= ${rversion})" >> debian/$(package).substvars
+ echo "R:Depends=r-base-core (>= ${rversion}), ${rapiversion}" >> debian/$(package).substvars
##
## call R to install the sources we're looking at
## use this inside xvfb-run if this wrapper is installed
if test -f /usr/bin/xvfb-run; then \
- $(makeFlagsCall) xvfb-run -a \
+ $(makeFlagsCall) xvfb-run -a -n 20 \
+ -s "${xvfbSrvArgs}" \
R CMD INSTALL -l $(debRlib) --clean \
$(extraInstallFlags) . \
$(builttimeStamp) \
@@ -106,7 +121,8 @@ R_any_arch:
## remove extra files which are present in some packages
rm -vf $(debRlib)/R.css \
$(debRlib)/$(cranNameOrig)/COPYING \
- $(debRlib)/$(cranNameOrig)/LICENSE.txt
+ $(debRlib)/$(cranNameOrig)/LICENSE.txt \
+ $(debRlib)/$(cranNameOrig)/LICENSE
## if we have an overrides file for lintian, install it
if test -f debian/overrides; then \
install -d $(lintiandir) ; \
diff --git a/debian/r-mathlib.lintian b/debian/r-mathlib.lintian
index e6ea6da..422ac56 100644
--- a/debian/r-mathlib.lintian
+++ b/debian/r-mathlib.lintian
@@ -2,3 +2,4 @@ r-mathlib: non-dev-pkg-with-shlib-symlink usr/lib/libRmath.so.1.0.0 usr/lib/libR
r-mathlib: missing-depends-line
r-mathlib: package-name-doesnt-match-sonames libRmath1
r-mathlib: hardening-no-relro usr/lib/libRmath.so.1.0.0
+r-mathlib: maintscript-calls-ldconfig postinst
diff --git a/debian/r-mathlib.postinst b/debian/r-mathlib.postinst
new file mode 100644
index 0000000..6a20f8d
--- /dev/null
+++ b/debian/r-mathlib.postinst
@@ -0,0 +1,27 @@
+##!/bin/sh -e
+#
+# postinst script for the Debian GNU/Linux r-mathlib package
+#
+# Written and GPL'ed by Dirk Eddelbuettel <edd at debian.org>
+
+#DEBHELPER#
+
+ldconfig
+
+case "$1" in
+
+ configure)
+ ;;
+
+ upgrade|abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ ;;
+
+esac
+
+exit 0
+
+
diff --git a/debian/r-mathlib.shlibs b/debian/r-mathlib.shlibs.hidden
similarity index 100%
rename from debian/r-mathlib.shlibs
rename to debian/r-mathlib.shlibs.hidden
diff --git a/debian/rules b/debian/rules
old mode 100755
new mode 100644
index 221409e..047edc2
--- a/debian/rules
+++ b/debian/rules
@@ -1,7 +1,7 @@
#!/usr/bin/make -f
# debian/rules file for the Debian GNU/Linux r-base package
# Copyright 1997-2003 Douglas Bates <bates at stat.wisc.edu>
-# Copyright 1998-2014 Dirk Eddelbuettel <edd at debian.org>
+# Copyright 1998-2016 Dirk Eddelbuettel <edd at debian.org>
#
# $Id: rules,v 1.3 2007/05/06 17:13:23 edd Exp edd $
@@ -75,8 +75,15 @@ lapack = --with-lapack
# edd 11 Oct 2011 setting -std=gnu99 with compiler (thanks, Kurt Hornik)
fortrancompiler = F77=gfortran
f95compiler = gfortran
+# edd 10 Jan 2016 mips currently needs gcc-4.9 (cf #810357) and big thanks to Sébastien Villemot
+# edd 12 Apr 2016 mips treatment removed again after kernel fix on
+#ifeq ($(arch),mips)
+#compiler = "gcc-4.9 -std=gnu99"
+#else
compiler = "gcc -std=gnu99"
+#endif
cxxcompiler = g++
+
# edd 31 Mar 2014
#optimflags = -O3 -pipe
optimflags = $(shell dpkg-buildflags --get CFLAGS)
@@ -122,12 +129,13 @@ endif
## edd 02 Jun 2003 use this on arm only
## edd 12 May 2010 no longer use it on arm either -- thx Modestas
## edd 04 Aug 2010 on mips and mipsel, don't use -g
+## edd 10 Jan 2016 turn all off again
##ifneq "$(findstring $(arch), m68k arm)" ""
#ifneq "$(findstring $(arch), arm)" ""
-ifneq "$(findstring $(arch), mips mipsel)" ""
-optimflags = -g0
-#optimflags = -O0 -g0
-endif
+#ifneq "$(findstring $(arch), mips mipsel)" ""
+#optimflags = -g0
+##optimflags = -O0 -g0
+#endif
## edd 04 Apr 2009 Alpha dies on deriv.c, trying will less optimisation
## edd 16 Apr 2009 commented-out as Kurt Roeckx applied a gcc patch
@@ -168,8 +176,9 @@ optimflags += -g
## 12 Jan 2015
## Support for #774031 uncomment the two assignment to pass a non-empty string for this to hold
-builttime := $(shell dpkg-parsechangelog -l$(CURDIR)/debian/changelog | awk -F': ' '/Date/ {print $$2}')
-builttimestamp := "$(builttime)"
+#builttime := $(shell dpkg-parsechangelog -l$(CURDIR)/debian/changelog | awk -F': ' '/Date/ {print $$2}')
+#builttimestamp := "$(builttime)"
+buildtimestamp := ""
#arch = kfreebsd-amd64
maketest:
@@ -235,10 +244,13 @@ configure-stamp:
#autoconf
dh_testdir
+ R_TEXI2DVICMD=emulation \
R_PAPERSIZE=letter \
R_BROWSER=xdg-open \
+ R_GZIPCMD="/bin/gzip -n" \
PAGER=/usr/bin/pager \
PERL=/usr/bin/perl \
+ JAVA_HOME=/usr/lib/jvm/default-java \
R_UNZIPCMD=/usr/bin/unzip \
R_ZIPCMD=/usr/bin/zip \
R_PRINTCMD=/usr/bin/lpr \
@@ -282,8 +294,8 @@ configure-stamp:
touch configure-stamp
-make-arch: configure make-arch-stamp
-make-arch-stamp:
+make-arch: make-arch-stamp
+make-arch-stamp: configure-stamp
@echo "*** make-arch ***"
$(MAKE) CFLAGS="$(cflags)" \
CXXFLAGS="$(cxxflags)" \
@@ -294,6 +306,7 @@ make-arch-stamp:
${fortrancompiler} \
LDFLAGS="$(ldflags)" \
PKG_BUILT_STAMP="$(buildtimestamp)" \
+ R_GZIPCMD="/bin/gzip -n" \
R
# the top-level 'make stamp-recommended' target implies 'make docs'
@@ -315,6 +328,7 @@ make-arch-stamp:
CC=${compiler} \
CXX=${cxxcompiler} \
${fortrancompiler} \
+ R_GZIPCMD="/bin/gzip -n" \
libRmath_la_LDFLAGS=-Wl,-soname,libRmath.so.$(somaj) \
shared static )
@@ -324,36 +338,39 @@ make-arch-stamp:
# edd 15 Jan 2004 make install needs html docs
# edd 25 Jan 2004 not needed as we have 'make docs'
## make html
- $(MAKE) docs R_CMD_BUILD_HELP_OPTS="--txt --example"
+ R_GZIPCMD="/bin/gzip -n" \
+ $(MAKE) docs R_CMD_BUILD_HELP_OPTS="--txt --example"
# edd 26 Mar 2013
$(MAKE) javaconf
touch make-arch-stamp
-make-indep: configure make-indep-stamp
-make-indep-stamp:
+make-indep: make-indep-stamp
+make-indep-stamp: configure-stamp
@echo "*** make-indep ***"
## edd 12 Jan 2004 uncommenting 'make docs' to split binary all/any
## now that recommended packages aren't made
## edd 25 Jan 2004 make docs and make html are made in make-arch
## edd 05 Feb 2004 finally, this works in pre-1.9.0 with Kurt's
## R_CMD_BUILD_HELP_OPTS
- $(MAKE) docs
+ $(MAKE) -k docs
+ (cd doc/manual && $(MAKE) html)
# $(MAKE) html
# $(MAKE) help
$(MAKE) info
(cd doc/manual && \
$(MAKE) refman.pdf R-admin.pdf R-data.pdf R-exts.pdf \
R-FAQ.pdf R-intro.pdf R-ints.pdf R-lang.pdf)
- $(MAKE) pdf
- $(MAKE) vignettes
+ $(MAKE) -k pdf
+ $(MAKE) -k vignettes
touch make-indep-stamp
make: make-stamp
make-stamp: make-arch make-indep
-check: make-arch check-stamp
+#check: make-arch check-stamp
+check: make-stamp check-stamp
check-stamp:
@echo "*** check ***"
#ifneq ($(arch),arm)
@@ -561,6 +578,9 @@ install-arch-stamp:
# debian/$(corepackage)/etc/bash_completion.d/R
# edd 24 Mar 2014 now installs via dh_bash-completion
dh_bash-completion
+ # edd 12 Jan 2016 new location
+ #install -m 0644 debian/R.bash-completion \
+ # debian/$(corepackage)/usr/share/bash-completion/completions/R
# edd 02 May 2007 add libR.conf for ld.so
# edd 13 Sep 2009 no more under Policy 3.8.3
@@ -664,7 +684,7 @@ binary-arch: build-arch install-arch
#dh_installexamples -a
#dh_installexamples -p$(corepackage) src/nmath/standalone/test.c
dh_installexamples -p$(nmathpackage) src/nmath/standalone/test.c
- dh_installmenu -a
+ #dh_installmenu -a
#dh_installemacsen -a
#dh_installpam -a
#dh_installmime -a
diff --git a/debian/updated_x11_logo.patch b/debian/updated_x11_logo.patch
new file mode 100644
index 0000000..a4a7e9b
--- /dev/null
+++ b/debian/updated_x11_logo.patch
@@ -0,0 +1,7692 @@
+Index: devX11.c
+===================================================================
+--- devX11.c (revision 68909)
++++ devX11.c (working copy)
+@@ -1606,7 +1606,7 @@
+ XInternAtom(display, "_NET_WM_ICON", False),
+ XInternAtom(display, "CARDINAL", False), 32,
+ PropModeReplace,
+- (const unsigned char*) rlogo_icon, 2 + 48*48);
++ (const unsigned char*) rlogo_icon, 2 + 99*77);
+
+ /* set up protocols so that window manager sends */
+ /* me an event when user "destroys" window */
+Index: rlogo_icon.h
+===================================================================
+--- rlogo_icon.h (revision 68909)
++++ rlogo_icon.h (working copy)
+@@ -1,51 +1,7625 @@
+ unsigned long rlogo_icon[] = {
+- 48,48,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1868983,0x27e837a,0x6959595,0x2a888b85,0x5881857f,0x7d7f827b,0x9b7e827a,0xb17c8078,0xc07c7f78,0xc97c8179,0xca797e76,0xc3777c73,0xb4777b74,0x9d747971,0x8074786f,0x5b757870,0x2e797d75,0x77e847e,0x164685f,0x16b7168,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38a8d88,0x68b8f89,0x288b8e89,0x71868983,0xba848881,0xf6838780,0xff838780,0xff838780,0xff848881,0xff848881,0xff848881,0xff848881,0xff858982,0xff81857e,0xff80847d,0xff7f837b,0xff7c8079,0xff787e76,0xff747a71,0xff71766d,0xf86f736b,0xbf6d7269,0x766c7169,0x2c70726c,0x7656a62,0x3666b63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58a8e87,0x1a8d918b,0x608a8f88,0xc9888c86,0xff878c85,0xff898d87,0xff8b8f89,0xff8c9089,0xfe8d918b,0xfe8f938d,0xff90948e,0xff91958e,0xff91968f,0xff91968f,0xff939891,0xff8f948d,0xff8f938c,0xff8d918b,0xff8a8f88,0xff878c85,0xfe858983,0xfe82867f,0xff7d8179,0xff777c73,0xff70756c,0xff6a6f66,0xcf676c63,0x65666c63,0x1d656a61,0x55f655b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x290978c,0x208e918b,0x728c9089,0xe48a8f88,0xff8c918a,0xff90948d,0xff91958e,0xfe929690,0xff91958e,0xff8d918a,0xff8d9189,0xff8e938c,0xff92968f,0xff959992,0xff959a93,0xff959a93,0xff959a93,0xff949992,0xff939891,0xff939891,0xff929790,0xff91968f,0xff90948e,0xff8e938c,0xff8a8f88,0xff858a83,0xfe81857e,0xff7b8078,0xff737870,0xff696e65,0xe963685f,0x7a61675e,0x245f645b,0x3626660,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x1091948f,0x5a8f928c,0xd68e918a,0xff90948d,0xff969a93,0xfe979a94,0xfe939790,0xff878c84,0xff7b7f77,0xff7a7f77,0xff858983,0xff92968f,0xff9b9f99,0xff9da19b,0xff999e97,0xff91958f,0xfe888c84,0xff7e827b,0xff767a73,0xff70756d,0xff6d726a,0xff6c7068,0xff6d7169,0xff6f746b,0xff72776f,0xff777c74,0xff7c8179,0xfe81867f,0xfe848881,0xfe82857f,0xfe7b8079,0xff72776f,0xff656a62,0xdd5e635a,0x605b6058,0x135b6057,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x2792968f,0x9790938d,0xff91948f,0xff9a9e97,0xfe9da19b,0xfe959992,0xff7e837b,0xff6f746c,0xff7c8078,0xff949791,0xffa8aca6,0xffb4b7b2,0xffafb2ad,0xfe999d97,0xff81857e,0xff6e726b,0xff5d6259,0xff53584f,0xfc4b4f47,0xf2464b43,0xea454941,0xe4454941,0xe1444941,0xe0474c44,0xe34b5048,0xe84f544c,0xf052574e,0xfa555a51,0xff5a6057,0xff62685e,0xff6e736b,0xff7a7e77,0xfe7d827a,0xfe797e75,0xff6d7169,0xff5d625a,0xa0575c53,0x2d54594f,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x3791958f,0xbf91958e,0xff969993,0xffa5a9a3,0xfea0a49e,0xff848881,0xff6a6f67,0xff7b8078,0xff9ea29b,0xffbabdb8,0xffc6c9c4,0xfeb5b8b3,0xfe949892,0xff737770,0xff535850,0xf93e423a,0xdc30342d,0xf150534e,0xde52544f,0xf8767874,0xdf7f817d,0xca888a86,0xbb8f918d,0xb4929591,0xb3949692,0xba929490,0xc68e918c,0xda8a8c88,0xec82847f,0xe871756e,0xeb686d65,0xeb5c6159,0xf2545950,0xff61665e,0xff72766e,0xff797e76,0xff71766e,0xff5e635b,0xc853584f,0x3f4e534b,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x37949892,0xcf92968f,0xff999d96,0xfeafb2ad,0xfe9a9e97,0xff72776f,0xff6d7169,0xff979b95,0xffbfc2be,0xffd1d3d0,0xfec0c2be,0xfe979c95,0xff6c7069,0xff434740,0xdf252922,0xe14a4d48,0xf180817d,0xc0999b96,0xe6d7d7d5,0xc3fbfbfa,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf5ffffff,0xd5ffffff,0xdbe2e3e1,0xdebdbfbb,0xdf949892,0xe8787c76,0xe85b6057,0xfa5f645b,0xff72776f,0xfe737870,0xff60655c,0xd94f544b,0x3f4a4f47,0x0,0x0,0x0,
+- 0x0,0x0,0x21959993,0xcb949791,0xff9a9e97,0xfeb8bbb6,0xff939690,0xff666b63,0xff787d75,0xffaeb1ac,0xffd5d7d4,0xffd4d6d3,0xfeaeb1ac,0xff797d76,0xff42463f,0xf331352e,0xeb61635f,0xd0969895,0xc5cbced2,0xf4eef1f7,0xffeef1f7,0xfceaedf2,0xffe7eaef,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfae5e7ed,0xfbe5e7ed,0xfee6e9ee,0xfde9ecf1,0xf1f4f5f9,0xd4ffffff,0xd5f7f6f4,0xe8c4c5c1,0xe790938e,0xea62675f,0xfe696f66,0xff73776f,0xff5d625a,0xd4494e46,0x2949 [...]
+- 0x0,0x4989e98,0xa7939791,0xff989c96,0xfebbbeb9,0xff979a94,0xff60655c,0xff7e827b,0xffbabdb9,0xffe0e2df,0xffd3d5d2,0xfea0a49e,0xff5f645d,0xf8272b24,0xdb3a3e38,0xe3a1a3a1,0xebf0f0f0,0xffffffff,0xd9bcc5d8,0xf4a0acc7,0xfaa0acc7,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc8,0xfaa1adc9,0xf99daac5,0xec94a0b9,0xe397a1b7,0xd8b3b8c7,0xcef1f2f7,0xe5fdfdfc,0xd1c4c7c3,0xd37d827a,0xfe6c7068,0xff72776f,0xff565b53, [...]
+- 0x0,0x52959993,0xff969a93,0xffaeb2ad,0xfeabaea9,0xff5e625a,0xff7b7f78,0xffbabdb8,0xffe7e8e6,0xffd6d7d4,0xfe9ea19c,0xff525750,0xec1a1e17,0xce555753,0xd7d6d6d5,0xf7ffffff,0xffffffff,0xffffffff,0xcf929eb8,0xf79babcd,0xff7a86a2,0xff6a748d,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a738c,0xff6a748d,0xff69758e,0xff6c7894,0xff7785a4,0xe96d7b9d,0xd76d7790,0xcfb6bac5,0xe5ffffff,0xebefefee,0xb2949791,0xf16d7269,0xff70756d [...]
+- 0x1b0a7b6,0xd2949891,0xff9ca09a,0xfec5c7c3,0xff656961,0xff6e736a,0xffaaada8,0xffe9eae8,0xffe0e2e0,0xfea9ada7,0xff565a52,0xeb181c16,0xbf565955,0xd7ededed,0xfdffffff,0xffffffff,0xfefefefe,0xffffffff,0xd093a0b8,0xf6a7b6d9,0xff5b657b,0xff6d7a96,0xff707c9a,0xff707c9a,0xff6f7c99,0xff6c7997,0xff6c7997,0xff6d7a98,0xff6d7a98,0xff6d7a98,0xff6d7a97,0xff6d7a98,0xff6e7a98,0xff6e7b99,0xff6d7b98,0xfe6a7692,0xfe5f6a83,0xff606b83,0xff677490,0xee58637c,0xc9a5a9b4,0xf8fdfdfe,0xdffcfcfc,0xaea9ada7,0xf7 [...]
+- 0x39959992,0xff949892,0xffadb0ab,0xff9b9e99,0xff5a5e56,0xff90938d,0xffd8d9d7,0xffefefee,0xffc1c3bf,0xff6e726b,0xf821241e,0xd5525451,0xd9eeefee,0xfcffffff,0xfffefefe,0xfefefefe,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff545d73,0xff7f91b6,0xff8495bc,0xff8395bc,0xff8496bc,0xffabbada,0xffaab9dc,0xffa5b5d9,0xffa5b5d9,0xffa5b5d9,0xffa7b6da,0xffa5b4d8,0xff9babcf,0xff90a1c5,0xff8798be,0xff7e8fb5,0xff7786aa,0xfe6f7d9c,0xfe636f89,0xff5b6781,0xea454e63,0xe4d1d3d7,0xffffffff,0xe9ffffff,0xb [...]
+- 0x8292968f,0xff969a94,0xfebdc0bc,0xff62675e,0xff70756d,0xffb0b3ad,0xfff1f1f0,0xffdfe1de,0xfe9ca09a,0xff393d36,0xea3b3d39,0xdecacac9,0xfdffffff,0xffffffff,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8192b8,0xff8597be,0xff8496be,0xfea4b4d6,0xff8e9cb9,0xff5e6880,0xff5d6880,0xff5d6880,0xff5d6880,0xff5d677f,0xff5c677f,0xff68748e,0xfe7b89a7,0xff8291b2,0xff8495ba,0xff8799c1,0xff8496bd,0xff7887a9,0xfe677490,0xff424c62,0xd3797d88,0xf4f2f2f3,0xffffffff,0xe [...]
+- 0xb590948d,0xff969a93,0xffafb2ad,0xff53584f,0xff82867e,0xffcaccc8,0xfff4f5f4,0xffcbcdc9,0xff777b74,0xf320241d,0xe9787a76,0xfcffffff,0xffffffff,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8496bd,0xff95a4c4,0xfe474f64,0xf31b1e26,0xcb222632,0xcd222632,0xcd222632,0xcc212531,0xcd222633,0xe9343b4b,0xff515c74,0xfe6f7b99,0xfe7886a5,0xff8294b9,0xff8597bf,0xff8597bf,0xfe7a89a9,0xff545f78,0xd3303745,0xf4e2e3e4,0xffffffff,0xf [...]
+- 0xcf8e928b,0xff949892,0xff9b9e98,0xff585d54,0xff8d928a,0xffd8d9d7,0xfff0f1f0,0xffbcbfba,0xff5b5f57,0xeb31342e,0xe0abacab,0xffffffff,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8895b4,0xfc3f475b,0xc7383a40,0xfcf7f7f7,0xf9efefef,0xf9efefef,0xf9efefef,0xfdf0f0f1,0xd3e0e1e4,0xaf6d778c,0xff717e9d,0xfe7783a0,0xff7080a1,0xff8699c0,0xff8597bf,0xff8596b9,0xff616d88,0xf2282e3b,0xfbdbdbdc,0xffffffff,0xf [...]
+- 0xce8a8e88,0xff91958f,0xff8b8f89,0xff5b5f57,0xff90958e,0xffdbdddb,0xffedeeed,0xffb5b8b3,0xff4f544c,0xf74b4e49,0xf3cccdcd,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfc40475c,0xc33d3e45,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfeffffff,0xe3cfd4dd,0xdc8091b3,0xff7a87a2,0xff6a7896,0xff8799c1,0xff8496be,0xff8e9ec2,0xfe67748f,0xff222734,0xffd7d7d9,0xfeffffff,0xf [...]
+- 0xb4878b85,0xff8d918b,0xff8a8e87,0xff5b6057,0xff8d908a,0xffd5d7d5,0xffecedec,0xffb5b8b3,0xff535851,0xf74e524d,0xf2d0d1cf,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfc40475c,0xc33d3e45,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfefefefe,0xffffffff,0xe6d6dae4,0xd88f9fc4,0xff7e8aa4,0xff657290,0xff8799c1,0xff8396bd,0xff95a6c9,0xff646f89,0xf01a1e28,0xfbd8d8d9,0xffffffff,0xf [...]
+- 0x83858982,0xff878c85,0xfe8a8e87,0xff5d625a,0xff82857f,0xffc4c6c3,0xffecedeb,0xffbdbfba,0xff6a6e67,0xe93e423c,0xdeb7b8b6,0xffffffff,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfc40475c,0xc43d3f45,0xffffffff,0xfefefefe,0xfefefefe,0xfefefefe,0xfffefefe,0xf5fcfcfd,0xecc0c9dc,0xfd9daed1,0xff818ba1,0xff5f6c8a,0xff889ac2,0xff8899c0,0xfe9dacd0,0xff535c72,0xcb0f1119,0xf2dfdfdf,0xffffffff,0xf [...]
+- 0x37848881,0xff80847d,0xff888c85,0xff6b7068,0xff737870,0xffaaada8,0xffe6e7e5,0xffcbceca,0xff898d86,0xef343931,0xe58e8f8c,0xffffffff,0xffffffff,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8597be,0xff808ead,0xfd495268,0xe54f5668,0xfebcc4d5,0xf9bac0d2,0xfab9c0d2,0xfbbac1d2,0xeeb5bdcf,0xd894a3c1,0xf899abcf,0xff99a5ba,0xfe636e81,0xff7686ab,0xff8597bf,0xfea5b6d8,0xff8c9ab8,0xff292e3c,0xc0525356,0xf0f0f0f0,0xffffffff,0xf [...]
+- 0x0,0xd27c8078,0xff81857e,0xfe7c817a,0xff696e66,0xff8e928b,0xffcbcdca,0xffd9dad8,0xfea7aba5,0xff5a5f56,0xe65b5f58,0xdbdfdfde,0xffffffff,0xfffefefe,0xfefefefe,0xffffffff,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8597be,0xfe7786a5,0xff6c7893,0xff7d8cab,0xff808eb1,0xff8190b2,0xff8090b2,0xff8090b1,0xff8493b5,0xff9eaecd,0xffa0adc1,0xfe5d6573,0xff657390,0xff90a2c8,0xfeaabad8,0xffa5b4d0,0xff4a5265,0xe90c0d12,0xd4c5c4c5,0xf7ffffff,0xffffffff,0xf8ffffff [...]
+- 0x0,0x51797d76,0xff787d75,0xff81857e,0xfe73776f,0xff787d75,0xffa3a5a0,0xffd4d6d3,0xffc1c4c0,0xff8e928b,0xf3464b42,0xcd7d807b,0xe0fcfdfc,0xffffffff,0xfffefefe,0xfefefefe,0xffffffff,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8597be,0xff8294ba,0xff58647d,0xff596276,0xff5d657a,0xff5e677b,0xff5e677b,0xff5f677c,0xff5e667a,0xff4e5667,0xff525a6c,0xfe8f9db8,0xfeacbcdc,0xffacbad6,0xff8390aa,0xfe3a4153,0xfa16181c,0xad7e7e7f,0xe9fbfbfb,0xffffffff,0xffffffff,0xa1c4c6c2 [...]
+- 0x0,0x0,0xae747870,0xff787c74,0xff7d817a,0xfe747871,0xff848880,0xffacafaa,0xffc9ccc7,0xfeb1b5af,0xff7f847d,0xe4484d45,0xd29c9f9b,0xeefcfcfc,0xfcffffff,0xffffffff,0xfefefefe,0xffffffff,0xd093a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8496bd,0xff8597be,0xff92a3c9,0xff8b9bc0,0xff8797bb,0xff8697bb,0xff8394b8,0xff8090b5,0xff7c8eb3,0xff91a2c6,0xfea8b6d4,0xff707c95,0xff4b5469,0xfa353b4d,0xf01e212b,0xe3252527,0xcaa2a2a2,0xf5ffffff,0xffffffff,0xf2ffffff,0xeae4e6e4,0xf8828680,0xba28 [...]
+- 0x0,0x0,0x1a73796f,0xd36f736b,0xff757a72,0xfe7b7e77,0xfe797d75,0xff898d86,0xffabaea9,0xffbbbeba,0xfea8aca6,0xff7e827b,0xec575c54,0xc6939791,0xdff0f0ef,0xfdffffff,0xffffffff,0xffffffff,0xcf93a0b9,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8496bd,0xfe92a3c8,0xffabbad6,0xff97a5c3,0xff94a1bf,0xff93a1bf,0xff8f9dbd,0xfe8c9cbe,0xff8698bc,0xff8e9fc3,0xff68748d,0xfe242937,0xfa2b2e37,0xd23c3e43,0xb9868786,0xccf3f3f3,0xf8ffffff,0xffffffff,0xf0f9faf9,0xc6d6d7d4,0xee7e817b,0xd8333731,0x2327 [...]
+- 0x0,0x0,0x0,0x326d7069,0xd66a6f67,0xff70756d,0xff787d75,0xfe7d817a,0xff8a8e87,0xffa3a6a1,0xffafb2ac,0xfea2a69f,0xff848881,0xef5c6158,0xd9858882,0xe5d2d3d1,0xedfafaf9,0xffffffff,0xd095a1ba,0xf6a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8496bd,0xffa3b3d3,0xfe66728b,0xfb2f3544,0xeb31384a,0xee333b4d,0xfc495369,0xff697693,0xfe7c8ba9,0xff7988a8,0xff626e88,0xfe616c86,0xef8490ab,0xcda5aec3,0xdbd5d8e1,0xf3fbfbfd,0xeaffffff,0xedededec,0xcbb7bab5,0xfd757972,0xde3a3d39,0x3d1f211e,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x36696e66,0xc5656a62,0xff6a6f67,0xff737870,0xfe7c8079,0xff888b84,0xff999c96,0xffa2a6a0,0xfe9ca09a,0xff8b8f88,0xff6d7169,0xe76c7068,0xda9fa39d,0xe9dadad6,0xd18a97af,0xf7a5b5d8,0xff555e75,0xff8092b8,0xff8597be,0xff8496be,0xff8b9ab9,0xfd3b4255,0xdd212227,0xdd929397,0xdc8a8b90,0xdd747984,0xf95d6880,0xff6e7c9a,0xfe707d9a,0xfe697591,0xff6c7892,0xff6c7894,0xff687493,0xeb5d6985,0xd4969ba6,0xd4c2c4c1,0xda8c9089,0xff61655e,0xcd333731,0x401d1f1b,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x26636960,0xa160665d,0xf6646960,0xff6a6f67,0xff767a72,0xfe81857d,0xff8e928b,0xff999c96,0xfe989c95,0xfe90948d,0xff81857d,0xfe6c7068,0xe8777a70,0xea727e92,0xfca5b5d7,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8694b3,0xfc40475c,0xbe404249,0xffffffff,0xffffffff,0xdfffffff,0xd9a7adba,0xf462708e,0xff7b88a6,0xff687592,0xff687593,0xfe636e89,0xfe6b7791,0xff606c87,0xf94a5367,0xff5c6161,0xfb51544e,0xa9262924,0x2c171a15,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0xd63685f,0x695d6258,0xc95d6259,0xff60655d,0xff686d65,0xff737870,0xfe80837c,0xff8b8f88,0xff91958e,0xfe91968f,0xff8d918b,0xff84877d,0xff747f90,0xffa5b4d6,0xfe555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfd40475c,0xd0383a3f,0xd6dddedb,0xe8d8d9d7,0xb9cdceca,0xb5b0b3b3,0xe869748a,0xff717f9e,0xff7784a1,0xff7e8fb3,0xff8496bd,0xff7281a2,0xfe66738e,0xff515c74,0xff3d434f,0x7f252928,0xe121206,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d5b5f56,0x79585d54,0xcf585e55,0xff5a5f57,0xff61665e,0xff6b7068,0xff767b73,0xfe80847c,0xff878b84,0xff8c9087,0xff798497,0xffa5b4d6,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfe40485c,0xf33c3f41,0xdf92968f,0xed959993,0xcd848881,0xe08d918a,0xf983898f,0xff6d7a98,0xff7784a1,0xff717f9e,0xff8698c0,0xff8799c1,0xff7584a4,0xff626e89,0xff495267,0x68505869,0x3dae3fe,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x366685c,0x2d535850,0x65535850,0xae535850,0xf352584f,0xff555a51,0xff5b6058,0xff636860,0xff6c7066,0xff6e7a8c,0xfea5b4d6,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xfe8795b3,0xff40485c,0xff3e4143,0xff898d85,0xff81857d,0xff7c8079,0xff72766e,0xff616662,0xff576071,0xff7380a0,0xfe7884a2,0xff7888ab,0xff8799c1,0xff8293b9,0xfe6d7a98,0xff56617a,0xe5495264,0x2f565b6a,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b4f544c,0x374c5149,0x664e524a,0xa04d5249,0xd54c5249,0xff4b4e44,0xff5f6a7c,0xffa4b3d5,0xfe555e75,0xff8092b8,0xff8597be,0xff8497be,0xfe8795b3,0xff40475b,0xff2a2d2e,0xff51554c,0xff484c44,0xff41453e,0xff3c4039,0xd5363b33,0xc1444c53,0xf26e7b99,0xff74819e,0xff7482a1,0xff8496bd,0xff8698c0,0xff7a8aac,0xff677490,0xff4b556b,0x9d4e5566,0xe555b67,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35b5f58,0x14494e46,0x22464b43,0x2534351d,0xb86d7b97,0xfba6b5d7,0xff555e75,0xff8092b8,0xff8597be,0xff8497be,0xff8795b3,0xfe40475b,0xde23262a,0x833d4038,0x6d3a3d37,0x4d393d36,0x3032352e,0x2026291f,0x29585f68,0xa2697591,0xff717f9e,0xfe7684a1,0xff7686a8,0xff8699c0,0xff8597be,0xfe6f7d9b,0xff5f6b85,0xff474f63,0x4b575d6c,0x2c9cccc,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa17585a5,0xfaa7b6d9,0xff535c72,0xff7e90b6,0xff8295bc,0xff8294bc,0xff8593b2,0xfd40485c,0xb6292b32,0x28c8941,0x6434641,0x0,0x0,0x0,0x0,0x4d67728c,0xee6e7b97,0xff727f9c,0xfe7582a1,0xff8192b8,0xff8396be,0xff7e8fb3,0xfe687490,0xff4f5a72,0xd14a5264,0x14525869,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa17585a4,0xfaa7b6d9,0xff717d97,0xffa5b5d7,0xffabbadd,0xffabbadd,0xff9faecd,0xfd40475c,0xb22a2c33,0x0,0x0,0x0,0x0,0x0,0x0,0xe9099aa,0x9766728e,0xff727f9e,0xfe8492b0,0xff9aa8ca,0xffadbcdf,0xffacbbde,0xfe9eadcc,0xff7f8ca8,0xff4a5369,0x76545b69,0x6616670,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa37a8bac,0xfc72809c,0xff515b72,0xff515a71,0xff515b72,0xff515b72,0xff505a71,0xfe3a4255,0xb32a2c33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x486c7690,0xe267738f,0xff56627b,0xff4c566b,0xff4e586e,0xff4e586e,0xff4e576d,0xff4d576c,0xff465065,0xf9434c5d,0x27616977,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e697289,0xcc393d48,0xd330333b,0xd330333b,0xd330333b,0xd330333b,0xd330333b,0xd931353e,0x983d4047,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8ddebff,0x77525868,0xd4393d47,0xca2f323a,0xca30333b,0xca30333b,0xca30333b,0xca30333b,0xca30333b,0xd0343741,0x7a5a606c,0x6686e7b,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+- 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
++99, 77,0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ffffff,
++0x00fbfafa,
++0x00d3caca,
++0x00ffffff,
++0x00000000,
++0x00bfbcc4,
++0x01bcb9c2,
++0x08bcbfc1,
++0x10bfc1c3,
++0x1dbec1c4,
++0x32c0c2c5,
++0x48c3c4c7,
++0x5ac5c7ca,
++0x6ac4c6ca,
++0x7cc3c5c8,
++0x8bc1c4c6,
++0x97c0c2c5,
++0x9fbfc1c4,
++0xa4bec0c3,
++0xa5bdbfc3,
++0xa3bdbfc2,
++0x9dbdbec2,
++0x93bdbfc2,
++0x86bdbfc2,
++0x76bdbfc3,
++0x65bdc0c3,
++0x55bcbec1,
++0x41b8babd,
++0x2bb7b8bc,
++0x17b5b6ba,
++0x0db4b6b9,
++0x05b5bab9,
++0x00dfebd3,
++0x00bec4bf,
++0x00000000,
++0x00000000,
++0x00b5b5b5,
++0x00787878,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00fefefe,
++0x00f4f4f3,
++0x00c2c2bd,
++0x00000000,
++0x00bec3c1,
++0x00d3d8ee,
++0x05bec4c2,
++0x12c3c5c7,
++0x2dc3c5c8,
++0x50c6c9cb,
++0x73c6c8cc,
++0x99c4c7ca,
++0xb5c7cacd,
++0xccc7c9cc,
++0xe0c4c6c9,
++0xedc2c5c8,
++0xf1c4c7ca,
++0xf5c4c7ca,
++0xf8c3c6c9,
++0xfbc2c4c7,
++0xfdc0c3c6,
++0xfebfc1c5,
++0xfebec0c4,
++0xffbec0c3,
++0xfebdbfc3,
++0xfdbdbfc3,
++0xfcbdbfc3,
++0xfabdbfc3,
++0xf7bec0c3,
++0xf4bdbfc3,
++0xf0bbbdc1,
++0xeab9bbbf,
++0xdababcc0,
++0xc5bcbec1,
++0xadb9bbbf,
++0x8eb6b8bc,
++0x67b7b9bd,
++0x46b5b7bb,
++0x23b1b2b8,
++0x0db0b0b8,
++0x02b2b0b5,
++0x00b3b2b5,
++0x00a5a597,
++0x00a1a195,
++0x00b4b4b1,
++0x00e9e9ea,
++0x00fcfcfc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ededed,
++0x00c7c7c7,
++0x00aeaeae,
++0x00bdc1c6,
++0x02bec2c6,
++0x0fc4c7c8,
++0x30c7c9cb,
++0x60c8cacd,
++0x95c6c9cb,
++0xc1c9cbce,
++0xe2c6c9cc,
++0xf4c6c9cb,
++0xfbc6c9cc,
++0xffc4c6c9,
++0xffc2c5c8,
++0xffc2c5c8,
++0xffc1c4c7,
++0xffc0c2c5,
++0xffbfc2c5,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdc0c3,
++0xfebdbfc2,
++0xfebcbec2,
++0xfebcbec1,
++0xfebbbdc1,
++0xfebbbdc0,
++0xfebabcbf,
++0xfebabbbf,
++0xfeb9bbbe,
++0xfeb8babe,
++0xfeb8b9bd,
++0xffb7b9bc,
++0xffb7b9bc,
++0xffb7b9bc,
++0xffb7b8bc,
++0xffb6b8bc,
++0xfeb6b8bc,
++0xf9b7b9bd,
++0xf0b5b7bb,
++0xd9b6b7bb,
++0xb4b5b7bb,
++0x84b2b3b8,
++0x51b3b5b9,
++0x24afb0b5,
++0x09aaabb5,
++0x009a91af,
++0x009995a0,
++0x008e8e90,
++0x008787c5,
++0x000000ff,
++0x008080ff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00bebebe,
++0x00bebebe,
++0x00bebebe,
++0x00c0c4c7,
++0x02c0c4c6,
++0x12c4c7cb,
++0x3fc9cbce,
++0x7dc8cacd,
++0xb8cacccf,
++0xe4c8cacd,
++0xf8c8cacd,
++0xffc5c8cb,
++0xffc5c7ca,
++0xffc3c6c9,
++0xffc2c5c7,
++0xfec2c4c7,
++0xfec1c4c6,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbdc1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbe,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xffb2b3b8,
++0xffb2b4b8,
++0xffb2b3b7,
++0xfeb3b4b8,
++0xf4b2b4b8,
++0xd8b2b3b8,
++0xa7b2b3b8,
++0x68b0b2b7,
++0x2eafb0b5,
++0x0aa9abb0,
++0x008b8a93,
++0x00999aa5,
++0x00a19c9c,
++0x00e6e4e4,
++0x00ffffff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00dcdcd7,
++0x00b5b5aa,
++0x00c7c7ca,
++0x09c5c8ca,
++0x32c9cccd,
++0x77c9ccce,
++0xbdcbced0,
++0xebc9cccf,
++0xfcc8cbce,
++0xffc6c8cb,
++0xffc5c7ca,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c3,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbdc1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb7b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b3b7,
++0xfeb1b3b7,
++0xfeb0b2b6,
++0xfeb0b1b5,
++0xfeafb0b5,
++0xffafb0b5,
++0xffafb0b5,
++0xf9b0b1b6,
++0xdfb0b1b6,
++0xa9afb1b6,
++0x60adaeb3,
++0x21a9aab0,
++0x04a3a5a9,
++0x00ada9b5,
++0x00808080,
++0x00808080,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00f8ffff,
++0x00c4a0ab,
++0x00bfb8c4,
++0x13c7cacc,
++0x4fcacdcf,
++0xa2cacdd0,
++0xe1cbced0,
++0xfbcacccf,
++0xffc7cacc,
++0xffc5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b3b7,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb0b5,
++0xfeaeb0b4,
++0xfeaeafb3,
++0xfeadaeb3,
++0xfeacadb2,
++0xffacadb2,
++0xffacadb2,
++0xf6adaeb3,
++0xd1adaeb3,
++0x88abadb2,
++0x37a9aaaf,
++0x09a8aaac,
++0x00a6a5aa,
++0x00898989,
++0x00aaaaaa,
++0x00acacac,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00bcffff,
++0x00bcffff,
++0x00b7ffff,
++0x00baf2e2,
++0x15c7cacd,
++0x5ecaccd0,
++0xb9cbced0,
++0xf1cacdd0,
++0xfec9cbce,
++0xffc7cacc,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb0b5,
++0xfeaeb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeacaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9abaf,
++0xffa9abb0,
++0xfdaaabb0,
++0xe5aaabb0,
++0x9ea9aaaf,
++0x41a7a8ad,
++0x0aa3a3a7,
++0x00a0a2a9,
++0x0084847f,
++0x00808080,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00d2caca,
++0x00d8c8c8,
++0x00e1c4c4,
++0x10c4cacb,
++0x59cbced0,
++0xbdccced1,
++0xf5cacdcf,
++0xffc8cbcd,
++0xfec6c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bcbf,
++0xfeb9bbbe,
++0xfeb9babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b6b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb0b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeaeb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeadaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9abaf,
++0xfea9aaaf,
++0xfea8a9ae,
++0xfea7a8ad,
++0xffa7a8ad,
++0xfea8a9ae,
++0xeaa8a9ae,
++0x9fa8a9ae,
++0x3ca5a6ab,
++0x069ea0a3,
++0x00a4a7a3,
++0x008080ff,
++0x008080ff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00f9f9b1,
++0x005c5ce2,
++0x00cfd3cf,
++0x06c5c8c9,
++0x42cacdcf,
++0xaecdd0d2,
++0xf2cccfd1,
++0xffc8cbcd,
++0xfec7cacc,
++0xfec6c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadaeb3,
++0xfeacaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeaaabb0,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8a9ae,
++0xfea8a8ad,
++0xfea7a8ad,
++0xfea6a7ac,
++0xfea6a6ac,
++0xffa5a6ab,
++0xfea6a6ac,
++0xe5a6a7ad,
++0x8da6a7ad,
++0x28a4a4aa,
++0x02989da0,
++0x00c8cfd9,
++0x00808080,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00b5b5ad,
++0x00919579,
++0x00ceb3cb,
++0x1fcaccd0,
++0x89cccfd1,
++0xe7cccfd1,
++0xffcacccf,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadaeb3,
++0xfeacaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeaaabb0,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8a9ae,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a7ac,
++0xfea6a6ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xfea3a4aa,
++0xffa3a4a9,
++0xfca4a5ab,
++0xd1a5a6ab,
++0x63a3a4a9,
++0x0f9e9fa3,
++0x00a1a3a7,
++0x00808080,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ffffff,
++0x00909298,
++0x04c4c3c9,
++0x4bccced0,
++0xc5cccfd2,
++0xfccbced0,
++0xffc8cbcd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xfeb2b3b7,
++0xfeb1b3b7,
++0xfeb0b2b6,
++0xfeb0b1b6,
++0xfeafb0b5,
++0xfeaeb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeacaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8a9af,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a7ac,
++0xfea5a6ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xfea4a4aa,
++0xfea3a4a9,
++0xfea2a3a8,
++0xfea1a2a8,
++0xffa1a2a8,
++0xf3a3a4a9,
++0xa1a3a3a9,
++0x2a9fa0a7,
++0x01959397,
++0x00928780,
++0x00999494,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00cfcaca,
++0x00cfcaca,
++0x00c6cccf,
++0x12c7cacd,
++0x7bcdcfd2,
++0xe7cdcfd1,
++0xffc9ccce,
++0xfec8cacd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec6c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb7b9bc,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb5b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b2b6,
++0xfeafb1b5,
++0xfeafb0b5,
++0xfeaeb0b4,
++0xfeaeafb3,
++0xfeadaeb3,
++0xfeacadb2,
++0xfeabadb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8a9af,
++0xfea8a8ae,
++0xfea7a8ad,
++0xfea6a7ac,
++0xfea6a6ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xfea4a4aa,
++0xfea3a4a9,
++0xfea2a3a8,
++0xfea1a2a8,
++0xfea1a1a7,
++0xfea0a1a6,
++0xfea0a0a6,
++0xfda1a1a7,
++0xd0a1a1a7,
++0x50a0a0a6,
++0x04979b9d,
++0x00f5f5ff,
++0x007f7f7f,
++0x007f7f7f,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ffffff,
++0x00ddd9df,
++0x20cdd0d1,
++0xa2cdd0d3,
++0xf9cbced0,
++0xffc9cccd,
++0xfec8cacd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec6c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb7b9bd,
++0xffb7b8bc,
++0xffb6b8bc,
++0xffb7b9bd,
++0xffb7b9bd,
++0xffb6b8bc,
++0xffb5b6ba,
++0xffb4b6ba,
++0xfeb4b6ba,
++0xfcb4b6ba,
++0xfcb4b5ba,
++0xfcb3b5b9,
++0xfcb2b4b9,
++0xfeb1b3b7,
++0xffb0b1b6,
++0xffaeb0b4,
++0xffaeafb4,
++0xffaeafb4,
++0xffadafb3,
++0xffacaeb2,
++0xffabacb1,
++0xffa9abb0,
++0xfea9aaaf,
++0xfea8a9ae,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a7ac,
++0xfea6a7ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xfea4a4aa,
++0xfea3a4a9,
++0xfea2a3a9,
++0xfea1a2a8,
++0xfea1a2a7,
++0xfea0a1a6,
++0xfea0a0a6,
++0xfe9fa0a5,
++0xfe9e9fa4,
++0xff9e9fa4,
++0xe8a0a1a7,
++0x759fa0a6,
++0x0e99999e,
++0x0098989f,
++0x00aaaaaa,
++0x00aaaaaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x007f7f7f,
++0x00000000,
++0x00ffffff,
++0x31cacdcf,
++0xbacfd1d4,
++0xfdcbcdd0,
++0xfec8cbcd,
++0xfec8cacd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebabcbf,
++0xfebabbbf,
++0xffb9bbbe,
++0xffb9bbbf,
++0xffb9bbbe,
++0xfeb9bbbe,
++0xf5bbbdc0,
++0xe9babcc0,
++0xdab7b9bd,
++0xc3b9bbbf,
++0xadbabdc1,
++0x9cbabcc0,
++0x8eb6b8bc,
++0x83b3b4b8,
++0x78b3b4b8,
++0x71b2b4b8,
++0x6db2b3b8,
++0x6db1b3b7,
++0x70b0b2b7,
++0x76afb1b5,
++0x7eafb0b4,
++0x88aeb0b4,
++0x93b0b2b7,
++0x9fb2b3b8,
++0xafb1b2b7,
++0xc3aeb0b4,
++0xd8abacb1,
++0xe6acadb2,
++0xf1adaeb3,
++0xfca9abb0,
++0xffa8a9ae,
++0xffa8a9ae,
++0xffa6a7ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xfea3a4aa,
++0xfea3a4a9,
++0xfea2a3a8,
++0xfea1a2a8,
++0xfea1a1a7,
++0xfea0a1a7,
++0xfea0a0a6,
++0xfe9fa0a5,
++0xfe9e9fa5,
++0xfe9e9ea4,
++0xfe9d9da3,
++0xff9c9da3,
++0xf59e9fa5,
++0x929d9da3,
++0x159b9ca2,
++0x00a6a89c,
++0x008080bf,
++0x008080bf,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x008c8686,
++0x008c756b,
++0x00ffffff,
++0x3acacdd0,
++0xcacdd0d2,
++0xffcbcdd0,
++0xfec8cbcd,
++0xfec8cbcd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebbbdc1,
++0xfebbbdc0,
++0xffbbbdc0,
++0xffbbbdc0,
++0xfbbcbec1,
++0xeabcbec1,
++0xcdbbbdc0,
++0xa4bcbec2,
++0x7cb9babe,
++0x54b9bbbf,
++0x39b9bbbe,
++0x23b5b6ba,
++0x12afb4b8,
++0x09adb0b5,
++0x05acaeb2,
++0x03a7aaac,
++0x029cb1b1,
++0x01b6cbbe,
++0x00ffffe3,
++0x00e0f6d3,
++0x00d6ffa5,
++0x00e3ff9d,
++0x00cadbb8,
++0x019595bb,
++0x02a9abae,
++0x04a9adb0,
++0x06a1a2a6,
++0x0aa5a6aa,
++0x12a8a9ac,
++0x21a9abaf,
++0x33abacb1,
++0x4baaacb1,
++0x6ca8aaae,
++0x93aaabb0,
++0xb9a9aab0,
++0xdea7a8ad,
++0xf3a7a8ae,
++0xfea5a6ab,
++0xffa4a5aa,
++0xffa2a3a9,
++0xfea1a2a8,
++0xfea1a1a7,
++0xfea0a1a6,
++0xfea0a0a6,
++0xfe9fa0a5,
++0xfe9f9fa5,
++0xfe9e9fa4,
++0xfe9d9ea3,
++0xfe9c9da3,
++0xfe9c9ca2,
++0xfe9b9ba1,
++0xfa9c9ca3,
++0x9f9d9da4,
++0x179b9ba2,
++0x00b0b0a7,
++0x0081817f,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ffffff,
++0x00b9b8c4,
++0x38cacdd0,
++0xcfcccfd2,
++0xffcacdcf,
++0xfec8cbcd,
++0xfec8cbcd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xffbcbec2,
++0xffbdbfc2,
++0xf6bec0c3,
++0xd9bdbfc3,
++0xa6bdbfc3,
++0x6cbbbdc0,
++0x3cbabcc0,
++0x19b6b8bc,
++0x07b4b6b9,
++0x01b7b4b9,
++0x00bab9be,
++0x00000000,
++0x00988b82,
++0x0097857b,
++0x00a49f99,
++0x007a7874,
++0x00ffffff,
++0x0052c3bd,
++0x00bfcac7,
++0x00c9c6c4,
++0x00c7c7c3,
++0x00c6c5c3,
++0x00c8c7c6,
++0x00cfcbca,
++0x008f8dce,
++0x00150f24,
++0x005d5d5d,
++0x0076736e,
++0x00b3b1ab,
++0x00a7a38f,
++0x00c4cbf3,
++0x00887517,
++0x00a5a1ad,
++0x00aca6b3,
++0x04a3a3a8,
++0x0da2a3a9,
++0x28a6a6ab,
++0x4fa5a6ac,
++0x86a4a6ab,
++0xbda6a6ac,
++0xe8a4a5ab,
++0xfca3a4aa,
++0xffa1a2a7,
++0xfe9fa0a6,
++0xfe9f9fa5,
++0xfe9e9fa5,
++0xfe9e9fa4,
++0xfe9d9da3,
++0xfe9c9da3,
++0xfe9c9ca2,
++0xfe9b9ba1,
++0xfe9a9ba1,
++0xfe9a9aa0,
++0xfc9a9ba1,
++0xa19c9ca3,
++0x169999a0,
++0x0095958e,
++0x007d7dff,
++0x008080ff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00cccccc,
++0x00cbc8c9,
++0x00c9ccd3,
++0x2dcacfd0,
++0xc7cdd0d3,
++0xffcacdcf,
++0xfec8cbcd,
++0xfec8cbcd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xffbdbfc2,
++0xfbbec0c4,
++0xdfbfc1c5,
++0xa4bfc1c4,
++0x5dbcbfc1,
++0x27babdc0,
++0x09b1b4b7,
++0x01908d90,
++0x00a5a7a7,
++0x00f5f5f5,
++0x00fafafa,
++0x00bdbdb9,
++0x00afafae,
++0x00959595,
++0x00ffffff,
++0x00ffffff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00959191,
++0x00829d9d,
++0x0093c1bd,
++0x001c1813,
++0x00000000,
++0x00000000,
++0x00adabb8,
++0x039a9d9f,
++0x12a0a0a5,
++0x3aa2a3a9,
++0x7ba3a4a9,
++0xc3a3a4aa,
++0xf2a2a3a8,
++0xffa0a0a6,
++0xff9d9ea4,
++0xfe9d9da3,
++0xfe9c9da3,
++0xfe9c9ca2,
++0xfe9b9ca1,
++0xfe9a9ba0,
++0xfe9a9aa0,
++0xfe9999a0,
++0xfe98989f,
++0xfb999aa0,
++0x999a9aa0,
++0x1096969b,
++0x00858590,
++0x00babab6,
++0x00999999,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00fefefe,
++0x00ffffff,
++0x00ced5d9,
++0x1bcbcdd0,
++0xb4cfd1d4,
++0xfecbced0,
++0xfec8cbcd,
++0xfec8cbcd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec3c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xffbec0c3,
++0xf7bfc1c4,
++0xcabfc1c5,
++0x78bfc1c4,
++0x2fbec0c2,
++0x09b6b8bc,
++0x00b2b8b2,
++0x00ffecc6,
++0x008b7f77,
++0x009c9c9b,
++0x00939393,
++0x00e2e2e2,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00d1cece,
++0x009d9895,
++0x00c7c6b6,
++0x00ffffda,
++0x02999699,
++0x179e9fa4,
++0x52a1a1a7,
++0xaaa1a1a8,
++0xeda0a0a6,
++0xff9d9ea4,
++0xfe9c9ca2,
++0xfe9b9ba1,
++0xfe9a9ba1,
++0xfe9a9aa0,
++0xfe9999a0,
++0xfe99999f,
++0xfe98989f,
++0xfe97979e,
++0xf898999f,
++0x8298989f,
++0x07939297,
++0x008181a8,
++0x009e9e97,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00cfcfc9,
++0x00b5bcca,
++0x0bc6c8cb,
++0x95cccfd2,
++0xfccbced0,
++0xfec8cbcd,
++0xfec8cbcd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec3c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xffbec0c3,
++0xf9c0c1c5,
++0xc4c0c2c5,
++0x66bfc1c4,
++0x1bbbbdc1,
++0x02adabae,
++0x00ffffff,
++0x00b8b6af,
++0x00d7d4d3,
++0x00ffffff,
++0x00fbffff,
++0x0000ffff,
++0x0000a3ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x000080ff,
++0x00007fff,
++0x000051ff,
++0x0000ffff,
++0x00e4cc9c,
++0x00ddc99b,
++0x00c1bc9f,
++0x0098988d,
++0x00ffffff,
++0x0c9b9ba1,
++0x499e9fa4,
++0xb19e9ea5,
++0xf59d9da4,
++0xff9b9ba2,
++0xfe999aa0,
++0xfe9999a0,
++0xfe98999f,
++0xfe98989f,
++0xfe97979e,
++0xfe97979d,
++0xff96969d,
++0xed98999f,
++0x5b98989f,
++0x007c7b7c,
++0x00f2f2e7,
++0x00aaaaaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ababab,
++0x00a0a098,
++0x01685764,
++0x62ced0d2,
++0xf2cccfd2,
++0xffc8cbcd,
++0xfec8cbcd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xffbec0c3,
++0xfdc0c2c5,
++0xd4c0c2c5,
++0x6fbfc1c5,
++0x1abebfc3,
++0x01b1b4b8,
++0x00000000,
++0x00c9c9c8,
++0x00d0d0d0,
++0x00bababa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004f61ef,
++0x005757f0,
++0x00546efb,
++0x0020edfa,
++0x00978c8a,
++0x006b5941,
++0x00b7b8bf,
++0x109a9aa1,
++0x649d9da3,
++0xd59d9da3,
++0xfe9a9ba1,
++0xfe98989f,
++0xfe98989f,
++0xfe97979e,
++0xfe97979d,
++0xfe96969d,
++0xfe95959c,
++0xff95959c,
++0xd697979e,
++0x3195959b,
++0x007c7c87,
++0x00747474,
++0x007f7f7f,
++0x00000000,
++0x00838383,
++0x00656565,
++0x00d5d9dd,
++0x2ecacdcf,
++0xd6cdcfd1,
++0xffc9ccce,
++0xfec8cbcd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec4c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xffbfc1c4,
++0xefc0c3c6,
++0x95c0c3c6,
++0x29bdc0c3,
++0x01bec4c1,
++0x006e82c0,
++0x00c6c6c2,
++0x00f8f8f8,
++0x00ffffff,
++0x00000000,
++0x000052a9,
++0x00004ea4,
++0x00688cdf,
++0x0d296dc2,
++0x21296dc3,
++0x21296dc4,
++0x21296dc4,
++0x21296dc5,
++0x21296dc5,
++0x21296dc5,
++0x21296dc3,
++0x21296dc3,
++0x21296dc3,
++0x21296dc3,
++0x21296dc3,
++0x21296dc3,
++0x21296dc3,
++0x21296dc2,
++0x21296cc2,
++0x21296cc2,
++0x21296bc2,
++0x21276bc2,
++0x21276bc1,
++0x21276bc0,
++0x21276bc0,
++0x21276bc0,
++0x21276bc0,
++0x21276ac0,
++0x21266ac0,
++0x21266ac0,
++0x21266ac0,
++0x21266ac0,
++0x21266abf,
++0x21266abf,
++0x212668bf,
++0x212668bf,
++0x222669bf,
++0x21256abe,
++0x1b2569be,
++0x10286abe,
++0x032f63c3,
++0x002169bb,
++0x00027673,
++0x00057281,
++0x00355ab6,
++0x00a4a6a4,
++0x028f8e93,
++0x2f9b9ba1,
++0xab9c9ca2,
++0xfb999aa0,
++0xfe98989e,
++0xfe97979d,
++0xfe96969d,
++0xfe96969c,
++0xfe95959b,
++0xfe94949b,
++0xfe95959c,
++0xa497979d,
++0x0e909095,
++0x00797989,
++0x00868682,
++0x00000000,
++0x00c1c1c1,
++0x00a8b1be,
++0x08c2c3c6,
++0x98ccced1,
++0xfecacdcf,
++0xfec8cacd,
++0xfec7cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec3c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c3,
++0xffbfc2c5,
++0xd4c1c3c6,
++0x57c1c3c6,
++0x09babbbe,
++0x00b0b0b5,
++0x00e9e8e6,
++0x00f3f2f1,
++0x00ffffff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x002e74b9,
++0x003075b7,
++0x002a68d3,
++0x52296fc6,
++0xd62b72cb,
++0xd92a70c9,
++0xd92b71c9,
++0xd92b71c9,
++0xd92b70c9,
++0xd92a70c9,
++0xd92a70c8,
++0xd92970c8,
++0xd92970c8,
++0xd92970c8,
++0xd92970c8,
++0xd92970c8,
++0xd92970c8,
++0xd92970c7,
++0xd9296fc7,
++0xd92a6fc7,
++0xd9296fc7,
++0xd9286fc7,
++0xd9286fc6,
++0xd9286fc6,
++0xd9286fc6,
++0xd9286fc6,
++0xd9286ec6,
++0xd9286ec5,
++0xd9276ec5,
++0xd9276ec5,
++0xd9276ec5,
++0xd9276ec4,
++0xd9276dc4,
++0xd9276dc4,
++0xd9276cc4,
++0xd9266cc4,
++0xd9266cc3,
++0xd8266dc3,
++0xce266cc2,
++0xba266abf,
++0x93256abf,
++0x63256abf,
++0x2f2568bb,
++0x0b2267ba,
++0x002467bc,
++0x000f34e0,
++0x00232c5e,
++0x00d1d5a4,
++0x1597979e,
++0x8f9999a0,
++0xf59999a0,
++0xff96969d,
++0xfe95959c,
++0xfe95959b,
++0xfe94949b,
++0xfe94949a,
++0xff93939a,
++0xf395959c,
++0x5c94949b,
++0x00afafb9,
++0x0071716b,
++0x00808080,
++0x00b5b5b6,
++0x00cbd2d8,
++0x45cbced0,
++0xeacccfd1,
++0xffc8cacd,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec5c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xffbec0c3,
++0xfcc0c3c5,
++0xb5c1c4c6,
++0x31bdbfc2,
++0x00897983,
++0x00ffffff,
++0x00d4d2d2,
++0x00cfcece,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004181bf,
++0x004582be,
++0x001255cc,
++0x5e296fc5,
++0xf82a70c8,
++0xff296dc4,
++0xff296dc4,
++0xff296dc4,
++0xff296dc4,
++0xff286cc3,
++0xff286cc3,
++0xff286cc3,
++0xff286cc3,
++0xff286cc3,
++0xff286cc3,
++0xff286cc2,
++0xff286cc2,
++0xff286cc2,
++0xff286cc2,
++0xff286bc2,
++0xff276bc2,
++0xff276bc1,
++0xff276bc1,
++0xff276bc1,
++0xff276bc1,
++0xff276bc1,
++0xff276ac0,
++0xff266ac0,
++0xff266ac0,
++0xff266ac0,
++0xff266abf,
++0xff266abf,
++0xff266abf,
++0xff2669bf,
++0xff2569bf,
++0xff2569be,
++0xff2569be,
++0xff2569be,
++0xff2569bd,
++0xff2569bd,
++0xff2569bf,
++0xfa256abe,
++0xe2256abf,
++0xac2569be,
++0x592569be,
++0x152266bd,
++0x00cf9d53,
++0x00627985,
++0x007f8391,
++0x0d96969c,
++0x8399999f,
++0xf598989e,
++0xff95959b,
++0xfe94949b,
++0xfe94949a,
++0xfe93939a,
++0xfe929299,
++0xff929299,
++0xc494949a,
++0x19909097,
++0x00a3a398,
++0x00797991,
++0x00ffffff,
++0x0bc4c8c8,
++0xa4ccd0d2,
++0xffcacccf,
++0xfec7cacc,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec4c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c3,
++0xfac0c2c5,
++0x9dc2c5c8,
++0x1bbec0c2,
++0x00c7cada,
++0x00abaaaa,
++0x00949391,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001256cd,
++0x5e296fc6,
++0xf82a70c8,
++0xfe296dc3,
++0xfe296dc3,
++0xfe296cc3,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xff2468bd,
++0xf52469bf,
++0xbb246ac0,
++0x502469bd,
++0x082466b4,
++0x001c4b9b,
++0x00825b49,
++0x0d949498,
++0x8f97979d,
++0xfb95969d,
++0xfe93939a,
++0xfe93939a,
++0xfe929399,
++0xfe929299,
++0xfe919198,
++0xf892929a,
++0x66929299,
++0x00a2a28d,
++0x008a8a7e,
++0x00dcd2d7,
++0x3bcacdcf,
++0xe7ccced1,
++0xffc8cacd,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c3,
++0xfbc0c3c6,
++0x98c2c5c8,
++0x12bec0c3,
++0x00aab0b6,
++0x00d7d5d5,
++0x00d3d1d1,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001256cd,
++0x5e296fc5,
++0xf82a70c8,
++0xfe296dc3,
++0xfe296cc3,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bb,
++0xfe2367bb,
++0xff2368bc,
++0xed2469be,
++0x8b2469be,
++0x182266b8,
++0x002868bf,
++0x00c1abb0,
++0x1694949b,
++0xaf97979e,
++0xff94949b,
++0xfe929299,
++0xfe929299,
++0xfe919198,
++0xfe919097,
++0xff919198,
++0xbd929299,
++0x148e8e96,
++0x008e90a8,
++0x03c0c9d0,
++0x85ccced1,
++0xfdcacdcf,
++0xfec7cacc,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c9cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfec0c2c5,
++0xa6c2c5c8,
++0x14bec1c4,
++0x00a4adb7,
++0x00cdcdcd,
++0x00cdcdcd,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001255ce,
++0x5d296fc6,
++0xf82a6fc8,
++0xfe296cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367ba,
++0xfe2367ba,
++0xfe2366ba,
++0xfb2367bc,
++0xa92368bc,
++0x1d2367bc,
++0x002066bd,
++0x009e949b,
++0x3594949c,
++0xdc95959c,
++0xff929299,
++0xfe919198,
++0xfe919198,
++0xfe909097,
++0xff908f96,
++0xef929299,
++0x49909098,
++0x00a6a59a,
++0x1ac7c9cb,
++0xc5cccfd2,
++0xffc8cbcd,
++0xfec7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8cb,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xffbfc1c4,
++0xc5c1c3c6,
++0x24bebfc3,
++0x00b0b2bc,
++0x00cdcdcd,
++0x00cccccc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001254cd,
++0x5d296ec6,
++0xf8296fc7,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276ac0,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfd2267bb,
++0xa42267bb,
++0x132164b7,
++0x001ba5aa,
++0x0287888b,
++0x7894949b,
++0xfa93939a,
++0xfe909097,
++0xfe909097,
++0xfe909097,
++0xfe8f8f96,
++0xfe909097,
++0x8d919098,
++0x058e8e93,
++0x4acbcecf,
++0xeccbced0,
++0xffc7c9cc,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8cb,
++0xfec5c8ca,
++0xfec4c7c9,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xffbec0c3,
++0xe7c1c3c7,
++0x45c1c3c6,
++0x00bfc3c9,
++0x00e2e2e2,
++0x00e8e8e8,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cd,
++0x5e286ec5,
++0xf8296fc7,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xf92267bb,
++0x792268bd,
++0x03165eae,
++0x00d2c6c6,
++0x21919098,
++0xce93939a,
++0xff919198,
++0xfe908f97,
++0xfe8f8f96,
++0xfe8f8e95,
++0xff8f8f96,
++0xc4919198,
++0x198d8b94,
++0x81cacdcf,
++0xfacacdd0,
++0xfec6c9cb,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c2c5,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebdc0c3,
++0xfcc0c2c5,
++0x88c1c3c6,
++0x05b5baba,
++0x009f9998,
++0x00b3b3b3,
++0x008e8e8e,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cc,
++0x5e286ec5,
++0xf8296fc7,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xff2165b9,
++0xe02267bc,
++0x372166b9,
++0x002f7cbd,
++0x029c989b,
++0x7e929299,
++0xfd919198,
++0xfe8f8f96,
++0xfe8f8f96,
++0xfe8e8e95,
++0xff8e8d95,
++0xe88f8f96,
++0x408f8e96,
++0xb3cacdcf,
++0xffc7cacc,
++0xfec6c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec5c7ca,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xffbec0c3,
++0xd6c0c3c6,
++0x28bec0c3,
++0x00e2ecf7,
++0x004f5454,
++0x00989898,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cd,
++0x5e286ec5,
++0xf8296fc7,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2266b9,
++0x932267ba,
++0x061d5bb3,
++0x0093958d,
++0x37909098,
++0xe7919199,
++0xff8f8e96,
++0xfe8e8e95,
++0xfe8e8d95,
++0xfe8d8d94,
++0xf4909097,
++0x68908f97,
++0xd3cdcfd1,
++0xfec7cacc,
++0xfec5c8ca,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebfc1c4,
++0x87c0c2c5,
++0x03b2b3b4,
++0x00c4c3c2,
++0x00bfbfbf,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cd,
++0x5d286ec5,
++0xf8296fc7,
++0xfe286cc2,
++0xfe286cc2,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367ba,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b7,
++0xff2165b8,
++0xd82267bb,
++0x262164b7,
++0x0062819b,
++0x0f8c8c94,
++0xbb929299,
++0xff8f8f96,
++0xfe8e8d95,
++0xfe8d8d94,
++0xfe8c8c93,
++0xfc8e8e95,
++0x8f8d8d94,
++0xebcacccf,
++0xfec6c9cb,
++0xfec5c7ca,
++0xfec5c7ca,
++0xfec4c6c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xffbdbfc2,
++0xeac0c2c5,
++0x3dbec0c3,
++0x00a8adb3,
++0x00d8d8d8,
++0x00d6d6d6,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cd,
++0x5d286ec6,
++0xf8296fc7,
++0xfe286cc1,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bb,
++0xfe2467bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367ba,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xf72166b9,
++0x5a2166b9,
++0x004273c6,
++0x03808697,
++0x8c909097,
++0xff8e8e95,
++0xfe8d8d94,
++0xfe8d8d94,
++0xfe8c8c93,
++0xff8c8c93,
++0xad8c8c94,
++0xfcc5c8cb,
++0xfec5c8ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xffbdbfc3,
++0xc4bfc1c4,
++0x15bbbec0,
++0x00c3886e,
++0x00bcbcbc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053cb,
++0x5d286ec5,
++0xf8296fc6,
++0xfe286cc1,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xf7266bc0,
++0xec276cc4,
++0xec276cc4,
++0xec266cc3,
++0xec266cc3,
++0xec266cc3,
++0xec266cc3,
++0xec266bc2,
++0xec256bc2,
++0xec256bc2,
++0xec256bc2,
++0xef256bc1,
++0xfb2569be,
++0xff2468bd,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2066b9,
++0x892166b9,
++0x02176aa3,
++0x00aca5a5,
++0x628f8f96,
++0xf8909097,
++0xfe8c8c93,
++0xfe8d8c93,
++0xfe8c8b93,
++0xff8c8b93,
++0xbb8e8e96,
++0xfec5c7ca,
++0xfec5c7ca,
++0xfec4c7c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xffbdbfc3,
++0x98c0c2c5,
++0x03b1b2b3,
++0x00b7b6b6,
++0x00b7b7b7,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001053c8,
++0x5d286ec4,
++0xf8296ec6,
++0xfe286bc1,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xff266abf,
++0xb1276bc2,
++0x40266ac0,
++0x3d2669c0,
++0x3d2669c0,
++0x3d2669c0,
++0x3d266abf,
++0x3e2569be,
++0x3e2568be,
++0x3e2568bd,
++0x3e2568bd,
++0x3d2568be,
++0x432569bd,
++0x672569bd,
++0xb52469bf,
++0xf72368bc,
++0xff2367ba,
++0xfe2367ba,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b8,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xff2065b7,
++0xae2065b7,
++0x0c1d64b7,
++0x008c878b,
++0x47909098,
++0xef919098,
++0xff8c8c93,
++0xfe8c8c93,
++0xfe8c8b93,
++0xff8c8b93,
++0xc08f8f96,
++0xfec4c7c9,
++0xfec4c7c9,
++0xfec3c6c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc3,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebbbdc1,
++0xffbcbec2,
++0x7abdbfc3,
++0x01a7a5a0,
++0x00bdbcbb,
++0x00bcbcbc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001052c8,
++0x5d286ec4,
++0xf8296ec6,
++0xfe286bc1,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xff266abf,
++0x9a266cc3,
++0x042268b8,
++0x002760ba,
++0x0000fdff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000076ae,
++0x003760c3,
++0x122268bc,
++0x8b2469be,
++0xfa2368bc,
++0xfe2366b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xff2064b6,
++0xbf2166ba,
++0x131f63b5,
++0x005b7094,
++0x388f8f96,
++0xea8f8e96,
++0xff8b8b92,
++0xfe8b8b92,
++0xfe8b8a92,
++0xff8b8a92,
++0xbd8e8d95,
++0xf2c6c9cc,
++0xfec4c7c9,
++0xfec3c5c8,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfdbcbec1,
++0x69babdc0,
++0x008f9196,
++0x00dad9db,
++0x00d4d4d6,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x001050c8,
++0x5d286dc4,
++0xf8296ec6,
++0xfe276bc1,
++0xfe276bc1,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xff256abf,
++0x9b266cc2,
++0x061c63b1,
++0x00fad5ff,
++0x000053a9,
++0x000055aa,
++0x000055aa,
++0x000055aa,
++0x000055aa,
++0x000055aa,
++0x000055aa,
++0x000055aa,
++0x000058a5,
++0x00053bd4,
++0x00234d94,
++0x1a2267bb,
++0xc82367bc,
++0xff2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b8,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xff2064b6,
++0xc72066bb,
++0x162062b5,
++0x005c7cbc,
++0x318d8c94,
++0xe78d8c94,
++0xff8b8b92,
++0xfe8b8a92,
++0xfe8b8a91,
++0xff8a8a91,
++0xb38b8b92,
++0xdbc9cccf,
++0xfec4c7ca,
++0xfec2c5c8,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc3,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfdbbbdc1,
++0x66babbbf,
++0x00c2cc9b,
++0x00b2b2db,
++0x00b3b3d6,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x000e50c8,
++0x5d286dc4,
++0xf8286ec6,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569bd,
++0xff256abe,
++0x9b266cc2,
++0x061a62b2,
++0x005a87d8,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000640c6,
++0x00043dc4,
++0x01001f66,
++0x8c2368bd,
++0xff2367bc,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xff1f64b6,
++0xc82066bb,
++0x161f63b4,
++0x007485c8,
++0x308b8b92,
++0xe68c8b93,
++0xff8b8a91,
++0xfe8b8a91,
++0xfe8a8991,
++0xfe8b8a92,
++0x9b8a8991,
++0xbfc8cacd,
++0xffc4c6c9,
++0xfec2c4c7,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabbbf,
++0xffbabcc0,
++0x74bbbcc0,
++0x00c9bab5,
++0x00c1c1c3,
++0x00c0c0c2,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x000d50c7,
++0x5d276dc3,
++0xf8286ec5,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xff256abe,
++0x9b266cc2,
++0x061a61b3,
++0x005986d9,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00001224,
++0x00ffffff,
++0x752268be,
++0xfe2267bb,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xff1f63b5,
++0xc22066b9,
++0x131f63b4,
++0x00507097,
++0x358c8c94,
++0xe98c8c94,
++0xff8a8a91,
++0xfe8a8a91,
++0xfe898990,
++0xf78c8c93,
++0x758b8b92,
++0x93c4c7ca,
++0xfdc5c7ca,
++0xfec1c4c7,
++0xfec1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbe,
++0xffbabcc0,
++0x8ebdbec3,
++0x02b4b4b8,
++0x00ffffff,
++0x00fbf1f1,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x000d50c5,
++0x5d276dc3,
++0xf8286ec5,
++0xfe276bc0,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xff256abe,
++0x9b266bc2,
++0x061a62b3,
++0x005986d9,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000041,
++0x00000e55,
++0x00d7ffff,
++0x7d2368bd,
++0xfe2267bb,
++0xfe2265b8,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b4,
++0xff1f64b5,
++0xb31f64b6,
++0x0d1e65b4,
++0x007a7888,
++0x428e8e95,
++0xed8e8d95,
++0xff8a8991,
++0xfe8a8990,
++0xff898890,
++0xee8b8b92,
++0x4e8a8a92,
++0x5bc7c8cb,
++0xf2c6c8cb,
++0xffc1c3c6,
++0xfec0c3c6,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebabcbf,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9babe,
++0xffbabcbf,
++0xb7babcc0,
++0x0db4b6bb,
++0x008fd3c7,
++0x00aac1c1,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x000d50c5,
++0x5d276dc3,
++0xf8286ec5,
++0xfe276bc0,
++0xfe276ac0,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xff2569be,
++0x9b256bc1,
++0x061b62b4,
++0x005986d9,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x001874ea,
++0x000891ff,
++0x092264b9,
++0xa92367bb,
++0xff2266ba,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b5,
++0xfe1f63b4,
++0xff1f64b7,
++0x932064b6,
++0x041a62a7,
++0x00a88f9d,
++0x588d8c94,
++0xf58d8d95,
++0xfe898990,
++0xfe898990,
++0xff898990,
++0xd28b8a92,
++0x2487858e,
++0x28c2c4c6,
++0xd6c5c7ca,
++0xffc1c4c7,
++0xfec0c2c5,
++0xfebfc2c5,
++0xfebfc1c4,
++0xfebec0c4,
++0xfebec0c3,
++0xfebdbfc3,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xffb8b9bd,
++0xe1bbbcc0,
++0x2fb7b9bc,
++0x00c7bbc2,
++0x0085efef,
++0x00aaaaaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004482be,
++0x000d50c5,
++0x5d276dc3,
++0xf8286dc5,
++0xfe276abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2669be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bc,
++0xff2469bd,
++0x9b256bc1,
++0x061b60b3,
++0x000000c3,
++0x000059a3,
++0x000054a9,
++0x000054a9,
++0x000054a9,
++0x000054a9,
++0x000054a9,
++0x000053a8,
++0x000054c1,
++0x000051c4,
++0x00008bb8,
++0x002264bc,
++0x472266bb,
++0xe82266bb,
++0xff2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfa1f64b7,
++0x681f64b7,
++0x002f7acb,
++0x017f8a8c,
++0x7f8b8b92,
++0xff8b8a92,
++0xfe898890,
++0xfe89888f,
++0xff898990,
++0xa28b8a92,
++0x0a86858c,
++0x09b9bcc2,
++0x9dc4c7ca,
++0xffc2c4c7,
++0xfebfc1c5,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc3,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebcbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bcbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfbb9bbbe,
++0x70b8babe,
++0x015c5d58,
++0x00949494,
++0x008d8d8d,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004483be,
++0x000d53c5,
++0x5d286cc3,
++0xf8286dc4,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xff2469bd,
++0x9a256bc1,
++0x05215fb0,
++0x002677cd,
++0x001c3788,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000a5563,
++0x005f8dff,
++0x0a2164b6,
++0x4b2266ba,
++0xd02267bb,
++0xff2165b9,
++0xfe2165b7,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xff1e62b4,
++0xe51e64b7,
++0x351e63b4,
++0x003f5592,
++0x0a86868c,
++0xad8d8c94,
++0xff8a8991,
++0xfe89888f,
++0xfe88878f,
++0xf78a8a91,
++0x5f898990,
++0x0089899a,
++0x00c8cdc3,
++0x52c3c5c8,
++0xf2c3c6c9,
++0xfebfc1c4,
++0xfebec1c4,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bcbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xffb7b9bc,
++0xc2b9bbbf,
++0x18b4b5b9,
++0x009b7cc0,
++0x006c6262,
++0x00e6f3f3,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x000c5bc3,
++0x5d276bc2,
++0xf8276dc4,
++0xfe266abf,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xff2468bc,
++0xc22469be,
++0x6a2366bb,
++0x692367bb,
++0x692366ba,
++0x692366ba,
++0x692366ba,
++0x692366b9,
++0x692265b9,
++0x692266b9,
++0x692266ba,
++0x6a2267ba,
++0x792368bd,
++0xad2367bc,
++0xeb2267bb,
++0xff2165b8,
++0xfe2165b7,
++0xfe2165b7,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b3,
++0xff1e63b4,
++0xb01e64b7,
++0x0d1a63b2,
++0x007a849e,
++0x298b8991,
++0xdc8b8a92,
++0xff898990,
++0xfe89888f,
++0xff88888f,
++0xd28a8991,
++0x2288878d,
++0x007d7b90,
++0x00838c96,
++0x16bec1c3,
++0xbfc3c5c8,
++0xffc0c2c5,
++0xfebec0c3,
++0xfebdbfc2,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xf7b7b9bd,
++0x68b6b9bc,
++0x00ff0000,
++0x00aab5b5,
++0x00aaabaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x000a5cc2,
++0x5e276bc2,
++0xf8276dc4,
++0xfe266abf,
++0xfe266abf,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bb,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266ba,
++0xfe2266ba,
++0xfe2266b9,
++0xff2266ba,
++0xff2266ba,
++0xfe2165b8,
++0xfe2165b7,
++0xfe2165b7,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xf31e64b6,
++0x581e63b6,
++0x00386ac6,
++0x00c3b3ad,
++0x678a8992,
++0xf98a8a92,
++0xfe88888f,
++0xfe88878f,
++0xfd898890,
++0x85898891,
++0x03838186,
++0x00655b91,
++0x007c7c79,
++0x00ffffff,
++0x63c0c3c6,
++0xf6c1c3c6,
++0xfebdbfc3,
++0xfebdbfc2,
++0xfebcbec1,
++0xfebcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bc,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xffb4b6ba,
++0xd2b7b8bd,
++0x2ab3b4b9,
++0x00b8bcc5,
++0x00b7b7b7,
++0x00bfbfbf,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x000a5bc2,
++0x5e276bc2,
++0xf8276dc4,
++0xfe266abe,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2467bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b8,
++0xfe2265b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b7,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e63b5,
++0xad1f64b7,
++0x101e61b4,
++0x00425a8b,
++0x1288888f,
++0xb98b8a92,
++0xff898890,
++0xfe88888f,
++0xff88878f,
++0xdb8a8991,
++0x2f888790,
++0x009c99a9,
++0x007c7c7c,
++0x00d7d7d5,
++0x00a3a8af,
++0x15bdbfc2,
++0xbac1c3c6,
++0xffbec0c3,
++0xfebcbec1,
++0xfebcbec1,
++0xfebcbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfebabcbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b8bc,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb4b6ba,
++0xa0b6b8bc,
++0x0eb1b3b7,
++0x00a2a7b9,
++0x0089898e,
++0x00010101,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x000a5bc2,
++0x5e276bc2,
++0xf8276dc3,
++0xfe266abe,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b4,
++0xdc1f64b6,
++0x381f64b5,
++0x00037cc1,
++0x00f2c7c1,
++0x5a898990,
++0xf38a8a91,
++0xff88878f,
++0xfe87878e,
++0xfc898890,
++0x7f898991,
++0x0386868d,
++0x00ffffff,
++0x00858585,
++0x00bfbfbf,
++0x00c7bebf,
++0x00c8c6d0,
++0x4cc0c2c4,
++0xebc0c2c5,
++0xffbcbec1,
++0xfebbbdc0,
++0xfebbbcc0,
++0xfebabcbf,
++0xfeb9bbbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bc,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5ba,
++0xfeb3b5b9,
++0xfeb2b4b8,
++0xffb1b3b7,
++0xf8b3b5b9,
++0x7fb2b4b8,
++0x07aeaeb1,
++0x00576eaf,
++0x00b1bfd1,
++0x003f3f3f,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004484be,
++0x000a57c1,
++0x5e276bc1,
++0xf8276cc3,
++0xfe2669be,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b5,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b4,
++0xe91f64b6,
++0x5a1e63b4,
++0x01145695,
++0x00fdcdfb,
++0x1d89888f,
++0xc38b8a92,
++0xff88888f,
++0xfe87878e,
++0xff88878f,
++0xc7898991,
++0x1f888890,
++0x00b6b794,
++0x00000000,
++0x00111111,
++0x00000000,
++0x00dad8d8,
++0x006e7581,
++0x07bdbec1,
++0x8dbfc1c5,
++0xfcbebfc3,
++0xfebabcc0,
++0xfebabcbf,
++0xfeb9bcbf,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b8bc,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5b9,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xffb1b2b7,
++0xf1b2b4b8,
++0x6eb1b2b7,
++0x06adb0b5,
++0x00ffff23,
++0x00a2a2c4,
++0x00aaaaaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004484be,
++0x000a57c2,
++0x5e276bc2,
++0xf8276cc3,
++0xfe2569be,
++0xfe2569be,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2568bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xff1e63b5,
++0xe41f64b5,
++0x5f1f64b5,
++0x031c60b1,
++0x000000c1,
++0x0884848b,
++0x8b8a8991,
++0xfc898990,
++0xfe87878e,
++0xff87878e,
++0xec898990,
++0x5288888f,
++0x00aba9b2,
++0x0078777b,
++0x007f7f81,
++0x00000000,
++0x00000000,
++0x00f2f2f2,
++0x00ffffff,
++0x00bcc1c6,
++0x1cbcbfc2,
++0xbcbfc1c5,
++0xffbcbec1,
++0xfeb9bbbe,
++0xfeb9bbbe,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b8bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b6b9,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeb0b1b6,
++0xedb1b3b7,
++0x71b0b1b5,
++0x09acabb3,
++0x005d6074,
++0x00aaaaa9,
++0x008e8e8d,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x00085bc2,
++0x5d266bc2,
++0xf8266cc3,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b3,
++0xfd1e63b5,
++0xc61f64b7,
++0x491e63b4,
++0x031b61ac,
++0x004a5e76,
++0x02808185,
++0x618b8a92,
++0xef8a8a92,
++0xff88878e,
++0xfe87868e,
++0xfb88888f,
++0x88898890,
++0x0788888d,
++0x004b43a7,
++0x00979793,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00989898,
++0x00918c8d,
++0x00f8f5ff,
++0x3cbbbcc0,
++0xdbbcbec1,
++0xffb9bbbf,
++0xfeb8babd,
++0xfeb8b9bd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b6b9,
++0xfeb3b4b9,
++0xfeb3b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb0b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xffaeb0b4,
++0xf3afb0b5,
++0x85afb0b5,
++0x12acadb1,
++0x00b8bac1,
++0x00b9b8b7,
++0x00999998,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x00085bc0,
++0x5d266bc1,
++0xf8266cc2,
++0xfe2569bd,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xff1e63b4,
++0xfd1e63b5,
++0xdf1e64b6,
++0x861f64b5,
++0x211d62b2,
++0x0085cbff,
++0x00699ecb,
++0x02807e84,
++0x538b8a92,
++0xe48a8a91,
++0xff88878e,
++0xfe87868e,
++0xfe88888f,
++0xad898991,
++0x1786848c,
++0x008f8c9f,
++0x00121212,
++0x00999999,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00e9e5e5,
++0x00ffffff,
++0x01b7bbb7,
++0x55bbbdc1,
++0xe7bcbec1,
++0xffb8babd,
++0xfeb7b9bc,
++0xfeb6b8bc,
++0xfeb6b8bc,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b6ba,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeaeb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xffacaeb2,
++0xf9aeafb4,
++0xa8afb0b5,
++0x2cabacb1,
++0x00696c70,
++0x00777674,
++0x00b8b8b7,
++0x00989795,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x00095bbf,
++0x5d266bc1,
++0xf8266cc2,
++0xfe2569bd,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xff1f63b5,
++0xff1f64b6,
++0xfd1f64b6,
++0xf11e64b6,
++0xcb1e64b7,
++0x831e64b6,
++0x301e62b5,
++0x041c60ae,
++0x00ff0000,
++0x00000045,
++0x05868485,
++0x5a8b8a92,
++0xe28a8991,
++0xff88878f,
++0xfe87868e,
++0xff88878f,
++0xc38a8991,
++0x27888790,
++0x008f8d9b,
++0x00808081,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00c2bbb7,
++0x00fdffff,
++0x02b4b4ba,
++0x62bcbec2,
++0xebbbbdc0,
++0xffb6b8bc,
++0xfeb5b7bb,
++0xfeb5b7bb,
++0xfeb4b6ba,
++0xfeb4b6ba,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeacaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeacadb2,
++0xd2adaeb3,
++0x5facadb2,
++0x0da7a7ab,
++0x00ab9fbc,
++0x004e4d4d,
++0x00bdbdbc,
++0x00979793,
++0x00000000,
++0x00000000,
++0x004080bf,
++0x004485be,
++0x00095abf,
++0x5d266bc1,
++0xf8266cc2,
++0xfe2568bd,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xff1f63b4,
++0xe61f62b5,
++0xad1f63b6,
++0x7b1f64b7,
++0x491e63b4,
++0x1b1d62b1,
++0x031e61aa,
++0x00225da0,
++0x003a7fc1,
++0x0097929c,
++0x1187848c,
++0x798b8a91,
++0xea8b8a92,
++0xff87878e,
++0xfe87868e,
++0xff88888f,
++0xcd898991,
++0x3686868f,
++0x00b0b0a2,
++0x005d5ea2,
++0x00676798,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00bfbfbf,
++0x00ffffff,
++0x00000000,
++0x04adb1b2,
++0x65bcbdc1,
++0xeab9bbbf,
++0xffb5b7bb,
++0xfeb4b6ba,
++0xfeb4b5ba,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b3b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeacaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb0,
++0xfeaaabaf,
++0xffa9abb0,
++0xf2abacb1,
++0xa6abacb1,
++0x3ba8a9ae,
++0x069e9ea3,
++0x00afb0b5,
++0x00777774,
++0x00aaaaa9,
++0x00ceceba,
++0x004080bf,
++0x004485be,
++0x000757bf,
++0x5d2669c1,
++0xf8266bc1,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b7,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xff1f62b4,
++0xe71e63b5,
++0x9f1f65b9,
++0x541e63b5,
++0x191e62b3,
++0x00133961,
++0x00714caa,
++0x000000ff,
++0x02828387,
++0x348a8a91,
++0xa98b8a92,
++0xf88a8991,
++0xff88878e,
++0xfe87868e,
++0xfe88888f,
++0xcd898990,
++0x3b87868f,
++0x00ffffff,
++0x00000000,
++0x00363633,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x009999cc,
++0x009956c7,
++0x0000ffff,
++0x03b4b6b8,
++0x5dbabbbf,
++0xe4b7b9bd,
++0xffb5b6ba,
++0xfeb3b5b9,
++0xfeb3b4b8,
++0xfeb2b4b8,
++0xfeb1b3b7,
++0xfeb1b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeadaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8aaaf,
++0xfea8a9ae,
++0xffa9aaaf,
++0xe4a9aaaf,
++0x91a9aaaf,
++0x34a5a7ad,
++0x069c9fa1,
++0x00a6acb0,
++0x009b9a96,
++0x009b96b6,
++0x004782b8,
++0x000c59b7,
++0x5e2569bf,
++0xf8256bc1,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b8,
++0xfe2165b9,
++0xfe2165b9,
++0xff2165b8,
++0xff2165b8,
++0xff2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e63b4,
++0xff1e64b6,
++0xf51f64b6,
++0xcd1e63b5,
++0x7b1e63b5,
++0x231d62b2,
++0x1f918d8e,
++0x7a8a8a91,
++0xdd8b8a92,
++0xfe898990,
++0xfe87878e,
++0xfe87868e,
++0xfe88878f,
++0xc28a8a91,
++0x3587868e,
++0x00000000,
++0x00ffffff,
++0x00dfdfd4,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x009999cc,
++0x008484d2,
++0x00f9eedd,
++0x02b3b5bb,
++0x4db5b7bb,
++0xd3b7b9bd,
++0xfeb4b6ba,
++0xfeb2b3b7,
++0xfeb1b3b7,
++0xfeb0b2b6,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeadaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8aaaf,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a7ac,
++0xffa6a7ac,
++0xfea7a8ad,
++0xe1a8a9ae,
++0x97a7a8ad,
++0x42a4a5aa,
++0x0f9fa1a8,
++0x018b90cf,
++0x00496db6,
++0x000969b4,
++0x5e2569bf,
++0xf8256bc1,
++0xfe2468bc,
++0xfe2468bc,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xff2165b8,
++0xf22166ba,
++0xe22268bd,
++0xe32268bc,
++0xe32267bc,
++0xe32267bc,
++0xea2166ba,
++0xfc2065b8,
++0xff2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b2,
++0xfe1e61b2,
++0xff1d62b3,
++0xfc1d62b4,
++0xd21f63b4,
++0xce647ba1,
++0xfb8a8991,
++0xff89888f,
++0xfe87878e,
++0xff87878e,
++0xfb88888f,
++0xad898890,
++0x2687868f,
++0x00bbb7aa,
++0x00000000,
++0x004a4a3b,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00bfbfbf,
++0x00c4c4c4,
++0x00a4a496,
++0x019f9bb1,
++0x32b5b6bb,
++0xb3b6b8bc,
++0xfbb3b5b9,
++0xffb1b2b7,
++0xfeb0b1b6,
++0xfeafb1b5,
++0xfeafb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeacaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfeaaaaaf,
++0xfea8aaaf,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a8ad,
++0xfea6a7ac,
++0xfea5a6ab,
++0xfea4a5aa,
++0xffa4a5aa,
++0xffa5a6ab,
++0xeba6a6ac,
++0xb4a5a6ac,
++0x6aa3a4aa,
++0x2ca1a1a7,
++0x06dcb290,
++0x5c256abf,
++0xf7256bc1,
++0xfe2468bb,
++0xfe2467bc,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xff2165b8,
++0xa12166b9,
++0x2d2165b8,
++0x2e2264b8,
++0x2e2264b6,
++0x2d2163b6,
++0x392064b6,
++0x882066ba,
++0xed2065b8,
++0xff2063b5,
++0xfe1f63b5,
++0xfe1f63b5,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b1,
++0xff1d61b2,
++0xff2364b0,
++0xfe62789c,
++0xfe88878e,
++0xff87878f,
++0xee898991,
++0x8b89888f,
++0x1885848c,
++0x00949288,
++0x005a5aa0,
++0x005959a0,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00808080,
++0x00ffff00,
++0x00bdbdf6,
++0x00b8b9b2,
++0x18b1b2b7,
++0x85b4b5ba,
++0xeab3b5b9,
++0xffb0b2b6,
++0xfeaeb0b4,
++0xfeaeafb4,
++0xfeadafb3,
++0xfeadaeb3,
++0xfeacadb2,
++0xfeabacb1,
++0xfeabacb1,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea9a9ae,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a8ad,
++0xfea6a7ac,
++0xfea5a6ab,
++0xfea5a5ab,
++0xfea4a5aa,
++0xfea3a4a9,
++0xfea2a3a8,
++0xffa2a2a8,
++0xffa3a3a9,
++0xf9a3a4aa,
++0xdea3a3a9,
++0xa7a6a4a8,
++0xaa6183b3,
++0xfa2269be,
++0xfe2467bb,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xff2165b8,
++0x8d2166b9,
++0x02246ab7,
++0x001c54a7,
++0x002b86d4,
++0x00000000,
++0x002166b6,
++0x061b63ae,
++0x652065b9,
++0xed2065b8,
++0xff1f63b5,
++0xfe1f63b4,
++0xff1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b1,
++0xfe1d61b2,
++0xfe1d61b1,
++0xfe1b60b1,
++0xfe2564ad,
++0xfd748096,
++0xd48b8990,
++0x5c888890,
++0x0884838c,
++0x00686679,
++0x00a7a7a7,
++0x00aaaaaa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00c0c0c0,
++0x00c1c1c1,
++0x009494a1,
++0x06aeadb4,
++0x4db2b3b8,
++0xc2b2b3b8,
++0xfbb0b1b6,
++0xfeadafb3,
++0xfeacaeb2,
++0xfeacadb2,
++0xfeabacb1,
++0xfeaaacb1,
++0xfeaaabb0,
++0xfeaaaaaf,
++0xfea8aaaf,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a8ac,
++0xfea6a7ac,
++0xfea6a6ab,
++0xfea5a5ab,
++0xfea4a5aa,
++0xfea3a4a9,
++0xfea2a3a9,
++0xfea2a3a8,
++0xfea1a2a7,
++0xfea0a1a7,
++0xfea0a0a6,
++0xff9fa0a6,
++0xffa2a1a6,
++0xfe778cae,
++0xfe1d67bb,
++0xfe2367bc,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366bb,
++0xfe2266ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b7,
++0xff2165b8,
++0x8d2065b9,
++0x020e4ebd,
++0x002378ac,
++0x000000ee,
++0x00000000,
++0x00000000,
++0x002565b4,
++0x062c65b2,
++0x811d65b9,
++0xf91d64b7,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xff1860b1,
++0xd9386caa,
++0x37768293,
++0x00ffba5c,
++0x00ffffff,
++0x0090908e,
++0x00808080,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x008080ca,
++0x009494a5,
++0x00e1ddcc,
++0x00ffffd0,
++0x1cacaeb2,
++0x7eb0b2b6,
++0xdeb0b2b6,
++0xfeaeafb4,
++0xffabacb1,
++0xfeaaabb0,
++0xfeaaabb0,
++0xfea9aaaf,
++0xfea8aaaf,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a8ad,
++0xfea6a7ac,
++0xfea5a6ab,
++0xfea5a5ab,
++0xfea4a4aa,
++0xfea3a4a9,
++0xfea2a3a9,
++0xfea2a2a8,
++0xfea1a2a7,
++0xfea1a1a7,
++0xfea0a0a6,
++0xfe9fa0a6,
++0xfe9f9fa5,
++0xfea09fa4,
++0xfe768aac,
++0xfe1d67bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xff2065b7,
++0xa4326cb4,
++0x3a94949b,
++0x3c94949b,
++0x4193939b,
++0x4992939a,
++0x55919199,
++0x66909097,
++0x78908f96,
++0x9d838b9b,
++0xf23a6eaf,
++0xfe1c62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d60b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xff1c60b0,
++0xee1b61b3,
++0x521b60b2,
++0x001a5fb2,
++0x001fb7c5,
++0x001caec8,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00808080,
++0x00554cd5,
++0x005f58c7,
++0x00e4ed9c,
++0x03a7a9ad,
++0x35aeb0b3,
++0x99afb0b5,
++0xe7aeafb4,
++0xfeacadb2,
++0xffa9aaaf,
++0xfea8a9ae,
++0xfea8a9ae,
++0xfea7a8ad,
++0xfea6a8ac,
++0xfea6a7ac,
++0xfea5a6ab,
++0xfea5a5ab,
++0xfea4a5aa,
++0xfea3a4a9,
++0xfea2a3a9,
++0xfea2a3a8,
++0xfea1a2a7,
++0xfea0a1a7,
++0xfea0a1a6,
++0xfe9fa0a6,
++0xfe9f9fa5,
++0xfe9e9fa4,
++0xfe9f9fa3,
++0xfe768aac,
++0xfe1d67bb,
++0xfe2367bb,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe1d63b7,
++0xf4557aac,
++0xe897969c,
++0xea95959c,
++0xed95959c,
++0xf094949b,
++0xf593939a,
++0xfa919198,
++0xfe8f8f96,
++0xff908f95,
++0xfe74829d,
++0xfe2365b1,
++0xfe1d62b3,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b1,
++0xfe1d61b2,
++0xfe1d60b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xff1c60b0,
++0xc11b60b2,
++0x191b61b0,
++0x00215bbc,
++0x00569490,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00999999,
++0x00a3a3a3,
++0x00a5a5a5,
++0x00afaeb2,
++0x09a7aaae,
++0x3facadb2,
++0x9dadaeb3,
++0xe6acadb2,
++0xfea9abb0,
++0xffa7a8ad,
++0xfea6a7ac,
++0xfea5a6ac,
++0xfea5a6ab,
++0xfea4a5ab,
++0xfea4a5aa,
++0xfea3a4aa,
++0xfea2a3a9,
++0xfea2a3a8,
++0xfea1a2a7,
++0xfea0a1a6,
++0xfea0a1a6,
++0xfe9fa0a6,
++0xfe9f9fa5,
++0xfe9e9fa4,
++0xfe9d9ea4,
++0xfe9f9ea2,
++0xfe758aab,
++0xfe1d67ba,
++0xfe2367bb,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2164b6,
++0xfe1d63b7,
++0xfe5679a9,
++0xff929197,
++0xff909097,
++0xff908f97,
++0xff8f8f96,
++0xfe8e8e96,
++0xfe8e8e95,
++0xfe8e8d95,
++0xfe8d8d94,
++0xfe8d8c94,
++0xfe4c74a7,
++0xfe1861b4,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1d60b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c5faf,
++0xfe1b5faf,
++0xfa1b60b2,
++0x751c61b2,
++0x021f59a8,
++0x006f94ff,
++0x003466cc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00808080,
++0x00807f7f,
++0x007c7770,
++0x00aaabad,
++0x09a6aaae,
++0x39aaabb0,
++0x8eaaabb0,
++0xd8aaabaf,
++0xfaa8a9ae,
++0xffa6a7ac,
++0xfea4a5ab,
++0xfea3a4aa,
++0xfea3a4a9,
++0xfea2a3a9,
++0xfea2a3a8,
++0xfea1a2a7,
++0xfea1a1a7,
++0xfea0a0a6,
++0xfe9fa0a5,
++0xfe9f9fa5,
++0xfe9e9fa4,
++0xfe9d9ea4,
++0xfe9d9da3,
++0xfe9e9da2,
++0xfe7589ab,
++0xfe1c66ba,
++0xfe2366ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe1c63b7,
++0xfe5679a8,
++0xfe929197,
++0xfe909097,
++0xfe908f96,
++0xfe8f8e96,
++0xfe8e8e95,
++0xfe8e8d95,
++0xfe8d8d94,
++0xfe8d8c94,
++0xfe8e8d93,
++0xfe7a8499,
++0xfe2566b0,
++0xfe1c61b3,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60af,
++0xfe1c5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xff1b5faf,
++0xda1c61b2,
++0x2f1b5faf,
++0x003754a2,
++0x00003cc5,
++0x000039c6,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00ffffff,
++0x00ffffff,
++0x00a9a9aa,
++0x05a3a3a7,
++0x26a6a6ab,
++0x6ca7a8ae,
++0xb7a7a9ae,
++0xe9a7a8ad,
++0xfca6a6ac,
++0xffa3a4a9,
++0xfea2a3a8,
++0xfea1a2a7,
++0xfea1a1a7,
++0xfea0a1a6,
++0xfe9fa0a5,
++0xfe9f9fa5,
++0xfe9e9fa4,
++0xfe9d9ea4,
++0xfe9d9da3,
++0xfe9c9ca2,
++0xfe9d9da1,
++0xfe7488ab,
++0xfe1c66ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe1d63b6,
++0xfe5679a8,
++0xfe919097,
++0xfe8f8f96,
++0xfe8f8f96,
++0xfe8e8e95,
++0xfe8e8d95,
++0xfe8d8d94,
++0xfe8d8d94,
++0xfe8c8c93,
++0xfe8c8b93,
++0xfe8c8b92,
++0xfe5074a3,
++0xfe1760b2,
++0xfe1e61b2,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60af,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5fae,
++0xfe1b60b0,
++0x971b61b2,
++0x09175aa9,
++0x00ffff00,
++0x000052ac,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00ffffff,
++0x00f6f6f4,
++0x00c7c7be,
++0x009c9ba4,
++0x0199999f,
++0x10a2a3a8,
++0x3ca4a6ab,
++0x7da5a6ac,
++0xbba6a7ac,
++0xe7a4a5ab,
++0xfaa3a4aa,
++0xffa1a2a7,
++0xffa0a0a6,
++0xfe9f9fa5,
++0xfe9e9ea4,
++0xfe9d9ea4,
++0xfe9d9da3,
++0xfe9c9ca2,
++0xfe9b9ca2,
++0xfe9d9ca1,
++0xfe7488aa,
++0xfe1c66ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe1c62b6,
++0xfe5678a8,
++0xfe919096,
++0xfe8f8e96,
++0xfe8e8e95,
++0xfe8e8d95,
++0xfe8d8d94,
++0xfe8d8c94,
++0xfe8c8c93,
++0xff8c8c93,
++0xff8c8b93,
++0xfe8e8c93,
++0xf67e8699,
++0xf92766af,
++0xfe1c61b2,
++0xfe1d61b1,
++0xfe1d61b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60af,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5fae,
++0xff1b5eae,
++0xeb1b60b1,
++0x4b1a60b0,
++0x002e72b8,
++0x00006b7c,
++0x00006b80,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00131306,
++0x00b8b8b5,
++0x0094948f,
++0x009e9da0,
++0x02a0a0a3,
++0x11a0a2a6,
++0x36a2a2a8,
++0x6ba3a4aa,
++0xa3a2a2a8,
++0xcea3a3a9,
++0xeda0a0a6,
++0xfaa0a0a7,
++0xff9e9fa5,
++0xff9c9da3,
++0xff9c9ca2,
++0xfe9b9ba2,
++0xfe9b9ba0,
++0xfe7387aa,
++0xfe1c66ba,
++0xfe2266b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe2063b6,
++0xfe1c62b6,
++0xfe5678a7,
++0xfe908f95,
++0xfe8e8e95,
++0xff8e8e95,
++0xff8e8d95,
++0xff8d8d94,
++0xfd8e8e95,
++0xf78e8d95,
++0xe58d8d94,
++0xc28e8e96,
++0x928c8c93,
++0x578f8d93,
++0x8e2a67af,
++0xfc1d62b3,
++0xfe1d61b1,
++0xfe1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60af,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eaf,
++0xfe1a5eae,
++0xff1a5faf,
++0xb81b60b0,
++0x14195dad,
++0x003161d5,
++0x00003c5c,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x007e7e7e,
++0x007c7c7f,
++0x007f7f7d,
++0x0084847b,
++0x0092928e,
++0x00978d5d,
++0x08a09fa5,
++0x1b9e9ea4,
++0x3e9f9fa5,
++0x67a0a1a7,
++0x929d9ea4,
++0xb79e9fa5,
++0xd29e9fa5,
++0xe89b9ca3,
++0xf59d9da1,
++0xfb7489ab,
++0xfe1c66b9,
++0xfe2266b9,
++0xfe2265b9,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1c62b5,
++0xfd5879a7,
++0xf8929197,
++0xf28f8f96,
++0xe28f8f97,
++0xca909098,
++0xad8e8e95,
++0x848e8d95,
++0x5a8e8e95,
++0x318b8b92,
++0x138a8991,
++0x04898991,
++0x002162af,
++0x231d61b2,
++0xd21d63b5,
++0xff1c60b1,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xf81a5faf,
++0x6b1a60b0,
++0x010033ac,
++0x00000ece,
++0x000047b8,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x0007070f,
++0x000f0f31,
++0x008080c0,
++0x00afafb7,
++0x00adadad,
++0x0092929d,
++0x009b9b9c,
++0x0495959d,
++0x0f99999e,
++0x1d9a9aa0,
++0x35999aa0,
++0x4da19ea0,
++0x99577db1,
++0xfa2167bb,
++0xfe2265b8,
++0xfe2165b9,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b5,
++0xff1e63b5,
++0xba4070ad,
++0x60929197,
++0x488e8e95,
++0x2c8c8c93,
++0x178d8d94,
++0x0b8d8d93,
++0x01929397,
++0x00939398,
++0x00000000,
++0x0011119a,
++0x00a897ba,
++0x013274ba,
++0x011d58aa,
++0x731d62b4,
++0xfa1d62b3,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c60b0,
++0xfe1c5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xff1a5ead,
++0xd31a60b0,
++0x291a5dad,
++0x001079a3,
++0x00004aa0,
++0x000049a4,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00131313,
++0x001e1e1e,
++0x00999998,
++0x00a2a29b,
++0x00ffffff,
++0x000053b4,
++0x000056bb,
++0x00336fbb,
++0x5b2066bb,
++0xf82268bd,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2164b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xff1f63b5,
++0x861c62b4,
++0x01000fad,
++0x001985c2,
++0x00000095,
++0x00fffffb,
++0x00f7f7f2,
++0x00b1b1aa,
++0x00717170,
++0x00000000,
++0x00000000,
++0x00000000,
++0x0000aa35,
++0x00114cad,
++0x1e1c61b0,
++0xca1d62b4,
++0xff1c61b1,
++0xfe1c60af,
++0xfe1c5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfd1a5eae,
++0x8e195faf,
++0x06155fa9,
++0x0000ffbd,
++0x00006db4,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x001a7bbd,
++0x00177ebd,
++0x002655ba,
++0x5e2267bb,
++0xf82268bd,
++0xfe2165b7,
++0xfe2165b8,
++0xfe2165b8,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xff1e62b4,
++0x871e62b3,
++0x020c5aae,
++0x00000000,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00224387,
++0x0020468b,
++0x0000e57c,
++0x691c62b2,
++0xf81c61b2,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5fae,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xff195dad,
++0xe61a5fb0,
++0x421a5faf,
++0x003151c6,
++0x00008493,
++0x00008097,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000080bf,
++0x000085c0,
++0x00424fb4,
++0x5d2267bb,
++0xf82268bc,
++0xfe2165b7,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xff1e62b4,
++0x861e62b3,
++0x020858ac,
++0x00000000,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x0000399e,
++0x003a5bae,
++0x181b60af,
++0xc11c61b3,
++0xff1b60b0,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xff195eae,
++0xaf1a5fb0,
++0x10195eac,
++0x004b4daa,
++0x000081b6,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000080bf,
++0x000085c1,
++0x00424fb9,
++0x5e2267b9,
++0xf82268bc,
++0xfe2164b7,
++0xfe2064b7,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b4,
++0x851e62b3,
++0x020153a8,
++0x0000001a,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000055aa,
++0x000058b0,
++0x003569b2,
++0x5d1b61b2,
++0xf51b60b1,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5faf,
++0xfe1b5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xf5195fae,
++0x62195fae,
++0x004077d6,
++0x00004572,
++0x00005a9f,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00007abf,
++0x00007ec1,
++0x004253b9,
++0x5e2266b9,
++0xf82267bc,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b4,
++0x851e62b3,
++0x020253a8,
++0x00000044,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000060c1,
++0x0085b4ff,
++0x131b5eae,
++0xb71c61b2,
++0xff1b60af,
++0xfe1b5fae,
++0xfe1b5eaf,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xff195dac,
++0xcc195fae,
++0x23195dab,
++0x002a79ba,
++0x00000008,
++0x0000ffff,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000048bf,
++0x000044c1,
++0x004188b7,
++0x5e2165b9,
++0xf82167bb,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xff1e62b3,
++0x841e61b2,
++0x010255a9,
++0x0000005e,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00002b56,
++0x00003367,
++0x003f7fd3,
++0x521b60b1,
++0xf11b61b1,
++0xfe1b5eae,
++0xfe1a5eae,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfc195ead,
++0x85185dae,
++0x05125fa4,
++0x0000ff00,
++0x00007ca5,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00003fbf,
++0x00003ac1,
++0x004091b6,
++0x5e2165b8,
++0xf82167bb,
++0xfe2064b6,
++0xfe2064b6,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e61b2,
++0xff1d61b3,
++0x831d61b2,
++0x010656a7,
++0x00000072,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000045ba,
++0x000000ff,
++0x0f195dad,
++0xae1b60b1,
++0xff1a5faf,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe185cab,
++0xff185cab,
++0xe2185ead,
++0x3b185dac,
++0x00326ec2,
++0x000071e8,
++0x000066cc,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000040bf,
++0x00003ac1,
++0x004191b6,
++0x5d2165b8,
++0xf82167bb,
++0xfe2064b5,
++0xfe2063b6,
++0xfe1f63b6,
++0xfe1f63b5,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1f63b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xff1d61b3,
++0x821d61b2,
++0x010653a4,
++0x0000057e,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000057a8,
++0x000f61ae,
++0x000f4eab,
++0x4a1a5fae,
++0xed1b60b0,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe185cab,
++0xfe185cab,
++0xfe185caa,
++0xff185dac,
++0xa6185eae,
++0x0d155bab,
++0x0048192b,
++0x000075e5,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000848bf,
++0x000344c1,
++0x003689b4,
++0x5e2165b8,
++0xf82166ba,
++0xfe2064b6,
++0xfe1f64b6,
++0xfe1f64b6,
++0xfe1f64b5,
++0xfe1f64b5,
++0xfe1f63b5,
++0xfe1e62b4,
++0xfe1e62b3,
++0xfe1e62b3,
++0xfe1e62b3,
++0xfe1e62b3,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xff1d62b2,
++0x821d61b1,
++0x010055a5,
++0x00000983,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x002a41c0,
++0x003625b5,
++0x0b1a5bab,
++0xa31b60b1,
++0xff1a5faf,
++0xfe1a5ead,
++0xfe1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe185cab,
++0xfe185cab,
++0xfe185caa,
++0xfe185caa,
++0xfe185caa,
++0xf2185ead,
++0x5a185eae,
++0x00ff2ae3,
++0x00000584,
++0x00003890,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x001f67b7,
++0x001f68b8,
++0x002066ba,
++0x562065b7,
++0xe22167bb,
++0xe62065b9,
++0xe72066b9,
++0xe92066b8,
++0xea2066b8,
++0xed1f65b7,
++0xf01f63b6,
++0xf31e63b5,
++0xf61e63b4,
++0xf91e62b4,
++0xfc1e62b2,
++0xfe1e61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xfe1d61b2,
++0xff1d62b2,
++0x811d61b2,
++0x01004ea8,
++0x00001882,
++0x000055aa,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x00000000,
++0x000000ff,
++0x00004ab5,
++0x002e64bc,
++0x471a5faf,
++0xed1a60b0,
++0xff1a5eac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dac,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe195dab,
++0xfe185cab,
++0xfd185cab,
++0xfc185caa,
++0xfb185caa,
++0xf9185cab,
++0xf8185cab,
++0xf9185dac,
++0xb9185ead,
++0x15165ba9,
++0x003e9289,
++0x000036bc,
++0x00000000,
+ };
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/r-base.git
More information about the Reproducible-commits
mailing list