diff -pruN 1.2.17-0.1/acinclude.m4 1.3.6+dfsg-2/acinclude.m4
--- 1.2.17-0.1/acinclude.m4	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/acinclude.m4	1970-01-01 00:00:00.000000000 +0000
@@ -1,207 +0,0 @@
-# ===========================================================================
-#              http://autoconf-archive.cryp.to/ac_pkg_swig.html
-# ===========================================================================
-#
-# SYNOPSIS
-#
-#   AC_PROG_SWIG([major.minor.micro])
-#
-# DESCRIPTION
-#
-#   This macro searches for a SWIG installation on your system. If found you
-#   should call SWIG via $(SWIG). You can use the optional first argument to
-#   check if the version of the available SWIG is greater than or equal to
-#   the value of the argument. It should have the format: N[.N[.N]] (N is a
-#   number between 0 and 999. Only the first N is mandatory.)
-#
-#   If the version argument is given (e.g. 1.3.17), AC_PROG_SWIG checks that
-#   the swig package is this version number or higher.
-#
-#   In configure.in, use as:
-#
-#     AC_PROG_SWIG(1.3.17)
-#     SWIG_ENABLE_CXX
-#     SWIG_MULTI_MODULE_SUPPORT
-#     SWIG_PYTHON
-#
-# LAST MODIFICATION
-#
-#   2008-04-12
-#
-# COPYLEFT
-#
-#   Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
-#   Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
-#   Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
-#   Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
-#
-#   This program is free software; you can redistribute it and/or modify it
-#   under the terms of the GNU General Public License as published by the
-#   Free Software Foundation; either version 2 of the License, or (at your
-#   option) any later version.
-#
-#   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 for more details.
-#
-#   You should have received a copy of the GNU General Public License along
-#   with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-#   As a special exception, the respective Autoconf Macro's copyright owner
-#   gives unlimited permission to copy, distribute and modify the configure
-#   scripts that are the output of Autoconf when processing the Macro. You
-#   need not follow the terms of the GNU General Public License when using
-#   or distributing such scripts, even though portions of the text of the
-#   Macro appear in them. The GNU General Public License (GPL) does govern
-#   all other use of the material that constitutes the Autoconf Macro.
-#
-#   This special exception to the GPL applies to versions of the Autoconf
-#   Macro released by the Autoconf Macro Archive. When you make and
-#   distribute a modified version of the Autoconf Macro, you may extend this
-#   special exception to the GPL to apply to your modified version as well.
-
-AC_DEFUN([AC_PROG_SWIG],[
-        AC_PATH_PROG([SWIG],[swig])
-        if test -z "$SWIG" ; then
-                AC_MSG_WARN([cannot find 'swig' program. You should look at http://www.swig.org])
-                SWIG='echo "Error: SWIG is not installed. You should look at http://www.swig.org" ; false'
-        elif test -n "$1" ; then
-                AC_MSG_CHECKING([for SWIG version])
-                [swig_version=`$SWIG -version 2>&1 | grep 'SWIG Version' | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'`]
-                AC_MSG_RESULT([$swig_version])
-                if test -n "$swig_version" ; then
-                        # Calculate the required version number components
-                        [required=$1]
-                        [required_major=`echo $required | sed 's/[^0-9].*//'`]
-                        if test -z "$required_major" ; then
-                                [required_major=0]
-                        fi
-                        [required=`echo $required | sed 's/[0-9]*[^0-9]//'`]
-                        [required_minor=`echo $required | sed 's/[^0-9].*//'`]
-                        if test -z "$required_minor" ; then
-                                [required_minor=0]
-                        fi
-                        [required=`echo $required | sed 's/[0-9]*[^0-9]//'`]
-                        [required_patch=`echo $required | sed 's/[^0-9].*//'`]
-                        if test -z "$required_patch" ; then
-                                [required_patch=0]
-                        fi
-                        # Calculate the available version number components
-                        [available=$swig_version]
-                        [available_major=`echo $available | sed 's/[^0-9].*//'`]
-                        if test -z "$available_major" ; then
-                                [available_major=0]
-                        fi
-                        [available=`echo $available | sed 's/[0-9]*[^0-9]//'`]
-                        [available_minor=`echo $available | sed 's/[^0-9].*//'`]
-                        if test -z "$available_minor" ; then
-                                [available_minor=0]
-                        fi
-                        [available=`echo $available | sed 's/[0-9]*[^0-9]//'`]
-                        [available_patch=`echo $available | sed 's/[^0-9].*//'`]
-                        if test -z "$available_patch" ; then
-                                [available_patch=0]
-                        fi
-                        if test $available_major -ne $required_major \
-                                -o $available_minor -ne $required_minor \
-                                -o $available_patch -lt $required_patch ; then
-                                AC_MSG_WARN([SWIG version >= $1 is required.  You have $swig_version.  You should look at http://www.swig.org])
-                                SWIG='echo "Error: SWIG version >= $1 is required.  You have '"$swig_version"'.  You should look at http://www.swig.org" ; false'
-                        else
-                                AC_MSG_NOTICE([SWIG executable is '$SWIG'])
-                                SWIG_LIB=`$SWIG -swiglib`
-                                AC_MSG_NOTICE([SWIG library directory is '$SWIG_LIB'])
-                        fi
-                else
-                        AC_MSG_WARN([cannot determine SWIG version])
-                        SWIG='echo "Error: Cannot determine SWIG version.  You should look at http://www.swig.org" ; false'
-                fi
-        fi
-        AC_SUBST([SWIG_LIB])
-])
-
-dnl AM_CHECK_PYTHON_HEADERS:  Find location of python include files.
-dnl Taken from:
-dnl	http://source.macgimp.org/
-dnl which is GPL and is attributed to James Henstridge.
-dnl
-dnl AM_CHECK_PYTHON_HEADERS([ACTION-IF-POSSIBLE], [ACTION-IF-NOT-POSSIBLE])
-dnl Imports:
-dnl	$PYTHON
-dnl Exports:
-dnl	PYTHON_INCLUDES
-
-AC_DEFUN([AM_CHECK_PYTHON_HEADERS],
-[AC_REQUIRE([AM_PATH_PYTHON])
-AC_MSG_CHECKING(for headers required to compile python extensions)
-dnl deduce PYTHON_INCLUDES
-py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
-py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
-PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
-if test "$py_prefix" != "$py_exec_prefix"; then
-  PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
-fi
-AC_SUBST(PYTHON_INCLUDES)
-dnl check if the headers exist:
-save_CPPFLAGS="$CPPFLAGS"
-CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
-AC_TRY_CPP([#include <Python.h>],dnl
-[AC_MSG_RESULT(found)
-$1],dnl
-[AC_MSG_RESULT(not found)
-$2])
-CPPFLAGS="$save_CPPFLAGS"
-])
-
-dnl
-dnl Useful macros for autoconf to check for ssp-patched gcc
-dnl 1.0 - September 2003 - Tiago Sousa <mirage@kaotik.org>
-dnl
-dnl About ssp:
-dnl GCC extension for protecting applications from stack-smashing attacks
-dnl http://www.research.ibm.com/trl/projects/security/ssp/
-dnl
-dnl Usage:
-dnl After calling the correct AC_LANG_*, use the corresponding macro:
-dnl
-dnl GCC_STACK_PROTECT_CC
-dnl checks -fstack-protector with the C compiler, if it exists then updates
-dnl CFLAGS and defines ENABLE_SSP_CC
-dnl
-dnl GCC_STACK_PROTECT_CXX
-dnl checks -fstack-protector with the C++ compiler, if it exists then updates
-dnl CXXFLAGS and defines ENABLE_SSP_CXX
-dnl
-
-AC_DEFUN([GCC_STACK_PROTECT_CC],[
-  ssp_cc=yes
-  if test "X$CC" != "X"; then
-    AC_MSG_CHECKING([whether ${CC} accepts -fstack-protector])
-    ssp_old_cflags="$CFLAGS"
-    CFLAGS="$CFLAGS -fstack-protector"
-    AC_TRY_COMPILE(,,, ssp_cc=no)
-    echo $ssp_cc
-    if test "X$ssp_cc" = "Xno"; then
-      CFLAGS="$ssp_old_cflags"
-    else
-      AC_DEFINE([ENABLE_SSP_CC], 1, [Define if SSP C support is enabled.])
-    fi
-  fi
-])
-
-AC_DEFUN([GCC_STACK_PROTECT_CXX],[
-  ssp_cxx=yes
-  if test "X$CXX" != "X"; then
-    AC_MSG_CHECKING([whether ${CXX} accepts -fstack-protector])
-    ssp_old_cxxflags="$CXXFLAGS"
-    CXXFLAGS="$CXXFLAGS -fstack-protector"
-    AC_TRY_COMPILE(,,, ssp_cxx=no)
-    echo $ssp_cxx
-    if test "X$ssp_cxx" = "Xno"; then
-	CXXFLAGS="$ssp_old_cxxflags"
-    else
-      AC_DEFINE([ENABLE_SSP_CXX], 1, [Define if SSP C++ support is enabled.])
-    fi
-  fi
-])
diff -pruN 1.2.17-0.1/ac_probes/ac_probes.sh 1.3.6+dfsg-2/ac_probes/ac_probes.sh
--- 1.2.17-0.1/ac_probes/ac_probes.sh	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/ac_probes.sh	1970-01-01 00:00:00.000000000 +0000
@@ -1,330 +0,0 @@
-#!/usr/bin/env bash
-#
-# Generate autoconf probe stuff
-#
-
-if [[ -z "$1" || -z "$2" || -z "$3" ]]; then
-    echo "Usage: $(basename $0) <configure.ac template> <ac_probes_dir> <probe_src_dir>"
-    exit 1
-fi
-
-TEMPLATE="$1"
-AC_PROBES_DIR="$2"
-PROBE_SRCDIR="$3"
-
-TEMPLATE_DECL_SECTION="@@@@PROBE_DECL@@@@"
-TEMPLATE_HEADER_SECTION="@@@@PROBE_HEADERS@@@@"
-TEMPLATE_LIBRARY_SECTION="@@@@PROBE_LIBRARIES@@@@"
-TEMPLATE_TABLE_SECTION="@@@@PROBE_TABLE@@@@"
-TEMPLATE_EVAL_SECTION="@@@@PROBE_EVAL@@@@"
-
-TEMPDIR="$(mktemp -d)"
-HEADERS_INTERNAL=(
-    alloc.h
-    bfind.h
-    config.h
-    probe/[a-zA-Z]*.h
-    common/assume.h
-    common/bfind.h
-    common/debug_priv.h
-    crapi/crapi.h
-    cstdio
-    cstring
-    iostream
-    oval_fts.h
-    probe-api.h
-    procfs.h
-    seap.h
-    sexp.h
-    pcre.h
-    regex.h)
-
-SOURCES_REGEXP='(probe_.*_SOURCES|/.*\.[Cch][a-zA-Z]*\\?$)'
-PROBES_SEDEXP='s|^.*probe_\(.*\)_SOURCES.*$|\1|p'
-HEADER_SEDEXP='s|^.*include.*<[[:space:]]*\([^>]*\)[[:space:]]*>.*$|\1|p'
-
-HEADER_OPT_START='^[[:space:]]*#[[:space:]]*[ie][lf].*[Hh][Aa][Vv][Ee].*$'
-HEADER_OPT_END='^[[:space:]]*#[[:space:]]*e[ln].*$'
-
-HEADER_OPT_SEDEXP="/${HEADER_OPT_START}/,/${HEADER_OPT_END}/ ${HEADER_SEDEXP}"
-
-function ac_gen_probe_decl() {
-    local name="$1"
-
-    echo "probe_${name}_req_deps_ok=yes"
-    echo "probe_${name}_req_deps_missing="
-    echo "probe_${name}_opt_deps_ok=yes"
-    echo "probe_${name}_opt_deps_missing="
-}
-
-#
-# ac_gen_headerscheck <name> <yes/no> <headers>
-#
-function ac_gen_probe_headercheck() {
-    local name="$1"
-    local required="$2"
-    local headers="$3"
-
-    if [[ -z "$headers" ]]; then
-	return
-    fi
-
-    #
-    # AC_CHECK_HEADERS (header-file..., [action-if-found], [action-if-not-found], [includes])
-    #
-    if [[ "$required" == "yes" ]]; then
-	d="required"
-    else
-	d="optional"
-    fi
-
-    echo "echo"
-    echo "echo ' * Checking presence of $d headers for the $name probe'"
-
-    if [[ "$required" == "yes" ]]; then
-	echo "AC_CHECK_HEADERS([${headers}],[],[probe_${name}_req_deps_ok=no; probe_${name}_req_deps_missing='header files'],[-])"
-    else
-	echo "AC_CHECK_HEADERS([${headers}],[],[probe_${name}_opt_deps_ok=no],[-])"
-    fi
-    echo
-}
-
-function ac_gen_probe_librarycheck() {
-    local libinfodir="$1"
-    local cflagsfile="$2"
-
-    for libname in $(ls -1 "$libinfodir" | grep -v '~$'); do
-	local name=
-	local pkgconfig=
-	local pkgconfig_name=
-	local pkgconfig_minver="0.0"
-	local functions_req=
-	local functions_opt=
-	local functions_lang=
-	local probes_req=
-	local probes_opt=
-
-	. "${libinfodir}/${libname}" # load library info
-
-	if [[ -z "$name" ]]; then
-	    continue
-	fi
-
-	echo "echo"
-	echo "echo '* Checking for ${libname} library used by: ${probes_req[*]} ${probes_opt[*]}'"
-	if [[ "${pkgconfig}" == "yes" ]]; then
-	    #
-            # PKG_CHECK_MODULES(prefix, list-of-modules, action-if-found, action-if-not-found)
-	    #
-	    echo "PKG_CHECK_MODULES([${libname}], [${pkgconfig_name} >= ${pkgconfig_minver}],[],["
-
-	    # non-pkgconfig check - fallback
-	    echo "SAVE_LIBS=\$LIBS"
-	    echo "AC_SEARCH_LIBS([${functions_req[0]}],[${name}],["
-	    echo "${libname}_CFLAGS=;"
-	    echo "${libname}_LIBS=-l${name};"
-	    echo "],["
-
-	    for probe_name in ${probes_req[*]}; do
-		echo "probe_${probe_name}_req_deps_ok=no;"
-		echo "probe_${probe_name}_req_deps_missing+=', ${libname}';"
-	    done
-
-	    for probe_name in ${probes_opt[*]}; do
-		echo "probe_${probe_name}_opt_deps_ok=no;"
-		echo "probe_${probe_name}_opt_deps_missing+=', ${libname}';"
-	    done
-
-	    echo "],[])"
-	    echo "AC_SUBST([${libname}_CFLAGS])"
-	    echo "AC_SUBST([${libname}_LIBS])"
-	    echo "LIBS=\$SAVE_LIBS"
-	    echo "])"
-
-	    #
-            # Collect CFLAGS for header checks
-	    #
-	    pkg-config ${pkgconfig_name} --modversion > /dev/null || exit 123
-
-	    echo -n "\$(pkg-config ${pkgconfig_name} --cflags) " >> "${cflagsfile}"
-	else
-	    # non-pkgconfig check
-	    echo "SAVE_LIBS=\$LIBS"
-	    echo "AC_SEARCH_LIBS([${functions_req[0]}],[${name}],["
-
-	    echo "${libname}_CFLAGS=;"
-	    echo "${libname}_LIBS=-l${name};"
-
-	    echo "],["
-
-	    for probe_name in ${probes_req[*]}; do
-		echo "probe_${probe_name}_req_deps_ok=no;"
-		echo "probe_${probe_name}_req_deps_missing+=', ${libname} lib';"
-	    done
-
-	    for probe_name in ${probes_opt[*]}; do
-		echo "probe_${probe_name}_opt_deps_ok=no;"
-		echo "probe_${probe_name}_opt_deps_missing+=', ${libname} lib';"
-	    done
-
-	    echo "],[])"
-
-	    echo "AC_SUBST([${libname}_CFLAGS])"
-	    echo "AC_SUBST([${libname}_LIBS])"
-
-	    echo "LIBS=\$SAVE_LIBS"
-	fi
-
-	echo "SAVE_LIBS=\$LIBS"
-	echo "LIBS=\$${libname}_LIBS"
-
-	if [[ -n "${functions_req[0]}" ]]; then
-	    if [[ -n "${functions_lang}" ]]; then
-		echo "AC_LANG_PUSH([${functions_lang}])"
-	    fi
-
-	    echo -n "AC_CHECK_FUNCS([${functions_req[*]}], [], ["
-
-	    for probe_name in ${probes_req[*]}; do
-		echo
-		echo "probe_${probe_name}_req_deps_ok=no;"
-		echo "probe_${probe_name}_req_deps_missing+=\", \$ac_func func\";"
-	    done
-
-	    echo "])"
-
-	    if [[ -n "${functions_lang}" ]]; then
-		echo "AC_LANG_POP([${functions_lang}])"
-	    fi
-	fi
-
-	if [[ -n "${functions_opt[0]}" ]]; then
-	    if [[ -n "${functions_lang}" ]]; then
-		echo "AC_LANG_PUSH([${functions_lang}])"
-	    fi
-
-	    echo "AC_CHECK_FUNCS([${functions_opt[*]}],[],[])"
-
-	    if [[ -n "${functions_lang}" ]]; then
-		echo "AC_LANG_POP([${functions_lang}])"
-	    fi
-	fi
-
-	echo "LIBS=\$SAVE_LIBS"
-
-	unset functions_opt
-	unset functions_req
-	unset probes_opt
-	unset probes_req
-    done
-}
-
-function ac_gen_probe_tableentry() {
-    local name="$1"
-
-    echo 'if test "$probe_'${name}'_req_deps_ok" = "yes"; then'
-    echo '  probe_'${name}'_table_result="yes"'
-    echo 'else'
-    echo '  probe_'${name}'_table_result="NO (missing: $probe_'${name}'_req_deps_missing)"'
-    echo 'fi'
-    echo 'printf "  %-28s %s\n" "'${name}':" "$probe_'${name}'_table_result"'
-}
-
-function ac_gen_probe_compileeval() {
-    local name="$1"
-    echo "AM_CONDITIONAL([probe_${name}_enabled], test \"\$probe_${name}_req_deps_ok\" = yes)"
-    echo "probe_${name}_enabled=\$probe_${name}_req_deps_ok"
-}
-
-function replace_pattern_with_file() {
-    local pattern="$1"
-    local repfile="$2"
-
-    sed "/${pattern}/ {r ${repfile}
-d}" $3
-}
-
-# Cleanup
-rm -rf "${TEMPDIR}"
-mkdir  "${TEMPDIR}"
-
-cd "${PROBE_SRCDIR}" || exit 9
-
-# Generate source file list for each probe from Makefile.am
-# skip system_info because we always build system_info
-grep -E "${SOURCES_REGEXP}" Makefile.am | \
-    grep -v "probe_system_info" | \
-    sed -e '{:q;N;s/\\\n//g;t q;/\\$/ b q;}' | \
-    sed 's|^[[:space:]]*\(probe_.*SOURCES\)[[:space:]]*=[[:space:]]*\(.*\)[[:space:]]*$|export \1="\2"|' > "${TEMPDIR}/vars" || exit 1
-
-sed  -n "${PROBES_SEDEXP}" "${TEMPDIR}/vars" > "${TEMPDIR}/names" || exit 2
-
-# Load _SOURCES
-. "${TEMPDIR}/vars"
-
-# Make a list of excluded header files separated by '|' (and then construct a regexp from it)
-OIFS=$IFS
-export IFS="|"
-EXCLUDE_HEADERS="${HEADERS_INTERNAL[*]}"
-export IFS=$OIFS
-
-echo > "${TEMPDIR}/ac_probes.check.out"
-echo "echo '  === probes ==='" > "${TEMPDIR}/ac_probes.table.out"
-echo > "${TEMPDIR}/ac_probes.decl.out"
-echo > "${TEMPDIR}/ac_probes.eval.out"
-echo > "${TEMPDIR}/ac_probes.check_cflags.out"
-
-while read probe_name; do
-    src_files=$(eval "echo \$probe_${probe_name}_SOURCES")
-
-    # extract all header files
-    sed -n "${HEADER_SEDEXP}" $src_files | grep -vE "($EXCLUDE_HEADERS)" | sort | uniq > "${TEMPDIR}/headers.${probe_name}"
-    # extract optional header files
-    sed -n "${HEADER_OPT_SEDEXP}" $src_files | grep -vE "($EXCLUDE_HEADERS)" | sort | uniq > "${TEMPDIR}/headers.${probe_name}.opt"
-    # generate list of required header files (required = all - optional)
-    diff --left-column "${TEMPDIR}/headers.${probe_name}.opt" "${TEMPDIR}/headers.${probe_name}" | sed -n 's|> \(.*\)$|\1|p' > "${TEMPDIR}/headers.${probe_name}.req"
-
-    #
-    # Generate autoconf code
-    #
-
-    # declaration
-    ac_gen_probe_decl "$probe_name" >> "${TEMPDIR}/ac_probes.decl.out"
-
-    # required header check
-    ac_gen_probe_headercheck "$probe_name" "yes" "$(cat ${TEMPDIR}/headers.${probe_name}.req | tr '\n' ' ')" >> "${TEMPDIR}/ac_probes.check.out"
-
-    # optional header check
-    ac_gen_probe_headercheck "$probe_name" "no" "$(cat ${TEMPDIR}/headers.${probe_name}.opt | tr '\n' ' ')" >> "${TEMPDIR}/ac_probes.check.out"
-
-    # table entry
-    ac_gen_probe_tableentry "$probe_name" >> "${TEMPDIR}/ac_probes.table.out"
-
-    # result evaluation
-    ac_gen_probe_compileeval "$probe_name" >> "${TEMPDIR}/ac_probes.eval.out"
-
-done <<EOF
-`cat "${TEMPDIR}/names"`
-EOF
-
-cd - > /dev/null
-
-# library check
-ac_gen_probe_librarycheck "${AC_PROBES_DIR}/libs" "${TEMPDIR}/ac_probes.check_cflags.out" > "${TEMPDIR}/ac_probes.libs.out"
-
-# regen check.out file and include CFLAGS handling
-echo "SAVE_CPPFLAGS=\"\$CPPFLAGS\"" > "${TEMPDIR}/ac_probes.check.out2"
-echo "CPPFLAGS=\"\$CPPFLAGS $(cat "${TEMPDIR}/ac_probes.check_cflags.out" | tr '\n' ' ')\"" >> "${TEMPDIR}/ac_probes.check.out2"
-cat "${TEMPDIR}/ac_probes.check.out" >> "${TEMPDIR}/ac_probes.check.out2"
-echo "CPPFLAGS=\"\$SAVE_CPPFLAGS\"" >> "${TEMPDIR}/ac_probes.check.out2"
-mv "${TEMPDIR}/ac_probes.check.out2" "${TEMPDIR}/ac_probes.check.out"
-
-# Generate configure.ac from the template
-cat "${TEMPLATE}" |\
-replace_pattern_with_file "${TEMPLATE_DECL_SECTION}"    "${TEMPDIR}/ac_probes.decl.out" |\
-replace_pattern_with_file "${TEMPLATE_HEADER_SECTION}"  "${TEMPDIR}/ac_probes.check.out"|\
-replace_pattern_with_file "${TEMPLATE_LIBRARY_SECTION}" "${TEMPDIR}/ac_probes.libs.out" |\
-replace_pattern_with_file "${TEMPLATE_EVAL_SECTION}"    "${TEMPDIR}/ac_probes.eval.out" |\
-replace_pattern_with_file "${TEMPLATE_TABLE_SECTION}"   "${TEMPDIR}/ac_probes.table.out"
-
-rm -f "${TEMPDIR}"/* && rmdir "${TEMPDIR}"
diff -pruN 1.2.17-0.1/ac_probes/configure.ac.tpl 1.3.6+dfsg-2/ac_probes/configure.ac.tpl
--- 1.2.17-0.1/ac_probes/configure.ac.tpl	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/configure.ac.tpl	1970-01-01 00:00:00.000000000 +0000
@@ -1,802 +0,0 @@
-# ! MAKE SURE YOU ARE EDITING THE ac_probes/configure.ac.tpl FILE,
-# ! THE configure.ac FILE ITSELF IS GENERATED FROM THE TEMPLATE USING
-# ! ac_probes/ac_probes.sh
-
-#                                               -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.59)
-AC_INIT([openscap], [1.2.17], [open-scap-list@redhat.com])
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_AUX_DIR([config])
-AC_CONFIG_MACRO_DIR([m4])
-
-AM_INIT_AUTOMAKE([foreign tar-pax])
-
-# If automake supports "silent rules", enable them by default
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_DISABLE_STATIC
-#build dll on windows(cygwin)
-AC_LIBTOOL_WIN32_DLL
-
-# Checks for programs.
-AC_PROG_CC
-gl_EARLY
-gl_INIT
-AM_PROG_LIBTOOL
-AM_PROG_CC_C_O
-AC_PROG_CXX
-AC_PROG_INSTALL
-AC_PROG_LN_S
-AC_PROG_MAKE_SET
-AC_PROG_LIBTOOL
-
-# swig
-AC_PROG_SWIG([])
-
-# libtool versioning
-# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
-
-## increment if the interface has additions, changes, removals.
-LT_CURRENT=22
-
-## increment any time the source changes; set 0 to if you increment CURRENT
-LT_REVISION=1
-
-## increment if any interfaces have been added; set to 0
-## if any interfaces have been changed or removed. removal has
-## precedence over adding, so set to 0 if both happened.
-LT_AGE=14
-
-LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
-
-AC_SUBST(LT_CURRENT)
-AC_SUBST(LT_REVISION)
-AC_SUBST(LT_AGE)
-AC_SUBST(LT_CURRENT_MINUS_AGE)
-
-AC_DEFINE_UNQUOTED([LT_CURRENT_MINUS_AGE], [$LT_CURRENT_MINUS_AGE], [LT_CURRENT - LT_AGE])
-
-AC_DEFUN([canonical_wrap], [AC_REQUIRE([AC_CANONICAL_HOST])])
-canonical_wrap
-
-# Compiler flags
-CFLAGS="$CFLAGS -pipe -std=c99 -W -Wall -Wnonnull -Wshadow -Wformat -Wundef -Wno-unused-parameter -Wmissing-prototypes -Wno-unknown-pragmas -D_GNU_SOURCE -DOSCAP_THREAD_SAFE -D_POSIX_C_SOURCE=200112L"
-
-case $host in
-  *solaris*) :
-    CFLAGS="$CFLAGS -D__EXTENSIONS__" ;;
-esac
-
-CFLAGS_OPTIMIZED="-O2 -finline-functions"
-CFLAGS_DEBUGGING="-fno-inline-functions -O0 -g3"
-CFLAGS_NODEBUG="-Wno-unused-function"
-
-my_save_cflags="$CFLAGS"
-CFLAGS="$CFLAGS -Werror=format-security"
-AC_MSG_CHECKING([whether CC supports -Werror=format-security])
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
-    [AC_MSG_RESULT([yes])]
-    [AM_CFLAGS="-Werror=format-security"],
-    [AC_MSG_RESULT([no])]
-)
-CFLAGS="$my_save_cflags"
-AC_SUBST([AM_CFLAGS])
-
-@@@@PROBE_DECL@@@@
-
-#
-# env
-#
-AC_CHECK_PROG(
-  [HAVE_ENV],
-  [env],
-  [yes],,,
-)
-
-AM_CONDITIONAL(ENV_PRESENT, [test x"${HAVE_ENV}" = xyes])
-
-#
-# Valgrind
-#
-AC_CHECK_PROG(
-  [HAVE_VALGRIND],
-  [valgrind],
-  [yes],,,
-)
-
-AM_CONDITIONAL(VALGRIND_PRESENT, [test x"${HAVE_VALGRIND}" = xyes])
-
-AC_HEADER_STDC
-AC_HEADER_STDBOOL
-AC_TYPE_SIZE_T
-
-AC_FUNC_MALLOC
-AC_FUNC_REALLOC
-
-# Check for pthreads support: http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_pthread.m4
-AX_PTHREAD()
-
-if test "x$ax_pthread_ok" != "xyes"; then
-   AC_MSG_FAILURE(pthread library is missing)
-fi
-
-SAVE_LIBS=$LIBS
-SAVE_CFLAGS=$CFLAGS
-
-CFLAGS="$CFLAGS -D_GNU_SOURCE"
-LIBS="$PTHREAD_LIBS"
-
-AC_CHECK_FUNCS([pthread_timedjoin_np pthread_setname_np pthread_getname_np clock_gettime])
-
-CFLAGS=$SAVE_CFLAGS
-LIBS=$SAVE_LIBS
-
-AC_SUBST([PTHREAD_CFLAGS])
-AC_SUBST([PTHREAD_LIBS])
-
-
-PKG_CHECK_MODULES([curl], [libcurl >= 7.12.0],[],
-                          AC_MSG_FAILURE([libcurl devel support is missing]))
-
-PKG_CHECK_MODULES([xml2], [libxml-2.0 >= 2.0],[],
-			  AC_MSG_FAILURE([libxml-2.0 devel support is missing]))
-
-PKG_CHECK_MODULES([xslt], [libxslt >= 1.1],[],
-			  AC_MSG_FAILURE([libxslt devel support is missing]))
-
-PKG_CHECK_MODULES([exslt], [libexslt >= 0.8],[],
-			  AC_MSG_FAILURE([libexslt devel support is missing]))
-
-AC_CHECK_HEADER(pcre.h, , [AC_MSG_ERROR([pcre.h is missing] )])
-
-crapi_CFLAGS=""
-crapi_LIBS=""
-
-if test "${with_crypto}" = ""; then
-   with_crypto=gcrypt
-fi
-
-case "${with_crypto}" in
-      nss3)
-	PKG_CHECK_MODULES([nss3], [nss >= 3.0],[],
-			  AC_MSG_FAILURE([libnss3 devel support is missing]))
-
-	crapi_libname="NSS 3.x"
-	crapi_CFLAGS=$nss3_CFLAGS
-	crapi_LIBS=$nss3_LIBS
-        AC_DEFINE([HAVE_NSS3], [1], [Define to 1 if you have 'NSS' library.])
-        ;;
-    gcrypt)
-	SAVE_LIBS=$LIBS
-        AC_CHECK_LIB([gcrypt], [gcry_check_version],
-                     [crapi_CFLAGS=`libgcrypt-config --cflags`;
-                      crapi_LIBS=`libgcrypt-config --libs`;
-                      crapi_libname="GCrypt";],
-                     [AC_MSG_ERROR([library 'gcrypt' is required for GCrypt.])],
-                     [])
-        AC_DEFINE([HAVE_GCRYPT], [1], [Define to 1 if you have 'gcrypt' library.])
-	AC_CACHE_CHECK([for GCRYCTL_SET_ENFORCED_FIPS_FLAG],
-                    [ac_cv_gcryctl_set_enforced_fips_flag],
-                    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include<gcrypt.h>],
-                                                        [return GCRYCTL_SET_ENFORCED_FIPS_FLAG;])],
-                                       [ac_cv_gcryctl_set_enforced_fips_flag=yes],
-                                       [ac_cv_gcryctl_set_enforced_fips_flag=no])])
-
-	if test "${ac_cv_gcryctl_set_enforced_fips_flag}" == "yes"; then
-	   AC_DEFINE([HAVE_GCRYCTL_SET_ENFORCED_FIPS_FLAG], [1], [Define to 1 if you have 'gcrypt' library with GCRYCTL_SET_ENFORCED_FIPS_FLAG.])
-	fi
-	LIBS=$SAVE_LIBS
-        ;;
-         *)
-          AC_MSG_ERROR([unknown crypto backend])
-        ;;
-esac
-
-AC_SUBST(crapi_CFLAGS)
-AC_SUBST(crapi_LIBS)
-
-AC_CHECK_FUNCS([fts_open posix_memalign memalign])
-AC_CHECK_FUNC(sigwaitinfo, [sigwaitinfo_LIBS=""], [sigwaitinfo_LIBS="-lrt"])
-AC_SUBST(sigwaitinfo_LIBS)
-
-# libopenscap links against librpm if found. Otherwise we carry own implementation of rpmvercmp.
-echo
-echo '* Checking for rpm library  (optional dependency of libopenscap) '
-PKG_CHECK_MODULES([rpm], [rpm >= 4.4],[
-	SAVE_LIBS=$LIBS
-	AC_DEFINE([HAVE_RPMVERCMP], [1], [Define to 1 if there is rpmvercmp available.])
-	AC_SUBST([rpm_CFLAGS])
-	AC_SUBST([rpm_LIBS])
-	LIBS=$SAVE_LIBS
-],[
-	AC_MSG_NOTICE([!!! librpm not found. The rpmvercmp function will be emulated. !!!])
-])
-PKG_CHECK_MODULES([rpm], [rpm >= 4.6],[
-	AC_DEFINE([HAVE_RPM46], [1], [Define to 1 if rpm is newer than 4.6.])
-],[
-	AC_MSG_NOTICE([librpm is older than 4.6])
-])
-PKG_CHECK_MODULES([rpm], [rpm >= 4.7],[
-	AC_DEFINE([HAVE_RPM47], [1], [Define to 1 if rpm is newer than 4.7.])
-],[
-	AC_MSG_NOTICE([librpm is older than 4.7])
-])
-echo
-echo '* Checking for bz2 library (optional dependency of libopenscap)'
-AC_CHECK_LIB([bz2], [BZ2_bzReadOpen],
-	[
-	        AC_DEFINE([HAVE_BZ2], [1], [Define to 1 if there is libbz2 available.])
-	        LIBS="$LIBS -lbz2"
-		AC_CHECK_PROG([HAVE_BZIP2],[bzip2],[yes],,,)
-	],[
-	        AC_MSG_NOTICE([!!! libbz2 not found. Bzip2 support will be disabled !!!])
-	])
-AM_CONDITIONAL([HAVE_BZIP2], [test "x${HAVE_BZIP2}" = xyes])
-
-
-@@@@PROBE_HEADERS@@@@
-
-@@@@PROBE_LIBRARIES@@@@
-echo
-
-
-#check for atomic functions
-case $host_cpu in
-	i386 | i486 | i586 | i686)
-		CFLAGS="$CFLAGS  -march=i686"
-		;;
-esac
-
-AC_CACHE_CHECK([for atomic builtins], [ac_cv_atomic_builtins],
-[AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <stdint.h>
-				  uint16_t foovar=0; uint16_t old=1; uint16_t new=2;],
-				[__sync_bool_compare_and_swap(&foovar,old,new); return __sync_fetch_and_add(&foovar, 1);])],
-		[ac_cv_atomic_builtins=yes],
-		[ac_cv_atomic_builtins=no])])
-if test $ac_cv_atomic_builtins = yes; then
-  AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Define to 1 if the compiler supports atomic builtins.])
-else
-  AC_MSG_NOTICE([!!! Compiler does not support atomic builtins. Atomic operation will be emulated using mutex-based locking. !!!])
-fi
-
-
-AC_ARG_ENABLE([probes-independent],
-     [AC_HELP_STRING([--enable-probes-independent], [enable compilation of probes independent of the base system (default=yes)])],
-     [case "${enableval}" in
-       yes) probes_independent=yes ;;
-       no)  probes_independent=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-independent]) ;;
-     esac],[probes_independent=yes])
-
-AC_ARG_ENABLE([probes-unix],
-     [AC_HELP_STRING([--enable-probes-unix], [enable compilation of probes for UNIX based systems (default=yes)])],
-     [case "${enableval}" in
-       yes) probes_unix=yes ;;
-       no)  probes_unix=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-unix]) ;;
-     esac],[probes_unix=yes])
-if test "x${probes_unix}" = xyes; then
-	AC_DEFINE([PLATFORM_UNIX], [1], [Indicator for a Unix type OS])
-fi
-
-
-probes_linux=no
-case "${host}" in
-    *-*-linux*)
-        probes_linux=yes
-    ;;
-esac
-AC_ARG_ENABLE([probes-linux],
-     [AC_HELP_STRING([--enable-probes-linux], [enable compilation of probes for Linux based systems (default=autodetect)])],
-     [case "${enableval}" in
-       yes) probes_linux=yes ;;
-       no)  probes_linux=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-linux]) ;;
-     esac],)
-
-probes_solaris=no
-case "${host}" in
-    *-*-solaris*)
-        probes_solaris=yes
-    ;;
-esac
-AC_ARG_ENABLE([probes-solaris],
-     [AC_HELP_STRING([--enable-probes-solaris], [enable compilation of probes for Solaris based systems (default=autodetect)])],
-     [case "${enableval}" in
-       yes) probes_solaris=yes ;;
-       no)  probes_solaris=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-solaris]) ;;
-     esac],)
-
-AC_ARG_ENABLE([cce],
-     [AC_HELP_STRING([--enable-cce], [include support for CCE (default=no)])],
-     [case "${enableval}" in
-       yes) cce=yes ;;
-       no)  cce=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-cce]) ;;
-     esac],[cce=no])
-
-AC_ARG_ENABLE([python],
-     [AC_HELP_STRING([--enable-python], [enable compilation of python2 bindings (default=auto)])],
-     [case "${enableval}" in
-       yes) python2_bind=yes ;;
-       no)  python2_bind=no  ;;
-       auto)  python2_bind=auto  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
-     esac],[python2_bind=auto])
-
-AC_ARG_ENABLE([python3],
-	[AC_HELP_STRING([--enable-python3], [enable compilation of python3 bindings (default=auto)])],
-	[case "${enableval}" in
-		yes) python3_bind=yes ;;
-		no) python3_bind=no ;;
-		auto) python3_bind=auto ;;
-		*) AC_MSG_ERROR([bad value ${enableval} for --enable-python3]);;
-	esac],[python3_bind=auto])
-
-AC_ARG_ENABLE([perl],
-     [AC_HELP_STRING([--enable-perl], [enable compilation of perl bindings (default=no)])],
-     [case "${enableval}" in
-       yes) perl_bind=yes ;;
-       no)  perl_bind=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-perl]) ;;
-     esac],[perl_bind=no])
-
-AC_ARG_ENABLE([regex-posix],
-     [AC_HELP_STRING([--enable-regex-posix], [compile with POSIX instead of PCRE regex (default=no)])],
-     [case "${enableval}" in
-       yes) regex_posix=yes ;;
-       no)  regex_posix=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-regex-posix]) ;;
-     esac],[regex_posix=no])
-
-AC_ARG_ENABLE([debug],
-     [AC_HELP_STRING([--enable-debug], [enable debugging flags (default=no)])],
-     [case "${enableval}" in
-       yes) debug=yes ;;
-       no)  debug=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
-     esac], [debug=no])
-
-AC_ARG_ENABLE([valgrind],
-     [AC_HELP_STRING([--enable-valgrind], [enable valgrind checks (default=no)])],
-     [case "${enableval}" in
-       yes) vgdebug=yes ;;
-       no)  vgdebug=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-valgrind]) ;;
-     esac], [vgdebug=no])
-
-
-AC_ARG_ENABLE([ssp],
-     [AC_HELP_STRING([--enable-ssp], [enable SSP (fstack-protector, default=no)])],
-     [case "${enableval}" in
-       yes) ssp=yes ;;
-       no)  ssp=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-ssp]) ;;
-     esac], [ssp=no])
-
-AC_ARG_WITH([crypto],
-     [AS_HELP_STRING([--with-crypto],
-     [use different crypto backend. Available options: nss3, gcrypt [default=gcrypt]])],
-     [],
-     [crypto=gcrypt])
-
-if test "x${libexecdir}" = xNONE; then
-	probe_dir="/usr/local/libexec/openscap"
-else
-	EXPAND_DIR(probe_dir,"${libexecdir}/openscap")
-fi
-
-AC_SUBST(probe_dir)
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_SCHEMA_PATH], ["/usr/local/share/openscap/schemas"], [Path to xml schemas])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_SCHEMA_PATH], ["${prefix}/share/openscap/schemas"], [Path to xml schemas])
-fi
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_XSLT_PATH], ["/usr/local/share/openscap/xsl"], [Path to xslt files])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_XSLT_PATH], ["${prefix}/share/openscap/xsl"], [Path to xslt files])
-fi
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_CPE_PATH], ["/usr/local/share/openscap/cpe"], [Path to cpe files])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_CPE_PATH], ["${prefix}/share/openscap/cpe"], [Path to cpe files])
-fi
-
-if test "$regex_posix" = "yes"; then
-   AC_DEFINE([USE_REGEX_POSIX], [1], [Use POSIX regular expressions])
-else
-   AC_DEFINE([USE_REGEX_PCRE], [1], [Use PCRE])
-fi
-
-if test "$ssp" = "yes"; then
-   GCC_STACK_PROTECT_CC
-   GCC_STACK_PROTECT_CXX
-fi
-
-if test "$debug" = "yes"; then
-   CFLAGS="$CFLAGS $CFLAGS_DEBUGGING"
-else
-   CFLAGS="$CFLAGS $CFLAGS_NODEBUG"
-   AC_DEFINE([NDEBUG], [1], [No Debug defined])
-fi
-
-AC_ARG_ENABLE([sce],
-     [AC_HELP_STRING([--enable-sce], [enable script check engine (default=no)])],
-     [case "${enableval}" in
-       yes) sce=yes ;;
-       no)  sce=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-sce]) ;;
-     esac],[sce=no])
-
-AC_ARG_WITH([oscap-temp-dir],
-     [AS_HELP_STRING([--with-oscap-temp-dir],
-     [use different temporary directory to execute sce scripts [default=/tmp]])],
-     [],
-     [with_oscap_temp_dir="/tmp"])
-
-if test "x${sce}" = xyes; then
-  AC_DEFINE([ENABLE_SCE], [1], [compilation of script check engine enabled])
-  CFLAGS="$CFLAGS -DOSCAP_TEMP_DIR=\\\"${with_oscap_temp_dir}\\\"" # double escape needed for compilation on some systems
-fi
-
-AC_ARG_ENABLE([util-oscap],
-     [AC_HELP_STRING([--enable-util-oscap], [enable compilation of the oscap utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap=yes ;;
-       no)  util_oscap=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap]) ;;
-     esac],[util_oscap=yes])
-
-AC_ARG_ENABLE([util-scap-as-rpm],
-     [AC_HELP_STRING([--enable-util-scap-as-rpm], [enable compilation of the scap-as-rpm utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_scap_as_rpm=yes ;;
-       no)  util_scap_as_rpm=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-scap-as-rpm]) ;;
-     esac],[util_scap_as_rpm=yes])
-
-AC_ARG_ENABLE([util-oscap-ssh],
-     [AC_HELP_STRING([--enable-util-oscap-ssh], [enable compilation of the oscap-ssh utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_ssh=yes ;;
-       no)  util_oscap_ssh=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-ssh]) ;;
-     esac],[util_oscap_ssh=yes])
-
-AC_ARG_ENABLE([util-oscap-docker],
-     [AC_HELP_STRING([--enable-util-oscap-docker], [enable compilation of the oscap-docker utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_docker=yes ;;
-       no)  util_oscap_docker=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-docker]) ;;
-     esac],[util_oscap_docker=yes])
-
-AC_ARG_ENABLE([util-oscap-vm],
-     [AC_HELP_STRING([--enable-util-oscap-vm], [enable compilation of the oscap-vm utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_vm=yes ;;
-       no)  util_oscap_vm=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-vm]) ;;
-     esac],[util_oscap_vm=yes])
-
-AC_ARG_ENABLE([util-oscap-chroot],
-     [AC_HELP_STRING([--enable-util-oscap-chroot], [enable compilation of the oscap-chroot utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_chroot=yes ;;
-       no)  util_oscap_chroot=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-chroot]) ;;
-     esac],[util_oscap_chroot=yes])
-
-if test "$vgdebug" = "yes"; then
- if test "$HAVE_VALGRIND" = "yes"; then
-   vgcheck="yes"
- else
-   AC_MSG_ERROR([valgrind not installed])
- fi
-else
-   vgcheck="no"
-fi
-AC_SUBST([vgcheck])
-
-if test "x${util_oscap_docker}" = "xyes"; then
-	if test ! "x${HAVE_BZIP2}" = xyes; then
-		AC_MSG_FAILURE(oscap-docker requires bzip2! Either disable oscap-docker or install bzip2 development support.)
-	fi
-fi
-
-if test "x${perl_bind}" = xyes; then
-	AC_PATH_PROG(PERL, perl)
-	PERL_INCLUDES="`$PERL -e 'use Config; print $Config{archlib}'`/CORE"
-	vendorlib="$(  $PERL -e 'use Config; print $Config{vendorlib}'  | sed "s|$($PERL -e 'use Config; print $Config{prefix}')||" )"
-	vendorarch="$( $PERL -e 'use Config; print $Config{vendorarch}' | sed "s|$($PERL -e 'use Config; print $Config{prefix}')||" )"
-	AC_SUBST([PERL_INCLUDES], ["-I$PERL_INCLUDES"])
-	AC_SUBST([perl_vendorlibdir], ['${prefix}'$vendorlib])
-	AC_SUBST([perl_vendorarchdir], ['${prefix}'$vendorarch])
-	save_CPPFLAGS="$CPPFLAGS"
-	CPPFLAGS="$CPPFLAGS $PERL_INCLUDES"
-	AC_CHECK_HEADERS([EXTERN.h],[],[AC_MSG_ERROR(Perl development librarier are needed for perl bindings)],[-])
-	CPPFLAGS="$save_CPPFLAGS"
-fi
-
-
-dnl $1: Python major version
-dnl $2: How to announce it
-m4_define([TELL_PYTHON_NOT_PRESENT], [$2(
-	[python $1 bindings were requested, but the appropriate python interpreter was not found in the search path.
-Please ensure that it is installed and available, or run configure with --disable-python$1 option.])])
-
-dnl $1: Python major version
-dnl $2: How to announce it
-m4_define([TELL_PYTHON_DEVEL_NOT_PRESENT], [$2(
-	[python $1 bindings were requested and there is an interpreter, but the development support is missing.
-Please ensure that it is installed and available, or run configure with --disable-python$1 option.])])
-
-# TODO: Handle the bindings yes/no -> interpreter yes/no -> devel yes/no situation
-
-dnl python_bind can be set either to yes, no or auto. It will be set to yes or no after the evaluation.
-dnl
-dnl $1: Python major version
-m4_define([EVALUATE_PYTHON_CHECK_RESULT],
-	[m4_if([$1], , [m4_fatal([The $0 macro needs Python major version as its first argument.])])
-	AS_IF([test "x${python$1_bind}" = xyes && test "x$HAVE_PYTHON$1" = xno],
-		[python$1_bind=no
-		TELL_PYTHON_NOT_PRESENT([$1], [AC_MSG_ERROR])],
-		[test "x$python$1_bind" = xauto && test "x$HAVE_PYTHON$1" = xno],
-		[python$1_bind=no
-		TELL_PYTHON_NOT_PRESENT([$1], [AC_MSG_NOTICE])],
-		[test "x$python$1_bind" != xno && test "x$HAVE_PYTHON$1" = xyes],
-		[AM_CONFIGURE_PYTHON_FLAGS([PYTHON$1],
-			[${PYTHON$1}],
-			[python$1_bind=yes],
-			[AS_IF([test "x$python$1_bind" = xauto],
-				[python$1_bind=no
-				TELL_PYTHON_DEVEL_NOT_PRESENT([$1], [AC_MSG_NOTICE])],
-				[TELL_PYTHON_DEVEL_NOT_PRESENT([$1], [AC_MSG_ERROR])])])])])
-
-dnl
-dnl $1: The Python interpreter to check
-dnl $2: The module to check
-dnl $3: Action if OK
-dnl $4: Action if not OK
-m4_define([PYTHON_CHECK_FOR_INSTALLED_MODULE],
-	[AS_IF(["$1" -c 'import $2' 2> /dev/null],
-		[$3], [$4])])
-
-dnl
-dnl $1: Python major version
-m4_define([_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER],
-	[AS_IF([test "$HAVE_PYTHON$1" = yes],
-		[AC_MSG_CHECKING([whether ${PYTHON$1} can import Atomic])
-		 PYTHON_CHECK_FOR_INSTALLED_MODULE(
-			[${PYTHON$1}], [Atomic],
-			[AC_MSG_RESULT([yes])
-			 preferred_python="${PYTHON$1}"],
-			 AC_MSG_RESULT([no]))])])
-
-AM_PATH_PYTHON_OF_MAJOR_VERSION([2], [2.6], [HAVE_PYTHON2=yes], [HAVE_PYTHON2=no])
-AM_PATH_PYTHON_OF_MAJOR_VERSION([3], [3.4], [HAVE_PYTHON3=yes], [HAVE_PYTHON3=no])
-
-EVALUATE_PYTHON_CHECK_RESULT(3)
-EVALUATE_PYTHON_CHECK_RESULT(2)
-
-# Just to have PYTHON defined so Automake doesn't freak out.
-# Therefore, we define it to one of available interpreters in favor of Python 3
-PYTHON=:
-test "x$HAVE_PYTHON2" = xyes && PYTHON="$PYTHON2"
-test "x$HAVE_PYTHON3" = xyes && PYTHON="$PYTHON3"
-AC_SUBST([PYTHON])
-
-preferred_python=:
-
-AS_IF([test "x$util_oscap_docker" = xyes],
-	[_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER(2)
-	_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER(3)
-	AS_IF([test "$preferred_python" = :],
-		[AS_IF([test "$PYTHON" != :],
-			[AC_MSG_NOTICE([Couldnt detect preferred python interpreter for oscap-docker. If you can, make sure one can import the 'Atomic' module and re-run the configure script.])
-			AC_MSG_NOTICE([Setting the oscap-docker python to '$PYTHON'.])
-			preferred_python="$PYTHON"],
-			[AC_MSG_ERROR([Not found a working Python interpreter and oscap-docker needs it. Aborting, as oscap-docker has been requested.])])])])
-
-# oscap-docker determine python dir on default python version
-OSCAPDOCKER_PYTHONDIR=`$preferred_python -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(0,0,prefix='$' '{prefix}'))"`
-# oscap-docker uses preferred_python substitution
-AC_SUBST([preferred_python])
-AC_SUBST(oscapdocker_pythondir, $OSCAPDOCKER_PYTHONDIR)
-
-@@@@PROBE_EVAL@@@@
-
-AM_CONDITIONAL([WANT_CCE],  test "$cce"  = yes)
-
-AM_CONDITIONAL([WANT_PROBES_INDEPENDENT], test "$probes_independent" = yes)
-AM_CONDITIONAL([WANT_PROBES_UNIX], test "$probes_unix" = yes)
-AM_CONDITIONAL([WANT_PROBES_LINUX], test "$probes_linux" = yes)
-AM_CONDITIONAL([WANT_PROBES_SOLARIS], test "$probes_solaris" = yes)
-
-AM_CONDITIONAL([WANT_SCE], test "$sce" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP], test "$util_oscap" = yes)
-AM_CONDITIONAL([WANT_UTIL_SCAP_AS_RPM], test "$util_scap_as_rpm" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_SSH], test "$util_oscap_ssh" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_DOCKER], test "$util_oscap_docker" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_VM], test "$util_oscap_vm" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_CHROOT], test "$util_oscap_chroot" = yes)
-AM_CONDITIONAL([WANT_PYTHON2], test "$python2_bind" = yes)
-AM_CONDITIONAL([WANT_PYTHON3], test "$python3_bind" = yes)
-AM_CONDITIONAL([WANT_PERL], test "$perl_bind" = yes)
-AM_CONDITIONAL([ENABLE_VALGRIND_TESTS], test "$vgcheck" = yes)
-
-#
-# Core
-#
-AC_CONFIG_FILES([Makefile
-                 lib/Makefile
-                 src/Makefile
-                 xsl/Makefile
-                 schemas/Makefile
-                 cpe/Makefile
-                 libopenscap.pc
-                 src/common/Makefile
-		src/source/Makefile
-                 tests/Makefile
-                 tests/API/Makefile
-
-                 swig/Makefile
-		swig/perl/Makefile
-		swig/python2/Makefile
-		swig/python3/Makefile
-
-                 utils/Makefile
-
-                 src/OVAL/Makefile
-		src/OVAL/adt/Makefile
-		src/OVAL/results/Makefile
-                 tests/API/OVAL/Makefile
-		tests/API/OVAL/glob_to_regex/Makefile
-		tests/API/OVAL/schema_version/Makefile
-		tests/oscap_string/Makefile
-                 tests/API/OVAL/unittests/Makefile
-		 tests/API/OVAL/validate/Makefile
-		 tests/API/OVAL/report_variable_values/Makefile
-                 tests/mitre/Makefile
-
-                 src/OVAL/probes/Makefile
-                 src/OVAL/probes/probe/Makefile
-                 src/OVAL/probes/crapi/Makefile
-                 src/OVAL/probes/SEAP/Makefile
-                 src/OVAL/probes/SEAP/generic/rbt/Makefile
-                 tests/probes/Makefile
-                 tests/API/crypt/Makefile
-                 tests/API/SEAP/Makefile
-                 tests/API/probes/Makefile
-		tests/sources/Makefile
-		tests/CPE/Makefile
-                 tests/probes/file/Makefile
-                 tests/probes/fileextendedattribute/Makefile
-                 tests/probes/uname/Makefile
-                 tests/probes/shadow/Makefile
-		tests/probes/sql57/Makefile
-		tests/probes/symlink/Makefile
-                 tests/probes/family/Makefile
-                 tests/probes/process58/Makefile
-                 tests/probes/sysinfo/Makefile
-                 tests/probes/rpminfo/Makefile
-		tests/probes/rpmverifyfile/Makefile
-                 tests/probes/rpmverifypackage/Makefile
-		 tests/probes/rpmverify/Makefile
-                 tests/probes/systemdunitproperty/Makefile
-                 tests/probes/systemdunitdependency/Makefile
-                 tests/probes/runlevel/Makefile
-                 tests/probes/filehash/Makefile
-                 tests/probes/filehash58/Makefile
-                 tests/probes/password/Makefile
-                 tests/probes/interface/Makefile
-                 tests/probes/textfilecontent54/Makefile
-                 tests/probes/environmentvariable/Makefile
-                 tests/probes/environmentvariable58/Makefile
-                 tests/probes/xinetd/Makefile
-                 tests/probes/selinuxboolean/Makefile
-                 tests/probes/isainfo/Makefile
-                 tests/probes/iflisteners/Makefile
-		 tests/probes/maskattr/Makefile
-		tests/probes/sysctl/Makefile
-
-                 src/CVSS/Makefile
-                 tests/API/CVSS/Makefile
-
-                 src/CVE/Makefile
-                 tests/API/CVE/Makefile
-
-                 src/CVRF/Makefile
-                 tests/API/CVRF/Makefile
-
-                 src/CPE/Makefile
-                 tests/API/CPE/Makefile
-                 tests/API/CPE/name/Makefile
-                 tests/API/CPE/lang/Makefile
-                 tests/API/CPE/dict/Makefile
-                 tests/API/CPE/inbuilt/Makefile
-
-                 src/CCE/Makefile
-                 tests/API/CCE/Makefile
-
-                 src/DS/Makefile
-                 tests/DS/Makefile
-                 tests/DS/ds_sds_index/Makefile
-                 tests/DS/signed/Makefile
-                 tests/DS/validate/Makefile
-
-                 tests/bindings/Makefile
-
-                 src/XCCDF/Makefile
-                 src/XCCDF_POLICY/Makefile
-                 tests/API/XCCDF/Makefile
-                 tests/API/XCCDF/applicability/Makefile
-                 tests/API/XCCDF/default_cpe/Makefile
-                 tests/API/XCCDF/fix/Makefile
-                 tests/API/XCCDF/guide/Makefile
-                 tests/API/XCCDF/unittests/Makefile
-                 tests/API/XCCDF/parser/Makefile
-                 tests/API/XCCDF/progress/Makefile
-                 tests/API/XCCDF/report/Makefile
-                 tests/API/XCCDF/result_files/Makefile
-                 tests/API/XCCDF/tailoring/Makefile
-                 tests/API/XCCDF/variable_instance/Makefile
-
-                 tests/schemas/Makefile
-		tests/bz2/Makefile
-		tests/codestyle/Makefile
-		tests/oval_details/Makefile
-		tests/nist/Makefile
-		tests/offline_mode/Makefile
-
-                 src/SCE/Makefile
-                 tests/sce/Makefile])
-
-AC_CONFIG_FILES([run],
-                [chmod +x,-w run])
-AC_CONFIG_FILES([tests/test_common.sh],
-                [chmod +x,-w tests/test_common.sh])
-AC_CONFIG_FILES([utils/oscap-docker],
-                [chmod +x,-w utils/oscap-docker])
-
-AC_OUTPUT
-
-echo "******************************************************"
-echo "OpenSCAP will be compiled with the following settings:"
-echo
-echo "oscap tool:                    $util_oscap"
-echo "scap-as-rpm tool:              $util_scap_as_rpm"
-echo "oscap-ssh tool:                $util_oscap_ssh"
-echo "oscap-docker tool:             $util_oscap_docker"
-echo "oscap-vm tool:                 $util_oscap_vm"
-echo "oscap-chroot tool:             $util_oscap_chroot"
-echo "python2 bindings enabled:      $python2_bind"
-echo "python3 bindings enabled:      $python3_bind"
-echo "perl bindings enabled:         $perl_bind"
-echo "use POSIX regex:               $regex_posix"
-echo "SCE enabled                    $sce"
-echo "debugging flags enabled:       $debug"
-echo "CCE enabled:                   $cce"
-echo
-@@@@PROBE_TABLE@@@@
-echo "  system_info:                 always enabled"
-echo
-echo "  === configuration ==="
-echo "  probe directory set to:      $probe_dir"
-echo ""
-
-echo "  === crypto === "
-echo "  library:                     $crapi_libname"
-echo "     libs:                     $crapi_LIBS"
-echo "   cflags:                     $crapi_CFLAGS"
-echo ""
-
-echo "Valgrind checks enabled:       $vgcheck"
-echo "CFLAGS:                        $CFLAGS"
-echo "CXXFLAGS:                      $CXXFLAGS"
diff -pruN 1.2.17-0.1/ac_probes/libs/acl 1.3.6+dfsg-2/ac_probes/libs/acl
--- 1.2.17-0.1/ac_probes/libs/acl	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/acl	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-name=acl
-pkgconfig=no
-functions_req=(acl_init)
-functions_opt=(acl_extended_file)
-probes_req=
-probes_opt=(file)
diff -pruN 1.2.17-0.1/ac_probes/libs/apt_pkg 1.3.6+dfsg-2/ac_probes/libs/apt_pkg
--- 1.2.17-0.1/ac_probes/libs/apt_pkg	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/apt_pkg	1970-01-01 00:00:00.000000000 +0000
@@ -1,8 +0,0 @@
-name=apt-pkg
-pkgconfig=yes
-pkgconfig_name=libapt-pkg
-functions_req=(pkgVersion)
-functions_opt=
-functions_lang=C++
-probes_req=(dpkginfo)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/blkid 1.3.6+dfsg-2/ac_probes/libs/blkid
--- 1.2.17-0.1/ac_probes/libs/blkid	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/blkid	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=blkid
-pkgconfig=yes
-pkgconfig_name=blkid
-functions_req=(blkid_get_cache blkid_get_tag_value)
-functions_opt=
-probes_req=
-probes_opt=(partition)
diff -pruN 1.2.17-0.1/ac_probes/libs/cap 1.3.6+dfsg-2/ac_probes/libs/cap
--- 1.2.17-0.1/ac_probes/libs/cap	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/cap	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-name=cap
-pkgconfig=no
-functions_req=(cap_init)
-functions_opt=(cap_get_pid capgetp)
-probes_req=(process58)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/dbus1 1.3.6+dfsg-2/ac_probes/libs/dbus1
--- 1.2.17-0.1/ac_probes/libs/dbus1	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/dbus1	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=dbus1
-pkgconfig=yes
-pkgconfig_name=dbus-1
-functions_req=(dbus_bus_get)
-functions_opt=
-probes_req=(systemdunitproperty systemdunitproperty)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/gconf2 1.3.6+dfsg-2/ac_probes/libs/gconf2
--- 1.2.17-0.1/ac_probes/libs/gconf2	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/gconf2	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=gconf-2
-pkgconfig=yes
-pkgconfig_name=gconf-2.0
-functions_req=(gconf_engine_get_default)
-functions_opt=
-probes_req=(gconf)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/lber 1.3.6+dfsg-2/ac_probes/libs/lber
--- 1.2.17-0.1/ac_probes/libs/lber	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/lber	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-name=lber
-pkgconfig=no
-functions_req=(ber_init)
-functions_opt=
-probes_req=(ldap57)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/ldap 1.3.6+dfsg-2/ac_probes/libs/ldap
--- 1.2.17-0.1/ac_probes/libs/ldap	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/ldap	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-name=ldap
-pkgconfig=no
-functions_req=(ldap_init)
-functions_opt=
-probes_req=(ldap57)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/opendbx 1.3.6+dfsg-2/ac_probes/libs/opendbx
--- 1.2.17-0.1/ac_probes/libs/opendbx	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/opendbx	1970-01-01 00:00:00.000000000 +0000
@@ -1,6 +0,0 @@
-name=opendbx
-pkgconfig=no
-functions_req=(odbx_init)
-functions_opt=
-probes_req=(sql sql57)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/pcre 1.3.6+dfsg-2/ac_probes/libs/pcre
--- 1.2.17-0.1/ac_probes/libs/pcre	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/pcre	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=pcre
-pkgconfig=yes
-pkgconfig_name=libpcre
-functions_req=(pcre_exec)
-functions_opt=
-probes_req=(textfilecontent54 textfilecontent partition)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/procps 1.3.6+dfsg-2/ac_probes/libs/procps
--- 1.2.17-0.1/ac_probes/libs/procps	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/procps	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=procps-ng
-pkgconfig=yes
-pkgconfig_name=libprocps
-functions_req=(dev_to_tty)
-functions_opt=
-probes_req=
-probes_opt=(process58 process)
diff -pruN 1.2.17-0.1/ac_probes/libs/rpm 1.3.6+dfsg-2/ac_probes/libs/rpm
--- 1.2.17-0.1/ac_probes/libs/rpm	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/rpm	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=rpm
-pkgconfig=yes
-pkgconfig_name=rpm
-functions_req=(rpmtsCreate rpmReadConfigFiles)
-functions_opt=(headerFormat headerSprintf rpmFreeCrypto rpmFreeFilesystems)
-probes_req=(rpminfo rpmverify rpmverifyfile rpmverifypackage)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/selinux 1.3.6+dfsg-2/ac_probes/libs/selinux
--- 1.2.17-0.1/ac_probes/libs/selinux	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/selinux	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=selinux
-pkgconfig=yes
-pkgconfig_name=libselinux
-functions_req=(security_get_boolean_names)
-functions_opt=
-probes_req=(process58 selinuxboolean selinuxsecuritycontext)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/xml2 1.3.6+dfsg-2/ac_probes/libs/xml2
--- 1.2.17-0.1/ac_probes/libs/xml2	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/xml2	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=xml2
-pkgconfig=yes
-pkgconfig_name=libxml-2.0
-functions_req=(xmlTextReaderRead)
-functions_opt=
-probes_req=(xmlfilecontent)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/libs/xslt 1.3.6+dfsg-2/ac_probes/libs/xslt
--- 1.2.17-0.1/ac_probes/libs/xslt	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/libs/xslt	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-name=xslt
-pkgconfig=yes
-pkgconfig_name=libxslt
-functions_req=(xsltDocumentFunction)
-functions_opt=
-probes_req=(xmlfilecontent)
-probes_opt=
diff -pruN 1.2.17-0.1/ac_probes/README 1.3.6+dfsg-2/ac_probes/README
--- 1.2.17-0.1/ac_probes/README	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/ac_probes/README	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-run confgen.sh to generate configure.ac from the template
-
diff -pruN 1.2.17-0.1/appveyor.yml 1.3.6+dfsg-2/appveyor.yml
--- 1.2.17-0.1/appveyor.yml	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/appveyor.yml	2021-03-18 06:29:50.000000000 +0000
@@ -0,0 +1,26 @@
+version: master-{build}
+branches:
+  only:
+  - master
+  - maint-1.3
+image: Visual Studio 2017
+configuration: Release
+clone_folder: c:\projects\openscap
+install:
+- cmd: vcpkg install curl libxml2 libxslt bzip2 pcre pthreads zlib getopt-win32 xmlsec
+cache: c:\tools\vcpkg\installed\
+before_build:
+- cmd: >-
+    cd build
+
+    cmake -DENABLE_PYTHON3=FALSE -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
+build:
+  project: c:\projects\openscap\build\openscap.sln
+  verbosity: minimal
+after_build:
+  - cmd: cpack
+artifacts:
+  - path: build\OpenSCAP*.msi
+    name: Windows Installer
+  - path: build\OpenSCAP*.msi.sha512
+    name: SHA512 checksum
diff -pruN 1.2.17-0.1/AUTHORS 1.3.6+dfsg-2/AUTHORS
--- 1.2.17-0.1/AUTHORS	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/AUTHORS	2022-01-19 22:52:15.000000000 +0000
@@ -1,21 +1,32 @@
+Alexander Bergmann <abergmann@suse.com>
+Alexander Scheel <ascheel@redhat.com>
+Axel Nennker <axel@nennker.de>
 Brady Alleman <brady@alleman.me>
 Brandon Dixon <Brandon.Dixon@g2-inc.com>
 Brent Baude <bbaude@redhat.com>
 Brian Kolbay <Brian.Kolbay@g2-inc.com>
 Bruno Ducrot <bruno@poupinou.org>
+Bryan Schneiders <pschneiders@trisept.com>
+Carlos Matos <matosc15@gmail.com>
 Charles Bushong <bushong1@gmail.com>
 Chris Lundquist <rampantdurandal@gmail.com>
 Dan Kopeček <dkopecek@redhat.com>
 David Niemoller <David.Niemoller@g2-inc.com>
+De Huo <De.Huo@windriver.com>
+Dmitry Teselkin <dteselkin@mirantis.com>
+DominiqueDevinci <dominique.blaze@edu.devinci.fr>
 Ed Sealing <esealing@tresys.com>
 Evgeni Golov <egolov@redhat.com>
+Evgeny Kolesnikov <ekolesni@redhat.com>
 Felix Wolfsteller <felix.wolfsteller@greenbone.net>
 Fen Labalme <fen@civicactions.com>
 Francisco Slavin <fslavin@tresys.com>
-Gabe <redhatrises@gmail.com>
+Gabe Alford <redhatrises@gmail.com>
+Gabriel Gaspar Becker <ggasparb@redhat.com>
 Gary Gapinski <gary@garygapinski.com>
 Gautam Satish <gautams@hpe.com>
 Greg Elin <greg@fotonotes.net>
+Hideki Yamane <henrich@debian.org>
 Ilya Okomin <ilya.okomin@oracle.com>
 Jacob Varughese <jacob.varughese@oracle.com>
 Jakub Jelen <jjelen@redhat.com>
@@ -24,49 +35,67 @@ Ján Lieskovský <jlieskov@redhat.com>
 Janzen Brewer <Janzen.Brewer@gtri.gatech.edu>
 Jason Newton <nevion@gmail.com>
 Jean-Louis Charton <jean-louis.charton@oveliane.com>
+Jiri Odehnal <jodehnal@redhat.com>
 John Whipple <john@whipple.org>
 Jonathan Zember <zember@gmail.com>
 Josh Kayse <Joshua.Kayse@gtri.gatech.edu>
 Joshua Adams <jadams@tresys.com>
+Julian Andres Klode <julian.klode@canonical.com>
 Katarina Jankov <kjankov@redhat.com>
 Lenka Horáková <lhorakov@redhat.com>
 Lukáš Kuklínek <lkuklinek@redhat.com>
+Malte Kraus <malte.kraus@suse.com>
+Marco De Donno <mdedonno1337@gmail.com>
 Marcus Meissner <meissner@suse.de>
 Marek Haičman <mhaicman@redhat.com>
 Maroš Barabas <mbarabas@redhat.com>
 Marshall Miller <mmiller@tresys.com>
 Martin Preisler <mpreisle@redhat.com>
 Matěj Týč <matyc@redhat.com>
+matsushima <m-matsushima@bk.jp.nec.com>
+Matthew Burket <m@tthewburket.com>
 Matthew Keeler <mkeeler@tresys.com>
 Matus Marhefka <mmarhefk@redhat.com>
-Michaël Zaoui
+Michaël Zaoui <mzaoui@localhost.localdomain>
 Michal Šrubař <msrubar@redhat.com>
 mildew <mildew@sapropelus.(none)>
+Milan Lysonek <mlysonek@redhat.com>
 Miloslav Trmač <mitr@redhat.com>
 Miroslav Grepl <mgrepl@redhat.com>
 Mooli Tayer <mtayer@redhat.com>
+msfuko <chloeleeq@gmail.com>
+Nitin Ravindran <nravindran@pivotal.io>
 Ondrej Moriš <omoris@redhat.com>
+Panu Matilainen <pmatilai@redhat.com>
 Peter Vrabec <pvrabec@redhat.com>
 Petr Lautrbach <plautrba@redhat.com>
 Pierre Chifflier <chifflier@edenwall.com>
+pinkgothic <pinkgothic@gmail.com>
+Prasanth R <prasanth.r@timesys.com>
 Quey-Liang Kao <s101062801@m101.nthu.edu.tw>
 Radzy Radzykewycz <radzy@windriver.com>
 Raphael Sanchez Prudencio <rsprudencio@redhat.com>
 Reggie Adkins <reggieadkins@gmail.com>
 Richard W.M. Jones <rjones@redhat.com>
 Riley C. Porter <Riley.Porter@g2-inc.com>
+Robert Frohl <rfrohl@suse.com>
 Ryan E Haggerty <rhaggerty@tresys.com>
+Sam S Wang <sam_s_wang@trendmicro.com>
 Shawn Wells <shawn@redhat.com>
 Šimon Lukašík <slukasik@redhat.com>
 Spencer Shimko <sshimko@tresys.com>
 Steve Grubb <sgrubb@redhat.com>
+Timothy Brackett <brackett.tc@gmail.com>
+Tom Seewald <tseewald@gmail.com>
 Tomas Heinrich <theinric@redhat.com>
+T.O. Radzy Radzykewycz <radzy@windriver.com>
 Trey Henefield <trey.henefield@ultra-ats.com>
 V. Vinay <vvinay@hpe.com>
 Vincent Batts <vbatts@hashbangbash.com>
-Watson Sato <wsato@redhat.com>
+Vojtech Polasek <vpolasek@redhat.com>
 Watson Yuuma Sato <wsato@redhat.com>
 Wesley Ceraso Prudencio <wcerasop@redhat.com>
 Xiang Zhai <xiang.zhai@i-soft.com.cn>
 Zbyněk Moravec <zmoravec@redhat.com>
+Yoon Jean Kim <ykim@pivotal.io>
 Андрей Рудаков <melhior@altx-soft.ru>
diff -pruN 1.2.17-0.1/autogen.sh 1.3.6+dfsg-2/autogen.sh
--- 1.2.17-0.1/autogen.sh	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/autogen.sh	1970-01-01 00:00:00.000000000 +0000
@@ -1,4 +0,0 @@
-#!/bin/sh
-mkdir -p m4
-autoreconf -i -s
-
diff -pruN 1.2.17-0.1/cmake/Copyright.txt 1.3.6+dfsg-2/cmake/Copyright.txt
--- 1.2.17-0.1/cmake/Copyright.txt	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/Copyright.txt	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,57 @@
+CMake - Cross Platform Makefile Generator
+Copyright 2000-2016 Kitware, Inc.
+Copyright 2000-2011 Insight Software Consortium
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright
+  notice, this list of conditions and the following disclaimer in the
+  documentation and/or other materials provided with the distribution.
+
+* Neither the names of Kitware, Inc., the Insight Software Consortium,
+  nor the names of their contributors may be used to endorse or promote
+  products derived from this software without specific prior written
+  permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+------------------------------------------------------------------------------
+
+The above copyright and license notice applies to distributions of
+CMake in source and binary form.  Some source files contain additional
+notices of original copyright by their contributors; see each source
+for details.  Third-party software packages supplied with CMake under
+compatible licenses provide their own copyright notices documented in
+corresponding subdirectories.
+
+------------------------------------------------------------------------------
+
+CMake was initially developed by Kitware with the following sponsorship:
+
+ * National Library of Medicine at the National Institutes of Health
+   as part of the Insight Segmentation and Registration Toolkit (ITK).
+
+ * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel
+   Visualization Initiative.
+
+ * National Alliance for Medical Image Computing (NAMIC) is funded by the
+   National Institutes of Health through the NIH Roadmap for Medical Research,
+   Grant U54 EB005149.
+
+ * Kitware, Inc.
diff -pruN 1.2.17-0.1/cmake/FindACL.cmake 1.3.6+dfsg-2/cmake/FindACL.cmake
--- 1.2.17-0.1/cmake/FindACL.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindACL.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find ACL
+# Once done, this will define
+#
+#  ACL_FOUND - system has ACL
+#  ACL_INCLUDE_DIRS - the ACL include directories
+#  ACL_LIBRARIES - link these to use ACL
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(ACL_PKGCONF libacl)
+
+# Include dir
+find_path(ACL_INCLUDE_DIR
+	NAMES "acl/libacl.h" "sys/libacl.h"
+	PATHS ${ACL_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(ACL_LIBRARY
+	NAMES acl
+	PATHS ${ACL_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(ACL_PROCESS_INCLUDES ACL_INCLUDE_DIR)
+set(ACL_PROCESS_LIBS ACL_LIBRARY)
+libfind_process(ACL)
diff -pruN 1.2.17-0.1/cmake/FindAptPkg.cmake 1.3.6+dfsg-2/cmake/FindAptPkg.cmake
--- 1.2.17-0.1/cmake/FindAptPkg.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindAptPkg.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,30 @@
+# - Try to find the APTPKG development libraries
+# Once done this will define
+#
+# APTPKG_FOUND - system has libapt-pkg
+# APTPKG_INCLUDE_DIR - APTPKG include directory
+# APTPKG_LIBRARIES - APTPKG (if found) library
+
+if(APTPKG_INCLUDE_DIR AND APTPKG_LIBRARIES)
+    # Already in cache, be silent
+    set(APTPKG_FIND_QUIETLY TRUE)
+endif()
+
+find_path(APTPKG_INCLUDE_DIR apt-pkg/init.h)
+find_library(APTPKG_LIBRARIES NAMES apt-pkg)
+
+if(APTPKG_INCLUDE_DIR AND APTPKG_LIBRARIES)
+   set(APTPKG_FOUND TRUE)
+endif()
+
+if(APTPKG_FOUND)
+   if(NOT APTPKG_FIND_QUIETLY)
+      message(STATUS "Found apt-pkg: ${APTPKG_LIBRARIES}")
+   endif()
+else()
+   if(AptPkg_FIND_REQUIRED)
+       message(FATAL_ERROR "Could NOT find AptPkg")
+   endif()
+endif()
+
+mark_as_advanced(APTPKG_INCLUDE_DIR APTPKG_LIBRARIES)
diff -pruN 1.2.17-0.1/cmake/FindBlkid.cmake 1.3.6+dfsg-2/cmake/FindBlkid.cmake
--- 1.2.17-0.1/cmake/FindBlkid.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindBlkid.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find BLKID
+# Once done, this will define
+#
+#  BLKID_FOUND - system has BLKID
+#  BLKID_INCLUDE_DIRS - the BLKID include directories
+#  BLKID_LIBRARIES - link these to use BLKID
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(BLKID_PKGCONF popt)
+
+# Include dir
+find_path(BLKID_INCLUDE_DIR
+	NAMES blkid/blkid.h
+	PATHS ${BLKID_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(BLKID_LIBRARY
+	NAMES blkid
+	PATHS ${BLKID_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(BLKID_PROCESS_INCLUDES BLKID_INCLUDE_DIR)
+set(BLKID_PROCESS_LIBS BLKID_LIBRARY)
+libfind_process(BLKID)
diff -pruN 1.2.17-0.1/cmake/FindCap.cmake 1.3.6+dfsg-2/cmake/FindCap.cmake
--- 1.2.17-0.1/cmake/FindCap.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindCap.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,30 @@
+# - Try to find the Cap development libraries
+# Once done this will define
+#
+# CAP_FOUND - system has libcap-devel
+# CAP_INCLUDE_DIR - cap include directory
+# CAP_LIBRARIES - cap (if found) library
+
+if(CAP_INCLUDE_DIR AND CAP_LIBRARIES)
+    # Already in cache, be silent
+    set(CAP_FIND_QUIETLY TRUE)
+endif()
+
+find_path(CAP_INCLUDE_DIR sys/capability.h)
+find_library(CAP_LIBRARIES NAMES cap)
+
+if(CAP_INCLUDE_DIR AND CAP_LIBRARIES)
+   set(CAP_FOUND TRUE)
+endif()
+
+if(CAP_FOUND)
+   if(NOT CAP_FIND_QUIETLY)
+      message(STATUS "Found Cap: ${CAP_LIBRARIES}")
+   endif()
+else()
+   if(Cap_FIND_REQUIRED)
+       message(FATAL_ERROR "Could NOT find Cap")
+   endif()
+endif()
+
+mark_as_advanced(CAP_INCLUDE_DIR CAP_LIBRARIES)
diff -pruN 1.2.17-0.1/cmake/FindDBUS.cmake 1.3.6+dfsg-2/cmake/FindDBUS.cmake
--- 1.2.17-0.1/cmake/FindDBUS.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindDBUS.cmake	2021-04-20 06:01:05.000000000 +0000
@@ -0,0 +1,61 @@
+# - Try to find DBus
+# Once done, this will define
+#
+#  DBUS_FOUND - system has DBus
+#  DBUS_INCLUDE_DIRS - the DBus include directories
+#  DBUS_LIBRARIES - link these to use DBus
+#
+# Copyright (C) 2012 Raphael Kubo da Costa <rakuco@webkit.org>
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1.  Redistributions of source code must retain the above copyright
+#     notice, this list of conditions and the following disclaimer.
+# 2.  Redistributions in binary form must reproduce the above copyright
+#     notice, this list of conditions and the following disclaimer in the
+#     documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND ITS CONTRIBUTORS ``AS
+# IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR ITS
+# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+FIND_PACKAGE(PkgConfig)
+PKG_CHECK_MODULES(PC_DBUS QUIET dbus-1)
+
+FIND_LIBRARY(DBUS_LIBRARIES
+    NAMES dbus-1
+    HINTS ${PC_DBUS_LIBDIR}
+          ${PC_DBUS_LIBRARY_DIRS}
+)
+
+FIND_PATH(DBUS_INCLUDE_DIR
+    NAMES dbus/dbus.h
+    HINTS ${PC_DBUS_INCLUDEDIR}
+          ${PC_DBUS_INCLUDE_DIRS}
+)
+
+GET_FILENAME_COMPONENT(_DBUS_LIBRARY_DIR ${DBUS_LIBRARIES} PATH)
+FIND_PATH(DBUS_ARCH_INCLUDE_DIR
+    NAMES dbus/dbus-arch-deps.h
+    HINTS ${PC_DBUS_INCLUDEDIR}
+          ${PC_DBUS_INCLUDE_DIRS}
+          ${_DBUS_LIBRARY_DIR}
+          ${DBUS_INCLUDE_DIR}
+    PATH_SUFFIXES include
+)
+
+SET(DBUS_INCLUDE_DIRS ${DBUS_INCLUDE_DIR} ${DBUS_ARCH_INCLUDE_DIR})
+
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(DBUS REQUIRED_VARS DBUS_INCLUDE_DIRS DBUS_LIBRARIES)
+
+mark_as_advanced(DBUS_ARCH_INCLUDE_DIR DBUS_INCLUDE_DIRS DBUS_INCLUDE_DIR DBUS_LIBRARIES)
diff -pruN 1.2.17-0.1/cmake/FindGConf.cmake 1.3.6+dfsg-2/cmake/FindGConf.cmake
--- 1.2.17-0.1/cmake/FindGConf.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindGConf.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,37 @@
+# - Try to find GConf
+# Once done, this will define
+#
+# GCONF_FOUND - system has GCONF
+# GCONF_INCLUDE_DIRS - the GCONF include directories
+# GCONF_LIBRARIES - link these to use GCONF
+
+include(LibFindMacros)
+
+# Dependencies
+# The current package name (GCONF) is included as first paramater in order to foward the REQUIRED or QUIET paramaters
+# to the find_package for the dependent library (ie Threads)
+libfind_package(GCONF GLib)
+libfind_package(GCONF GObject)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(GCONF_PKGCONF gconf-2.0)
+
+# Include dir
+find_path(GCONF_INCLUDE_DIR
+  NAMES gconf/gconf.h
+  HINTS ${GCONF_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(GCONF_LIBRARY
+  NAMES gconf-2
+  HINTS ${GCONF_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(GCONF_PROCESS_INCLUDES GCONF_INCLUDE_DIR GLib_INCLUDE_DIRS GObject_INCLUDE_DIRS)
+set(GCONF_PROCESS_LIBS GCONF_LIBRARY GLib_LIBRARIES GObject_LIBRARIES)
+libfind_process(GCONF)
+
+mark_as_advanced(GLib_DIR GObject_DIR)
diff -pruN 1.2.17-0.1/cmake/FindGCrypt.cmake 1.3.6+dfsg-2/cmake/FindGCrypt.cmake
--- 1.2.17-0.1/cmake/FindGCrypt.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindGCrypt.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,70 @@
+# - Try to find GCrypt
+# Once done this will define
+#
+#  GCRYPT_FOUND - system has GCrypt
+#  GCRYPT_INCLUDE_DIRS - the GCrypt include directory
+#  GCRYPT_LIBRARIES - Link these to use GCrypt
+#  GCRYPT_DEFINITIONS - Compiler switches required for using GCrypt
+#
+#=============================================================================
+#  Copyright (c) 2009-2011 Andreas Schneider <asn@cryptomilk.org>
+#
+#  Distributed under the OSI-approved BSD License (the "License");
+#  see accompanying file Copyright.txt for details.
+#
+#  This software is distributed WITHOUT ANY WARRANTY; without even the
+#  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+#  See the License for more information.
+#=============================================================================
+#
+
+if (GCRYPT_LIBRARIES AND GCRYPT_INCLUDE_DIRS)
+    # in cache already
+    # set(GCRYPT_FOUND TRUE)
+else (GCRYPT_LIBRARIES AND GCRYPT_INCLUDE_DIRS)
+
+    set(_GCRYPT_ROOT_PATHS
+        "$ENV{PROGRAMFILES}/libgcrypt"
+    )
+
+    find_path(GCRYPT_ROOT_DIR
+        NAMES
+            include/gcrypt.h
+        PATHS
+            ${_GCRYPT_ROOT_PATHS}
+    )
+    mark_as_advanced(ZLIB_ROOT_DIR)
+
+    find_path(GCRYPT_INCLUDE_DIR
+        NAMES
+            gcrypt.h
+        PATHS
+            /usr/local/include
+            /opt/local/include
+            /sw/include
+            /usr/lib/sfw/include
+            ${GCRYPT_ROOT_DIR}/include
+    )
+    set(GCRYPT_INCLUDE_DIRS ${GCRYPT_INCLUDE_DIR})
+
+    find_library(GCRYPT_LIBRARY
+        NAMES
+            gcrypt
+            gcrypt11
+            libgcrypt-11
+        PATHS
+            /opt/local/lib
+            /sw/lib
+            /usr/sfw/lib/64
+            /usr/sfw/lib
+            ${GCRYPT_ROOT_DIR}/lib
+    )
+    set(GCRYPT_LIBRARIES ${GCRYPT_LIBRARY})
+
+    include(FindPackageHandleStandardArgs)
+    find_package_handle_standard_args(GCrypt DEFAULT_MSG GCRYPT_LIBRARIES GCRYPT_INCLUDE_DIRS)
+
+    # show the GCRYPT_INCLUDE_DIRS and GCRYPT_LIBRARIES variables only in the advanced view
+    mark_as_advanced(GCRYPT_INCLUDE_DIRS GCRYPT_LIBRARIES GCRYPT_INCLUDE_DIR GCRYPT_LIBRARY GCRYPT_ROOT_DIR)
+
+endif (GCRYPT_LIBRARIES AND GCRYPT_INCLUDE_DIRS)
diff -pruN 1.2.17-0.1/cmake/FindGLib.cmake 1.3.6+dfsg-2/cmake/FindGLib.cmake
--- 1.2.17-0.1/cmake/FindGLib.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindGLib.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,38 @@
+# - Try to find 
+# Once done, this will define
+#
+# GLib_FOUND - system has GLib
+# GLib_INCLUDE_DIRS - the GLib include directories
+# GLib_LIBRARIES - link these to use GLib
+
+include(LibFindMacros)
+
+# Dependencies
+# The current package name (GLib) is included as first paramater in order to foward the REQUIRED or QUIET paramaters
+# to the find_package for the dependent library (ie Threads)
+#libfind_package(GLib)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(GLib_PKGCONF glib-2.0)
+
+# Include dir
+find_path(GLib_INCLUDE_DIR
+  NAMES glib.h
+  HINTS ${GLib_PKGCONF_INCLUDE_DIRS}
+)
+# glibconfig.h is located in a different directory, so include it here
+find_path(GLibconfig_INCLUDE_DIR
+  NAMES glibconfig.h
+  HINTS ${GLib_PKGCONF_INCLUDE_DIRS})
+
+# Finally the library itself
+find_library(GLib_LIBRARY
+  NAMES glib-2.0
+  HINTS ${GLib_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(GLib_PROCESS_INCLUDES GLib_INCLUDE_DIR GLibconfig_INCLUDE_DIR)
+set(GLib_PROCESS_LIBS GLib_LIBRARY)
+libfind_process(GLib)
diff -pruN 1.2.17-0.1/cmake/FindGObject.cmake 1.3.6+dfsg-2/cmake/FindGObject.cmake
--- 1.2.17-0.1/cmake/FindGObject.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindGObject.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,34 @@
+# - Try to find GObject
+# Once done, this will define
+#
+# GObject_FOUND - system has GObject
+# GObject_INCLUDE_DIRS - the GObject include directories
+# GObject_LIBRARIES - link these to use GObject
+
+include(LibFindMacros)
+
+# Dependencies
+# The current package name (GObject) is included as first paramater in order to foward the REQUIRED or QUIET paramaters
+# to the find_package for the dependent library (ie Threads)
+#libfind_package(GObject)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(GObject_PKGCONF gobject-2.0)
+
+# Include dir
+find_path(GObject_INCLUDE_DIR
+  NAMES gobject/gobject.h
+  HINTS ${GObject_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(GObject_LIBRARY
+  NAMES gobject-2.0
+  HINTS ${GObject_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(GObject_PROCESS_INCLUDES GObject_INCLUDE_DIR )
+set(GObject_PROCESS_LIBS GObject_LIBRARY)
+libfind_process(GObject)
diff -pruN 1.2.17-0.1/cmake/FindLdap.cmake 1.3.6+dfsg-2/cmake/FindLdap.cmake
--- 1.2.17-0.1/cmake/FindLdap.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindLdap.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,35 @@
+# - Try to find the LDAP client libraries
+# Once done this will define
+#
+#  LDAP_FOUND - system has libldap
+#  LDAP_INCLUDE_DIRS - the ldap include directory
+#  LDAP_LIBRARIES - libldap + liblber (if found) library
+#  LBER_LIBRARIES - liblber library
+
+if(LDAP_INCLUDE_DIRS AND LDAP_LIBRARIES)
+    # Already in cache, be silent
+    set(Ldap_FIND_QUIETLY TRUE)
+endif()
+
+FIND_PATH(LDAP_INCLUDE_DIRS ldap.h)
+FIND_LIBRARY(LDAP_LIBRARIES NAMES ldap)
+FIND_LIBRARY(LBER_LIBRARIES NAMES lber)
+
+if(LDAP_INCLUDE_DIRS AND LDAP_LIBRARIES)
+   set(LDAP_FOUND TRUE)
+   if(LBER_LIBRARIES)
+     set(LDAP_LIBRARIES ${LDAP_LIBRARIES} ${LBER_LIBRARIES})
+   endif()
+endif()
+
+if(LDAP_FOUND)
+   if(NOT Ldap_FIND_QUIETLY)
+      message(STATUS "Found ldap: ${LDAP_LIBRARIES}")
+   endif()
+else()
+   if(Ldap_FIND_REQUIRED)
+        message(FATAL_ERROR "Could NOT find ldap")
+   endif()
+endif()
+
+MARK_AS_ADVANCED(LDAP_INCLUDE_DIRS LDAP_LIBRARIES LBER_LIBRARIES)
diff -pruN 1.2.17-0.1/cmake/FindLibyaml.cmake 1.3.6+dfsg-2/cmake/FindLibyaml.cmake
--- 1.2.17-0.1/cmake/FindLibyaml.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindLibyaml.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find libyaml
+# Once done, this will define
+#
+#  LIBYAML_FOUND - system has libyaml
+#  LIBYAML_INCLUDE_DIRS - the libyaml include directories
+#  LIBYAML_LIBRARIES - link these to use libyaml
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(LIBYAML_PKGCONF yaml-0.1)
+
+# Include dir
+find_path(LIBYAML_INCLUDE_DIR
+	NAMES yaml.h
+	PATHS ${LIBYAML_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(LIBYAML_LIBRARY
+	NAMES libyaml.so
+	PATHS ${LIBYAML_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(LIBYAML_PROCESS_INCLUDES LIBYAML_INCLUDE_DIR)
+set(LIBYAML_PROCESS_LIBS LIBYAML_LIBRARY)
+libfind_process(LIBYAML)
diff -pruN 1.2.17-0.1/cmake/FindNSS.cmake 1.3.6+dfsg-2/cmake/FindNSS.cmake
--- 1.2.17-0.1/cmake/FindNSS.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindNSS.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,57 @@
+# - Try to find the NSS library
+# Once done this will define
+#
+#  NSS_FOUND - system has the NSS library
+#  NSS_INCLUDE_DIRS - Include paths needed
+#  NSS_LIBRARY_DIRS - Linker paths needed
+#  NSS_LIBRARIES - Libraries needed
+
+# Copyright (c) 2010, Ambroz Bizjak, <ambrop7@gmail.com>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+include(FindLibraryWithDebug)
+
+if (NSS_LIBRARIES)
+   set(NSS_FIND_QUIETLY TRUE)
+endif ()
+
+set(NSS_FOUND FALSE)
+
+if (WIN32)
+    find_path(NSS_FIND_INCLUDE_DIR nss.h)
+
+    FIND_LIBRARY_WITH_DEBUG(NSS_FIND_LIBRARIES_SSL WIN32_DEBUG_POSTFIX d NAMES ssl3)
+    FIND_LIBRARY_WITH_DEBUG(NSS_FIND_LIBRARIES_SMIME WIN32_DEBUG_POSTFIX d NAMES smime3)
+    FIND_LIBRARY_WITH_DEBUG(NSS_FIND_LIBRARIES_NSS WIN32_DEBUG_POSTFIX d NAMES nss3)
+
+    if (NSS_FIND_INCLUDE_DIR AND NSS_FIND_LIBRARIES_SSL AND NSS_FIND_LIBRARIES_SMIME AND NSS_FIND_LIBRARIES_NSS)
+        set(NSS_FOUND TRUE)
+        set(NSS_INCLUDE_DIRS "${NSS_FIND_INCLUDE_DIR}" CACHE STRING "NSS include dirs")
+        set(NSS_LIBRARY_DIRS "" CACHE STRING "NSS library dirs")
+        set(NSS_LIBRARIES "${NSS_FIND_LIBRARIES_SSL};${NSS_FIND_LIBRARIES_SMIME};${NSS_FIND_LIBRARIES_NSS}" CACHE STRING "NSS libraries")
+    endif ()
+else ()
+    find_package(PkgConfig REQUIRED)
+    pkg_check_modules(NSS_PC nss)
+
+    if (NSS_PC_FOUND)
+        set(NSS_FOUND TRUE)
+        set(NSS_INCLUDE_DIRS "${NSS_PC_INCLUDE_DIRS}" CACHE STRING "NSS include dirs")
+        set(NSS_LIBRARY_DIRS "${NSS_PC_LIBRARY_DIRS}" CACHE STRING "NSS library dirs")
+        set(NSS_LIBRARIES "${NSS_PC_LIBRARIES}" CACHE STRING "NSS libraries")
+    endif ()
+endif ()
+
+if (NSS_FOUND)
+    if (NOT NSS_FIND_QUIETLY)
+	message(STATUS "Found NSS: ${NSS_INCLUDE_DIRS} ${NSS_LIBRARY_DIRS} ${NSS_LIBRARIES}")
+    endif ()
+else ()
+    if (NSS_FIND_REQUIRED)
+        message(FATAL_ERROR "Could NOT find NSS")
+    endif ()
+endif ()
+
+mark_as_advanced(NSS_INCLUDE_DIRS NSS_LIBRARY_DIRS NSS_LIBRARIES)
diff -pruN 1.2.17-0.1/cmake/FindOpenDbx.cmake 1.3.6+dfsg-2/cmake/FindOpenDbx.cmake
--- 1.2.17-0.1/cmake/FindOpenDbx.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindOpenDbx.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find the OpenDbx development libraries
+# Once done this will define
+#
+#  OPENDBX_FOUND - system has opendbx-devel
+#  OPENDBX_INCLUDE_DIR - opendbx include directory
+#  OPENDBX_LIBRARIES - opendbx (if found) library
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(OPENDBX_PKGCONF opendbx)
+
+# Include dir
+find_path(OPENDBX_INCLUDE_DIR
+	NAMES opendbx/api.h
+	PATHS ${OPENDBX_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(OPENDBX_LIBRARY
+	NAMES opendbx
+	PATHS ${OPENDBX_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(OPENDBX_PROCESS_INCLUDES OPENDBX_INCLUDE_DIR)
+set(OPENDBX_PROCESS_LIBS OPENDBX_LIBRARY)
+libfind_process(OPENDBX)
diff -pruN 1.2.17-0.1/cmake/FindPCRE.cmake 1.3.6+dfsg-2/cmake/FindPCRE.cmake
--- 1.2.17-0.1/cmake/FindPCRE.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindPCRE.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,37 @@
+# Copyright (C) 2007-2009 LuaDist.
+# Created by Peter Kapec <kapecp@gmail.com>
+# Redistribution and use of this file is allowed according to the terms of the MIT license.
+# For details see the COPYRIGHT file distributed with LuaDist.
+#	Note:
+#		Searching headers and libraries is very simple and is NOT as powerful as scripts
+#		distributed with CMake, because LuaDist defines directories to search for.
+#		Everyone is encouraged to contact the author with improvements. Maybe this file
+#		becomes part of CMake distribution sometimes.
+
+# - Find pcre
+# Find the native PCRE headers and libraries.
+#
+# PCRE_INCLUDE_DIRS	- where to find pcre.h, etc.
+# PCRE_LIBRARIES	- List of libraries when using pcre.
+# PCRE_FOUND	- True if pcre found.
+
+# Look for the header file.
+FIND_PATH(PCRE_INCLUDE_DIR NAMES pcre.h)
+
+# Look for the library.
+FIND_LIBRARY(PCRE_LIBRARY NAMES pcre)
+
+# Handle the QUIETLY and REQUIRED arguments and set PCRE_FOUND to TRUE if all listed variables are TRUE.
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(PCRE DEFAULT_MSG PCRE_LIBRARY PCRE_INCLUDE_DIR)
+
+# Copy the results to the output variables.
+IF(PCRE_FOUND)
+	SET(PCRE_LIBRARIES ${PCRE_LIBRARY})
+	SET(PCRE_INCLUDE_DIRS ${PCRE_INCLUDE_DIR})
+ELSE(PCRE_FOUND)
+	SET(PCRE_LIBRARIES)
+	SET(PCRE_INCLUDE_DIRS)
+ENDIF(PCRE_FOUND)
+
+MARK_AS_ADVANCED(PCRE_INCLUDE_DIRS PCRE_LIBRARIES PCRE_INCLUDE_DIR PCRE_LIBRARY)
diff -pruN 1.2.17-0.1/cmake/FindPopt.cmake 1.3.6+dfsg-2/cmake/FindPopt.cmake
--- 1.2.17-0.1/cmake/FindPopt.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindPopt.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find POPT
+# Once done, this will define
+#
+#  POPT_FOUND - system has POPT
+#  POPT_INCLUDE_DIRS - the POPT include directories
+#  POPT_LIBRARIES - link these to use POPT
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(POPT_PKGCONF popt)
+
+# Include dir
+find_path(POPT_INCLUDE_DIR
+	NAMES popt.h
+	PATHS ${POPT_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(POPT_LIBRARY
+	NAMES popt
+	PATHS ${POPT_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(POPT_PROCESS_INCLUDES POPT_INCLUDE_DIR)
+set(POPT_PROCESS_LIBS POPT_LIBRARY)
+libfind_process(POPT)
diff -pruN 1.2.17-0.1/cmake/FindProcps.cmake 1.3.6+dfsg-2/cmake/FindProcps.cmake
--- 1.2.17-0.1/cmake/FindProcps.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindProcps.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find PROCPS
+# Once done, this will define
+#
+#  PROCPS_FOUND - system has PROCPS
+#  PROCPS_INCLUDE_DIRS - the PROCPS include directories
+#  PROCPS_LIBRARIES - link these to use PROCPS
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(PROCPS_PKGCONF libprocps)
+
+# Include dir
+find_path(PROCPS_INCLUDE_DIR
+	NAMES proc/procps.h
+	PATHS ${PROCPS_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(PROCPS_LIBRARY
+	NAMES procps
+	PATHS ${PROCPS_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(PROCPS_PROCESS_INCLUDES PROCPS_INCLUDE_DIR)
+set(PROCPS_PROCESS_LIBS PROCPS_LIBRARY)
+libfind_process(PROCPS)
diff -pruN 1.2.17-0.1/cmake/FindRPM.cmake 1.3.6+dfsg-2/cmake/FindRPM.cmake
--- 1.2.17-0.1/cmake/FindRPM.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindRPM.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,39 @@
+# - Try to find RPM
+# Once done, this will define
+#
+#  RPM_FOUND - system has RPM
+#  RPM_INCLUDE_DIRS - the RPM include directories
+#  RPM_LIBRARIES - link these to use RPM
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(RPM_PKGCONF rpm)
+
+# Include dir
+find_path(RPM_INCLUDE_DIR
+	NAMES rpm
+	PATHS ${RPM_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(RPM_LIBRARY
+	NAMES rpm
+	PATHS ${RPM_PKGCONF_LIBRARY_DIRS}
+)
+find_library(RPMIO_LIBRARY
+	NAMES rpmio
+	PATHS ${RPM_PKGCONF_LIBRARY_DIRS}
+)
+
+set(RPM_VERSION ${RPM_PKGCONF_VERSION})
+if(RPM_VERSION)
+	string(COMPARE GREATER "4.6" ${RPM_VERSION} RPM46_FOUND)
+	string(COMPARE GREATER "4.7" ${RPM_VERSION} RPM47_FOUND)
+endif()
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(RPM_PROCESS_INCLUDES RPM_INCLUDE_DIR)
+set(RPM_PROCESS_LIBS RPM_LIBRARY RPMIO_LIBRARY)
+libfind_process(RPM)
diff -pruN 1.2.17-0.1/cmake/FindSELinux.cmake 1.3.6+dfsg-2/cmake/FindSELinux.cmake
--- 1.2.17-0.1/cmake/FindSELinux.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindSELinux.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,29 @@
+# - Try to find SELinux
+# Once done, this will define
+#
+#  SELINUX_FOUND - system has SELinux
+#  SELINUX_INCLUDE_DIRS - the SELinux include directories
+#  SELINUX_LIBRARIES - link these to use SELinux
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(SELINUX_PKGCONF libselinux)
+
+# Include dir
+find_path(SELINUX_INCLUDE_DIR
+	NAMES selinux/selinux.h
+	PATHS ${SELINUX_PKGCONF_INCLUDE_DIRS}
+)
+
+# Finally the library itself
+find_library(SELINUX_LIBRARY
+	NAMES selinux
+	PATHS ${SELINUX_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(SELINUX_PROCESS_INCLUDES SELINUX_INCLUDE_DIR)
+set(SELINUX_PROCESS_LIBS SELINUX_LIBRARY)
+libfind_process(SELINUX)
diff -pruN 1.2.17-0.1/cmake/FindSystemd.cmake 1.3.6+dfsg-2/cmake/FindSystemd.cmake
--- 1.2.17-0.1/cmake/FindSystemd.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindSystemd.cmake	2022-01-19 14:38:33.000000000 +0000
@@ -0,0 +1,25 @@
+# https://raw.githubusercontent.com/ximion/limba/master/data/cmake/systemdservice.cmake
+#
+# Find systemd service dir
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(SYSTEMD systemd)
+
+if(SYSTEMD_FOUND AND "${SYSTEMD_UNITDIR}" STREQUAL "")
+  execute_process(
+    COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=systemdsystemunitdir systemd
+    OUTPUT_VARIABLE SYSTEMD_UNITDIR
+  )
+  string(REGEX REPLACE "[ \t\n]+" "" SYSTEMD_UNITDIR "${SYSTEMD_UNITDIR}")
+elseif(NOT SYSTEMD_FOUND AND SYSTEMD_UNITDIR)
+  message(FATAL_ERROR "Variable SYSTEMD_UNITDIR is defined, but we can't find systemd using pkg-config")
+endif()
+
+if(SYSTEMD_FOUND)
+  set(WITH_SYSTEMD "ON")
+  message(STATUS "Found systemd, services install dir: ${SYSTEMD_UNITDIR}")
+else()
+  set(WITH_SYSTEMD "OFF")
+endif(SYSTEMD_FOUND)
diff -pruN 1.2.17-0.1/cmake/FindXMLSEC.cmake 1.3.6+dfsg-2/cmake/FindXMLSEC.cmake
--- 1.2.17-0.1/cmake/FindXMLSEC.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/FindXMLSEC.cmake	2021-03-18 06:29:50.000000000 +0000
@@ -0,0 +1,42 @@
+# - Try to find XMLSEC
+# Once done, this will define
+#
+#  XMLSEC_FOUND - system has XMLSEC
+#  XMLSEC_INCLUDE_DIRS - the XMLSEC include directories
+#  XMLSEC_LIBRARIES - link these to use XMLSEC
+#  XMLSEC_DEFINITIONS - definitions to be added to compiler definitions
+
+include(LibFindMacros)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(XMLSEC_PKGCONF xmlsec1)
+
+# Include dir
+find_path(XMLSEC_INCLUDE_DIR
+  NAMES xmlsec/xmlsec.h
+  PATHS ${XMLSEC_PKGCONF_INCLUDE_DIRS}
+  PATH_SUFFIXES xmlsec1
+)
+
+# Finally the library itself
+find_library(XMLSEC_LIBRARY
+  NAMES libxmlsec1.so libxmlsec1 libxmlsec xmlsec1 xmlsec
+  PATHS ${XMLSEC_PKGCONF_LIBRARY_DIRS}
+)
+
+# Use pkg-config to get hints about paths
+libfind_pkg_check_modules(XMLSEC_OPENSSL_PKGCONF xmlsec1-openssl)
+
+# Finally the library itself
+find_library(XMLSEC_OPENSSL_LIBRARY
+  NAMES libxmlsec1-openssl.so libxmlsec-openssl xmlsec1-openssl xmlsec-openssl
+  PATHS ${XMLSEC_OPENSSL_PKGCONF_LIBRARY_DIRS}
+)
+
+# Set the include dir variables and the libraries and let libfind_process do the rest.
+# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
+set(XMLSEC_PROCESS_INCLUDES XMLSEC_INCLUDE_DIR)
+set(XMLSEC_PROCESS_LIBS XMLSEC_LIBRARY XMLSEC_OPENSSL_LIBRARY)
+libfind_process(XMLSEC)
+
+set(XMLSEC_DEFINITIONS ${XMLSEC_OPENSSL_PKGCONF_CFLAGS_OTHER})
diff -pruN 1.2.17-0.1/cmake/LibFindMacros.cmake 1.3.6+dfsg-2/cmake/LibFindMacros.cmake
--- 1.2.17-0.1/cmake/LibFindMacros.cmake	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cmake/LibFindMacros.cmake	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,99 @@
+# Works the same as find_package, but forwards the "REQUIRED" and "QUIET" arguments
+# used for the current package. For this to work, the first parameter must be the
+# prefix of the current package, then the prefix of the new package etc, which are
+# passed to find_package.
+macro (libfind_package PREFIX)
+  set (LIBFIND_PACKAGE_ARGS ${ARGN})
+  if (${PREFIX}_FIND_QUIETLY)
+    set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} QUIET)
+  endif (${PREFIX}_FIND_QUIETLY)
+  if (${PREFIX}_FIND_REQUIRED)
+    set (LIBFIND_PACKAGE_ARGS ${LIBFIND_PACKAGE_ARGS} REQUIRED)
+  endif (${PREFIX}_FIND_REQUIRED)
+  find_package(${LIBFIND_PACKAGE_ARGS})
+endmacro (libfind_package)
+
+# CMake developers made the UsePkgConfig system deprecated in the same release (2.6)
+# where they added pkg_check_modules. Consequently I need to support both in my scripts
+# to avoid those deprecated warnings. Here's a helper that does just that.
+# Works identically to pkg_check_modules, except that no checks are needed prior to use.
+macro (libfind_pkg_check_modules PREFIX PKGNAME)
+  if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
+    include(UsePkgConfig)
+    pkgconfig(${PKGNAME} ${PREFIX}_INCLUDE_DIRS ${PREFIX}_LIBRARY_DIRS ${PREFIX}_LDFLAGS ${PREFIX}_CFLAGS)
+  else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
+    find_package(PkgConfig)
+    if (PKG_CONFIG_FOUND)
+      pkg_check_modules(${PREFIX} ${PKGNAME})
+    endif (PKG_CONFIG_FOUND)
+  endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
+endmacro (libfind_pkg_check_modules)
+
+# Do the final processing once the paths have been detected.
+# If include dirs are needed, ${PREFIX}_PROCESS_INCLUDES should be set to contain
+# all the variables, each of which contain one include directory.
+# Ditto for ${PREFIX}_PROCESS_LIBS and library files.
+# Will set ${PREFIX}_FOUND, ${PREFIX}_INCLUDE_DIRS and ${PREFIX}_LIBRARIES.
+# Also handles errors in case library detection was required, etc.
+macro (libfind_process PREFIX)
+  # Skip processing if already processed during this run
+  if (NOT ${PREFIX}_FOUND)
+    # Start with the assumption that the library was found
+    set (${PREFIX}_FOUND TRUE)
+
+    # Process all includes and set _FOUND to false if any are missing
+    foreach (i ${${PREFIX}_PROCESS_INCLUDES})
+      if (${i})
+        set (${PREFIX}_INCLUDE_DIRS ${${PREFIX}_INCLUDE_DIRS} ${${i}})
+        mark_as_advanced(${i})
+      else (${i})
+        set (${PREFIX}_FOUND FALSE)
+      endif (${i})
+    endforeach (i)
+
+    # Process all libraries and set _FOUND to false if any are missing
+    foreach (i ${${PREFIX}_PROCESS_LIBS})
+      if (${i})
+        set (${PREFIX}_LIBRARIES ${${PREFIX}_LIBRARIES} ${${i}})
+        mark_as_advanced(${i})
+      else (${i})
+        set (${PREFIX}_FOUND FALSE)
+      endif (${i})
+    endforeach (i)
+
+    # Print message and/or exit on fatal error
+    if (${PREFIX}_FOUND)
+      if (NOT ${PREFIX}_FIND_QUIETLY)
+        message (STATUS "Found ${PREFIX} ${${PREFIX}_VERSION}")
+      endif (NOT ${PREFIX}_FIND_QUIETLY)
+    else (${PREFIX}_FOUND)
+      if (${PREFIX}_FIND_REQUIRED)
+        foreach (i ${${PREFIX}_PROCESS_INCLUDES} ${${PREFIX}_PROCESS_LIBS})
+          message("${i}=${${i}}")
+        endforeach (i)
+        message (FATAL_ERROR "Required library ${PREFIX} NOT FOUND.\nInstall the library (dev version) and try again. If the library is already installed, use ccmake to set the missing variables manually.")
+      endif (${PREFIX}_FIND_REQUIRED)
+    endif (${PREFIX}_FOUND)
+  endif (NOT ${PREFIX}_FOUND)
+endmacro (libfind_process)
+
+macro(libfind_library PREFIX basename)
+  set(TMP "")
+  if(MSVC80)
+    set(TMP -vc80)
+  endif(MSVC80)
+  if(MSVC90)
+    set(TMP -vc90)
+  endif(MSVC90)
+  set(${PREFIX}_LIBNAMES ${basename}${TMP})
+  if(${ARGC} GREATER 2)
+    set(${PREFIX}_LIBNAMES ${basename}${TMP}-${ARGV2})
+    string(REGEX REPLACE "\\." "_" TMP ${${PREFIX}_LIBNAMES})
+    set(${PREFIX}_LIBNAMES ${${PREFIX}_LIBNAMES} ${TMP})
+  endif(${ARGC} GREATER 2)
+  find_library(${PREFIX}_LIBRARY
+    NAMES ${${PREFIX}_LIBNAMES}
+    PATHS ${${PREFIX}_PKGCONF_LIBRARY_DIRS}
+  )
+endmacro(libfind_library)
+
diff -pruN 1.2.17-0.1/CMakeLists.txt 1.3.6+dfsg-2/CMakeLists.txt
--- 1.2.17-0.1/CMakeLists.txt	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/CMakeLists.txt	2022-01-19 23:00:25.000000000 +0000
@@ -0,0 +1,657 @@
+cmake_minimum_required(VERSION 2.8...3.19)
+
+# Inspired and referenced from https://blog.kitware.com/cmake-and-the-default-build-type
+if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+	message(STATUS "Setting build type to 'Release' as none was specified.")
+	set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE)
+	set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
+		"MinSizeRel" "RelWithDebInfo")
+endif()
+
+project("openscap")
+set(OPENSCAP_VERSION_MAJOR "1")
+set(OPENSCAP_VERSION_MINOR "3")
+set(OPENSCAP_VERSION_PATCH "6")
+
+if(OPENSCAP_VERSION_SUFFIX)
+	set(OPENSCAP_VERSION "${OPENSCAP_VERSION_MAJOR}.${OPENSCAP_VERSION_MINOR}.${OPENSCAP_VERSION_PATCH}_${OPENSCAP_VERSION_SUFFIX}")
+else()
+	set(OPENSCAP_VERSION "${OPENSCAP_VERSION_MAJOR}.${OPENSCAP_VERSION_MINOR}.${OPENSCAP_VERSION_PATCH}")
+endif()
+
+# libtool versioning
+# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
+
+## increment if the interface has additions, changes, removals.
+set(LT_CURRENT 30)
+
+## increment any time the source changes; set 0 to if you increment CURRENT
+set(LT_REVISION 0)
+
+## increment if any interfaces have been added; set to 0
+## if any interfaces have been changed or removed. removal has
+## precedence over adding, so set to 0 if both happened.
+set(LT_AGE 5)
+
+math(EXPR LT_CURRENT_MINUS_AGE "${LT_CURRENT} - ${LT_AGE}")
+
+set(SONAME ${LT_CURRENT_MINUS_AGE}.${LT_AGE}.${LT_REVISION})
+set(SOVERSION ${LT_CURRENT_MINUS_AGE})
+
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
+
+message(STATUS "OpenSCAP ${OPENSCAP_VERSION}")
+message(STATUS "(see ${CMAKE_SOURCE_DIR}/docs/developer/developer.adoc for build instructions)")
+message(STATUS " ")
+
+# Strictly speaking in-source will work but will be very messy, let's
+# discourage our users from using them
+if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
+	message(FATAL_ERROR "In-source builds are not supported! Please use out of source builds:\n"
+		"$ cd openscap\n"
+		"$ rm CMakeCache.txt\n"
+		"$ cd build\n"
+		"$ cmake ../\n"
+		"$ make -j4"
+		)
+endif()
+
+# In Microsoft Visual Studio, store built binaries to a single directory.
+# We need to build all the binaries in a single directory on Windows, because
+# vcpkg tool fails to fetch dependent DLLs (libxml, libcurl, etc.) if
+# oscap.exe is build to a different directory than openscap.dll.
+# See the discussion in https://github.com/Microsoft/vcpkg/issues/1002
+if(MSVC)
+	set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
+	set(CMAKE_PDB_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
+	set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
+	set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
+endif()
+
+# ---------- INCLUDES CMAKE MODULES
+
+include(GNUInstallDirs)
+include(FindPkgConfig)
+include(CheckLibraryExists)
+include(CheckFunctionExists)
+include(CheckIncludeFile)
+include(CheckIncludeFiles)
+include(CheckCSourceCompiles)
+include(CMakeDependentOption)
+
+# ---------- DEPENDENCIES
+
+find_package(ACL)
+if(ACL_FOUND)
+	check_library_exists("${ACL_LIBRARY}" acl_extended_file "" HAVE_ACL_EXTENDED_FILE)
+	check_include_file(acl/libacl.h HAVE_ACL_LIBACL_H)
+	check_include_file(sys/acl.h HAVE_SYS_ACL_H)
+endif()
+
+find_package(AptPkg)
+
+find_package(Blkid)
+if(BLKID_FOUND)
+	check_library_exists("${BLKID_LIBRARY}" blkid_get_tag_value "" HAVE_BLKID_GET_TAG_VALUE)
+endif()
+
+find_package(Cap)
+if(CAP_FOUND)
+	check_library_exists("${CAP_LIBRARIES}" cap_get_pid "" HAVE_CAP_GET_PID)
+endif()
+
+find_package(CURL)
+find_package(DBUS)
+find_package(Doxygen)
+find_package(GConf)
+find_package(Ldap)
+find_package(OpenDbx)
+find_package(PCRE REQUIRED)
+find_package(PerlLibs)
+find_package(Popt)
+find_package(Systemd)
+
+find_package(Procps)
+if(PROCPS_FOUND)
+	check_library_exists("${PROCPS_LIBRARY}" dev_to_tty "" HAVE_DEV_TO_TTY)
+	check_include_file(proc/devname.h HAVE_PROC_DEVNAME_H)
+endif()
+
+# According to CMake documentation:
+# https://cmake.org/cmake/help/latest/module/FindPythonInterp.html
+# If calling both find_package(PythonInterp) and find_package(PythonLibs),
+# call find_package(PythonInterp) first to get the currently active Python
+# version by default with a consistent version of PYTHON_LIBRARIES.
+find_package(PythonInterp 3)
+find_package(PythonLibs 3)
+
+set(PREFERRED_PYTHON_PATH "${PYTHON_EXECUTABLE}")
+set(PYTHON3_PATH "${PYTHON_EXECUTABLE}")
+
+find_package(RPM)
+if(RPM_FOUND)
+	check_library_exists("${RPM_LIBRARY}" rpmReadConfigFiles "" HAVE_RPMREADCONFIGFILES)
+	check_library_exists("${RPM_LIBRARY}" headerFormat "" HAVE_HEADERFORMAT)
+	check_library_exists("${RPMIO_LIBRARY}" rpmFreeCrypto "" HAVE_RPMFREECRYPTO)
+	check_library_exists("${RPM_LIBRARY}" rpmFreeFilesystems "" HAVE_RPMFREEFILESYSTEMS)
+	check_library_exists("${RPM_LIBRARY}" rpmVerifyFile "" HAVE_RPMVERIFYFILE)
+	set(HAVE_RPMVERCMP 1)
+endif()
+
+find_package(SELinux)
+find_package(SWIG)
+find_package(LibXml2 REQUIRED)
+find_package(LibXslt REQUIRED)
+find_package(XMLSEC REQUIRED)
+if (APPLE)
+	set(OPENSSL_ROOT_DIR "/usr/local/opt/openssl/")
+endif()
+find_package(OpenSSL REQUIRED)
+add_definitions(${XMLSEC_DEFINITIONS})
+if (WIN32)
+	add_compile_definitions("XMLSEC_CRYPTO_OPENSSL")
+endif()
+find_package(BZip2)
+
+# PThread
+if (WIN32)
+	find_package(ZLIB REQUIRED)
+endif()
+
+if (WIN32 AND NOT MINGW)
+	find_package(pthread CONFIG REQUIRED)
+	set(CMAKE_THREAD_LIBS_INIT ${PThreads4W_LIBRARY})
+else()
+	find_package(Threads REQUIRED)
+endif()
+set(CMAKE_THREAD_PREFER_PTHREAD)
+set(THREADS_PREFER_PTHREAD_FLAG)
+set(THREADS_USE_PTHREADS_WIN32 TRUE)
+check_library_exists(pthread pthread_timedjoin_np "" HAVE_PTHREAD_TIMEDJOIN_NP)
+check_library_exists(pthread pthread_setname_np "" HAVE_PTHREAD_SETNAME_NP)
+check_library_exists(pthread pthread_getname_np "" HAVE_PTHREAD_GETNAME_NP)
+
+# WITH_CRYPTO
+set(WITH_CRYPTO "gcrypt" CACHE STRING "gcrypt|nss3")
+if(NOT (${WITH_CRYPTO} EQUAL "nss3"))
+	# gcrypt
+	find_package(GCrypt)
+else()
+	# nss3
+	find_package(NSS)
+endif()
+if(GCRYPT_FOUND OR NSS_FOUND)
+	set(CRYPTO_FOUND TRUE)
+endif()
+
+find_package(Libyaml)
+if(EXISTS ${CMAKE_SOURCE_DIR}/yaml-filter/CMakeLists.txt)
+	message(STATUS "yaml-filter was found")
+	set(YAML_FILTER_FOUND TRUE)
+else()
+	message(STATUS "yaml-filter was not found")
+	set(YAML_FILTER_FOUND FALSE)
+endif()
+
+check_library_exists(rt clock_gettime "" HAVE_CLOCK_GETTIME)
+check_function_exists(posix_memalign HAVE_POSIX_MEMALIGN)
+check_function_exists(memalign HAVE_MEMALIGN)
+check_function_exists(fts_open HAVE_FTS_OPEN)
+check_function_exists(strsep HAVE_STRSEP)
+check_function_exists(strptime HAVE_STRPTIME)
+
+check_include_file(syslog.h HAVE_SYSLOG_H)
+check_include_file(stdio_ext.h HAVE_STDIO_EXT_H)
+check_include_file(shadow.h HAVE_SHADOW_H)
+check_include_file(sys/systeminfo.h HAVE_SYS_SYSTEMINFO_H)
+check_include_file(getopt.h HAVE_GETOPT_H)
+check_include_file(sys/mman.h HAVE_MMAN_H)
+check_include_file(sys/uio.h HAVE_UIO_H)
+check_include_file(sys/xattr.h HAVE_SYS_XATTR_H)
+check_include_file(attr/xattr.h HAVE_ATTR_XATTR_H)
+check_include_files("sys/types.h;sys/extattr.h" HAVE_SYS_EXTATTR_H)
+
+# HAVE_ATOMIC_BUILTINS
+check_c_source_compiles("#include <stdint.h>\nint main() {uint16_t foovar=0; uint16_t old=1; uint16_t new=2;__sync_bool_compare_and_swap(&foovar,old,new); return __sync_fetch_and_add(&foovar, 1); __sync_fetch_and_add(&foovar, 1);}" HAVE_ATOMIC_BUILTINS)
+if(NOT HAVE_ATOMIC_BUILTINS)
+	message(WARNING "!!! Compiler does not support atomic builtins. Atomic operation will be emulated using mutex-based locking. !!!")
+endif()
+
+mark_as_advanced(ENV_PRESENT VALGRIND_PRESENT)
+find_program(ENV_PRESENT env)
+find_program(VALGRIND_PRESENT valgrind)
+find_program(ASCIIDOC_EXECUTABLE asciidoc)
+find_program(SED_EXECUTABLE sed)
+find_program(GIT_EXECUTABLE git)
+
+# ---------- CORE FEATURE SWITCHES
+if(WIN32 OR APPLE)
+	option(ENABLE_SCE "enables Script Check Engine - an alternative checking engine that lets you use executables instead of OVAL for checks" OFF)
+else()
+	option(ENABLE_SCE "enables Script Check Engine - an alternative checking engine that lets you use executables instead of OVAL for checks" ON)
+endif()
+
+# ---------- OVAL FEATURE SWITCHES
+
+option(ENABLE_PROBES "build OVAL probes - each probe implements an OVAL test" TRUE)
+set(SEAP_MSGID_BITS 32 CACHE STRING "Size of SEAP_msgid_t in bits [32|64]")
+cmake_dependent_option(ENABLE_PROBES_INDEPENDENT "build OVAL probes for independent (cross platform) OVAL tests" ON "ENABLE_PROBES" OFF)
+# On some platforms (Windows..) UNIX ends up being empty instead of "false"
+set(IS_UNIX FALSE)
+if (UNIX)
+    set(IS_UNIX TRUE)
+endif()
+cmake_dependent_option(ENABLE_PROBES_UNIX "build OVAL probes for the UNIX OVAL tests" ${IS_UNIX} "ENABLE_PROBES" OFF)
+string(COMPARE EQUAL ${CMAKE_SYSTEM_NAME} "Linux" IS_LINUX)
+cmake_dependent_option(ENABLE_PROBES_LINUX "build OVAL probes for the Linux OVAL tests" ${IS_LINUX} "ENABLE_PROBES" OFF)
+string(COMPARE EQUAL ${CMAKE_SYSTEM_NAME} "Solaris" IS_SOLARIS)
+cmake_dependent_option(ENABLE_PROBES_SOLARIS "build OVAL probes for the Solaris OVAL tests" ${IS_SOLARIS} "ENABLE_PROBES" OFF)
+set(IS_WIN32 FALSE)
+if (WIN32)
+    set(IS_WIN32 TRUE)
+endif()
+cmake_dependent_option(ENABLE_PROBES_WINDOWS "build OVAL probes for the Windows OVAL tests" ${IS_WIN32} "ENABLE_PROBES" OFF)
+
+option(OPENSCAP_ENABLE_SHA1 "Enable using the SHA-1 algorithm" ON)
+option(OPENSCAP_ENABLE_MD5 "Enable using the MD5 algorithm" ON)
+
+# INDEPENDENT PROBES
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE "Independent environmentvariable probe" ON "ENABLE_PROBES_INDEPENDENT" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE58 "Independent environmentvariable58 probe" ON "ENABLE_PROBES_INDEPENDENT; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_FAMILY "Independent family probe" ON "ENABLE_PROBES_INDEPENDENT" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_FILEHASH "Independent filehash probe" ON "ENABLE_PROBES_INDEPENDENT; CRYPTO_FOUND; OPENSCAP_ENABLE_SHA1; OPENSCAP_ENABLE_MD5; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_FILEHASH58 "Independent filehash58 probe" ON "ENABLE_PROBES_INDEPENDENT; CRYPTO_FOUND; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_SQL "Independent sql probe" ON "ENABLE_PROBES_INDEPENDENT; OPENDBX_FOUND; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_SQL57 "Independent sql57 probe" ON "ENABLE_PROBES_INDEPENDENT; OPENDBX_FOUND; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_SYSTEM_INFO "Independent system info probe" ON "ENABLE_PROBES_INDEPENDENT" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT "Independent textfilecontent probe" ON "ENABLE_PROBES_INDEPENDENT; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT54 "Independent textfilecontent54 probe" ON "ENABLE_PROBES_INDEPENDENT; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_VARIABLE "Independent variable probe" ON "ENABLE_PROBES_INDEPENDENT" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_XMLFILECONTENT "Independent xmlfilecontent probe" ON "ENABLE_PROBES_INDEPENDENT; NOT WIN32" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_INDEPENDENT_YAMLFILECONTENT "Independent yamlfilecontent probe" ON "ENABLE_PROBES_INDEPENDENT; LIBYAML_FOUND; YAML_FILTER_FOUND; NOT WIN32" OFF)
+
+# UNIX PROBES
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_DNSCACHE "Unix dnscache probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_FILE "Unix file probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_FILEEXTENDEDATTRIBUTE "Unix fileextendedattribute probe" ON "ENABLE_PROBES_UNIX; HAVE_SYS_XATTR_H OR HAVE_ATTR_XATTR_H OR HAVE_SYS_EXTATTR_H" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_GCONF "Unix gconf probe" ON "ENABLE_PROBES_UNIX; GCONF_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_INTERFACE "Unix interface probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_PASSWORD "Unix password probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_PROCESS "Unix process probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_PROCESS58 "Unix process58 probe" ON "ENABLE_PROBES_UNIX; CAP_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_ROUTINGTABLE "Unix routingtable probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_RUNLEVEL "Unix runlevel probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_SHADOW "Unix shadow probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_SYMLINK "Unix symlink probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_SYSCTL "Unix sysctl probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_UNAME "Unix uname probe" ON "ENABLE_PROBES_UNIX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_UNIX_XINETD "Unix xinetd probe" ON "ENABLE_PROBES_UNIX" OFF)
+
+# LINUX PROBES
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_DPKGINFO "Linux dpkginfo probe" ON "ENABLE_PROBES_LINUX; APTPKG_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_IFLISTENERS "Linux iflisteners probe" ON "ENABLE_PROBES_LINUX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_INETLISTENINGSERVERS "Linux inetlisteningservers probe" ON "ENABLE_PROBES_LINUX" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_PARTITION "Linux partition probe" ON "ENABLE_PROBES_LINUX; BLKID_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_RPMINFO "Linux rpminfo probe" ON "ENABLE_PROBES_LINUX; RPM_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_RPMVERIFY "Linux rpmverify probe" ON "ENABLE_PROBES_LINUX; RPM_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_RPMVERIFYFILE "Linux rpmverifyfile probe" ON "ENABLE_PROBES_LINUX; RPM_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_RPMVERIFYPACKAGE "Linux rpmverifypackage probe" ON "ENABLE_PROBES_LINUX; RPM_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_SELINUXBOOLEAN "Linux selinuxboolean probe" ON "ENABLE_PROBES_LINUX; SELINUX_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_SELINUXSECURITYCONTEXT "Linux selinuxsecuritycontext probe" ON "ENABLE_PROBES_LINUX; SELINUX_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_SYSTEMDUNITDEPENDENCY "Linux systemdunitdependency probe" ON "ENABLE_PROBES_LINUX; DBUS_FOUND" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_LINUX_SYSTEMDUNITPROPERTY "Linux systemdunitproperty probe" ON "ENABLE_PROBES_LINUX; DBUS_FOUND" OFF)
+
+# SOLARIS PROBES
+cmake_dependent_option(OPENSCAP_PROBE_SOLARIS_ISAINFO "Solaris isainfo probe" ON "ENABLE_PROBES_SOLARIS" OFF)
+
+# WINDOWS PROBES
+cmake_dependent_option(OPENSCAP_PROBE_WINDOWS_ACCESSTOKEN "Windows accesstoken probe" ON "ENABLE_PROBES_WINDOWS" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_WINDOWS_REGISTRY "Windows registry probe" ON "ENABLE_PROBES_WINDOWS" OFF)
+cmake_dependent_option(OPENSCAP_PROBE_WINDOWS_WMI57 "Windows wmi57 probe" ON "ENABLE_PROBES_WINDOWS" OFF)
+
+
+# ---------- EXECUTABLES / UTILITIES SWITCHES
+
+option(ENABLE_OSCAP_UTIL "build the oscap utility, oscap is the core utility for evaluation and processing of SCAP data" TRUE)
+
+set(OSCAP_DOCKER_PYTHON ${PYTHON_EXECUTABLE} CACHE STRING "path to the Python interpreter for oscap-docker")
+cmake_dependent_option(ENABLE_OSCAP_UTIL_DOCKER "enables the oscap-docker utility, this lets you scan containers and container images" ON "NOT WIN32" OFF)
+if(ENABLE_OSCAP_UTIL_DOCKER AND NOT BZIP2_FOUND)
+	set(ENABLE_OSCAP_UTIL_DOCKER FALSE)
+	message(SEND_ERROR "oscap-docker requires bzip2! Either disable oscap-docker or install bzip2")
+endif()
+
+cmake_dependent_option(ENABLE_OSCAP_UTIL_AS_RPM "enable the scap-as-rpm utility, this lets you package SCAP data as RPMs" ON "NOT WIN32" OFF)
+cmake_dependent_option(ENABLE_OSCAP_UTIL_SSH "enables the oscap-ssh utility, this lets you scan remote machines over ssh" ON "NOT WIN32" OFF)
+cmake_dependent_option(ENABLE_OSCAP_UTIL_VM "enables the oscap-vm utility, this lets you scan VMs and VM storage images" ON "NOT WIN32" OFF)
+cmake_dependent_option(ENABLE_OSCAP_UTIL_PODMAN "enables the oscap-podman utility, this lets you scan Podman containers and container images" ON "NOT WIN32" OFF)
+cmake_dependent_option(ENABLE_OSCAP_UTIL_CHROOT "enables the oscap-chroot utility, this lets you scan entire chroots using offline scanning" ON "NOT WIN32" OFF)
+option(ENABLE_OSCAP_UTIL_AUTOTAILOR "enables the autotailor utility that is able to perform command-line tailoring" TRUE)
+
+# ---------- TEST-SUITE SWITCHES
+
+# Tests will be turned off on Windows, because the test suite uses bash
+# and other Linux-specific tools.
+if(WIN32)
+	# TODO: I hate that the doc string is duplicated but cmake doesn't support evaluating expressions :-/
+	option(ENABLE_TESTS "enables the test suite, use `ctest` to run it" FALSE)
+else()
+	option(ENABLE_TESTS "enables the test suite, use `ctest` to run it" TRUE)
+endif()
+
+option(ENABLE_VALGRIND "enables Valgrind memory testing in the test-suite" FALSE)
+
+option(ENABLE_MITRE "enables MITRE tests -- requires specific environment support -- see developer documentation for more details" FALSE)
+
+# ---------- LANGUAGE BINDINGS
+cmake_dependent_option(ENABLE_PYTHON3 "if enabled, the python3 swig bindings will be built" ON "PYTHONINTERP_FOUND;SWIG_FOUND;PYTHONLIBS_FOUND" OFF)
+cmake_dependent_option(ENABLE_PERL "if enabled, the perl swig bindings will be built" ON "PERLLIBS_FOUND;SWIG_FOUND" OFF)
+
+# ---------- NO IDEA WHAT THIS IS FOR
+set(WANT_BASE64 TRUE CACHE BOOL "wants builtin Base64")
+set(WANT_XBASE64 FALSE CACHE BOOL "wants builtin XBase64")
+
+# ---------- Documentation
+
+# Due to the time it takes to build documentation on every change,
+# we choose to disable documentation by default. Only when ENABLE_DOCS==TRUE
+# will docs be built and added to the `make install` target.
+
+option(ENABLE_DOCS "enables documentation building -- suggests doxygen, asciidoc" FALSE)
+
+# ---------- STATUS MESSAGES
+
+message(STATUS " ")
+message(STATUS "CMake:")
+message(STATUS "generator: ${CMAKE_GENERATOR}")
+message(STATUS "source directory: ${CMAKE_SOURCE_DIR}")
+message(STATUS "build directory: ${CMAKE_BINARY_DIR}")
+message(STATUS " ")
+
+message(STATUS "Core features:")
+message(STATUS "SCE: ${ENABLE_SCE}")
+message(STATUS " ")
+
+message(STATUS "OVAL:")
+message(STATUS "base probe support: ${ENABLE_PROBES}")
+message(STATUS "SEAP msgid bit-size: ${SEAP_MSGID_BITS}")
+message(STATUS "SHA-1: ${OPENSCAP_ENABLE_SHA1}")
+message(STATUS "MD5: ${OPENSCAP_ENABLE_MD5}")
+
+message(STATUS "")
+message(STATUS "Independent probes: ${ENABLE_PROBES_INDEPENDENT}")
+message(STATUS "  Independent environmentvariable probe: ${OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE}")
+message(STATUS "  Independent family probe: ${OPENSCAP_PROBE_INDEPENDENT_FAMILY}")
+message(STATUS "  Independent system info probe: ${OPENSCAP_PROBE_INDEPENDENT_SYSTEM_INFO}")
+message(STATUS "  Independent variable probe: ${OPENSCAP_PROBE_INDEPENDENT_VARIABLE}")
+
+message(STATUS "")
+message(STATUS "Independent probes incompatible with WIN32 (WIN32 status: ${IS_WIN32})")
+message(STATUS "  Independent environmentvariable58 probe: ${OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE58}")
+message(STATUS "  Independent filehash probe: ${OPENSCAP_PROBE_INDEPENDENT_FILEHASH}")
+message(STATUS "  Independent filehash58 probe: ${OPENSCAP_PROBE_INDEPENDENT_FILEHASH58}")
+message(STATUS "  Independent sql probe (depends on opendbx): ${OPENSCAP_PROBE_INDEPENDENT_SQL}")
+message(STATUS "  Independent sql57 probe (depends on opendbx): ${OPENSCAP_PROBE_INDEPENDENT_SQL57}")
+message(STATUS "  Independent textfilecontent probe: ${OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT}")
+message(STATUS "  Independent textfilecontent54 probe: ${OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT54}")
+message(STATUS "  Independent xmlfilecontent probe: ${OPENSCAP_PROBE_INDEPENDENT_XMLFILECONTENT}")
+message(STATUS "  Independent yamlfilecontent probe (depends on libyaml, yaml-path): ${OPENSCAP_PROBE_INDEPENDENT_YAMLFILECONTENT}")
+message(STATUS " ")
+
+
+message(STATUS "Unix probes: ${ENABLE_PROBES_UNIX}")
+message(STATUS "  Unix dnscache probe: ${OPENSCAP_PROBE_UNIX_DNSCACHE}")
+message(STATUS "  Unix file probe: ${OPENSCAP_PROBE_UNIX_FILE}")
+message(STATUS "  Unix fileextendedattribute probe (depends on xattrh): ${OPENSCAP_PROBE_UNIX_FILEEXTENDEDATTRIBUTE}")
+message(STATUS "  Unix gconf probe (depends on gconf): ${OPENSCAP_PROBE_UNIX_GCONF}")
+message(STATUS "  Unix interface probe: ${OPENSCAP_PROBE_UNIX_INTERFACE}")
+message(STATUS "  Unix password probe: ${OPENSCAP_PROBE_UNIX_PASSWORD}")
+message(STATUS "  Unix process probe: ${OPENSCAP_PROBE_UNIX_PROCESS}")
+message(STATUS "  Unix process58 probe (depends on CAP): ${OPENSCAP_PROBE_UNIX_PROCESS58}")
+message(STATUS "  Unix routingtable probe: ${OPENSCAP_PROBE_UNIX_ROUTINGTABLE}")
+message(STATUS "  Unix runlevel probe: ${OPENSCAP_PROBE_UNIX_RUNLEVEL}")
+message(STATUS "  Unix shadow probe: ${OPENSCAP_PROBE_UNIX_SHADOW}")
+message(STATUS "  Unix symlink probe: ${OPENSCAP_PROBE_UNIX_SYMLINK}")
+message(STATUS "  Unix sysctl probe: ${OPENSCAP_PROBE_UNIX_SYSCTL}")
+message(STATUS "  Unix uname probe: ${OPENSCAP_PROBE_UNIX_UNAME}")
+message(STATUS "  Unix xinetd probe: ${OPENSCAP_PROBE_UNIX_XINETD}")
+message(STATUS " ")
+
+message(STATUS "Linux probes: ${ENABLE_PROBES_LINUX}")
+message(STATUS "  Linux dpkginfo probe (depends on aptpkg): ${OPENSCAP_PROBE_LINUX_DPKGINFO}")
+message(STATUS "  Linux iflisteners probe: ${OPENSCAP_PROBE_LINUX_IFLISTENERS}")
+message(STATUS "  Linux inetlisteningservers probe: ${OPENSCAP_PROBE_LINUX_INETLISTENINGSERVERS}")
+message(STATUS "  Linux partition probe (depends on blkid): ${OPENSCAP_PROBE_LINUX_PARTITION}")
+message(STATUS "  Linux rpminfo probe (depends on rpm): ${OPENSCAP_PROBE_LINUX_RPMINFO}")
+message(STATUS "  Linux rpmverify probe (depends on rpm): ${OPENSCAP_PROBE_LINUX_RPMVERIFY}")
+message(STATUS "  Linux rpmverifyfile probe (depends on rpm): ${OPENSCAP_PROBE_LINUX_RPMVERIFYFILE}")
+message(STATUS "  Linux rpmverifypackage probe (depends on rpm): ${OPENSCAP_PROBE_LINUX_RPMVERIFYPACKAGE}")
+message(STATUS "  Linux selinuxboolean probe (depends on selinux): ${OPENSCAP_PROBE_LINUX_SELINUXBOOLEAN}")
+message(STATUS "  Linux selinuxsecuritycontext probe (depends on selinux): ${OPENSCAP_PROBE_LINUX_SELINUXSECURITYCONTEXT}")
+message(STATUS "  Linux systemdunitdependency probe (depends on dbus): ${OPENSCAP_PROBE_LINUX_SYSTEMDUNITDEPENDENCY}")
+message(STATUS "  Linux systemdunitproperty probe (depends on dbus): ${OPENSCAP_PROBE_LINUX_SYSTEMDUNITPROPERTY}")
+message(STATUS " ")
+
+message(STATUS "Solaris probes: ${ENABLE_PROBES_SOLARIS}")
+message(STATUS "  Solaris isainfo probe: ${OPENSCAP_PROBE_SOLARIS_ISAINFO}")
+message(STATUS " ")
+
+
+message(STATUS "Windows probes: ${ENABLE_PROBES_WINDOWS}")
+message(STATUS "  Windows accesstoken probe: ${OPENSCAP_PROBE_WINDOWS_ACCESSTOKEN}")
+message(STATUS "  Windows registry probe: ${OPENSCAP_PROBE_WINDOWS_REGISTRY}")
+message(STATUS "  Windows wmi57 probe: ${OPENSCAP_PROBE_WINDOWS_WMI57}")
+message(STATUS " ")
+
+
+message(STATUS "Language bindings:")
+message(STATUS "python3 bindings: ${ENABLE_PYTHON3}")
+message(STATUS "perl bindings: ${ENABLE_PERL}")
+message(STATUS " ")
+
+message(STATUS "Utilities:")
+message(STATUS "oscap: ${ENABLE_OSCAP_UTIL}")
+message(STATUS "oscap-docker: ${ENABLE_OSCAP_UTIL_DOCKER}")
+message(STATUS "scap-as-rpm: ${ENABLE_OSCAP_UTIL_AS_RPM}")
+message(STATUS "oscap-ssh: ${ENABLE_OSCAP_UTIL_SSH}")
+message(STATUS "oscap-vm: ${ENABLE_OSCAP_UTIL_VM}")
+message(STATUS "oscap-podman: ${ENABLE_OSCAP_UTIL_PODMAN}")
+message(STATUS "oscap-chroot: ${ENABLE_OSCAP_UTIL_CHROOT}")
+message(STATUS "autotailor: ${ENABLE_OSCAP_UTIL_AUTOTAILOR}")
+message(STATUS " ")
+
+message(STATUS "Testing:")
+message(STATUS "tests: ${ENABLE_TESTS}")
+message(STATUS "valgrind: ${ENABLE_VALGRIND}")
+message(STATUS "MITRE: ${ENABLE_MITRE}")
+message(STATUS " ")
+
+message(STATUS "Documentation:")
+message(STATUS "enabled: ${ENABLE_DOCS}")
+message(STATUS "doxygen: ${DOXYGEN_EXECUTABLE}")
+message(STATUS "asciidoc: ${ASCIIDOC_EXECUTABLE}")
+
+# ---------- PATHS
+
+if(WIN32)
+	# Windows installer does not allow full paths.
+	# The install path can be changed by user in Windows installer.
+	# We will use relative names - "schemas", "xsl" and "cpe"
+	# directories will be located in the same directory as oscap.exe.
+	set(OSCAP_DEFAULT_SCHEMA_PATH "schemas")
+	set(OSCAP_DEFAULT_XSLT_PATH "xsl")
+	set(OSCAP_DEFAULT_CPE_PATH "cpe")
+else()
+	set(OSCAP_DEFAULT_SCHEMA_PATH "${CMAKE_INSTALL_FULL_DATADIR}/openscap/schemas")
+	set(OSCAP_DEFAULT_XSLT_PATH "${CMAKE_INSTALL_FULL_DATADIR}/openscap/xsl")
+	set(OSCAP_DEFAULT_CPE_PATH "${CMAKE_INSTALL_FULL_DATADIR}/openscap/cpe")
+endif()
+set(OSCAP_TEMP_DIR "/tmp" CACHE STRING "use different temporary directory to execute sce scripts (default=/tmp)")
+
+
+# ---------- CONFIGURATION
+
+configure_file("config.h.in" "config.h")
+add_definitions(-DHAVE_CONFIG_H)
+if (MSVC)
+	# Disable some of Microsoft Visual Studio 2017 warnings
+	#
+	# Visual Studio recommends using some non-standard functions with _s suffix
+	# instead of standard functions, because they considered it more secure.
+	# However these functions are available only in Microsoft C Runtime.
+	# Therefore we disable this type of warnings.
+	# https://docs.microsoft.com/en-us/cpp/c-runtime-library/security-features-in-the-crt
+	add_definitions(-D_CRT_SECURE_NO_WARNINGS)
+	# Microsoft has renamed some POSIX functions in the CRT to conform with C99 rules for
+	# implementation-defined global function names. In most cases, a leading underscore was
+	# added to the POSIX function name to create a standard conformant name.
+	# If we use POSIX functions without leading underscore, a deprecation warning is shown.
+	# Therefore we disable this type of warnings.
+	# https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-3-c4996
+	add_definitions(-D_CRT_NONSTDC_NO_WARNINGS)
+endif()
+
+if (${CMAKE_C_COMPILER_ID} STREQUAL "GNU" OR ${CMAKE_C_COMPILER_ID} STREQUAL "Clang")
+	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pipe -W -Wall -Wnonnull -Wshadow -Wformat -Wundef -Wno-unused-parameter -Wmissing-prototypes -Wno-unknown-pragmas -D_GNU_SOURCE -std=c99")
+endif()
+if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
+	add_link_options(-lkvm -lm -lprocstat)
+else()
+	# We do not define this on FreeBSD as it causes required functionality to not be exposed, e.g. getprogname() and u_<types>
+	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_POSIX_C_SOURCE=200112L")
+endif()
+if(${CMAKE_SYSTEM_NAME} EQUAL "Solaris")
+	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__EXTENSIONS__")
+endif()
+if(WIN32)
+	# expose new WinAPI function appearing on Windows 7
+	# eg. inet_pton
+	set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_WIN32_WINNT=0x0600")
+endif()
+if(APPLE)
+	#full Single Unix Standard v3 (SUSv3) conformance (the Unix API)
+	add_definitions(-D_DARWIN_C_SOURCE)
+endif()
+
+include_directories(
+	"compat/"
+	"src/"
+	"src/common/"
+	"src/common/public/"
+	"src/CPE/public/"
+	"src/CVE/public/"
+	"src/CVRF/public/"
+	"src/CVSS/public/"
+	"src/DS/public/"
+	"src/OVAL/public/"
+	"src/OVAL/probes/public/"
+	"src/OVAL/probes/SEAP/"
+	"src/OVAL/probes/SEAP/public/"
+	"src/OVAL/"
+	"src/source/public/"
+	"src/XCCDF/"
+	"src/XCCDF/public/"
+	"src/XCCDF_POLICY/"
+	"src/XCCDF_POLICY/public/"
+	"yaml-filter/src/"
+	${CMAKE_BINARY_DIR} # config.h is generated to build directory
+	${LIBXML2_INCLUDE_DIR}
+	${XMLSEC_INCLUDE_DIRS}
+	${OPENSSL_INCLUDE_DIR}
+	${PCRE_INCLUDE_DIRS}
+)
+
+# Honor visibility properties for all target types
+# Run "cmake --help-policy CMP0063" for policy details
+if (POLICY CMP0063)
+	cmake_policy(SET CMP0063 NEW)
+else()
+	message(WARNING "It is not possible to correctly set symbol visibility in object files with your version of CMake. We recommend using CMake 3.3 or newer.")
+endif()
+
+function(set_oscap_generic_properties TARGET_OBJECT)
+	set_target_properties(${TARGET_OBJECT} PROPERTIES
+		# Make global variables and functions HIDDEN by default.
+		C_VISIBILITY_PRESET hidden
+		CXX_VISIBILITY_PRESET hidden
+		POSITION_INDEPENDENT_CODE ON    # Compile this object code position independent.
+	)
+	target_compile_definitions(${TARGET_OBJECT} PRIVATE OSCAP_BUILD_SHARED)
+endfunction()
+
+if(OPENSCAP_PROBE_INDEPENDENT_YAMLFILECONTENT)
+	add_library(yamlfilter_object OBJECT yaml-filter/src/yaml-path.c yaml-filter/src/yaml-path.h)
+	set_oscap_generic_properties(yamlfilter_object)
+endif()
+
+add_subdirectory("compat")
+add_subdirectory("src")
+add_subdirectory("utils")
+add_subdirectory("docs")
+add_subdirectory("dist")
+add_subdirectory("schemas")
+add_subdirectory("xsl")
+add_subdirectory("cpe")
+add_subdirectory("swig")
+configure_file("run.in" ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/run @ONLY)
+configure_file("oscap_wrapper.in" ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/oscap_wrapper @ONLY)
+file(
+	COPY "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/run" "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/oscap_wrapper"
+	DESTINATION ${CMAKE_BINARY_DIR}
+	FILE_PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
+)
+
+if(NOT WIN32)
+	# pkgconfig file
+	configure_file("libopenscap.pc.in" "libopenscap.pc" @ONLY)
+	install(FILES
+		${CMAKE_CURRENT_BINARY_DIR}/libopenscap.pc
+		DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
+	)
+	if(WITH_SYSTEMD)
+		# systemd service for offline (boot-time) remediation
+		configure_file("oscap-remediate.service.in" "oscap-remediate.service" @ONLY)
+		install(FILES
+			${CMAKE_CURRENT_BINARY_DIR}/oscap-remediate.service
+			DESTINATION ${SYSTEMD_UNITDIR}
+		)
+	endif()
+endif()
+
+# changelog
+if(GIT_EXECUTABLE AND SED_EXECUTABLE)
+	add_custom_target(changelog
+		COMMAND "${GIT_EXECUTABLE}" log | "${SED_EXECUTABLE}" '/^commit/d\; /^Merge/d' > "${CMAKE_BINARY_DIR}/ChangeLog"
+		COMMENT "Generating ChangeLog"
+	)
+endif()
+
+# Ctest
+if(ENABLE_TESTS)
+	enable_testing()
+	add_subdirectory("tests")
+endif()
+
+# CPack
+set(CPACK_SOURCE_PACKAGE_FILE_NAME "openscap-${OPENSCAP_VERSION}")
+set(CPACK_SOURCE_GENERATOR "TGZ")
+set(CPACK_SOURCE_IGNORE_FILES
+	"\\\\.git.*"
+	"build/"
+	"build-win32/"
+	"~$"
+	"\\\\CMakeLists.txt.user"
+)
+if(WIN32)
+	set(CPACK_GENERATOR WIX)
+	set(CPACK_WIX_PATCH_FILE "${CMAKE_SOURCE_DIR}/wix_patch.xml")
+endif()
+set(CPACK_PACKAGE_NAME "OpenSCAP")
+set(CPACK_PACKAGE_VENDOR "OpenSCAP Project")
+set(CPACK_PACKAGE_VERSION_MAJOR "${OPENSCAP_VERSION_MAJOR}")
+set(CPACK_PACKAGE_VERSION_MINOR "${OPENSCAP_VERSION_MINOR}")
+set(CPACK_PACKAGE_VERSION_PATCH "${OPENSCAP_VERSION_PATCH}")
+set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/lgpl-2.1.rtf")
+set(CPACK_PACKAGE_CHECKSUM SHA512)
+
+include(CPack)
diff -pruN 1.2.17-0.1/compat/CMakeLists.txt 1.3.6+dfsg-2/compat/CMakeLists.txt
--- 1.2.17-0.1/compat/CMakeLists.txt	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/CMakeLists.txt	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,20 @@
+file(GLOB_RECURSE COMPAT_HEADERS "*.h")
+list(APPEND COMPAT_SOURCES "")
+
+if(NOT HAVE_STRSEP)
+	list(APPEND COMPAT_SOURCES "strsep.c")
+endif()
+
+if(NOT HAVE_STRPTIME)
+	list(APPEND COMPAT_SOURCES "strptime.c")
+endif()
+
+# dev_to_tty is used in the process and process58 probes that are UNIX only
+if(NOT HAVE_DEV_TO_TTY AND UNIX)
+	list(APPEND COMPAT_SOURCES "dev_to_tty.c")
+endif()
+
+if(COMPAT_SOURCES)
+	add_library(compat_object OBJECT ${COMPAT_HEADERS} ${COMPAT_SOURCES})
+	set_oscap_generic_properties(compat_object)
+endif()
diff -pruN 1.2.17-0.1/compat/compat.h 1.3.6+dfsg-2/compat/compat.h
--- 1.2.17-0.1/compat/compat.h	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/compat.h	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,70 @@
+/*
+ * Copyright 2017 Red Hat Inc., Durham, North Carolina.
+ * All Rights Reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors:
+ *      Jan Černý <jcerny@redhat.com>
+ */
+
+#ifndef OSCAP_COMPAT_H_
+#define OSCAP_COMPAT_H_
+
+#include "oscap_export.h"
+#include "oscap_platforms.h"
+
+/* Fallback functions fixing portability issues */
+
+#ifndef HAVE_STRSEP
+char *strsep(char **stringp, const char *delim);
+#endif
+
+#ifndef HAVE_STRPTIME
+#include <time.h>
+char *strptime(const char *buf, const char *format, struct tm *tm);
+#endif
+
+#if defined(unix) || defined(__unix__) || defined(__unix)
+#define OSCAP_UNIX
+#endif
+
+#ifdef OS_WINDOWS
+#define PATH_MAX _MAX_PATH
+#endif
+
+#ifdef _MSC_VER
+#include <BaseTsd.h>
+typedef SSIZE_T ssize_t;
+#define __PRETTY_FUNCTION__ __FUNCTION__
+#define __attribute__(x)
+
+/* Definitions for access() */
+#define F_OK 0
+#define W_OK 2
+#define R_OK 4
+
+#endif
+
+#if !defined(HAVE_DEV_TO_TTY) && !defined(OS_WINDOWS)
+#include <sys/types.h>
+#define ABBREV_DEV  1     /* remove /dev/         */
+#define ABBREV_TTY  2     /* remove tty           */
+#define ABBREV_PTS  4     /* remove pts/          */
+
+extern unsigned dev_to_tty(char *__restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags);
+#endif
+
+#endif
diff -pruN 1.2.17-0.1/compat/dev_to_tty.c 1.3.6+dfsg-2/compat/dev_to_tty.c
--- 1.2.17-0.1/compat/dev_to_tty.c	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/dev_to_tty.c	2021-04-06 05:50:14.000000000 +0000
@@ -0,0 +1,320 @@
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+
+/*
+ * devname - device name functions
+ * Copyright 1998-2002 by Albert Cahalan
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+
+#include "compat.h"
+
+// This is the buffer size for a tty name. Any path is legal,
+// which makes PAGE_SIZE appropriate (see kernel source), but
+// that is only 99% portable and utmp only holds 32 anyway.
+// We need at least 20 for guess_name().
+#define TTY_NAME_SIZE 128
+
+
+#if 0
+#include <sys/sysmacros.h>
+#define MAJOR_OF(d) ((unsigned)major(d))
+#define MINOR_OF(d) ((unsigned)minor(d))
+#else
+#define MAJOR_OF(d) ( ((unsigned)(d)>>8u) & 0xfffu )
+#define MINOR_OF(d) ( ((unsigned)(d)&0xffu) | (((unsigned)(d)&0xfff00000u)>>12u) )
+#undef major
+#undef minor
+#define major <-- do not use -->
+#define minor <-- do not use -->
+#endif
+
+typedef struct tty_map_node {
+  struct tty_map_node *next;
+  unsigned short devfs_type;  // bool
+  unsigned short major_number;
+  unsigned minor_first;
+  unsigned minor_last;
+  char name[16];
+} tty_map_node;
+
+static tty_map_node *tty_map = NULL;
+
+/* Load /proc/tty/drivers for device name mapping use. */
+static void load_drivers(void){
+  char buf[10000];
+  char *p;
+  int fd;
+  int bytes;
+  fd = open("/proc/tty/drivers",O_RDONLY);
+  if(fd == -1) goto fail;
+  bytes = read(fd, buf, sizeof(buf) - 1);
+  if(bytes == -1) goto fail;
+  buf[bytes] = '\0';
+  p = buf;
+  while(( p = strstr(p, " /dev/") )){  // " /dev/" is the second column
+    tty_map_node *tmn;
+    size_t len;
+    char *end;
+    p += 6;
+    end = strchr(p, ' ');
+    if(!end) continue;
+    len = end - p;
+    tmn = malloc(sizeof(tty_map_node));
+    tmn->next = tty_map;
+    tty_map = tmn;
+    /* if we have a devfs type name such as /dev/tts/%d then strip the %d but
+       keep a flag. */
+    if(len >= 3 && !strncmp(end - 2, "%d", 2)){
+      len -= 2;
+      tmn->devfs_type = 1;
+    }
+    if(len >= sizeof tmn->name)
+      len = sizeof tmn->name - 1; // mangle it to avoid overflow
+    memcpy(tmn->name, p, len);
+    p = end; /* set p to point past the %d as well if there is one */
+    while(*p == ' ') p++;
+    tmn->major_number = atoi(p);
+    p += strspn(p, "0123456789");
+    while(*p == ' ') p++;
+    switch(sscanf(p, "%u-%u", &tmn->minor_first, &tmn->minor_last)){
+    default:
+      /* Can't finish parsing this line so we remove it from the list */
+      tty_map = tty_map->next;
+      free(tmn);
+      break;
+    case 1:
+      tmn->minor_last = tmn->minor_first;
+      break;
+    case 2:
+      break;
+    }
+  }
+fail:
+  if(fd != -1) close(fd);
+  if(!tty_map) tty_map = (tty_map_node *)-1;
+}
+
+/* Try to guess the device name from /proc/tty/drivers info. */
+static int driver_name(char *restrict const buf, unsigned maj, unsigned min){
+  struct stat sbuf;
+  tty_map_node *tmn;
+  if(!tty_map) load_drivers();
+  if(tty_map == (tty_map_node *)-1) return 0;
+  tmn = tty_map;
+  for(;;){
+    if(!tmn) return 0;
+    if(tmn->major_number == maj && tmn->minor_first <= min && tmn->minor_last >= min) break;
+    tmn = tmn->next;
+  }
+  sprintf(buf, "/dev/%s%d", tmn->name, min);  /* like "/dev/ttyZZ255" */
+  if(stat(buf, &sbuf) < 0){
+    if(tmn->devfs_type) return 0;
+    sprintf(buf, "/dev/%s", tmn->name);  /* like "/dev/ttyZZ255" */
+    if(stat(buf, &sbuf) < 0) return 0;
+  }
+  if(min != MINOR_OF(sbuf.st_rdev)) return 0;
+  if(maj != MAJOR_OF(sbuf.st_rdev)) return 0;
+  return 1;
+}
+
+// major 204 is a mess -- "Low-density serial ports"
+static const char low_density_names[][6] = {
+"LU0",  "LU1",  "LU2",  "LU3",
+"FB0",
+"SA0",  "SA1",  "SA2",
+"SC0",  "SC1",  "SC2",  "SC3",
+"FW0",  "FW1",  "FW2",  "FW3",
+"AM0",  "AM1",  "AM2",  "AM3",  "AM4",  "AM5",  "AM6",  "AM7",
+"AM8",  "AM9",  "AM10", "AM11", "AM12", "AM13", "AM14", "AM15",
+"DB0",  "DB1",  "DB2",  "DB3",  "DB4",  "DB5",  "DB6",  "DB7",
+"SG0",
+"SMX0",  "SMX1",  "SMX2",
+"MM0",  "MM1",
+"CPM0", "CPM1", "CPM2", "CPM3", /* "CPM4", "CPM5", */  // bad allocation?
+"IOC0",  "IOC1",  "IOC2",  "IOC3",  "IOC4",  "IOC5",  "IOC6",  "IOC7",
+"IOC8",  "IOC9",  "IOC10", "IOC11", "IOC12", "IOC13", "IOC14", "IOC15",
+"IOC16", "IOC17", "IOC18", "IOC19", "IOC20", "IOC21", "IOC22", "IOC23",
+"IOC24", "IOC25", "IOC26", "IOC27", "IOC28", "IOC29", "IOC30", "IOC31",
+"VR0", "VR1",
+"IOC84",  "IOC85",  "IOC86",  "IOC87",  "IOC88",  "IOC89",  "IOC90",  "IOC91",
+"IOC92",  "IOC93",  "IOC94", "IOC95", "IOC96", "IOC97", "IOC98", "IOC99",
+"IOC100", "IOC101", "IOC102", "IOC103", "IOC104", "IOC105", "IOC106", "IOC107",
+"IOC108", "IOC109", "IOC110", "IOC111", "IOC112", "IOC113", "IOC114", "IOC115",
+"SIOC0",  "SIOC1",  "SIOC2",  "SIOC3",  "SIOC4",  "SIOC5",  "SIOC6",  "SIOC7",
+"SIOC8",  "SIOC9",  "SIOC10", "SIOC11", "SIOC12", "SIOC13", "SIOC14", "SIOC15",
+"SIOC16", "SIOC17", "SIOC18", "SIOC19", "SIOC20", "SIOC21", "SIOC22", "SIOC23",
+"SIOC24", "SIOC25", "SIOC26", "SIOC27", "SIOC28", "SIOC29", "SIOC30", "SIOC31",
+"PSC0", "PSC1", "PSC2", "PSC3", "PSC4", "PSC5",
+"AT0",  "AT1",  "AT2",  "AT3",  "AT4",  "AT5",  "AT6",  "AT7",
+"AT8",  "AT9",  "AT10", "AT11", "AT12", "AT13", "AT14", "AT15",
+"NX0",  "NX1",  "NX2",  "NX3",  "NX4",  "NX5",  "NX6",  "NX7",
+"NX8",  "NX9",  "NX10", "NX11", "NX12", "NX13", "NX14", "NX15",
+"J0",   // minor is 186
+"UL0","UL1","UL2","UL3",
+"xvc0", // FAIL -- "/dev/xvc0" lacks "tty" prefix
+"PZ0","PZ1","PZ2","PZ3",
+"TX0","TX1","TX2","TX3","TX4","TX5","TX6","TX7",
+"SC0","SC1","SC2","SC3",
+"MAX0","MAX1","MAX2","MAX3",
+};
+
+#if 0
+// test code
+#include <stdio.h>
+#define AS(x) (sizeof(x)/sizeof((x)[0]))
+int main(int argc, char *argv[]){
+  int i = 0;
+  while(i<AS(low_density_names)){
+    printf("%3d = /dev/tty%.*s\n",i,sizeof low_density_names[i],low_density_names[i]);
+    i++;
+  }
+  return 0;
+}
+#endif
+
+/* Try to guess the device name (useful until /proc/PID/tty is added) */
+static int guess_name(char *restrict const buf, unsigned maj, unsigned min){
+  struct stat sbuf;
+  int t0, t1;
+  unsigned tmpmin = min;
+
+  switch(maj){
+  case   3:      /* /dev/[pt]ty[p-za-o][0-9a-z] is 936 */
+    if(tmpmin > 255) return 0;   // should never happen; array index protection
+    t0 = "pqrstuvwxyzabcde"[tmpmin>>4];
+    t1 = "0123456789abcdef"[tmpmin&0x0f];
+    sprintf(buf, "/dev/tty%c%c", t0, t1);
+    break;
+  case   4:
+    if(min<64){
+      sprintf(buf, "/dev/tty%d", min);
+      break;
+    }
+    sprintf(buf, "/dev/ttyS%d", min-64);
+    break;
+  case  11:  sprintf(buf, "/dev/ttyB%d",  min); break;
+  case  17:  sprintf(buf, "/dev/ttyH%d",  min); break;
+  case  19:  sprintf(buf, "/dev/ttyC%d",  min); break;
+  case  22:  sprintf(buf, "/dev/ttyD%d",  min); break; /* devices.txt */
+  case  23:  sprintf(buf, "/dev/ttyD%d",  min); break; /* driver code */
+  case  24:  sprintf(buf, "/dev/ttyE%d",  min); break;
+  case  32:  sprintf(buf, "/dev/ttyX%d",  min); break;
+  case  43:  sprintf(buf, "/dev/ttyI%d",  min); break;
+  case  46:  sprintf(buf, "/dev/ttyR%d",  min); break;
+  case  48:  sprintf(buf, "/dev/ttyL%d",  min); break;
+  case  57:  sprintf(buf, "/dev/ttyP%d",  min); break;
+  case  71:  sprintf(buf, "/dev/ttyF%d",  min); break;
+  case  75:  sprintf(buf, "/dev/ttyW%d",  min); break;
+  case  78:  sprintf(buf, "/dev/ttyM%d",  min); break; /* conflict */
+  case 105:  sprintf(buf, "/dev/ttyV%d",  min); break;
+  case 112:  sprintf(buf, "/dev/ttyM%d",  min); break; /* conflict */
+  /* 136 ... 143 are /dev/pts/0, /dev/pts/1, /dev/pts/2 ... */
+  case 136 ... 143:  sprintf(buf, "/dev/pts/%d",  min+(maj-136)*256); break;
+  case 148:  sprintf(buf, "/dev/ttyT%d",  min); break;
+  case 154:  sprintf(buf, "/dev/ttySR%d", min); break;
+  case 156:  sprintf(buf, "/dev/ttySR%d", min+256); break;
+  case 164:  sprintf(buf, "/dev/ttyCH%d",  min); break;
+  case 166:  sprintf(buf, "/dev/ttyACM%d", min); break; /* bummer, 9-char */
+  case 172:  sprintf(buf, "/dev/ttyMX%d",  min); break;
+  case 174:  sprintf(buf, "/dev/ttySI%d",  min); break;
+  case 188:  sprintf(buf, "/dev/ttyUSB%d", min); break; /* bummer, 9-char */
+  case 204:
+    if(min >= sizeof low_density_names / sizeof low_density_names[0]) return 0;
+    memcpy(buf,"/dev/tty",8);
+    memcpy(buf+8, low_density_names[min], sizeof low_density_names[0]);
+    buf[8 + sizeof low_density_names[0]] = '\0';
+//    snprintf(buf, 9 + sizeof low_density_names[0], "/dev/tty%.*s", sizeof low_density_names[0], low_density_names[min]);
+    break;
+  case 208:  sprintf(buf, "/dev/ttyU%d",  min); break;
+  case 216:  sprintf(buf, "/dev/ttyUB%d",  min); break; // "/dev/rfcomm%d" now?
+  case 224:  sprintf(buf, "/dev/ttyY%d",  min); break;
+  case 227:  sprintf(buf, "/dev/3270/tty%d", min); break; /* bummer, HUGE */
+  case 229:  sprintf(buf, "/dev/iseries/vtty%d",  min); break; /* bummer, HUGE */
+  case 256:  sprintf(buf, "/dev/ttyEQ%d",  min); break;
+  default: return 0;
+  }
+  if(stat(buf, &sbuf) < 0) return 0;
+  if(min != MINOR_OF(sbuf.st_rdev)) return 0;
+  if(maj != MAJOR_OF(sbuf.st_rdev)) return 0;
+  return 1;
+}
+
+/* Linux 2.2 can give us filenames that might be correct.
+ * Useful names could be in /proc/PID/fd/2 (stderr, seldom redirected)
+ * and in /proc/PID/fd/255 (used by bash to remember the tty).
+ */
+static int link_name(char *restrict const buf, unsigned maj, unsigned min, int pid, const char *restrict name){
+  struct stat sbuf;
+  char path[32];
+  int count;
+  sprintf(path, "/proc/%d/%s", pid, name);  /* often permission denied */
+  count = readlink(path,buf,TTY_NAME_SIZE-1);
+  if(count == -1) return 0;
+  buf[count] = '\0';
+  if(stat(buf, &sbuf) < 0) return 0;
+  if(min != MINOR_OF(sbuf.st_rdev)) return 0;
+  if(maj != MAJOR_OF(sbuf.st_rdev)) return 0;
+  return 1;
+}
+
+/* number --> name */
+unsigned dev_to_tty(char *restrict ret, unsigned chop, dev_t dev_t_dev, int pid, unsigned int flags) {
+  static char buf[TTY_NAME_SIZE];
+  char *restrict tmp = buf;
+  unsigned dev = dev_t_dev;
+  unsigned i = 0;
+  int c;
+  if(dev == 0u) goto no_tty;
+  if(driver_name(tmp, MAJOR_OF(dev), MINOR_OF(dev)               )) goto abbrev;
+  if(  link_name(tmp, MAJOR_OF(dev), MINOR_OF(dev), pid, "fd/2"  )) goto abbrev;
+  if( guess_name(tmp, MAJOR_OF(dev), MINOR_OF(dev)               )) goto abbrev;
+  if(  link_name(tmp, MAJOR_OF(dev), MINOR_OF(dev), pid, "fd/255")) goto abbrev;
+  // fall through if unable to find a device file
+no_tty:
+  strcpy(ret, "?");
+  return 1;
+abbrev:
+  if((flags&ABBREV_DEV) && !strncmp(tmp,"/dev/",5) && tmp[5]) tmp += 5;
+  if((flags&ABBREV_TTY) && !strncmp(tmp,"tty",  3) && tmp[3]) tmp += 3;
+  if((flags&ABBREV_PTS) && !strncmp(tmp,"pts/", 4) && tmp[4]) tmp += 4;
+  /* gotta check before we chop or we may chop someone else's memory */
+  if(chop + (unsigned long)(tmp-buf) < sizeof buf)
+    tmp[chop] = '\0';
+  /* replace non-ASCII characters with '?' and return the number of chars */
+  for(;;){
+    c = *tmp;
+    tmp++;
+    if(!c) break;
+    i++;
+    if(c<=' ') c = '?';
+    if(c>126)  c = '?';
+    *ret = c;
+    ret++;
+  }
+  *ret = '\0';
+  return i;
+}
diff -pruN 1.2.17-0.1/compat/oscap_platforms.h 1.3.6+dfsg-2/compat/oscap_platforms.h
--- 1.2.17-0.1/compat/oscap_platforms.h	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/oscap_platforms.h	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2018 Red Hat Inc., Durham, North Carolina.
+ * All Rights Reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef OPENSCAP_OSCAP_PLATFORMS_H
+#define OPENSCAP_OSCAP_PLATFORMS_H
+
+#undef OS_FREEBSD
+#undef OS_LINUX
+#undef OS_SOLARIS
+#undef OS_SUNOS
+#undef OS_WINDOWS
+#undef OS_AIX
+#undef OS_APPLE
+#undef OS_OSX
+
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+# define OS_FREEBSD
+#elif defined(__linux__) && defined(__GLIBC__)
+# define OS_LINUX_WITH_GLIBC
+#elif defined(__linux__) || defined(OS_LINUX_WITH_GLIBC)
+# define OS_LINUX
+#elif defined(sun) || defined(__sun)
+# define OS_SUN
+# if defined(__SVR4) || defined(__svr4__)
+#  define OS_SOLARIS
+# else
+#  define OS_SUNOS
+# endif
+#elif defined(_WIN32) || defined(_WIN64)
+# define OS_WINDOWS
+#elif defined(_AIX)
+# define OS_AIX
+#elif defined(__APPLE__)
+# define OS_APPLE
+# if defined(Macintosh) || defined(macintosh) || defined(__MACH__) || defined(__APPLE__)
+#  define OS_OSX
+# endif
+#elif defined(_hpux) || defined(hpux) || defined(__hpux)
+# define OS_HPUX
+#else
+# error "Sorry, your OS isn't supported."
+#endif
+
+#endif
diff -pruN 1.2.17-0.1/compat/strptime.c 1.3.6+dfsg-2/compat/strptime.c
--- 1.2.17-0.1/compat/strptime.c	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/strptime.c	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,996 @@
+/* Convert a string representation of time to a time value.
+   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public License as
+   published by the Free Software Foundation; either version 3 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library 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
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not, 
+   see <http://www.gnu.org/licenses/>.  */
+
+/* XXX This version of the implementation is not really complete.
+   Some of the fields cannot add information alone.  But if seeing
+   some of them in the same format (such as year, week and weekday)
+   this is enough information for determining the date.  */
+
+#include <string.h>
+#include <ctype.h>
+#include "compat.h"
+
+#ifndef __P
+# if defined (__GNUC__) || (defined (__STDC__) && __STDC__)
+#  define __P(args) args
+# else
+#  define __P(args) ()
+# endif  /* GCC.  */
+#endif  /* Not __P.  */
+
+#if ! HAVE_LOCALTIME_R && ! defined localtime_r
+# ifdef _LIBC
+#  define localtime_r __localtime_r
+# else
+/* Approximate localtime_r as best we can in its absence.  */
+#  define localtime_r my_localtime_r
+static struct tm *localtime_r __P ((const time_t *, struct tm *));
+static struct tm *
+localtime_r (t, tp)
+     const time_t *t;
+     struct tm *tp;
+{
+  struct tm *l = localtime (t);
+  if (! l)
+    return 0;
+  *tp = *l;
+  return tp;
+}
+# endif /* ! _LIBC */
+#endif /* ! HAVE_LOCALTIME_R && ! defined (localtime_r) */
+
+
+#define match_char(ch1, ch2) if (ch1 != ch2) return NULL
+#if defined __GNUC__ && __GNUC__ >= 2
+# define match_string(cs1, s2) \
+  ({ size_t len = strlen (cs1);						      \
+     int result = strncasecmp ((cs1), (s2), len) == 0;			      \
+     if (result) (s2) += len;						      \
+     result; })
+#elif defined _MSC_VER
+# define match_string(cs1, s2) \
+  (_strnicmp ((cs1), (s2), strlen (cs1)) ? 0 : ((s2) += strlen (cs1), 1))
+#else
+/* Oh come on.  Get a reasonable compiler.  */
+# define match_string(cs1, s2) \
+  (strncasecmp ((cs1), (s2), strlen (cs1)) ? 0 : ((s2) += strlen (cs1), 1))
+#endif
+/* We intentionally do not use isdigit() for testing because this will
+   lead to problems with the wide character version.  */
+#define get_number(from, to, n) \
+  do {									      \
+    int __n = n;							      \
+    val = 0;								      \
+    while (*rp == ' ')							      \
+      ++rp;								      \
+    if (*rp < '0' || *rp > '9')						      \
+      return NULL;							      \
+    do {								      \
+      val *= 10;							      \
+      val += *rp++ - '0';						      \
+    } while (--__n > 0 && val * 10 <= to && *rp >= '0' && *rp <= '9');	      \
+    if (val < from || val > to)						      \
+      return NULL;							      \
+  } while (0)
+#ifdef _NL_CURRENT
+# define get_alt_number(from, to, n) \
+  ({									      \
+    __label__ do_normal;						      \
+    if (*decided != raw)						      \
+      {									      \
+	const char *alts = _NL_CURRENT (LC_TIME, ALT_DIGITS);		      \
+	int __n = n;							      \
+	int any = 0;							      \
+	while (*rp == ' ')						      \
+	  ++rp;								      \
+	val = 0;							      \
+	do {								      \
+	  val *= 10;							      \
+	  while (*alts != '\0')						      \
+	    {								      \
+	      size_t len = strlen (alts);				      \
+	      if (strncasecmp (alts, rp, len) == 0)			      \
+	        break;							      \
+	      alts += len + 1;						      \
+	      ++val;							      \
+	    }								      \
+	  if (*alts == '\0')						      \
+	    {								      \
+	      if (*decided == not && ! any)				      \
+		goto do_normal;						      \
+	      /* If we haven't read anything it's an error.  */		      \
+	      if (! any)						      \
+		return NULL;						      \
+	      /* Correct the premature multiplication.  */		      \
+	      val /= 10;						      \
+	      break;							      \
+	    }								      \
+	  else								      \
+	    *decided = loc;						      \
+	} while (--__n > 0 && val * 10 <= to);				      \
+	if (val < from || val > to)					      \
+	  return NULL;							      \
+      }									      \
+    else								      \
+      {									      \
+       do_normal:							      \
+        get_number (from, to, n);					      \
+      }									      \
+    0;									      \
+  })
+#else
+# define get_alt_number(from, to, n) \
+  /* We don't have the alternate representation.  */			      \
+  get_number(from, to, n)
+#endif
+#define recursive(new_fmt) \
+  (*(new_fmt) != '\0'							      \
+   && (rp = strptime_internal (rp, (new_fmt), tm, decided, era_cnt)) != NULL)
+
+
+#ifdef _LIBC
+/* This is defined in locale/C-time.c in the GNU libc.  */
+extern const struct locale_data _nl_C_LC_TIME;
+extern const unsigned short int __mon_yday[2][13];
+
+# define weekday_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (DAY_1)].string)
+# define ab_weekday_name \
+  (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)].string)
+# define month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (MON_1)].string)
+# define ab_month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)].string)
+# define HERE_D_T_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (D_T_FMT)].string)
+# define HERE_D_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (D_FMT)].string)
+# define HERE_AM_STR (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (AM_STR)].string)
+# define HERE_PM_STR (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (PM_STR)].string)
+# define HERE_T_FMT_AMPM \
+  (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (T_FMT_AMPM)].string)
+# define HERE_T_FMT (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (T_FMT)].string)
+
+# define strncasecmp(s1, s2, n) __strncasecmp (s1, s2, n)
+#else
+static char const weekday_name[][10] =
+  {
+    "Sunday", "Monday", "Tuesday", "Wednesday",
+    "Thursday", "Friday", "Saturday"
+  };
+static char const ab_weekday_name[][4] =
+  {
+    "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
+  };
+static char const month_name[][10] =
+  {
+    "January", "February", "March", "April", "May", "June",
+    "July", "August", "September", "October", "November", "December"
+  };
+static char const ab_month_name[][4] =
+  {
+    "Jan", "Feb", "Mar", "Apr", "May", "Jun",
+    "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
+  };
+# define HERE_D_T_FMT "%a %b %e %H:%M:%S %Y"
+# define HERE_D_FMT "%m/%d/%y"
+# define HERE_AM_STR "AM"
+# define HERE_PM_STR "PM"
+# define HERE_T_FMT_AMPM "%I:%M:%S %p"
+# define HERE_T_FMT "%H:%M:%S"
+
+static const unsigned short int __mon_yday[2][13] =
+  {
+    /* Normal years.  */
+    { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
+    /* Leap years.  */
+    { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
+  };
+#endif
+
+/* Status of lookup: do we use the locale data or the raw data?  */
+enum locale_status { not, loc, raw };
+
+
+#ifndef __isleap
+/* Nonzero if YEAR is a leap year (every 4 years,
+   except every 100th isn't, and every 400th is).  */
+# define __isleap(year)	\
+  ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
+#endif
+
+/* Compute the day of the week.  */
+static void
+day_of_the_week (struct tm *tm)
+{
+  /* We know that January 1st 1970 was a Thursday (= 4).  Compute the
+     the difference between this data in the one on TM and so determine
+     the weekday.  */
+  int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
+  int wday = (-473
+	      + (365 * (tm->tm_year - 70))
+	      + (corr_year / 4)
+	      - ((corr_year / 4) / 25) + ((corr_year / 4) % 25 < 0)
+	      + (((corr_year / 4) / 25) / 4)
+	      + __mon_yday[0][tm->tm_mon]
+	      + tm->tm_mday - 1);
+  tm->tm_wday = ((wday % 7) + 7) % 7;
+}
+
+/* Compute the day of the year.  */
+static void
+day_of_the_year (struct tm *tm)
+{
+  tm->tm_yday = (__mon_yday[__isleap (1900 + tm->tm_year)][tm->tm_mon]
+		 + (tm->tm_mday - 1));
+}
+
+static char *
+#ifdef _LIBC
+internal_function
+#endif
+strptime_internal __P ((const char *rp, const char *fmt, struct tm *tm,
+			enum locale_status *decided, int era_cnt));
+
+static char *
+#ifdef _LIBC
+internal_function
+#endif
+strptime_internal (rp, fmt, tm, decided, era_cnt)
+     const char *rp;
+     const char *fmt;
+     struct tm *tm;
+     enum locale_status *decided;
+     int era_cnt;
+{
+  int cnt;
+  size_t val;
+  int have_I, is_pm;
+  int century, want_century;
+  int want_era;
+  int have_wday, want_xday;
+  int have_yday;
+  int have_mon, have_mday;
+#ifdef _NL_CURRENT
+  const char *rp_backup;
+  size_t num_eras;
+  struct era_entry *era;
+
+  era = NULL;
+#endif
+
+  have_I = is_pm = 0;
+  century = -1;
+  want_century = 0;
+  want_era = 0;
+
+  have_wday = want_xday = have_yday = have_mon = have_mday = 0;
+
+  while (*fmt != '\0')
+    {
+      /* A white space in the format string matches 0 more or white
+	 space in the input string.  */
+      if (isspace (*fmt))
+	{
+	  while (isspace (*rp))
+	    ++rp;
+	  ++fmt;
+	  continue;
+	}
+
+      /* Any character but `%' must be matched by the same character
+	 in the iput string.  */
+      if (*fmt != '%')
+	{
+	  match_char (*fmt++, *rp++);
+	  continue;
+	}
+
+      ++fmt;
+#ifndef _NL_CURRENT
+      /* We need this for handling the `E' modifier.  */
+    start_over:
+#endif
+
+#ifdef _NL_CURRENT
+      /* Make back up of current processing pointer.  */
+      rp_backup = rp;
+#endif
+
+      switch (*fmt++)
+	{
+	case '%':
+	  /* Match the `%' character itself.  */
+	  match_char ('%', *rp++);
+	  break;
+	case 'a':
+	case 'A':
+	  /* Match day of week.  */
+	  for (cnt = 0; cnt < 7; ++cnt)
+	    {
+#ifdef _NL_CURRENT
+	      if (*decided !=raw)
+		{
+		  if (match_string (_NL_CURRENT (LC_TIME, DAY_1 + cnt), rp))
+		    {
+		      if (*decided == not
+			  && strcmp (_NL_CURRENT (LC_TIME, DAY_1 + cnt),
+				     weekday_name[cnt]))
+			*decided = loc;
+		      break;
+		    }
+		  if (match_string (_NL_CURRENT (LC_TIME, ABDAY_1 + cnt), rp))
+		    {
+		      if (*decided == not
+			  && strcmp (_NL_CURRENT (LC_TIME, ABDAY_1 + cnt),
+				     ab_weekday_name[cnt]))
+			*decided = loc;
+		      break;
+		    }
+		}
+#endif
+	      if (*decided != loc
+		  && (match_string (weekday_name[cnt], rp)
+		      || match_string (ab_weekday_name[cnt], rp)))
+		{
+		  *decided = raw;
+		  break;
+		}
+	    }
+	  if (cnt == 7)
+	    /* Does not match a weekday name.  */
+	    return NULL;
+	  tm->tm_wday = cnt;
+	  have_wday = 1;
+	  break;
+	case 'b':
+	case 'B':
+	case 'h':
+	  /* Match month name.  */
+	  for (cnt = 0; cnt < 12; ++cnt)
+	    {
+#ifdef _NL_CURRENT
+	      if (*decided !=raw)
+		{
+		  if (match_string (_NL_CURRENT (LC_TIME, MON_1 + cnt), rp))
+		    {
+		      if (*decided == not
+			  && strcmp (_NL_CURRENT (LC_TIME, MON_1 + cnt),
+				     month_name[cnt]))
+			*decided = loc;
+		      break;
+		    }
+		  if (match_string (_NL_CURRENT (LC_TIME, ABMON_1 + cnt), rp))
+		    {
+		      if (*decided == not
+			  && strcmp (_NL_CURRENT (LC_TIME, ABMON_1 + cnt),
+				     ab_month_name[cnt]))
+			*decided = loc;
+		      break;
+		    }
+		}
+#endif
+	      if (match_string (month_name[cnt], rp)
+		  || match_string (ab_month_name[cnt], rp))
+		{
+		  *decided = raw;
+		  break;
+		}
+	    }
+	  if (cnt == 12)
+	    /* Does not match a month name.  */
+	    return NULL;
+	  tm->tm_mon = cnt;
+	  want_xday = 1;
+	  break;
+	case 'c':
+	  /* Match locale's date and time format.  */
+#ifdef _NL_CURRENT
+	  if (*decided != raw)
+	    {
+	      if (!recursive (_NL_CURRENT (LC_TIME, D_T_FMT)))
+		{
+		  if (*decided == loc)
+		    return NULL;
+		  else
+		    rp = rp_backup;
+		}
+	      else
+		{
+		  if (*decided == not &&
+		      strcmp (_NL_CURRENT (LC_TIME, D_T_FMT), HERE_D_T_FMT))
+		    *decided = loc;
+		  want_xday = 1;
+		  break;
+		}
+	      *decided = raw;
+	    }
+#endif
+	  if (!recursive (HERE_D_T_FMT))
+	    return NULL;
+	  want_xday = 1;
+	  break;
+	case 'C':
+	  /* Match century number.  */
+#ifdef _NL_CURRENT
+	match_century:
+#endif
+	  get_number (0, 99, 2);
+	  century = val;
+	  want_xday = 1;
+	  break;
+	case 'd':
+	case 'e':
+	  /* Match day of month.  */
+	  get_number (1, 31, 2);
+	  tm->tm_mday = val;
+	  have_mday = 1;
+	  want_xday = 1;
+	  break;
+	case 'F':
+	  if (!recursive ("%Y-%m-%d"))
+	    return NULL;
+	  want_xday = 1;
+	  break;
+	case 'x':
+#ifdef _NL_CURRENT
+	  if (*decided != raw)
+	    {
+	      if (!recursive (_NL_CURRENT (LC_TIME, D_FMT)))
+		{
+		  if (*decided == loc)
+		    return NULL;
+		  else
+		    rp = rp_backup;
+		}
+	      else
+		{
+		  if (*decided == not
+		      && strcmp (_NL_CURRENT (LC_TIME, D_FMT), HERE_D_FMT))
+		    *decided = loc;
+		  want_xday = 1;
+		  break;
+		}
+	      *decided = raw;
+	    }
+#endif
+	  /* Fall through.  */
+	case 'D':
+	  /* Match standard day format.  */
+	  if (!recursive (HERE_D_FMT))
+	    return NULL;
+	  want_xday = 1;
+	  break;
+	case 'k':
+	case 'H':
+	  /* Match hour in 24-hour clock.  */
+	  get_number (0, 23, 2);
+	  tm->tm_hour = val;
+	  have_I = 0;
+	  break;
+	case 'I':
+	  /* Match hour in 12-hour clock.  */
+	  get_number (1, 12, 2);
+	  tm->tm_hour = val % 12;
+	  have_I = 1;
+	  break;
+	case 'j':
+	  /* Match day number of year.  */
+	  get_number (1, 366, 3);
+	  tm->tm_yday = val - 1;
+	  have_yday = 1;
+	  break;
+	case 'm':
+	  /* Match number of month.  */
+	  get_number (1, 12, 2);
+	  tm->tm_mon = val - 1;
+	  have_mon = 1;
+	  want_xday = 1;
+	  break;
+	case 'M':
+	  /* Match minute.  */
+	  get_number (0, 59, 2);
+	  tm->tm_min = val;
+	  break;
+	case 'n':
+	case 't':
+	  /* Match any white space.  */
+	  while (isspace (*rp))
+	    ++rp;
+	  break;
+	case 'p':
+	  /* Match locale's equivalent of AM/PM.  */
+#ifdef _NL_CURRENT
+	  if (*decided != raw)
+	    {
+	      if (match_string (_NL_CURRENT (LC_TIME, AM_STR), rp))
+		{
+		  if (strcmp (_NL_CURRENT (LC_TIME, AM_STR), HERE_AM_STR))
+		    *decided = loc;
+		  break;
+		}
+	      if (match_string (_NL_CURRENT (LC_TIME, PM_STR), rp))
+		{
+		  if (strcmp (_NL_CURRENT (LC_TIME, PM_STR), HERE_PM_STR))
+		    *decided = loc;
+		  is_pm = 1;
+		  break;
+		}
+	      *decided = raw;
+	    }
+#endif
+	  if (!match_string (HERE_AM_STR, rp)) {
+	    if (match_string (HERE_PM_STR, rp)) {
+	      is_pm = 1;
+	    } else {
+	      return NULL;
+	    }
+	  }
+	  break;
+	case 'r':
+#ifdef _NL_CURRENT
+	  if (*decided != raw)
+	    {
+	      if (!recursive (_NL_CURRENT (LC_TIME, T_FMT_AMPM)))
+		{
+		  if (*decided == loc)
+		    return NULL;
+		  else
+		    rp = rp_backup;
+		}
+	      else
+		{
+		  if (*decided == not &&
+		      strcmp (_NL_CURRENT (LC_TIME, T_FMT_AMPM),
+			      HERE_T_FMT_AMPM))
+		    *decided = loc;
+		  break;
+		}
+	      *decided = raw;
+	    }
+#endif
+	  if (!recursive (HERE_T_FMT_AMPM))
+	    return NULL;
+	  break;
+	case 'R':
+	  if (!recursive ("%H:%M"))
+	    return NULL;
+	  break;
+	case 's':
+	  {
+	    /* The number of seconds may be very high so we cannot use
+	       the `get_number' macro.  Instead read the number
+	       character for character and construct the result while
+	       doing this.  */
+	    time_t secs = 0;
+	    if (*rp < '0' || *rp > '9')
+	      /* We need at least one digit.  */
+	      return NULL;
+
+	    do
+	      {
+		secs *= 10;
+		secs += *rp++ - '0';
+	      }
+	    while (*rp >= '0' && *rp <= '9');
+
+	    if (localtime_r (&secs, tm) == NULL)
+	      /* Error in function.  */
+	      return NULL;
+	  }
+	  break;
+	case 'S':
+	  get_number (0, 61, 2);
+	  tm->tm_sec = val;
+	  break;
+	case 'X':
+#ifdef _NL_CURRENT
+	  if (*decided != raw)
+	    {
+	      if (!recursive (_NL_CURRENT (LC_TIME, T_FMT)))
+		{
+		  if (*decided == loc)
+		    return NULL;
+		  else
+		    rp = rp_backup;
+		}
+	      else
+		{
+		  if (strcmp (_NL_CURRENT (LC_TIME, T_FMT), HERE_T_FMT))
+		    *decided = loc;
+		  break;
+		}
+	      *decided = raw;
+	    }
+#endif
+	  /* Fall through.  */
+	case 'T':
+	  if (!recursive (HERE_T_FMT))
+	    return NULL;
+	  break;
+	case 'u':
+	  get_number (1, 7, 1);
+	  tm->tm_wday = val % 7;
+	  have_wday = 1;
+	  break;
+	case 'g':
+	  get_number (0, 99, 2);
+	  /* XXX This cannot determine any field in TM.  */
+	  break;
+	case 'G':
+	  if (*rp < '0' || *rp > '9')
+	    return NULL;
+	  /* XXX Ignore the number since we would need some more
+	     information to compute a real date.  */
+	  do
+	    ++rp;
+	  while (*rp >= '0' && *rp <= '9');
+	  break;
+	case 'U':
+	case 'V':
+	case 'W':
+	  get_number (0, 53, 2);
+	  /* XXX This cannot determine any field in TM without some
+	     information.  */
+	  break;
+	case 'w':
+	  /* Match number of weekday.  */
+	  get_number (0, 6, 1);
+	  tm->tm_wday = val;
+	  have_wday = 1;
+	  break;
+	case 'y':
+#ifdef _NL_CURRENT
+	match_year_in_century:
+#endif
+	  /* Match year within century.  */
+	  get_number (0, 99, 2);
+	  /* The "Year 2000: The Millennium Rollover" paper suggests that
+	     values in the range 69-99 refer to the twentieth century.  */
+	  tm->tm_year = val >= 69 ? val : val + 100;
+	  /* Indicate that we want to use the century, if specified.  */
+	  want_century = 1;
+	  want_xday = 1;
+	  break;
+	case 'Y':
+	  /* Match year including century number.  */
+	  get_number (0, 9999, 4);
+	  tm->tm_year = val - 1900;
+	  want_century = 0;
+	  want_xday = 1;
+	  break;
+	case 'Z':
+	  /* XXX How to handle this?  */
+	  break;
+	case 'E':
+#ifdef _NL_CURRENT
+	  switch (*fmt++)
+	    {
+	    case 'c':
+	      /* Match locale's alternate date and time format.  */
+	      if (*decided != raw)
+		{
+		  const char *fmt = _NL_CURRENT (LC_TIME, ERA_D_T_FMT);
+
+		  if (*fmt == '\0')
+		    fmt = _NL_CURRENT (LC_TIME, D_T_FMT);
+
+		  if (!recursive (fmt))
+		    {
+		      if (*decided == loc)
+			return NULL;
+		      else
+			rp = rp_backup;
+		    }
+		  else
+		    {
+		      if (strcmp (fmt, HERE_D_T_FMT))
+			*decided = loc;
+		      want_xday = 1;
+		      break;
+		    }
+		  *decided = raw;
+		}
+	      /* The C locale has no era information, so use the
+		 normal representation.  */
+	      if (!recursive (HERE_D_T_FMT))
+		return NULL;
+	      want_xday = 1;
+	      break;
+	    case 'C':
+	      if (*decided != raw)
+		{
+		  if (era_cnt >= 0)
+		    {
+		      era = _nl_select_era_entry (era_cnt);
+		      if (match_string (era->era_name, rp))
+			{
+			  *decided = loc;
+			  break;
+			}
+		      else
+			return NULL;
+		    }
+		  else
+		    {
+		      num_eras = _NL_CURRENT_WORD (LC_TIME,
+						   _NL_TIME_ERA_NUM_ENTRIES);
+		      for (era_cnt = 0; era_cnt < (int) num_eras;
+			   ++era_cnt, rp = rp_backup)
+			{
+			  era = _nl_select_era_entry (era_cnt);
+			  if (match_string (era->era_name, rp))
+			    {
+			      *decided = loc;
+			      break;
+			    }
+			}
+		      if (era_cnt == (int) num_eras)
+			{
+			  era_cnt = -1;
+			  if (*decided == loc)
+			    return NULL;
+			}
+		      else
+			break;
+		    }
+
+		  *decided = raw;
+		}
+	      /* The C locale has no era information, so use the
+		 normal representation.  */
+	      goto match_century;
+ 	    case 'y':
+	      if (*decided == raw)
+		goto match_year_in_century;
+
+	      get_number(0, 9999, 4);
+	      tm->tm_year = val;
+	      want_era = 1;
+	      want_xday = 1;
+	      break;
+	    case 'Y':
+	      if (*decided != raw)
+		{
+		  num_eras = _NL_CURRENT_WORD (LC_TIME,
+					       _NL_TIME_ERA_NUM_ENTRIES);
+		  for (era_cnt = 0; era_cnt < (int) num_eras;
+		       ++era_cnt, rp = rp_backup)
+		    {
+		      era = _nl_select_era_entry (era_cnt);
+		      if (recursive (era->era_format))
+			break;
+		    }
+		  if (era_cnt == (int) num_eras)
+		    {
+		      era_cnt = -1;
+		      if (*decided == loc)
+			return NULL;
+		      else
+			rp = rp_backup;
+		    }
+		  else
+		    {
+		      *decided = loc;
+		      era_cnt = -1;
+		      break;
+		    }
+
+		  *decided = raw;
+		}
+	      get_number (0, 9999, 4);
+	      tm->tm_year = val - 1900;
+	      want_century = 0;
+	      want_xday = 1;
+	      break;
+	    case 'x':
+	      if (*decided != raw)
+		{
+		  const char *fmt = _NL_CURRENT (LC_TIME, ERA_D_FMT);
+
+		  if (*fmt == '\0')
+		    fmt = _NL_CURRENT (LC_TIME, D_FMT);
+
+		  if (!recursive (fmt))
+		    {
+		      if (*decided == loc)
+			return NULL;
+		      else
+			rp = rp_backup;
+		    }
+		  else
+		    {
+		      if (strcmp (fmt, HERE_D_FMT))
+			*decided = loc;
+		      break;
+		    }
+		  *decided = raw;
+		}
+	      if (!recursive (HERE_D_FMT))
+		return NULL;
+	      break;
+	    case 'X':
+	      if (*decided != raw)
+		{
+		  const char *fmt = _NL_CURRENT (LC_TIME, ERA_T_FMT);
+
+		  if (*fmt == '\0')
+		    fmt = _NL_CURRENT (LC_TIME, T_FMT);
+
+		  if (!recursive (fmt))
+		    {
+		      if (*decided == loc)
+			return NULL;
+		      else
+			rp = rp_backup;
+		    }
+		  else
+		    {
+		      if (strcmp (fmt, HERE_T_FMT))
+			*decided = loc;
+		      break;
+		    }
+		  *decided = raw;
+		}
+	      if (!recursive (HERE_T_FMT))
+		return NULL;
+	      break;
+	    default:
+	      return NULL;
+	    }
+	  break;
+#else
+	  /* We have no information about the era format.  Just use
+	     the normal format.  */
+	  if (*fmt != 'c' && *fmt != 'C' && *fmt != 'y' && *fmt != 'Y'
+	      && *fmt != 'x' && *fmt != 'X')
+	    /* This is an illegal format.  */
+	    return NULL;
+
+	  goto start_over;
+#endif
+	case 'O':
+	  switch (*fmt++)
+	    {
+	    case 'd':
+	    case 'e':
+	      /* Match day of month using alternate numeric symbols.  */
+	      get_alt_number (1, 31, 2);
+	      tm->tm_mday = val;
+	      have_mday = 1;
+	      want_xday = 1;
+	      break;
+	    case 'H':
+	      /* Match hour in 24-hour clock using alternate numeric
+		 symbols.  */
+	      get_alt_number (0, 23, 2);
+	      tm->tm_hour = val;
+	      have_I = 0;
+	      break;
+	    case 'I':
+	      /* Match hour in 12-hour clock using alternate numeric
+		 symbols.  */
+	      get_alt_number (1, 12, 2);
+	      tm->tm_hour = val - 1;
+	      have_I = 1;
+	      break;
+	    case 'm':
+	      /* Match month using alternate numeric symbols.  */
+	      get_alt_number (1, 12, 2);
+	      tm->tm_mon = val - 1;
+	      have_mon = 1;
+	      want_xday = 1;
+	      break;
+	    case 'M':
+	      /* Match minutes using alternate numeric symbols.  */
+	      get_alt_number (0, 59, 2);
+	      tm->tm_min = val;
+	      break;
+	    case 'S':
+	      /* Match seconds using alternate numeric symbols.  */
+	      get_alt_number (0, 61, 2);
+	      tm->tm_sec = val;
+	      break;
+	    case 'U':
+	    case 'V':
+	    case 'W':
+	      get_alt_number (0, 53, 2);
+	      /* XXX This cannot determine any field in TM without
+		 further information.  */
+	      break;
+	    case 'w':
+	      /* Match number of weekday using alternate numeric symbols.  */
+	      get_alt_number (0, 6, 1);
+	      tm->tm_wday = val;
+	      have_wday = 1;
+	      break;
+	    case 'y':
+	      /* Match year within century using alternate numeric symbols.  */
+	      get_alt_number (0, 99, 2);
+	      tm->tm_year = val >= 69 ? val : val + 100;
+	      want_xday = 1;
+	      break;
+	    default:
+	      return NULL;
+	    }
+	  break;
+	default:
+	  return NULL;
+	}
+    }
+
+  if (have_I && is_pm)
+    tm->tm_hour += 12;
+
+  if (century != -1)
+    {
+      if (want_century)
+	tm->tm_year = tm->tm_year % 100 + (century - 19) * 100;
+      else
+	/* Only the century, but not the year.  Strange, but so be it.  */
+	tm->tm_year = (century - 19) * 100;
+    }
+
+#ifdef _NL_CURRENT
+  if (era_cnt != -1)
+    {
+      era = _nl_select_era_entry(era_cnt);
+      if (want_era)
+	tm->tm_year = (era->start_date[0]
+		       + ((tm->tm_year - era->offset)
+			  * era->absolute_direction));
+      else
+	/* Era start year assumed.  */
+	tm->tm_year = era->start_date[0];
+    }
+  else
+#endif
+    if (want_era)
+      return NULL;
+
+  if (want_xday && !have_wday)
+    {
+      if ( !(have_mon && have_mday) && have_yday)
+	{
+	  /* We don't have tm_mon and/or tm_mday, compute them.  */
+	  int t_mon = 0;
+	  while (__mon_yday[__isleap(1900 + tm->tm_year)][t_mon] <= tm->tm_yday)
+	      t_mon++;
+	  if (!have_mon)
+	      tm->tm_mon = t_mon - 1;
+	  if (!have_mday)
+	      tm->tm_mday =
+		(tm->tm_yday
+		 - __mon_yday[__isleap(1900 + tm->tm_year)][t_mon - 1] + 1);
+	}
+      day_of_the_week (tm);
+    }
+  if (want_xday && !have_yday)
+    day_of_the_year (tm);
+
+  return rp;
+}
+
+
+char *strptime(const char *buf, const char *format, struct tm *tm)
+{
+  enum locale_status decided;
+
+#ifdef _NL_CURRENT
+  decided = not;
+#else
+  decided = raw;
+#endif
+  return strptime_internal (buf, format, tm, &decided, -1);
+}
diff -pruN 1.2.17-0.1/compat/strsep.c 1.3.6+dfsg-2/compat/strsep.c
--- 1.2.17-0.1/compat/strsep.c	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/compat/strsep.c	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2017 Red Hat Inc., Durham, North Carolina.
+ * All Rights Reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors:
+ *      Jan Černý <jcerny@redhat.com>
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <string.h>
+
+char *strsep(char **stringp, const char *delim)
+{
+	char *str = *stringp;
+	char *found = NULL;
+	if (str == NULL) {
+		return NULL;
+	}
+	const size_t delim_cnt = strlen(delim);
+	for (size_t i = 0; i < delim_cnt && found == NULL; i++) {
+		found = strchr(str, delim[i]);
+	}
+	if (found != NULL) {
+		*found = '\0';
+		*stringp = str + 1;
+	} else {
+		*stringp = NULL;
+	}
+	return str;
+}
diff -pruN 1.2.17-0.1/confgen.sh 1.3.6+dfsg-2/confgen.sh
--- 1.2.17-0.1/confgen.sh	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/confgen.sh	1970-01-01 00:00:00.000000000 +0000
@@ -1,25 +0,0 @@
-#!/bin/sh
-D="$(pwd)"
-
-echo -n "ac_probes.sh... "
-C="$(./ac_probes/ac_probes.sh "$D/ac_probes/configure.ac.tpl" "$D/ac_probes/" "$D/src/OVAL/probes/")"
-
-ret=$?
-if [ $ret -ne 0 ]; then
-    echo "failed: $ret"
-    exit $ret
-else
-    echo "$C" > configure.ac
-    echo "ok"
-fi
-
-echo -n "autogen.sh... "
-./autogen.sh
-
-ret=$?
-if [ $ret -ne 0 ]; then
-    echo "failed: $ret"
-    exit $ret
-else
-    echo "ok"
-fi
diff -pruN 1.2.17-0.1/config/snippet/arg-nonnull.h 1.3.6+dfsg-2/config/snippet/arg-nonnull.h
--- 1.2.17-0.1/config/snippet/arg-nonnull.h	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/config/snippet/arg-nonnull.h	1970-01-01 00:00:00.000000000 +0000
@@ -1,26 +0,0 @@
-/* A C macro for declaring that specific arguments must not be NULL.
-   Copyright (C) 2009-2014 Free Software Foundation, Inc.
-
-   This program is free software: you can redistribute it and/or modify it
-   under the terms of the GNU General Public License as published
-   by the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   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 for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-/* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools
-   that the values passed as arguments n, ..., m must be non-NULL pointers.
-   n = 1 stands for the first argument, n = 2 for the second argument etc.  */
-#ifndef _GL_ARG_NONNULL
-# if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3
-#  define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params))
-# else
-#  define _GL_ARG_NONNULL(params)
-# endif
-#endif
diff -pruN 1.2.17-0.1/config/snippet/c++defs.h 1.3.6+dfsg-2/config/snippet/c++defs.h
--- 1.2.17-0.1/config/snippet/c++defs.h	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/config/snippet/c++defs.h	1970-01-01 00:00:00.000000000 +0000
@@ -1,271 +0,0 @@
-/* C++ compatible function declaration macros.
-   Copyright (C) 2010-2014 Free Software Foundation, Inc.
-
-   This program is free software: you can redistribute it and/or modify it
-   under the terms of the GNU General Public License as published
-   by the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   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 for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-#ifndef _GL_CXXDEFS_H
-#define _GL_CXXDEFS_H
-
-/* The three most frequent use cases of these macros are:
-
-   * For providing a substitute for a function that is missing on some
-     platforms, but is declared and works fine on the platforms on which
-     it exists:
-
-       #if @GNULIB_FOO@
-       # if !@HAVE_FOO@
-       _GL_FUNCDECL_SYS (foo, ...);
-       # endif
-       _GL_CXXALIAS_SYS (foo, ...);
-       _GL_CXXALIASWARN (foo);
-       #elif defined GNULIB_POSIXCHECK
-       ...
-       #endif
-
-   * For providing a replacement for a function that exists on all platforms,
-     but is broken/insufficient and needs to be replaced on some platforms:
-
-       #if @GNULIB_FOO@
-       # if @REPLACE_FOO@
-       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
-       #   undef foo
-       #   define foo rpl_foo
-       #  endif
-       _GL_FUNCDECL_RPL (foo, ...);
-       _GL_CXXALIAS_RPL (foo, ...);
-       # else
-       _GL_CXXALIAS_SYS (foo, ...);
-       # endif
-       _GL_CXXALIASWARN (foo);
-       #elif defined GNULIB_POSIXCHECK
-       ...
-       #endif
-
-   * For providing a replacement for a function that exists on some platforms
-     but is broken/insufficient and needs to be replaced on some of them and
-     is additionally either missing or undeclared on some other platforms:
-
-       #if @GNULIB_FOO@
-       # if @REPLACE_FOO@
-       #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
-       #   undef foo
-       #   define foo rpl_foo
-       #  endif
-       _GL_FUNCDECL_RPL (foo, ...);
-       _GL_CXXALIAS_RPL (foo, ...);
-       # else
-       #  if !@HAVE_FOO@   or   if !@HAVE_DECL_FOO@
-       _GL_FUNCDECL_SYS (foo, ...);
-       #  endif
-       _GL_CXXALIAS_SYS (foo, ...);
-       # endif
-       _GL_CXXALIASWARN (foo);
-       #elif defined GNULIB_POSIXCHECK
-       ...
-       #endif
-*/
-
-/* _GL_EXTERN_C declaration;
-   performs the declaration with C linkage.  */
-#if defined __cplusplus
-# define _GL_EXTERN_C extern "C"
-#else
-# define _GL_EXTERN_C extern
-#endif
-
-/* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
-   declares a replacement function, named rpl_func, with the given prototype,
-   consisting of return type, parameters, and attributes.
-   Example:
-     _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)
-                                  _GL_ARG_NONNULL ((1)));
- */
-#define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
-  _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
-#define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \
-  _GL_EXTERN_C rettype rpl_func parameters_and_attributes
-
-/* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
-   declares the system function, named func, with the given prototype,
-   consisting of return type, parameters, and attributes.
-   Example:
-     _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...)
-                                  _GL_ARG_NONNULL ((1)));
- */
-#define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
-  _GL_EXTERN_C rettype func parameters_and_attributes
-
-/* _GL_CXXALIAS_RPL (func, rettype, parameters);
-   declares a C++ alias called GNULIB_NAMESPACE::func
-   that redirects to rpl_func, if GNULIB_NAMESPACE is defined.
-   Example:
-     _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));
- */
-#define _GL_CXXALIAS_RPL(func,rettype,parameters) \
-  _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters)
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
-    namespace GNULIB_NAMESPACE                                \
-    {                                                         \
-      rettype (*const func) parameters = ::rpl_func;          \
-    }                                                         \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#else
-# define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters);
-   is like  _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters);
-   except that the C function rpl_func may have a slightly different
-   declaration.  A cast is used to silence the "invalid conversion" error
-   that would otherwise occur.  */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \
-    namespace GNULIB_NAMESPACE                                     \
-    {                                                              \
-      rettype (*const func) parameters =                           \
-        reinterpret_cast<rettype(*)parameters>(::rpl_func);        \
-    }                                                              \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#else
-# define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIAS_SYS (func, rettype, parameters);
-   declares a C++ alias called GNULIB_NAMESPACE::func
-   that redirects to the system provided function func, if GNULIB_NAMESPACE
-   is defined.
-   Example:
-     _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));
- */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-  /* If we were to write
-       rettype (*const func) parameters = ::func;
-     like above in _GL_CXXALIAS_RPL_1, the compiler could optimize calls
-     better (remove an indirection through a 'static' pointer variable),
-     but then the _GL_CXXALIASWARN macro below would cause a warning not only
-     for uses of ::func but also for uses of GNULIB_NAMESPACE::func.  */
-# define _GL_CXXALIAS_SYS(func,rettype,parameters) \
-    namespace GNULIB_NAMESPACE                     \
-    {                                              \
-      static rettype (*func) parameters = ::func;  \
-    }                                              \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#else
-# define _GL_CXXALIAS_SYS(func,rettype,parameters) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters);
-   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);
-   except that the C function func may have a slightly different declaration.
-   A cast is used to silence the "invalid conversion" error that would
-   otherwise occur.  */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \
-    namespace GNULIB_NAMESPACE                          \
-    {                                                   \
-      static rettype (*func) parameters =               \
-        reinterpret_cast<rettype(*)parameters>(::func); \
-    }                                                   \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#else
-# define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2);
-   is like  _GL_CXXALIAS_SYS (func, rettype, parameters);
-   except that the C function is picked among a set of overloaded functions,
-   namely the one with rettype2 and parameters2.  Two consecutive casts
-   are used to silence the "cannot find a match" and "invalid conversion"
-   errors that would otherwise occur.  */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-  /* The outer cast must be a reinterpret_cast.
-     The inner cast: When the function is defined as a set of overloaded
-     functions, it works as a static_cast<>, choosing the designated variant.
-     When the function is defined as a single variant, it works as a
-     reinterpret_cast<>. The parenthesized cast syntax works both ways.  */
-# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \
-    namespace GNULIB_NAMESPACE                                                \
-    {                                                                         \
-      static rettype (*func) parameters =                                     \
-        reinterpret_cast<rettype(*)parameters>(                               \
-          (rettype2(*)parameters2)(::func));                                  \
-    }                                                                         \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#else
-# define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIASWARN (func);
-   causes a warning to be emitted when ::func is used but not when
-   GNULIB_NAMESPACE::func is used.  func must be defined without overloaded
-   variants.  */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-# define _GL_CXXALIASWARN(func) \
-   _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE)
-# define _GL_CXXALIASWARN_1(func,namespace) \
-   _GL_CXXALIASWARN_2 (func, namespace)
-/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,
-   we enable the warning only when not optimizing.  */
-# if !__OPTIMIZE__
-#  define _GL_CXXALIASWARN_2(func,namespace) \
-    _GL_WARN_ON_USE (func, \
-                     "The symbol ::" #func " refers to the system function. " \
-                     "Use " #namespace "::" #func " instead.")
-# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING
-#  define _GL_CXXALIASWARN_2(func,namespace) \
-     extern __typeof__ (func) func
-# else
-#  define _GL_CXXALIASWARN_2(func,namespace) \
-     _GL_EXTERN_C int _gl_cxxalias_dummy
-# endif
-#else
-# define _GL_CXXALIASWARN(func) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-/* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes);
-   causes a warning to be emitted when the given overloaded variant of ::func
-   is used but not when GNULIB_NAMESPACE::func is used.  */
-#if defined __cplusplus && defined GNULIB_NAMESPACE
-# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \
-   _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \
-                        GNULIB_NAMESPACE)
-# define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \
-   _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace)
-/* To work around GCC bug <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>,
-   we enable the warning only when not optimizing.  */
-# if !__OPTIMIZE__
-#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \
-    _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \
-                         "The symbol ::" #func " refers to the system function. " \
-                         "Use " #namespace "::" #func " instead.")
-# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING
-#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \
-     extern __typeof__ (func) func
-# else
-#  define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \
-     _GL_EXTERN_C int _gl_cxxalias_dummy
-# endif
-#else
-# define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \
-    _GL_EXTERN_C int _gl_cxxalias_dummy
-#endif
-
-#endif /* _GL_CXXDEFS_H */
diff -pruN 1.2.17-0.1/config/snippet/_Noreturn.h 1.3.6+dfsg-2/config/snippet/_Noreturn.h
--- 1.2.17-0.1/config/snippet/_Noreturn.h	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/config/snippet/_Noreturn.h	1970-01-01 00:00:00.000000000 +0000
@@ -1,10 +0,0 @@
-#if !defined _Noreturn && __STDC_VERSION__ < 201112
-# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
-      || 0x5110 <= __SUNPRO_C)
-#  define _Noreturn __attribute__ ((__noreturn__))
-# elif 1200 <= _MSC_VER
-#  define _Noreturn __declspec (noreturn)
-# else
-#  define _Noreturn
-# endif
-#endif
diff -pruN 1.2.17-0.1/config/snippet/warn-on-use.h 1.3.6+dfsg-2/config/snippet/warn-on-use.h
--- 1.2.17-0.1/config/snippet/warn-on-use.h	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/config/snippet/warn-on-use.h	1970-01-01 00:00:00.000000000 +0000
@@ -1,109 +0,0 @@
-/* A C macro for emitting warnings if a function is used.
-   Copyright (C) 2010-2014 Free Software Foundation, Inc.
-
-   This program is free software: you can redistribute it and/or modify it
-   under the terms of the GNU General Public License as published
-   by the Free Software Foundation; either version 3 of the License, or
-   (at your option) any later version.
-
-   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 for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
-
-/* _GL_WARN_ON_USE (function, "literal string") issues a declaration
-   for FUNCTION which will then trigger a compiler warning containing
-   the text of "literal string" anywhere that function is called, if
-   supported by the compiler.  If the compiler does not support this
-   feature, the macro expands to an unused extern declaration.
-
-   This macro is useful for marking a function as a potential
-   portability trap, with the intent that "literal string" include
-   instructions on the replacement function that should be used
-   instead.  However, one of the reasons that a function is a
-   portability trap is if it has the wrong signature.  Declaring
-   FUNCTION with a different signature in C is a compilation error, so
-   this macro must use the same type as any existing declaration so
-   that programs that avoid the problematic FUNCTION do not fail to
-   compile merely because they included a header that poisoned the
-   function.  But this implies that _GL_WARN_ON_USE is only safe to
-   use if FUNCTION is known to already have a declaration.  Use of
-   this macro implies that there must not be any other macro hiding
-   the declaration of FUNCTION; but undefining FUNCTION first is part
-   of the poisoning process anyway (although for symbols that are
-   provided only via a macro, the result is a compilation error rather
-   than a warning containing "literal string").  Also note that in
-   C++, it is only safe to use if FUNCTION has no overloads.
-
-   For an example, it is possible to poison 'getline' by:
-   - adding a call to gl_WARN_ON_USE_PREPARE([[#include <stdio.h>]],
-     [getline]) in configure.ac, which potentially defines
-     HAVE_RAW_DECL_GETLINE
-   - adding this code to a header that wraps the system <stdio.h>:
-     #undef getline
-     #if HAVE_RAW_DECL_GETLINE
-     _GL_WARN_ON_USE (getline, "getline is required by POSIX 2008, but"
-       "not universally present; use the gnulib module getline");
-     #endif
-
-   It is not possible to directly poison global variables.  But it is
-   possible to write a wrapper accessor function, and poison that
-   (less common usage, like &environ, will cause a compilation error
-   rather than issue the nice warning, but the end result of informing
-   the developer about their portability problem is still achieved):
-   #if HAVE_RAW_DECL_ENVIRON
-   static char ***rpl_environ (void) { return &environ; }
-   _GL_WARN_ON_USE (rpl_environ, "environ is not always properly declared");
-   # undef environ
-   # define environ (*rpl_environ ())
-   #endif
-   */
-#ifndef _GL_WARN_ON_USE
-
-# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)
-/* A compiler attribute is available in gcc versions 4.3.0 and later.  */
-#  define _GL_WARN_ON_USE(function, message) \
-extern __typeof__ (function) function __attribute__ ((__warning__ (message)))
-# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING
-/* Verify the existence of the function.  */
-#  define _GL_WARN_ON_USE(function, message) \
-extern __typeof__ (function) function
-# else /* Unsupported.  */
-#  define _GL_WARN_ON_USE(function, message) \
-_GL_WARN_EXTERN_C int _gl_warn_on_use
-# endif
-#endif
-
-/* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string")
-   is like _GL_WARN_ON_USE (function, "string"), except that the function is
-   declared with the given prototype, consisting of return type, parameters,
-   and attributes.
-   This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does
-   not work in this case.  */
-#ifndef _GL_WARN_ON_USE_CXX
-# if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__)
-#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
-extern rettype function parameters_and_attributes \
-     __attribute__ ((__warning__ (msg)))
-# elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING
-/* Verify the existence of the function.  */
-#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
-extern rettype function parameters_and_attributes
-# else /* Unsupported.  */
-#  define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \
-_GL_WARN_EXTERN_C int _gl_warn_on_use
-# endif
-#endif
-
-/* _GL_WARN_EXTERN_C declaration;
-   performs the declaration with C linkage.  */
-#ifndef _GL_WARN_EXTERN_C
-# if defined __cplusplus
-#  define _GL_WARN_EXTERN_C extern "C"
-# else
-#  define _GL_WARN_EXTERN_C extern
-# endif
-#endif
diff -pruN 1.2.17-0.1/config.h.in 1.3.6+dfsg-2/config.h.in
--- 1.2.17-0.1/config.h.in	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/config.h.in	2021-09-19 15:58:03.000000000 +0000
@@ -0,0 +1,142 @@
+#ifndef _OPENSCAP_CONFIG_H_
+#define _OPENSCAP_CONFIG_H_
+
+#define OPENSCAP_VERSION "@OPENSCAP_VERSION@"
+#define OPENSCAP_VERSION_MAJOR @OPENSCAP_VERSION_MAJOR@
+#define OPENSCAP_VERSION_MINOR @OPENSCAP_VERSION_MINOR@
+#define OPENSCAP_VERSION_PATCH @OPENSCAP_VERSION_PATCH@
+
+#cmakedefine LT_CURRENT_MINUS_AGE @LT_CURRENT_MINUS_AGE@
+
+#cmakedefine CMAKE_USE_PTHREADS_INIT @CMAKE_USE_PTHREADS_INIT@
+#if defined(CMAKE_USE_PTHREADS_INIT)
+#define OSCAP_THREAD_SAFE
+#endif
+
+#cmakedefine GCRYPT_FOUND
+#if defined(GCRYPT_FOUND)
+#define HAVE_GCRYPT
+#cmakedefine HAVE_GCRYCTL_SET_ENFORCED_FIPS_FLAG
+#endif
+
+#cmakedefine NSS3_FOUND
+#if defined(NSS3_FOUND)
+#define HAVE_NSS3
+#endif
+
+#define OSCAP_DEFAULT_SCHEMA_PATH "@OSCAP_DEFAULT_SCHEMA_PATH@"
+#define OSCAP_DEFAULT_XSLT_PATH "@OSCAP_DEFAULT_XSLT_PATH@"
+#define OSCAP_DEFAULT_CPE_PATH "@OSCAP_DEFAULT_CPE_PATH@"
+#define OSCAP_TEMP_DIR "@OSCAP_TEMP_DIR@"
+
+#cmakedefine HAVE_ATOMIC_BUILTINS
+
+#cmakedefine HAVE_ACL_EXTENDED_FILE
+#cmakedefine HAVE_BLKID_GET_TAG_VALUE
+#cmakedefine HAVE_CAP_GET_PID
+#cmakedefine HAVE_DEV_TO_TTY
+#cmakedefine HAVE_RPMREADCONFIGFILES
+#cmakedefine HAVE_HEADERFORMAT
+#cmakedefine HAVE_RPMFREECRYPTO
+#cmakedefine HAVE_RPMFREEFILESYSTEMS
+#cmakedefine HAVE_RPMVERIFYFILE
+
+#cmakedefine HAVE_RPMVERCMP
+#cmakedefine RPM46_FOUND
+#cmakedefine RPM47_FOUND
+
+#cmakedefine BZIP2_FOUND
+
+#cmakedefine HAVE_PTHREAD_TIMEDJOIN_NP
+#cmakedefine HAVE_PTHREAD_SETNAME_NP
+#cmakedefine HAVE_PTHREAD_GETNAME_NP
+#cmakedefine HAVE_CLOCK_GETTIME
+
+#cmakedefine HAVE_POSIX_MEMALIGN
+#cmakedefine HAVE_MEMALIGN
+#cmakedefine HAVE_FTS_OPEN
+
+#cmakedefine SEAP_MSGID_BITS @SEAP_MSGID_BITS@
+#cmakedefine WANT_BASE64
+#cmakedefine WANT_XBASE64
+
+#cmakedefine ENABLE_PROBES
+#if defined(ENABLE_PROBES)
+#define OVAL_PROBES_ENABLED
+#endif
+
+#cmakedefine HAVE_SYSLOG_H
+#cmakedefine HAVE_STDIO_EXT_H
+#cmakedefine CAP_FOUND
+#cmakedefine SELINUX_FOUND
+#cmakedefine HAVE_PROC_DEVNAME_H
+#cmakedefine HAVE_SHADOW_H
+#cmakedefine HAVE_SYS_SYSTEMINFO_H
+#cmakedefine HAVE_ACL_LIBACL_H
+#cmakedefine HAVE_SYS_ACL_H
+#cmakedefine HAVE_GETOPT_H
+#cmakedefine HAVE_UIO_H
+#cmakedefine HAVE_ATTR_XATTR_H
+#cmakedefine HAVE_SYS_XATTR_H
+#cmakedefine HAVE_SYS_EXTATTR_H
+
+#cmakedefine HAVE_STRSEP
+#cmakedefine HAVE_FLOCK
+#cmakedefine HAVE_STRPTIME
+
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_ENVIRONMENTVARIABLE58
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_FAMILY
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_FILEHASH
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_FILEHASH58
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_SQL
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_SQL57
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_SYSTEM_INFO
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_TEXTFILECONTENT54
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_VARIABLE
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_XMLFILECONTENT
+#cmakedefine OPENSCAP_PROBE_INDEPENDENT_YAMLFILECONTENT
+#cmakedefine OPENSCAP_PROBE_LINUX_DPKGINFO
+#cmakedefine OPENSCAP_PROBE_LINUX_IFLISTENERS
+#cmakedefine OPENSCAP_PROBE_LINUX_INETLISTENINGSERVERS
+#cmakedefine OPENSCAP_PROBE_LINUX_PARTITION
+#cmakedefine OPENSCAP_PROBE_LINUX_RPMINFO
+#cmakedefine OPENSCAP_PROBE_LINUX_RPMVERIFY
+#cmakedefine OPENSCAP_PROBE_LINUX_RPMVERIFYFILE
+#cmakedefine OPENSCAP_PROBE_LINUX_RPMVERIFYPACKAGE
+#cmakedefine OPENSCAP_PROBE_LINUX_SELINUXBOOLEAN
+#cmakedefine OPENSCAP_PROBE_LINUX_SELINUXSECURITYCONTEXT
+#cmakedefine OPENSCAP_PROBE_LINUX_SYSTEMDUNITDEPENDENCY
+#cmakedefine OPENSCAP_PROBE_LINUX_SYSTEMDUNITPROPERTY
+#cmakedefine OPENSCAP_PROBE_SOLARIS_ISAINFO
+#cmakedefine OPENSCAP_PROBE_UNIX_DNSCACHE
+#cmakedefine OPENSCAP_PROBE_UNIX_FILE
+#cmakedefine OPENSCAP_PROBE_UNIX_FILEEXTENDEDATTRIBUTE
+#cmakedefine OPENSCAP_PROBE_UNIX_GCONF
+#cmakedefine OPENSCAP_PROBE_UNIX_INTERFACE
+#cmakedefine OPENSCAP_PROBE_UNIX_PASSWORD
+#cmakedefine OPENSCAP_PROBE_UNIX_PROCESS
+#cmakedefine OPENSCAP_PROBE_UNIX_PROCESS58
+#cmakedefine OPENSCAP_PROBE_UNIX_ROUTINGTABLE
+#cmakedefine OPENSCAP_PROBE_UNIX_RUNLEVEL
+#cmakedefine OPENSCAP_PROBE_UNIX_SHADOW
+#cmakedefine OPENSCAP_PROBE_UNIX_SYMLINK
+#cmakedefine OPENSCAP_PROBE_UNIX_SYSCTL
+#cmakedefine OPENSCAP_PROBE_UNIX_UNAME
+#cmakedefine OPENSCAP_PROBE_UNIX_XINETD
+#cmakedefine OPENSCAP_PROBE_WINDOWS_ACCESSTOKEN
+#cmakedefine OPENSCAP_PROBE_WINDOWS_REGISTRY
+#cmakedefine OPENSCAP_PROBE_WINDOWS_WMI57
+
+#cmakedefine PREFERRED_PYTHON_PATH "@PREFERRED_PYTHON_PATH@"
+#cmakedefine PYTHON2_PATH "@PYTHON2_PATH@"
+#cmakedefine PYTHON3_PATH "@PYTHON3_PATH@"
+
+#cmakedefine OPENSCAP_ENABLE_SHA1
+#cmakedefine OPENSCAP_ENABLE_MD5
+
+#include "oscap_platforms.h"
+#include "compat.h"
+
+#endif
diff -pruN 1.2.17-0.1/configure.ac 1.3.6+dfsg-2/configure.ac
--- 1.2.17-0.1/configure.ac	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/configure.ac	1970-01-01 00:00:00.000000000 +0000
@@ -1,1864 +0,0 @@
-# ! MAKE SURE YOU ARE EDITING THE ac_probes/configure.ac.tpl FILE,
-# ! THE configure.ac FILE ITSELF IS GENERATED FROM THE TEMPLATE USING
-# ! ac_probes/ac_probes.sh
-
-#                                               -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
-AC_PREREQ(2.59)
-AC_INIT([openscap], [1.2.17], [open-scap-list@redhat.com])
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_AUX_DIR([config])
-AC_CONFIG_MACRO_DIR([m4])
-
-AM_INIT_AUTOMAKE([foreign tar-pax])
-
-# If automake supports "silent rules", enable them by default
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_DISABLE_STATIC
-#build dll on windows(cygwin)
-AC_LIBTOOL_WIN32_DLL
-
-# Checks for programs.
-AC_PROG_CC
-gl_EARLY
-gl_INIT
-AM_PROG_LIBTOOL
-AM_PROG_CC_C_O
-AC_PROG_CXX
-AC_PROG_INSTALL
-AC_PROG_LN_S
-AC_PROG_MAKE_SET
-AC_PROG_LIBTOOL
-
-# swig
-AC_PROG_SWIG([])
-
-# libtool versioning
-# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
-
-## increment if the interface has additions, changes, removals.
-LT_CURRENT=22
-
-## increment any time the source changes; set 0 to if you increment CURRENT
-LT_REVISION=1
-
-## increment if any interfaces have been added; set to 0
-## if any interfaces have been changed or removed. removal has
-## precedence over adding, so set to 0 if both happened.
-LT_AGE=14
-
-LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
-
-AC_SUBST(LT_CURRENT)
-AC_SUBST(LT_REVISION)
-AC_SUBST(LT_AGE)
-AC_SUBST(LT_CURRENT_MINUS_AGE)
-
-AC_DEFINE_UNQUOTED([LT_CURRENT_MINUS_AGE], [$LT_CURRENT_MINUS_AGE], [LT_CURRENT - LT_AGE])
-
-AC_DEFUN([canonical_wrap], [AC_REQUIRE([AC_CANONICAL_HOST])])
-canonical_wrap
-
-# Compiler flags
-CFLAGS="$CFLAGS -pipe -std=c99 -W -Wall -Wnonnull -Wshadow -Wformat -Wundef -Wno-unused-parameter -Wmissing-prototypes -Wno-unknown-pragmas -D_GNU_SOURCE -DOSCAP_THREAD_SAFE -D_POSIX_C_SOURCE=200112L"
-
-case $host in
-  *solaris*) :
-    CFLAGS="$CFLAGS -D__EXTENSIONS__" ;;
-esac
-
-CFLAGS_OPTIMIZED="-O2 -finline-functions"
-CFLAGS_DEBUGGING="-fno-inline-functions -O0 -g3"
-CFLAGS_NODEBUG="-Wno-unused-function"
-
-my_save_cflags="$CFLAGS"
-CFLAGS="$CFLAGS -Werror=format-security"
-AC_MSG_CHECKING([whether CC supports -Werror=format-security])
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
-    [AC_MSG_RESULT([yes])]
-    [AM_CFLAGS="-Werror=format-security"],
-    [AC_MSG_RESULT([no])]
-)
-CFLAGS="$my_save_cflags"
-AC_SUBST([AM_CFLAGS])
-
-
-probe_family_req_deps_ok=yes
-probe_family_req_deps_missing=
-probe_family_opt_deps_ok=yes
-probe_family_opt_deps_missing=
-probe_textfilecontent_req_deps_ok=yes
-probe_textfilecontent_req_deps_missing=
-probe_textfilecontent_opt_deps_ok=yes
-probe_textfilecontent_opt_deps_missing=
-probe_textfilecontent54_req_deps_ok=yes
-probe_textfilecontent54_req_deps_missing=
-probe_textfilecontent54_opt_deps_ok=yes
-probe_textfilecontent54_opt_deps_missing=
-probe_variable_req_deps_ok=yes
-probe_variable_req_deps_missing=
-probe_variable_opt_deps_ok=yes
-probe_variable_opt_deps_missing=
-probe_xmlfilecontent_req_deps_ok=yes
-probe_xmlfilecontent_req_deps_missing=
-probe_xmlfilecontent_opt_deps_ok=yes
-probe_xmlfilecontent_opt_deps_missing=
-probe_filehash_req_deps_ok=yes
-probe_filehash_req_deps_missing=
-probe_filehash_opt_deps_ok=yes
-probe_filehash_opt_deps_missing=
-probe_filehash58_req_deps_ok=yes
-probe_filehash58_req_deps_missing=
-probe_filehash58_opt_deps_ok=yes
-probe_filehash58_opt_deps_missing=
-probe_environmentvariable_req_deps_ok=yes
-probe_environmentvariable_req_deps_missing=
-probe_environmentvariable_opt_deps_ok=yes
-probe_environmentvariable_opt_deps_missing=
-probe_environmentvariable58_req_deps_ok=yes
-probe_environmentvariable58_req_deps_missing=
-probe_environmentvariable58_opt_deps_ok=yes
-probe_environmentvariable58_opt_deps_missing=
-probe_sql_req_deps_ok=yes
-probe_sql_req_deps_missing=
-probe_sql_opt_deps_ok=yes
-probe_sql_opt_deps_missing=
-probe_sql57_req_deps_ok=yes
-probe_sql57_req_deps_missing=
-probe_sql57_opt_deps_ok=yes
-probe_sql57_opt_deps_missing=
-probe_ldap57_req_deps_ok=yes
-probe_ldap57_req_deps_missing=
-probe_ldap57_opt_deps_ok=yes
-probe_ldap57_opt_deps_missing=
-probe_dnscache_req_deps_ok=yes
-probe_dnscache_req_deps_missing=
-probe_dnscache_opt_deps_ok=yes
-probe_dnscache_opt_deps_missing=
-probe_runlevel_req_deps_ok=yes
-probe_runlevel_req_deps_missing=
-probe_runlevel_opt_deps_ok=yes
-probe_runlevel_opt_deps_missing=
-probe_file_req_deps_ok=yes
-probe_file_req_deps_missing=
-probe_file_opt_deps_ok=yes
-probe_file_opt_deps_missing=
-probe_fileextendedattribute_req_deps_ok=yes
-probe_fileextendedattribute_req_deps_missing=
-probe_fileextendedattribute_opt_deps_ok=yes
-probe_fileextendedattribute_opt_deps_missing=
-probe_password_req_deps_ok=yes
-probe_password_req_deps_missing=
-probe_password_opt_deps_ok=yes
-probe_password_opt_deps_missing=
-probe_process_req_deps_ok=yes
-probe_process_req_deps_missing=
-probe_process_opt_deps_ok=yes
-probe_process_opt_deps_missing=
-probe_process58_req_deps_ok=yes
-probe_process58_req_deps_missing=
-probe_process58_opt_deps_ok=yes
-probe_process58_opt_deps_missing=
-probe_shadow_req_deps_ok=yes
-probe_shadow_req_deps_missing=
-probe_shadow_opt_deps_ok=yes
-probe_shadow_opt_deps_missing=
-probe_uname_req_deps_ok=yes
-probe_uname_req_deps_missing=
-probe_uname_opt_deps_ok=yes
-probe_uname_opt_deps_missing=
-probe_interface_req_deps_ok=yes
-probe_interface_req_deps_missing=
-probe_interface_opt_deps_ok=yes
-probe_interface_opt_deps_missing=
-probe_xinetd_req_deps_ok=yes
-probe_xinetd_req_deps_missing=
-probe_xinetd_opt_deps_ok=yes
-probe_xinetd_opt_deps_missing=
-probe_sysctl_req_deps_ok=yes
-probe_sysctl_req_deps_missing=
-probe_sysctl_opt_deps_ok=yes
-probe_sysctl_opt_deps_missing=
-probe_routingtable_req_deps_ok=yes
-probe_routingtable_req_deps_missing=
-probe_routingtable_opt_deps_ok=yes
-probe_routingtable_opt_deps_missing=
-probe_symlink_req_deps_ok=yes
-probe_symlink_req_deps_missing=
-probe_symlink_opt_deps_ok=yes
-probe_symlink_opt_deps_missing=
-probe_gconf_req_deps_ok=yes
-probe_gconf_req_deps_missing=
-probe_gconf_opt_deps_ok=yes
-probe_gconf_opt_deps_missing=
-probe_isainfo_req_deps_ok=yes
-probe_isainfo_req_deps_missing=
-probe_isainfo_opt_deps_ok=yes
-probe_isainfo_opt_deps_missing=
-probe_package_req_deps_ok=yes
-probe_package_req_deps_missing=
-probe_package_opt_deps_ok=yes
-probe_package_opt_deps_missing=
-probe_patch_req_deps_ok=yes
-probe_patch_req_deps_missing=
-probe_patch_opt_deps_ok=yes
-probe_patch_opt_deps_missing=
-probe_smf_req_deps_ok=yes
-probe_smf_req_deps_missing=
-probe_smf_opt_deps_ok=yes
-probe_smf_opt_deps_missing=
-probe_partition_req_deps_ok=yes
-probe_partition_req_deps_missing=
-probe_partition_opt_deps_ok=yes
-probe_partition_opt_deps_missing=
-probe_inetlisteningservers_req_deps_ok=yes
-probe_inetlisteningservers_req_deps_missing=
-probe_inetlisteningservers_opt_deps_ok=yes
-probe_inetlisteningservers_opt_deps_missing=
-probe_iflisteners_req_deps_ok=yes
-probe_iflisteners_req_deps_missing=
-probe_iflisteners_opt_deps_ok=yes
-probe_iflisteners_opt_deps_missing=
-probe_selinuxboolean_req_deps_ok=yes
-probe_selinuxboolean_req_deps_missing=
-probe_selinuxboolean_opt_deps_ok=yes
-probe_selinuxboolean_opt_deps_missing=
-probe_selinuxsecuritycontext_req_deps_ok=yes
-probe_selinuxsecuritycontext_req_deps_missing=
-probe_selinuxsecuritycontext_opt_deps_ok=yes
-probe_selinuxsecuritycontext_opt_deps_missing=
-probe_rpminfo_req_deps_ok=yes
-probe_rpminfo_req_deps_missing=
-probe_rpminfo_opt_deps_ok=yes
-probe_rpminfo_opt_deps_missing=
-probe_rpmverify_req_deps_ok=yes
-probe_rpmverify_req_deps_missing=
-probe_rpmverify_opt_deps_ok=yes
-probe_rpmverify_opt_deps_missing=
-probe_rpmverifyfile_req_deps_ok=yes
-probe_rpmverifyfile_req_deps_missing=
-probe_rpmverifyfile_opt_deps_ok=yes
-probe_rpmverifyfile_opt_deps_missing=
-probe_rpmverifypackage_req_deps_ok=yes
-probe_rpmverifypackage_req_deps_missing=
-probe_rpmverifypackage_opt_deps_ok=yes
-probe_rpmverifypackage_opt_deps_missing=
-probe_dpkginfo_req_deps_ok=yes
-probe_dpkginfo_req_deps_missing=
-probe_dpkginfo_opt_deps_ok=yes
-probe_dpkginfo_opt_deps_missing=
-probe_systemdunitproperty_req_deps_ok=yes
-probe_systemdunitproperty_req_deps_missing=
-probe_systemdunitproperty_opt_deps_ok=yes
-probe_systemdunitproperty_opt_deps_missing=
-probe_systemdunitdependency_req_deps_ok=yes
-probe_systemdunitdependency_req_deps_missing=
-probe_systemdunitdependency_opt_deps_ok=yes
-probe_systemdunitdependency_opt_deps_missing=
-
-#
-# env
-#
-AC_CHECK_PROG(
-  [HAVE_ENV],
-  [env],
-  [yes],,,
-)
-
-AM_CONDITIONAL(ENV_PRESENT, [test x"${HAVE_ENV}" = xyes])
-
-#
-# Valgrind
-#
-AC_CHECK_PROG(
-  [HAVE_VALGRIND],
-  [valgrind],
-  [yes],,,
-)
-
-AM_CONDITIONAL(VALGRIND_PRESENT, [test x"${HAVE_VALGRIND}" = xyes])
-
-AC_HEADER_STDC
-AC_HEADER_STDBOOL
-AC_TYPE_SIZE_T
-
-AC_FUNC_MALLOC
-AC_FUNC_REALLOC
-
-# Check for pthreads support: http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=m4/ax_pthread.m4
-AX_PTHREAD()
-
-if test "x$ax_pthread_ok" != "xyes"; then
-   AC_MSG_FAILURE(pthread library is missing)
-fi
-
-SAVE_LIBS=$LIBS
-SAVE_CFLAGS=$CFLAGS
-
-CFLAGS="$CFLAGS -D_GNU_SOURCE"
-LIBS="$PTHREAD_LIBS"
-
-AC_CHECK_FUNCS([pthread_timedjoin_np pthread_setname_np pthread_getname_np clock_gettime])
-
-CFLAGS=$SAVE_CFLAGS
-LIBS=$SAVE_LIBS
-
-AC_SUBST([PTHREAD_CFLAGS])
-AC_SUBST([PTHREAD_LIBS])
-
-
-PKG_CHECK_MODULES([curl], [libcurl >= 7.12.0],[],
-                          AC_MSG_FAILURE([libcurl devel support is missing]))
-
-PKG_CHECK_MODULES([xml2], [libxml-2.0 >= 2.0],[],
-			  AC_MSG_FAILURE([libxml-2.0 devel support is missing]))
-
-PKG_CHECK_MODULES([xslt], [libxslt >= 1.1],[],
-			  AC_MSG_FAILURE([libxslt devel support is missing]))
-
-PKG_CHECK_MODULES([exslt], [libexslt >= 0.8],[],
-			  AC_MSG_FAILURE([libexslt devel support is missing]))
-
-AC_CHECK_HEADER(pcre.h, , [AC_MSG_ERROR([pcre.h is missing] )])
-
-crapi_CFLAGS=""
-crapi_LIBS=""
-
-if test "${with_crypto}" = ""; then
-   with_crypto=gcrypt
-fi
-
-case "${with_crypto}" in
-      nss3)
-	PKG_CHECK_MODULES([nss3], [nss >= 3.0],[],
-			  AC_MSG_FAILURE([libnss3 devel support is missing]))
-
-	crapi_libname="NSS 3.x"
-	crapi_CFLAGS=$nss3_CFLAGS
-	crapi_LIBS=$nss3_LIBS
-        AC_DEFINE([HAVE_NSS3], [1], [Define to 1 if you have 'NSS' library.])
-        ;;
-    gcrypt)
-	SAVE_LIBS=$LIBS
-        AC_CHECK_LIB([gcrypt], [gcry_check_version],
-                     [crapi_CFLAGS=`libgcrypt-config --cflags`;
-                      crapi_LIBS=`libgcrypt-config --libs`;
-                      crapi_libname="GCrypt";],
-                     [AC_MSG_ERROR([library 'gcrypt' is required for GCrypt.])],
-                     [])
-        AC_DEFINE([HAVE_GCRYPT], [1], [Define to 1 if you have 'gcrypt' library.])
-	AC_CACHE_CHECK([for GCRYCTL_SET_ENFORCED_FIPS_FLAG],
-                    [ac_cv_gcryctl_set_enforced_fips_flag],
-                    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include<gcrypt.h>],
-                                                        [return GCRYCTL_SET_ENFORCED_FIPS_FLAG;])],
-                                       [ac_cv_gcryctl_set_enforced_fips_flag=yes],
-                                       [ac_cv_gcryctl_set_enforced_fips_flag=no])])
-
-	if test "${ac_cv_gcryctl_set_enforced_fips_flag}" == "yes"; then
-	   AC_DEFINE([HAVE_GCRYCTL_SET_ENFORCED_FIPS_FLAG], [1], [Define to 1 if you have 'gcrypt' library with GCRYCTL_SET_ENFORCED_FIPS_FLAG.])
-	fi
-	LIBS=$SAVE_LIBS
-        ;;
-         *)
-          AC_MSG_ERROR([unknown crypto backend])
-        ;;
-esac
-
-AC_SUBST(crapi_CFLAGS)
-AC_SUBST(crapi_LIBS)
-
-AC_CHECK_FUNCS([fts_open posix_memalign memalign])
-AC_CHECK_FUNC(sigwaitinfo, [sigwaitinfo_LIBS=""], [sigwaitinfo_LIBS="-lrt"])
-AC_SUBST(sigwaitinfo_LIBS)
-
-# libopenscap links against librpm if found. Otherwise we carry own implementation of rpmvercmp.
-echo
-echo '* Checking for rpm library  (optional dependency of libopenscap) '
-PKG_CHECK_MODULES([rpm], [rpm >= 4.4],[
-	SAVE_LIBS=$LIBS
-	AC_DEFINE([HAVE_RPMVERCMP], [1], [Define to 1 if there is rpmvercmp available.])
-	AC_SUBST([rpm_CFLAGS])
-	AC_SUBST([rpm_LIBS])
-	LIBS=$SAVE_LIBS
-],[
-	AC_MSG_NOTICE([!!! librpm not found. The rpmvercmp function will be emulated. !!!])
-])
-PKG_CHECK_MODULES([rpm], [rpm >= 4.6],[
-	AC_DEFINE([HAVE_RPM46], [1], [Define to 1 if rpm is newer than 4.6.])
-],[
-	AC_MSG_NOTICE([librpm is older than 4.6])
-])
-PKG_CHECK_MODULES([rpm], [rpm >= 4.7],[
-	AC_DEFINE([HAVE_RPM47], [1], [Define to 1 if rpm is newer than 4.7.])
-],[
-	AC_MSG_NOTICE([librpm is older than 4.7])
-])
-echo
-echo '* Checking for bz2 library (optional dependency of libopenscap)'
-AC_CHECK_LIB([bz2], [BZ2_bzReadOpen],
-	[
-	        AC_DEFINE([HAVE_BZ2], [1], [Define to 1 if there is libbz2 available.])
-	        LIBS="$LIBS -lbz2"
-		AC_CHECK_PROG([HAVE_BZIP2],[bzip2],[yes],,,)
-	],[
-	        AC_MSG_NOTICE([!!! libbz2 not found. Bzip2 support will be disabled !!!])
-	])
-AM_CONDITIONAL([HAVE_BZIP2], [test "x${HAVE_BZIP2}" = xyes])
-
-
-SAVE_CPPFLAGS="$CPPFLAGS"
-CPPFLAGS="$CPPFLAGS  $(pkg-config libapt-pkg --cflags) $(pkg-config blkid --cflags) $(pkg-config dbus-1 --cflags) $(pkg-config gconf-2.0 --cflags) $(pkg-config libpcre --cflags) $(pkg-config libprocps --cflags) $(pkg-config rpm --cflags) $(pkg-config libselinux --cflags) $(pkg-config libxml-2.0 --cflags) $(pkg-config libxslt --cflags) "
-
-echo
-echo ' * Checking presence of required headers for the family probe'
-AC_CHECK_HEADERS([string.h ],[],[probe_family_req_deps_ok=no; probe_family_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the textfilecontent probe'
-AC_CHECK_HEADERS([fcntl.h limits.h stdio.h string.h sys/stat.h sys/types.h ],[],[probe_textfilecontent_req_deps_ok=no; probe_textfilecontent_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the textfilecontent54 probe'
-AC_CHECK_HEADERS([errno.h fcntl.h limits.h stdio.h stdlib.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_textfilecontent54_req_deps_ok=no; probe_textfilecontent54_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the variable probe'
-AC_CHECK_HEADERS([errno.h stdio.h stdlib.h string.h ],[],[probe_variable_req_deps_ok=no; probe_variable_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the xmlfilecontent probe'
-AC_CHECK_HEADERS([libxml/parser.h libxml/tree.h libxml/xpath.h libxml/xpathInternals.h limits.h stdlib.h string.h ],[],[probe_xmlfilecontent_req_deps_ok=no; probe_xmlfilecontent_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the filehash probe'
-AC_CHECK_HEADERS([errno.h fcntl.h limits.h pthread.h stdlib.h string.h sys/stat.h sys/types.h ],[],[probe_filehash_req_deps_ok=no; probe_filehash_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the filehash58 probe'
-AC_CHECK_HEADERS([errno.h fcntl.h limits.h pthread.h stdlib.h string.h sys/stat.h sys/types.h ],[],[probe_filehash58_req_deps_ok=no; probe_filehash58_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the environmentvariable probe'
-AC_CHECK_HEADERS([errno.h stdio.h stdlib.h string.h ],[],[probe_environmentvariable_req_deps_ok=no; probe_environmentvariable_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the environmentvariable58 probe'
-AC_CHECK_HEADERS([dirent.h errno.h fcntl.h stdio.h stdlib.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_environmentvariable58_req_deps_ok=no; probe_environmentvariable58_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the sql probe'
-AC_CHECK_HEADERS([ctype.h errno.h opendbx/api.h stdlib.h string.h time.h ],[],[probe_sql_req_deps_ok=no; probe_sql_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the sql57 probe'
-AC_CHECK_HEADERS([ctype.h errno.h opendbx/api.h stdlib.h string.h time.h ],[],[probe_sql57_req_deps_ok=no; probe_sql57_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the ldap57 probe'
-AC_CHECK_HEADERS([ldap.h pthread.h stdbool.h ],[],[probe_ldap57_req_deps_ok=no; probe_ldap57_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the dnscache probe'
-AC_CHECK_HEADERS([string.h ],[],[probe_dnscache_req_deps_ok=no; probe_dnscache_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the runlevel probe'
-AC_CHECK_HEADERS([assert.h dirent.h errno.h limits.h stdbool.h stdio.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_runlevel_req_deps_ok=no; probe_runlevel_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the file probe'
-AC_CHECK_HEADERS([errno.h limits.h pthread.h stdlib.h string.h sys/stat.h ],[],[probe_file_req_deps_ok=no; probe_file_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of optional headers for the file probe'
-AC_CHECK_HEADERS([acl/libacl.h sys/acl.h sys/types.h ],[],[probe_file_opt_deps_ok=no],[-])
-
-echo
-echo ' * Checking presence of required headers for the fileextendedattribute probe'
-AC_CHECK_HEADERS([attr/xattr.h errno.h limits.h pthread.h stdlib.h string.h sys/stat.h sys/types.h ],[],[probe_fileextendedattribute_req_deps_ok=no; probe_fileextendedattribute_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the password probe'
-AC_CHECK_HEADERS([errno.h lastlog.h paths.h pwd.h stdio.h stdlib.h string.h ],[],[probe_password_req_deps_ok=no; probe_password_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the process probe'
-AC_CHECK_HEADERS([dirent.h errno.h sched.h time.h ],[],[probe_process_req_deps_ok=no; probe_process_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of optional headers for the process probe'
-AC_CHECK_HEADERS([fcntl.h proc/devname.h stdio_ext.h stdio.h stdlib.h string.h sys/stat.h sys/sysmacros.h sys/types.h unistd.h ],[],[probe_process_opt_deps_ok=no],[-])
-
-echo
-echo ' * Checking presence of required headers for the process58 probe'
-AC_CHECK_HEADERS([dirent.h errno.h sched.h time.h ],[],[probe_process58_req_deps_ok=no; probe_process58_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of optional headers for the process58 probe'
-AC_CHECK_HEADERS([ctype.h fcntl.h proc/devname.h selinux/context.h selinux/selinux.h stdio_ext.h stdio.h stdlib.h string.h sys/capability.h sys/stat.h sys/sysmacros.h sys/types.h unistd.h ],[],[probe_process58_opt_deps_ok=no],[-])
-
-echo
-echo ' * Checking presence of required headers for the shadow probe'
-AC_CHECK_HEADERS([errno.h shadow.h stdio.h stdlib.h string.h ],[],[probe_shadow_req_deps_ok=no; probe_shadow_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the uname probe'
-AC_CHECK_HEADERS([string.h sys/utsname.h ],[],[probe_uname_req_deps_ok=no; probe_uname_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of optional headers for the uname probe'
-AC_CHECK_HEADERS([stdio_ext.h sys/systeminfo.h ],[],[probe_uname_opt_deps_ok=no],[-])
-
-echo
-echo ' * Checking presence of required headers for the interface probe'
-AC_CHECK_HEADERS([arpa/inet.h ifaddrs.h netdb.h net/if_arp.h net/if.h stdio.h string.h sys/ioctl.h sys/socket.h unistd.h ],[],[probe_interface_req_deps_ok=no; probe_interface_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the xinetd probe'
-AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h fnmatch.h limits.h netdb.h stdbool.h stddef.h stdint.h stdlib.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_xinetd_req_deps_ok=no; probe_xinetd_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the sysctl probe'
-AC_CHECK_HEADERS([ctype.h errno.h limits.h stdio.h string.h ],[],[probe_sysctl_req_deps_ok=no; probe_sysctl_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the routingtable probe'
-AC_CHECK_HEADERS([arpa/inet.h byteswap.h endian.h errno.h netinet/in.h netinet/ip6.h netinet/ip.h net/route.h stdio.h stdlib.h string.h ],[],[probe_routingtable_req_deps_ok=no; probe_routingtable_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the symlink probe'
-AC_CHECK_HEADERS([errno.h limits.h stdlib.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_symlink_req_deps_ok=no; probe_symlink_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the gconf probe'
-AC_CHECK_HEADERS([gconf/gconf.h limits.h stdint.h stdlib.h string.h ],[],[probe_gconf_req_deps_ok=no; probe_gconf_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the isainfo probe'
-AC_CHECK_HEADERS([arpa/inet.h dirent.h errno.h fcntl.h netdb.h stdio_ext.h stdio.h stdlib.h string.h sys/systeminfo.h ],[],[probe_isainfo_req_deps_ok=no; probe_isainfo_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the partition probe'
-AC_CHECK_HEADERS([fcntl.h limits.h linux/fs.h mntent.h stdint.h stdio.h stdlib.h string.h sys/stat.h sys/statvfs.h sys/types.h sys/vfs.h ],[],[probe_partition_req_deps_ok=no; probe_partition_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of optional headers for the partition probe'
-AC_CHECK_HEADERS([blkid/blkid.h linux/magic.h ],[],[probe_partition_opt_deps_ok=no],[-])
-
-echo
-echo ' * Checking presence of required headers for the inetlisteningservers probe'
-AC_CHECK_HEADERS([arpa/inet.h dirent.h errno.h fcntl.h netdb.h stdio_ext.h stdio.h stdlib.h string.h ],[],[probe_inetlisteningservers_req_deps_ok=no; probe_inetlisteningservers_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the iflisteners probe'
-AC_CHECK_HEADERS([arpa/inet.h dirent.h errno.h fcntl.h netdb.h stdio_ext.h stdio.h stdlib.h string.h ],[],[probe_iflisteners_req_deps_ok=no; probe_iflisteners_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the selinuxboolean probe'
-AC_CHECK_HEADERS([errno.h fcntl.h selinux/selinux.h stdio.h stdlib.h string.h sys/stat.h ],[],[probe_selinuxboolean_req_deps_ok=no; probe_selinuxboolean_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the selinuxsecuritycontext probe'
-AC_CHECK_HEADERS([dirent.h errno.h fcntl.h limits.h pthread.h selinux/context.h selinux/selinux.h stdlib.h string.h sys/stat.h sys/types.h ],[],[probe_selinuxsecuritycontext_req_deps_ok=no; probe_selinuxsecuritycontext_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the rpminfo probe'
-AC_CHECK_HEADERS([assert.h errno.h fcntl.h pthread.h rpm/header.h rpm/rpmdb.h rpm/rpmfi.h rpm/rpmlib.h rpm/rpmlog.h rpm/rpmmacro.h rpm/rpmts.h stdio.h string.h sys/stat.h sys/types.h ],[],[probe_rpminfo_req_deps_ok=no; probe_rpminfo_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the rpmverify probe'
-AC_CHECK_HEADERS([assert.h errno.h fcntl.h limits.h pthread.h rpm/header.h rpm/rpmcli.h rpm/rpmdb.h rpm/rpmfi.h rpm/rpmlib.h rpm/rpmlog.h rpm/rpmmacro.h rpm/rpmts.h stdio.h string.h sys/stat.h sys/types.h ],[],[probe_rpmverify_req_deps_ok=no; probe_rpmverify_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the rpmverifyfile probe'
-AC_CHECK_HEADERS([assert.h errno.h fcntl.h limits.h pthread.h rpm/header.h rpm/rpmcli.h rpm/rpmdb.h rpm/rpmfi.h rpm/rpmlib.h rpm/rpmlog.h rpm/rpmmacro.h rpm/rpmts.h stdio.h string.h sys/stat.h sys/types.h ],[],[probe_rpmverifyfile_req_deps_ok=no; probe_rpmverifyfile_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the rpmverifypackage probe'
-AC_CHECK_HEADERS([assert.h errno.h fcntl.h limits.h popt.h pthread.h rpm/header.h rpm/rpmcli.h rpm/rpmdb.h rpm/rpmfi.h rpm/rpmlib.h rpm/rpmlog.h rpm/rpmmacro.h rpm/rpmts.h stdio.h string.h sys/stat.h sys/types.h unistd.h ],[],[probe_rpmverifypackage_req_deps_ok=no; probe_rpmverifypackage_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the dpkginfo probe'
-AC_CHECK_HEADERS([assert.h errno.h stdio.h string.h ],[],[probe_dpkginfo_req_deps_ok=no; probe_dpkginfo_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the systemdunitproperty probe'
-AC_CHECK_HEADERS([dbus/dbus.h string.h ],[],[probe_systemdunitproperty_req_deps_ok=no; probe_systemdunitproperty_req_deps_missing='header files'],[-])
-
-echo
-echo ' * Checking presence of required headers for the systemdunitdependency probe'
-AC_CHECK_HEADERS([dbus/dbus.h string.h ],[],[probe_systemdunitdependency_req_deps_ok=no; probe_systemdunitdependency_req_deps_missing='header files'],[-])
-
-CPPFLAGS="$SAVE_CPPFLAGS"
-
-echo
-echo '* Checking for acl library used by:  file'
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([acl_init],[acl],[
-acl_CFLAGS=;
-acl_LIBS=-lacl;
-],[
-probe_file_opt_deps_ok=no;
-probe_file_opt_deps_missing+=', acl lib';
-],[])
-AC_SUBST([acl_CFLAGS])
-AC_SUBST([acl_LIBS])
-LIBS=$SAVE_LIBS
-SAVE_LIBS=$LIBS
-LIBS=$acl_LIBS
-AC_CHECK_FUNCS([acl_init], [], [])
-AC_CHECK_FUNCS([acl_extended_file],[],[])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for apt_pkg library used by: dpkginfo '
-PKG_CHECK_MODULES([apt_pkg], [libapt-pkg >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([pkgVersion],[apt-pkg],[
-apt_pkg_CFLAGS=;
-apt_pkg_LIBS=-lapt-pkg;
-],[
-probe_dpkginfo_req_deps_ok=no;
-probe_dpkginfo_req_deps_missing+=', apt_pkg';
-],[])
-AC_SUBST([apt_pkg_CFLAGS])
-AC_SUBST([apt_pkg_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$apt_pkg_LIBS
-AC_LANG_PUSH([C++])
-AC_CHECK_FUNCS([pkgVersion], [], [
-probe_dpkginfo_req_deps_ok=no;
-probe_dpkginfo_req_deps_missing+=", $ac_func func";
-])
-AC_LANG_POP([C++])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for blkid library used by:  partition'
-PKG_CHECK_MODULES([blkid], [blkid >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([blkid_get_cache],[blkid],[
-blkid_CFLAGS=;
-blkid_LIBS=-lblkid;
-],[
-probe_partition_opt_deps_ok=no;
-probe_partition_opt_deps_missing+=', blkid';
-],[])
-AC_SUBST([blkid_CFLAGS])
-AC_SUBST([blkid_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$blkid_LIBS
-AC_CHECK_FUNCS([blkid_get_cache blkid_get_tag_value], [], [])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for cap library used by: process58 '
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([cap_init],[cap],[
-cap_CFLAGS=;
-cap_LIBS=-lcap;
-],[
-probe_process58_req_deps_ok=no;
-probe_process58_req_deps_missing+=', cap lib';
-],[])
-AC_SUBST([cap_CFLAGS])
-AC_SUBST([cap_LIBS])
-LIBS=$SAVE_LIBS
-SAVE_LIBS=$LIBS
-LIBS=$cap_LIBS
-AC_CHECK_FUNCS([cap_init], [], [
-probe_process58_req_deps_ok=no;
-probe_process58_req_deps_missing+=", $ac_func func";
-])
-AC_CHECK_FUNCS([cap_get_pid capgetp],[],[])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for dbus1 library used by: systemdunitproperty systemdunitproperty '
-PKG_CHECK_MODULES([dbus1], [dbus-1 >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([dbus_bus_get],[dbus1],[
-dbus1_CFLAGS=;
-dbus1_LIBS=-ldbus1;
-],[
-probe_systemdunitproperty_req_deps_ok=no;
-probe_systemdunitproperty_req_deps_missing+=', dbus1';
-probe_systemdunitproperty_req_deps_ok=no;
-probe_systemdunitproperty_req_deps_missing+=', dbus1';
-],[])
-AC_SUBST([dbus1_CFLAGS])
-AC_SUBST([dbus1_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$dbus1_LIBS
-AC_CHECK_FUNCS([dbus_bus_get], [], [
-probe_systemdunitproperty_req_deps_ok=no;
-probe_systemdunitproperty_req_deps_missing+=", $ac_func func";
-
-probe_systemdunitproperty_req_deps_ok=no;
-probe_systemdunitproperty_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for gconf2 library used by: gconf '
-PKG_CHECK_MODULES([gconf2], [gconf-2.0 >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([gconf_engine_get_default],[gconf-2],[
-gconf2_CFLAGS=;
-gconf2_LIBS=-lgconf-2;
-],[
-probe_gconf_req_deps_ok=no;
-probe_gconf_req_deps_missing+=', gconf2';
-],[])
-AC_SUBST([gconf2_CFLAGS])
-AC_SUBST([gconf2_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$gconf2_LIBS
-AC_CHECK_FUNCS([gconf_engine_get_default], [], [
-probe_gconf_req_deps_ok=no;
-probe_gconf_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for lber library used by: ldap57 '
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([ber_init],[lber],[
-lber_CFLAGS=;
-lber_LIBS=-llber;
-],[
-probe_ldap57_req_deps_ok=no;
-probe_ldap57_req_deps_missing+=', lber lib';
-],[])
-AC_SUBST([lber_CFLAGS])
-AC_SUBST([lber_LIBS])
-LIBS=$SAVE_LIBS
-SAVE_LIBS=$LIBS
-LIBS=$lber_LIBS
-AC_CHECK_FUNCS([ber_init], [], [
-probe_ldap57_req_deps_ok=no;
-probe_ldap57_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for ldap library used by: ldap57 '
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([ldap_init],[ldap],[
-ldap_CFLAGS=;
-ldap_LIBS=-lldap;
-],[
-probe_ldap57_req_deps_ok=no;
-probe_ldap57_req_deps_missing+=', ldap lib';
-],[])
-AC_SUBST([ldap_CFLAGS])
-AC_SUBST([ldap_LIBS])
-LIBS=$SAVE_LIBS
-SAVE_LIBS=$LIBS
-LIBS=$ldap_LIBS
-AC_CHECK_FUNCS([ldap_init], [], [
-probe_ldap57_req_deps_ok=no;
-probe_ldap57_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for opendbx library used by: sql sql57 '
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([odbx_init],[opendbx],[
-opendbx_CFLAGS=;
-opendbx_LIBS=-lopendbx;
-],[
-probe_sql_req_deps_ok=no;
-probe_sql_req_deps_missing+=', opendbx lib';
-probe_sql57_req_deps_ok=no;
-probe_sql57_req_deps_missing+=', opendbx lib';
-],[])
-AC_SUBST([opendbx_CFLAGS])
-AC_SUBST([opendbx_LIBS])
-LIBS=$SAVE_LIBS
-SAVE_LIBS=$LIBS
-LIBS=$opendbx_LIBS
-AC_CHECK_FUNCS([odbx_init], [], [
-probe_sql_req_deps_ok=no;
-probe_sql_req_deps_missing+=", $ac_func func";
-
-probe_sql57_req_deps_ok=no;
-probe_sql57_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for pcre library used by: textfilecontent54 textfilecontent partition '
-PKG_CHECK_MODULES([pcre], [libpcre >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([pcre_exec],[pcre],[
-pcre_CFLAGS=;
-pcre_LIBS=-lpcre;
-],[
-probe_textfilecontent54_req_deps_ok=no;
-probe_textfilecontent54_req_deps_missing+=', pcre';
-probe_textfilecontent_req_deps_ok=no;
-probe_textfilecontent_req_deps_missing+=', pcre';
-probe_partition_req_deps_ok=no;
-probe_partition_req_deps_missing+=', pcre';
-],[])
-AC_SUBST([pcre_CFLAGS])
-AC_SUBST([pcre_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$pcre_LIBS
-AC_CHECK_FUNCS([pcre_exec], [], [
-probe_textfilecontent54_req_deps_ok=no;
-probe_textfilecontent54_req_deps_missing+=", $ac_func func";
-
-probe_textfilecontent_req_deps_ok=no;
-probe_textfilecontent_req_deps_missing+=", $ac_func func";
-
-probe_partition_req_deps_ok=no;
-probe_partition_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for procps library used by:  process58 process'
-PKG_CHECK_MODULES([procps], [libprocps >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([dev_to_tty],[procps-ng],[
-procps_CFLAGS=;
-procps_LIBS=-lprocps-ng;
-],[
-probe_process58_opt_deps_ok=no;
-probe_process58_opt_deps_missing+=', procps';
-probe_process_opt_deps_ok=no;
-probe_process_opt_deps_missing+=', procps';
-],[])
-AC_SUBST([procps_CFLAGS])
-AC_SUBST([procps_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$procps_LIBS
-AC_CHECK_FUNCS([dev_to_tty], [], [])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for rpm library used by: rpminfo rpmverify rpmverifyfile rpmverifypackage '
-PKG_CHECK_MODULES([rpm], [rpm >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([rpmtsCreate],[rpm],[
-rpm_CFLAGS=;
-rpm_LIBS=-lrpm;
-],[
-probe_rpminfo_req_deps_ok=no;
-probe_rpminfo_req_deps_missing+=', rpm';
-probe_rpmverify_req_deps_ok=no;
-probe_rpmverify_req_deps_missing+=', rpm';
-probe_rpmverifyfile_req_deps_ok=no;
-probe_rpmverifyfile_req_deps_missing+=', rpm';
-probe_rpmverifypackage_req_deps_ok=no;
-probe_rpmverifypackage_req_deps_missing+=', rpm';
-],[])
-AC_SUBST([rpm_CFLAGS])
-AC_SUBST([rpm_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$rpm_LIBS
-AC_CHECK_FUNCS([rpmtsCreate rpmReadConfigFiles], [], [
-probe_rpminfo_req_deps_ok=no;
-probe_rpminfo_req_deps_missing+=", $ac_func func";
-
-probe_rpmverify_req_deps_ok=no;
-probe_rpmverify_req_deps_missing+=", $ac_func func";
-
-probe_rpmverifyfile_req_deps_ok=no;
-probe_rpmverifyfile_req_deps_missing+=", $ac_func func";
-
-probe_rpmverifypackage_req_deps_ok=no;
-probe_rpmverifypackage_req_deps_missing+=", $ac_func func";
-])
-AC_CHECK_FUNCS([headerFormat headerSprintf rpmFreeCrypto rpmFreeFilesystems],[],[])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for selinux library used by: process58 selinuxboolean selinuxsecuritycontext '
-PKG_CHECK_MODULES([selinux], [libselinux >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([security_get_boolean_names],[selinux],[
-selinux_CFLAGS=;
-selinux_LIBS=-lselinux;
-],[
-probe_process58_req_deps_ok=no;
-probe_process58_req_deps_missing+=', selinux';
-probe_selinuxboolean_req_deps_ok=no;
-probe_selinuxboolean_req_deps_missing+=', selinux';
-probe_selinuxsecuritycontext_req_deps_ok=no;
-probe_selinuxsecuritycontext_req_deps_missing+=', selinux';
-],[])
-AC_SUBST([selinux_CFLAGS])
-AC_SUBST([selinux_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$selinux_LIBS
-AC_CHECK_FUNCS([security_get_boolean_names], [], [
-probe_process58_req_deps_ok=no;
-probe_process58_req_deps_missing+=", $ac_func func";
-
-probe_selinuxboolean_req_deps_ok=no;
-probe_selinuxboolean_req_deps_missing+=", $ac_func func";
-
-probe_selinuxsecuritycontext_req_deps_ok=no;
-probe_selinuxsecuritycontext_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for xml2 library used by: xmlfilecontent '
-PKG_CHECK_MODULES([xml2], [libxml-2.0 >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([xmlTextReaderRead],[xml2],[
-xml2_CFLAGS=;
-xml2_LIBS=-lxml2;
-],[
-probe_xmlfilecontent_req_deps_ok=no;
-probe_xmlfilecontent_req_deps_missing+=', xml2';
-],[])
-AC_SUBST([xml2_CFLAGS])
-AC_SUBST([xml2_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$xml2_LIBS
-AC_CHECK_FUNCS([xmlTextReaderRead], [], [
-probe_xmlfilecontent_req_deps_ok=no;
-probe_xmlfilecontent_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-echo '* Checking for xslt library used by: xmlfilecontent '
-PKG_CHECK_MODULES([xslt], [libxslt >= 0.0],[],[
-SAVE_LIBS=$LIBS
-AC_SEARCH_LIBS([xsltDocumentFunction],[xslt],[
-xslt_CFLAGS=;
-xslt_LIBS=-lxslt;
-],[
-probe_xmlfilecontent_req_deps_ok=no;
-probe_xmlfilecontent_req_deps_missing+=', xslt';
-],[])
-AC_SUBST([xslt_CFLAGS])
-AC_SUBST([xslt_LIBS])
-LIBS=$SAVE_LIBS
-])
-SAVE_LIBS=$LIBS
-LIBS=$xslt_LIBS
-AC_CHECK_FUNCS([xsltDocumentFunction], [], [
-probe_xmlfilecontent_req_deps_ok=no;
-probe_xmlfilecontent_req_deps_missing+=", $ac_func func";
-])
-LIBS=$SAVE_LIBS
-echo
-
-
-#check for atomic functions
-case $host_cpu in
-	i386 | i486 | i586 | i686)
-		CFLAGS="$CFLAGS  -march=i686"
-		;;
-esac
-
-AC_CACHE_CHECK([for atomic builtins], [ac_cv_atomic_builtins],
-[AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <stdint.h>
-				  uint16_t foovar=0; uint16_t old=1; uint16_t new=2;],
-				[__sync_bool_compare_and_swap(&foovar,old,new); return __sync_fetch_and_add(&foovar, 1);])],
-		[ac_cv_atomic_builtins=yes],
-		[ac_cv_atomic_builtins=no])])
-if test $ac_cv_atomic_builtins = yes; then
-  AC_DEFINE([HAVE_ATOMIC_BUILTINS], 1, [Define to 1 if the compiler supports atomic builtins.])
-else
-  AC_MSG_NOTICE([!!! Compiler does not support atomic builtins. Atomic operation will be emulated using mutex-based locking. !!!])
-fi
-
-
-AC_ARG_ENABLE([probes-independent],
-     [AC_HELP_STRING([--enable-probes-independent], [enable compilation of probes independent of the base system (default=yes)])],
-     [case "${enableval}" in
-       yes) probes_independent=yes ;;
-       no)  probes_independent=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-independent]) ;;
-     esac],[probes_independent=yes])
-
-AC_ARG_ENABLE([probes-unix],
-     [AC_HELP_STRING([--enable-probes-unix], [enable compilation of probes for UNIX based systems (default=yes)])],
-     [case "${enableval}" in
-       yes) probes_unix=yes ;;
-       no)  probes_unix=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-unix]) ;;
-     esac],[probes_unix=yes])
-if test "x${probes_unix}" = xyes; then
-	AC_DEFINE([PLATFORM_UNIX], [1], [Indicator for a Unix type OS])
-fi
-
-
-probes_linux=no
-case "${host}" in
-    *-*-linux*)
-        probes_linux=yes
-    ;;
-esac
-AC_ARG_ENABLE([probes-linux],
-     [AC_HELP_STRING([--enable-probes-linux], [enable compilation of probes for Linux based systems (default=autodetect)])],
-     [case "${enableval}" in
-       yes) probes_linux=yes ;;
-       no)  probes_linux=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-linux]) ;;
-     esac],)
-
-probes_solaris=no
-case "${host}" in
-    *-*-solaris*)
-        probes_solaris=yes
-    ;;
-esac
-AC_ARG_ENABLE([probes-solaris],
-     [AC_HELP_STRING([--enable-probes-solaris], [enable compilation of probes for Solaris based systems (default=autodetect)])],
-     [case "${enableval}" in
-       yes) probes_solaris=yes ;;
-       no)  probes_solaris=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-probes-solaris]) ;;
-     esac],)
-
-AC_ARG_ENABLE([cce],
-     [AC_HELP_STRING([--enable-cce], [include support for CCE (default=no)])],
-     [case "${enableval}" in
-       yes) cce=yes ;;
-       no)  cce=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-cce]) ;;
-     esac],[cce=no])
-
-AC_ARG_ENABLE([python],
-     [AC_HELP_STRING([--enable-python], [enable compilation of python2 bindings (default=auto)])],
-     [case "${enableval}" in
-       yes) python2_bind=yes ;;
-       no)  python2_bind=no  ;;
-       auto)  python2_bind=auto  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-python]) ;;
-     esac],[python2_bind=auto])
-
-AC_ARG_ENABLE([python3],
-	[AC_HELP_STRING([--enable-python3], [enable compilation of python3 bindings (default=auto)])],
-	[case "${enableval}" in
-		yes) python3_bind=yes ;;
-		no) python3_bind=no ;;
-		auto) python3_bind=auto ;;
-		*) AC_MSG_ERROR([bad value ${enableval} for --enable-python3]);;
-	esac],[python3_bind=auto])
-
-AC_ARG_ENABLE([perl],
-     [AC_HELP_STRING([--enable-perl], [enable compilation of perl bindings (default=no)])],
-     [case "${enableval}" in
-       yes) perl_bind=yes ;;
-       no)  perl_bind=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-perl]) ;;
-     esac],[perl_bind=no])
-
-AC_ARG_ENABLE([regex-posix],
-     [AC_HELP_STRING([--enable-regex-posix], [compile with POSIX instead of PCRE regex (default=no)])],
-     [case "${enableval}" in
-       yes) regex_posix=yes ;;
-       no)  regex_posix=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-regex-posix]) ;;
-     esac],[regex_posix=no])
-
-AC_ARG_ENABLE([debug],
-     [AC_HELP_STRING([--enable-debug], [enable debugging flags (default=no)])],
-     [case "${enableval}" in
-       yes) debug=yes ;;
-       no)  debug=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
-     esac], [debug=no])
-
-AC_ARG_ENABLE([valgrind],
-     [AC_HELP_STRING([--enable-valgrind], [enable valgrind checks (default=no)])],
-     [case "${enableval}" in
-       yes) vgdebug=yes ;;
-       no)  vgdebug=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-valgrind]) ;;
-     esac], [vgdebug=no])
-
-
-AC_ARG_ENABLE([ssp],
-     [AC_HELP_STRING([--enable-ssp], [enable SSP (fstack-protector, default=no)])],
-     [case "${enableval}" in
-       yes) ssp=yes ;;
-       no)  ssp=no ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-ssp]) ;;
-     esac], [ssp=no])
-
-AC_ARG_WITH([crypto],
-     [AS_HELP_STRING([--with-crypto],
-     [use different crypto backend. Available options: nss3, gcrypt [default=gcrypt]])],
-     [],
-     [crypto=gcrypt])
-
-if test "x${libexecdir}" = xNONE; then
-	probe_dir="/usr/local/libexec/openscap"
-else
-	EXPAND_DIR(probe_dir,"${libexecdir}/openscap")
-fi
-
-AC_SUBST(probe_dir)
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_SCHEMA_PATH], ["/usr/local/share/openscap/schemas"], [Path to xml schemas])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_SCHEMA_PATH], ["${prefix}/share/openscap/schemas"], [Path to xml schemas])
-fi
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_XSLT_PATH], ["/usr/local/share/openscap/xsl"], [Path to xslt files])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_XSLT_PATH], ["${prefix}/share/openscap/xsl"], [Path to xslt files])
-fi
-
-if test "x${prefix}" = xNONE; then
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_CPE_PATH], ["/usr/local/share/openscap/cpe"], [Path to cpe files])
-else
-	AC_DEFINE_UNQUOTED([OSCAP_DEFAULT_CPE_PATH], ["${prefix}/share/openscap/cpe"], [Path to cpe files])
-fi
-
-if test "$regex_posix" = "yes"; then
-   AC_DEFINE([USE_REGEX_POSIX], [1], [Use POSIX regular expressions])
-else
-   AC_DEFINE([USE_REGEX_PCRE], [1], [Use PCRE])
-fi
-
-if test "$ssp" = "yes"; then
-   GCC_STACK_PROTECT_CC
-   GCC_STACK_PROTECT_CXX
-fi
-
-if test "$debug" = "yes"; then
-   CFLAGS="$CFLAGS $CFLAGS_DEBUGGING"
-else
-   CFLAGS="$CFLAGS $CFLAGS_NODEBUG"
-   AC_DEFINE([NDEBUG], [1], [No Debug defined])
-fi
-
-AC_ARG_ENABLE([sce],
-     [AC_HELP_STRING([--enable-sce], [enable script check engine (default=no)])],
-     [case "${enableval}" in
-       yes) sce=yes ;;
-       no)  sce=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-sce]) ;;
-     esac],[sce=no])
-
-
-AC_ARG_WITH([oscap-temp-dir],
-     [AS_HELP_STRING([--with-oscap-temp-dir],
-     [use different temporary directory to execute sce scripts [default=/tmp]])],
-     [],
-     [with_oscap_temp_dir="/tmp"])
-
-if test "x${sce}" = xyes; then
-  AC_DEFINE([ENABLE_SCE], [1], [compilation of script check engine enabled])
-  CFLAGS="$CFLAGS -DOSCAP_TEMP_DIR=\\\"${with_oscap_temp_dir}\\\"" # double escape needed for compilation on some systems
-fi
-
-AC_ARG_ENABLE([util-oscap],
-     [AC_HELP_STRING([--enable-util-oscap], [enable compilation of the oscap utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap=yes ;;
-       no)  util_oscap=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap]) ;;
-     esac],[util_oscap=yes])
-
-AC_ARG_ENABLE([util-scap-as-rpm],
-     [AC_HELP_STRING([--enable-util-scap-as-rpm], [enable compilation of the scap-as-rpm utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_scap_as_rpm=yes ;;
-       no)  util_scap_as_rpm=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-scap-as-rpm]) ;;
-     esac],[util_scap_as_rpm=yes])
-
-AC_ARG_ENABLE([util-oscap-ssh],
-     [AC_HELP_STRING([--enable-util-oscap-ssh], [enable compilation of the oscap-ssh utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_ssh=yes ;;
-       no)  util_oscap_ssh=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-ssh]) ;;
-     esac],[util_oscap_ssh=yes])
-
-AC_ARG_ENABLE([util-oscap-docker],
-     [AC_HELP_STRING([--enable-util-oscap-docker], [enable compilation of the oscap-docker utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_docker=yes ;;
-       no)  util_oscap_docker=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-docker]) ;;
-     esac],[util_oscap_docker=yes])
-
-AC_ARG_ENABLE([util-oscap-vm],
-     [AC_HELP_STRING([--enable-util-oscap-vm], [enable compilation of the oscap-vm utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_vm=yes ;;
-       no)  util_oscap_vm=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-vm]) ;;
-     esac],[util_oscap_vm=yes])
-
-AC_ARG_ENABLE([util-oscap-chroot],
-     [AC_HELP_STRING([--enable-util-oscap-chroot], [enable compilation of the oscap-chroot utility (default=yes)])],
-     [case "${enableval}" in
-       yes) util_oscap_chroot=yes ;;
-       no)  util_oscap_chroot=no  ;;
-       *) AC_MSG_ERROR([bad value ${enableval} for --enable-util-oscap-chroot]) ;;
-     esac],[util_oscap_chroot=yes])
-
-if test "$vgdebug" = "yes"; then
- if test "$HAVE_VALGRIND" = "yes"; then
-   vgcheck="yes"
- else
-   AC_MSG_ERROR([valgrind not installed])
- fi
-else
-   vgcheck="no"
-fi
-AC_SUBST([vgcheck])
-
-if test "x${util_oscap_docker}" = "xyes"; then
-	if test ! "x${HAVE_BZIP2}" = xyes; then
-		AC_MSG_FAILURE(oscap-docker requires bzip2! Either disable oscap-docker or install bzip2 development support.)
-	fi
-fi
-
-if test "x${perl_bind}" = xyes; then
-	AC_PATH_PROG(PERL, perl)
-	PERL_INCLUDES="`$PERL -e 'use Config; print $Config{archlib}'`/CORE"
-	vendorlib="$(  $PERL -e 'use Config; print $Config{vendorlib}'  | sed "s|$($PERL -e 'use Config; print $Config{prefix}')||" )"
-	vendorarch="$( $PERL -e 'use Config; print $Config{vendorarch}' | sed "s|$($PERL -e 'use Config; print $Config{prefix}')||" )"
-	AC_SUBST([PERL_INCLUDES], ["-I$PERL_INCLUDES"])
-	AC_SUBST([perl_vendorlibdir], ['${prefix}'$vendorlib])
-	AC_SUBST([perl_vendorarchdir], ['${prefix}'$vendorarch])
-	save_CPPFLAGS="$CPPFLAGS"
-	CPPFLAGS="$CPPFLAGS $PERL_INCLUDES"
-	AC_CHECK_HEADERS([EXTERN.h],[],[AC_MSG_ERROR(Perl development librarier are needed for perl bindings)],[-])
-	CPPFLAGS="$save_CPPFLAGS"
-fi
-
-
-dnl $1: Python major version
-dnl $2: How to announce it
-m4_define([TELL_PYTHON_NOT_PRESENT], [$2(
-	[python $1 bindings were requested, but the appropriate python interpreter was not found in the search path.
-Please ensure that it is installed and available, or run configure with --disable-python$1 option.])])
-
-dnl $1: Python major version
-dnl $2: How to announce it
-m4_define([TELL_PYTHON_DEVEL_NOT_PRESENT], [$2(
-	[python $1 bindings were requested and there is an interpreter, but the development support is missing.
-Please ensure that it is installed and available, or run configure with --disable-python$1 option.])])
-
-# TODO: Handle the bindings yes/no -> interpreter yes/no -> devel yes/no situation
-
-dnl python_bind can be set either to yes, no or auto. It will be set to yes or no after the evaluation.
-dnl
-dnl $1: Python major version
-m4_define([EVALUATE_PYTHON_CHECK_RESULT],
-	[m4_if([$1], , [m4_fatal([The $0 macro needs Python major version as its first argument.])])
-	AS_IF([test "x${python$1_bind}" = xyes && test "x$HAVE_PYTHON$1" = xno],
-		[python$1_bind=no
-		TELL_PYTHON_NOT_PRESENT([$1], [AC_MSG_ERROR])],
-		[test "x$python$1_bind" = xauto && test "x$HAVE_PYTHON$1" = xno],
-		[python$1_bind=no
-		TELL_PYTHON_NOT_PRESENT([$1], [AC_MSG_NOTICE])],
-		[test "x$python$1_bind" != xno && test "x$HAVE_PYTHON$1" = xyes],
-		[AM_CONFIGURE_PYTHON_FLAGS([PYTHON$1],
-			[${PYTHON$1}],
-			[python$1_bind=yes],
-			[AS_IF([test "x$python$1_bind" = xauto],
-				[python$1_bind=no
-				TELL_PYTHON_DEVEL_NOT_PRESENT([$1], [AC_MSG_NOTICE])],
-				[TELL_PYTHON_DEVEL_NOT_PRESENT([$1], [AC_MSG_ERROR])])])])])
-
-dnl
-dnl $1: The Python interpreter to check
-dnl $2: The module to check
-dnl $3: Action if OK
-dnl $4: Action if not OK
-m4_define([PYTHON_CHECK_FOR_INSTALLED_MODULE],
-	[AS_IF(["$1" -c 'import $2' 2> /dev/null],
-		[$3], [$4])])
-
-dnl
-dnl $1: Python major version
-m4_define([_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER],
-	[AS_IF([test "$HAVE_PYTHON$1" = yes],
-		[AC_MSG_CHECKING([whether ${PYTHON$1} can import Atomic])
-		 PYTHON_CHECK_FOR_INSTALLED_MODULE(
-			[${PYTHON$1}], [Atomic],
-			[AC_MSG_RESULT([yes])
-			 preferred_python="${PYTHON$1}"],
-			 AC_MSG_RESULT([no]))])])
-
-AM_PATH_PYTHON_OF_MAJOR_VERSION([2], [2.6], [HAVE_PYTHON2=yes], [HAVE_PYTHON2=no])
-AM_PATH_PYTHON_OF_MAJOR_VERSION([3], [3.4], [HAVE_PYTHON3=yes], [HAVE_PYTHON3=no])
-
-EVALUATE_PYTHON_CHECK_RESULT(3)
-EVALUATE_PYTHON_CHECK_RESULT(2)
-
-# Just to have PYTHON defined so Automake doesn't freak out.
-# Therefore, we define it to one of available interpreters in favor of Python 3
-PYTHON=:
-test "x$HAVE_PYTHON2" = xyes && PYTHON="$PYTHON2"
-test "x$HAVE_PYTHON3" = xyes && PYTHON="$PYTHON3"
-AC_SUBST([PYTHON])
-
-preferred_python=:
-
-AS_IF([test "x$util_oscap_docker" = xyes],
-	[_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER(2)
-	_ATTEMPT_TO_SET_PREFERRED_PYTHON_FOR_OSCAP_DOCKER(3)
-	AS_IF([test "$preferred_python" = :],
-		[AS_IF([test "$PYTHON" != :],
-			[AC_MSG_NOTICE([Couldnt detect preferred python interpreter for oscap-docker. If you can, make sure one can import the 'Atomic' module and re-run the configure script.])
-			AC_MSG_NOTICE([Setting the oscap-docker python to '$PYTHON'.])
-			preferred_python="$PYTHON"],
-			[AC_MSG_ERROR([Not found a working Python interpreter and oscap-docker needs it. Aborting, as oscap-docker has been requested.])])])])
-
-# oscap-docker determine python dir on default python version
-OSCAPDOCKER_PYTHONDIR=`$preferred_python -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(0,0,prefix='$' '{prefix}'))"`
-# oscap-docker uses preferred_python substitution
-AC_SUBST([preferred_python])
-AC_SUBST(oscapdocker_pythondir, $OSCAPDOCKER_PYTHONDIR)
-
-
-AM_CONDITIONAL([probe_family_enabled], test "$probe_family_req_deps_ok" = yes)
-probe_family_enabled=$probe_family_req_deps_ok
-AM_CONDITIONAL([probe_textfilecontent_enabled], test "$probe_textfilecontent_req_deps_ok" = yes)
-probe_textfilecontent_enabled=$probe_textfilecontent_req_deps_ok
-AM_CONDITIONAL([probe_textfilecontent54_enabled], test "$probe_textfilecontent54_req_deps_ok" = yes)
-probe_textfilecontent54_enabled=$probe_textfilecontent54_req_deps_ok
-AM_CONDITIONAL([probe_variable_enabled], test "$probe_variable_req_deps_ok" = yes)
-probe_variable_enabled=$probe_variable_req_deps_ok
-AM_CONDITIONAL([probe_xmlfilecontent_enabled], test "$probe_xmlfilecontent_req_deps_ok" = yes)
-probe_xmlfilecontent_enabled=$probe_xmlfilecontent_req_deps_ok
-AM_CONDITIONAL([probe_filehash_enabled], test "$probe_filehash_req_deps_ok" = yes)
-probe_filehash_enabled=$probe_filehash_req_deps_ok
-AM_CONDITIONAL([probe_filehash58_enabled], test "$probe_filehash58_req_deps_ok" = yes)
-probe_filehash58_enabled=$probe_filehash58_req_deps_ok
-AM_CONDITIONAL([probe_environmentvariable_enabled], test "$probe_environmentvariable_req_deps_ok" = yes)
-probe_environmentvariable_enabled=$probe_environmentvariable_req_deps_ok
-AM_CONDITIONAL([probe_environmentvariable58_enabled], test "$probe_environmentvariable58_req_deps_ok" = yes)
-probe_environmentvariable58_enabled=$probe_environmentvariable58_req_deps_ok
-AM_CONDITIONAL([probe_sql_enabled], test "$probe_sql_req_deps_ok" = yes)
-probe_sql_enabled=$probe_sql_req_deps_ok
-AM_CONDITIONAL([probe_sql57_enabled], test "$probe_sql57_req_deps_ok" = yes)
-probe_sql57_enabled=$probe_sql57_req_deps_ok
-AM_CONDITIONAL([probe_ldap57_enabled], test "$probe_ldap57_req_deps_ok" = yes)
-probe_ldap57_enabled=$probe_ldap57_req_deps_ok
-AM_CONDITIONAL([probe_dnscache_enabled], test "$probe_dnscache_req_deps_ok" = yes)
-probe_dnscache_enabled=$probe_dnscache_req_deps_ok
-AM_CONDITIONAL([probe_runlevel_enabled], test "$probe_runlevel_req_deps_ok" = yes)
-probe_runlevel_enabled=$probe_runlevel_req_deps_ok
-AM_CONDITIONAL([probe_file_enabled], test "$probe_file_req_deps_ok" = yes)
-probe_file_enabled=$probe_file_req_deps_ok
-AM_CONDITIONAL([probe_fileextendedattribute_enabled], test "$probe_fileextendedattribute_req_deps_ok" = yes)
-probe_fileextendedattribute_enabled=$probe_fileextendedattribute_req_deps_ok
-AM_CONDITIONAL([probe_password_enabled], test "$probe_password_req_deps_ok" = yes)
-probe_password_enabled=$probe_password_req_deps_ok
-AM_CONDITIONAL([probe_process_enabled], test "$probe_process_req_deps_ok" = yes)
-probe_process_enabled=$probe_process_req_deps_ok
-AM_CONDITIONAL([probe_process58_enabled], test "$probe_process58_req_deps_ok" = yes)
-probe_process58_enabled=$probe_process58_req_deps_ok
-AM_CONDITIONAL([probe_shadow_enabled], test "$probe_shadow_req_deps_ok" = yes)
-probe_shadow_enabled=$probe_shadow_req_deps_ok
-AM_CONDITIONAL([probe_uname_enabled], test "$probe_uname_req_deps_ok" = yes)
-probe_uname_enabled=$probe_uname_req_deps_ok
-AM_CONDITIONAL([probe_interface_enabled], test "$probe_interface_req_deps_ok" = yes)
-probe_interface_enabled=$probe_interface_req_deps_ok
-AM_CONDITIONAL([probe_xinetd_enabled], test "$probe_xinetd_req_deps_ok" = yes)
-probe_xinetd_enabled=$probe_xinetd_req_deps_ok
-AM_CONDITIONAL([probe_sysctl_enabled], test "$probe_sysctl_req_deps_ok" = yes)
-probe_sysctl_enabled=$probe_sysctl_req_deps_ok
-AM_CONDITIONAL([probe_routingtable_enabled], test "$probe_routingtable_req_deps_ok" = yes)
-probe_routingtable_enabled=$probe_routingtable_req_deps_ok
-AM_CONDITIONAL([probe_symlink_enabled], test "$probe_symlink_req_deps_ok" = yes)
-probe_symlink_enabled=$probe_symlink_req_deps_ok
-AM_CONDITIONAL([probe_gconf_enabled], test "$probe_gconf_req_deps_ok" = yes)
-probe_gconf_enabled=$probe_gconf_req_deps_ok
-AM_CONDITIONAL([probe_isainfo_enabled], test "$probe_isainfo_req_deps_ok" = yes)
-probe_isainfo_enabled=$probe_isainfo_req_deps_ok
-AM_CONDITIONAL([probe_package_enabled], test "$probe_package_req_deps_ok" = yes)
-probe_package_enabled=$probe_package_req_deps_ok
-AM_CONDITIONAL([probe_patch_enabled], test "$probe_patch_req_deps_ok" = yes)
-probe_patch_enabled=$probe_patch_req_deps_ok
-AM_CONDITIONAL([probe_smf_enabled], test "$probe_smf_req_deps_ok" = yes)
-probe_smf_enabled=$probe_smf_req_deps_ok
-AM_CONDITIONAL([probe_partition_enabled], test "$probe_partition_req_deps_ok" = yes)
-probe_partition_enabled=$probe_partition_req_deps_ok
-AM_CONDITIONAL([probe_inetlisteningservers_enabled], test "$probe_inetlisteningservers_req_deps_ok" = yes)
-probe_inetlisteningservers_enabled=$probe_inetlisteningservers_req_deps_ok
-AM_CONDITIONAL([probe_iflisteners_enabled], test "$probe_iflisteners_req_deps_ok" = yes)
-probe_iflisteners_enabled=$probe_iflisteners_req_deps_ok
-AM_CONDITIONAL([probe_selinuxboolean_enabled], test "$probe_selinuxboolean_req_deps_ok" = yes)
-probe_selinuxboolean_enabled=$probe_selinuxboolean_req_deps_ok
-AM_CONDITIONAL([probe_selinuxsecuritycontext_enabled], test "$probe_selinuxsecuritycontext_req_deps_ok" = yes)
-probe_selinuxsecuritycontext_enabled=$probe_selinuxsecuritycontext_req_deps_ok
-AM_CONDITIONAL([probe_rpminfo_enabled], test "$probe_rpminfo_req_deps_ok" = yes)
-probe_rpminfo_enabled=$probe_rpminfo_req_deps_ok
-AM_CONDITIONAL([probe_rpmverify_enabled], test "$probe_rpmverify_req_deps_ok" = yes)
-probe_rpmverify_enabled=$probe_rpmverify_req_deps_ok
-AM_CONDITIONAL([probe_rpmverifyfile_enabled], test "$probe_rpmverifyfile_req_deps_ok" = yes)
-probe_rpmverifyfile_enabled=$probe_rpmverifyfile_req_deps_ok
-AM_CONDITIONAL([probe_rpmverifypackage_enabled], test "$probe_rpmverifypackage_req_deps_ok" = yes)
-probe_rpmverifypackage_enabled=$probe_rpmverifypackage_req_deps_ok
-AM_CONDITIONAL([probe_dpkginfo_enabled], test "$probe_dpkginfo_req_deps_ok" = yes)
-probe_dpkginfo_enabled=$probe_dpkginfo_req_deps_ok
-AM_CONDITIONAL([probe_systemdunitproperty_enabled], test "$probe_systemdunitproperty_req_deps_ok" = yes)
-probe_systemdunitproperty_enabled=$probe_systemdunitproperty_req_deps_ok
-AM_CONDITIONAL([probe_systemdunitdependency_enabled], test "$probe_systemdunitdependency_req_deps_ok" = yes)
-probe_systemdunitdependency_enabled=$probe_systemdunitdependency_req_deps_ok
-
-AM_CONDITIONAL([WANT_CCE],  test "$cce"  = yes)
-
-AM_CONDITIONAL([WANT_PROBES_INDEPENDENT], test "$probes_independent" = yes)
-AM_CONDITIONAL([WANT_PROBES_UNIX], test "$probes_unix" = yes)
-AM_CONDITIONAL([WANT_PROBES_LINUX], test "$probes_linux" = yes)
-AM_CONDITIONAL([WANT_PROBES_SOLARIS], test "$probes_solaris" = yes)
-
-AM_CONDITIONAL([WANT_SCE], test "$sce" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP], test "$util_oscap" = yes)
-AM_CONDITIONAL([WANT_UTIL_SCAP_AS_RPM], test "$util_scap_as_rpm" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_SSH], test "$util_oscap_ssh" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_DOCKER], test "$util_oscap_docker" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_VM], test "$util_oscap_vm" = yes)
-AM_CONDITIONAL([WANT_UTIL_OSCAP_CHROOT], test "$util_oscap_chroot" = yes)
-AM_CONDITIONAL([WANT_PYTHON2], test "$python2_bind" = yes)
-AM_CONDITIONAL([WANT_PYTHON3], test "$python3_bind" = yes)
-AM_CONDITIONAL([WANT_PERL], test "$perl_bind" = yes)
-AM_CONDITIONAL([ENABLE_VALGRIND_TESTS], test "$vgcheck" = yes)
-
-#
-# Core
-#
-AC_CONFIG_FILES([Makefile
-                 lib/Makefile
-                 src/Makefile
-                 xsl/Makefile
-                 schemas/Makefile
-                 cpe/Makefile
-                 libopenscap.pc
-                 src/common/Makefile
-		src/source/Makefile
-                 tests/Makefile
-                 tests/API/Makefile
-
-                 swig/Makefile
-		swig/perl/Makefile
-		swig/python2/Makefile
-		swig/python3/Makefile
-
-                 utils/Makefile
-
-                 src/OVAL/Makefile
-		src/OVAL/adt/Makefile
-		src/OVAL/results/Makefile
-                 tests/API/OVAL/Makefile
-		tests/API/OVAL/glob_to_regex/Makefile
-		tests/API/OVAL/schema_version/Makefile
-		tests/oscap_string/Makefile
-                 tests/API/OVAL/unittests/Makefile
-		 tests/API/OVAL/validate/Makefile
-		 tests/API/OVAL/report_variable_values/Makefile
-                 tests/mitre/Makefile
-
-                 src/OVAL/probes/Makefile
-                 src/OVAL/probes/probe/Makefile
-                 src/OVAL/probes/crapi/Makefile
-                 src/OVAL/probes/SEAP/Makefile
-                 src/OVAL/probes/SEAP/generic/rbt/Makefile
-                 tests/probes/Makefile
-                 tests/API/crypt/Makefile
-                 tests/API/SEAP/Makefile
-                 tests/API/probes/Makefile
-		tests/sources/Makefile
-		tests/CPE/Makefile
-                 tests/probes/file/Makefile
-                 tests/probes/fileextendedattribute/Makefile
-                 tests/probes/uname/Makefile
-                 tests/probes/shadow/Makefile
-		tests/probes/sql57/Makefile
-		tests/probes/symlink/Makefile
-                 tests/probes/family/Makefile
-                 tests/probes/process58/Makefile
-                 tests/probes/sysinfo/Makefile
-                 tests/probes/rpminfo/Makefile
-		tests/probes/rpmverifyfile/Makefile
-                 tests/probes/rpmverifypackage/Makefile
-		 tests/probes/rpmverify/Makefile
-                 tests/probes/systemdunitproperty/Makefile
-                 tests/probes/systemdunitdependency/Makefile
-                 tests/probes/runlevel/Makefile
-                 tests/probes/filehash/Makefile
-                 tests/probes/filehash58/Makefile
-                 tests/probes/password/Makefile
-                 tests/probes/interface/Makefile
-                 tests/probes/textfilecontent54/Makefile
-                 tests/probes/environmentvariable/Makefile
-                 tests/probes/environmentvariable58/Makefile
-                 tests/probes/xinetd/Makefile
-                 tests/probes/selinuxboolean/Makefile
-                 tests/probes/isainfo/Makefile
-                 tests/probes/iflisteners/Makefile
-		 tests/probes/maskattr/Makefile
-		tests/probes/sysctl/Makefile
-
-                 src/CVSS/Makefile
-                 tests/API/CVSS/Makefile
-
-                 src/CVE/Makefile
-                 tests/API/CVE/Makefile
-
-                 src/CVRF/Makefile
-                 tests/API/CVRF/Makefile
-
-                 src/CPE/Makefile
-                 tests/API/CPE/Makefile
-                 tests/API/CPE/name/Makefile
-                 tests/API/CPE/lang/Makefile
-                 tests/API/CPE/dict/Makefile
-                 tests/API/CPE/inbuilt/Makefile
-
-                 src/CCE/Makefile
-                 tests/API/CCE/Makefile
-
-                 src/DS/Makefile
-                 tests/DS/Makefile
-                 tests/DS/ds_sds_index/Makefile
-                 tests/DS/signed/Makefile
-                 tests/DS/validate/Makefile
-
-                 tests/bindings/Makefile
-
-                 src/XCCDF/Makefile
-                 src/XCCDF_POLICY/Makefile
-                 tests/API/XCCDF/Makefile
-                 tests/API/XCCDF/applicability/Makefile
-                 tests/API/XCCDF/default_cpe/Makefile
-                 tests/API/XCCDF/fix/Makefile
-                 tests/API/XCCDF/guide/Makefile
-                 tests/API/XCCDF/unittests/Makefile
-                 tests/API/XCCDF/parser/Makefile
-                 tests/API/XCCDF/progress/Makefile
-                 tests/API/XCCDF/report/Makefile
-                 tests/API/XCCDF/result_files/Makefile
-                 tests/API/XCCDF/tailoring/Makefile
-                 tests/API/XCCDF/variable_instance/Makefile
-
-                 tests/schemas/Makefile
-		tests/bz2/Makefile
-		tests/codestyle/Makefile
-		tests/oval_details/Makefile
-		tests/nist/Makefile
-		tests/offline_mode/Makefile
-
-                 src/SCE/Makefile
-                 tests/sce/Makefile])
-
-AC_CONFIG_FILES([run],
-                [chmod +x,-w run])
-AC_CONFIG_FILES([tests/test_common.sh],
-                [chmod +x,-w tests/test_common.sh])
-AC_CONFIG_FILES([utils/oscap-docker],
-                [chmod +x,-w utils/oscap-docker])
-
-AC_OUTPUT
-
-echo "******************************************************"
-echo "OpenSCAP will be compiled with the following settings:"
-echo
-echo "oscap tool:                    $util_oscap"
-echo "scap-as-rpm tool:              $util_scap_as_rpm"
-echo "oscap-ssh tool:                $util_oscap_ssh"
-echo "oscap-docker tool:             $util_oscap_docker"
-echo "oscap-vm tool:                 $util_oscap_vm"
-echo "oscap-chroot tool:             $util_oscap_chroot"
-echo "python2 bindings enabled:      $python2_bind"
-echo "python3 bindings enabled:      $python3_bind"
-echo "perl bindings enabled:         $perl_bind"
-echo "use POSIX regex:               $regex_posix"
-echo "SCE enabled                    $sce"
-echo "debugging flags enabled:       $debug"
-echo "CCE enabled:                   $cce"
-echo
-echo '  === probes ==='
-if test "$probe_family_req_deps_ok" = "yes"; then
-  probe_family_table_result="yes"
-else
-  probe_family_table_result="NO (missing: $probe_family_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "family:" "$probe_family_table_result"
-if test "$probe_textfilecontent_req_deps_ok" = "yes"; then
-  probe_textfilecontent_table_result="yes"
-else
-  probe_textfilecontent_table_result="NO (missing: $probe_textfilecontent_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "textfilecontent:" "$probe_textfilecontent_table_result"
-if test "$probe_textfilecontent54_req_deps_ok" = "yes"; then
-  probe_textfilecontent54_table_result="yes"
-else
-  probe_textfilecontent54_table_result="NO (missing: $probe_textfilecontent54_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "textfilecontent54:" "$probe_textfilecontent54_table_result"
-if test "$probe_variable_req_deps_ok" = "yes"; then
-  probe_variable_table_result="yes"
-else
-  probe_variable_table_result="NO (missing: $probe_variable_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "variable:" "$probe_variable_table_result"
-if test "$probe_xmlfilecontent_req_deps_ok" = "yes"; then
-  probe_xmlfilecontent_table_result="yes"
-else
-  probe_xmlfilecontent_table_result="NO (missing: $probe_xmlfilecontent_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "xmlfilecontent:" "$probe_xmlfilecontent_table_result"
-if test "$probe_filehash_req_deps_ok" = "yes"; then
-  probe_filehash_table_result="yes"
-else
-  probe_filehash_table_result="NO (missing: $probe_filehash_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "filehash:" "$probe_filehash_table_result"
-if test "$probe_filehash58_req_deps_ok" = "yes"; then
-  probe_filehash58_table_result="yes"
-else
-  probe_filehash58_table_result="NO (missing: $probe_filehash58_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "filehash58:" "$probe_filehash58_table_result"
-if test "$probe_environmentvariable_req_deps_ok" = "yes"; then
-  probe_environmentvariable_table_result="yes"
-else
-  probe_environmentvariable_table_result="NO (missing: $probe_environmentvariable_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "environmentvariable:" "$probe_environmentvariable_table_result"
-if test "$probe_environmentvariable58_req_deps_ok" = "yes"; then
-  probe_environmentvariable58_table_result="yes"
-else
-  probe_environmentvariable58_table_result="NO (missing: $probe_environmentvariable58_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "environmentvariable58:" "$probe_environmentvariable58_table_result"
-if test "$probe_sql_req_deps_ok" = "yes"; then
-  probe_sql_table_result="yes"
-else
-  probe_sql_table_result="NO (missing: $probe_sql_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "sql:" "$probe_sql_table_result"
-if test "$probe_sql57_req_deps_ok" = "yes"; then
-  probe_sql57_table_result="yes"
-else
-  probe_sql57_table_result="NO (missing: $probe_sql57_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "sql57:" "$probe_sql57_table_result"
-if test "$probe_ldap57_req_deps_ok" = "yes"; then
-  probe_ldap57_table_result="yes"
-else
-  probe_ldap57_table_result="NO (missing: $probe_ldap57_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "ldap57:" "$probe_ldap57_table_result"
-if test "$probe_dnscache_req_deps_ok" = "yes"; then
-  probe_dnscache_table_result="yes"
-else
-  probe_dnscache_table_result="NO (missing: $probe_dnscache_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "dnscache:" "$probe_dnscache_table_result"
-if test "$probe_runlevel_req_deps_ok" = "yes"; then
-  probe_runlevel_table_result="yes"
-else
-  probe_runlevel_table_result="NO (missing: $probe_runlevel_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "runlevel:" "$probe_runlevel_table_result"
-if test "$probe_file_req_deps_ok" = "yes"; then
-  probe_file_table_result="yes"
-else
-  probe_file_table_result="NO (missing: $probe_file_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "file:" "$probe_file_table_result"
-if test "$probe_fileextendedattribute_req_deps_ok" = "yes"; then
-  probe_fileextendedattribute_table_result="yes"
-else
-  probe_fileextendedattribute_table_result="NO (missing: $probe_fileextendedattribute_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "fileextendedattribute:" "$probe_fileextendedattribute_table_result"
-if test "$probe_password_req_deps_ok" = "yes"; then
-  probe_password_table_result="yes"
-else
-  probe_password_table_result="NO (missing: $probe_password_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "password:" "$probe_password_table_result"
-if test "$probe_process_req_deps_ok" = "yes"; then
-  probe_process_table_result="yes"
-else
-  probe_process_table_result="NO (missing: $probe_process_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "process:" "$probe_process_table_result"
-if test "$probe_process58_req_deps_ok" = "yes"; then
-  probe_process58_table_result="yes"
-else
-  probe_process58_table_result="NO (missing: $probe_process58_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "process58:" "$probe_process58_table_result"
-if test "$probe_shadow_req_deps_ok" = "yes"; then
-  probe_shadow_table_result="yes"
-else
-  probe_shadow_table_result="NO (missing: $probe_shadow_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "shadow:" "$probe_shadow_table_result"
-if test "$probe_uname_req_deps_ok" = "yes"; then
-  probe_uname_table_result="yes"
-else
-  probe_uname_table_result="NO (missing: $probe_uname_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "uname:" "$probe_uname_table_result"
-if test "$probe_interface_req_deps_ok" = "yes"; then
-  probe_interface_table_result="yes"
-else
-  probe_interface_table_result="NO (missing: $probe_interface_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "interface:" "$probe_interface_table_result"
-if test "$probe_xinetd_req_deps_ok" = "yes"; then
-  probe_xinetd_table_result="yes"
-else
-  probe_xinetd_table_result="NO (missing: $probe_xinetd_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "xinetd:" "$probe_xinetd_table_result"
-if test "$probe_sysctl_req_deps_ok" = "yes"; then
-  probe_sysctl_table_result="yes"
-else
-  probe_sysctl_table_result="NO (missing: $probe_sysctl_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "sysctl:" "$probe_sysctl_table_result"
-if test "$probe_routingtable_req_deps_ok" = "yes"; then
-  probe_routingtable_table_result="yes"
-else
-  probe_routingtable_table_result="NO (missing: $probe_routingtable_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "routingtable:" "$probe_routingtable_table_result"
-if test "$probe_symlink_req_deps_ok" = "yes"; then
-  probe_symlink_table_result="yes"
-else
-  probe_symlink_table_result="NO (missing: $probe_symlink_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "symlink:" "$probe_symlink_table_result"
-if test "$probe_gconf_req_deps_ok" = "yes"; then
-  probe_gconf_table_result="yes"
-else
-  probe_gconf_table_result="NO (missing: $probe_gconf_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "gconf:" "$probe_gconf_table_result"
-if test "$probe_isainfo_req_deps_ok" = "yes"; then
-  probe_isainfo_table_result="yes"
-else
-  probe_isainfo_table_result="NO (missing: $probe_isainfo_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "isainfo:" "$probe_isainfo_table_result"
-if test "$probe_package_req_deps_ok" = "yes"; then
-  probe_package_table_result="yes"
-else
-  probe_package_table_result="NO (missing: $probe_package_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "package:" "$probe_package_table_result"
-if test "$probe_patch_req_deps_ok" = "yes"; then
-  probe_patch_table_result="yes"
-else
-  probe_patch_table_result="NO (missing: $probe_patch_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "patch:" "$probe_patch_table_result"
-if test "$probe_smf_req_deps_ok" = "yes"; then
-  probe_smf_table_result="yes"
-else
-  probe_smf_table_result="NO (missing: $probe_smf_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "smf:" "$probe_smf_table_result"
-if test "$probe_partition_req_deps_ok" = "yes"; then
-  probe_partition_table_result="yes"
-else
-  probe_partition_table_result="NO (missing: $probe_partition_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "partition:" "$probe_partition_table_result"
-if test "$probe_inetlisteningservers_req_deps_ok" = "yes"; then
-  probe_inetlisteningservers_table_result="yes"
-else
-  probe_inetlisteningservers_table_result="NO (missing: $probe_inetlisteningservers_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "inetlisteningservers:" "$probe_inetlisteningservers_table_result"
-if test "$probe_iflisteners_req_deps_ok" = "yes"; then
-  probe_iflisteners_table_result="yes"
-else
-  probe_iflisteners_table_result="NO (missing: $probe_iflisteners_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "iflisteners:" "$probe_iflisteners_table_result"
-if test "$probe_selinuxboolean_req_deps_ok" = "yes"; then
-  probe_selinuxboolean_table_result="yes"
-else
-  probe_selinuxboolean_table_result="NO (missing: $probe_selinuxboolean_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "selinuxboolean:" "$probe_selinuxboolean_table_result"
-if test "$probe_selinuxsecuritycontext_req_deps_ok" = "yes"; then
-  probe_selinuxsecuritycontext_table_result="yes"
-else
-  probe_selinuxsecuritycontext_table_result="NO (missing: $probe_selinuxsecuritycontext_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "selinuxsecuritycontext:" "$probe_selinuxsecuritycontext_table_result"
-if test "$probe_rpminfo_req_deps_ok" = "yes"; then
-  probe_rpminfo_table_result="yes"
-else
-  probe_rpminfo_table_result="NO (missing: $probe_rpminfo_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "rpminfo:" "$probe_rpminfo_table_result"
-if test "$probe_rpmverify_req_deps_ok" = "yes"; then
-  probe_rpmverify_table_result="yes"
-else
-  probe_rpmverify_table_result="NO (missing: $probe_rpmverify_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "rpmverify:" "$probe_rpmverify_table_result"
-if test "$probe_rpmverifyfile_req_deps_ok" = "yes"; then
-  probe_rpmverifyfile_table_result="yes"
-else
-  probe_rpmverifyfile_table_result="NO (missing: $probe_rpmverifyfile_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "rpmverifyfile:" "$probe_rpmverifyfile_table_result"
-if test "$probe_rpmverifypackage_req_deps_ok" = "yes"; then
-  probe_rpmverifypackage_table_result="yes"
-else
-  probe_rpmverifypackage_table_result="NO (missing: $probe_rpmverifypackage_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "rpmverifypackage:" "$probe_rpmverifypackage_table_result"
-if test "$probe_dpkginfo_req_deps_ok" = "yes"; then
-  probe_dpkginfo_table_result="yes"
-else
-  probe_dpkginfo_table_result="NO (missing: $probe_dpkginfo_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "dpkginfo:" "$probe_dpkginfo_table_result"
-if test "$probe_systemdunitproperty_req_deps_ok" = "yes"; then
-  probe_systemdunitproperty_table_result="yes"
-else
-  probe_systemdunitproperty_table_result="NO (missing: $probe_systemdunitproperty_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "systemdunitproperty:" "$probe_systemdunitproperty_table_result"
-if test "$probe_systemdunitdependency_req_deps_ok" = "yes"; then
-  probe_systemdunitdependency_table_result="yes"
-else
-  probe_systemdunitdependency_table_result="NO (missing: $probe_systemdunitdependency_req_deps_missing)"
-fi
-printf "  %-28s %s\n" "systemdunitdependency:" "$probe_systemdunitdependency_table_result"
-echo "  system_info:                 always enabled"
-echo
-echo "  === configuration ==="
-echo "  probe directory set to:      $probe_dir"
-echo ""
-
-echo "  === crypto === "
-echo "  library:                     $crapi_libname"
-echo "     libs:                     $crapi_LIBS"
-echo "   cflags:                     $crapi_CFLAGS"
-echo ""
-
-echo "Valgrind checks enabled:       $vgcheck"
-echo "CFLAGS:                        $CFLAGS"
-echo "CXXFLAGS:                      $CXXFLAGS"
diff -pruN 1.2.17-0.1/cpe/CMakeLists.txt 1.3.6+dfsg-2/cpe/CMakeLists.txt
--- 1.2.17-0.1/cpe/CMakeLists.txt	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/cpe/CMakeLists.txt	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,6 @@
+SET(CPE_FILES
+	"openscap-cpe-dict.xml"
+	"openscap-cpe-oval.xml"
+	"README"
+)
+install(FILES ${CPE_FILES} DESTINATION ${OSCAP_DEFAULT_CPE_PATH})
diff -pruN 1.2.17-0.1/cpe/Makefile.am 1.3.6+dfsg-2/cpe/Makefile.am
--- 1.2.17-0.1/cpe/Makefile.am	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/cpe/Makefile.am	1970-01-01 00:00:00.000000000 +0000
@@ -1,7 +0,0 @@
-cpedir = $(pkgdatadir)/cpe/
-cpe_DATA = \
-	openscap-cpe-dict.xml \
-	openscap-cpe-oval.xml \
-	README
-
-EXTRA_DIST = $(cpe_DATA)
diff -pruN 1.2.17-0.1/cpe/openscap-cpe-dict.xml 1.3.6+dfsg-2/cpe/openscap-cpe-dict.xml
--- 1.2.17-0.1/cpe/openscap-cpe-dict.xml	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/cpe/openscap-cpe-dict.xml	2021-04-12 05:34:00.000000000 +0000
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <cpe-list xmlns="http://cpe.mitre.org/dictionary/2.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-      <cpe-item name="cpe:/o:redhat:enterprise_linux">
+      <cpe-item name="cpe:/o:redhat:enterprise_linux:-">
             <title xml:lang="en-us">Red Hat Enterprise Linux</title>
             <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:1</check>
       </cpe-item>
@@ -17,17 +17,9 @@
             <title xml:lang="en-us">Red Hat Enterprise Linux 7</title>
             <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:7</check>
       </cpe-item>
-      <cpe-item name="cpe:/o:oracle:linux:5">
-            <title xml:lang="en-us">Oracle Linux 5</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.ol:def:5</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:oracle:linux:6">
-            <title xml:lang="en-us">Oracle Linux 6</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.ol:def:6</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:oracle:linux:7">
-            <title xml:lang="en-us">Oracle Linux 7</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.ol:def:7</check>
+      <cpe-item name="cpe:/o:redhat:enterprise_linux:8">
+            <title xml:lang="en-us">Red Hat Enterprise Linux 8</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:8</check>
       </cpe-item>
       <cpe-item name="cpe:/o:centos:centos:5">
             <title xml:lang="en-us">Community Enterprise Operating System 5</title>
@@ -41,145 +33,24 @@
             <title xml:lang="en-us">Community Enterprise Operating System 7</title>
             <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:1007</check>
       </cpe-item>
-      <cpe-item name="cpe:/o:scientificlinux:scientificlinux:5">
-            <title xml:lang="en-us">Scientific Linux 5</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.scientific:def:5</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:scientificlinux:scientificlinux:6">
-            <title xml:lang="en-us">Scientific Linux 6</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.scientific:def:6</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:scientificlinux:scientificlinux:7">
-            <title xml:lang="en-us">Scientific Linux 7</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.scientific:def:7</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:16">
-            <title xml:lang="en-us">Fedora 16</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:16</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:17">
-            <title xml:lang="en-us">Fedora 17</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:17</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:18">
-            <title xml:lang="en-us">Fedora 18</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:18</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:19">
-            <title xml:lang="en-us">Fedora 19</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:19</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:20">
-            <title xml:lang="en-us">Fedora 20</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:20</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:21">
-            <title xml:lang="en-us">Fedora 21</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:21</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:22">
-            <title xml:lang="en-us">Fedora 22</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:22</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:23">
-            <title xml:lang="en-us">Fedora 23</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:23</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:24">
-            <title xml:lang="en-us">Fedora 24</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:24</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:25">
-            <title xml:lang="en-us">Fedora 25</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:25</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:26">
-            <title xml:lang="en-us">Fedora 26</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:26</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:27">
-            <title xml:lang="en-us">Fedora 27</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:27</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:28">
-            <title xml:lang="en-us">Fedora 28</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:28</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:fedoraproject:fedora:29">
-            <title xml:lang="en-us">Fedora 29</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:29</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:sle">
-            <title xml:lang="en-us">SUSE Linux Enterprise all versions</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sle:def:1</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:sles:10">
-            <title xml:lang="en-us">SUSE Linux Enterprise Server 10</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sles:def:10</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:sled:10">
-            <title xml:lang="en-us">SUSE Linux Enterprise Desktop 10</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sled:def:10</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:linux_enterprise_server:11">
-            <title xml:lang="en-us">SUSE Linux Enterprise Server 11</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sle:def:11</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:linux_enterprise_desktop:11">
-            <title xml:lang="en-us">SUSE Linux Enterprise Desktop 11</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sle:def:11</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:sles:12">
-            <title xml:lang="en-us">SUSE Linux Enterprise Server 12</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sles:def:12</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:suse:sled:12">
-            <title xml:lang="en-us">SUSE Linux Enterprise Desktop 12</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sled:def:12</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:opensuse:opensuse:11.4">
-            <title xml:lang="en-us">openSUSE 11.4</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:114</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:opensuse:opensuse:13.1">
-            <title xml:lang="en-us">openSUSE 13.1</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:131</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:opensuse:opensuse:13.2">
-            <title xml:lang="en-us">openSUSE 13.2</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:132</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:novell:leap:42.1">
-            <title xml:lang="en-us">openSUSE 42.1</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:421</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:novell:leap:42.2">
-            <title xml:lang="en-us">openSUSE 42.2</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:422</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:opensuse:opensuse">
-            <title xml:lang="en-us">openSUSE All Versions</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:1</check>
-      </cpe-item>
-
-      <!-- Add-ons -->
-      <cpe-item name="cpe:/a:redhat:rhel_productivity">
-            <title xml:lang="en-us">Red Hat Enterprise Linux Optional Productivity Applications</title>
-            <!-- The cpe:/a:redhat:rhel_productivity:5 is the only released version. -->
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:5</check>
-      </cpe-item>
-      <cpe-item name="cpe:/a:redhat:rhel_productivity:5">
-            <title xml:lang="en-us">Red Hat Enterprise Linux Optional Productivity Applications 5</title>
-            <!-- The Productivity is not a single piece of software. Rather it is distribution channel consisting of manifold applications.
-                 We assume that the productivity is equal to RHEL5. We are unable to write a better OVAL check. -->
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.rhel:def:5</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:windriver:wrlinux">
-            <title xml:lang="en-us">Wind River Linux all versions</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.wrlinux:def:1</check>
-      </cpe-item>
-      <cpe-item name="cpe:/o:windriver:wrlinux:8">
-            <title xml:lang="en-us">Wind River Linux 8</title>
-            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.wrlinux:def:8</check>
+      <cpe-item name="cpe:/o:centos:centos:8">
+            <title xml:lang="en-us">Community Enterprise Operating System 8</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.centos:def:8</check>
+      </cpe-item>
+      <cpe-item name="cpe:/o:fedoraproject:fedora:32">
+            <title xml:lang="en-us">Fedora 32</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:32</check>
+      </cpe-item>
+      <cpe-item name="cpe:/o:fedoraproject:fedora:33">
+            <title xml:lang="en-us">Fedora 33</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:33</check>
+      </cpe-item>
+      <cpe-item name="cpe:/o:fedoraproject:fedora:34">
+            <title xml:lang="en-us">Fedora 34</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:34</check>
+      </cpe-item>
+      <cpe-item name="cpe:/o:fedoraproject:fedora:35">
+            <title xml:lang="en-us">Fedora 35</title>
+            <check system="http://oval.mitre.org/XMLSchema/oval-definitions-5" href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:35</check>
       </cpe-item>
 </cpe-list>
diff -pruN 1.2.17-0.1/cpe/openscap-cpe-oval.xml 1.3.6+dfsg-2/cpe/openscap-cpe-oval.xml
--- 1.2.17-0.1/cpe/openscap-cpe-oval.xml	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/cpe/openscap-cpe-oval.xml	2021-04-12 05:34:00.000000000 +0000
@@ -68,6 +68,19 @@
                          </criteria>
                   </criteria>
             </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.rhel:def:8" version="1">
+                  <metadata>
+                        <title>Red Hat Enterprise Linux 8</title>
+                        <affected family="unix">
+                              <platform>Red Hat Enterprise Linux 8</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:redhat:enterprise_linux:8" source="CPE"/>
+                        <description>The operating system installed on the system is Red Hat Enterprise Linux 8</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Red Hat Enterprise Linux 8 is installed" test_ref="oval:org.open-scap.cpe.rhel:tst:8"/>
+                  </criteria>
+            </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.ol:def:5" version="1">
                   <metadata>
                         <title>Oracle Linux 5</title>
@@ -107,6 +120,19 @@
                         <criterion comment="Oracle Linux 7 is installed" test_ref="oval:org.open-scap.cpe.ol:tst:7"/>
                   </criteria>
             </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.ol:def:8" version="1">
+                  <metadata>
+                        <title>Oracle Linux 8</title>
+                        <affected family="unix">
+                              <platform>Oracle Linux 8</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:oracle:linux:8" source="CPE"/>
+                        <description>The operating system installed on the system is Oracle Linux 8</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Oracle Linux 8 is installed" test_ref="oval:org.open-scap.cpe.ol:tst:8"/>
+                  </criteria>
+            </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.rhel:def:1005" version="1">
                   <metadata>
                         <title>Community Enterprise Operating System 5</title>
@@ -146,6 +172,20 @@
                         <criterion comment="Community Enterprise Operating System 7 is installed" test_ref="oval:org.open-scap.cpe.rhel:tst:1007"/>
                   </criteria>
             </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.centos:def:8" version="1">
+                  <metadata>
+                        <title>Community Enterprise Operating System 8</title>
+                        <affected family="unix">
+                              <platform>Community Enterprise Operating System 8</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:centos:centos:8" source="CPE"/>
+                        <description>The operating system installed on the system is Community Enterprise Operating System 8</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Community Enterprise Operating System is installed" test_ref="oval:org.open-scap.cpe.centos:tst:8" />
+                        <criterion comment="Community Enterprise Operating System version is 8" test_ref="oval:org.open-scap.cpe.centos:tst:8000" />
+                  </criteria>
+            </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.scientific:def:5" version="1">
                   <metadata>
                         <title>Scientific Linux 5</title>
@@ -367,6 +407,85 @@
                         <criterion comment="Fedora 29 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:29"/>
                   </criteria>
             </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:30" version="1">
+                  <metadata>
+                        <title>Fedora 30</title>
+                        <affected family="unix">
+                            <platform>Fedora 30</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:30" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 30</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 30 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:30"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:31" version="1">
+                  <metadata>
+                        <title>Fedora 31</title>
+                        <affected family="unix">
+                            <platform>Fedora 31</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:31" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 31</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 31 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:31"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:32" version="1">
+                  <metadata>
+                        <title>Fedora 32</title>
+                        <affected family="unix">
+                            <platform>Fedora 32</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:32" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 32</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 32 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:32"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:33" version="1">
+                  <metadata>
+                        <title>Fedora 33</title>
+                        <affected family="unix">
+                            <platform>Fedora 33</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:33" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 33</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 33 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:33"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:34" version="1">
+                  <metadata>
+                        <title>Fedora 34</title>
+                        <affected family="unix">
+                            <platform>Fedora 34</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:34" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 34</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 34 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:34"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.fedora:def:35" version="1">
+                  <metadata>
+                        <title>Fedora 35</title>
+                        <affected family="unix">
+                            <platform>Fedora 35</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:fedoraproject:fedora:35" source="CPE"/>
+                        <description>The operating system installed on the system is Fedora 35</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Fedora 35 is installed" test_ref="oval:org.open-scap.cpe.fedora:tst:35"/>
+                  </criteria>
+            </definition>
+
 
             <definition class="inventory" id="oval:org.open-scap.cpe.sle:def:1" version="1">
                   <metadata>
@@ -519,28 +638,56 @@
             </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.opensuse:def:421" version="1">
                   <metadata>
-                        <title>openSUSE 42.1</title>
+                        <title>openSUSE Leap 42.1</title>
                         <affected family="unix">
-                            <platform>openSUSE 42.1</platform>
+                            <platform>openSUSE Leap 42.1</platform>
                         </affected>
                         <reference ref_id="cpe:/o:novell:leap:42.1" source="CPE"/>
-                        <description>The operating system installed on the system is openSUSE 42.1</description>
+                        <reference ref_id="cpe:/o:opensuse:leap:42.1" source="CPE"/>
+                        <description>The operating system installed on the system is openSUSE Leap 42.1</description>
                   </metadata>
                   <criteria>
-                        <criterion comment="openSUSE 42.1 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:421"/>
+                        <criterion comment="openSUSE Leap 42.1 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:421"/>
                   </criteria>
             </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.opensuse:def:422" version="1">
                   <metadata>
-                        <title>openSUSE 42.2</title>
+                        <title>openSUSE Leap 42.2</title>
                         <affected family="unix">
-                            <platform>openSUSE 42.2</platform>
+                            <platform>openSUSE Leap 42.2</platform>
                         </affected>
                         <reference ref_id="cpe:/o:novell:leap:42.2" source="CPE"/>
-                        <description>The operating system installed on the system is openSUSE 42.2</description>
+                        <reference ref_id="cpe:/o:opensuse:leap:42.2" source="CPE"/>
+                        <description>The operating system installed on the system is openSUSE Leap 42.2</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="openSUSE Leap 42.2 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:422"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.opensuse:def:423" version="1">
+                  <metadata>
+                        <title>openSUSE Leap 42.3</title>
+                        <affected family="unix">
+                            <platform>openSUSE Leap 42.3</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:opensuse:leap:42.3" source="CPE"/>
+                        <description>The operating system installed on the system is openSUSE Leap 42.3</description>
                   </metadata>
                   <criteria>
-                        <criterion comment="openSUSE 42.2 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:422"/>
+                        <criterion comment="openSUSE Leap 42.3 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:423"/>
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.opensuse:def:150" version="1">
+                  <metadata>
+                        <title>openSUSE Leap 15.0</title>
+                        <affected family="unix">
+                            <platform>openSUSE Leap 15.0</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:opensuse:leap:15.0" source="CPE"/>
+                        <description>The operating system installed on the system is openSUSE Leap 15.0</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="openSUSE Leap 15.0 is installed" test_ref="oval:org.open-scap.cpe.opensuse:tst:150"/>
                   </criteria>
             </definition>
             <definition class="inventory" id="oval:org.open-scap.cpe.wrlinux:def:1" version="1" >
@@ -570,6 +717,110 @@
                         <criterion comment="Wind River Linux version is 8." test_ref="oval:org.open-scap.cpe.wrlinux:tst:8" />
                   </criteria>
             </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.wrlinux:def:1019" version="1" >
+                  <metadata>
+                        <title>Wind River Linux 1019</title>
+                        <affected family="unix">
+                            <platform>Wind River Linux 1019</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:windriver:wrlinux:1019" source="CPE"/>
+                        <description>The operating system installed on the system is Wind River Linux 1019</description>
+                  </metadata>
+                  <criteria>
+                        <criterion comment="Wind River Linux version is 1019." test_ref="oval:org.open-scap.cpe.wrlinux:tst:1019" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:7" version="1">
+                  <metadata>
+                        <title>Microsoft Windows 7</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows 7</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_7" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows 7</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows 7 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:7" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:8" version="1">
+                  <metadata>
+                        <title>Microsoft Windows 8</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows 8</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_8" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows 8</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows 8 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:8" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:81" version="1">
+                  <metadata>
+                        <title>Microsoft Windows 8.1</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows 8.1</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_8.1" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows 8.1</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows 8.1 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:81" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:10" version="1">
+                  <metadata>
+                        <title>Microsoft Windows 10</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows 10</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_10" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows 10</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows 10 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:10" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:2008" version="1">
+                  <metadata>
+                        <title>Microsoft Windows Server 2008</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows Server 2008</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_server_2008" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows Server 2008</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows Server 2008 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:2008" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:2012" version="1">
+                  <metadata>
+                        <title>Microsoft Windows Server 2012</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows Server 2012</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_server_2012" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows Server 2012</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows Server 2012 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:2012" />
+                  </criteria>
+            </definition>
+            <definition class="inventory" id="oval:org.open-scap.cpe.windows:def:2016" version="1">
+                  <metadata>
+                        <title>Microsoft Windows Server 2016</title>
+                        <affected family="windows">
+                              <platform>Microsoft Windows Server 2016</platform>
+                        </affected>
+                        <reference ref_id="cpe:/o:microsoft:windows_server_2016" source="CPE"/>
+                        <description>The operating system installed on the system is Microsoft Windows Server 2016</description>
+                  </metadata>
+                  <criteria operator="OR">
+                        <criterion comment="Microsoft Windows Server 2016 is installed" test_ref="oval:org.open-scap.cpe.windows:tst:2016" />
+                  </criteria>
+            </definition>
       </definitions>
       <tests>
             <rpmverifyfile_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.rhel:tst:2" version="1" check="at least one" comment="/etc/redhat-release is provided by redhat-release package"
@@ -592,6 +843,11 @@
                   <object object_ref="oval:org.open-scap.cpe.redhat-release:obj:3"/>
                   <state state_ref="oval:org.open-scap.cpe.rhel:ste:7"/>
             </rpmverifyfile_test>
+            <rpmverifyfile_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.rhel:tst:8" version="1" check="at least one" comment="redhat-release is version 8"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.redhat-release:obj:3"/>
+                  <state state_ref="oval:org.open-scap.cpe.rhel:ste:8"/>
+            </rpmverifyfile_test>
             <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.ol:tst:5" version="1" check="at least one" comment="oraclelinux-release is version 5"
                   xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <object object_ref="oval:org.open-scap.cpe.oraclelinux-release:obj:1"/>
@@ -607,6 +863,11 @@
                   <object object_ref="oval:org.open-scap.cpe.oraclelinux-release:obj:1"/>
                   <state state_ref="oval:org.open-scap.cpe.ol:ste:7"/>
             </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.ol:tst:8" version="1" check="at least one" comment="oraclelinux-release is version 8"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.oraclelinux-release:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.ol:ste:8"/>
+            </rpminfo_test>
             <rpmverifyfile_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.rhel:tst:1005" version="1" check="at least one" comment="centos-release is version 5"
                   xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <object object_ref="oval:org.open-scap.cpe.redhat-release:obj:3"/>
@@ -622,6 +883,14 @@
                   <object object_ref="oval:org.open-scap.cpe.redhat-release:obj:3"/>
                   <state state_ref="oval:org.open-scap.cpe.rhel:ste:1007"/>
             </rpmverifyfile_test>
+            <textfilecontent54_test check="all" check_existence="at_least_one_exists" comment="Check /etc/os-release ID is centos" id="oval:org.open-scap.cpe.centos:tst:8" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <object object_ref="oval:org.open-scap.cpe.centos:obj:8"/>
+                  <state state_ref="oval:org.open-scap.cpe.centos:ste:8"/>
+            </textfilecontent54_test>
+            <textfilecontent54_test check="all" comment="Check /etc/os-release VERSION_ID is 8" id="oval:org.open-scap.cpe.centos:tst:8000" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <object object_ref="oval:org.open-scap.cpe.centos:obj:8000"/>
+                  <state state_ref="oval:org.open-scap.cpe.centos:ste:8000"/>
+            </textfilecontent54_test>
             <rpmverifyfile_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.scientific:tst:5" version="1" check="at least one" comment="sl-release is version 5"
                   xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <object object_ref="oval:org.open-scap.cpe.redhat-release:obj:3"/>
@@ -707,6 +976,36 @@
                   <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
                   <state state_ref="oval:org.open-scap.cpe.fedora:ste:29"/>
             </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:30" version="1" check="at least one" comment="fedora-release is version Fedora 30"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:30"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:31" version="1" check="at least one" comment="fedora-release is version Fedora 31"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:31"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:32" version="1" check="at least one" comment="fedora-release is version Fedora 32"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:32"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:33" version="1" check="at least one" comment="fedora-release is version Fedora 33"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:33"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:34" version="1" check="at least one" comment="fedora-release is version Fedora 34"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:34"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.fedora:tst:35" version="1" check="at least one" comment="fedora-release is version Fedora 35"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.fedora-release:obj:2"/>
+                  <state state_ref="oval:org.open-scap.cpe.fedora:ste:35"/>
+            </rpminfo_test>
             <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.sles:tst:1" version="1" check="at least one" comment="/etc/sles-release is provided by sles-release package"
                   xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <object object_ref="oval:org.open-scap.cpe.sles-release:obj:1"/>
@@ -778,6 +1077,16 @@
                   <object object_ref="oval:org.open-scap.cpe.openSUSE-release:obj:1"/>
                   <state state_ref="oval:org.open-scap.cpe.opensuse:ste:422"/>
             </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.opensuse:tst:423" version="2" check="at least one" comment="openSUSE-release is version 42.3"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.openSUSE-release:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.opensuse:ste:423"/>
+            </rpminfo_test>
+            <rpminfo_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.opensuse:tst:150" version="2" check="at least one" comment="openSUSE-release is version 15.0"
+                  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <object object_ref="oval:org.open-scap.cpe.openSUSE-release:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.opensuse:ste:150"/>
+            </rpminfo_test>
             <family_test check_existence="at_least_one_exists" id="oval:org.open-scap.cpe.wrlinux:tst:1" version="1" check="only one"
                   comment="Installed operating system is part of the Unix family."
                   xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
@@ -804,6 +1113,17 @@
                   <object object_ref="oval:org.open-scap.cpe.wrlinux-release:obj:2"/>
                   <state state_ref="oval:org.open-scap.cpe.wrlinux-release:ste:8"/>
             </textfilecontent54_test>
+            <textfilecontent54_test
+                            id="oval:org.open-scap.cpe.wrlinux:tst:1019"
+                            check="all"
+                            check_existence="all_exist"
+                            comment="Check /etc/os-release for VERSION 1019 specification."
+                            version="1"
+                            xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent"
+                            >
+                  <object object_ref="oval:org.open-scap.cpe.wrlinux-release:obj:3"/>
+                  <state state_ref="oval:org.open-scap.cpe.wrlinux-release:ste:10"/>
+            </textfilecontent54_test>
             <rpminfo_test check="all" check_existence="only_one_exists" comment="redhat-release-virtualization-host RPM package is installed" id="oval:org.open-scap.cpe.rhevh:tst:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <object object_ref="oval:org.open-scap.cpe.rhevh:obj:1" />
             </rpminfo_test>
@@ -811,6 +1131,34 @@
                   <object object_ref="oval:org.open-scap.cpe.rhevh:obj:2" />
                   <state state_ref="oval:org.open-scap.cpe.rhevh:ste:2" />
             </textfilecontent54_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:7" version="1" comment="Windows 7 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:7"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:8" version="1" comment="Windows 8 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:8"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:81" version="1" comment="Windows 8.1 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:81"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:10" version="1" comment="Windows 10 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:10"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:2008" version="1" comment="Windows Server 2008 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:2008"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:2012" version="1" comment="Windows Server 2012 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:2012"/>
+            </registry_test>
+            <registry_test id="oval:org.open-scap.cpe.windows:tst:2016" version="1" comment="Windows Server 2016 is installed" check_existence="at_least_one_exists" check="at least one" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <object object_ref="oval:org.open-scap.cpe.windows:obj:1"/>
+                  <state state_ref="oval:org.open-scap.cpe.windows:ste:2016"/>
+            </registry_test>
       </tests>
       <objects>
             <family_object id="oval:org.open-scap.cpe.unix:obj:1" version="1"  xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent"/>
@@ -818,7 +1166,7 @@
                   <lin-def:name>redhat-release</lin-def:name>
             </lin-def:rpminfo_object>
             <lin-def:rpminfo_object id="oval:org.open-scap.cpe.fedora-release:obj:2" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
-                  <lin-def:name>fedora-release</lin-def:name>
+                  <lin-def:name operation="pattern match">^fedora-release.*</lin-def:name>
             </lin-def:rpminfo_object>
             <lin-def:rpmverifyfile_object id="oval:org.open-scap.cpe.redhat-release:obj:3" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <!-- Sadly, OVAL cannot do the right query (rpm -q -whatprovides system-release). Let's check the filename instead. -->
@@ -853,6 +1201,17 @@
                 <pattern operation="pattern match">^VERSION=.([[:digit:]]*)</pattern>
                 <instance operation="greater than or equal" datatype="int">1</instance>
             </textfilecontent54_object>
+            <textfilecontent54_object
+                            id="oval:org.open-scap.cpe.wrlinux-release:obj:3"
+                            comment="Check VERSION specification in /etc/os-release."
+                            version="1"
+                            xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent"
+                            >
+                <path>/etc</path>
+                <filename>os-release</filename>
+                <pattern operation="pattern match">^VERSION=.(\d*.\d*)</pattern>
+                <instance operation="greater than or equal" datatype="int">1</instance>
+            </textfilecontent54_object>
             <rpminfo_object id="oval:org.open-scap.cpe.rhevh:obj:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                 <name>redhat-release-virtualization-host</name>
             </rpminfo_object>
@@ -864,6 +1223,21 @@
             <rpminfo_object id="oval:org.open-scap.cpe.oraclelinux-release:obj:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <name>oraclelinux-release</name>
             </rpminfo_object>
+            <registry_object id="oval:org.open-scap.cpe.windows:obj:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows" >
+                  <hive>HKEY_LOCAL_MACHINE</hive>
+                  <key>SOFTWARE\Microsoft\Windows NT\CurrentVersion</key>
+                  <name>ProductName</name>
+            </registry_object>
+            <textfilecontent54_object id="oval:org.open-scap.cpe.centos:obj:8" version="1" comment="Check os-release ID" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <filepath>/etc/os-release</filepath>
+                  <pattern operation="pattern match">^ID=&quot;(\w+)&quot;$</pattern>
+                  <instance datatype="int">1</instance>
+            </textfilecontent54_object>
+            <textfilecontent54_object id="oval:org.open-scap.cpe.centos:obj:8000" version="1" comment="Check os-release VERSION_ID" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <filepath>/etc/os-release</filepath>
+                  <pattern operation="pattern match">^VERSION_ID=&quot;(\d)&quot;$</pattern>
+                  <instance datatype="int">1</instance>
+            </textfilecontent54_object>
       </objects>
       <states>
             <family_state id="oval:org.open-scap.cpe.unix:ste:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
@@ -883,6 +1257,10 @@
                   <name operation="pattern match">^redhat-release</name>
                   <version operation="pattern match">^7[^\d]</version>
             </rpmverifyfile_state>
+            <rpmverifyfile_state id="oval:org.open-scap.cpe.rhel:ste:8" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <name operation="pattern match">^redhat-release</name>
+                  <version operation="pattern match">^8[^\d]</version>
+            </rpmverifyfile_state>
             <rpmverifyfile_state id="oval:org.open-scap.cpe.rhel:ste:1005" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <name operation="pattern match">^centos-release</name>
                   <version operation="pattern match">^5</version>
@@ -895,6 +1273,12 @@
                   <name operation="pattern match">^centos-release</name>
                   <version operation="pattern match">^7</version>
             </rpmverifyfile_state>
+            <textfilecontent54_state id="oval:org.open-scap.cpe.centos:ste:8" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <subexpression>centos</subexpression>
+            </textfilecontent54_state>
+            <textfilecontent54_state id="oval:org.open-scap.cpe.centos:ste:8000" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
+                  <subexpression>8</subexpression>
+            </textfilecontent54_state>
             <rpmverifyfile_state id="oval:org.open-scap.cpe.scientific:ste:5" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <name operation="pattern match">^sl-release</name>
                   <version operation="pattern match">^5</version>
@@ -919,6 +1303,10 @@
                   <name operation="pattern match">^oraclelinux-release</name>
                   <version operation="pattern match">^7</version>
             </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.ol:ste:8" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <name operation="pattern match">^oraclelinux-release</name>
+                  <version operation="pattern match">^8</version>
+            </rpminfo_state>
             <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:16" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <version operation="pattern match">^16$</version>
             </rpminfo_state>
@@ -961,6 +1349,24 @@
             <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:29" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <version operation="pattern match">^29$</version>
             </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:30" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^30$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:31" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^31$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:32" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^32$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:33" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^33$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:34" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^34$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.fedora:ste:35" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^35$</version>
+            </rpminfo_state>
             <rpminfo_state id="oval:org.open-scap.cpe.sles:ste:1" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <name operation="pattern match">^sles-release</name>
             </rpminfo_state>
@@ -1003,6 +1409,12 @@
             <rpminfo_state id="oval:org.open-scap.cpe.opensuse:ste:422" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
                   <version operation="pattern match">^42.2$</version>
             </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.opensuse:ste:423" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^42.3$</version>
+            </rpminfo_state>
+            <rpminfo_state id="oval:org.open-scap.cpe.opensuse:ste:150" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux">
+                  <version operation="pattern match">^15.0$</version>
+            </rpminfo_state>
             <textfilecontent54_state
                             id="oval:org.open-scap.cpe.wrlinux-release:ste:8"
                             comment="Check the /etc/wrlinux-release file for VERSION 8 specification."
@@ -1011,8 +1423,37 @@
                             >
                   <subexpression operation="pattern match">8</subexpression>
             </textfilecontent54_state>
+            <textfilecontent54_state
+                            id="oval:org.open-scap.cpe.wrlinux-release:ste:10"
+                            comment="Check the /etc/os-release file for VERSION 1019 specification."
+                            version="1"
+                            xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent"
+                            >
+                  <subexpression operation="pattern match">10.19</subexpression>
+            </textfilecontent54_state>
             <textfilecontent54_state id="oval:org.open-scap.cpe.rhevh:ste:2" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent">
                   <subexpression operation="pattern match">7</subexpression>
             </textfilecontent54_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:7" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^Windows 7.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:8" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^Windows 8.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:81" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^Windows 8\.1.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:10" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^Windows 10.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:2008" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^.*2008.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:2012" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^.*2012.*$</value>
+            </registry_state>
+            <registry_state id="oval:org.open-scap.cpe.windows:ste:2016" version="1" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5#windows">
+                  <value operation="pattern match">^.*2016.*$</value>
+            </registry_state>
       </states>
 </oval_definitions>
diff -pruN 1.2.17-0.1/cpe/README 1.3.6+dfsg-2/cpe/README
--- 1.2.17-0.1/cpe/README	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/cpe/README	2021-03-18 06:29:50.000000000 +0000
@@ -1,8 +1,14 @@
 This folder contains the default CPE dictionary and its associated OVAL file.
 
-The CPE names inside are taken from official CPE dictionary found at
-https://nvd.nist.gov/cpe.cfm with the following exceptions:
+Synchronized with the official NIST NVD CPE Dictionary v2.3
+from https://nvd.nist.gov/products/cpe with the following exceptions,
+that are kept for backward-compatibility:
 
-1) cpe:/o:redhat:enterprise_linux:6 (adapted from RHEL5 CPE name)
-2) cpe:/o:fedoraproject:fedora:16 (taken from CPE_NAME in /etc/os-release on F16)
-3) cpe:/o:fedoraproject:fedora:17 (taken from CPE_NAME in /etc/os-release on F17)
+cpe:/o:redhat:enterprise_linux:6          deprecated
+cpe:/o:redhat:enterprise_linux:7          no cover-all name for 7.x versions
+cpe:/o:redhat:enterprise_linux:8          no cover-all name for 8.x versions
+cpe:/o:centos:centos:7                    no cover-all name for 7.x versions
+cpe:/o:centos:centos:8                    no cover-all name for 8.x versions
+
+In the next API-breaking version the internal CPE dictionary will be removed
+completely.
\ No newline at end of file
diff -pruN 1.2.17-0.1/debian/changelog 1.3.6+dfsg-2/debian/changelog
--- 1.2.17-0.1/debian/changelog	2020-04-10 15:42:40.000000000 +0000
+++ 1.3.6+dfsg-2/debian/changelog	2022-07-30 09:26:47.000000000 +0000
@@ -1,3 +1,135 @@
+openscap (1.3.6+dfsg-2) unstable; urgency=medium
+
+  * Add OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch from
+    upstream. Closes: #1015205
+  * Add run-a-minor-testsuite.patch and start running some tests again.
+    - Add libxml-parser-perl and libxml-xpath-perl as build dependencies.
+  * Change -DCMAKE_SKIP_BUILD_RPATH=TRUE -> -DCMAKE_BUILD_RPATH_USE_ORIGIN=ON
+  * Don't install Doxygen files *.map and *.md5.
+
+ -- Håvard F. Aasen <havard.f.aasen@pfft.no>  Sat, 30 Jul 2022 11:26:47 +0200
+
+openscap (1.3.6+dfsg-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Patches:
+    - Rebase 010_perlpm_install_fix.patch and add DEP-3 compliant header.
+    - Drop 011_remove_custom_rpath.patch, no longer needed.
+    - Add update-whatis-entry.patch
+    - Add create-diagrams-when-generating-Doxygen-documen.patch
+    - Add create-Doxygen-diagrams-as-svg.patch
+    - Add add-missing-free.patch
+    - Add remove-superfluous-strdup.patch
+  * d/control:
+    - Apply Multi-Arch: foreign, to openscap-common.
+    - Add missing space in short package description.
+  * Drop d/dirs, not needed.
+  * Change downloaded release tarball, this includes yaml-filter
+  * Build documentation and place it in a new binary package.
+  * Use the CMake RPATH option, this also removes chrpath as BD.
+  * Update d/libopenscap25.symbols
+  * d/copyright:
+    - Include yaml-filter in source package.
+    - Bump copyright year in main paragraph.
+    - Include new file paragraphs.
+
+ -- Håvard F. Aasen <havard.f.aasen@pfft.no>  Wed, 20 Jul 2022 12:04:48 +0200
+
+openscap (1.3.5+dfsg-3) unstable; urgency=medium
+
+  * Move from experimental to unstable.
+
+ -- Håvard F. Aasen <havard.f.aasen@pfft.no>  Fri, 15 Jul 2022 11:25:21 +0200
+
+openscap (1.3.5+dfsg-2) experimental; urgency=medium
+
+  * Disable entire testsuite
+    This also removes 012-Disable-some-tests.patch and build-dependencies
+    libxml-parser-perl and libxml-xpath-perl.
+
+ -- Håvard F. Aasen <havard.f.aasen@pfft.no>  Wed, 13 Jul 2022 19:14:27 +0200
+
+openscap (1.3.5+dfsg-1) experimental; urgency=medium
+
+  * New maintainer Closes: #1012868
+  * Repack source, remove yaml-filter and javascript files.
+    We also delete the related lintian-overrrides and
+    d/missing-sources directory.
+  * d/rules:
+    - Reformat CMake options. Closes: #1000279
+    - Build Python 3 library for all supported versions.
+    - Default build without verbose logging.
+  * d/control:
+    - Drop obsolete X-Python3-Version field.
+    - Update Standards-Version to 4.6.1
+    - Document Rules-Requires-Root.
+    - Add missing Break/Replace on openscap-common. Closes: #1001075
+    - Move package into Vcs repository.
+    - Remove ${python3-Depends} and libjs-jquery as dependencies for
+      libopenscap-dev, not needed.
+    - Remove libcurl-dev as build dependency, doesn't exist.
+  * Don't build documentation. We want this in a separate package.
+  * d/copyright:
+    - Convert to machine-readable format.
+    - Add myself under debian/* section.
+  * Patches:
+    - Drop 001_fix_kfreebsd_probe.patch, this is a 'linux-any' package.
+    - Add 012-Disable-some-tests.patch, disabled some test, the remaining
+      is kept for regression.
+  * Install upstream changelog in all binary packages.
+  * Set upstream metadata fields: Repository and Repository-Browse.
+  * Run wrap-and-sort -at
+  * Add symbols file.
+  * Add the missing changelog entry for version 1.2.17-0.1
+  * d/gbp.conf: Add pristine-tar, remove branch and tag entries, using
+    default values.
+
+ -- Håvard F. Aasen <havard.f.aasen@pfft.no>  Wed, 06 Jul 2022 07:35:05 +0200
+
+openscap (1.3.5-0.1) experimental; urgency=medium
+
+  * Non-maintainer upload.
+  * New upstream version 1.3.5
+
+  * Package structure changes
+    - Apply soname change (libopenscap8 -> 25) (Closes: #990183)
+    - Split libopenscap25 to openscap-scanner, openscap-utils and
+      openscap-common
+    - Drop -dbg package and unnecessary lintian-overrides
+    - Drop unnecessary dependency on dh-autoreconf.
+  * debian/control
+    - Specify https for upstream URL
+    - Use debhelper-compat (= 13) to not forget to install necessary files
+      with dh_missing
+    - Add missing dependencies: libacl1-dev, libblkid-dev, libglib2.0-dev,
+      libyaml-dev, librpm-dev, libpopt-dev, libprocps-dev, libopendbx1-dev,
+      libxmlsec1-dev, doxygen, graphviz, asciidoc,
+  * Drop unnecessary debian/compat
+  * debian/rules
+    - Enable documentation build
+    - Enable hardening
+  * Add openscap-common.docs to install HTML docs
+  * debian/openscap-scanner.install
+    - Install bash-completion
+  * openscap-utils.install
+    - Install autotailor and scap-as-rpm
+  * Add debian/openscap-{scanner,utils}.manpages
+  * debian/watch
+    - Update watch file format version to 4.
+  * debian/patches
+    - Drop unused patches
+    - Refresh patches
+  * Trim trailing whitespace.
+  * Set upstream metadata fields: Bug-Database, Bug-Submit.
+
+ -- Hideki Yamane <henrich@debian.org>  Fri, 06 Aug 2021 16:02:20 +0900
+
+openscap (1.3.4-1) unstable; urgency=medium
+
+  * New upstream version 1.3.4
+
+ -- Philippe Thierry <philou@debian.org>  Mon, 01 Feb 2021 16:22:30 +0100
+
 openscap (1.2.17-0.1) unstable; urgency=medium
 
   * Non-maintainer upload
diff -pruN 1.2.17-0.1/debian/control 1.3.6+dfsg-2/debian/control
--- 1.2.17-0.1/debian/control	2020-04-10 05:57:13.000000000 +0000
+++ 1.3.6+dfsg-2/debian/control	2022-07-30 09:26:47.000000000 +0000
@@ -1,32 +1,53 @@
 Source: openscap
+Section: admin
 Priority: optional
-Maintainer: Pierre Chifflier <pollux@debian.org>
-Build-Depends: debhelper-compat (= 10),
-    libpcre3-dev,
-    libxml2-dev,
-    libxslt1-dev,
-    swig,
-    python3-dev,
-    libperl-dev,
-    libcurl4-openssl-dev | libcurl4-gnutls-dev | libcurl-dev,
-    libgcrypt-dev,
-    libapt-pkg-dev,
-    libselinux1-dev [linux-any],
-    libcap-dev [linux-any],
-    libldap2-dev,
-    libbz2-dev,
-    pkg-config,
-    dh-python,
-    libdbus-1-dev
-Standards-Version: 4.1.0
-Section: libs
-Homepage: http://www.open-scap.org/
+Maintainer: Håvard F. Aasen <havard.f.aasen@pfft.no>
+Build-Depends: asciidoc,
+               cmake,
+               debhelper-compat (= 13),
+               dh-python,
+               doxygen,
+               graphviz,
+               libacl1-dev,
+               libapt-pkg-dev,
+               libattr1-dev,
+               libblkid-dev,
+               libbz2-dev,
+               libcap-dev [linux-any],
+               libcurl4-openssl-dev | libcurl4-gnutls-dev,
+               libdbus-1-dev,
+               libgcrypt-dev,
+               libglib2.0-dev,
+               libldap2-dev,
+               libopendbx1-dev,
+               libpcre3-dev,
+               libperl-dev,
+               libpopt-dev,
+               libprocps-dev,
+               librpm-dev,
+               libselinux1-dev [linux-any],
+               libxml-parser-perl,
+               libxml-xpath-perl,
+               libxml2-dev,
+               libxmlsec1-dev,
+               libxslt1-dev,
+               libyaml-dev,
+               pkg-config,
+               python3-all-dev,
+               swig,
+Standards-Version: 4.6.1
+Rules-Requires-Root: no
+Homepage: https://www.open-scap.org/
+Vcs-Browser: https://salsa.debian.org/debian/openscap
+Vcs-Git: https://salsa.debian.org/debian/openscap.git
 
 Package: libopenscap-dev
 Section: libdevel
 Architecture: linux-any
-Depends: libopenscap8 (= ${binary:Version}), ${misc:Depends}, libjs-jquery
-Description: Set of libraries enabling integration of the SCAP line of standards
+Depends: libopenscap25 (= ${binary:Version}),
+         ${misc:Depends},
+Suggests: openscap-doc,
+Description: libraries enabling integration of the SCAP line of standards - Development files
  OpenSCAP is a set of open source libraries providing an easier path
  for integration of the SCAP line of standards. SCAP is a line of
  standards managed by NIST with the goal of providing a standard language
@@ -43,14 +64,21 @@ Description: Set of libraries enabling i
  .
  This package contains the development files for OpenSCAP.
 
-Package: libopenscap8
+Package: libopenscap25
 Section: libs
 Architecture: linux-any
-Conflicts: libopenscap0, libopenscap1, libopenscap3
-Replaces: libopenscap0, libopenscap1, libopenscap3
-Pre-Depends: ${misc:Pre-Depends}
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Set of libraries enabling integration of the SCAP line of standards
+Conflicts: libopenscap0,
+           libopenscap1,
+           libopenscap3,
+           libopenscap8,
+Replaces: libopenscap0,
+          libopenscap1,
+          libopenscap3,
+          libopenscap8,
+Pre-Depends: ${misc:Pre-Depends},
+Depends: ${misc:Depends},
+         ${shlibs:Depends},
+Description: libraries enabling integration of the SCAP line of standards
  OpenSCAP is a set of open source libraries providing an easier path
  for integration of the SCAP line of standards. SCAP is a line of
  standards managed by NIST with the goal of providing a standard language
@@ -64,13 +92,19 @@ Description: Set of libraries enabling i
   * Common Vulnerability Scoring System (CVSS)
   * Extensible Configuration Checklist Description Format (XCCDF)
   * Open Vulnerability and Assessment Language (OVAL)
+ .
+ This package contains libraries for OpenSCAP.
 
 Package: python3-openscap
 Section: python
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, libopenscap8 (= ${binary:Version})
-Provides: ${python3:Provides}
-Description: Set of libraries enabling integration of the SCAP line of standards
+Depends: libopenscap25 (= ${binary:Version}),
+         ${misc:Depends},
+         ${python3:Depends},
+         ${shlibs:Depends},
+Suggests: openscap-doc,
+Provides: ${python3:Provides},
+Description: libraries enabling integration of the SCAP line of standards - Python 3 bindings
  OpenSCAP is a set of open source libraries providing an easier path
  for integration of the SCAP line of standards. SCAP is a line of
  standards managed by NIST with the goal of providing a standard language
@@ -85,13 +119,17 @@ Description: Set of libraries enabling i
   * Extensible Configuration Checklist Description Format (XCCDF)
   * Open Vulnerability and Assessment Language (OVAL)
  .
- This package contains the Python3 bindings for OpenSCAP.
+ This package contains the Python bindings for OpenSCAP.
 
 Package: libopenscap-perl
 Section: perl
 Architecture: linux-any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libopenscap8 (= ${binary:Version})
-Description: Set of libraries enabling integration of the SCAP line of standards
+Depends: libopenscap25 (= ${binary:Version}),
+         ${misc:Depends},
+         ${perl:Depends},
+         ${shlibs:Depends},
+Suggests: openscap-doc,
+Description: libraries enabling integration of the SCAP line of standards - Perl bindings
  OpenSCAP is a set of open source libraries providing an easier path
  for integration of the SCAP line of standards. SCAP is a line of
  standards managed by NIST with the goal of providing a standard language
@@ -108,13 +146,86 @@ Description: Set of libraries enabling i
  .
  This package contains the Perl bindings for OpenSCAP.
 
-Package: libopenscap8-dbg
-Section: debug
+Package: openscap-scanner
+Architecture: linux-any
+Depends: libopenscap25 (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends},
+Recommends: openscap-common (= ${binary:Version}),
+Suggests: openscap-doc,
+Description: OpenScap Scanner Tool (oscap)
+ OpenSCAP is a set of open source libraries providing an easier path
+ for integration of the SCAP line of standards. SCAP is a line of
+ standards managed by NIST with the goal of providing a standard language
+ for the expression of Computer Network Defense related information.
+ .
+ The intended scope of this project is to implement working interface
+ wrappers for parsing and querying SCAP content including:
+  * Common Vulnerabilities and Exposures (CVE)
+  * Common Configuration Enumeration (CCE)
+  * Common Platform Enumeration (CPE)
+  * Common Vulnerability Scoring System (CVSS)
+  * Extensible Configuration Checklist Description Format (XCCDF)
+  * Open Vulnerability and Assessment Language (OVAL)
+ .
+ This package contains oscap command-line tool, configuration and
+ vulnerability scanner. It can use for compliance checking with SCAP contents.
+
+Package: openscap-utils
 Architecture: linux-any
-Conflicts: libopenscap0-dbg
-Replaces: libopenscap0-dbg
-Depends: ${shlibs:Depends}, libopenscap8 (= ${binary:Version}), ${misc:Depends}
-Description: Set of libraries enabling integration of the SCAP line of standards
+Depends: openscap-scanner (= ${binary:Version}),
+         rpm,
+         ${misc:Depends},
+         ${python3:Depends},
+         ${shlibs:Depends},
+Recommends: openscap-common (= ${binary:Version}),
+Suggests: openscap-doc,
+Description: libraries enabling integration of the SCAP line of standards - Utility programs
+ OpenSCAP is a set of open source libraries providing an easier path
+ for integration of the SCAP line of standards. SCAP is a line of
+ standards managed by NIST with the goal of providing a standard language
+ for the expression of Computer Network Defense related information.
+ .
+ The intended scope of this project is to implement working interface
+ wrappers for parsing and querying SCAP content including:
+  * Common Vulnerabilities and Exposures (CVE)
+  * Common Configuration Enumeration (CCE)
+  * Common Platform Enumeration (CPE)
+  * Common Vulnerability Scoring System (CVSS)
+  * Extensible Configuration Checklist Description Format (XCCDF)
+  * Open Vulnerability and Assessment Language (OVAL)
+ .
+ This package contains command line utilities.
+
+Package: openscap-common
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+Breaks: libopenscap8 (<< 1.3.5),
+Replaces: libopenscap8 (<< 1.3.5),
+Description: OpenSCAP schema files
+ OpenSCAP is a set of open source libraries providing an easier path
+ for integration of the SCAP line of standards. SCAP is a line of
+ standards managed by NIST with the goal of providing a standard language
+ for the expression of Computer Network Defense related information.
+ .
+ The intended scope of this project is to implement working interface
+ wrappers for parsing and querying SCAP content including:
+  * Common Vulnerabilities and Exposures (CVE)
+  * Common Configuration Enumeration (CCE)
+  * Common Platform Enumeration (CPE)
+  * Common Vulnerability Scoring System (CVSS)
+  * Extensible Configuration Checklist Description Format (XCCDF)
+  * Open Vulnerability and Assessment Language (OVAL)
+ .
+ This package contains schema files.
+
+Package: openscap-doc
+Section: doc
+Architecture: all
+Multi-Arch: foreign
+Depends: ${misc:Depends},
+Description: libraries enabling integration of the SCAP line of standards - Documentation
  OpenSCAP is a set of open source libraries providing an easier path
  for integration of the SCAP line of standards. SCAP is a line of
  standards managed by NIST with the goal of providing a standard language
@@ -129,4 +240,4 @@ Description: Set of libraries enabling i
   * Extensible Configuration Checklist Description Format (XCCDF)
   * Open Vulnerability and Assessment Language (OVAL)
  .
- This package contains debugging symbols for OpenSCAP.
+ This package contains documentation.
diff -pruN 1.2.17-0.1/debian/copyright 1.3.6+dfsg-2/debian/copyright
--- 1.2.17-0.1/debian/copyright	2015-03-25 17:03:46.000000000 +0000
+++ 1.3.6+dfsg-2/debian/copyright	2022-07-30 09:26:47.000000000 +0000
@@ -1,33 +1,211 @@
-This package was debianized by Pierre Chifflier <pollux@debian.org> on
-Thu, 02 Apr 2009 10:30:16 +0200.
-
-It was downloaded from http://www.open-scap.org/
-
-Upstream Authors:
-
-    Peter Vrabec    <pvrabec@redhat.com>
-    Tomas Heinrich  <theinric@redhat.com>
-    Brandon Dixon   <Brandon.Dixon@g2-inc.com>
-    Brian Kolbay    <Brian.Kolbay@g2-inc.com>
-    Lukas Kuklinek  <lkuklinek@redhat.com>
-    Riley C. Porter <Riley.Porter@g2-inc.com>
-    Dan Kopecek     <dkopecek@redhat.com>
-
-Copyright:
-
-    Copyright 2008 Red Hat Inc., Durham, North Carolina.
-
-License:
-
-    OpenSCAP is licensed under the GNU Lesser General Public License
-    version 2.1 of the License, or (at your option) any later version.
-
-See  `/usr/share/common-licenses/LGPL-2.1'.
-
-The Debian packaging is:
-
-    Copyright (C) 2009 Pierre Chifflier <pollux@debian.org>
-
-and is licensed under the GPL version 3, 
-see `/usr/share/common-licenses/GPL-3'.
-
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: openscap
+Source: https://github.com/OpenSCAP/openscap
+Files-Excluded: xsl/xccdf-resources
+
+Files: *
+Copyright: 2008-2021 Red Hat Inc., Durham, North Carolina.
+License:LGPL-2.1+
+
+Files: cmake/*
+Copyright: 2000-2016 Kitware, Inc.
+           2000-2011 Insight Software Consortium
+License: BSD-3-clause
+
+Files: cmake/FindNSS.cmake
+Copyright: 2010, Ambroz Bizjak, <ambrop7@gmail.com>
+License: BSD-3-clause
+
+Files: cmake/FindPCRE.cmake
+Copyright: 2007-2009 LuaDist.
+License: expat
+
+Files: compat/dev_to_tty.c
+Copyright: 1998-2002 by Albert Cahalan
+License:LGPL-2.1+
+
+Files: compat/strptime.c
+Copyright: 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+License: LGPL-3.0+
+
+Files: debian/*
+Copyright: 2009 Pierre Chifflier <pollux@debian.org>
+           2020-2022 Håvard F. Aasen <havard.f.aasen@pfft.no>
+License: GPL-3
+
+Files: schemas/common/xmldsig-core-schema.xsd
+Copyright: 2001 The Internet Society and W3C (Massachusetts Institute of
+                Technology, Institut National de Recherche en Informatique
+                et en Automatique, Keio University)
+License: W3C
+
+Files: schemas/sce/1.0/*
+Copyright: 2012-2017 Red Hat Inc., Durham, North Carolina.
+License: LGPL-2.1+ and expat
+
+Files: utils/oscap_docker_python/get_cve_input.py
+       utils/oscap_docker_python/__init__.py
+Copyright: 2015 Brent Baude <bbaude@redhat.com>
+License: LGPL-2.0+
+
+Files: utils/oscap_docker_python/oscap_docker_common.py
+       utils/oscap_docker_python/oscap_docker_util_noatomic.py
+       utils/oscap_docker_python/oscap_docker_util.py
+Copyright: 2015 Brent Baude <bbaude@redhat.com>
+           2019 Dominique Blaze <contact@d0m.tech>
+License: LGPL-2.0+
+
+Files: utils/oscap-remediate
+       utils/oscap-remediate-offline
+Copyright: 2021 Red Hat Inc., Durham, North Carolina.
+License: GPL-2+
+
+Files: yaml-filter/*
+Copyright: 2020 OpenSCAP
+License: expat
+
+Files: yaml-filter/cmake/*
+Copyright: 2015-2017 RWTH Aachen University, Federal Republic of Germany
+License: BSD-3-clause
+
+Files: yaml-filter/tests/test-path-segments.c
+Copyright: 2020 Red Hat Inc., Durham, North Carolina.
+License: expat
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+ .
+ * Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+ .
+ * Neither the name of Kitware, Inc. nor the names of Contributors
+   may be used to endorse or promote products derived from this
+   software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License: expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
+
+License: LGPL-2.0+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+ .
+ This library 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
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA
+
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ .
+ This library 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
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ MA 02110-1301, USA.
+ .
+ See `/usr/share/common-licenses/LGPL-2.1'.
+
+License: LGPL-3.0+
+ See `/usr/share/common-licenses/LGPL-3'
+
+License: GPL-2+
+ See `/usr/share/common-licenses/GPL-2'
+
+License: GPL-3
+ See `/usr/share/common-licenses/GPL-3'
+
+License: W3C
+ By obtaining, using and/or copying this work, you (the licensee) agree
+ that you have read, understood, and will comply with the following terms
+ and conditions:
+ .
+ Permission to use, copy, modify, and distribute this software and its
+ documentation, with or without modification,  for any purpose and
+ without fee or royalty is hereby granted, provided that you include the
+ following on ALL copies of the software and documentation or portions
+ thereof, including modifications, that you make:
+  1. The full text of this NOTICE in a location viewable to users of the
+     redistributed or derivative work.
+  2. Any pre-existing intellectual property disclaimers, notices, or terms
+     and conditions. If none exist, a short notice of the following form
+     (hypertext is preferred, text is permitted) should be used within the
+     body of any redistributed or derivative code: "Copyright C
+     [$date-of-software] World Wide Web Consortium, (Massachusetts Institute
+     of Technology, Institut National de Recherche en Informatique et en
+     Automatique, Keio University). All Rights Reserved.
+     http://www.w3.org/Consortium/Legal/"
+  3. Notice of any changes or modifications to the W3C files, including the
+     date changes were made. (We recommend you provide URIs to the location
+     from which the code is derived.)
+ .
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
+ MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+ LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
+ PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE
+ ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+ .
+ COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
+ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
+ DOCUMENTATION.
+ .
+ The name and trademarks of copyright holders may NOT be used in advertising
+ or publicity pertaining to the software without specific, written prior
+ permission. Title to copyright in this software and any associated
+ documentation will at all times remain with copyright holders.
+ .
+ This formulation of W3C's notice and license became active on August 14 1998
+ so as to improve compatibility with GPL. This version ensures that W3C
+ software licensing terms are no more restrictive than GPL and consequently
+ W3C software may be distributed in GPL packages. See the older formulation
+ for the policy prior to this date. Please see our Copyright FAQ for common
+ questions about using materials from our site, including specific terms and
+ conditions for packages like libwww, Amaya, and Jigsaw. Other questions
+ about this notice can be directed to site-policy@w3.org.
diff -pruN 1.2.17-0.1/debian/dirs 1.3.6+dfsg-2/debian/dirs
--- 1.2.17-0.1/debian/dirs	2015-03-25 17:03:45.000000000 +0000
+++ 1.3.6+dfsg-2/debian/dirs	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin
diff -pruN 1.2.17-0.1/debian/docs 1.3.6+dfsg-2/debian/docs
--- 1.2.17-0.1/debian/docs	2015-03-25 17:03:45.000000000 +0000
+++ 1.3.6+dfsg-2/debian/docs	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-NEWS
-README
diff -pruN 1.2.17-0.1/debian/gbp.conf 1.3.6+dfsg-2/debian/gbp.conf
--- 1.2.17-0.1/debian/gbp.conf	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/gbp.conf	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar = True
+submodules = True
diff -pruN 1.2.17-0.1/debian/libopenscap25.install 1.3.6+dfsg-2/debian/libopenscap25.install
--- 1.2.17-0.1/debian/libopenscap25.install	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap25.install	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+usr/lib/*/lib*.so.*
diff -pruN 1.2.17-0.1/debian/libopenscap25.symbols 1.3.6+dfsg-2/debian/libopenscap25.symbols
--- 1.2.17-0.1/debian/libopenscap25.symbols	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap25.symbols	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,2959 @@
+libopenscap.so.25 libopenscap25 #MINVER#
+* Build-Depends-Package: libopenscap-dev
+ OSCAP_LANG_DEFAULT@Base 1.3.5
+ OSCAP_LANG_ENGLISH@Base 1.3.5
+ OSCAP_LANG_ENGLISH_US@Base 1.3.5
+ SEXP_build@Base 1.3.5
+ SEXP_datatype@Base 1.3.5
+ SEXP_datatype_addop@Base 1.3.5
+ SEXP_datatype_delop@Base 1.3.5
+ SEXP_datatype_new@Base 1.3.5
+ SEXP_datatype_set@Base 1.3.5
+ SEXP_datatype_set_nth@Base 1.3.5
+ SEXP_datatype_setflag@Base 1.3.5
+ SEXP_datatype_unsetflag@Base 1.3.5
+ SEXP_deepcmp@Base 1.3.5
+ SEXP_emptyp@Base 1.3.5
+ SEXP_eq@Base 1.3.5
+ SEXP_fprintfa@Base 1.3.5
+ SEXP_free@Base 1.3.5
+ SEXP_init@Base 1.3.5
+ SEXP_list_add@Base 1.3.5
+ SEXP_list_first@Base 1.3.5
+ SEXP_list_free@Base 1.3.5
+ SEXP_list_it_free@Base 1.3.5
+ SEXP_list_it_new@Base 1.3.5
+ SEXP_list_it_next@Base 1.3.5
+ SEXP_list_join@Base 1.3.5
+ SEXP_list_last@Base 1.3.5
+ SEXP_list_length@Base 1.3.5
+ SEXP_list_new@Base 1.3.5
+ SEXP_list_new_r@Base 1.3.5
+ SEXP_list_new_rv@Base 1.3.5
+ SEXP_list_nth@Base 1.3.5
+ SEXP_list_pop@Base 1.3.5
+ SEXP_list_push@Base 1.3.5
+ SEXP_list_replace@Base 1.3.5
+ SEXP_list_rest@Base 1.3.5
+ SEXP_list_rest_r@Base 1.3.5
+ SEXP_list_sort@Base 1.3.5
+ SEXP_listp@Base 1.3.5
+ SEXP_listref_first@Base 1.3.5
+ SEXP_listref_last@Base 1.3.5
+ SEXP_listref_nth@Base 1.3.5
+ SEXP_listref_rest@Base 1.3.5
+ SEXP_new@Base 1.3.5
+ SEXP_number_free@Base 1.3.5
+ SEXP_number_get@Base 1.3.5
+ SEXP_number_getb@Base 1.3.5
+ SEXP_number_getf@Base 1.3.5
+ SEXP_number_geti_32@Base 1.3.5
+ SEXP_number_geti_64@Base 1.3.5
+ SEXP_number_getu_16@Base 1.3.5
+ SEXP_number_getu_32@Base 1.3.5
+ SEXP_number_getu_64@Base 1.3.5
+ SEXP_number_getu_8@Base 1.3.5
+ SEXP_number_new@Base 1.3.5
+ SEXP_number_newb@Base 1.3.5
+ SEXP_number_newb_r@Base 1.3.5
+ SEXP_number_newf@Base 1.3.5
+ SEXP_number_newf_r@Base 1.3.5
+ SEXP_number_newi_16@Base 1.3.5
+ SEXP_number_newi_32@Base 1.3.5
+ SEXP_number_newi_32_r@Base 1.3.5
+ SEXP_number_newi_64@Base 1.3.5
+ SEXP_number_newi_64_r@Base 1.3.5
+ SEXP_number_newi_8@Base 1.3.5
+ SEXP_number_newu_16@Base 1.3.5
+ SEXP_number_newu_32@Base 1.3.5
+ SEXP_number_newu_32_r@Base 1.3.5
+ SEXP_number_newu_64@Base 1.3.5
+ SEXP_number_newu_64_r@Base 1.3.5
+ SEXP_number_newu_8@Base 1.3.5
+ SEXP_number_type@Base 1.3.5
+ SEXP_numberp@Base 1.3.5
+ SEXP_ref@Base 1.3.5
+ SEXP_refcmp@Base 1.3.5
+ SEXP_refs@Base 1.3.5
+ SEXP_sbprintf_t@Base 1.3.5
+ SEXP_sizeof@Base 1.3.5
+ SEXP_softref@Base 1.3.5
+ SEXP_softrefp@Base 1.3.5
+ SEXP_strcmp@Base 1.3.5
+ SEXP_string_cmp@Base 1.3.5
+ SEXP_string_cstr@Base 1.3.5
+ SEXP_string_cstr_r@Base 1.3.5
+ SEXP_string_cstrp@Base 1.3.5
+ SEXP_string_free@Base 1.3.5
+ SEXP_string_getb@Base 1.3.5
+ SEXP_string_length@Base 1.3.5
+ SEXP_string_new@Base 1.3.5
+ SEXP_string_new_r@Base 1.3.5
+ SEXP_string_newf@Base 1.3.5
+ SEXP_string_newf_r@Base 1.3.5
+ SEXP_string_newf_rv@Base 1.3.5
+ SEXP_string_nth@Base 1.3.5
+ SEXP_string_subcstr@Base 1.3.5
+ SEXP_stringp@Base 1.3.5
+ SEXP_strncmp@Base 1.3.5
+ SEXP_strtype@Base 1.3.5
+ SEXP_typeof@Base 1.3.5
+ SEXP_unref@Base 1.3.5
+ SEXP_unref_r@Base 1.3.5
+ __SEXP_VALIDATE@Base 1.3.5
+ __SEXP_free_r@Base 1.3.5
+ __oscap_dlprintf@Base 1.3.5
+ check_engine_plugin_cleanup@Base 1.3.5
+ check_engine_plugin_export_results@Base 1.3.5
+ check_engine_plugin_get_capabilities@Base 1.3.5
+ check_engine_plugin_get_known_plugins@Base 1.3.5
+ check_engine_plugin_load2@Base 1.3.5
+ check_engine_plugin_load@Base 1.3.5
+ check_engine_plugin_register@Base 1.3.5
+ check_engine_plugin_unload@Base 1.3.5
+ cpe_check_free@Base 1.3.5
+ cpe_check_get_href@Base 1.3.5
+ cpe_check_get_identifier@Base 1.3.5
+ cpe_check_get_system@Base 1.3.5
+ cpe_check_iterator_free@Base 1.3.5
+ cpe_check_iterator_has_more@Base 1.3.5
+ cpe_check_iterator_next@Base 1.3.5
+ cpe_check_iterator_remove@Base 1.3.5
+ cpe_check_iterator_reset@Base 1.3.5
+ cpe_check_new@Base 1.3.5
+ cpe_check_set_href@Base 1.3.5
+ cpe_check_set_identifier@Base 1.3.5
+ cpe_check_set_system@Base 1.3.5
+ cpe_dict_model_add_item@Base 1.3.5
+ cpe_dict_model_add_vendor@Base 1.3.5
+ cpe_dict_model_export@Base 1.3.5
+ cpe_dict_model_free@Base 1.3.5
+ cpe_dict_model_get_base_version@Base 1.3.5
+ cpe_dict_model_get_generator@Base 1.3.5
+ cpe_dict_model_get_items@Base 1.3.5
+ cpe_dict_model_get_vendors@Base 1.3.5
+ cpe_dict_model_import_source@Base 1.3.5
+ cpe_dict_model_new@Base 1.3.5
+ cpe_dict_model_set_base_version@Base 1.3.5
+ cpe_dict_model_supported@Base 1.3.5
+ cpe_edition_add_language@Base 1.3.5
+ cpe_edition_free@Base 1.3.5
+ cpe_edition_get_languages@Base 1.3.5
+ cpe_edition_get_value@Base 1.3.5
+ cpe_edition_iterator_free@Base 1.3.5
+ cpe_edition_iterator_has_more@Base 1.3.5
+ cpe_edition_iterator_next@Base 1.3.5
+ cpe_edition_iterator_remove@Base 1.3.5
+ cpe_edition_iterator_reset@Base 1.3.5
+ cpe_edition_new@Base 1.3.5
+ cpe_edition_set_value@Base 1.3.5
+ cpe_generator_free@Base 1.3.5
+ cpe_generator_get_product_name@Base 1.3.5
+ cpe_generator_get_product_version@Base 1.3.5
+ cpe_generator_get_schema_version@Base 1.3.5
+ cpe_generator_get_timestamp@Base 1.3.5
+ cpe_generator_new@Base 1.3.5
+ cpe_generator_set_product_name@Base 1.3.5
+ cpe_generator_set_product_version@Base 1.3.5
+ cpe_generator_set_schema_version@Base 1.3.5
+ cpe_generator_set_timestamp@Base 1.3.5
+ cpe_item_add_check@Base 1.3.5
+ cpe_item_add_reference@Base 1.3.5
+ cpe_item_add_title@Base 1.3.5
+ cpe_item_free@Base 1.3.5
+ cpe_item_get_checks@Base 1.3.5
+ cpe_item_get_deprecated_by@Base 1.3.5
+ cpe_item_get_deprecation_date@Base 1.3.5
+ cpe_item_get_metadata@Base 1.3.5
+ cpe_item_get_name@Base 1.3.5
+ cpe_item_get_references@Base 1.3.5
+ cpe_item_get_titles@Base 1.3.5
+ cpe_item_is_applicable@Base 1.3.5
+ cpe_item_iterator_free@Base 1.3.5
+ cpe_item_iterator_has_more@Base 1.3.5
+ cpe_item_iterator_next@Base 1.3.5
+ cpe_item_iterator_remove@Base 1.3.5
+ cpe_item_iterator_reset@Base 1.3.5
+ cpe_item_metadata_get_deprecated_by_nvd_id@Base 1.3.5
+ cpe_item_metadata_get_modification_date@Base 1.3.5
+ cpe_item_metadata_get_nvd_id@Base 1.3.5
+ cpe_item_metadata_get_status@Base 1.3.5
+ cpe_item_metadata_new@Base 1.3.5
+ cpe_item_metadata_set_deprecated_by_nvd_id@Base 1.3.5
+ cpe_item_metadata_set_modification_date@Base 1.3.5
+ cpe_item_metadata_set_nvd_id@Base 1.3.5
+ cpe_item_metadata_set_status@Base 1.3.5
+ cpe_item_new@Base 1.3.5
+ cpe_item_set_deprecated_by@Base 1.3.5
+ cpe_item_set_deprecation_date@Base 1.3.5
+ cpe_item_set_name@Base 1.3.5
+ cpe_itemmetadata_free@Base 1.3.5
+ cpe_lang_model_add_platform@Base 1.3.5
+ cpe_lang_model_export@Base 1.3.5
+ cpe_lang_model_free@Base 1.3.5
+ cpe_lang_model_get_item@Base 1.3.5
+ cpe_lang_model_get_platforms@Base 1.3.5
+ cpe_lang_model_import_source@Base 1.3.5
+ cpe_lang_model_new@Base 1.3.5
+ cpe_lang_model_supported@Base 1.3.5
+ cpe_language_free@Base 1.3.5
+ cpe_language_get_value@Base 1.3.5
+ cpe_language_iterator_free@Base 1.3.5
+ cpe_language_iterator_has_more@Base 1.3.5
+ cpe_language_iterator_next@Base 1.3.5
+ cpe_language_iterator_remove@Base 1.3.5
+ cpe_language_iterator_reset@Base 1.3.5
+ cpe_language_new@Base 1.3.5
+ cpe_language_set_value@Base 1.3.5
+ cpe_name_applicable_dict@Base 1.3.5
+ cpe_name_check@Base 1.3.5
+ cpe_name_clone@Base 1.3.5
+ cpe_name_free@Base 1.3.5
+ cpe_name_get_as_format@Base 1.3.5
+ cpe_name_get_as_str@Base 1.3.5
+ cpe_name_get_edition@Base 1.3.5
+ cpe_name_get_format@Base 1.3.5
+ cpe_name_get_format_of_str@Base 1.3.5
+ cpe_name_get_language@Base 1.3.5
+ cpe_name_get_other@Base 1.3.5
+ cpe_name_get_part@Base 1.3.5
+ cpe_name_get_product@Base 1.3.5
+ cpe_name_get_sw_edition@Base 1.3.5
+ cpe_name_get_target_hw@Base 1.3.5
+ cpe_name_get_target_sw@Base 1.3.5
+ cpe_name_get_update@Base 1.3.5
+ cpe_name_get_vendor@Base 1.3.5
+ cpe_name_get_version@Base 1.3.5
+ cpe_name_match_dict@Base 1.3.5
+ cpe_name_match_one@Base 1.3.5
+ cpe_name_new@Base 1.3.5
+ cpe_name_set_edition@Base 1.3.5
+ cpe_name_set_format@Base 1.3.5
+ cpe_name_set_language@Base 1.3.5
+ cpe_name_set_other@Base 1.3.5
+ cpe_name_set_part@Base 1.3.5
+ cpe_name_set_product@Base 1.3.5
+ cpe_name_set_sw_edition@Base 1.3.5
+ cpe_name_set_target_hw@Base 1.3.5
+ cpe_name_set_target_sw@Base 1.3.5
+ cpe_name_set_update@Base 1.3.5
+ cpe_name_set_vendor@Base 1.3.5
+ cpe_name_set_version@Base 1.3.5
+ cpe_name_supported@Base 1.3.5
+ cpe_name_write@Base 1.3.5
+ cpe_platform_add_title@Base 1.3.5
+ cpe_platform_applicable_lang_model@Base 1.3.5
+ cpe_platform_free@Base 1.3.5
+ cpe_platform_get_expr@Base 1.3.5
+ cpe_platform_get_id@Base 1.3.5
+ cpe_platform_get_remark@Base 1.3.5
+ cpe_platform_get_titles@Base 1.3.5
+ cpe_platform_iterator_free@Base 1.3.5
+ cpe_platform_iterator_has_more@Base 1.3.5
+ cpe_platform_iterator_next@Base 1.3.5
+ cpe_platform_iterator_remove@Base 1.3.5
+ cpe_platform_iterator_reset@Base 1.3.5
+ cpe_platform_new@Base 1.3.5
+ cpe_platform_set_expr@Base 1.3.5
+ cpe_platform_set_id@Base 1.3.5
+ cpe_platform_set_remark@Base 1.3.5
+ cpe_product_add_version@Base 1.3.5
+ cpe_product_free@Base 1.3.5
+ cpe_product_get_part@Base 1.3.5
+ cpe_product_get_value@Base 1.3.5
+ cpe_product_get_versions@Base 1.3.5
+ cpe_product_iterator_free@Base 1.3.5
+ cpe_product_iterator_has_more@Base 1.3.5
+ cpe_product_iterator_next@Base 1.3.5
+ cpe_product_iterator_remove@Base 1.3.5
+ cpe_product_iterator_reset@Base 1.3.5
+ cpe_product_new@Base 1.3.5
+ cpe_product_set_part@Base 1.3.5
+ cpe_product_set_value@Base 1.3.5
+ cpe_reference_free@Base 1.3.5
+ cpe_reference_get_content@Base 1.3.5
+ cpe_reference_get_href@Base 1.3.5
+ cpe_reference_iterator_free@Base 1.3.5
+ cpe_reference_iterator_has_more@Base 1.3.5
+ cpe_reference_iterator_next@Base 1.3.5
+ cpe_reference_iterator_remove@Base 1.3.5
+ cpe_reference_iterator_reset@Base 1.3.5
+ cpe_reference_new@Base 1.3.5
+ cpe_reference_set_content@Base 1.3.5
+ cpe_reference_set_href@Base 1.3.5
+ cpe_testexpr_add_subexpression@Base 1.3.5
+ cpe_testexpr_clone@Base 1.3.5
+ cpe_testexpr_free@Base 1.3.5
+ cpe_testexpr_get_meta_check_href@Base 1.3.5
+ cpe_testexpr_get_meta_check_id@Base 1.3.5
+ cpe_testexpr_get_meta_check_system@Base 1.3.5
+ cpe_testexpr_get_meta_cpe@Base 1.3.5
+ cpe_testexpr_get_meta_expr@Base 1.3.5
+ cpe_testexpr_get_next@Base 1.3.5
+ cpe_testexpr_get_oper@Base 1.3.5
+ cpe_testexpr_iterator_free@Base 1.3.5
+ cpe_testexpr_iterator_has_more@Base 1.3.5
+ cpe_testexpr_iterator_next@Base 1.3.5
+ cpe_testexpr_iterator_reset@Base 1.3.5
+ cpe_testexpr_new@Base 1.3.5
+ cpe_testexpr_set_name@Base 1.3.5
+ cpe_testexpr_set_oper@Base 1.3.5
+ cpe_update_add_edition@Base 1.3.5
+ cpe_update_free@Base 1.3.5
+ cpe_update_get_editions@Base 1.3.5
+ cpe_update_get_value@Base 1.3.5
+ cpe_update_iterator_free@Base 1.3.5
+ cpe_update_iterator_has_more@Base 1.3.5
+ cpe_update_iterator_next@Base 1.3.5
+ cpe_update_iterator_remove@Base 1.3.5
+ cpe_update_iterator_reset@Base 1.3.5
+ cpe_update_new@Base 1.3.5
+ cpe_update_set_value@Base 1.3.5
+ cpe_vendor_add_product@Base 1.3.5
+ cpe_vendor_add_title@Base 1.3.5
+ cpe_vendor_free@Base 1.3.5
+ cpe_vendor_get_products@Base 1.3.5
+ cpe_vendor_get_titles@Base 1.3.5
+ cpe_vendor_get_value@Base 1.3.5
+ cpe_vendor_iterator_free@Base 1.3.5
+ cpe_vendor_iterator_has_more@Base 1.3.5
+ cpe_vendor_iterator_next@Base 1.3.5
+ cpe_vendor_iterator_remove@Base 1.3.5
+ cpe_vendor_iterator_reset@Base 1.3.5
+ cpe_vendor_new@Base 1.3.5
+ cpe_vendor_set_value@Base 1.3.5
+ cpe_version_add_update@Base 1.3.5
+ cpe_version_free@Base 1.3.5
+ cpe_version_get_updates@Base 1.3.5
+ cpe_version_get_value@Base 1.3.5
+ cpe_version_iterator_free@Base 1.3.5
+ cpe_version_iterator_has_more@Base 1.3.5
+ cpe_version_iterator_next@Base 1.3.5
+ cpe_version_iterator_remove@Base 1.3.5
+ cpe_version_iterator_reset@Base 1.3.5
+ cpe_version_new@Base 1.3.5
+ cpe_version_set_value@Base 1.3.5
+ cve_configuration_clone@Base 1.3.5
+ cve_configuration_free@Base 1.3.5
+ cve_configuration_get_expr@Base 1.3.5
+ cve_configuration_get_id@Base 1.3.5
+ cve_configuration_iterator_free@Base 1.3.5
+ cve_configuration_iterator_has_more@Base 1.3.5
+ cve_configuration_iterator_next@Base 1.3.5
+ cve_configuration_iterator_remove@Base 1.3.5
+ cve_configuration_iterator_reset@Base 1.3.5
+ cve_configuration_new@Base 1.3.5
+ cve_configuration_set_id@Base 1.3.5
+ cve_entry_add_configuration@Base 1.3.5
+ cve_entry_add_product@Base 1.3.5
+ cve_entry_add_reference@Base 1.3.5
+ cve_entry_add_summary@Base 1.3.5
+ cve_entry_clone@Base 1.3.5
+ cve_entry_free@Base 1.3.5
+ cve_entry_get_configurations@Base 1.3.5
+ cve_entry_get_cvss@Base 1.3.5
+ cve_entry_get_cwe@Base 1.3.5
+ cve_entry_get_id@Base 1.3.5
+ cve_entry_get_modified@Base 1.3.5
+ cve_entry_get_products@Base 1.3.5
+ cve_entry_get_published@Base 1.3.5
+ cve_entry_get_references@Base 1.3.5
+ cve_entry_get_sec_protection@Base 1.3.5
+ cve_entry_get_summaries@Base 1.3.5
+ cve_entry_iterator_free@Base 1.3.5
+ cve_entry_iterator_has_more@Base 1.3.5
+ cve_entry_iterator_next@Base 1.3.5
+ cve_entry_iterator_remove@Base 1.3.5
+ cve_entry_iterator_reset@Base 1.3.5
+ cve_entry_new@Base 1.3.5
+ cve_entry_set_cwe@Base 1.3.5
+ cve_entry_set_id@Base 1.3.5
+ cve_entry_set_modified@Base 1.3.5
+ cve_entry_set_published@Base 1.3.5
+ cve_entry_set_sec_protection@Base 1.3.5
+ cve_model_add_entry@Base 1.3.5
+ cve_model_clone@Base 1.3.5
+ cve_model_export@Base 1.3.5
+ cve_model_free@Base 1.3.5
+ cve_model_get_entries@Base 1.3.5
+ cve_model_get_nvd_xml_version@Base 1.3.5
+ cve_model_get_pub_date@Base 1.3.5
+ cve_model_import@Base 1.3.5
+ cve_model_new@Base 1.3.5
+ cve_model_set_nvd_xml_version@Base 1.3.5
+ cve_model_set_pub_date@Base 1.3.5
+ cve_model_supported@Base 1.3.5
+ cve_product_clone@Base 1.3.5
+ cve_product_free@Base 1.3.5
+ cve_product_get_value@Base 1.3.5
+ cve_product_iterator_free@Base 1.3.5
+ cve_product_iterator_has_more@Base 1.3.5
+ cve_product_iterator_next@Base 1.3.5
+ cve_product_iterator_remove@Base 1.3.5
+ cve_product_iterator_reset@Base 1.3.5
+ cve_product_new@Base 1.3.5
+ cve_product_set_value@Base 1.3.5
+ cve_reference_clone@Base 1.3.5
+ cve_reference_free@Base 1.3.5
+ cve_reference_get_href@Base 1.3.5
+ cve_reference_get_lang@Base 1.3.5
+ cve_reference_get_source@Base 1.3.5
+ cve_reference_get_type@Base 1.3.5
+ cve_reference_get_value@Base 1.3.5
+ cve_reference_iterator_free@Base 1.3.5
+ cve_reference_iterator_has_more@Base 1.3.5
+ cve_reference_iterator_next@Base 1.3.5
+ cve_reference_iterator_remove@Base 1.3.5
+ cve_reference_iterator_reset@Base 1.3.5
+ cve_reference_new@Base 1.3.5
+ cve_reference_set_href@Base 1.3.5
+ cve_reference_set_lang@Base 1.3.5
+ cve_reference_set_source@Base 1.3.5
+ cve_reference_set_type@Base 1.3.5
+ cve_reference_set_value@Base 1.3.5
+ cve_summary_clone@Base 1.3.5
+ cve_summary_free@Base 1.3.5
+ cve_summary_get_summary@Base 1.3.5
+ cve_summary_iterator_free@Base 1.3.5
+ cve_summary_iterator_has_more@Base 1.3.5
+ cve_summary_iterator_next@Base 1.3.5
+ cve_summary_iterator_remove@Base 1.3.5
+ cve_summary_iterator_reset@Base 1.3.5
+ cve_summary_new@Base 1.3.5
+ cve_summary_set_summary@Base 1.3.5
+ cvrf_acknowledgment_clone@Base 1.3.5
+ cvrf_acknowledgment_free@Base 1.3.5
+ cvrf_acknowledgment_get_description@Base 1.3.5
+ cvrf_acknowledgment_get_names@Base 1.3.5
+ cvrf_acknowledgment_get_organizations@Base 1.3.5
+ cvrf_acknowledgment_get_urls@Base 1.3.5
+ cvrf_acknowledgment_new@Base 1.3.5
+ cvrf_acknowledgment_set_description@Base 1.3.5
+ cvrf_branch_clone@Base 1.3.5
+ cvrf_branch_free@Base 1.3.5
+ cvrf_branch_get_branch_name@Base 1.3.5
+ cvrf_branch_get_product_name@Base 1.3.5
+ cvrf_branch_get_subbranches@Base 1.3.5
+ cvrf_branch_new@Base 1.3.5
+ cvrf_branch_set_branch_name@Base 1.3.5
+ cvrf_branch_set_product_name@Base 1.3.5
+ cvrf_doc_publisher_clone@Base 1.3.5
+ cvrf_doc_publisher_free@Base 1.3.5
+ cvrf_doc_publisher_get_contact_details@Base 1.3.5
+ cvrf_doc_publisher_get_issuing_authority@Base 1.3.5
+ cvrf_doc_publisher_get_vendor_id@Base 1.3.5
+ cvrf_doc_publisher_new@Base 1.3.5
+ cvrf_doc_publisher_set_contact_details@Base 1.3.5
+ cvrf_doc_publisher_set_issuing_authority@Base 1.3.5
+ cvrf_doc_publisher_set_vendor_id@Base 1.3.5
+ cvrf_doc_tracking_add_revision@Base 1.3.5
+ cvrf_doc_tracking_clone@Base 1.3.5
+ cvrf_doc_tracking_free@Base 1.3.5
+ cvrf_doc_tracking_get_aliases@Base 1.3.5
+ cvrf_doc_tracking_get_cur_release_date@Base 1.3.5
+ cvrf_doc_tracking_get_generator_date@Base 1.3.5
+ cvrf_doc_tracking_get_generator_engine@Base 1.3.5
+ cvrf_doc_tracking_get_init_release_date@Base 1.3.5
+ cvrf_doc_tracking_get_revision_history@Base 1.3.5
+ cvrf_doc_tracking_get_tracking_id@Base 1.3.5
+ cvrf_doc_tracking_get_version@Base 1.3.5
+ cvrf_doc_tracking_new@Base 1.3.5
+ cvrf_doc_tracking_set_cur_release_date@Base 1.3.5
+ cvrf_doc_tracking_set_generator_date@Base 1.3.5
+ cvrf_doc_tracking_set_generator_engine@Base 1.3.5
+ cvrf_doc_tracking_set_init_release_date@Base 1.3.5
+ cvrf_doc_tracking_set_tracking_id@Base 1.3.5
+ cvrf_doc_tracking_set_version@Base 1.3.5
+ cvrf_document_clone@Base 1.3.5
+ cvrf_document_free@Base 1.3.5
+ cvrf_document_get_acknowledgments@Base 1.3.5
+ cvrf_document_get_aggregate_severity@Base 1.3.5
+ cvrf_document_get_doc_distribution@Base 1.3.5
+ cvrf_document_get_namespace@Base 1.3.5
+ cvrf_document_get_notes@Base 1.3.5
+ cvrf_document_get_publisher@Base 1.3.5
+ cvrf_document_get_references@Base 1.3.5
+ cvrf_document_get_tracking@Base 1.3.5
+ cvrf_document_new@Base 1.3.5
+ cvrf_document_set_aggregate_severity@Base 1.3.5
+ cvrf_document_set_doc_distribution@Base 1.3.5
+ cvrf_document_set_namespace@Base 1.3.5
+ cvrf_document_set_publisher@Base 1.3.5
+ cvrf_document_set_tracking@Base 1.3.5
+ cvrf_group_clone@Base 1.3.5
+ cvrf_group_free@Base 1.3.5
+ cvrf_group_get_description@Base 1.3.5
+ cvrf_group_get_group_id@Base 1.3.5
+ cvrf_group_get_product_ids@Base 1.3.5
+ cvrf_group_iterator_free@Base 1.3.5
+ cvrf_group_iterator_has_more@Base 1.3.5
+ cvrf_group_iterator_next@Base 1.3.5
+ cvrf_group_iterator_remove@Base 1.3.5
+ cvrf_group_iterator_reset@Base 1.3.5
+ cvrf_group_new@Base 1.3.5
+ cvrf_group_set_description@Base 1.3.5
+ cvrf_group_set_group_id@Base 1.3.5
+ cvrf_index_add_model@Base 1.3.5
+ cvrf_index_clone@Base 1.3.5
+ cvrf_index_free@Base 1.3.5
+ cvrf_index_get_export_source@Base 1.3.5
+ cvrf_index_get_index_file@Base 1.3.5
+ cvrf_index_get_models@Base 1.3.5
+ cvrf_index_get_results_source@Base 1.3.5
+ cvrf_index_get_source_url@Base 1.3.5
+ cvrf_index_import@Base 1.3.5
+ cvrf_index_new@Base 1.3.5
+ cvrf_index_set_index_file@Base 1.3.5
+ cvrf_index_set_source_url@Base 1.3.5
+ cvrf_involvement_clone@Base 1.3.5
+ cvrf_involvement_free@Base 1.3.5
+ cvrf_involvement_get_description@Base 1.3.5
+ cvrf_involvement_iterator_free@Base 1.3.5
+ cvrf_involvement_iterator_has_more@Base 1.3.5
+ cvrf_involvement_iterator_next@Base 1.3.5
+ cvrf_involvement_iterator_remove@Base 1.3.5
+ cvrf_involvement_iterator_reset@Base 1.3.5
+ cvrf_involvement_new@Base 1.3.5
+ cvrf_involvement_set_description@Base 1.3.5
+ cvrf_model_add_vulnerability@Base 1.3.5
+ cvrf_model_clone@Base 1.3.5
+ cvrf_model_filter_by_cpe@Base 1.3.5
+ cvrf_model_free@Base 1.3.5
+ cvrf_model_get_doc_title@Base 1.3.5
+ cvrf_model_get_doc_type@Base 1.3.5
+ cvrf_model_get_document@Base 1.3.5
+ cvrf_model_get_export_source@Base 1.3.5
+ cvrf_model_get_identification@Base 1.3.5
+ cvrf_model_get_product_tree@Base 1.3.5
+ cvrf_model_get_results_source@Base 1.3.5
+ cvrf_model_get_vulnerabilities@Base 1.3.5
+ cvrf_model_import@Base 1.3.5
+ cvrf_model_iterator_free@Base 1.3.5
+ cvrf_model_iterator_has_more@Base 1.3.5
+ cvrf_model_iterator_next@Base 1.3.5
+ cvrf_model_iterator_remove@Base 1.3.5
+ cvrf_model_iterator_reset@Base 1.3.5
+ cvrf_model_new@Base 1.3.5
+ cvrf_model_set_doc_title@Base 1.3.5
+ cvrf_model_set_doc_type@Base 1.3.5
+ cvrf_model_set_document@Base 1.3.5
+ cvrf_model_supported@Base 1.3.5
+ cvrf_note_clone@Base 1.3.5
+ cvrf_note_free@Base 1.3.5
+ cvrf_note_get_audience@Base 1.3.5
+ cvrf_note_get_contents@Base 1.3.5
+ cvrf_note_get_ordinal@Base 1.3.5
+ cvrf_note_get_title@Base 1.3.5
+ cvrf_note_new@Base 1.3.5
+ cvrf_note_set_audience@Base 1.3.5
+ cvrf_note_set_contents@Base 1.3.5
+ cvrf_note_set_ordinal@Base 1.3.5
+ cvrf_note_set_title@Base 1.3.5
+ cvrf_product_name_clone@Base 1.3.5
+ cvrf_product_name_free@Base 1.3.5
+ cvrf_product_name_get_cpe@Base 1.3.5
+ cvrf_product_name_get_product_id@Base 1.3.5
+ cvrf_product_name_iterator_free@Base 1.3.5
+ cvrf_product_name_iterator_has_more@Base 1.3.5
+ cvrf_product_name_iterator_next@Base 1.3.5
+ cvrf_product_name_iterator_remove@Base 1.3.5
+ cvrf_product_name_iterator_reset@Base 1.3.5
+ cvrf_product_name_new@Base 1.3.5
+ cvrf_product_name_set_cpe@Base 1.3.5
+ cvrf_product_name_set_product_id@Base 1.3.5
+ cvrf_product_status_clone@Base 1.3.5
+ cvrf_product_status_free@Base 1.3.5
+ cvrf_product_status_get_ids@Base 1.3.5
+ cvrf_product_status_iterator_free@Base 1.3.5
+ cvrf_product_status_iterator_has_more@Base 1.3.5
+ cvrf_product_status_iterator_next@Base 1.3.5
+ cvrf_product_status_iterator_remove@Base 1.3.5
+ cvrf_product_status_iterator_reset@Base 1.3.5
+ cvrf_product_status_new@Base 1.3.5
+ cvrf_product_tree_add_group@Base 1.3.5
+ cvrf_product_tree_add_product_name@Base 1.3.5
+ cvrf_product_tree_add_relationship@Base 1.3.5
+ cvrf_product_tree_clone@Base 1.3.5
+ cvrf_product_tree_filter_by_cpe@Base 1.3.5
+ cvrf_product_tree_free@Base 1.3.5
+ cvrf_product_tree_get_branches@Base 1.3.5
+ cvrf_product_tree_get_product_groups@Base 1.3.5
+ cvrf_product_tree_get_product_names@Base 1.3.5
+ cvrf_product_tree_get_relationships@Base 1.3.5
+ cvrf_product_tree_new@Base 1.3.5
+ cvrf_reference_clone@Base 1.3.5
+ cvrf_reference_free@Base 1.3.5
+ cvrf_reference_get_description@Base 1.3.5
+ cvrf_reference_get_url@Base 1.3.5
+ cvrf_reference_new@Base 1.3.5
+ cvrf_reference_set_description@Base 1.3.5
+ cvrf_reference_set_url@Base 1.3.5
+ cvrf_relationship_clone@Base 1.3.5
+ cvrf_relationship_free@Base 1.3.5
+ cvrf_relationship_get_product_name@Base 1.3.5
+ cvrf_relationship_get_product_reference@Base 1.3.5
+ cvrf_relationship_get_relates_to_ref@Base 1.3.5
+ cvrf_relationship_iterator_free@Base 1.3.5
+ cvrf_relationship_iterator_has_more@Base 1.3.5
+ cvrf_relationship_iterator_next@Base 1.3.5
+ cvrf_relationship_iterator_remove@Base 1.3.5
+ cvrf_relationship_iterator_reset@Base 1.3.5
+ cvrf_relationship_new@Base 1.3.5
+ cvrf_relationship_set_product_name@Base 1.3.5
+ cvrf_relationship_set_product_reference@Base 1.3.5
+ cvrf_relationship_set_relates_to_ref@Base 1.3.5
+ cvrf_remediation_clone@Base 1.3.5
+ cvrf_remediation_free@Base 1.3.5
+ cvrf_remediation_get_date@Base 1.3.5
+ cvrf_remediation_get_description@Base 1.3.5
+ cvrf_remediation_get_entitlement@Base 1.3.5
+ cvrf_remediation_get_group_ids@Base 1.3.5
+ cvrf_remediation_get_product_ids@Base 1.3.5
+ cvrf_remediation_get_url@Base 1.3.5
+ cvrf_remediation_iterator_free@Base 1.3.5
+ cvrf_remediation_iterator_has_more@Base 1.3.5
+ cvrf_remediation_iterator_next@Base 1.3.5
+ cvrf_remediation_iterator_remove@Base 1.3.5
+ cvrf_remediation_iterator_reset@Base 1.3.5
+ cvrf_remediation_new@Base 1.3.5
+ cvrf_remediation_set_date@Base 1.3.5
+ cvrf_remediation_set_description@Base 1.3.5
+ cvrf_remediation_set_entitlement@Base 1.3.5
+ cvrf_remediation_set_url@Base 1.3.5
+ cvrf_revision_clone@Base 1.3.5
+ cvrf_revision_free@Base 1.3.5
+ cvrf_revision_get_date@Base 1.3.5
+ cvrf_revision_get_description@Base 1.3.5
+ cvrf_revision_get_number@Base 1.3.5
+ cvrf_revision_iterator_free@Base 1.3.5
+ cvrf_revision_iterator_has_more@Base 1.3.5
+ cvrf_revision_iterator_next@Base 1.3.5
+ cvrf_revision_iterator_remove@Base 1.3.5
+ cvrf_revision_iterator_reset@Base 1.3.5
+ cvrf_revision_new@Base 1.3.5
+ cvrf_revision_set_date@Base 1.3.5
+ cvrf_revision_set_description@Base 1.3.5
+ cvrf_revision_set_number@Base 1.3.5
+ cvrf_rpm_attributes_free@Base 1.3.5
+ cvrf_rpm_attributes_get_evr_format@Base 1.3.5
+ cvrf_rpm_attributes_get_full_package_name@Base 1.3.5
+ cvrf_rpm_attributes_get_rpm_name@Base 1.3.5
+ cvrf_rpm_attributes_new@Base 1.3.5
+ cvrf_rpm_attributes_set_evr_format@Base 1.3.5
+ cvrf_rpm_attributes_set_full_package_name@Base 1.3.5
+ cvrf_rpm_attributes_set_rpm_name@Base 1.3.5
+ cvrf_score_set_add_metric@Base 1.3.5
+ cvrf_score_set_clone@Base 1.3.5
+ cvrf_score_set_free@Base 1.3.5
+ cvrf_score_set_get_base_score@Base 1.3.5
+ cvrf_score_set_get_environmental_score@Base 1.3.5
+ cvrf_score_set_get_impact@Base 1.3.5
+ cvrf_score_set_get_product_ids@Base 1.3.5
+ cvrf_score_set_get_temporal_score@Base 1.3.5
+ cvrf_score_set_get_vector@Base 1.3.5
+ cvrf_score_set_iterator_free@Base 1.3.5
+ cvrf_score_set_iterator_has_more@Base 1.3.5
+ cvrf_score_set_iterator_next@Base 1.3.5
+ cvrf_score_set_iterator_remove@Base 1.3.5
+ cvrf_score_set_iterator_reset@Base 1.3.5
+ cvrf_score_set_new@Base 1.3.5
+ cvrf_score_set_set_impact@Base 1.3.5
+ cvrf_score_set_set_vector@Base 1.3.5
+ cvrf_session_free@Base 1.3.5
+ cvrf_session_get_index@Base 1.3.5
+ cvrf_session_get_model@Base 1.3.5
+ cvrf_session_get_os_name@Base 1.3.5
+ cvrf_session_get_product_ids@Base 1.3.5
+ cvrf_session_new_from_source_index@Base 1.3.5
+ cvrf_session_new_from_source_model@Base 1.3.5
+ cvrf_session_set_index@Base 1.3.5
+ cvrf_session_set_model@Base 1.3.5
+ cvrf_session_set_os_name@Base 1.3.5
+ cvrf_threat_clone@Base 1.3.5
+ cvrf_threat_free@Base 1.3.5
+ cvrf_threat_get_date@Base 1.3.5
+ cvrf_threat_get_description@Base 1.3.5
+ cvrf_threat_get_group_ids@Base 1.3.5
+ cvrf_threat_get_product_ids@Base 1.3.5
+ cvrf_threat_iterator_free@Base 1.3.5
+ cvrf_threat_iterator_has_more@Base 1.3.5
+ cvrf_threat_iterator_next@Base 1.3.5
+ cvrf_threat_iterator_remove@Base 1.3.5
+ cvrf_threat_iterator_reset@Base 1.3.5
+ cvrf_threat_new@Base 1.3.5
+ cvrf_threat_set_date@Base 1.3.5
+ cvrf_threat_set_description@Base 1.3.5
+ cvrf_vulnerability_add_cvrf_product_status@Base 1.3.5
+ cvrf_vulnerability_add_cwe@Base 1.3.5
+ cvrf_vulnerability_add_involvement@Base 1.3.5
+ cvrf_vulnerability_add_remediation@Base 1.3.5
+ cvrf_vulnerability_add_score_set@Base 1.3.5
+ cvrf_vulnerability_add_threat@Base 1.3.5
+ cvrf_vulnerability_clone@Base 1.3.5
+ cvrf_vulnerability_cwe_clone@Base 1.3.5
+ cvrf_vulnerability_cwe_free@Base 1.3.5
+ cvrf_vulnerability_cwe_get_cwe@Base 1.3.5
+ cvrf_vulnerability_cwe_get_id@Base 1.3.5
+ cvrf_vulnerability_cwe_iterator_free@Base 1.3.5
+ cvrf_vulnerability_cwe_iterator_has_more@Base 1.3.5
+ cvrf_vulnerability_cwe_iterator_next@Base 1.3.5
+ cvrf_vulnerability_cwe_iterator_remove@Base 1.3.5
+ cvrf_vulnerability_cwe_iterator_reset@Base 1.3.5
+ cvrf_vulnerability_cwe_new@Base 1.3.5
+ cvrf_vulnerability_cwe_set_cwe@Base 1.3.5
+ cvrf_vulnerability_cwe_set_id@Base 1.3.5
+ cvrf_vulnerability_filter_by_product@Base 1.3.5
+ cvrf_vulnerability_free@Base 1.3.5
+ cvrf_vulnerability_get_acknowledgments@Base 1.3.5
+ cvrf_vulnerability_get_cve_id@Base 1.3.5
+ cvrf_vulnerability_get_cwes@Base 1.3.5
+ cvrf_vulnerability_get_discovery_date@Base 1.3.5
+ cvrf_vulnerability_get_involvements@Base 1.3.5
+ cvrf_vulnerability_get_notes@Base 1.3.5
+ cvrf_vulnerability_get_ordinal@Base 1.3.5
+ cvrf_vulnerability_get_product_statuses@Base 1.3.5
+ cvrf_vulnerability_get_references@Base 1.3.5
+ cvrf_vulnerability_get_release_date@Base 1.3.5
+ cvrf_vulnerability_get_remediations@Base 1.3.5
+ cvrf_vulnerability_get_score_sets@Base 1.3.5
+ cvrf_vulnerability_get_system_id@Base 1.3.5
+ cvrf_vulnerability_get_system_name@Base 1.3.5
+ cvrf_vulnerability_get_threats@Base 1.3.5
+ cvrf_vulnerability_get_title@Base 1.3.5
+ cvrf_vulnerability_iterator_free@Base 1.3.5
+ cvrf_vulnerability_iterator_has_more@Base 1.3.5
+ cvrf_vulnerability_iterator_next@Base 1.3.5
+ cvrf_vulnerability_iterator_remove@Base 1.3.5
+ cvrf_vulnerability_iterator_reset@Base 1.3.5
+ cvrf_vulnerability_new@Base 1.3.5
+ cvrf_vulnerability_set_cve_id@Base 1.3.5
+ cvrf_vulnerability_set_discovery_date@Base 1.3.5
+ cvrf_vulnerability_set_ordinal@Base 1.3.5
+ cvrf_vulnerability_set_release_date@Base 1.3.5
+ cvrf_vulnerability_set_system_id@Base 1.3.5
+ cvrf_vulnerability_set_system_name@Base 1.3.5
+ cvrf_vulnerability_set_title@Base 1.3.5
+ cvss_impact_adjusted_base_score@Base 1.3.5
+ cvss_impact_adjusted_temporal_score@Base 1.3.5
+ cvss_impact_base_adjusted_impact_subscore@Base 1.3.5
+ cvss_impact_base_exploitability_subscore@Base 1.3.5
+ cvss_impact_base_impact_subscore@Base 1.3.5
+ cvss_impact_base_score@Base 1.3.5
+ cvss_impact_clone@Base 1.3.5
+ cvss_impact_describe@Base 1.3.5
+ cvss_impact_environmental_score@Base 1.3.5
+ cvss_impact_free@Base 1.3.5
+ cvss_impact_get_base_metrics@Base 1.3.5
+ cvss_impact_get_environmental_metrics@Base 1.3.5
+ cvss_impact_get_temporal_metrics@Base 1.3.5
+ cvss_impact_new@Base 1.3.5
+ cvss_impact_new_from_vector@Base 1.3.5
+ cvss_impact_set_metrics@Base 1.3.5
+ cvss_impact_temporal_multiplier@Base 1.3.5
+ cvss_impact_temporal_score@Base 1.3.5
+ cvss_impact_to_vector@Base 1.3.5
+ cvss_metrics_clone@Base 1.3.5
+ cvss_metrics_free@Base 1.3.5
+ cvss_metrics_get_access_complexity@Base 1.3.5
+ cvss_metrics_get_access_vector@Base 1.3.5
+ cvss_metrics_get_authentication@Base 1.3.5
+ cvss_metrics_get_availability_impact@Base 1.3.5
+ cvss_metrics_get_availability_requirement@Base 1.3.5
+ cvss_metrics_get_category@Base 1.3.5
+ cvss_metrics_get_collateral_damage_potential@Base 1.3.5
+ cvss_metrics_get_confidentiality_impact@Base 1.3.5
+ cvss_metrics_get_confidentiality_requirement@Base 1.3.5
+ cvss_metrics_get_exploitability@Base 1.3.5
+ cvss_metrics_get_generated_on_datetime@Base 1.3.5
+ cvss_metrics_get_integrity_impact@Base 1.3.5
+ cvss_metrics_get_integrity_requirement@Base 1.3.5
+ cvss_metrics_get_remediation_level@Base 1.3.5
+ cvss_metrics_get_report_confidence@Base 1.3.5
+ cvss_metrics_get_score@Base 1.3.5
+ cvss_metrics_get_source@Base 1.3.5
+ cvss_metrics_get_target_distribution@Base 1.3.5
+ cvss_metrics_get_upgraded_from_version@Base 1.3.5
+ cvss_metrics_is_valid@Base 1.3.5
+ cvss_metrics_new@Base 1.3.5
+ cvss_metrics_set_access_complexity@Base 1.3.5
+ cvss_metrics_set_access_vector@Base 1.3.5
+ cvss_metrics_set_authentication@Base 1.3.5
+ cvss_metrics_set_availability_impact@Base 1.3.5
+ cvss_metrics_set_availability_requirement@Base 1.3.5
+ cvss_metrics_set_collateral_damage_potential@Base 1.3.5
+ cvss_metrics_set_confidentiality_impact@Base 1.3.5
+ cvss_metrics_set_confidentiality_requirement@Base 1.3.5
+ cvss_metrics_set_exploitability@Base 1.3.5
+ cvss_metrics_set_generated_on_datetime@Base 1.3.5
+ cvss_metrics_set_integrity_impact@Base 1.3.5
+ cvss_metrics_set_integrity_requirement@Base 1.3.5
+ cvss_metrics_set_remediation_level@Base 1.3.5
+ cvss_metrics_set_report_confidence@Base 1.3.5
+ cvss_metrics_set_score@Base 1.3.5
+ cvss_metrics_set_source@Base 1.3.5
+ cvss_metrics_set_target_distribution@Base 1.3.5
+ cvss_metrics_set_upgraded_from_version@Base 1.3.5
+ cvss_model_supported@Base 1.3.5
+ cvss_round@Base 1.3.5
+ cwe_entry_clone@Base 1.3.5
+ cwe_entry_free@Base 1.3.5
+ cwe_entry_get_value@Base 1.3.5
+ cwe_entry_new@Base 1.3.5
+ cwe_entry_set_value@Base 1.3.5
+ ds_rds_create@Base 1.3.5
+ ds_rds_session_dump_component_files@Base 1.3.5
+ ds_rds_session_free@Base 1.3.5
+ ds_rds_session_get_html_report@Base 1.3.5
+ ds_rds_session_get_rds_idx@Base 1.3.5
+ ds_rds_session_new_from_source@Base 1.3.5
+ ds_rds_session_replace_report_with_source@Base 1.3.5
+ ds_rds_session_select_report@Base 1.3.5
+ ds_rds_session_select_report_request@Base 1.3.5
+ ds_rds_session_set_target_dir@Base 1.3.5
+ ds_sds_compose_add_component@Base 1.3.5
+ ds_sds_compose_from_xccdf@Base 1.3.5
+ ds_sds_index_free@Base 1.3.5
+ ds_sds_index_get_stream@Base 1.3.5
+ ds_sds_index_get_streams@Base 1.3.5
+ ds_sds_index_new@Base 1.3.5
+ ds_sds_index_select_checklist@Base 1.3.5
+ ds_sds_index_select_checklist_by_benchmark_id@Base 1.3.5
+ ds_sds_session_can_register_component@Base 1.3.5
+ ds_sds_session_configure_remote_resources@Base 1.3.6+dfsg
+ ds_sds_session_dump_component_files@Base 1.3.5
+ ds_sds_session_free@Base 1.3.5
+ ds_sds_session_get_checklist_id@Base 1.3.5
+ ds_sds_session_get_checklist_uri@Base 1.3.5
+ ds_sds_session_get_component_by_href@Base 1.3.5
+ ds_sds_session_get_datastream_id@Base 1.3.5
+ ds_sds_session_get_html_guide@Base 1.3.5
+ ds_sds_session_get_sds_idx@Base 1.3.5
+ ds_sds_session_new_from_source@Base 1.3.5
+ ds_sds_session_register_component_with_dependencies@Base 1.3.5
+ ds_sds_session_reset@Base 1.3.5
+ ds_sds_session_select_checklist@Base 1.3.5
+ ds_sds_session_select_tailoring@Base 1.3.5
+ ds_sds_session_set_datastream_id@Base 1.3.5
+ ds_sds_session_set_remote_resources@Base 1.3.5
+ ds_sds_session_set_target_dir@Base 1.3.5
+ ds_stream_index_free@Base 1.3.5
+ ds_stream_index_get_checklists@Base 1.3.5
+ ds_stream_index_get_checks@Base 1.3.5
+ ds_stream_index_get_dictionaries@Base 1.3.5
+ ds_stream_index_get_extended_components@Base 1.3.5
+ ds_stream_index_get_id@Base 1.3.5
+ ds_stream_index_get_timestamp@Base 1.3.5
+ ds_stream_index_get_version@Base 1.3.5
+ ds_stream_index_iterator_free@Base 1.3.5
+ ds_stream_index_iterator_has_more@Base 1.3.5
+ ds_stream_index_iterator_next@Base 1.3.5
+ ds_stream_index_new@Base 1.3.5
+ get_cvrf_product_id_from_cpe@Base 1.3.5
+ oscap_apply_xslt@Base 1.3.5
+ oscap_basename@Base 1.3.5
+ oscap_cleanup@Base 1.3.5
+ oscap_clearerr@Base 1.3.5
+ oscap_dirname@Base 1.3.5
+ oscap_document_type_to_string@Base 1.3.5
+ oscap_err@Base 1.3.5
+ oscap_err_desc@Base 1.3.5
+ oscap_err_family@Base 1.3.5
+ oscap_err_get_full_error@Base 1.3.5
+ oscap_file_entry_dup@Base 1.3.5
+ oscap_file_entry_free@Base 1.3.5
+ oscap_file_entry_get_file@Base 1.3.5
+ oscap_file_entry_get_system@Base 1.3.5
+ oscap_file_entry_iterator_free@Base 1.3.5
+ oscap_file_entry_iterator_has_more@Base 1.3.5
+ oscap_file_entry_iterator_next@Base 1.3.5
+ oscap_file_entry_iterator_reset@Base 1.3.5
+ oscap_file_entry_list_free@Base 1.3.5
+ oscap_file_entry_list_get_files@Base 1.3.5
+ oscap_file_entry_list_new@Base 1.3.5
+ oscap_file_entry_new@Base 1.3.5
+ oscap_get_version@Base 1.3.5
+ oscap_init@Base 1.3.5
+ oscap_path_to_cpe@Base 1.3.5
+ oscap_path_to_schemas@Base 1.3.5
+ oscap_realpath@Base 1.3.5
+ oscap_reference_clone@Base 1.3.5
+ oscap_reference_free@Base 1.3.5
+ oscap_reference_get_contributor@Base 1.3.5
+ oscap_reference_get_coverage@Base 1.3.5
+ oscap_reference_get_creator@Base 1.3.5
+ oscap_reference_get_date@Base 1.3.5
+ oscap_reference_get_description@Base 1.3.5
+ oscap_reference_get_format@Base 1.3.5
+ oscap_reference_get_href@Base 1.3.5
+ oscap_reference_get_identifier@Base 1.3.5
+ oscap_reference_get_is_dublincore@Base 1.3.5
+ oscap_reference_get_language@Base 1.3.5
+ oscap_reference_get_publisher@Base 1.3.5
+ oscap_reference_get_relation@Base 1.3.5
+ oscap_reference_get_rights@Base 1.3.5
+ oscap_reference_get_source@Base 1.3.5
+ oscap_reference_get_subject@Base 1.3.5
+ oscap_reference_get_title@Base 1.3.5
+ oscap_reference_get_type@Base 1.3.5
+ oscap_reference_iterator_free@Base 1.3.5
+ oscap_reference_iterator_has_more@Base 1.3.5
+ oscap_reference_iterator_next@Base 1.3.5
+ oscap_reference_iterator_reset@Base 1.3.5
+ oscap_reference_new@Base 1.3.5
+ oscap_reference_set_contributor@Base 1.3.5
+ oscap_reference_set_coverage@Base 1.3.5
+ oscap_reference_set_creator@Base 1.3.5
+ oscap_reference_set_date@Base 1.3.5
+ oscap_reference_set_description@Base 1.3.5
+ oscap_reference_set_format@Base 1.3.5
+ oscap_reference_set_href@Base 1.3.5
+ oscap_reference_set_identifier@Base 1.3.5
+ oscap_reference_set_is_dublincore@Base 1.3.5
+ oscap_reference_set_language@Base 1.3.5
+ oscap_reference_set_publisher@Base 1.3.5
+ oscap_reference_set_relation@Base 1.3.5
+ oscap_reference_set_rights@Base 1.3.5
+ oscap_reference_set_source@Base 1.3.5
+ oscap_reference_set_subject@Base 1.3.5
+ oscap_reference_set_title@Base 1.3.5
+ oscap_reference_set_type@Base 1.3.5
+ oscap_set_verbose@Base 1.3.5
+ oscap_source_clone@Base 1.3.5
+ oscap_source_free@Base 1.3.5
+ oscap_source_get_filepath@Base 1.3.5
+ oscap_source_get_raw_memory@Base 1.3.5
+ oscap_source_get_scap_type@Base 1.3.5
+ oscap_source_get_schema_version@Base 1.3.5
+ oscap_source_new_from_file@Base 1.3.5
+ oscap_source_new_from_memory@Base 1.3.5
+ oscap_source_readable_origin@Base 1.3.5
+ oscap_source_save_as@Base 1.3.5
+ oscap_source_validate@Base 1.3.5
+ oscap_source_validate_schematron@Base 1.3.5
+ oscap_sprintf@Base 1.3.5
+ oscap_string_iterator_free@Base 1.3.5
+ oscap_string_iterator_has_more@Base 1.3.5
+ oscap_string_iterator_next@Base 1.3.5
+ oscap_string_iterator_remove@Base 1.3.5
+ oscap_string_iterator_reset@Base 1.3.5
+ oscap_stringlist_add_string@Base 1.3.5
+ oscap_stringlist_clone@Base 1.3.5
+ oscap_stringlist_free@Base 1.3.5
+ oscap_stringlist_get_strings@Base 1.3.5
+ oscap_stringlist_iterator_free@Base 1.3.5
+ oscap_stringlist_iterator_has_more@Base 1.3.5
+ oscap_stringlist_iterator_next@Base 1.3.5
+ oscap_stringlist_iterator_remove@Base 1.3.5
+ oscap_stringlist_iterator_reset@Base 1.3.5
+ oscap_stringlist_new@Base 1.3.5
+ oscap_strtok_r@Base 1.3.5
+ oscap_text_clone@Base 1.3.5
+ oscap_text_free@Base 1.3.5
+ oscap_text_get_can_override@Base 1.3.5
+ oscap_text_get_can_substitute@Base 1.3.5
+ oscap_text_get_is_html@Base 1.3.5
+ oscap_text_get_lang@Base 1.3.5
+ oscap_text_get_overrides@Base 1.3.5
+ oscap_text_get_plaintext@Base 1.3.5
+ oscap_text_get_text@Base 1.3.5
+ oscap_text_iterator_free@Base 1.3.5
+ oscap_text_iterator_has_more@Base 1.3.5
+ oscap_text_iterator_next@Base 1.3.5
+ oscap_text_iterator_remove@Base 1.3.5
+ oscap_text_iterator_reset@Base 1.3.5
+ oscap_text_new@Base 1.3.5
+ oscap_text_new_html@Base 1.3.5
+ oscap_text_set_lang@Base 1.3.5
+ oscap_text_set_overrides@Base 1.3.5
+ oscap_text_set_text@Base 1.3.5
+ oscap_textlist_get_preferred_plaintext@Base 1.3.5
+ oscap_textlist_get_preferred_text@Base 1.3.5
+ oscap_verbosity_level_from_cstr@Base 1.3.5
+ oval_affected_add_platform@Base 1.3.5
+ oval_affected_add_product@Base 1.3.5
+ oval_affected_clone@Base 1.3.5
+ oval_affected_family_get_text@Base 1.3.5
+ oval_affected_free@Base 1.3.5
+ oval_affected_get_family@Base 1.3.5
+ oval_affected_get_platforms@Base 1.3.5
+ oval_affected_get_products@Base 1.3.5
+ oval_affected_iterator_free@Base 1.3.5
+ oval_affected_iterator_has_more@Base 1.3.5
+ oval_affected_iterator_next@Base 1.3.5
+ oval_affected_new@Base 1.3.5
+ oval_affected_set_family@Base 1.3.5
+ oval_agent_abort_session@Base 1.3.5
+ oval_agent_destroy_session@Base 1.3.5
+ oval_agent_eval_definition@Base 1.3.5
+ oval_agent_eval_rule@Base 1.3.5
+ oval_agent_eval_system@Base 1.3.5
+ oval_agent_get_definition_model@Base 1.3.5
+ oval_agent_get_definition_result@Base 1.3.5
+ oval_agent_get_filename@Base 1.3.5
+ oval_agent_get_result_definition@Base 1.3.5
+ oval_agent_get_results_model@Base 1.3.5
+ oval_agent_new_session@Base 1.3.5
+ oval_agent_reset_session@Base 1.3.5
+ oval_agent_resolve_variables@Base 1.3.5
+ oval_agent_set_product_name@Base 1.3.5
+ oval_arithmetic_operation_get_text@Base 1.3.5
+ oval_behavior_clone@Base 1.3.5
+ oval_behavior_free@Base 1.3.5
+ oval_behavior_get_key@Base 1.3.5
+ oval_behavior_get_value@Base 1.3.5
+ oval_behavior_iterator_free@Base 1.3.5
+ oval_behavior_iterator_has_more@Base 1.3.5
+ oval_behavior_iterator_next@Base 1.3.5
+ oval_behavior_new@Base 1.3.5
+ oval_behavior_set_keyval@Base 1.3.5
+ oval_check_get_text@Base 1.3.5
+ oval_component_add_function_component@Base 1.3.5
+ oval_component_clone@Base 1.3.5
+ oval_component_free@Base 1.3.5
+ oval_component_get_arithmetic_operation@Base 1.3.5
+ oval_component_get_function_components@Base 1.3.5
+ oval_component_get_glob_to_regex_glob_noescape@Base 1.3.5
+ oval_component_get_item_field@Base 1.3.5
+ oval_component_get_literal_value@Base 1.3.5
+ oval_component_get_object@Base 1.3.5
+ oval_component_get_prefix@Base 1.3.5
+ oval_component_get_record_field@Base 1.3.5
+ oval_component_get_regex_pattern@Base 1.3.5
+ oval_component_get_split_delimiter@Base 1.3.5
+ oval_component_get_substring_length@Base 1.3.5
+ oval_component_get_substring_start@Base 1.3.5
+ oval_component_get_suffix@Base 1.3.5
+ oval_component_get_timedif_format_1@Base 1.3.5
+ oval_component_get_timedif_format_2@Base 1.3.5
+ oval_component_get_type@Base 1.3.5
+ oval_component_get_variable@Base 1.3.5
+ oval_component_iterator_free@Base 1.3.5
+ oval_component_iterator_has_more@Base 1.3.5
+ oval_component_iterator_next@Base 1.3.5
+ oval_component_iterator_remaining@Base 1.3.5
+ oval_component_new@Base 1.3.5
+ oval_component_set_arithmetic_operation@Base 1.3.5
+ oval_component_set_glob_to_regex_glob_noescape@Base 1.3.5
+ oval_component_set_item_field@Base 1.3.5
+ oval_component_set_literal_value@Base 1.3.5
+ oval_component_set_object@Base 1.3.5
+ oval_component_set_prefix@Base 1.3.5
+ oval_component_set_record_field@Base 1.3.5
+ oval_component_set_regex_pattern@Base 1.3.5
+ oval_component_set_split_delimiter@Base 1.3.5
+ oval_component_set_substring_length@Base 1.3.5
+ oval_component_set_substring_start@Base 1.3.5
+ oval_component_set_suffix@Base 1.3.5
+ oval_component_set_timedif_format_1@Base 1.3.5
+ oval_component_set_timedif_format_2@Base 1.3.5
+ oval_component_set_type@Base 1.3.5
+ oval_component_set_variable@Base 1.3.5
+ oval_component_type_get_text@Base 1.3.5
+ oval_criteria_node_add_subnode@Base 1.3.5
+ oval_criteria_node_clone@Base 1.3.5
+ oval_criteria_node_free@Base 1.3.5
+ oval_criteria_node_get_applicability_check@Base 1.3.5
+ oval_criteria_node_get_comment@Base 1.3.5
+ oval_criteria_node_get_definition@Base 1.3.5
+ oval_criteria_node_get_negate@Base 1.3.5
+ oval_criteria_node_get_operator@Base 1.3.5
+ oval_criteria_node_get_subnodes@Base 1.3.5
+ oval_criteria_node_get_test@Base 1.3.5
+ oval_criteria_node_get_type@Base 1.3.5
+ oval_criteria_node_iterator_free@Base 1.3.5
+ oval_criteria_node_iterator_has_more@Base 1.3.5
+ oval_criteria_node_iterator_next@Base 1.3.5
+ oval_criteria_node_new@Base 1.3.5
+ oval_criteria_node_set_applicability_check@Base 1.3.5
+ oval_criteria_node_set_comment@Base 1.3.5
+ oval_criteria_node_set_definition@Base 1.3.5
+ oval_criteria_node_set_negate@Base 1.3.5
+ oval_criteria_node_set_operator@Base 1.3.5
+ oval_criteria_node_set_test@Base 1.3.5
+ oval_criteria_set_node_type@Base 1.3.5
+ oval_datatype_from_text@Base 1.3.5
+ oval_datatype_get_text@Base 1.3.5
+ oval_datetime_format_get_text@Base 1.3.5
+ oval_definition_add_affected@Base 1.3.5
+ oval_definition_add_note@Base 1.3.5
+ oval_definition_add_reference@Base 1.3.5
+ oval_definition_clone@Base 1.3.5
+ oval_definition_free@Base 1.3.5
+ oval_definition_get_affected@Base 1.3.5
+ oval_definition_get_class@Base 1.3.5
+ oval_definition_get_criteria@Base 1.3.5
+ oval_definition_get_deprecated@Base 1.3.5
+ oval_definition_get_description@Base 1.3.5
+ oval_definition_get_id@Base 1.3.5
+ oval_definition_get_notes@Base 1.3.5
+ oval_definition_get_references@Base 1.3.5
+ oval_definition_get_title@Base 1.3.5
+ oval_definition_get_version@Base 1.3.5
+ oval_definition_iterator_free@Base 1.3.5
+ oval_definition_iterator_has_more@Base 1.3.5
+ oval_definition_iterator_next@Base 1.3.5
+ oval_definition_model_bind_variable_model@Base 1.3.5
+ oval_definition_model_clear_external_variables@Base 1.3.5
+ oval_definition_model_clone@Base 1.3.5
+ oval_definition_model_export@Base 1.3.5
+ oval_definition_model_free@Base 1.3.5
+ oval_definition_model_get_definition@Base 1.3.5
+ oval_definition_model_get_definitions@Base 1.3.5
+ oval_definition_model_get_generator@Base 1.3.5
+ oval_definition_model_get_object@Base 1.3.5
+ oval_definition_model_get_objects@Base 1.3.5
+ oval_definition_model_get_state@Base 1.3.5
+ oval_definition_model_get_states@Base 1.3.5
+ oval_definition_model_get_test@Base 1.3.5
+ oval_definition_model_get_tests@Base 1.3.5
+ oval_definition_model_get_variable@Base 1.3.5
+ oval_definition_model_get_variable_models@Base 1.3.5
+ oval_definition_model_get_variables@Base 1.3.5
+ oval_definition_model_import_source@Base 1.3.5
+ oval_definition_model_new@Base 1.3.5
+ oval_definition_model_set_generator@Base 1.3.5
+ oval_definition_model_supported@Base 1.3.5
+ oval_definition_new@Base 1.3.5
+ oval_definition_set_class@Base 1.3.5
+ oval_definition_set_criteria@Base 1.3.5
+ oval_definition_set_deprecated@Base 1.3.5
+ oval_definition_set_description@Base 1.3.5
+ oval_definition_set_title@Base 1.3.5
+ oval_definition_set_version@Base 1.3.5
+ oval_directives_model_export@Base 1.3.5
+ oval_directives_model_free@Base 1.3.5
+ oval_directives_model_get_classdir@Base 1.3.5
+ oval_directives_model_get_defdirs@Base 1.3.5
+ oval_directives_model_get_generator@Base 1.3.5
+ oval_directives_model_get_new_classdir@Base 1.3.5
+ oval_directives_model_import_source@Base 1.3.5
+ oval_directives_model_new@Base 1.3.5
+ oval_entity_clone@Base 1.3.5
+ oval_entity_free@Base 1.3.5
+ oval_entity_get_datatype@Base 1.3.5
+ oval_entity_get_mask@Base 1.3.5
+ oval_entity_get_name@Base 1.3.5
+ oval_entity_get_operation@Base 1.3.5
+ oval_entity_get_type@Base 1.3.5
+ oval_entity_get_value@Base 1.3.5
+ oval_entity_get_variable@Base 1.3.5
+ oval_entity_get_varref_type@Base 1.3.5
+ oval_entity_iterator_free@Base 1.3.5
+ oval_entity_iterator_has_more@Base 1.3.5
+ oval_entity_iterator_next@Base 1.3.5
+ oval_entity_new@Base 1.3.5
+ oval_entity_set_datatype@Base 1.3.5
+ oval_entity_set_mask@Base 1.3.5
+ oval_entity_set_name@Base 1.3.5
+ oval_entity_set_operation@Base 1.3.5
+ oval_entity_set_type@Base 1.3.5
+ oval_entity_set_value@Base 1.3.5
+ oval_entity_set_variable@Base 1.3.5
+ oval_entity_set_varref_type@Base 1.3.5
+ oval_existence_get_text@Base 1.3.5
+ oval_family_get_text@Base 1.3.5
+ oval_filter_action_get_text@Base 1.3.5
+ oval_filter_clone@Base 1.3.5
+ oval_filter_free@Base 1.3.5
+ oval_filter_get_filter_action@Base 1.3.5
+ oval_filter_get_state@Base 1.3.5
+ oval_filter_iterator_free@Base 1.3.5
+ oval_filter_iterator_has_more@Base 1.3.5
+ oval_filter_iterator_next@Base 1.3.5
+ oval_filter_new@Base 1.3.5
+ oval_filter_set_filter_action@Base 1.3.5
+ oval_filter_set_state@Base 1.3.5
+ oval_generator_add_platform_schema_version@Base 1.3.5
+ oval_generator_clone@Base 1.3.5
+ oval_generator_free@Base 1.3.5
+ oval_generator_get_core_schema_version@Base 1.3.5
+ oval_generator_get_platform_schema_version@Base 1.3.5
+ oval_generator_get_product_name@Base 1.3.5
+ oval_generator_get_product_version@Base 1.3.5
+ oval_generator_get_timestamp@Base 1.3.5
+ oval_generator_new@Base 1.3.5
+ oval_generator_set_core_schema_version@Base 1.3.5
+ oval_generator_set_product_name@Base 1.3.5
+ oval_generator_set_product_version@Base 1.3.5
+ oval_generator_set_timestamp@Base 1.3.5
+ oval_generator_update_timestamp@Base 1.3.5
+ oval_message_clone@Base 1.3.5
+ oval_message_free@Base 1.3.5
+ oval_message_get_level@Base 1.3.5
+ oval_message_get_text@Base 1.3.5
+ oval_message_iterator_free@Base 1.3.5
+ oval_message_iterator_has_more@Base 1.3.5
+ oval_message_iterator_next@Base 1.3.5
+ oval_message_level_text@Base 1.3.5
+ oval_message_new@Base 1.3.5
+ oval_message_set_level@Base 1.3.5
+ oval_message_set_text@Base 1.3.5
+ oval_object_add_behavior@Base 1.3.5
+ oval_object_add_note@Base 1.3.5
+ oval_object_add_object_content@Base 1.3.5
+ oval_object_clone@Base 1.3.5
+ oval_object_content_clone@Base 1.3.5
+ oval_object_content_free@Base 1.3.5
+ oval_object_content_get_entity@Base 1.3.5
+ oval_object_content_get_field_name@Base 1.3.5
+ oval_object_content_get_filter@Base 1.3.5
+ oval_object_content_get_setobject@Base 1.3.5
+ oval_object_content_get_type@Base 1.3.5
+ oval_object_content_get_varCheck@Base 1.3.5
+ oval_object_content_iterator_free@Base 1.3.5
+ oval_object_content_iterator_has_more@Base 1.3.5
+ oval_object_content_iterator_next@Base 1.3.5
+ oval_object_content_new@Base 1.3.5
+ oval_object_content_set_entity@Base 1.3.5
+ oval_object_content_set_field_name@Base 1.3.5
+ oval_object_content_set_filter@Base 1.3.5
+ oval_object_content_set_setobject@Base 1.3.5
+ oval_object_content_set_type@Base 1.3.5
+ oval_object_content_set_varCheck@Base 1.3.5
+ oval_object_free@Base 1.3.5
+ oval_object_get_behaviors@Base 1.3.5
+ oval_object_get_comment@Base 1.3.5
+ oval_object_get_deprecated@Base 1.3.5
+ oval_object_get_family@Base 1.3.5
+ oval_object_get_id@Base 1.3.5
+ oval_object_get_name@Base 1.3.5
+ oval_object_get_notes@Base 1.3.5
+ oval_object_get_object_contents@Base 1.3.5
+ oval_object_get_platform_schema_version@Base 1.3.5
+ oval_object_get_subtype@Base 1.3.5
+ oval_object_get_version@Base 1.3.5
+ oval_object_iterator_free@Base 1.3.5
+ oval_object_iterator_has_more@Base 1.3.5
+ oval_object_iterator_next@Base 1.3.5
+ oval_object_new@Base 1.3.5
+ oval_object_set_comment@Base 1.3.5
+ oval_object_set_deprecated@Base 1.3.5
+ oval_object_set_subtype@Base 1.3.5
+ oval_object_set_version@Base 1.3.5
+ oval_operation_from_text@Base 1.3.5
+ oval_operation_get_text@Base 1.3.5
+ oval_operator_get_text@Base 1.3.5
+ oval_probe_query_object@Base 1.3.5
+ oval_probe_query_sysinfo@Base 1.3.5
+ oval_probe_query_variable@Base 1.3.5
+ oval_probe_session_abort@Base 1.3.5
+ oval_probe_session_destroy@Base 1.3.5
+ oval_probe_session_getmodel@Base 1.3.5
+ oval_probe_session_new@Base 1.3.5
+ oval_probe_session_reinit@Base 1.3.5
+ oval_probe_session_reset@Base 1.3.5
+ oval_record_field_clone@Base 1.3.5
+ oval_record_field_free@Base 1.3.5
+ oval_record_field_get_datatype@Base 1.3.5
+ oval_record_field_get_ent_check@Base 1.3.5
+ oval_record_field_get_mask@Base 1.3.5
+ oval_record_field_get_name@Base 1.3.5
+ oval_record_field_get_operation@Base 1.3.5
+ oval_record_field_get_status@Base 1.3.5
+ oval_record_field_get_type@Base 1.3.5
+ oval_record_field_get_value@Base 1.3.5
+ oval_record_field_get_var_check@Base 1.3.5
+ oval_record_field_get_variable@Base 1.3.5
+ oval_record_field_iterator_free@Base 1.3.5
+ oval_record_field_iterator_has_more@Base 1.3.5
+ oval_record_field_iterator_next@Base 1.3.5
+ oval_record_field_new@Base 1.3.5
+ oval_record_field_set_datatype@Base 1.3.5
+ oval_record_field_set_ent_check@Base 1.3.5
+ oval_record_field_set_mask@Base 1.3.5
+ oval_record_field_set_name@Base 1.3.5
+ oval_record_field_set_operation@Base 1.3.5
+ oval_record_field_set_status@Base 1.3.5
+ oval_record_field_set_value@Base 1.3.5
+ oval_record_field_set_var_check@Base 1.3.5
+ oval_record_field_set_variable@Base 1.3.5
+ oval_reference_clone@Base 1.3.5
+ oval_reference_free@Base 1.3.5
+ oval_reference_get_id@Base 1.3.5
+ oval_reference_get_source@Base 1.3.5
+ oval_reference_get_url@Base 1.3.5
+ oval_reference_iterator_free@Base 1.3.5
+ oval_reference_iterator_has_more@Base 1.3.5
+ oval_reference_iterator_next@Base 1.3.5
+ oval_reference_new@Base 1.3.5
+ oval_reference_set_id@Base 1.3.5
+ oval_reference_set_source@Base 1.3.5
+ oval_reference_set_url@Base 1.3.5
+ oval_result_criteria_node_add_subnode@Base 1.3.5
+ oval_result_criteria_node_clone@Base 1.3.5
+ oval_result_criteria_node_eval@Base 1.3.5
+ oval_result_criteria_node_free@Base 1.3.5
+ oval_result_criteria_node_get_applicability_check@Base 1.3.5
+ oval_result_criteria_node_get_extends@Base 1.3.5
+ oval_result_criteria_node_get_negate@Base 1.3.5
+ oval_result_criteria_node_get_operator@Base 1.3.5
+ oval_result_criteria_node_get_result@Base 1.3.5
+ oval_result_criteria_node_get_subnodes@Base 1.3.5
+ oval_result_criteria_node_get_test@Base 1.3.5
+ oval_result_criteria_node_get_type@Base 1.3.5
+ oval_result_criteria_node_iterator_free@Base 1.3.5
+ oval_result_criteria_node_iterator_has_more@Base 1.3.5
+ oval_result_criteria_node_iterator_next@Base 1.3.5
+ oval_result_criteria_node_new@Base 1.3.5
+ oval_result_criteria_node_set_applicability_check@Base 1.3.5
+ oval_result_criteria_node_set_extends@Base 1.3.5
+ oval_result_criteria_node_set_negate@Base 1.3.5
+ oval_result_criteria_node_set_operator@Base 1.3.5
+ oval_result_criteria_node_set_result@Base 1.3.5
+ oval_result_criteria_node_set_test@Base 1.3.5
+ oval_result_definition_add_message@Base 1.3.5
+ oval_result_definition_clone@Base 1.3.5
+ oval_result_definition_eval@Base 1.3.5
+ oval_result_definition_free@Base 1.3.5
+ oval_result_definition_get_criteria@Base 1.3.5
+ oval_result_definition_get_definition@Base 1.3.5
+ oval_result_definition_get_id@Base 1.3.5
+ oval_result_definition_get_instance@Base 1.3.5
+ oval_result_definition_get_messages@Base 1.3.5
+ oval_result_definition_get_result@Base 1.3.5
+ oval_result_definition_get_system@Base 1.3.5
+ oval_result_definition_iterator_free@Base 1.3.5
+ oval_result_definition_iterator_has_more@Base 1.3.5
+ oval_result_definition_iterator_next@Base 1.3.5
+ oval_result_definition_new@Base 1.3.5
+ oval_result_definition_set_criteria@Base 1.3.5
+ oval_result_definition_set_instance@Base 1.3.5
+ oval_result_definition_set_result@Base 1.3.5
+ oval_result_directives_free@Base 1.3.5
+ oval_result_directives_get_content@Base 1.3.5
+ oval_result_directives_get_included@Base 1.3.5
+ oval_result_directives_get_reported@Base 1.3.5
+ oval_result_directives_new@Base 1.3.5
+ oval_result_directives_set_content@Base 1.3.5
+ oval_result_directives_set_included@Base 1.3.5
+ oval_result_directives_set_reported@Base 1.3.5
+ oval_result_get_text@Base 1.3.5
+ oval_result_item_add_message@Base 1.3.5
+ oval_result_item_clone@Base 1.3.5
+ oval_result_item_free@Base 1.3.5
+ oval_result_item_get_messages@Base 1.3.5
+ oval_result_item_get_result@Base 1.3.5
+ oval_result_item_get_sysitem@Base 1.3.5
+ oval_result_item_iterator_free@Base 1.3.5
+ oval_result_item_iterator_has_more@Base 1.3.5
+ oval_result_item_iterator_next@Base 1.3.5
+ oval_result_item_new@Base 1.3.5
+ oval_result_item_set_result@Base 1.3.5
+ oval_result_system_add_definition@Base 1.3.5
+ oval_result_system_add_test@Base 1.3.5
+ oval_result_system_clone@Base 1.3.5
+ oval_result_system_eval@Base 1.3.5
+ oval_result_system_eval_definition@Base 1.3.5
+ oval_result_system_free@Base 1.3.5
+ oval_result_system_get_definition@Base 1.3.5
+ oval_result_system_get_definitions@Base 1.3.5
+ oval_result_system_get_results_model@Base 1.3.5
+ oval_result_system_get_syschar_model@Base 1.3.5
+ oval_result_system_get_sysinfo@Base 1.3.5
+ oval_result_system_get_tests@Base 1.3.5
+ oval_result_system_iterator_free@Base 1.3.5
+ oval_result_system_iterator_has_more@Base 1.3.5
+ oval_result_system_iterator_next@Base 1.3.5
+ oval_result_system_new@Base 1.3.5
+ oval_result_test_add_binding@Base 1.3.5
+ oval_result_test_add_item@Base 1.3.5
+ oval_result_test_add_message@Base 1.3.5
+ oval_result_test_clone@Base 1.3.5
+ oval_result_test_eval@Base 1.3.5
+ oval_result_test_free@Base 1.3.5
+ oval_result_test_get_bindings@Base 1.3.5
+ oval_result_test_get_instance@Base 1.3.5
+ oval_result_test_get_items@Base 1.3.5
+ oval_result_test_get_messages@Base 1.3.5
+ oval_result_test_get_result@Base 1.3.5
+ oval_result_test_get_system@Base 1.3.5
+ oval_result_test_get_test@Base 1.3.5
+ oval_result_test_iterator_free@Base 1.3.5
+ oval_result_test_iterator_has_more@Base 1.3.5
+ oval_result_test_iterator_next@Base 1.3.5
+ oval_result_test_new@Base 1.3.5
+ oval_result_test_set_instance@Base 1.3.5
+ oval_result_test_set_result@Base 1.3.5
+ oval_results_model_clone@Base 1.3.5
+ oval_results_model_eval@Base 1.3.5
+ oval_results_model_export@Base 1.3.5
+ oval_results_model_export_source@Base 1.3.5
+ oval_results_model_free@Base 1.3.5
+ oval_results_model_get_definition_model@Base 1.3.5
+ oval_results_model_get_directives_model@Base 1.3.5
+ oval_results_model_get_export_system_characteristics@Base 1.3.5
+ oval_results_model_get_generator@Base 1.3.5
+ oval_results_model_get_systems@Base 1.3.5
+ oval_results_model_import_source@Base 1.3.5
+ oval_results_model_new@Base 1.3.5
+ oval_results_model_set_export_system_characteristics@Base 1.3.5
+ oval_results_model_set_generator@Base 1.3.5
+ oval_schema_version_cmp@Base 1.3.5
+ oval_schema_version_from_cstr@Base 1.3.5
+ oval_schema_version_to_cstr@Base 1.3.5
+ oval_session_configure_remote_resources@Base 1.3.6+dfsg
+ oval_session_evaluate@Base 1.3.5
+ oval_session_evaluate_id@Base 1.3.5
+ oval_session_export@Base 1.3.5
+ oval_session_free@Base 1.3.5
+ oval_session_load@Base 1.3.5
+ oval_session_new@Base 1.3.5
+ oval_session_set_component_id@Base 1.3.5
+ oval_session_set_datastream_id@Base 1.3.5
+ oval_session_set_directives@Base 1.3.5
+ oval_session_set_export_system_characteristics@Base 1.3.5
+ oval_session_set_remote_resources@Base 1.3.5
+ oval_session_set_report_export@Base 1.3.5
+ oval_session_set_results_export@Base 1.3.5
+ oval_session_set_validation@Base 1.3.5
+ oval_session_set_variables@Base 1.3.5
+ oval_session_set_xml_reporter@Base 1.3.5
+ oval_set_operation_get_text@Base 1.3.5
+ oval_setobject_add_filter@Base 1.3.5
+ oval_setobject_add_object@Base 1.3.5
+ oval_setobject_add_subset@Base 1.3.5
+ oval_setobject_clone@Base 1.3.5
+ oval_setobject_free@Base 1.3.5
+ oval_setobject_get_filters@Base 1.3.5
+ oval_setobject_get_objects@Base 1.3.5
+ oval_setobject_get_operation@Base 1.3.5
+ oval_setobject_get_subsets@Base 1.3.5
+ oval_setobject_get_type@Base 1.3.5
+ oval_setobject_iterator_free@Base 1.3.5
+ oval_setobject_iterator_has_more@Base 1.3.5
+ oval_setobject_iterator_next@Base 1.3.5
+ oval_setobject_new@Base 1.3.5
+ oval_setobject_set_operation@Base 1.3.5
+ oval_setobject_set_type@Base 1.3.5
+ oval_state_add_content@Base 1.3.5
+ oval_state_add_note@Base 1.3.5
+ oval_state_clone@Base 1.3.5
+ oval_state_content_add_record_field@Base 1.3.5
+ oval_state_content_clone@Base 1.3.5
+ oval_state_content_free@Base 1.3.5
+ oval_state_content_get_check_existence@Base 1.3.5
+ oval_state_content_get_ent_check@Base 1.3.5
+ oval_state_content_get_entity@Base 1.3.5
+ oval_state_content_get_record_fields@Base 1.3.5
+ oval_state_content_get_var_check@Base 1.3.5
+ oval_state_content_iterator_free@Base 1.3.5
+ oval_state_content_iterator_has_more@Base 1.3.5
+ oval_state_content_iterator_next@Base 1.3.5
+ oval_state_content_new@Base 1.3.5
+ oval_state_content_set_check_existence@Base 1.3.5
+ oval_state_content_set_entcheck@Base 1.3.5
+ oval_state_content_set_entity@Base 1.3.5
+ oval_state_content_set_varcheck@Base 1.3.5
+ oval_state_free@Base 1.3.5
+ oval_state_get_comment@Base 1.3.5
+ oval_state_get_contents@Base 1.3.5
+ oval_state_get_deprecated@Base 1.3.5
+ oval_state_get_family@Base 1.3.5
+ oval_state_get_id@Base 1.3.5
+ oval_state_get_name@Base 1.3.5
+ oval_state_get_notes@Base 1.3.5
+ oval_state_get_operator@Base 1.3.5
+ oval_state_get_subtype@Base 1.3.5
+ oval_state_get_version@Base 1.3.5
+ oval_state_iterator_free@Base 1.3.5
+ oval_state_iterator_has_more@Base 1.3.5
+ oval_state_iterator_next@Base 1.3.5
+ oval_state_new@Base 1.3.5
+ oval_state_set_comment@Base 1.3.5
+ oval_state_set_deprecated@Base 1.3.5
+ oval_state_set_operator@Base 1.3.5
+ oval_state_set_subtype@Base 1.3.5
+ oval_state_set_version@Base 1.3.5
+ oval_string_iterator_free@Base 1.3.5
+ oval_string_iterator_has_more@Base 1.3.5
+ oval_string_iterator_next@Base 1.3.5
+ oval_string_iterator_remaining@Base 1.3.5
+ oval_subtype_from_str@Base 1.3.5
+ oval_subtype_get_family@Base 1.3.5
+ oval_subtype_get_text@Base 1.3.5
+ oval_subtype_to_str@Base 1.3.5
+ oval_syschar_add_message@Base 1.3.5
+ oval_syschar_add_new_message@Base 1.3.5
+ oval_syschar_add_sysitem@Base 1.3.5
+ oval_syschar_add_variable_binding@Base 1.3.5
+ oval_syschar_clone@Base 1.3.5
+ oval_syschar_collection_flag_get_text@Base 1.3.5
+ oval_syschar_free@Base 1.3.5
+ oval_syschar_get_flag@Base 1.3.5
+ oval_syschar_get_messages@Base 1.3.5
+ oval_syschar_get_object@Base 1.3.5
+ oval_syschar_get_sysitem@Base 1.3.5
+ oval_syschar_get_variable_bindings@Base 1.3.5
+ oval_syschar_get_variable_instance@Base 1.3.5
+ oval_syschar_iterator_free@Base 1.3.5
+ oval_syschar_iterator_has_more@Base 1.3.5
+ oval_syschar_iterator_next@Base 1.3.5
+ oval_syschar_model_bind_variable_model@Base 1.3.5
+ oval_syschar_model_clone@Base 1.3.5
+ oval_syschar_model_compute_variable@Base 1.3.5
+ oval_syschar_model_export@Base 1.3.5
+ oval_syschar_model_free@Base 1.3.5
+ oval_syschar_model_get_definition_model@Base 1.3.5
+ oval_syschar_model_get_generator@Base 1.3.5
+ oval_syschar_model_get_syschar@Base 1.3.5
+ oval_syschar_model_get_syschars@Base 1.3.5
+ oval_syschar_model_get_sysinfo@Base 1.3.5
+ oval_syschar_model_get_sysitem@Base 1.3.5
+ oval_syschar_model_import_source@Base 1.3.5
+ oval_syschar_model_new@Base 1.3.5
+ oval_syschar_model_set_generator@Base 1.3.5
+ oval_syschar_model_set_sysinfo@Base 1.3.5
+ oval_syschar_new@Base 1.3.5
+ oval_syschar_set_flag@Base 1.3.5
+ oval_syschar_set_object@Base 1.3.5
+ oval_syschar_set_variable_instance@Base 1.3.5
+ oval_syschar_status_get_text@Base 1.3.5
+ oval_sysent_add_record_field@Base 1.3.5
+ oval_sysent_clone@Base 1.3.5
+ oval_sysent_free@Base 1.3.5
+ oval_sysent_get_datatype@Base 1.3.5
+ oval_sysent_get_mask@Base 1.3.5
+ oval_sysent_get_name@Base 1.3.5
+ oval_sysent_get_record_fields@Base 1.3.5
+ oval_sysent_get_status@Base 1.3.5
+ oval_sysent_get_value@Base 1.3.5
+ oval_sysent_iterator_free@Base 1.3.5
+ oval_sysent_iterator_has_more@Base 1.3.5
+ oval_sysent_iterator_next@Base 1.3.5
+ oval_sysent_new@Base 1.3.5
+ oval_sysent_set_datatype@Base 1.3.5
+ oval_sysent_set_mask@Base 1.3.5
+ oval_sysent_set_name@Base 1.3.5
+ oval_sysent_set_status@Base 1.3.5
+ oval_sysent_set_value@Base 1.3.5
+ oval_sysinfo_add_interface@Base 1.3.5
+ oval_sysinfo_clone@Base 1.3.5
+ oval_sysinfo_free@Base 1.3.5
+ oval_sysinfo_get_interfaces@Base 1.3.5
+ oval_sysinfo_get_os_architecture@Base 1.3.5
+ oval_sysinfo_get_os_name@Base 1.3.5
+ oval_sysinfo_get_os_version@Base 1.3.5
+ oval_sysinfo_get_primary_host_name@Base 1.3.5
+ oval_sysinfo_iterator_free@Base 1.3.5
+ oval_sysinfo_iterator_has_more@Base 1.3.5
+ oval_sysinfo_iterator_next@Base 1.3.5
+ oval_sysinfo_new@Base 1.3.5
+ oval_sysinfo_set_os_architecture@Base 1.3.5
+ oval_sysinfo_set_os_name@Base 1.3.5
+ oval_sysinfo_set_os_version@Base 1.3.5
+ oval_sysinfo_set_primary_host_name@Base 1.3.5
+ oval_sysint_clone@Base 1.3.5
+ oval_sysint_free@Base 1.3.5
+ oval_sysint_get_ip_address@Base 1.3.5
+ oval_sysint_get_mac_address@Base 1.3.5
+ oval_sysint_get_name@Base 1.3.5
+ oval_sysint_iterator_free@Base 1.3.5
+ oval_sysint_iterator_has_more@Base 1.3.5
+ oval_sysint_iterator_next@Base 1.3.5
+ oval_sysint_new@Base 1.3.5
+ oval_sysint_set_ip_address@Base 1.3.5
+ oval_sysint_set_mac_address@Base 1.3.5
+ oval_sysint_set_name@Base 1.3.5
+ oval_sysitem_add_message@Base 1.3.5
+ oval_sysitem_add_sysent@Base 1.3.5
+ oval_sysitem_clone@Base 1.3.5
+ oval_sysitem_free@Base 1.3.5
+ oval_sysitem_get_id@Base 1.3.5
+ oval_sysitem_get_messages@Base 1.3.5
+ oval_sysitem_get_status@Base 1.3.5
+ oval_sysitem_get_subtype@Base 1.3.5
+ oval_sysitem_get_sysents@Base 1.3.5
+ oval_sysitem_iterator_free@Base 1.3.5
+ oval_sysitem_iterator_has_more@Base 1.3.5
+ oval_sysitem_iterator_next@Base 1.3.5
+ oval_sysitem_new@Base 1.3.5
+ oval_sysitem_set_status@Base 1.3.5
+ oval_sysitem_set_subtype@Base 1.3.5
+ oval_test_add_note@Base 1.3.5
+ oval_test_add_state@Base 1.3.5
+ oval_test_clone@Base 1.3.5
+ oval_test_free@Base 1.3.5
+ oval_test_get_check@Base 1.3.5
+ oval_test_get_comment@Base 1.3.5
+ oval_test_get_deprecated@Base 1.3.5
+ oval_test_get_existence@Base 1.3.5
+ oval_test_get_family@Base 1.3.5
+ oval_test_get_id@Base 1.3.5
+ oval_test_get_notes@Base 1.3.5
+ oval_test_get_object@Base 1.3.5
+ oval_test_get_state_operator@Base 1.3.5
+ oval_test_get_states@Base 1.3.5
+ oval_test_get_subtype@Base 1.3.5
+ oval_test_get_version@Base 1.3.5
+ oval_test_iterator_free@Base 1.3.5
+ oval_test_iterator_has_more@Base 1.3.5
+ oval_test_iterator_next@Base 1.3.5
+ oval_test_new@Base 1.3.5
+ oval_test_set_check@Base 1.3.5
+ oval_test_set_comment@Base 1.3.5
+ oval_test_set_deprecated@Base 1.3.5
+ oval_test_set_existence@Base 1.3.5
+ oval_test_set_object@Base 1.3.5
+ oval_test_set_state_operator@Base 1.3.5
+ oval_test_set_subtype@Base 1.3.5
+ oval_test_set_version@Base 1.3.5
+ oval_value_clone@Base 1.3.5
+ oval_value_free@Base 1.3.5
+ oval_value_get_binary@Base 1.3.5
+ oval_value_get_boolean@Base 1.3.5
+ oval_value_get_datatype@Base 1.3.5
+ oval_value_get_float@Base 1.3.5
+ oval_value_get_integer@Base 1.3.5
+ oval_value_get_text@Base 1.3.5
+ oval_value_iterator_free@Base 1.3.5
+ oval_value_iterator_has_more@Base 1.3.5
+ oval_value_iterator_next@Base 1.3.5
+ oval_value_iterator_remaining@Base 1.3.5
+ oval_value_new@Base 1.3.5
+ oval_value_set_datatype@Base 1.3.5
+ oval_variable_add_possible_restriction@Base 1.3.5
+ oval_variable_add_possible_value@Base 1.3.5
+ oval_variable_add_value@Base 1.3.5
+ oval_variable_binding_add_value@Base 1.3.5
+ oval_variable_binding_clone@Base 1.3.5
+ oval_variable_binding_free@Base 1.3.5
+ oval_variable_binding_get_values@Base 1.3.5
+ oval_variable_binding_get_variable@Base 1.3.5
+ oval_variable_binding_iterator_free@Base 1.3.5
+ oval_variable_binding_iterator_has_more@Base 1.3.5
+ oval_variable_binding_iterator_next@Base 1.3.5
+ oval_variable_binding_new@Base 1.3.5
+ oval_variable_binding_set_variable@Base 1.3.5
+ oval_variable_clear_values@Base 1.3.5
+ oval_variable_clone@Base 1.3.5
+ oval_variable_free@Base 1.3.5
+ oval_variable_get_collection_flag@Base 1.3.5
+ oval_variable_get_comment@Base 1.3.5
+ oval_variable_get_component@Base 1.3.5
+ oval_variable_get_datatype@Base 1.3.5
+ oval_variable_get_deprecated@Base 1.3.5
+ oval_variable_get_id@Base 1.3.5
+ oval_variable_get_possible_restrictions2@Base 1.3.5
+ oval_variable_get_possible_values2@Base 1.3.5
+ oval_variable_get_type@Base 1.3.5
+ oval_variable_get_values@Base 1.3.5
+ oval_variable_get_version@Base 1.3.5
+ oval_variable_iterator_free@Base 1.3.5
+ oval_variable_iterator_has_more@Base 1.3.5
+ oval_variable_iterator_next@Base 1.3.5
+ oval_variable_model_add@Base 1.3.5
+ oval_variable_model_clone@Base 1.3.5
+ oval_variable_model_export@Base 1.3.5
+ oval_variable_model_free@Base 1.3.5
+ oval_variable_model_get_comment@Base 1.3.5
+ oval_variable_model_get_datatype@Base 1.3.5
+ oval_variable_model_get_generator@Base 1.3.5
+ oval_variable_model_get_values@Base 1.3.5
+ oval_variable_model_get_variable_ids@Base 1.3.5
+ oval_variable_model_has_variable@Base 1.3.5
+ oval_variable_model_import_source@Base 1.3.5
+ oval_variable_model_iterator_free@Base 1.3.5
+ oval_variable_model_iterator_has_more@Base 1.3.5
+ oval_variable_model_iterator_next@Base 1.3.5
+ oval_variable_model_new@Base 1.3.5
+ oval_variable_model_set_generator@Base 1.3.5
+ oval_variable_new@Base 1.3.5
+ oval_variable_possible_restriction_add_restriction@Base 1.3.5
+ oval_variable_possible_restriction_free@Base 1.3.5
+ oval_variable_possible_restriction_get_hint@Base 1.3.5
+ oval_variable_possible_restriction_get_operator@Base 1.3.5
+ oval_variable_possible_restriction_get_restrictions2@Base 1.3.5
+ oval_variable_possible_restriction_iterator_free@Base 1.3.5
+ oval_variable_possible_restriction_iterator_has_more@Base 1.3.5
+ oval_variable_possible_restriction_iterator_next@Base 1.3.5
+ oval_variable_possible_restriction_iterator_remaining@Base 1.3.5
+ oval_variable_possible_restriction_new@Base 1.3.5
+ oval_variable_possible_value_free@Base 1.3.5
+ oval_variable_possible_value_get_hint@Base 1.3.5
+ oval_variable_possible_value_get_value@Base 1.3.5
+ oval_variable_possible_value_iterator_free@Base 1.3.5
+ oval_variable_possible_value_iterator_has_more@Base 1.3.5
+ oval_variable_possible_value_iterator_next@Base 1.3.5
+ oval_variable_possible_value_iterator_remaining@Base 1.3.5
+ oval_variable_possible_value_new@Base 1.3.5
+ oval_variable_restriction_free@Base 1.3.5
+ oval_variable_restriction_get_operation@Base 1.3.5
+ oval_variable_restriction_get_value@Base 1.3.5
+ oval_variable_restriction_iterator_free@Base 1.3.5
+ oval_variable_restriction_iterator_has_more@Base 1.3.5
+ oval_variable_restriction_iterator_next@Base 1.3.5
+ oval_variable_restriction_iterator_remaining@Base 1.3.5
+ oval_variable_restriction_new@Base 1.3.5
+ oval_variable_set_comment@Base 1.3.5
+ oval_variable_set_component@Base 1.3.5
+ oval_variable_set_datatype@Base 1.3.5
+ oval_variable_set_deprecated@Base 1.3.5
+ oval_variable_set_version@Base 1.3.5
+ probe_attr_creat@Base 1.3.5
+ probe_cobj_add_item@Base 1.3.5
+ probe_cobj_add_msg@Base 1.3.5
+ probe_cobj_compute_flag@Base 1.3.5
+ probe_cobj_get_flag@Base 1.3.5
+ probe_cobj_get_items@Base 1.3.5
+ probe_cobj_get_mask@Base 1.3.5
+ probe_cobj_get_msgs@Base 1.3.5
+ probe_cobj_new@Base 1.3.5
+ probe_cobj_set_flag@Base 1.3.5
+ probe_ctx_getobject@Base 1.3.5
+ probe_ctx_getresult@Base 1.3.5
+ probe_ent_attr_add@Base 1.3.5
+ probe_ent_attrexists@Base 1.3.5
+ probe_ent_creat1@Base 1.3.5
+ probe_ent_creat@Base 1.3.5
+ probe_ent_from_cstr@Base 1.3.5
+ probe_ent_getattrval@Base 1.3.5
+ probe_ent_getdatatype@Base 1.3.5
+ probe_ent_getmask@Base 1.3.5
+ probe_ent_getname@Base 1.3.5
+ probe_ent_getname_r@Base 1.3.5
+ probe_ent_getoperation@Base 1.3.5
+ probe_ent_getstatus@Base 1.3.5
+ probe_ent_getval@Base 1.3.5
+ probe_ent_getvals@Base 1.3.5
+ probe_ent_setdatatype@Base 1.3.5
+ probe_ent_setmask@Base 1.3.5
+ probe_ent_setstatus@Base 1.3.5
+ probe_entval_from_cstr@Base 1.3.5
+ probe_filebehaviors_canonicalize@Base 1.3.5
+ probe_free@Base 1.3.5
+ probe_item_add_msg@Base 1.3.5
+ probe_item_attr_add@Base 1.3.5
+ probe_item_collect@Base 1.3.5
+ probe_item_creat@Base 1.3.5
+ probe_item_create@Base 1.3.5
+ probe_item_ent_add@Base 1.3.5
+ probe_item_filtered@Base 1.3.5
+ probe_item_new@Base 1.3.5
+ probe_item_resetidctr@Base 1.3.5
+ probe_item_setstatus@Base 1.3.5
+ probe_itement_setstatus@Base 1.3.5
+ probe_msg_creat@Base 1.3.5
+ probe_msg_creatf@Base 1.3.5
+ probe_obj_attrexists@Base 1.3.5
+ probe_obj_creat@Base 1.3.5
+ probe_obj_get_platform_schema_version@Base 1.3.5
+ probe_obj_getattrval@Base 1.3.5
+ probe_obj_getent@Base 1.3.5
+ probe_obj_getentval@Base 1.3.5
+ probe_obj_getentvals@Base 1.3.5
+ probe_obj_getmask@Base 1.3.5
+ probe_obj_getname@Base 1.3.5
+ probe_obj_getname_r@Base 1.3.5
+ probe_obj_new@Base 1.3.5
+ probe_obj_setstatus@Base 1.3.5
+ probe_table_at_index@Base 1.3.5
+ probe_table_exists@Base 1.3.5
+ probe_table_get_fini_function@Base 1.3.5
+ probe_table_get_init_function@Base 1.3.5
+ probe_table_get_main_function@Base 1.3.5
+ probe_table_get_offline_mode_function@Base 1.3.5
+ probe_table_list@Base 1.3.5
+ probe_table_size@Base 1.3.5
+ probe_tfc54behaviors_canonicalize@Base 1.3.5
+ rds_asset_index_add_report_ref@Base 1.3.5
+ rds_asset_index_free@Base 1.3.5
+ rds_asset_index_get_id@Base 1.3.5
+ rds_asset_index_get_reports@Base 1.3.5
+ rds_asset_index_iterator_free@Base 1.3.5
+ rds_asset_index_iterator_has_more@Base 1.3.5
+ rds_asset_index_iterator_next@Base 1.3.5
+ rds_asset_index_new@Base 1.3.5
+ rds_index_free@Base 1.3.5
+ rds_index_get_asset@Base 1.3.5
+ rds_index_get_assets@Base 1.3.5
+ rds_index_get_report@Base 1.3.5
+ rds_index_get_report_request@Base 1.3.5
+ rds_index_get_report_requests@Base 1.3.5
+ rds_index_get_reports@Base 1.3.5
+ rds_index_new@Base 1.3.5
+ rds_index_select_report@Base 1.3.5
+ rds_report_index_free@Base 1.3.5
+ rds_report_index_get_id@Base 1.3.5
+ rds_report_index_get_request@Base 1.3.5
+ rds_report_index_iterator_free@Base 1.3.5
+ rds_report_index_iterator_has_more@Base 1.3.5
+ rds_report_index_iterator_next@Base 1.3.5
+ rds_report_index_new@Base 1.3.5
+ rds_report_index_set_request@Base 1.3.5
+ rds_report_request_index_free@Base 1.3.5
+ rds_report_request_index_get_id@Base 1.3.5
+ rds_report_request_index_iterator_free@Base 1.3.5
+ rds_report_request_index_iterator_has_more@Base 1.3.5
+ rds_report_request_index_iterator_next@Base 1.3.5
+ rds_report_request_index_new@Base 1.3.5
+ xccdf_benchmark_add_content@Base 1.3.5
+ xccdf_benchmark_add_dc_status@Base 1.3.5
+ xccdf_benchmark_add_description@Base 1.3.5
+ xccdf_benchmark_add_front_matter@Base 1.3.5
+ xccdf_benchmark_add_group@Base 1.3.5
+ xccdf_benchmark_add_metadata@Base 1.3.5
+ xccdf_benchmark_add_model@Base 1.3.5
+ xccdf_benchmark_add_notice@Base 1.3.5
+ xccdf_benchmark_add_plain_text@Base 1.3.5
+ xccdf_benchmark_add_platform@Base 1.3.5
+ xccdf_benchmark_add_profile@Base 1.3.5
+ xccdf_benchmark_add_rear_matter@Base 1.3.5
+ xccdf_benchmark_add_reference@Base 1.3.5
+ xccdf_benchmark_add_result@Base 1.3.5
+ xccdf_benchmark_add_rule@Base 1.3.5
+ xccdf_benchmark_add_status@Base 1.3.5
+ xccdf_benchmark_add_title@Base 1.3.5
+ xccdf_benchmark_add_value@Base 1.3.5
+ xccdf_benchmark_append_new_group@Base 1.3.5
+ xccdf_benchmark_append_new_rule@Base 1.3.5
+ xccdf_benchmark_append_new_value@Base 1.3.5
+ xccdf_benchmark_clone@Base 1.3.5
+ xccdf_benchmark_export@Base 1.3.5
+ xccdf_benchmark_export_source@Base 1.3.5
+ xccdf_benchmark_free@Base 1.3.5
+ xccdf_benchmark_get_content@Base 1.3.5
+ xccdf_benchmark_get_cpe_lang_model@Base 1.3.5
+ xccdf_benchmark_get_cpe_list@Base 1.3.5
+ xccdf_benchmark_get_dc_statuses@Base 1.3.5
+ xccdf_benchmark_get_description@Base 1.3.5
+ xccdf_benchmark_get_front_matter@Base 1.3.5
+ xccdf_benchmark_get_id@Base 1.3.5
+ xccdf_benchmark_get_item@Base 1.3.5
+ xccdf_benchmark_get_lang@Base 1.3.5
+ xccdf_benchmark_get_member@Base 1.3.5
+ xccdf_benchmark_get_metadata@Base 1.3.5
+ xccdf_benchmark_get_models@Base 1.3.5
+ xccdf_benchmark_get_notices@Base 1.3.5
+ xccdf_benchmark_get_plain_text@Base 1.3.5
+ xccdf_benchmark_get_plain_texts@Base 1.3.5
+ xccdf_benchmark_get_platforms@Base 1.3.5
+ xccdf_benchmark_get_profile_by_id@Base 1.3.5
+ xccdf_benchmark_get_profiles@Base 1.3.5
+ xccdf_benchmark_get_rear_matter@Base 1.3.5
+ xccdf_benchmark_get_references@Base 1.3.5
+ xccdf_benchmark_get_resolved@Base 1.3.5
+ xccdf_benchmark_get_results@Base 1.3.5
+ xccdf_benchmark_get_schema_version@Base 1.3.5
+ xccdf_benchmark_get_status_current@Base 1.3.5
+ xccdf_benchmark_get_statuses@Base 1.3.5
+ xccdf_benchmark_get_style@Base 1.3.5
+ xccdf_benchmark_get_style_href@Base 1.3.5
+ xccdf_benchmark_get_title@Base 1.3.5
+ xccdf_benchmark_get_values@Base 1.3.5
+ xccdf_benchmark_get_version@Base 1.3.5
+ xccdf_benchmark_get_version_time@Base 1.3.5
+ xccdf_benchmark_get_version_update@Base 1.3.5
+ xccdf_benchmark_get_warnings@Base 1.3.5
+ xccdf_benchmark_import_source@Base 1.3.5
+ xccdf_benchmark_match_profile_id@Base 1.3.5
+ xccdf_benchmark_new@Base 1.3.5
+ xccdf_benchmark_resolve@Base 1.3.5
+ xccdf_benchmark_set_cpe_lang_model@Base 1.3.5
+ xccdf_benchmark_set_cpe_list@Base 1.3.5
+ xccdf_benchmark_set_id@Base 1.3.5
+ xccdf_benchmark_set_lang@Base 1.3.5
+ xccdf_benchmark_set_resolved@Base 1.3.5
+ xccdf_benchmark_set_schema_version@Base 1.3.5
+ xccdf_benchmark_set_style@Base 1.3.5
+ xccdf_benchmark_set_style_href@Base 1.3.5
+ xccdf_benchmark_set_version@Base 1.3.5
+ xccdf_benchmark_set_version_time@Base 1.3.5
+ xccdf_benchmark_set_version_update@Base 1.3.5
+ xccdf_benchmark_supported@Base 1.3.5
+ xccdf_benchmark_supported_schema_version@Base 1.3.5
+ xccdf_benchmark_to_item@Base 1.3.5
+ xccdf_check_add_child@Base 1.3.5
+ xccdf_check_add_content_ref@Base 1.3.5
+ xccdf_check_add_export@Base 1.3.5
+ xccdf_check_add_import@Base 1.3.5
+ xccdf_check_clone@Base 1.3.5
+ xccdf_check_content_ref_clone@Base 1.3.5
+ xccdf_check_content_ref_free@Base 1.3.5
+ xccdf_check_content_ref_get_href@Base 1.3.5
+ xccdf_check_content_ref_get_name@Base 1.3.5
+ xccdf_check_content_ref_iterator_free@Base 1.3.5
+ xccdf_check_content_ref_iterator_has_more@Base 1.3.5
+ xccdf_check_content_ref_iterator_next@Base 1.3.5
+ xccdf_check_content_ref_iterator_remove@Base 1.3.5
+ xccdf_check_content_ref_iterator_reset@Base 1.3.5
+ xccdf_check_content_ref_new@Base 1.3.5
+ xccdf_check_content_ref_set_href@Base 1.3.5
+ xccdf_check_content_ref_set_name@Base 1.3.5
+ xccdf_check_export_clone@Base 1.3.5
+ xccdf_check_export_free@Base 1.3.5
+ xccdf_check_export_get_name@Base 1.3.5
+ xccdf_check_export_get_value@Base 1.3.5
+ xccdf_check_export_iterator_free@Base 1.3.5
+ xccdf_check_export_iterator_has_more@Base 1.3.5
+ xccdf_check_export_iterator_next@Base 1.3.5
+ xccdf_check_export_iterator_remove@Base 1.3.5
+ xccdf_check_export_iterator_reset@Base 1.3.5
+ xccdf_check_export_new@Base 1.3.5
+ xccdf_check_export_set_name@Base 1.3.5
+ xccdf_check_export_set_value@Base 1.3.5
+ xccdf_check_free@Base 1.3.5
+ xccdf_check_get_children@Base 1.3.5
+ xccdf_check_get_complex@Base 1.3.5
+ xccdf_check_get_content@Base 1.3.5
+ xccdf_check_get_content_refs@Base 1.3.5
+ xccdf_check_get_exports@Base 1.3.5
+ xccdf_check_get_id@Base 1.3.5
+ xccdf_check_get_imports@Base 1.3.5
+ xccdf_check_get_multicheck@Base 1.3.5
+ xccdf_check_get_negate@Base 1.3.5
+ xccdf_check_get_oper@Base 1.3.5
+ xccdf_check_get_selector@Base 1.3.5
+ xccdf_check_get_system@Base 1.3.5
+ xccdf_check_import_clone@Base 1.3.5
+ xccdf_check_import_free@Base 1.3.5
+ xccdf_check_import_get_content@Base 1.3.5
+ xccdf_check_import_get_name@Base 1.3.5
+ xccdf_check_import_get_xpath@Base 1.3.5
+ xccdf_check_import_iterator_free@Base 1.3.5
+ xccdf_check_import_iterator_has_more@Base 1.3.5
+ xccdf_check_import_iterator_next@Base 1.3.5
+ xccdf_check_import_iterator_remove@Base 1.3.5
+ xccdf_check_import_iterator_reset@Base 1.3.5
+ xccdf_check_import_new@Base 1.3.5
+ xccdf_check_import_set_content@Base 1.3.5
+ xccdf_check_import_set_name@Base 1.3.5
+ xccdf_check_import_set_xpath@Base 1.3.5
+ xccdf_check_iterator_free@Base 1.3.5
+ xccdf_check_iterator_has_more@Base 1.3.5
+ xccdf_check_iterator_next@Base 1.3.5
+ xccdf_check_iterator_remove@Base 1.3.5
+ xccdf_check_iterator_reset@Base 1.3.5
+ xccdf_check_new@Base 1.3.5
+ xccdf_check_set_content@Base 1.3.5
+ xccdf_check_set_id@Base 1.3.5
+ xccdf_check_set_multicheck@Base 1.3.5
+ xccdf_check_set_negate@Base 1.3.5
+ xccdf_check_set_oper@Base 1.3.5
+ xccdf_check_set_selector@Base 1.3.5
+ xccdf_check_set_system@Base 1.3.5
+ xccdf_fix_clone@Base 1.3.5
+ xccdf_fix_free@Base 1.3.5
+ xccdf_fix_get_complexity@Base 1.3.5
+ xccdf_fix_get_content@Base 1.3.5
+ xccdf_fix_get_disruption@Base 1.3.5
+ xccdf_fix_get_id@Base 1.3.5
+ xccdf_fix_get_platform@Base 1.3.5
+ xccdf_fix_get_reboot@Base 1.3.5
+ xccdf_fix_get_strategy@Base 1.3.5
+ xccdf_fix_get_system@Base 1.3.5
+ xccdf_fix_iterator_free@Base 1.3.5
+ xccdf_fix_iterator_has_more@Base 1.3.5
+ xccdf_fix_iterator_next@Base 1.3.5
+ xccdf_fix_iterator_remove@Base 1.3.5
+ xccdf_fix_iterator_reset@Base 1.3.5
+ xccdf_fix_new@Base 1.3.5
+ xccdf_fix_set_complexity@Base 1.3.5
+ xccdf_fix_set_content@Base 1.3.5
+ xccdf_fix_set_disruption@Base 1.3.5
+ xccdf_fix_set_id@Base 1.3.5
+ xccdf_fix_set_platform@Base 1.3.5
+ xccdf_fix_set_reboot@Base 1.3.5
+ xccdf_fix_set_strategy@Base 1.3.5
+ xccdf_fix_set_system@Base 1.3.5
+ xccdf_fixtext_clone@Base 1.3.5
+ xccdf_fixtext_free@Base 1.3.5
+ xccdf_fixtext_get_complexity@Base 1.3.5
+ xccdf_fixtext_get_disruption@Base 1.3.5
+ xccdf_fixtext_get_fixref@Base 1.3.5
+ xccdf_fixtext_get_reboot@Base 1.3.5
+ xccdf_fixtext_get_strategy@Base 1.3.5
+ xccdf_fixtext_get_text@Base 1.3.5
+ xccdf_fixtext_iterator_free@Base 1.3.5
+ xccdf_fixtext_iterator_has_more@Base 1.3.5
+ xccdf_fixtext_iterator_next@Base 1.3.5
+ xccdf_fixtext_iterator_remove@Base 1.3.5
+ xccdf_fixtext_iterator_reset@Base 1.3.5
+ xccdf_fixtext_new@Base 1.3.5
+ xccdf_fixtext_set_complexity@Base 1.3.5
+ xccdf_fixtext_set_disruption@Base 1.3.5
+ xccdf_fixtext_set_fixref@Base 1.3.5
+ xccdf_fixtext_set_reboot@Base 1.3.5
+ xccdf_fixtext_set_strategy@Base 1.3.5
+ xccdf_fixtext_set_text@Base 1.3.5
+ xccdf_group_add_conflicts@Base 1.3.5
+ xccdf_group_add_content@Base 1.3.5
+ xccdf_group_add_dc_status@Base 1.3.5
+ xccdf_group_add_description@Base 1.3.5
+ xccdf_group_add_group@Base 1.3.5
+ xccdf_group_add_metadata@Base 1.3.5
+ xccdf_group_add_platform@Base 1.3.5
+ xccdf_group_add_question@Base 1.3.5
+ xccdf_group_add_rationale@Base 1.3.5
+ xccdf_group_add_reference@Base 1.3.5
+ xccdf_group_add_requires@Base 1.3.5
+ xccdf_group_add_rule@Base 1.3.5
+ xccdf_group_add_status@Base 1.3.5
+ xccdf_group_add_title@Base 1.3.5
+ xccdf_group_add_value@Base 1.3.5
+ xccdf_group_add_warning@Base 1.3.5
+ xccdf_group_clone@Base 1.3.5
+ xccdf_group_free@Base 1.3.5
+ xccdf_group_get_abstract@Base 1.3.5
+ xccdf_group_get_benchmark@Base 1.3.5
+ xccdf_group_get_cluster_id@Base 1.3.5
+ xccdf_group_get_conflicts@Base 1.3.5
+ xccdf_group_get_content@Base 1.3.5
+ xccdf_group_get_dc_statuses@Base 1.3.5
+ xccdf_group_get_description@Base 1.3.5
+ xccdf_group_get_extends@Base 1.3.5
+ xccdf_group_get_hidden@Base 1.3.5
+ xccdf_group_get_id@Base 1.3.5
+ xccdf_group_get_metadata@Base 1.3.5
+ xccdf_group_get_parent@Base 1.3.5
+ xccdf_group_get_platforms@Base 1.3.5
+ xccdf_group_get_prohibit_changes@Base 1.3.5
+ xccdf_group_get_question@Base 1.3.5
+ xccdf_group_get_rationale@Base 1.3.5
+ xccdf_group_get_references@Base 1.3.5
+ xccdf_group_get_requires@Base 1.3.5
+ xccdf_group_get_selected@Base 1.3.5
+ xccdf_group_get_status_current@Base 1.3.5
+ xccdf_group_get_statuses@Base 1.3.5
+ xccdf_group_get_title@Base 1.3.5
+ xccdf_group_get_values@Base 1.3.5
+ xccdf_group_get_version@Base 1.3.5
+ xccdf_group_get_version_time@Base 1.3.5
+ xccdf_group_get_version_update@Base 1.3.5
+ xccdf_group_get_warnings@Base 1.3.5
+ xccdf_group_get_weight@Base 1.3.5
+ xccdf_group_new@Base 1.3.5
+ xccdf_group_set_abstract@Base 1.3.5
+ xccdf_group_set_cluster_id@Base 1.3.5
+ xccdf_group_set_extends@Base 1.3.5
+ xccdf_group_set_hidden@Base 1.3.5
+ xccdf_group_set_id@Base 1.3.5
+ xccdf_group_set_prohibit_changes@Base 1.3.5
+ xccdf_group_set_selected@Base 1.3.5
+ xccdf_group_set_version@Base 1.3.5
+ xccdf_group_set_version_time@Base 1.3.5
+ xccdf_group_set_version_update@Base 1.3.5
+ xccdf_group_set_weight@Base 1.3.5
+ xccdf_group_to_item@Base 1.3.5
+ xccdf_ident_clone@Base 1.3.5
+ xccdf_ident_free@Base 1.3.5
+ xccdf_ident_get_id@Base 1.3.5
+ xccdf_ident_get_system@Base 1.3.5
+ xccdf_ident_iterator_free@Base 1.3.5
+ xccdf_ident_iterator_has_more@Base 1.3.5
+ xccdf_ident_iterator_next@Base 1.3.5
+ xccdf_ident_iterator_remove@Base 1.3.5
+ xccdf_ident_iterator_reset@Base 1.3.5
+ xccdf_ident_new@Base 1.3.5
+ xccdf_ident_new_fill@Base 1.3.5
+ xccdf_ident_set_id@Base 1.3.5
+ xccdf_ident_set_system@Base 1.3.5
+ xccdf_identity_clone@Base 1.3.5
+ xccdf_identity_free@Base 1.3.5
+ xccdf_identity_get_authenticated@Base 1.3.5
+ xccdf_identity_get_name@Base 1.3.5
+ xccdf_identity_get_privileged@Base 1.3.5
+ xccdf_identity_iterator_free@Base 1.3.5
+ xccdf_identity_iterator_has_more@Base 1.3.5
+ xccdf_identity_iterator_next@Base 1.3.5
+ xccdf_identity_iterator_remove@Base 1.3.5
+ xccdf_identity_iterator_reset@Base 1.3.5
+ xccdf_identity_new@Base 1.3.5
+ xccdf_identity_set_authenticated@Base 1.3.5
+ xccdf_identity_set_name@Base 1.3.5
+ xccdf_identity_set_privileged@Base 1.3.5
+ xccdf_instance_clone@Base 1.3.5
+ xccdf_instance_free@Base 1.3.5
+ xccdf_instance_get_content@Base 1.3.5
+ xccdf_instance_get_context@Base 1.3.5
+ xccdf_instance_get_parent_context@Base 1.3.5
+ xccdf_instance_iterator_free@Base 1.3.5
+ xccdf_instance_iterator_has_more@Base 1.3.5
+ xccdf_instance_iterator_next@Base 1.3.5
+ xccdf_instance_iterator_remove@Base 1.3.5
+ xccdf_instance_iterator_reset@Base 1.3.5
+ xccdf_instance_new@Base 1.3.5
+ xccdf_instance_set_content@Base 1.3.5
+ xccdf_instance_set_context@Base 1.3.5
+ xccdf_instance_set_parent_context@Base 1.3.5
+ xccdf_item_add_conflicts@Base 1.3.5
+ xccdf_item_add_dc_status@Base 1.3.5
+ xccdf_item_add_description@Base 1.3.5
+ xccdf_item_add_metadata@Base 1.3.5
+ xccdf_item_add_platform@Base 1.3.5
+ xccdf_item_add_question@Base 1.3.5
+ xccdf_item_add_rationale@Base 1.3.5
+ xccdf_item_add_reference@Base 1.3.5
+ xccdf_item_add_requires@Base 1.3.5
+ xccdf_item_add_status@Base 1.3.5
+ xccdf_item_add_title@Base 1.3.5
+ xccdf_item_add_warning@Base 1.3.5
+ xccdf_item_clone@Base 1.3.5
+ xccdf_item_free@Base 1.3.5
+ xccdf_item_get_abstract@Base 1.3.5
+ xccdf_item_get_benchmark@Base 1.3.5
+ xccdf_item_get_cluster_id@Base 1.3.5
+ xccdf_item_get_conflicts@Base 1.3.5
+ xccdf_item_get_content@Base 1.3.5
+ xccdf_item_get_current_status@Base 1.3.5
+ xccdf_item_get_dc_statuses@Base 1.3.5
+ xccdf_item_get_description@Base 1.3.5
+ xccdf_item_get_extends@Base 1.3.5
+ xccdf_item_get_files@Base 1.3.5
+ xccdf_item_get_hidden@Base 1.3.5
+ xccdf_item_get_id@Base 1.3.5
+ xccdf_item_get_metadata@Base 1.3.5
+ xccdf_item_get_parent@Base 1.3.5
+ xccdf_item_get_platforms@Base 1.3.5
+ xccdf_item_get_prohibit_changes@Base 1.3.5
+ xccdf_item_get_question@Base 1.3.5
+ xccdf_item_get_rationale@Base 1.3.5
+ xccdf_item_get_references@Base 1.3.5
+ xccdf_item_get_requires@Base 1.3.5
+ xccdf_item_get_schema_version@Base 1.3.5
+ xccdf_item_get_selected@Base 1.3.5
+ xccdf_item_get_statuses@Base 1.3.5
+ xccdf_item_get_systems_and_files@Base 1.3.5
+ xccdf_item_get_title@Base 1.3.5
+ xccdf_item_get_type@Base 1.3.5
+ xccdf_item_get_version@Base 1.3.5
+ xccdf_item_get_version_time@Base 1.3.5
+ xccdf_item_get_version_update@Base 1.3.5
+ xccdf_item_get_warnings@Base 1.3.5
+ xccdf_item_get_weight@Base 1.3.5
+ xccdf_item_iterator_free@Base 1.3.5
+ xccdf_item_iterator_has_more@Base 1.3.5
+ xccdf_item_iterator_next@Base 1.3.5
+ xccdf_item_iterator_remove@Base 1.3.5
+ xccdf_item_iterator_reset@Base 1.3.5
+ xccdf_item_set_abstract@Base 1.3.5
+ xccdf_item_set_cluster_id@Base 1.3.5
+ xccdf_item_set_extends@Base 1.3.5
+ xccdf_item_set_hidden@Base 1.3.5
+ xccdf_item_set_id@Base 1.3.5
+ xccdf_item_set_prohibit_changes@Base 1.3.5
+ xccdf_item_set_selected@Base 1.3.5
+ xccdf_item_set_version@Base 1.3.5
+ xccdf_item_set_version_time@Base 1.3.5
+ xccdf_item_set_version_update@Base 1.3.5
+ xccdf_item_set_weight@Base 1.3.5
+ xccdf_item_to_benchmark@Base 1.3.5
+ xccdf_item_to_group@Base 1.3.5
+ xccdf_item_to_profile@Base 1.3.5
+ xccdf_item_to_result@Base 1.3.5
+ xccdf_item_to_rule@Base 1.3.5
+ xccdf_item_to_value@Base 1.3.5
+ xccdf_message_clone@Base 1.3.5
+ xccdf_message_free@Base 1.3.5
+ xccdf_message_get_content@Base 1.3.5
+ xccdf_message_get_severity@Base 1.3.5
+ xccdf_message_iterator_free@Base 1.3.5
+ xccdf_message_iterator_has_more@Base 1.3.5
+ xccdf_message_iterator_next@Base 1.3.5
+ xccdf_message_iterator_remove@Base 1.3.5
+ xccdf_message_iterator_reset@Base 1.3.5
+ xccdf_message_new@Base 1.3.5
+ xccdf_message_set_content@Base 1.3.5
+ xccdf_message_set_severity@Base 1.3.5
+ xccdf_model_clone@Base 1.3.5
+ xccdf_model_free@Base 1.3.5
+ xccdf_model_get_system@Base 1.3.5
+ xccdf_model_iterator_free@Base 1.3.5
+ xccdf_model_iterator_has_more@Base 1.3.5
+ xccdf_model_iterator_next@Base 1.3.5
+ xccdf_model_iterator_remove@Base 1.3.5
+ xccdf_model_iterator_reset@Base 1.3.5
+ xccdf_model_new@Base 1.3.5
+ xccdf_model_set_system@Base 1.3.5
+ xccdf_notice_clone@Base 1.3.5
+ xccdf_notice_free@Base 1.3.5
+ xccdf_notice_get_id@Base 1.3.5
+ xccdf_notice_get_text@Base 1.3.5
+ xccdf_notice_iterator_free@Base 1.3.5
+ xccdf_notice_iterator_has_more@Base 1.3.5
+ xccdf_notice_iterator_next@Base 1.3.5
+ xccdf_notice_iterator_remove@Base 1.3.5
+ xccdf_notice_iterator_reset@Base 1.3.5
+ xccdf_notice_new@Base 1.3.5
+ xccdf_notice_set_id@Base 1.3.5
+ xccdf_notice_set_text@Base 1.3.5
+ xccdf_override_clone@Base 1.3.5
+ xccdf_override_free@Base 1.3.5
+ xccdf_override_get_authority@Base 1.3.5
+ xccdf_override_get_new_result@Base 1.3.5
+ xccdf_override_get_old_result@Base 1.3.5
+ xccdf_override_get_remark@Base 1.3.5
+ xccdf_override_get_time@Base 1.3.5
+ xccdf_override_iterator_free@Base 1.3.5
+ xccdf_override_iterator_has_more@Base 1.3.5
+ xccdf_override_iterator_next@Base 1.3.5
+ xccdf_override_iterator_remove@Base 1.3.5
+ xccdf_override_iterator_reset@Base 1.3.5
+ xccdf_override_new@Base 1.3.5
+ xccdf_override_set_authority@Base 1.3.5
+ xccdf_override_set_new_result@Base 1.3.5
+ xccdf_override_set_old_result@Base 1.3.5
+ xccdf_override_set_remark@Base 1.3.5
+ xccdf_override_set_time@Base 1.3.5
+ xccdf_plain_text_clone@Base 1.3.5
+ xccdf_plain_text_free@Base 1.3.5
+ xccdf_plain_text_get_id@Base 1.3.5
+ xccdf_plain_text_get_text@Base 1.3.5
+ xccdf_plain_text_iterator_free@Base 1.3.5
+ xccdf_plain_text_iterator_has_more@Base 1.3.5
+ xccdf_plain_text_iterator_next@Base 1.3.5
+ xccdf_plain_text_iterator_remove@Base 1.3.5
+ xccdf_plain_text_iterator_reset@Base 1.3.5
+ xccdf_plain_text_new@Base 1.3.5
+ xccdf_plain_text_new_fill@Base 1.3.5
+ xccdf_plain_text_set_id@Base 1.3.5
+ xccdf_plain_text_set_text@Base 1.3.5
+ xccdf_policy_add_result@Base 1.3.5
+ xccdf_policy_add_select@Base 1.3.5
+ xccdf_policy_add_value@Base 1.3.5
+ xccdf_policy_evaluate@Base 1.3.5
+ xccdf_policy_free@Base 1.3.5
+ xccdf_policy_generate_fix@Base 1.3.5
+ xccdf_policy_get_id@Base 1.3.5
+ xccdf_policy_get_model@Base 1.3.5
+ xccdf_policy_get_profile@Base 1.3.5
+ xccdf_policy_get_readable_item_description@Base 1.3.5
+ xccdf_policy_get_readable_item_title@Base 1.3.5
+ xccdf_policy_get_result_by_id@Base 1.3.5
+ xccdf_policy_get_results@Base 1.3.5
+ xccdf_policy_get_score@Base 1.3.5
+ xccdf_policy_get_select_by_id@Base 1.3.5
+ xccdf_policy_get_selected_rules@Base 1.3.5
+ xccdf_policy_get_selected_rules_count@Base 1.3.5
+ xccdf_policy_get_selects@Base 1.3.5
+ xccdf_policy_get_value_of_item@Base 1.3.5
+ xccdf_policy_get_values@Base 1.3.5
+ xccdf_policy_is_item_selected@Base 1.3.5
+ xccdf_policy_iterator_free@Base 1.3.5
+ xccdf_policy_iterator_has_more@Base 1.3.5
+ xccdf_policy_iterator_next@Base 1.3.5
+ xccdf_policy_iterator_reset@Base 1.3.5
+ xccdf_policy_model_add_cpe_autodetect_source@Base 1.3.5
+ xccdf_policy_model_add_cpe_dict@Base 1.3.5
+ xccdf_policy_model_add_cpe_dict_source@Base 1.3.5
+ xccdf_policy_model_add_cpe_lang_model_source@Base 1.3.5
+ xccdf_policy_model_add_policy@Base 1.3.5
+ xccdf_policy_model_build_all_useful_policies@Base 1.3.5
+ xccdf_policy_model_free@Base 1.3.5
+ xccdf_policy_model_get_benchmark@Base 1.3.5
+ xccdf_policy_model_get_cpe_oval_sessions@Base 1.3.5
+ xccdf_policy_model_get_files@Base 1.3.5
+ xccdf_policy_model_get_policies@Base 1.3.5
+ xccdf_policy_model_get_policy_by_id@Base 1.3.5
+ xccdf_policy_model_get_systems_and_files@Base 1.3.5
+ xccdf_policy_model_get_tailoring@Base 1.3.5
+ xccdf_policy_model_new@Base 1.3.5
+ xccdf_policy_model_register_engine_and_query_callback@Base 1.3.5
+ xccdf_policy_model_register_engine_oval@Base 1.3.5
+ xccdf_policy_model_register_multicheck_callback@Base 1.3.5
+ xccdf_policy_model_register_output_callback@Base 1.3.5
+ xccdf_policy_model_register_start_callback@Base 1.3.5
+ xccdf_policy_model_set_tailoring@Base 1.3.5
+ xccdf_policy_new@Base 1.3.5
+ xccdf_policy_recalculate_score@Base 1.3.5
+ xccdf_policy_resolve@Base 1.3.5
+ xccdf_policy_substitute@Base 1.3.5
+ xccdf_profile_add_dc_status@Base 1.3.5
+ xccdf_profile_add_description@Base 1.3.5
+ xccdf_profile_add_metadata@Base 1.3.5
+ xccdf_profile_add_platform@Base 1.3.5
+ xccdf_profile_add_reference@Base 1.3.5
+ xccdf_profile_add_refine_rule@Base 1.3.5
+ xccdf_profile_add_refine_value@Base 1.3.5
+ xccdf_profile_add_select@Base 1.3.5
+ xccdf_profile_add_setvalue@Base 1.3.5
+ xccdf_profile_add_status@Base 1.3.5
+ xccdf_profile_add_title@Base 1.3.5
+ xccdf_profile_clone@Base 1.3.5
+ xccdf_profile_free@Base 1.3.5
+ xccdf_profile_get_abstract@Base 1.3.5
+ xccdf_profile_get_benchmark@Base 1.3.5
+ xccdf_profile_get_dc_statuses@Base 1.3.5
+ xccdf_profile_get_description@Base 1.3.5
+ xccdf_profile_get_extends@Base 1.3.5
+ xccdf_profile_get_id@Base 1.3.5
+ xccdf_profile_get_metadata@Base 1.3.5
+ xccdf_profile_get_note_tag@Base 1.3.5
+ xccdf_profile_get_platforms@Base 1.3.5
+ xccdf_profile_get_prohibit_changes@Base 1.3.5
+ xccdf_profile_get_references@Base 1.3.5
+ xccdf_profile_get_refine_rules@Base 1.3.5
+ xccdf_profile_get_refine_values@Base 1.3.5
+ xccdf_profile_get_selects@Base 1.3.5
+ xccdf_profile_get_setvalues@Base 1.3.5
+ xccdf_profile_get_status_current@Base 1.3.5
+ xccdf_profile_get_statuses@Base 1.3.5
+ xccdf_profile_get_tailoring@Base 1.3.5
+ xccdf_profile_get_title@Base 1.3.5
+ xccdf_profile_get_version@Base 1.3.5
+ xccdf_profile_get_version_time@Base 1.3.5
+ xccdf_profile_get_version_update@Base 1.3.5
+ xccdf_profile_iterator_free@Base 1.3.5
+ xccdf_profile_iterator_has_more@Base 1.3.5
+ xccdf_profile_iterator_next@Base 1.3.5
+ xccdf_profile_iterator_remove@Base 1.3.5
+ xccdf_profile_iterator_reset@Base 1.3.5
+ xccdf_profile_new@Base 1.3.5
+ xccdf_profile_note_free@Base 1.3.5
+ xccdf_profile_note_get_reftag@Base 1.3.5
+ xccdf_profile_note_get_text@Base 1.3.5
+ xccdf_profile_note_iterator_free@Base 1.3.5
+ xccdf_profile_note_iterator_has_more@Base 1.3.5
+ xccdf_profile_note_iterator_next@Base 1.3.5
+ xccdf_profile_note_iterator_remove@Base 1.3.5
+ xccdf_profile_note_iterator_reset@Base 1.3.5
+ xccdf_profile_note_new@Base 1.3.5
+ xccdf_profile_note_set_reftag@Base 1.3.5
+ xccdf_profile_note_set_text@Base 1.3.5
+ xccdf_profile_set_abstract@Base 1.3.5
+ xccdf_profile_set_extends@Base 1.3.5
+ xccdf_profile_set_id@Base 1.3.5
+ xccdf_profile_set_note_tag@Base 1.3.5
+ xccdf_profile_set_prohibit_changes@Base 1.3.5
+ xccdf_profile_set_tailoring@Base 1.3.5
+ xccdf_profile_set_version@Base 1.3.5
+ xccdf_profile_set_version_time@Base 1.3.5
+ xccdf_profile_set_version_update@Base 1.3.5
+ xccdf_profile_to_item@Base 1.3.5
+ xccdf_refine_rule_add_remark@Base 1.3.5
+ xccdf_refine_rule_clone@Base 1.3.5
+ xccdf_refine_rule_free@Base 1.3.5
+ xccdf_refine_rule_get_item@Base 1.3.5
+ xccdf_refine_rule_get_remarks@Base 1.3.5
+ xccdf_refine_rule_get_role@Base 1.3.5
+ xccdf_refine_rule_get_selector@Base 1.3.5
+ xccdf_refine_rule_get_severity@Base 1.3.5
+ xccdf_refine_rule_get_weight@Base 1.3.5
+ xccdf_refine_rule_iterator_free@Base 1.3.5
+ xccdf_refine_rule_iterator_has_more@Base 1.3.5
+ xccdf_refine_rule_iterator_next@Base 1.3.5
+ xccdf_refine_rule_iterator_remove@Base 1.3.5
+ xccdf_refine_rule_iterator_reset@Base 1.3.5
+ xccdf_refine_rule_new@Base 1.3.5
+ xccdf_refine_rule_set_item@Base 1.3.5
+ xccdf_refine_rule_set_role@Base 1.3.5
+ xccdf_refine_rule_set_selector@Base 1.3.5
+ xccdf_refine_rule_set_severity@Base 1.3.5
+ xccdf_refine_rule_set_weight@Base 1.3.5
+ xccdf_refine_rule_weight_defined@Base 1.3.5
+ xccdf_refine_value_add_remark@Base 1.3.5
+ xccdf_refine_value_clone@Base 1.3.5
+ xccdf_refine_value_free@Base 1.3.5
+ xccdf_refine_value_get_item@Base 1.3.5
+ xccdf_refine_value_get_oper@Base 1.3.5
+ xccdf_refine_value_get_remarks@Base 1.3.5
+ xccdf_refine_value_get_selector@Base 1.3.5
+ xccdf_refine_value_iterator_free@Base 1.3.5
+ xccdf_refine_value_iterator_has_more@Base 1.3.5
+ xccdf_refine_value_iterator_next@Base 1.3.5
+ xccdf_refine_value_iterator_remove@Base 1.3.5
+ xccdf_refine_value_iterator_reset@Base 1.3.5
+ xccdf_refine_value_new@Base 1.3.5
+ xccdf_refine_value_set_item@Base 1.3.5
+ xccdf_refine_value_set_oper@Base 1.3.5
+ xccdf_refine_value_set_selector@Base 1.3.5
+ xccdf_result_add_applicable_platform@Base 1.3.5
+ xccdf_result_add_identity@Base 1.3.5
+ xccdf_result_add_metadata@Base 1.3.5
+ xccdf_result_add_organization@Base 1.3.5
+ xccdf_result_add_remark@Base 1.3.5
+ xccdf_result_add_rule_result@Base 1.3.5
+ xccdf_result_add_score@Base 1.3.5
+ xccdf_result_add_setvalue@Base 1.3.5
+ xccdf_result_add_target@Base 1.3.5
+ xccdf_result_add_target_address@Base 1.3.5
+ xccdf_result_add_target_fact@Base 1.3.5
+ xccdf_result_add_target_identifier@Base 1.3.5
+ xccdf_result_add_title@Base 1.3.5
+ xccdf_result_clone@Base 1.3.5
+ xccdf_result_export_source@Base 1.3.5
+ xccdf_result_fill_sysinfo@Base 1.3.5
+ xccdf_result_free@Base 1.3.5
+ xccdf_result_get_applicable_platforms@Base 1.3.5
+ xccdf_result_get_benchmark@Base 1.3.5
+ xccdf_result_get_benchmark_uri@Base 1.3.5
+ xccdf_result_get_end_time@Base 1.3.5
+ xccdf_result_get_id@Base 1.3.5
+ xccdf_result_get_identities@Base 1.3.5
+ xccdf_result_get_metadata@Base 1.3.5
+ xccdf_result_get_organizations@Base 1.3.5
+ xccdf_result_get_platforms@Base 1.3.5
+ xccdf_result_get_profile@Base 1.3.5
+ xccdf_result_get_remarks@Base 1.3.5
+ xccdf_result_get_rule_result_by_id@Base 1.3.5
+ xccdf_result_get_rule_results@Base 1.3.5
+ xccdf_result_get_scores@Base 1.3.5
+ xccdf_result_get_setvalues@Base 1.3.5
+ xccdf_result_get_start_time@Base 1.3.5
+ xccdf_result_get_statuses@Base 1.3.5
+ xccdf_result_get_target_addresses@Base 1.3.5
+ xccdf_result_get_target_facts@Base 1.3.5
+ xccdf_result_get_target_id_refs@Base 1.3.5
+ xccdf_result_get_targets@Base 1.3.5
+ xccdf_result_get_test_system@Base 1.3.5
+ xccdf_result_get_title@Base 1.3.5
+ xccdf_result_get_version@Base 1.3.5
+ xccdf_result_import_source@Base 1.3.5
+ xccdf_result_iterator_free@Base 1.3.5
+ xccdf_result_iterator_has_more@Base 1.3.5
+ xccdf_result_iterator_next@Base 1.3.5
+ xccdf_result_iterator_remove@Base 1.3.5
+ xccdf_result_iterator_reset@Base 1.3.5
+ xccdf_result_new@Base 1.3.5
+ xccdf_result_recalculate_scores@Base 1.3.5
+ xccdf_result_set_benchmark_uri@Base 1.3.5
+ xccdf_result_set_end_time@Base 1.3.5
+ xccdf_result_set_id@Base 1.3.5
+ xccdf_result_set_profile@Base 1.3.5
+ xccdf_result_set_start_time@Base 1.3.5
+ xccdf_result_set_test_system@Base 1.3.5
+ xccdf_result_set_version@Base 1.3.5
+ xccdf_result_stig_viewer_export_source@Base 1.3.5
+ xccdf_result_to_item@Base 1.3.5
+ xccdf_rule_add_check@Base 1.3.5
+ xccdf_rule_add_conflicts@Base 1.3.5
+ xccdf_rule_add_dc_status@Base 1.3.5
+ xccdf_rule_add_description@Base 1.3.5
+ xccdf_rule_add_fix@Base 1.3.5
+ xccdf_rule_add_fixtext@Base 1.3.5
+ xccdf_rule_add_ident@Base 1.3.5
+ xccdf_rule_add_metadata@Base 1.3.5
+ xccdf_rule_add_platform@Base 1.3.5
+ xccdf_rule_add_profile_note@Base 1.3.5
+ xccdf_rule_add_question@Base 1.3.5
+ xccdf_rule_add_rationale@Base 1.3.5
+ xccdf_rule_add_reference@Base 1.3.5
+ xccdf_rule_add_requires@Base 1.3.5
+ xccdf_rule_add_status@Base 1.3.5
+ xccdf_rule_add_title@Base 1.3.5
+ xccdf_rule_add_warning@Base 1.3.5
+ xccdf_rule_clone@Base 1.3.5
+ xccdf_rule_free@Base 1.3.5
+ xccdf_rule_get_abstract@Base 1.3.5
+ xccdf_rule_get_benchmark@Base 1.3.5
+ xccdf_rule_get_checks@Base 1.3.5
+ xccdf_rule_get_cluster_id@Base 1.3.5
+ xccdf_rule_get_conflicts@Base 1.3.5
+ xccdf_rule_get_dc_statuses@Base 1.3.5
+ xccdf_rule_get_description@Base 1.3.5
+ xccdf_rule_get_extends@Base 1.3.5
+ xccdf_rule_get_fixes@Base 1.3.5
+ xccdf_rule_get_fixtexts@Base 1.3.5
+ xccdf_rule_get_hidden@Base 1.3.5
+ xccdf_rule_get_id@Base 1.3.5
+ xccdf_rule_get_idents@Base 1.3.5
+ xccdf_rule_get_impact_metric@Base 1.3.5
+ xccdf_rule_get_metadata@Base 1.3.5
+ xccdf_rule_get_multiple@Base 1.3.5
+ xccdf_rule_get_parent@Base 1.3.5
+ xccdf_rule_get_platforms@Base 1.3.5
+ xccdf_rule_get_profile_notes@Base 1.3.5
+ xccdf_rule_get_prohibit_changes@Base 1.3.5
+ xccdf_rule_get_question@Base 1.3.5
+ xccdf_rule_get_rationale@Base 1.3.5
+ xccdf_rule_get_references@Base 1.3.5
+ xccdf_rule_get_requires@Base 1.3.5
+ xccdf_rule_get_role@Base 1.3.5
+ xccdf_rule_get_selected@Base 1.3.5
+ xccdf_rule_get_severity@Base 1.3.5
+ xccdf_rule_get_status_current@Base 1.3.5
+ xccdf_rule_get_statuses@Base 1.3.5
+ xccdf_rule_get_title@Base 1.3.5
+ xccdf_rule_get_version@Base 1.3.5
+ xccdf_rule_get_version_time@Base 1.3.5
+ xccdf_rule_get_version_update@Base 1.3.5
+ xccdf_rule_get_warnings@Base 1.3.5
+ xccdf_rule_get_weight@Base 1.3.5
+ xccdf_rule_new@Base 1.3.5
+ xccdf_rule_result_add_check@Base 1.3.5
+ xccdf_rule_result_add_fix@Base 1.3.5
+ xccdf_rule_result_add_ident@Base 1.3.5
+ xccdf_rule_result_add_instance@Base 1.3.5
+ xccdf_rule_result_add_message@Base 1.3.5
+ xccdf_rule_result_add_override@Base 1.3.5
+ xccdf_rule_result_clone@Base 1.3.5
+ xccdf_rule_result_free@Base 1.3.5
+ xccdf_rule_result_get_checks@Base 1.3.5
+ xccdf_rule_result_get_fixes@Base 1.3.5
+ xccdf_rule_result_get_idents@Base 1.3.5
+ xccdf_rule_result_get_idref@Base 1.3.5
+ xccdf_rule_result_get_instances@Base 1.3.5
+ xccdf_rule_result_get_messages@Base 1.3.5
+ xccdf_rule_result_get_overrides@Base 1.3.5
+ xccdf_rule_result_get_result@Base 1.3.5
+ xccdf_rule_result_get_role@Base 1.3.5
+ xccdf_rule_result_get_severity@Base 1.3.5
+ xccdf_rule_result_get_time@Base 1.3.5
+ xccdf_rule_result_get_version@Base 1.3.5
+ xccdf_rule_result_get_weight@Base 1.3.5
+ xccdf_rule_result_iterator_free@Base 1.3.5
+ xccdf_rule_result_iterator_has_more@Base 1.3.5
+ xccdf_rule_result_iterator_next@Base 1.3.5
+ xccdf_rule_result_iterator_remove@Base 1.3.5
+ xccdf_rule_result_iterator_reset@Base 1.3.5
+ xccdf_rule_result_new@Base 1.3.5
+ xccdf_rule_result_override@Base 1.3.5
+ xccdf_rule_result_set_idref@Base 1.3.5
+ xccdf_rule_result_set_result@Base 1.3.5
+ xccdf_rule_result_set_role@Base 1.3.5
+ xccdf_rule_result_set_severity@Base 1.3.5
+ xccdf_rule_result_set_time@Base 1.3.5
+ xccdf_rule_result_set_version@Base 1.3.5
+ xccdf_rule_result_set_weight@Base 1.3.5
+ xccdf_rule_set_abstract@Base 1.3.5
+ xccdf_rule_set_cluster_id@Base 1.3.5
+ xccdf_rule_set_extends@Base 1.3.5
+ xccdf_rule_set_hidden@Base 1.3.5
+ xccdf_rule_set_id@Base 1.3.5
+ xccdf_rule_set_impact_metric@Base 1.3.5
+ xccdf_rule_set_multiple@Base 1.3.5
+ xccdf_rule_set_prohibit_changes@Base 1.3.5
+ xccdf_rule_set_role@Base 1.3.5
+ xccdf_rule_set_selected@Base 1.3.5
+ xccdf_rule_set_severity@Base 1.3.5
+ xccdf_rule_set_version@Base 1.3.5
+ xccdf_rule_set_version_time@Base 1.3.5
+ xccdf_rule_set_version_update@Base 1.3.5
+ xccdf_rule_set_weight@Base 1.3.5
+ xccdf_rule_to_item@Base 1.3.5
+ xccdf_score_clone@Base 1.3.5
+ xccdf_score_free@Base 1.3.5
+ xccdf_score_get_maximum@Base 1.3.5
+ xccdf_score_get_score@Base 1.3.5
+ xccdf_score_get_system@Base 1.3.5
+ xccdf_score_iterator_free@Base 1.3.5
+ xccdf_score_iterator_has_more@Base 1.3.5
+ xccdf_score_iterator_next@Base 1.3.5
+ xccdf_score_iterator_remove@Base 1.3.5
+ xccdf_score_iterator_reset@Base 1.3.5
+ xccdf_score_new@Base 1.3.5
+ xccdf_score_set_maximum@Base 1.3.5
+ xccdf_score_set_score@Base 1.3.5
+ xccdf_score_set_system@Base 1.3.5
+ xccdf_select_add_remark@Base 1.3.5
+ xccdf_select_clone@Base 1.3.5
+ xccdf_select_free@Base 1.3.5
+ xccdf_select_get_item@Base 1.3.5
+ xccdf_select_get_remarks@Base 1.3.5
+ xccdf_select_get_selected@Base 1.3.5
+ xccdf_select_iterator_free@Base 1.3.5
+ xccdf_select_iterator_has_more@Base 1.3.5
+ xccdf_select_iterator_next@Base 1.3.5
+ xccdf_select_iterator_remove@Base 1.3.5
+ xccdf_select_iterator_reset@Base 1.3.5
+ xccdf_select_new@Base 1.3.5
+ xccdf_select_set_item@Base 1.3.5
+ xccdf_select_set_selected@Base 1.3.5
+ xccdf_session_add_report_from_source@Base 1.3.5
+ xccdf_session_add_rule@Base 1.3.6+dfsg
+ xccdf_session_build_policy_from_testresult@Base 1.3.5
+ xccdf_session_configure_remote_resources@Base 1.3.6+dfsg
+ xccdf_session_contains_fail_result@Base 1.3.5
+ xccdf_session_evaluate@Base 1.3.5
+ xccdf_session_export_all@Base 1.3.5
+ xccdf_session_export_arf@Base 1.3.5
+ xccdf_session_export_check_engine_plugins@Base 1.3.5
+ xccdf_session_export_oval@Base 1.3.5
+ xccdf_session_export_xccdf@Base 1.3.5
+ xccdf_session_free@Base 1.3.5
+ xccdf_session_generate_guide@Base 1.3.5
+ xccdf_session_get_base_score@Base 1.3.5
+ xccdf_session_get_benchmark_id@Base 1.3.5
+ xccdf_session_get_component_id@Base 1.3.5
+ xccdf_session_get_cpe_oval_agents_count@Base 1.3.5
+ xccdf_session_get_datastream_id@Base 1.3.5
+ xccdf_session_get_filename@Base 1.3.5
+ xccdf_session_get_oval_agents_count@Base 1.3.5
+ xccdf_session_get_policy_model@Base 1.3.5
+ xccdf_session_get_profile_id@Base 1.3.5
+ xccdf_session_get_result_id@Base 1.3.5
+ xccdf_session_get_sds_idx@Base 1.3.5
+ xccdf_session_get_xccdf_policy@Base 1.3.5
+ xccdf_session_is_sds@Base 1.3.5
+ xccdf_session_load@Base 1.3.5
+ xccdf_session_load_check_engine_plugin2@Base 1.3.5
+ xccdf_session_load_check_engine_plugin@Base 1.3.5
+ xccdf_session_load_check_engine_plugins@Base 1.3.5
+ xccdf_session_load_cpe@Base 1.3.5
+ xccdf_session_load_oval@Base 1.3.5
+ xccdf_session_load_tailoring@Base 1.3.5
+ xccdf_session_load_xccdf@Base 1.3.5
+ xccdf_session_new@Base 1.3.5
+ xccdf_session_new_from_source@Base 1.3.5
+ xccdf_session_remediate@Base 1.3.5
+ xccdf_session_set_arf_export@Base 1.3.5
+ xccdf_session_set_benchmark_id@Base 1.3.5
+ xccdf_session_set_check_engine_plugins_results_export@Base 1.3.5
+ xccdf_session_set_component_id@Base 1.3.5
+ xccdf_session_set_custom_oval_eval_fn@Base 1.3.5
+ xccdf_session_set_custom_oval_files@Base 1.3.5
+ xccdf_session_set_datastream_id@Base 1.3.5
+ xccdf_session_set_loading_flags@Base 1.3.5
+ xccdf_session_set_oval_results_export@Base 1.3.5
+ xccdf_session_set_oval_variables_export@Base 1.3.5
+ xccdf_session_set_product_cpe@Base 1.3.5
+ xccdf_session_set_profile_id@Base 1.3.5
+ xccdf_session_set_profile_id_by_suffix@Base 1.3.5
+ xccdf_session_set_remote_resources@Base 1.3.5
+ xccdf_session_set_report_export@Base 1.3.5
+ xccdf_session_set_rule@Base 1.3.5
+ xccdf_session_set_signature_enforcement@Base 1.3.5
+ xccdf_session_set_signature_validation@Base 1.3.5
+ xccdf_session_set_thin_results@Base 1.3.5
+ xccdf_session_set_user_cpe@Base 1.3.5
+ xccdf_session_set_user_tailoring_cid@Base 1.3.5
+ xccdf_session_set_user_tailoring_file@Base 1.3.5
+ xccdf_session_set_validation@Base 1.3.5
+ xccdf_session_set_without_sys_chars_export@Base 1.3.5
+ xccdf_session_set_xccdf_export@Base 1.3.5
+ xccdf_session_set_xccdf_stig_viewer_export@Base 1.3.5
+ xccdf_session_skip_rule@Base 1.3.6+dfsg
+ xccdf_setvalue_clone@Base 1.3.5
+ xccdf_setvalue_free@Base 1.3.5
+ xccdf_setvalue_get_item@Base 1.3.5
+ xccdf_setvalue_get_value@Base 1.3.5
+ xccdf_setvalue_iterator_free@Base 1.3.5
+ xccdf_setvalue_iterator_has_more@Base 1.3.5
+ xccdf_setvalue_iterator_next@Base 1.3.5
+ xccdf_setvalue_iterator_remove@Base 1.3.5
+ xccdf_setvalue_iterator_reset@Base 1.3.5
+ xccdf_setvalue_new@Base 1.3.5
+ xccdf_setvalue_set_item@Base 1.3.5
+ xccdf_setvalue_set_value@Base 1.3.5
+ xccdf_status_clone@Base 1.3.5
+ xccdf_status_free@Base 1.3.5
+ xccdf_status_get_date@Base 1.3.5
+ xccdf_status_get_status@Base 1.3.5
+ xccdf_status_iterator_free@Base 1.3.5
+ xccdf_status_iterator_has_more@Base 1.3.5
+ xccdf_status_iterator_next@Base 1.3.5
+ xccdf_status_iterator_remove@Base 1.3.5
+ xccdf_status_iterator_reset@Base 1.3.5
+ xccdf_status_new@Base 1.3.5
+ xccdf_status_new_fill@Base 1.3.5
+ xccdf_status_set_date@Base 1.3.5
+ xccdf_status_set_status@Base 1.3.5
+ xccdf_status_type_to_text@Base 1.3.5
+ xccdf_tailoring_add_profile@Base 1.3.5
+ xccdf_tailoring_export@Base 1.3.5
+ xccdf_tailoring_free@Base 1.3.5
+ xccdf_tailoring_get_benchmark_ref@Base 1.3.5
+ xccdf_tailoring_get_benchmark_ref_version@Base 1.3.5
+ xccdf_tailoring_get_dc_statuses@Base 1.3.5
+ xccdf_tailoring_get_id@Base 1.3.5
+ xccdf_tailoring_get_metadata@Base 1.3.5
+ xccdf_tailoring_get_profile_by_id@Base 1.3.5
+ xccdf_tailoring_get_profiles@Base 1.3.5
+ xccdf_tailoring_get_statuses@Base 1.3.5
+ xccdf_tailoring_get_version@Base 1.3.5
+ xccdf_tailoring_get_version_time@Base 1.3.5
+ xccdf_tailoring_get_version_update@Base 1.3.5
+ xccdf_tailoring_import_source@Base 1.3.5
+ xccdf_tailoring_match_profile_id@Base 1.3.5
+ xccdf_tailoring_new@Base 1.3.5
+ xccdf_tailoring_remove_profile@Base 1.3.5
+ xccdf_tailoring_resolve@Base 1.3.5
+ xccdf_tailoring_set_benchmark_ref@Base 1.3.5
+ xccdf_tailoring_set_benchmark_ref_version@Base 1.3.5
+ xccdf_tailoring_set_id@Base 1.3.5
+ xccdf_tailoring_set_version@Base 1.3.5
+ xccdf_tailoring_set_version_time@Base 1.3.5
+ xccdf_tailoring_set_version_update@Base 1.3.5
+ xccdf_target_fact_clone@Base 1.3.5
+ xccdf_target_fact_free@Base 1.3.5
+ xccdf_target_fact_get_name@Base 1.3.5
+ xccdf_target_fact_get_type@Base 1.3.5
+ xccdf_target_fact_get_value@Base 1.3.5
+ xccdf_target_fact_iterator_free@Base 1.3.5
+ xccdf_target_fact_iterator_has_more@Base 1.3.5
+ xccdf_target_fact_iterator_next@Base 1.3.5
+ xccdf_target_fact_iterator_remove@Base 1.3.5
+ xccdf_target_fact_iterator_reset@Base 1.3.5
+ xccdf_target_fact_new@Base 1.3.5
+ xccdf_target_fact_set_boolean@Base 1.3.5
+ xccdf_target_fact_set_name@Base 1.3.5
+ xccdf_target_fact_set_number@Base 1.3.5
+ xccdf_target_fact_set_string@Base 1.3.5
+ xccdf_target_identifier_clone@Base 1.3.5
+ xccdf_target_identifier_free@Base 1.3.5
+ xccdf_target_identifier_get_href@Base 1.3.5
+ xccdf_target_identifier_get_name@Base 1.3.5
+ xccdf_target_identifier_get_system@Base 1.3.5
+ xccdf_target_identifier_get_xml_node@Base 1.3.5
+ xccdf_target_identifier_iterator_free@Base 1.3.5
+ xccdf_target_identifier_iterator_has_more@Base 1.3.5
+ xccdf_target_identifier_iterator_next@Base 1.3.5
+ xccdf_target_identifier_iterator_remove@Base 1.3.5
+ xccdf_target_identifier_iterator_reset@Base 1.3.5
+ xccdf_target_identifier_new@Base 1.3.5
+ xccdf_target_identifier_set_href@Base 1.3.5
+ xccdf_target_identifier_set_name@Base 1.3.5
+ xccdf_target_identifier_set_system@Base 1.3.5
+ xccdf_target_identifier_set_xml_node@Base 1.3.5
+ xccdf_test_result_resolve_and_operation@Base 1.3.5
+ xccdf_test_result_type_get_text@Base 1.3.5
+ xccdf_value_add_dc_status@Base 1.3.5
+ xccdf_value_add_description@Base 1.3.5
+ xccdf_value_add_instance@Base 1.3.5
+ xccdf_value_add_metadata@Base 1.3.5
+ xccdf_value_add_question@Base 1.3.5
+ xccdf_value_add_reference@Base 1.3.5
+ xccdf_value_add_status@Base 1.3.5
+ xccdf_value_add_title@Base 1.3.5
+ xccdf_value_add_warning@Base 1.3.5
+ xccdf_value_binding_free@Base 1.3.5
+ xccdf_value_binding_get_name@Base 1.3.5
+ xccdf_value_binding_get_operator@Base 1.3.5
+ xccdf_value_binding_get_setvalue@Base 1.3.5
+ xccdf_value_binding_get_type@Base 1.3.5
+ xccdf_value_binding_get_value@Base 1.3.5
+ xccdf_value_binding_iterator_free@Base 1.3.5
+ xccdf_value_binding_iterator_has_more@Base 1.3.5
+ xccdf_value_binding_iterator_next@Base 1.3.5
+ xccdf_value_binding_iterator_reset@Base 1.3.5
+ xccdf_value_binding_new@Base 1.3.5
+ xccdf_value_clone@Base 1.3.5
+ xccdf_value_free@Base 1.3.5
+ xccdf_value_get_abstract@Base 1.3.5
+ xccdf_value_get_benchmark@Base 1.3.5
+ xccdf_value_get_cluster_id@Base 1.3.5
+ xccdf_value_get_dc_statuses@Base 1.3.5
+ xccdf_value_get_description@Base 1.3.5
+ xccdf_value_get_extends@Base 1.3.5
+ xccdf_value_get_hidden@Base 1.3.5
+ xccdf_value_get_id@Base 1.3.5
+ xccdf_value_get_instance_by_selector@Base 1.3.5
+ xccdf_value_get_instances@Base 1.3.5
+ xccdf_value_get_interactive@Base 1.3.5
+ xccdf_value_get_interface_hint@Base 1.3.5
+ xccdf_value_get_metadata@Base 1.3.5
+ xccdf_value_get_oper@Base 1.3.5
+ xccdf_value_get_parent@Base 1.3.5
+ xccdf_value_get_prohibit_changes@Base 1.3.5
+ xccdf_value_get_question@Base 1.3.5
+ xccdf_value_get_references@Base 1.3.5
+ xccdf_value_get_sources@Base 1.3.5
+ xccdf_value_get_status_current@Base 1.3.5
+ xccdf_value_get_statuses@Base 1.3.5
+ xccdf_value_get_title@Base 1.3.5
+ xccdf_value_get_type@Base 1.3.5
+ xccdf_value_get_version@Base 1.3.5
+ xccdf_value_get_version_time@Base 1.3.5
+ xccdf_value_get_version_update@Base 1.3.5
+ xccdf_value_get_warnings@Base 1.3.5
+ xccdf_value_instance_free@Base 1.3.5
+ xccdf_value_instance_get_choices@Base 1.3.5
+ xccdf_value_instance_get_defval_boolean@Base 1.3.5
+ xccdf_value_instance_get_defval_number@Base 1.3.5
+ xccdf_value_instance_get_defval_string@Base 1.3.5
+ xccdf_value_instance_get_lower_bound@Base 1.3.5
+ xccdf_value_instance_get_match@Base 1.3.5
+ xccdf_value_instance_get_must_match@Base 1.3.5
+ xccdf_value_instance_get_selector@Base 1.3.5
+ xccdf_value_instance_get_type@Base 1.3.5
+ xccdf_value_instance_get_upper_bound@Base 1.3.5
+ xccdf_value_instance_get_value@Base 1.3.5
+ xccdf_value_instance_get_value_boolean@Base 1.3.5
+ xccdf_value_instance_get_value_number@Base 1.3.5
+ xccdf_value_instance_get_value_string@Base 1.3.5
+ xccdf_value_instance_iterator_free@Base 1.3.5
+ xccdf_value_instance_iterator_has_more@Base 1.3.5
+ xccdf_value_instance_iterator_next@Base 1.3.5
+ xccdf_value_instance_iterator_remove@Base 1.3.5
+ xccdf_value_instance_iterator_reset@Base 1.3.5
+ xccdf_value_instance_set_defval_boolean@Base 1.3.5
+ xccdf_value_instance_set_defval_number@Base 1.3.5
+ xccdf_value_instance_set_defval_string@Base 1.3.5
+ xccdf_value_instance_set_lower_bound@Base 1.3.5
+ xccdf_value_instance_set_match@Base 1.3.5
+ xccdf_value_instance_set_must_match@Base 1.3.5
+ xccdf_value_instance_set_selector@Base 1.3.5
+ xccdf_value_instance_set_upper_bound@Base 1.3.5
+ xccdf_value_instance_set_value_boolean@Base 1.3.5
+ xccdf_value_instance_set_value_number@Base 1.3.5
+ xccdf_value_instance_set_value_string@Base 1.3.5
+ xccdf_value_iterator_free@Base 1.3.5
+ xccdf_value_iterator_has_more@Base 1.3.5
+ xccdf_value_iterator_next@Base 1.3.5
+ xccdf_value_iterator_remove@Base 1.3.5
+ xccdf_value_iterator_reset@Base 1.3.5
+ xccdf_value_new@Base 1.3.5
+ xccdf_value_new_instance@Base 1.3.5
+ xccdf_value_set_abstract@Base 1.3.5
+ xccdf_value_set_cluster_id@Base 1.3.5
+ xccdf_value_set_extends@Base 1.3.5
+ xccdf_value_set_hidden@Base 1.3.5
+ xccdf_value_set_id@Base 1.3.5
+ xccdf_value_set_interactive@Base 1.3.5
+ xccdf_value_set_multiple@Base 1.3.5
+ xccdf_value_set_oper@Base 1.3.5
+ xccdf_value_set_prohibit_changes@Base 1.3.5
+ xccdf_value_set_version@Base 1.3.5
+ xccdf_value_set_version_time@Base 1.3.5
+ xccdf_value_set_version_update@Base 1.3.5
+ xccdf_value_to_item@Base 1.3.5
+ xccdf_version_info_get_cpe_version@Base 1.3.5
+ xccdf_version_info_get_namespace_uri@Base 1.3.5
+ xccdf_version_info_get_version@Base 1.3.5
+ xccdf_warning_clone@Base 1.3.5
+ xccdf_warning_free@Base 1.3.5
+ xccdf_warning_get_category@Base 1.3.5
+ xccdf_warning_get_text@Base 1.3.5
+ xccdf_warning_iterator_free@Base 1.3.5
+ xccdf_warning_iterator_has_more@Base 1.3.5
+ xccdf_warning_iterator_next@Base 1.3.5
+ xccdf_warning_iterator_remove@Base 1.3.5
+ xccdf_warning_iterator_reset@Base 1.3.5
+ xccdf_warning_new@Base 1.3.5
+ xccdf_warning_set_category@Base 1.3.5
+ xccdf_warning_set_text@Base 1.3.5
+libopenscap_sce.so.25 libopenscap25 #MINVER#
+* Build-Depends-Package: libopenscap-dev
+ OPENSCAP_CHECK_ENGINE_PLUGIN_ENTRY@Base 1.3.5
+ __oscap_seterr@Base 1.3.5
+ __oscap_setxmlerr@Base 1.3.5
+ err_queue_free@Base 1.3.5
+ err_queue_get_last@Base 1.3.5
+ err_queue_is_empty@Base 1.3.5
+ err_queue_new@Base 1.3.5
+ err_queue_pop_first@Base 1.3.5
+ err_queue_push@Base 1.3.5
+ err_queue_to_string@Base 1.3.5
+ oscap_basename@Base 1.3.5
+ oscap_buffer_append_binary_data@Base 1.3.5
+ oscap_buffer_append_string@Base 1.3.5
+ oscap_buffer_bequeath@Base 1.3.5
+ oscap_buffer_clear@Base 1.3.5
+ oscap_buffer_free@Base 1.3.5
+ oscap_buffer_get_length@Base 1.3.5
+ oscap_buffer_get_raw@Base 1.3.5
+ oscap_buffer_new@Base 1.3.5
+ oscap_clearerr@Base 1.3.5
+ oscap_create_lists@Base 1.3.5
+ oscap_dirname@Base 1.3.5
+ oscap_enum_to_string@Base 1.3.5
+ oscap_err@Base 1.3.5
+ oscap_err_desc@Base 1.3.5
+ oscap_err_family@Base 1.3.5
+ oscap_err_get_full_error@Base 1.3.5
+ oscap_expand_ipv6@Base 1.3.5
+ oscap_fopen_with_prefix@Base 1.3.5
+ oscap_get_substrings@Base 1.3.5
+ oscap_htable_add@Base 1.3.5
+ oscap_htable_clone@Base 1.3.5
+ oscap_htable_detach@Base 1.3.5
+ oscap_htable_dump@Base 1.3.5
+ oscap_htable_free0@Base 1.3.5
+ oscap_htable_free@Base 1.3.5
+ oscap_htable_get@Base 1.3.5
+ oscap_htable_itemcount@Base 1.3.6+dfsg
+ oscap_htable_iterator_free@Base 1.3.5
+ oscap_htable_iterator_has_more@Base 1.3.5
+ oscap_htable_iterator_new@Base 1.3.5
+ oscap_htable_iterator_next@Base 1.3.5
+ oscap_htable_iterator_next_key@Base 1.3.5
+ oscap_htable_iterator_next_kv@Base 1.3.5
+ oscap_htable_iterator_next_value@Base 1.3.5
+ oscap_htable_iterator_reset@Base 1.3.5
+ oscap_htable_new1@Base 1.3.5
+ oscap_htable_new@Base 1.3.5
+ oscap_iterator_detach@Base 1.3.5
+ oscap_iterator_free@Base 1.3.5
+ oscap_iterator_get_itemcount@Base 1.3.5
+ oscap_iterator_has_more@Base 1.3.5
+ oscap_iterator_new@Base 1.3.5
+ oscap_iterator_new_filter@Base 1.3.5
+ oscap_iterator_next@Base 1.3.5
+ oscap_iterator_reset@Base 1.3.5
+ oscap_list_add@Base 1.3.5
+ oscap_list_clone@Base 1.3.5
+ oscap_list_contains@Base 1.3.5
+ oscap_list_destructive_join@Base 1.3.5
+ oscap_list_dump@Base 1.3.5
+ oscap_list_find@Base 1.3.5
+ oscap_list_free0@Base 1.3.5
+ oscap_list_free@Base 1.3.5
+ oscap_list_get_itemcount@Base 1.3.5
+ oscap_list_new@Base 1.3.5
+ oscap_list_pop@Base 1.3.5
+ oscap_list_prepend@Base 1.3.6+dfsg
+ oscap_list_push@Base 1.3.5
+ oscap_list_remove@Base 1.3.5
+ oscap_path_join@Base 1.3.5
+ oscap_print_depth@Base 1.3.5
+ oscap_ptr_cmp@Base 1.3.5
+ oscap_realpath@Base 1.3.5
+ oscap_rtrim@Base 1.3.5
+ oscap_split@Base 1.3.5
+ oscap_sprintf@Base 1.3.5
+ oscap_strcasecmp@Base 1.3.5
+ oscap_strerror_r@Base 1.3.5
+ oscap_string_append_char@Base 1.3.5
+ oscap_string_append_string@Base 1.3.5
+ oscap_string_bequeath@Base 1.3.5
+ oscap_string_clear@Base 1.3.5
+ oscap_string_empty@Base 1.3.5
+ oscap_string_free@Base 1.3.5
+ oscap_string_get_cstr@Base 1.3.5
+ oscap_string_iterator_free@Base 1.3.5
+ oscap_string_iterator_has_more@Base 1.3.5
+ oscap_string_iterator_next@Base 1.3.5
+ oscap_string_iterator_remove@Base 1.3.5
+ oscap_string_iterator_reset@Base 1.3.5
+ oscap_string_new@Base 1.3.5
+ oscap_string_to_enum@Base 1.3.5
+ oscap_stringlist_add_string@Base 1.3.5
+ oscap_stringlist_clone@Base 1.3.5
+ oscap_stringlist_free@Base 1.3.5
+ oscap_stringlist_get_strings@Base 1.3.5
+ oscap_stringlist_iterator_free@Base 1.3.5
+ oscap_stringlist_iterator_has_more@Base 1.3.5
+ oscap_stringlist_iterator_next@Base 1.3.5
+ oscap_stringlist_iterator_remove@Base 1.3.5
+ oscap_stringlist_iterator_reset@Base 1.3.5
+ oscap_stringlist_new@Base 1.3.5
+ oscap_strncasecmp@Base 1.3.5
+ oscap_strtok_r@Base 1.3.5
+ oscap_strtoupper@Base 1.3.5
+ oscap_trim@Base 1.3.5
+ oscap_vsprintf@Base 1.3.5
+ sce_check_result_add_environment_variable@Base 1.3.5
+ sce_check_result_export@Base 1.3.5
+ sce_check_result_free@Base 1.3.5
+ sce_check_result_get_basename@Base 1.3.5
+ sce_check_result_get_exit_code@Base 1.3.5
+ sce_check_result_get_href@Base 1.3.5
+ sce_check_result_get_stderr@Base 1.3.5
+ sce_check_result_get_stdout@Base 1.3.5
+ sce_check_result_get_xccdf_result@Base 1.3.5
+ sce_check_result_iterator_free@Base 1.3.5
+ sce_check_result_iterator_has_more@Base 1.3.5
+ sce_check_result_iterator_next@Base 1.3.5
+ sce_check_result_iterator_reset@Base 1.3.5
+ sce_check_result_new@Base 1.3.5
+ sce_check_result_reset_environment_variables@Base 1.3.5
+ sce_check_result_set_basename@Base 1.3.5
+ sce_check_result_set_exit_code@Base 1.3.5
+ sce_check_result_set_href@Base 1.3.5
+ sce_check_result_set_stderr@Base 1.3.5
+ sce_check_result_set_stdout@Base 1.3.5
+ sce_check_result_set_xccdf_result@Base 1.3.5
+ sce_engine_eval_rule@Base 1.3.5
+ sce_parameters_allocate_session@Base 1.3.5
+ sce_parameters_free@Base 1.3.5
+ sce_parameters_get_session@Base 1.3.5
+ sce_parameters_get_xccdf_directory@Base 1.3.5
+ sce_parameters_new@Base 1.3.5
+ sce_parameters_set_session@Base 1.3.5
+ sce_parameters_set_xccdf_directory@Base 1.3.5
+ sce_session_add_check_result@Base 1.3.5
+ sce_session_export_to_directory@Base 1.3.5
+ sce_session_free@Base 1.3.5
+ sce_session_get_check_results@Base 1.3.5
+ sce_session_new@Base 1.3.5
+ sce_session_reset@Base 1.3.5
+ xccdf_policy_model_register_engine_sce@Base 1.3.5
diff -pruN 1.2.17-0.1/debian/libopenscap8.dirs 1.3.6+dfsg-2/debian/libopenscap8.dirs
--- 1.2.17-0.1/debian/libopenscap8.dirs	2015-03-25 17:03:46.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap8.dirs	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-usr/lib
-usr/lib/openscap
diff -pruN 1.2.17-0.1/debian/libopenscap8.install 1.3.6+dfsg-2/debian/libopenscap8.install
--- 1.2.17-0.1/debian/libopenscap8.install	2015-03-25 17:03:46.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap8.install	1970-01-01 00:00:00.000000000 +0000
@@ -1,5 +0,0 @@
-usr/bin/oscap
-usr/lib/*/lib*.so.*
-usr/lib/*/openscap/probe_*
-usr/share/man/man8/oscap.8
-usr/share/openscap/*
diff -pruN 1.2.17-0.1/debian/libopenscap8.lintian-overrides 1.3.6+dfsg-2/debian/libopenscap8.lintian-overrides
--- 1.2.17-0.1/debian/libopenscap8.lintian-overrides	2020-04-10 14:35:13.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap8.lintian-overrides	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-# This is a long line
-libopenscap8: manpage-has-errors-from-man usr/share/man/man8/oscap.8.gz 151: warning [p 3, 7.0i]: cannot adjust line
diff -pruN 1.2.17-0.1/debian/libopenscap-dev.dirs 1.3.6+dfsg-2/debian/libopenscap-dev.dirs
--- 1.2.17-0.1/debian/libopenscap-dev.dirs	2015-03-25 17:03:45.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap-dev.dirs	2022-07-30 09:26:47.000000000 +0000
@@ -1,2 +1,2 @@
-usr/lib
 usr/include
+usr/lib
diff -pruN 1.2.17-0.1/debian/libopenscap-dev.docs 1.3.6+dfsg-2/debian/libopenscap-dev.docs
--- 1.2.17-0.1/debian/libopenscap-dev.docs	2016-04-22 15:14:18.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap-dev.docs	2022-07-30 09:26:47.000000000 +0000
@@ -1,4 +1,3 @@
 docs/contribute
 docs/examples
-docs/manual
 docs/umbrello
diff -pruN 1.2.17-0.1/debian/libopenscap-dev.install 1.3.6+dfsg-2/debian/libopenscap-dev.install
--- 1.2.17-0.1/debian/libopenscap-dev.install	2015-03-25 17:03:46.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap-dev.install	2022-07-30 09:26:47.000000000 +0000
@@ -1,3 +1,4 @@
 usr/include/*
-usr/lib/*/lib*.so
+usr/lib/*/libopenscap.so
+usr/lib/*/libopenscap_sce.so
 usr/lib/*/pkgconfig/*
diff -pruN 1.2.17-0.1/debian/libopenscap-dev.links 1.3.6+dfsg-2/debian/libopenscap-dev.links
--- 1.2.17-0.1/debian/libopenscap-dev.links	2015-03-25 17:03:46.000000000 +0000
+++ 1.3.6+dfsg-2/debian/libopenscap-dev.links	1970-01-01 00:00:00.000000000 +0000
@@ -1 +0,0 @@
-usr/share/javascript/jquery/jquery.js usr/share/doc/libopenscap-dev/html/jquery.js
diff -pruN 1.2.17-0.1/debian/missing-sources/bootstrap.js 1.3.6+dfsg-2/debian/missing-sources/bootstrap.js
--- 1.2.17-0.1/debian/missing-sources/bootstrap.js	2019-11-28 12:59:49.000000000 +0000
+++ 1.3.6+dfsg-2/debian/missing-sources/bootstrap.js	1970-01-01 00:00:00.000000000 +0000
@@ -1,4521 +0,0 @@
-/*!
-  * Bootstrap v4.4.1 (https://getbootstrap.com/)
-  * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
-  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
-  */
-(function (global, factory) {
-  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('jquery'), require('popper.js')) :
-  typeof define === 'function' && define.amd ? define(['exports', 'jquery', 'popper.js'], factory) :
-  (global = global || self, factory(global.bootstrap = {}, global.jQuery, global.Popper));
-}(this, (function (exports, $, Popper) { 'use strict';
-
-  $ = $ && $.hasOwnProperty('default') ? $['default'] : $;
-  Popper = Popper && Popper.hasOwnProperty('default') ? Popper['default'] : Popper;
-
-  function _defineProperties(target, props) {
-    for (var i = 0; i < props.length; i++) {
-      var descriptor = props[i];
-      descriptor.enumerable = descriptor.enumerable || false;
-      descriptor.configurable = true;
-      if ("value" in descriptor) descriptor.writable = true;
-      Object.defineProperty(target, descriptor.key, descriptor);
-    }
-  }
-
-  function _createClass(Constructor, protoProps, staticProps) {
-    if (protoProps) _defineProperties(Constructor.prototype, protoProps);
-    if (staticProps) _defineProperties(Constructor, staticProps);
-    return Constructor;
-  }
-
-  function _defineProperty(obj, key, value) {
-    if (key in obj) {
-      Object.defineProperty(obj, key, {
-        value: value,
-        enumerable: true,
-        configurable: true,
-        writable: true
-      });
-    } else {
-      obj[key] = value;
-    }
-
-    return obj;
-  }
-
-  function ownKeys(object, enumerableOnly) {
-    var keys = Object.keys(object);
-
-    if (Object.getOwnPropertySymbols) {
-      var symbols = Object.getOwnPropertySymbols(object);
-      if (enumerableOnly) symbols = symbols.filter(function (sym) {
-        return Object.getOwnPropertyDescriptor(object, sym).enumerable;
-      });
-      keys.push.apply(keys, symbols);
-    }
-
-    return keys;
-  }
-
-  function _objectSpread2(target) {
-    for (var i = 1; i < arguments.length; i++) {
-      var source = arguments[i] != null ? arguments[i] : {};
-
-      if (i % 2) {
-        ownKeys(Object(source), true).forEach(function (key) {
-          _defineProperty(target, key, source[key]);
-        });
-      } else if (Object.getOwnPropertyDescriptors) {
-        Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
-      } else {
-        ownKeys(Object(source)).forEach(function (key) {
-          Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
-        });
-      }
-    }
-
-    return target;
-  }
-
-  function _inheritsLoose(subClass, superClass) {
-    subClass.prototype = Object.create(superClass.prototype);
-    subClass.prototype.constructor = subClass;
-    subClass.__proto__ = superClass;
-  }
-
-  /**
-   * --------------------------------------------------------------------------
-   * Bootstrap (v4.4.1): util.js
-   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
-   * --------------------------------------------------------------------------
-   */
-  /**
-   * ------------------------------------------------------------------------
-   * Private TransitionEnd Helpers
-   * ------------------------------------------------------------------------
-   */
-
-  var TRANSITION_END = 'transitionend';
-  var MAX_UID = 1000000;
-  var MILLISECONDS_MULTIPLIER = 1000; // Shoutout AngusCroll (https://goo.gl/pxwQGp)
-
-  function toType(obj) {
-    return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase();
-  }
-
-  function getSpecialTransitionEndEvent() {
-    return {
-      bindType: TRANSITION_END,
-      delegateType: TRANSITION_END,
-      handle: function handle(event) {
-        if ($(event.target).is(this)) {
-          return event.handleObj.handler.apply(this, arguments); // eslint-disable-line prefer-rest-params
-        }
-
-        return undefined; // eslint-disable-line no-undefined
-      }
-    };
-  }
-
-  function transitionEndEmulator(duration) {
-    var _this = this;
-
-    var called = false;
-    $(this).one(Util.TRANSITION_END, function () {
-      called = true;
-    });
-    setTimeout(function () {
-      if (!called) {
-        Util.triggerTransitionEnd(_this);
-      }
-    }, duration);
-    return this;
-  }
-
-  function setTransitionEndSupport() {
-    $.fn.emulateTransitionEnd = transitionEndEmulator;
-    $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent();
-  }
-  /**
-   * --------------------------------------------------------------------------
-   * Public Util Api
-   * --------------------------------------------------------------------------
-   */
-
-
-  var Util = {
-    TRANSITION_END: 'bsTransitionEnd',
-    getUID: function getUID(prefix) {
-      do {
-        // eslint-disable-next-line no-bitwise
-        prefix += ~~(Math.random() * MAX_UID); // "~~" acts like a faster Math.floor() here
-      } while (document.getElementById(prefix));
-
-      return prefix;
-    },
-    getSelectorFromElement: function getSelectorFromElement(element) {
-      var selector = element.getAttribute('data-target');
-
-      if (!selector || selector === '#') {
-        var hrefAttr = element.getAttribute('href');
-        selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : '';
-      }
-
-      try {
-        return document.querySelector(selector) ? selector : null;
-      } catch (err) {
-        return null;
-      }
-    },
-    getTransitionDurationFromElement: function getTransitionDurationFromElement(element) {
-      if (!element) {
-        return 0;
-      } // Get transition-duration of the element
-
-
-      var transitionDuration = $(element).css('transition-duration');
-      var transitionDelay = $(element).css('transition-delay');
-      var floatTransitionDuration = parseFloat(transitionDuration);
-      var floatTransitionDelay = parseFloat(transitionDelay); // Return 0 if element or transition duration is not found
-
-      if (!floatTransitionDuration && !floatTransitionDelay) {
-        return 0;
-      } // If multiple durations are defined, take the first
-
-
-      transitionDuration = transitionDuration.split(',')[0];
-      transitionDelay = transitionDelay.split(',')[0];
-      return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
-    },
-    reflow: function reflow(element) {
-      return element.offsetHeight;
-    },
-    triggerTransitionEnd: function triggerTransitionEnd(element) {
-      $(element).trigger(TRANSITION_END);
-    },
-    // TODO: Remove in v5
-    supportsTransitionEnd: function supportsTransitionEnd() {
-      return Boolean(TRANSITION_END);
-    },
-    isElement: function isElement(obj) {
-      return (obj[0] || obj).nodeType;
-    },
-    typeCheckConfig: function typeCheckConfig(componentName, config, configTypes) {
-      for (var property in configTypes) {
-        if (Object.prototype.hasOwnProperty.call(configTypes, property)) {
-          var expectedTypes = configTypes[property];
-          var value = config[property];
-          var valueType = value && Util.isElement(value) ? 'element' : toType(value);
-
-          if (!new RegExp(expectedTypes).test(valueType)) {
-            throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\"."));
-          }
-        }
-      }
-    },
-    findShadowRoot: function findShadowRoot(element) {
-      if (!document.documentElement.attachShadow) {
-        return null;
-      } // Can find the shadow root otherwise it'll return the document
-
-
-      if (typeof element.getRootNode === 'function') {
-        var root = element.getRootNode();
-        return root instanceof ShadowRoot ? root : null;
-      }
-
-      if (element instanceof ShadowRoot) {
-        return element;
-      } // when we don't find a shadow root
-
-
-      if (!element.parentNode) {
-        return null;
-      }
-
-      return Util.findShadowRoot(element.parentNode);
-    },
-    jQueryDetection: function jQueryDetection() {
-      if (typeof $ === 'undefined') {
-        throw new TypeError('Bootstrap\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\'s JavaScript.');
-      }
-
-      var version = $.fn.jquery.split(' ')[0].split('.');
-      var minMajor = 1;
-      var ltMajor = 2;
-      var minMinor = 9;
-      var minPatch = 1;
-      var maxMajor = 4;
-
-      if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) {
-        throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0');
-      }
-    }
-  };
-  Util.jQueryDetection();
-  setTransitionEndSupport();
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME = 'alert';
-  var VERSION = '4.4.1';
-  var DATA_KEY = 'bs.alert';
-  var EVENT_KEY = "." + DATA_KEY;
-  var DATA_API_KEY = '.data-api';
-  var JQUERY_NO_CONFLICT = $.fn[NAME];
-  var Selector = {
-    DISMISS: '[data-dismiss="alert"]'
-  };
-  var Event = {
-    CLOSE: "close" + EVENT_KEY,
-    CLOSED: "closed" + EVENT_KEY,
-    CLICK_DATA_API: "click" + EVENT_KEY + DATA_API_KEY
-  };
-  var ClassName = {
-    ALERT: 'alert',
-    FADE: 'fade',
-    SHOW: 'show'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Alert =
-  /*#__PURE__*/
-  function () {
-    function Alert(element) {
-      this._element = element;
-    } // Getters
-
-
-    var _proto = Alert.prototype;
-
-    // Public
-    _proto.close = function close(element) {
-      var rootElement = this._element;
-
-      if (element) {
-        rootElement = this._getRootElement(element);
-      }
-
-      var customEvent = this._triggerCloseEvent(rootElement);
-
-      if (customEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      this._removeElement(rootElement);
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY);
-      this._element = null;
-    } // Private
-    ;
-
-    _proto._getRootElement = function _getRootElement(element) {
-      var selector = Util.getSelectorFromElement(element);
-      var parent = false;
-
-      if (selector) {
-        parent = document.querySelector(selector);
-      }
-
-      if (!parent) {
-        parent = $(element).closest("." + ClassName.ALERT)[0];
-      }
-
-      return parent;
-    };
-
-    _proto._triggerCloseEvent = function _triggerCloseEvent(element) {
-      var closeEvent = $.Event(Event.CLOSE);
-      $(element).trigger(closeEvent);
-      return closeEvent;
-    };
-
-    _proto._removeElement = function _removeElement(element) {
-      var _this = this;
-
-      $(element).removeClass(ClassName.SHOW);
-
-      if (!$(element).hasClass(ClassName.FADE)) {
-        this._destroyElement(element);
-
-        return;
-      }
-
-      var transitionDuration = Util.getTransitionDurationFromElement(element);
-      $(element).one(Util.TRANSITION_END, function (event) {
-        return _this._destroyElement(element, event);
-      }).emulateTransitionEnd(transitionDuration);
-    };
-
-    _proto._destroyElement = function _destroyElement(element) {
-      $(element).detach().trigger(Event.CLOSED).remove();
-    } // Static
-    ;
-
-    Alert._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var $element = $(this);
-        var data = $element.data(DATA_KEY);
-
-        if (!data) {
-          data = new Alert(this);
-          $element.data(DATA_KEY, data);
-        }
-
-        if (config === 'close') {
-          data[config](this);
-        }
-      });
-    };
-
-    Alert._handleDismiss = function _handleDismiss(alertInstance) {
-      return function (event) {
-        if (event) {
-          event.preventDefault();
-        }
-
-        alertInstance.close(this);
-      };
-    };
-
-    _createClass(Alert, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION;
-      }
-    }]);
-
-    return Alert;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event.CLICK_DATA_API, Selector.DISMISS, Alert._handleDismiss(new Alert()));
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME] = Alert._jQueryInterface;
-  $.fn[NAME].Constructor = Alert;
-
-  $.fn[NAME].noConflict = function () {
-    $.fn[NAME] = JQUERY_NO_CONFLICT;
-    return Alert._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$1 = 'button';
-  var VERSION$1 = '4.4.1';
-  var DATA_KEY$1 = 'bs.button';
-  var EVENT_KEY$1 = "." + DATA_KEY$1;
-  var DATA_API_KEY$1 = '.data-api';
-  var JQUERY_NO_CONFLICT$1 = $.fn[NAME$1];
-  var ClassName$1 = {
-    ACTIVE: 'active',
-    BUTTON: 'btn',
-    FOCUS: 'focus'
-  };
-  var Selector$1 = {
-    DATA_TOGGLE_CARROT: '[data-toggle^="button"]',
-    DATA_TOGGLES: '[data-toggle="buttons"]',
-    DATA_TOGGLE: '[data-toggle="button"]',
-    DATA_TOGGLES_BUTTONS: '[data-toggle="buttons"] .btn',
-    INPUT: 'input:not([type="hidden"])',
-    ACTIVE: '.active',
-    BUTTON: '.btn'
-  };
-  var Event$1 = {
-    CLICK_DATA_API: "click" + EVENT_KEY$1 + DATA_API_KEY$1,
-    FOCUS_BLUR_DATA_API: "focus" + EVENT_KEY$1 + DATA_API_KEY$1 + " " + ("blur" + EVENT_KEY$1 + DATA_API_KEY$1),
-    LOAD_DATA_API: "load" + EVENT_KEY$1 + DATA_API_KEY$1
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Button =
-  /*#__PURE__*/
-  function () {
-    function Button(element) {
-      this._element = element;
-    } // Getters
-
-
-    var _proto = Button.prototype;
-
-    // Public
-    _proto.toggle = function toggle() {
-      var triggerChangeEvent = true;
-      var addAriaPressed = true;
-      var rootElement = $(this._element).closest(Selector$1.DATA_TOGGLES)[0];
-
-      if (rootElement) {
-        var input = this._element.querySelector(Selector$1.INPUT);
-
-        if (input) {
-          if (input.type === 'radio') {
-            if (input.checked && this._element.classList.contains(ClassName$1.ACTIVE)) {
-              triggerChangeEvent = false;
-            } else {
-              var activeElement = rootElement.querySelector(Selector$1.ACTIVE);
-
-              if (activeElement) {
-                $(activeElement).removeClass(ClassName$1.ACTIVE);
-              }
-            }
-          } else if (input.type === 'checkbox') {
-            if (this._element.tagName === 'LABEL' && input.checked === this._element.classList.contains(ClassName$1.ACTIVE)) {
-              triggerChangeEvent = false;
-            }
-          } else {
-            // if it's not a radio button or checkbox don't add a pointless/invalid checked property to the input
-            triggerChangeEvent = false;
-          }
-
-          if (triggerChangeEvent) {
-            input.checked = !this._element.classList.contains(ClassName$1.ACTIVE);
-            $(input).trigger('change');
-          }
-
-          input.focus();
-          addAriaPressed = false;
-        }
-      }
-
-      if (!(this._element.hasAttribute('disabled') || this._element.classList.contains('disabled'))) {
-        if (addAriaPressed) {
-          this._element.setAttribute('aria-pressed', !this._element.classList.contains(ClassName$1.ACTIVE));
-        }
-
-        if (triggerChangeEvent) {
-          $(this._element).toggleClass(ClassName$1.ACTIVE);
-        }
-      }
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY$1);
-      this._element = null;
-    } // Static
-    ;
-
-    Button._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$1);
-
-        if (!data) {
-          data = new Button(this);
-          $(this).data(DATA_KEY$1, data);
-        }
-
-        if (config === 'toggle') {
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(Button, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$1;
-      }
-    }]);
-
-    return Button;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$1.CLICK_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) {
-    var button = event.target;
-
-    if (!$(button).hasClass(ClassName$1.BUTTON)) {
-      button = $(button).closest(Selector$1.BUTTON)[0];
-    }
-
-    if (!button || button.hasAttribute('disabled') || button.classList.contains('disabled')) {
-      event.preventDefault(); // work around Firefox bug #1540995
-    } else {
-      var inputBtn = button.querySelector(Selector$1.INPUT);
-
-      if (inputBtn && (inputBtn.hasAttribute('disabled') || inputBtn.classList.contains('disabled'))) {
-        event.preventDefault(); // work around Firefox bug #1540995
-
-        return;
-      }
-
-      Button._jQueryInterface.call($(button), 'toggle');
-    }
-  }).on(Event$1.FOCUS_BLUR_DATA_API, Selector$1.DATA_TOGGLE_CARROT, function (event) {
-    var button = $(event.target).closest(Selector$1.BUTTON)[0];
-    $(button).toggleClass(ClassName$1.FOCUS, /^focus(in)?$/.test(event.type));
-  });
-  $(window).on(Event$1.LOAD_DATA_API, function () {
-    // ensure correct active class is set to match the controls' actual values/states
-    // find all checkboxes/readio buttons inside data-toggle groups
-    var buttons = [].slice.call(document.querySelectorAll(Selector$1.DATA_TOGGLES_BUTTONS));
-
-    for (var i = 0, len = buttons.length; i < len; i++) {
-      var button = buttons[i];
-      var input = button.querySelector(Selector$1.INPUT);
-
-      if (input.checked || input.hasAttribute('checked')) {
-        button.classList.add(ClassName$1.ACTIVE);
-      } else {
-        button.classList.remove(ClassName$1.ACTIVE);
-      }
-    } // find all button toggles
-
-
-    buttons = [].slice.call(document.querySelectorAll(Selector$1.DATA_TOGGLE));
-
-    for (var _i = 0, _len = buttons.length; _i < _len; _i++) {
-      var _button = buttons[_i];
-
-      if (_button.getAttribute('aria-pressed') === 'true') {
-        _button.classList.add(ClassName$1.ACTIVE);
-      } else {
-        _button.classList.remove(ClassName$1.ACTIVE);
-      }
-    }
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$1] = Button._jQueryInterface;
-  $.fn[NAME$1].Constructor = Button;
-
-  $.fn[NAME$1].noConflict = function () {
-    $.fn[NAME$1] = JQUERY_NO_CONFLICT$1;
-    return Button._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$2 = 'carousel';
-  var VERSION$2 = '4.4.1';
-  var DATA_KEY$2 = 'bs.carousel';
-  var EVENT_KEY$2 = "." + DATA_KEY$2;
-  var DATA_API_KEY$2 = '.data-api';
-  var JQUERY_NO_CONFLICT$2 = $.fn[NAME$2];
-  var ARROW_LEFT_KEYCODE = 37; // KeyboardEvent.which value for left arrow key
-
-  var ARROW_RIGHT_KEYCODE = 39; // KeyboardEvent.which value for right arrow key
-
-  var TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch
-
-  var SWIPE_THRESHOLD = 40;
-  var Default = {
-    interval: 5000,
-    keyboard: true,
-    slide: false,
-    pause: 'hover',
-    wrap: true,
-    touch: true
-  };
-  var DefaultType = {
-    interval: '(number|boolean)',
-    keyboard: 'boolean',
-    slide: '(boolean|string)',
-    pause: '(string|boolean)',
-    wrap: 'boolean',
-    touch: 'boolean'
-  };
-  var Direction = {
-    NEXT: 'next',
-    PREV: 'prev',
-    LEFT: 'left',
-    RIGHT: 'right'
-  };
-  var Event$2 = {
-    SLIDE: "slide" + EVENT_KEY$2,
-    SLID: "slid" + EVENT_KEY$2,
-    KEYDOWN: "keydown" + EVENT_KEY$2,
-    MOUSEENTER: "mouseenter" + EVENT_KEY$2,
-    MOUSELEAVE: "mouseleave" + EVENT_KEY$2,
-    TOUCHSTART: "touchstart" + EVENT_KEY$2,
-    TOUCHMOVE: "touchmove" + EVENT_KEY$2,
-    TOUCHEND: "touchend" + EVENT_KEY$2,
-    POINTERDOWN: "pointerdown" + EVENT_KEY$2,
-    POINTERUP: "pointerup" + EVENT_KEY$2,
-    DRAG_START: "dragstart" + EVENT_KEY$2,
-    LOAD_DATA_API: "load" + EVENT_KEY$2 + DATA_API_KEY$2,
-    CLICK_DATA_API: "click" + EVENT_KEY$2 + DATA_API_KEY$2
-  };
-  var ClassName$2 = {
-    CAROUSEL: 'carousel',
-    ACTIVE: 'active',
-    SLIDE: 'slide',
-    RIGHT: 'carousel-item-right',
-    LEFT: 'carousel-item-left',
-    NEXT: 'carousel-item-next',
-    PREV: 'carousel-item-prev',
-    ITEM: 'carousel-item',
-    POINTER_EVENT: 'pointer-event'
-  };
-  var Selector$2 = {
-    ACTIVE: '.active',
-    ACTIVE_ITEM: '.active.carousel-item',
-    ITEM: '.carousel-item',
-    ITEM_IMG: '.carousel-item img',
-    NEXT_PREV: '.carousel-item-next, .carousel-item-prev',
-    INDICATORS: '.carousel-indicators',
-    DATA_SLIDE: '[data-slide], [data-slide-to]',
-    DATA_RIDE: '[data-ride="carousel"]'
-  };
-  var PointerType = {
-    TOUCH: 'touch',
-    PEN: 'pen'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Carousel =
-  /*#__PURE__*/
-  function () {
-    function Carousel(element, config) {
-      this._items = null;
-      this._interval = null;
-      this._activeElement = null;
-      this._isPaused = false;
-      this._isSliding = false;
-      this.touchTimeout = null;
-      this.touchStartX = 0;
-      this.touchDeltaX = 0;
-      this._config = this._getConfig(config);
-      this._element = element;
-      this._indicatorsElement = this._element.querySelector(Selector$2.INDICATORS);
-      this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0;
-      this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent);
-
-      this._addEventListeners();
-    } // Getters
-
-
-    var _proto = Carousel.prototype;
-
-    // Public
-    _proto.next = function next() {
-      if (!this._isSliding) {
-        this._slide(Direction.NEXT);
-      }
-    };
-
-    _proto.nextWhenVisible = function nextWhenVisible() {
-      // Don't call next when the page isn't visible
-      // or the carousel or its parent isn't visible
-      if (!document.hidden && $(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden') {
-        this.next();
-      }
-    };
-
-    _proto.prev = function prev() {
-      if (!this._isSliding) {
-        this._slide(Direction.PREV);
-      }
-    };
-
-    _proto.pause = function pause(event) {
-      if (!event) {
-        this._isPaused = true;
-      }
-
-      if (this._element.querySelector(Selector$2.NEXT_PREV)) {
-        Util.triggerTransitionEnd(this._element);
-        this.cycle(true);
-      }
-
-      clearInterval(this._interval);
-      this._interval = null;
-    };
-
-    _proto.cycle = function cycle(event) {
-      if (!event) {
-        this._isPaused = false;
-      }
-
-      if (this._interval) {
-        clearInterval(this._interval);
-        this._interval = null;
-      }
-
-      if (this._config.interval && !this._isPaused) {
-        this._interval = setInterval((document.visibilityState ? this.nextWhenVisible : this.next).bind(this), this._config.interval);
-      }
-    };
-
-    _proto.to = function to(index) {
-      var _this = this;
-
-      this._activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM);
-
-      var activeIndex = this._getItemIndex(this._activeElement);
-
-      if (index > this._items.length - 1 || index < 0) {
-        return;
-      }
-
-      if (this._isSliding) {
-        $(this._element).one(Event$2.SLID, function () {
-          return _this.to(index);
-        });
-        return;
-      }
-
-      if (activeIndex === index) {
-        this.pause();
-        this.cycle();
-        return;
-      }
-
-      var direction = index > activeIndex ? Direction.NEXT : Direction.PREV;
-
-      this._slide(direction, this._items[index]);
-    };
-
-    _proto.dispose = function dispose() {
-      $(this._element).off(EVENT_KEY$2);
-      $.removeData(this._element, DATA_KEY$2);
-      this._items = null;
-      this._config = null;
-      this._element = null;
-      this._interval = null;
-      this._isPaused = null;
-      this._isSliding = null;
-      this._activeElement = null;
-      this._indicatorsElement = null;
-    } // Private
-    ;
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, Default, {}, config);
-      Util.typeCheckConfig(NAME$2, config, DefaultType);
-      return config;
-    };
-
-    _proto._handleSwipe = function _handleSwipe() {
-      var absDeltax = Math.abs(this.touchDeltaX);
-
-      if (absDeltax <= SWIPE_THRESHOLD) {
-        return;
-      }
-
-      var direction = absDeltax / this.touchDeltaX;
-      this.touchDeltaX = 0; // swipe left
-
-      if (direction > 0) {
-        this.prev();
-      } // swipe right
-
-
-      if (direction < 0) {
-        this.next();
-      }
-    };
-
-    _proto._addEventListeners = function _addEventListeners() {
-      var _this2 = this;
-
-      if (this._config.keyboard) {
-        $(this._element).on(Event$2.KEYDOWN, function (event) {
-          return _this2._keydown(event);
-        });
-      }
-
-      if (this._config.pause === 'hover') {
-        $(this._element).on(Event$2.MOUSEENTER, function (event) {
-          return _this2.pause(event);
-        }).on(Event$2.MOUSELEAVE, function (event) {
-          return _this2.cycle(event);
-        });
-      }
-
-      if (this._config.touch) {
-        this._addTouchEventListeners();
-      }
-    };
-
-    _proto._addTouchEventListeners = function _addTouchEventListeners() {
-      var _this3 = this;
-
-      if (!this._touchSupported) {
-        return;
-      }
-
-      var start = function start(event) {
-        if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {
-          _this3.touchStartX = event.originalEvent.clientX;
-        } else if (!_this3._pointerEvent) {
-          _this3.touchStartX = event.originalEvent.touches[0].clientX;
-        }
-      };
-
-      var move = function move(event) {
-        // ensure swiping with one touch and not pinching
-        if (event.originalEvent.touches && event.originalEvent.touches.length > 1) {
-          _this3.touchDeltaX = 0;
-        } else {
-          _this3.touchDeltaX = event.originalEvent.touches[0].clientX - _this3.touchStartX;
-        }
-      };
-
-      var end = function end(event) {
-        if (_this3._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {
-          _this3.touchDeltaX = event.originalEvent.clientX - _this3.touchStartX;
-        }
-
-        _this3._handleSwipe();
-
-        if (_this3._config.pause === 'hover') {
-          // If it's a touch-enabled device, mouseenter/leave are fired as
-          // part of the mouse compatibility events on first tap - the carousel
-          // would stop cycling until user tapped out of it;
-          // here, we listen for touchend, explicitly pause the carousel
-          // (as if it's the second time we tap on it, mouseenter compat event
-          // is NOT fired) and after a timeout (to allow for mouse compatibility
-          // events to fire) we explicitly restart cycling
-          _this3.pause();
-
-          if (_this3.touchTimeout) {
-            clearTimeout(_this3.touchTimeout);
-          }
-
-          _this3.touchTimeout = setTimeout(function (event) {
-            return _this3.cycle(event);
-          }, TOUCHEVENT_COMPAT_WAIT + _this3._config.interval);
-        }
-      };
-
-      $(this._element.querySelectorAll(Selector$2.ITEM_IMG)).on(Event$2.DRAG_START, function (e) {
-        return e.preventDefault();
-      });
-
-      if (this._pointerEvent) {
-        $(this._element).on(Event$2.POINTERDOWN, function (event) {
-          return start(event);
-        });
-        $(this._element).on(Event$2.POINTERUP, function (event) {
-          return end(event);
-        });
-
-        this._element.classList.add(ClassName$2.POINTER_EVENT);
-      } else {
-        $(this._element).on(Event$2.TOUCHSTART, function (event) {
-          return start(event);
-        });
-        $(this._element).on(Event$2.TOUCHMOVE, function (event) {
-          return move(event);
-        });
-        $(this._element).on(Event$2.TOUCHEND, function (event) {
-          return end(event);
-        });
-      }
-    };
-
-    _proto._keydown = function _keydown(event) {
-      if (/input|textarea/i.test(event.target.tagName)) {
-        return;
-      }
-
-      switch (event.which) {
-        case ARROW_LEFT_KEYCODE:
-          event.preventDefault();
-          this.prev();
-          break;
-
-        case ARROW_RIGHT_KEYCODE:
-          event.preventDefault();
-          this.next();
-          break;
-      }
-    };
-
-    _proto._getItemIndex = function _getItemIndex(element) {
-      this._items = element && element.parentNode ? [].slice.call(element.parentNode.querySelectorAll(Selector$2.ITEM)) : [];
-      return this._items.indexOf(element);
-    };
-
-    _proto._getItemByDirection = function _getItemByDirection(direction, activeElement) {
-      var isNextDirection = direction === Direction.NEXT;
-      var isPrevDirection = direction === Direction.PREV;
-
-      var activeIndex = this._getItemIndex(activeElement);
-
-      var lastItemIndex = this._items.length - 1;
-      var isGoingToWrap = isPrevDirection && activeIndex === 0 || isNextDirection && activeIndex === lastItemIndex;
-
-      if (isGoingToWrap && !this._config.wrap) {
-        return activeElement;
-      }
-
-      var delta = direction === Direction.PREV ? -1 : 1;
-      var itemIndex = (activeIndex + delta) % this._items.length;
-      return itemIndex === -1 ? this._items[this._items.length - 1] : this._items[itemIndex];
-    };
-
-    _proto._triggerSlideEvent = function _triggerSlideEvent(relatedTarget, eventDirectionName) {
-      var targetIndex = this._getItemIndex(relatedTarget);
-
-      var fromIndex = this._getItemIndex(this._element.querySelector(Selector$2.ACTIVE_ITEM));
-
-      var slideEvent = $.Event(Event$2.SLIDE, {
-        relatedTarget: relatedTarget,
-        direction: eventDirectionName,
-        from: fromIndex,
-        to: targetIndex
-      });
-      $(this._element).trigger(slideEvent);
-      return slideEvent;
-    };
-
-    _proto._setActiveIndicatorElement = function _setActiveIndicatorElement(element) {
-      if (this._indicatorsElement) {
-        var indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector$2.ACTIVE));
-        $(indicators).removeClass(ClassName$2.ACTIVE);
-
-        var nextIndicator = this._indicatorsElement.children[this._getItemIndex(element)];
-
-        if (nextIndicator) {
-          $(nextIndicator).addClass(ClassName$2.ACTIVE);
-        }
-      }
-    };
-
-    _proto._slide = function _slide(direction, element) {
-      var _this4 = this;
-
-      var activeElement = this._element.querySelector(Selector$2.ACTIVE_ITEM);
-
-      var activeElementIndex = this._getItemIndex(activeElement);
-
-      var nextElement = element || activeElement && this._getItemByDirection(direction, activeElement);
-
-      var nextElementIndex = this._getItemIndex(nextElement);
-
-      var isCycling = Boolean(this._interval);
-      var directionalClassName;
-      var orderClassName;
-      var eventDirectionName;
-
-      if (direction === Direction.NEXT) {
-        directionalClassName = ClassName$2.LEFT;
-        orderClassName = ClassName$2.NEXT;
-        eventDirectionName = Direction.LEFT;
-      } else {
-        directionalClassName = ClassName$2.RIGHT;
-        orderClassName = ClassName$2.PREV;
-        eventDirectionName = Direction.RIGHT;
-      }
-
-      if (nextElement && $(nextElement).hasClass(ClassName$2.ACTIVE)) {
-        this._isSliding = false;
-        return;
-      }
-
-      var slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName);
-
-      if (slideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      if (!activeElement || !nextElement) {
-        // Some weirdness is happening, so we bail
-        return;
-      }
-
-      this._isSliding = true;
-
-      if (isCycling) {
-        this.pause();
-      }
-
-      this._setActiveIndicatorElement(nextElement);
-
-      var slidEvent = $.Event(Event$2.SLID, {
-        relatedTarget: nextElement,
-        direction: eventDirectionName,
-        from: activeElementIndex,
-        to: nextElementIndex
-      });
-
-      if ($(this._element).hasClass(ClassName$2.SLIDE)) {
-        $(nextElement).addClass(orderClassName);
-        Util.reflow(nextElement);
-        $(activeElement).addClass(directionalClassName);
-        $(nextElement).addClass(directionalClassName);
-        var nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10);
-
-        if (nextElementInterval) {
-          this._config.defaultInterval = this._config.defaultInterval || this._config.interval;
-          this._config.interval = nextElementInterval;
-        } else {
-          this._config.interval = this._config.defaultInterval || this._config.interval;
-        }
-
-        var transitionDuration = Util.getTransitionDurationFromElement(activeElement);
-        $(activeElement).one(Util.TRANSITION_END, function () {
-          $(nextElement).removeClass(directionalClassName + " " + orderClassName).addClass(ClassName$2.ACTIVE);
-          $(activeElement).removeClass(ClassName$2.ACTIVE + " " + orderClassName + " " + directionalClassName);
-          _this4._isSliding = false;
-          setTimeout(function () {
-            return $(_this4._element).trigger(slidEvent);
-          }, 0);
-        }).emulateTransitionEnd(transitionDuration);
-      } else {
-        $(activeElement).removeClass(ClassName$2.ACTIVE);
-        $(nextElement).addClass(ClassName$2.ACTIVE);
-        this._isSliding = false;
-        $(this._element).trigger(slidEvent);
-      }
-
-      if (isCycling) {
-        this.cycle();
-      }
-    } // Static
-    ;
-
-    Carousel._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$2);
-
-        var _config = _objectSpread2({}, Default, {}, $(this).data());
-
-        if (typeof config === 'object') {
-          _config = _objectSpread2({}, _config, {}, config);
-        }
-
-        var action = typeof config === 'string' ? config : _config.slide;
-
-        if (!data) {
-          data = new Carousel(this, _config);
-          $(this).data(DATA_KEY$2, data);
-        }
-
-        if (typeof config === 'number') {
-          data.to(config);
-        } else if (typeof action === 'string') {
-          if (typeof data[action] === 'undefined') {
-            throw new TypeError("No method named \"" + action + "\"");
-          }
-
-          data[action]();
-        } else if (_config.interval && _config.ride) {
-          data.pause();
-          data.cycle();
-        }
-      });
-    };
-
-    Carousel._dataApiClickHandler = function _dataApiClickHandler(event) {
-      var selector = Util.getSelectorFromElement(this);
-
-      if (!selector) {
-        return;
-      }
-
-      var target = $(selector)[0];
-
-      if (!target || !$(target).hasClass(ClassName$2.CAROUSEL)) {
-        return;
-      }
-
-      var config = _objectSpread2({}, $(target).data(), {}, $(this).data());
-
-      var slideIndex = this.getAttribute('data-slide-to');
-
-      if (slideIndex) {
-        config.interval = false;
-      }
-
-      Carousel._jQueryInterface.call($(target), config);
-
-      if (slideIndex) {
-        $(target).data(DATA_KEY$2).to(slideIndex);
-      }
-
-      event.preventDefault();
-    };
-
-    _createClass(Carousel, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$2;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default;
-      }
-    }]);
-
-    return Carousel;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$2.CLICK_DATA_API, Selector$2.DATA_SLIDE, Carousel._dataApiClickHandler);
-  $(window).on(Event$2.LOAD_DATA_API, function () {
-    var carousels = [].slice.call(document.querySelectorAll(Selector$2.DATA_RIDE));
-
-    for (var i = 0, len = carousels.length; i < len; i++) {
-      var $carousel = $(carousels[i]);
-
-      Carousel._jQueryInterface.call($carousel, $carousel.data());
-    }
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$2] = Carousel._jQueryInterface;
-  $.fn[NAME$2].Constructor = Carousel;
-
-  $.fn[NAME$2].noConflict = function () {
-    $.fn[NAME$2] = JQUERY_NO_CONFLICT$2;
-    return Carousel._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$3 = 'collapse';
-  var VERSION$3 = '4.4.1';
-  var DATA_KEY$3 = 'bs.collapse';
-  var EVENT_KEY$3 = "." + DATA_KEY$3;
-  var DATA_API_KEY$3 = '.data-api';
-  var JQUERY_NO_CONFLICT$3 = $.fn[NAME$3];
-  var Default$1 = {
-    toggle: true,
-    parent: ''
-  };
-  var DefaultType$1 = {
-    toggle: 'boolean',
-    parent: '(string|element)'
-  };
-  var Event$3 = {
-    SHOW: "show" + EVENT_KEY$3,
-    SHOWN: "shown" + EVENT_KEY$3,
-    HIDE: "hide" + EVENT_KEY$3,
-    HIDDEN: "hidden" + EVENT_KEY$3,
-    CLICK_DATA_API: "click" + EVENT_KEY$3 + DATA_API_KEY$3
-  };
-  var ClassName$3 = {
-    SHOW: 'show',
-    COLLAPSE: 'collapse',
-    COLLAPSING: 'collapsing',
-    COLLAPSED: 'collapsed'
-  };
-  var Dimension = {
-    WIDTH: 'width',
-    HEIGHT: 'height'
-  };
-  var Selector$3 = {
-    ACTIVES: '.show, .collapsing',
-    DATA_TOGGLE: '[data-toggle="collapse"]'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Collapse =
-  /*#__PURE__*/
-  function () {
-    function Collapse(element, config) {
-      this._isTransitioning = false;
-      this._element = element;
-      this._config = this._getConfig(config);
-      this._triggerArray = [].slice.call(document.querySelectorAll("[data-toggle=\"collapse\"][href=\"#" + element.id + "\"]," + ("[data-toggle=\"collapse\"][data-target=\"#" + element.id + "\"]")));
-      var toggleList = [].slice.call(document.querySelectorAll(Selector$3.DATA_TOGGLE));
-
-      for (var i = 0, len = toggleList.length; i < len; i++) {
-        var elem = toggleList[i];
-        var selector = Util.getSelectorFromElement(elem);
-        var filterElement = [].slice.call(document.querySelectorAll(selector)).filter(function (foundElem) {
-          return foundElem === element;
-        });
-
-        if (selector !== null && filterElement.length > 0) {
-          this._selector = selector;
-
-          this._triggerArray.push(elem);
-        }
-      }
-
-      this._parent = this._config.parent ? this._getParent() : null;
-
-      if (!this._config.parent) {
-        this._addAriaAndCollapsedClass(this._element, this._triggerArray);
-      }
-
-      if (this._config.toggle) {
-        this.toggle();
-      }
-    } // Getters
-
-
-    var _proto = Collapse.prototype;
-
-    // Public
-    _proto.toggle = function toggle() {
-      if ($(this._element).hasClass(ClassName$3.SHOW)) {
-        this.hide();
-      } else {
-        this.show();
-      }
-    };
-
-    _proto.show = function show() {
-      var _this = this;
-
-      if (this._isTransitioning || $(this._element).hasClass(ClassName$3.SHOW)) {
-        return;
-      }
-
-      var actives;
-      var activesData;
-
-      if (this._parent) {
-        actives = [].slice.call(this._parent.querySelectorAll(Selector$3.ACTIVES)).filter(function (elem) {
-          if (typeof _this._config.parent === 'string') {
-            return elem.getAttribute('data-parent') === _this._config.parent;
-          }
-
-          return elem.classList.contains(ClassName$3.COLLAPSE);
-        });
-
-        if (actives.length === 0) {
-          actives = null;
-        }
-      }
-
-      if (actives) {
-        activesData = $(actives).not(this._selector).data(DATA_KEY$3);
-
-        if (activesData && activesData._isTransitioning) {
-          return;
-        }
-      }
-
-      var startEvent = $.Event(Event$3.SHOW);
-      $(this._element).trigger(startEvent);
-
-      if (startEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      if (actives) {
-        Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide');
-
-        if (!activesData) {
-          $(actives).data(DATA_KEY$3, null);
-        }
-      }
-
-      var dimension = this._getDimension();
-
-      $(this._element).removeClass(ClassName$3.COLLAPSE).addClass(ClassName$3.COLLAPSING);
-      this._element.style[dimension] = 0;
-
-      if (this._triggerArray.length) {
-        $(this._triggerArray).removeClass(ClassName$3.COLLAPSED).attr('aria-expanded', true);
-      }
-
-      this.setTransitioning(true);
-
-      var complete = function complete() {
-        $(_this._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).addClass(ClassName$3.SHOW);
-        _this._element.style[dimension] = '';
-
-        _this.setTransitioning(false);
-
-        $(_this._element).trigger(Event$3.SHOWN);
-      };
-
-      var capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
-      var scrollSize = "scroll" + capitalizedDimension;
-      var transitionDuration = Util.getTransitionDurationFromElement(this._element);
-      $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-      this._element.style[dimension] = this._element[scrollSize] + "px";
-    };
-
-    _proto.hide = function hide() {
-      var _this2 = this;
-
-      if (this._isTransitioning || !$(this._element).hasClass(ClassName$3.SHOW)) {
-        return;
-      }
-
-      var startEvent = $.Event(Event$3.HIDE);
-      $(this._element).trigger(startEvent);
-
-      if (startEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      var dimension = this._getDimension();
-
-      this._element.style[dimension] = this._element.getBoundingClientRect()[dimension] + "px";
-      Util.reflow(this._element);
-      $(this._element).addClass(ClassName$3.COLLAPSING).removeClass(ClassName$3.COLLAPSE).removeClass(ClassName$3.SHOW);
-      var triggerArrayLength = this._triggerArray.length;
-
-      if (triggerArrayLength > 0) {
-        for (var i = 0; i < triggerArrayLength; i++) {
-          var trigger = this._triggerArray[i];
-          var selector = Util.getSelectorFromElement(trigger);
-
-          if (selector !== null) {
-            var $elem = $([].slice.call(document.querySelectorAll(selector)));
-
-            if (!$elem.hasClass(ClassName$3.SHOW)) {
-              $(trigger).addClass(ClassName$3.COLLAPSED).attr('aria-expanded', false);
-            }
-          }
-        }
-      }
-
-      this.setTransitioning(true);
-
-      var complete = function complete() {
-        _this2.setTransitioning(false);
-
-        $(_this2._element).removeClass(ClassName$3.COLLAPSING).addClass(ClassName$3.COLLAPSE).trigger(Event$3.HIDDEN);
-      };
-
-      this._element.style[dimension] = '';
-      var transitionDuration = Util.getTransitionDurationFromElement(this._element);
-      $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-    };
-
-    _proto.setTransitioning = function setTransitioning(isTransitioning) {
-      this._isTransitioning = isTransitioning;
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY$3);
-      this._config = null;
-      this._parent = null;
-      this._element = null;
-      this._triggerArray = null;
-      this._isTransitioning = null;
-    } // Private
-    ;
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, Default$1, {}, config);
-      config.toggle = Boolean(config.toggle); // Coerce string values
-
-      Util.typeCheckConfig(NAME$3, config, DefaultType$1);
-      return config;
-    };
-
-    _proto._getDimension = function _getDimension() {
-      var hasWidth = $(this._element).hasClass(Dimension.WIDTH);
-      return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT;
-    };
-
-    _proto._getParent = function _getParent() {
-      var _this3 = this;
-
-      var parent;
-
-      if (Util.isElement(this._config.parent)) {
-        parent = this._config.parent; // It's a jQuery object
-
-        if (typeof this._config.parent.jquery !== 'undefined') {
-          parent = this._config.parent[0];
-        }
-      } else {
-        parent = document.querySelector(this._config.parent);
-      }
-
-      var selector = "[data-toggle=\"collapse\"][data-parent=\"" + this._config.parent + "\"]";
-      var children = [].slice.call(parent.querySelectorAll(selector));
-      $(children).each(function (i, element) {
-        _this3._addAriaAndCollapsedClass(Collapse._getTargetFromElement(element), [element]);
-      });
-      return parent;
-    };
-
-    _proto._addAriaAndCollapsedClass = function _addAriaAndCollapsedClass(element, triggerArray) {
-      var isOpen = $(element).hasClass(ClassName$3.SHOW);
-
-      if (triggerArray.length) {
-        $(triggerArray).toggleClass(ClassName$3.COLLAPSED, !isOpen).attr('aria-expanded', isOpen);
-      }
-    } // Static
-    ;
-
-    Collapse._getTargetFromElement = function _getTargetFromElement(element) {
-      var selector = Util.getSelectorFromElement(element);
-      return selector ? document.querySelector(selector) : null;
-    };
-
-    Collapse._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var $this = $(this);
-        var data = $this.data(DATA_KEY$3);
-
-        var _config = _objectSpread2({}, Default$1, {}, $this.data(), {}, typeof config === 'object' && config ? config : {});
-
-        if (!data && _config.toggle && /show|hide/.test(config)) {
-          _config.toggle = false;
-        }
-
-        if (!data) {
-          data = new Collapse(this, _config);
-          $this.data(DATA_KEY$3, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(Collapse, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$3;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$1;
-      }
-    }]);
-
-    return Collapse;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$3.CLICK_DATA_API, Selector$3.DATA_TOGGLE, function (event) {
-    // preventDefault only for <a> elements (which change the URL) not inside the collapsible element
-    if (event.currentTarget.tagName === 'A') {
-      event.preventDefault();
-    }
-
-    var $trigger = $(this);
-    var selector = Util.getSelectorFromElement(this);
-    var selectors = [].slice.call(document.querySelectorAll(selector));
-    $(selectors).each(function () {
-      var $target = $(this);
-      var data = $target.data(DATA_KEY$3);
-      var config = data ? 'toggle' : $trigger.data();
-
-      Collapse._jQueryInterface.call($target, config);
-    });
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$3] = Collapse._jQueryInterface;
-  $.fn[NAME$3].Constructor = Collapse;
-
-  $.fn[NAME$3].noConflict = function () {
-    $.fn[NAME$3] = JQUERY_NO_CONFLICT$3;
-    return Collapse._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$4 = 'dropdown';
-  var VERSION$4 = '4.4.1';
-  var DATA_KEY$4 = 'bs.dropdown';
-  var EVENT_KEY$4 = "." + DATA_KEY$4;
-  var DATA_API_KEY$4 = '.data-api';
-  var JQUERY_NO_CONFLICT$4 = $.fn[NAME$4];
-  var ESCAPE_KEYCODE = 27; // KeyboardEvent.which value for Escape (Esc) key
-
-  var SPACE_KEYCODE = 32; // KeyboardEvent.which value for space key
-
-  var TAB_KEYCODE = 9; // KeyboardEvent.which value for tab key
-
-  var ARROW_UP_KEYCODE = 38; // KeyboardEvent.which value for up arrow key
-
-  var ARROW_DOWN_KEYCODE = 40; // KeyboardEvent.which value for down arrow key
-
-  var RIGHT_MOUSE_BUTTON_WHICH = 3; // MouseEvent.which value for the right button (assuming a right-handed mouse)
-
-  var REGEXP_KEYDOWN = new RegExp(ARROW_UP_KEYCODE + "|" + ARROW_DOWN_KEYCODE + "|" + ESCAPE_KEYCODE);
-  var Event$4 = {
-    HIDE: "hide" + EVENT_KEY$4,
-    HIDDEN: "hidden" + EVENT_KEY$4,
-    SHOW: "show" + EVENT_KEY$4,
-    SHOWN: "shown" + EVENT_KEY$4,
-    CLICK: "click" + EVENT_KEY$4,
-    CLICK_DATA_API: "click" + EVENT_KEY$4 + DATA_API_KEY$4,
-    KEYDOWN_DATA_API: "keydown" + EVENT_KEY$4 + DATA_API_KEY$4,
-    KEYUP_DATA_API: "keyup" + EVENT_KEY$4 + DATA_API_KEY$4
-  };
-  var ClassName$4 = {
-    DISABLED: 'disabled',
-    SHOW: 'show',
-    DROPUP: 'dropup',
-    DROPRIGHT: 'dropright',
-    DROPLEFT: 'dropleft',
-    MENURIGHT: 'dropdown-menu-right',
-    MENULEFT: 'dropdown-menu-left',
-    POSITION_STATIC: 'position-static'
-  };
-  var Selector$4 = {
-    DATA_TOGGLE: '[data-toggle="dropdown"]',
-    FORM_CHILD: '.dropdown form',
-    MENU: '.dropdown-menu',
-    NAVBAR_NAV: '.navbar-nav',
-    VISIBLE_ITEMS: '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'
-  };
-  var AttachmentMap = {
-    TOP: 'top-start',
-    TOPEND: 'top-end',
-    BOTTOM: 'bottom-start',
-    BOTTOMEND: 'bottom-end',
-    RIGHT: 'right-start',
-    RIGHTEND: 'right-end',
-    LEFT: 'left-start',
-    LEFTEND: 'left-end'
-  };
-  var Default$2 = {
-    offset: 0,
-    flip: true,
-    boundary: 'scrollParent',
-    reference: 'toggle',
-    display: 'dynamic',
-    popperConfig: null
-  };
-  var DefaultType$2 = {
-    offset: '(number|string|function)',
-    flip: 'boolean',
-    boundary: '(string|element)',
-    reference: '(string|element)',
-    display: 'string',
-    popperConfig: '(null|object)'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Dropdown =
-  /*#__PURE__*/
-  function () {
-    function Dropdown(element, config) {
-      this._element = element;
-      this._popper = null;
-      this._config = this._getConfig(config);
-      this._menu = this._getMenuElement();
-      this._inNavbar = this._detectNavbar();
-
-      this._addEventListeners();
-    } // Getters
-
-
-    var _proto = Dropdown.prototype;
-
-    // Public
-    _proto.toggle = function toggle() {
-      if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED)) {
-        return;
-      }
-
-      var isActive = $(this._menu).hasClass(ClassName$4.SHOW);
-
-      Dropdown._clearMenus();
-
-      if (isActive) {
-        return;
-      }
-
-      this.show(true);
-    };
-
-    _proto.show = function show(usePopper) {
-      if (usePopper === void 0) {
-        usePopper = false;
-      }
-
-      if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || $(this._menu).hasClass(ClassName$4.SHOW)) {
-        return;
-      }
-
-      var relatedTarget = {
-        relatedTarget: this._element
-      };
-      var showEvent = $.Event(Event$4.SHOW, relatedTarget);
-
-      var parent = Dropdown._getParentFromElement(this._element);
-
-      $(parent).trigger(showEvent);
-
-      if (showEvent.isDefaultPrevented()) {
-        return;
-      } // Disable totally Popper.js for Dropdown in Navbar
-
-
-      if (!this._inNavbar && usePopper) {
-        /**
-         * Check for Popper dependency
-         * Popper - https://popper.js.org
-         */
-        if (typeof Popper === 'undefined') {
-          throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org/)');
-        }
-
-        var referenceElement = this._element;
-
-        if (this._config.reference === 'parent') {
-          referenceElement = parent;
-        } else if (Util.isElement(this._config.reference)) {
-          referenceElement = this._config.reference; // Check if it's jQuery element
-
-          if (typeof this._config.reference.jquery !== 'undefined') {
-            referenceElement = this._config.reference[0];
-          }
-        } // If boundary is not `scrollParent`, then set position to `static`
-        // to allow the menu to "escape" the scroll parent's boundaries
-        // https://github.com/twbs/bootstrap/issues/24251
-
-
-        if (this._config.boundary !== 'scrollParent') {
-          $(parent).addClass(ClassName$4.POSITION_STATIC);
-        }
-
-        this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig());
-      } // If this is a touch-enabled device we add extra
-      // empty mouseover listeners to the body's immediate children;
-      // only needed because of broken event delegation on iOS
-      // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
-
-
-      if ('ontouchstart' in document.documentElement && $(parent).closest(Selector$4.NAVBAR_NAV).length === 0) {
-        $(document.body).children().on('mouseover', null, $.noop);
-      }
-
-      this._element.focus();
-
-      this._element.setAttribute('aria-expanded', true);
-
-      $(this._menu).toggleClass(ClassName$4.SHOW);
-      $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.SHOWN, relatedTarget));
-    };
-
-    _proto.hide = function hide() {
-      if (this._element.disabled || $(this._element).hasClass(ClassName$4.DISABLED) || !$(this._menu).hasClass(ClassName$4.SHOW)) {
-        return;
-      }
-
-      var relatedTarget = {
-        relatedTarget: this._element
-      };
-      var hideEvent = $.Event(Event$4.HIDE, relatedTarget);
-
-      var parent = Dropdown._getParentFromElement(this._element);
-
-      $(parent).trigger(hideEvent);
-
-      if (hideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      if (this._popper) {
-        this._popper.destroy();
-      }
-
-      $(this._menu).toggleClass(ClassName$4.SHOW);
-      $(parent).toggleClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget));
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY$4);
-      $(this._element).off(EVENT_KEY$4);
-      this._element = null;
-      this._menu = null;
-
-      if (this._popper !== null) {
-        this._popper.destroy();
-
-        this._popper = null;
-      }
-    };
-
-    _proto.update = function update() {
-      this._inNavbar = this._detectNavbar();
-
-      if (this._popper !== null) {
-        this._popper.scheduleUpdate();
-      }
-    } // Private
-    ;
-
-    _proto._addEventListeners = function _addEventListeners() {
-      var _this = this;
-
-      $(this._element).on(Event$4.CLICK, function (event) {
-        event.preventDefault();
-        event.stopPropagation();
-
-        _this.toggle();
-      });
-    };
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, this.constructor.Default, {}, $(this._element).data(), {}, config);
-      Util.typeCheckConfig(NAME$4, config, this.constructor.DefaultType);
-      return config;
-    };
-
-    _proto._getMenuElement = function _getMenuElement() {
-      if (!this._menu) {
-        var parent = Dropdown._getParentFromElement(this._element);
-
-        if (parent) {
-          this._menu = parent.querySelector(Selector$4.MENU);
-        }
-      }
-
-      return this._menu;
-    };
-
-    _proto._getPlacement = function _getPlacement() {
-      var $parentDropdown = $(this._element.parentNode);
-      var placement = AttachmentMap.BOTTOM; // Handle dropup
-
-      if ($parentDropdown.hasClass(ClassName$4.DROPUP)) {
-        placement = AttachmentMap.TOP;
-
-        if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) {
-          placement = AttachmentMap.TOPEND;
-        }
-      } else if ($parentDropdown.hasClass(ClassName$4.DROPRIGHT)) {
-        placement = AttachmentMap.RIGHT;
-      } else if ($parentDropdown.hasClass(ClassName$4.DROPLEFT)) {
-        placement = AttachmentMap.LEFT;
-      } else if ($(this._menu).hasClass(ClassName$4.MENURIGHT)) {
-        placement = AttachmentMap.BOTTOMEND;
-      }
-
-      return placement;
-    };
-
-    _proto._detectNavbar = function _detectNavbar() {
-      return $(this._element).closest('.navbar').length > 0;
-    };
-
-    _proto._getOffset = function _getOffset() {
-      var _this2 = this;
-
-      var offset = {};
-
-      if (typeof this._config.offset === 'function') {
-        offset.fn = function (data) {
-          data.offsets = _objectSpread2({}, data.offsets, {}, _this2._config.offset(data.offsets, _this2._element) || {});
-          return data;
-        };
-      } else {
-        offset.offset = this._config.offset;
-      }
-
-      return offset;
-    };
-
-    _proto._getPopperConfig = function _getPopperConfig() {
-      var popperConfig = {
-        placement: this._getPlacement(),
-        modifiers: {
-          offset: this._getOffset(),
-          flip: {
-            enabled: this._config.flip
-          },
-          preventOverflow: {
-            boundariesElement: this._config.boundary
-          }
-        }
-      }; // Disable Popper.js if we have a static display
-
-      if (this._config.display === 'static') {
-        popperConfig.modifiers.applyStyle = {
-          enabled: false
-        };
-      }
-
-      return _objectSpread2({}, popperConfig, {}, this._config.popperConfig);
-    } // Static
-    ;
-
-    Dropdown._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$4);
-
-        var _config = typeof config === 'object' ? config : null;
-
-        if (!data) {
-          data = new Dropdown(this, _config);
-          $(this).data(DATA_KEY$4, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    Dropdown._clearMenus = function _clearMenus(event) {
-      if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH || event.type === 'keyup' && event.which !== TAB_KEYCODE)) {
-        return;
-      }
-
-      var toggles = [].slice.call(document.querySelectorAll(Selector$4.DATA_TOGGLE));
-
-      for (var i = 0, len = toggles.length; i < len; i++) {
-        var parent = Dropdown._getParentFromElement(toggles[i]);
-
-        var context = $(toggles[i]).data(DATA_KEY$4);
-        var relatedTarget = {
-          relatedTarget: toggles[i]
-        };
-
-        if (event && event.type === 'click') {
-          relatedTarget.clickEvent = event;
-        }
-
-        if (!context) {
-          continue;
-        }
-
-        var dropdownMenu = context._menu;
-
-        if (!$(parent).hasClass(ClassName$4.SHOW)) {
-          continue;
-        }
-
-        if (event && (event.type === 'click' && /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) && $.contains(parent, event.target)) {
-          continue;
-        }
-
-        var hideEvent = $.Event(Event$4.HIDE, relatedTarget);
-        $(parent).trigger(hideEvent);
-
-        if (hideEvent.isDefaultPrevented()) {
-          continue;
-        } // If this is a touch-enabled device we remove the extra
-        // empty mouseover listeners we added for iOS support
-
-
-        if ('ontouchstart' in document.documentElement) {
-          $(document.body).children().off('mouseover', null, $.noop);
-        }
-
-        toggles[i].setAttribute('aria-expanded', 'false');
-
-        if (context._popper) {
-          context._popper.destroy();
-        }
-
-        $(dropdownMenu).removeClass(ClassName$4.SHOW);
-        $(parent).removeClass(ClassName$4.SHOW).trigger($.Event(Event$4.HIDDEN, relatedTarget));
-      }
-    };
-
-    Dropdown._getParentFromElement = function _getParentFromElement(element) {
-      var parent;
-      var selector = Util.getSelectorFromElement(element);
-
-      if (selector) {
-        parent = document.querySelector(selector);
-      }
-
-      return parent || element.parentNode;
-    } // eslint-disable-next-line complexity
-    ;
-
-    Dropdown._dataApiKeydownHandler = function _dataApiKeydownHandler(event) {
-      // If not input/textarea:
-      //  - And not a key in REGEXP_KEYDOWN => not a dropdown command
-      // If input/textarea:
-      //  - If space key => not a dropdown command
-      //  - If key is other than escape
-      //    - If key is not up or down => not a dropdown command
-      //    - If trigger inside the menu => not a dropdown command
-      if (/input|textarea/i.test(event.target.tagName) ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE && (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE || $(event.target).closest(Selector$4.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {
-        return;
-      }
-
-      event.preventDefault();
-      event.stopPropagation();
-
-      if (this.disabled || $(this).hasClass(ClassName$4.DISABLED)) {
-        return;
-      }
-
-      var parent = Dropdown._getParentFromElement(this);
-
-      var isActive = $(parent).hasClass(ClassName$4.SHOW);
-
-      if (!isActive && event.which === ESCAPE_KEYCODE) {
-        return;
-      }
-
-      if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {
-        if (event.which === ESCAPE_KEYCODE) {
-          var toggle = parent.querySelector(Selector$4.DATA_TOGGLE);
-          $(toggle).trigger('focus');
-        }
-
-        $(this).trigger('click');
-        return;
-      }
-
-      var items = [].slice.call(parent.querySelectorAll(Selector$4.VISIBLE_ITEMS)).filter(function (item) {
-        return $(item).is(':visible');
-      });
-
-      if (items.length === 0) {
-        return;
-      }
-
-      var index = items.indexOf(event.target);
-
-      if (event.which === ARROW_UP_KEYCODE && index > 0) {
-        // Up
-        index--;
-      }
-
-      if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) {
-        // Down
-        index++;
-      }
-
-      if (index < 0) {
-        index = 0;
-      }
-
-      items[index].focus();
-    };
-
-    _createClass(Dropdown, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$4;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$2;
-      }
-    }, {
-      key: "DefaultType",
-      get: function get() {
-        return DefaultType$2;
-      }
-    }]);
-
-    return Dropdown;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$4.KEYDOWN_DATA_API, Selector$4.DATA_TOGGLE, Dropdown._dataApiKeydownHandler).on(Event$4.KEYDOWN_DATA_API, Selector$4.MENU, Dropdown._dataApiKeydownHandler).on(Event$4.CLICK_DATA_API + " " + Event$4.KEYUP_DATA_API, Dropdown._clearMenus).on(Event$4.CLICK_DATA_API, Selector$4.DATA_TOGGLE, function (event) {
-    event.preventDefault();
-    event.stopPropagation();
-
-    Dropdown._jQueryInterface.call($(this), 'toggle');
-  }).on(Event$4.CLICK_DATA_API, Selector$4.FORM_CHILD, function (e) {
-    e.stopPropagation();
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$4] = Dropdown._jQueryInterface;
-  $.fn[NAME$4].Constructor = Dropdown;
-
-  $.fn[NAME$4].noConflict = function () {
-    $.fn[NAME$4] = JQUERY_NO_CONFLICT$4;
-    return Dropdown._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$5 = 'modal';
-  var VERSION$5 = '4.4.1';
-  var DATA_KEY$5 = 'bs.modal';
-  var EVENT_KEY$5 = "." + DATA_KEY$5;
-  var DATA_API_KEY$5 = '.data-api';
-  var JQUERY_NO_CONFLICT$5 = $.fn[NAME$5];
-  var ESCAPE_KEYCODE$1 = 27; // KeyboardEvent.which value for Escape (Esc) key
-
-  var Default$3 = {
-    backdrop: true,
-    keyboard: true,
-    focus: true,
-    show: true
-  };
-  var DefaultType$3 = {
-    backdrop: '(boolean|string)',
-    keyboard: 'boolean',
-    focus: 'boolean',
-    show: 'boolean'
-  };
-  var Event$5 = {
-    HIDE: "hide" + EVENT_KEY$5,
-    HIDE_PREVENTED: "hidePrevented" + EVENT_KEY$5,
-    HIDDEN: "hidden" + EVENT_KEY$5,
-    SHOW: "show" + EVENT_KEY$5,
-    SHOWN: "shown" + EVENT_KEY$5,
-    FOCUSIN: "focusin" + EVENT_KEY$5,
-    RESIZE: "resize" + EVENT_KEY$5,
-    CLICK_DISMISS: "click.dismiss" + EVENT_KEY$5,
-    KEYDOWN_DISMISS: "keydown.dismiss" + EVENT_KEY$5,
-    MOUSEUP_DISMISS: "mouseup.dismiss" + EVENT_KEY$5,
-    MOUSEDOWN_DISMISS: "mousedown.dismiss" + EVENT_KEY$5,
-    CLICK_DATA_API: "click" + EVENT_KEY$5 + DATA_API_KEY$5
-  };
-  var ClassName$5 = {
-    SCROLLABLE: 'modal-dialog-scrollable',
-    SCROLLBAR_MEASURER: 'modal-scrollbar-measure',
-    BACKDROP: 'modal-backdrop',
-    OPEN: 'modal-open',
-    FADE: 'fade',
-    SHOW: 'show',
-    STATIC: 'modal-static'
-  };
-  var Selector$5 = {
-    DIALOG: '.modal-dialog',
-    MODAL_BODY: '.modal-body',
-    DATA_TOGGLE: '[data-toggle="modal"]',
-    DATA_DISMISS: '[data-dismiss="modal"]',
-    FIXED_CONTENT: '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',
-    STICKY_CONTENT: '.sticky-top'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Modal =
-  /*#__PURE__*/
-  function () {
-    function Modal(element, config) {
-      this._config = this._getConfig(config);
-      this._element = element;
-      this._dialog = element.querySelector(Selector$5.DIALOG);
-      this._backdrop = null;
-      this._isShown = false;
-      this._isBodyOverflowing = false;
-      this._ignoreBackdropClick = false;
-      this._isTransitioning = false;
-      this._scrollbarWidth = 0;
-    } // Getters
-
-
-    var _proto = Modal.prototype;
-
-    // Public
-    _proto.toggle = function toggle(relatedTarget) {
-      return this._isShown ? this.hide() : this.show(relatedTarget);
-    };
-
-    _proto.show = function show(relatedTarget) {
-      var _this = this;
-
-      if (this._isShown || this._isTransitioning) {
-        return;
-      }
-
-      if ($(this._element).hasClass(ClassName$5.FADE)) {
-        this._isTransitioning = true;
-      }
-
-      var showEvent = $.Event(Event$5.SHOW, {
-        relatedTarget: relatedTarget
-      });
-      $(this._element).trigger(showEvent);
-
-      if (this._isShown || showEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      this._isShown = true;
-
-      this._checkScrollbar();
-
-      this._setScrollbar();
-
-      this._adjustDialog();
-
-      this._setEscapeEvent();
-
-      this._setResizeEvent();
-
-      $(this._element).on(Event$5.CLICK_DISMISS, Selector$5.DATA_DISMISS, function (event) {
-        return _this.hide(event);
-      });
-      $(this._dialog).on(Event$5.MOUSEDOWN_DISMISS, function () {
-        $(_this._element).one(Event$5.MOUSEUP_DISMISS, function (event) {
-          if ($(event.target).is(_this._element)) {
-            _this._ignoreBackdropClick = true;
-          }
-        });
-      });
-
-      this._showBackdrop(function () {
-        return _this._showElement(relatedTarget);
-      });
-    };
-
-    _proto.hide = function hide(event) {
-      var _this2 = this;
-
-      if (event) {
-        event.preventDefault();
-      }
-
-      if (!this._isShown || this._isTransitioning) {
-        return;
-      }
-
-      var hideEvent = $.Event(Event$5.HIDE);
-      $(this._element).trigger(hideEvent);
-
-      if (!this._isShown || hideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      this._isShown = false;
-      var transition = $(this._element).hasClass(ClassName$5.FADE);
-
-      if (transition) {
-        this._isTransitioning = true;
-      }
-
-      this._setEscapeEvent();
-
-      this._setResizeEvent();
-
-      $(document).off(Event$5.FOCUSIN);
-      $(this._element).removeClass(ClassName$5.SHOW);
-      $(this._element).off(Event$5.CLICK_DISMISS);
-      $(this._dialog).off(Event$5.MOUSEDOWN_DISMISS);
-
-      if (transition) {
-        var transitionDuration = Util.getTransitionDurationFromElement(this._element);
-        $(this._element).one(Util.TRANSITION_END, function (event) {
-          return _this2._hideModal(event);
-        }).emulateTransitionEnd(transitionDuration);
-      } else {
-        this._hideModal();
-      }
-    };
-
-    _proto.dispose = function dispose() {
-      [window, this._element, this._dialog].forEach(function (htmlElement) {
-        return $(htmlElement).off(EVENT_KEY$5);
-      });
-      /**
-       * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API`
-       * Do not move `document` in `htmlElements` array
-       * It will remove `Event.CLICK_DATA_API` event that should remain
-       */
-
-      $(document).off(Event$5.FOCUSIN);
-      $.removeData(this._element, DATA_KEY$5);
-      this._config = null;
-      this._element = null;
-      this._dialog = null;
-      this._backdrop = null;
-      this._isShown = null;
-      this._isBodyOverflowing = null;
-      this._ignoreBackdropClick = null;
-      this._isTransitioning = null;
-      this._scrollbarWidth = null;
-    };
-
-    _proto.handleUpdate = function handleUpdate() {
-      this._adjustDialog();
-    } // Private
-    ;
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, Default$3, {}, config);
-      Util.typeCheckConfig(NAME$5, config, DefaultType$3);
-      return config;
-    };
-
-    _proto._triggerBackdropTransition = function _triggerBackdropTransition() {
-      var _this3 = this;
-
-      if (this._config.backdrop === 'static') {
-        var hideEventPrevented = $.Event(Event$5.HIDE_PREVENTED);
-        $(this._element).trigger(hideEventPrevented);
-
-        if (hideEventPrevented.defaultPrevented) {
-          return;
-        }
-
-        this._element.classList.add(ClassName$5.STATIC);
-
-        var modalTransitionDuration = Util.getTransitionDurationFromElement(this._element);
-        $(this._element).one(Util.TRANSITION_END, function () {
-          _this3._element.classList.remove(ClassName$5.STATIC);
-        }).emulateTransitionEnd(modalTransitionDuration);
-
-        this._element.focus();
-      } else {
-        this.hide();
-      }
-    };
-
-    _proto._showElement = function _showElement(relatedTarget) {
-      var _this4 = this;
-
-      var transition = $(this._element).hasClass(ClassName$5.FADE);
-      var modalBody = this._dialog ? this._dialog.querySelector(Selector$5.MODAL_BODY) : null;
-
-      if (!this._element.parentNode || this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
-        // Don't move modal's DOM position
-        document.body.appendChild(this._element);
-      }
-
-      this._element.style.display = 'block';
-
-      this._element.removeAttribute('aria-hidden');
-
-      this._element.setAttribute('aria-modal', true);
-
-      if ($(this._dialog).hasClass(ClassName$5.SCROLLABLE) && modalBody) {
-        modalBody.scrollTop = 0;
-      } else {
-        this._element.scrollTop = 0;
-      }
-
-      if (transition) {
-        Util.reflow(this._element);
-      }
-
-      $(this._element).addClass(ClassName$5.SHOW);
-
-      if (this._config.focus) {
-        this._enforceFocus();
-      }
-
-      var shownEvent = $.Event(Event$5.SHOWN, {
-        relatedTarget: relatedTarget
-      });
-
-      var transitionComplete = function transitionComplete() {
-        if (_this4._config.focus) {
-          _this4._element.focus();
-        }
-
-        _this4._isTransitioning = false;
-        $(_this4._element).trigger(shownEvent);
-      };
-
-      if (transition) {
-        var transitionDuration = Util.getTransitionDurationFromElement(this._dialog);
-        $(this._dialog).one(Util.TRANSITION_END, transitionComplete).emulateTransitionEnd(transitionDuration);
-      } else {
-        transitionComplete();
-      }
-    };
-
-    _proto._enforceFocus = function _enforceFocus() {
-      var _this5 = this;
-
-      $(document).off(Event$5.FOCUSIN) // Guard against infinite focus loop
-      .on(Event$5.FOCUSIN, function (event) {
-        if (document !== event.target && _this5._element !== event.target && $(_this5._element).has(event.target).length === 0) {
-          _this5._element.focus();
-        }
-      });
-    };
-
-    _proto._setEscapeEvent = function _setEscapeEvent() {
-      var _this6 = this;
-
-      if (this._isShown && this._config.keyboard) {
-        $(this._element).on(Event$5.KEYDOWN_DISMISS, function (event) {
-          if (event.which === ESCAPE_KEYCODE$1) {
-            _this6._triggerBackdropTransition();
-          }
-        });
-      } else if (!this._isShown) {
-        $(this._element).off(Event$5.KEYDOWN_DISMISS);
-      }
-    };
-
-    _proto._setResizeEvent = function _setResizeEvent() {
-      var _this7 = this;
-
-      if (this._isShown) {
-        $(window).on(Event$5.RESIZE, function (event) {
-          return _this7.handleUpdate(event);
-        });
-      } else {
-        $(window).off(Event$5.RESIZE);
-      }
-    };
-
-    _proto._hideModal = function _hideModal() {
-      var _this8 = this;
-
-      this._element.style.display = 'none';
-
-      this._element.setAttribute('aria-hidden', true);
-
-      this._element.removeAttribute('aria-modal');
-
-      this._isTransitioning = false;
-
-      this._showBackdrop(function () {
-        $(document.body).removeClass(ClassName$5.OPEN);
-
-        _this8._resetAdjustments();
-
-        _this8._resetScrollbar();
-
-        $(_this8._element).trigger(Event$5.HIDDEN);
-      });
-    };
-
-    _proto._removeBackdrop = function _removeBackdrop() {
-      if (this._backdrop) {
-        $(this._backdrop).remove();
-        this._backdrop = null;
-      }
-    };
-
-    _proto._showBackdrop = function _showBackdrop(callback) {
-      var _this9 = this;
-
-      var animate = $(this._element).hasClass(ClassName$5.FADE) ? ClassName$5.FADE : '';
-
-      if (this._isShown && this._config.backdrop) {
-        this._backdrop = document.createElement('div');
-        this._backdrop.className = ClassName$5.BACKDROP;
-
-        if (animate) {
-          this._backdrop.classList.add(animate);
-        }
-
-        $(this._backdrop).appendTo(document.body);
-        $(this._element).on(Event$5.CLICK_DISMISS, function (event) {
-          if (_this9._ignoreBackdropClick) {
-            _this9._ignoreBackdropClick = false;
-            return;
-          }
-
-          if (event.target !== event.currentTarget) {
-            return;
-          }
-
-          _this9._triggerBackdropTransition();
-        });
-
-        if (animate) {
-          Util.reflow(this._backdrop);
-        }
-
-        $(this._backdrop).addClass(ClassName$5.SHOW);
-
-        if (!callback) {
-          return;
-        }
-
-        if (!animate) {
-          callback();
-          return;
-        }
-
-        var backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop);
-        $(this._backdrop).one(Util.TRANSITION_END, callback).emulateTransitionEnd(backdropTransitionDuration);
-      } else if (!this._isShown && this._backdrop) {
-        $(this._backdrop).removeClass(ClassName$5.SHOW);
-
-        var callbackRemove = function callbackRemove() {
-          _this9._removeBackdrop();
-
-          if (callback) {
-            callback();
-          }
-        };
-
-        if ($(this._element).hasClass(ClassName$5.FADE)) {
-          var _backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop);
-
-          $(this._backdrop).one(Util.TRANSITION_END, callbackRemove).emulateTransitionEnd(_backdropTransitionDuration);
-        } else {
-          callbackRemove();
-        }
-      } else if (callback) {
-        callback();
-      }
-    } // ----------------------------------------------------------------------
-    // the following methods are used to handle overflowing modals
-    // todo (fat): these should probably be refactored out of modal.js
-    // ----------------------------------------------------------------------
-    ;
-
-    _proto._adjustDialog = function _adjustDialog() {
-      var isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;
-
-      if (!this._isBodyOverflowing && isModalOverflowing) {
-        this._element.style.paddingLeft = this._scrollbarWidth + "px";
-      }
-
-      if (this._isBodyOverflowing && !isModalOverflowing) {
-        this._element.style.paddingRight = this._scrollbarWidth + "px";
-      }
-    };
-
-    _proto._resetAdjustments = function _resetAdjustments() {
-      this._element.style.paddingLeft = '';
-      this._element.style.paddingRight = '';
-    };
-
-    _proto._checkScrollbar = function _checkScrollbar() {
-      var rect = document.body.getBoundingClientRect();
-      this._isBodyOverflowing = rect.left + rect.right < window.innerWidth;
-      this._scrollbarWidth = this._getScrollbarWidth();
-    };
-
-    _proto._setScrollbar = function _setScrollbar() {
-      var _this10 = this;
-
-      if (this._isBodyOverflowing) {
-        // Note: DOMNode.style.paddingRight returns the actual value or '' if not set
-        //   while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set
-        var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT));
-        var stickyContent = [].slice.call(document.querySelectorAll(Selector$5.STICKY_CONTENT)); // Adjust fixed content padding
-
-        $(fixedContent).each(function (index, element) {
-          var actualPadding = element.style.paddingRight;
-          var calculatedPadding = $(element).css('padding-right');
-          $(element).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + _this10._scrollbarWidth + "px");
-        }); // Adjust sticky content margin
-
-        $(stickyContent).each(function (index, element) {
-          var actualMargin = element.style.marginRight;
-          var calculatedMargin = $(element).css('margin-right');
-          $(element).data('margin-right', actualMargin).css('margin-right', parseFloat(calculatedMargin) - _this10._scrollbarWidth + "px");
-        }); // Adjust body padding
-
-        var actualPadding = document.body.style.paddingRight;
-        var calculatedPadding = $(document.body).css('padding-right');
-        $(document.body).data('padding-right', actualPadding).css('padding-right', parseFloat(calculatedPadding) + this._scrollbarWidth + "px");
-      }
-
-      $(document.body).addClass(ClassName$5.OPEN);
-    };
-
-    _proto._resetScrollbar = function _resetScrollbar() {
-      // Restore fixed content padding
-      var fixedContent = [].slice.call(document.querySelectorAll(Selector$5.FIXED_CONTENT));
-      $(fixedContent).each(function (index, element) {
-        var padding = $(element).data('padding-right');
-        $(element).removeData('padding-right');
-        element.style.paddingRight = padding ? padding : '';
-      }); // Restore sticky content
-
-      var elements = [].slice.call(document.querySelectorAll("" + Selector$5.STICKY_CONTENT));
-      $(elements).each(function (index, element) {
-        var margin = $(element).data('margin-right');
-
-        if (typeof margin !== 'undefined') {
-          $(element).css('margin-right', margin).removeData('margin-right');
-        }
-      }); // Restore body padding
-
-      var padding = $(document.body).data('padding-right');
-      $(document.body).removeData('padding-right');
-      document.body.style.paddingRight = padding ? padding : '';
-    };
-
-    _proto._getScrollbarWidth = function _getScrollbarWidth() {
-      // thx d.walsh
-      var scrollDiv = document.createElement('div');
-      scrollDiv.className = ClassName$5.SCROLLBAR_MEASURER;
-      document.body.appendChild(scrollDiv);
-      var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth;
-      document.body.removeChild(scrollDiv);
-      return scrollbarWidth;
-    } // Static
-    ;
-
-    Modal._jQueryInterface = function _jQueryInterface(config, relatedTarget) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$5);
-
-        var _config = _objectSpread2({}, Default$3, {}, $(this).data(), {}, typeof config === 'object' && config ? config : {});
-
-        if (!data) {
-          data = new Modal(this, _config);
-          $(this).data(DATA_KEY$5, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config](relatedTarget);
-        } else if (_config.show) {
-          data.show(relatedTarget);
-        }
-      });
-    };
-
-    _createClass(Modal, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$5;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$3;
-      }
-    }]);
-
-    return Modal;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$5.CLICK_DATA_API, Selector$5.DATA_TOGGLE, function (event) {
-    var _this11 = this;
-
-    var target;
-    var selector = Util.getSelectorFromElement(this);
-
-    if (selector) {
-      target = document.querySelector(selector);
-    }
-
-    var config = $(target).data(DATA_KEY$5) ? 'toggle' : _objectSpread2({}, $(target).data(), {}, $(this).data());
-
-    if (this.tagName === 'A' || this.tagName === 'AREA') {
-      event.preventDefault();
-    }
-
-    var $target = $(target).one(Event$5.SHOW, function (showEvent) {
-      if (showEvent.isDefaultPrevented()) {
-        // Only register focus restorer if modal will actually get shown
-        return;
-      }
-
-      $target.one(Event$5.HIDDEN, function () {
-        if ($(_this11).is(':visible')) {
-          _this11.focus();
-        }
-      });
-    });
-
-    Modal._jQueryInterface.call($(target), config, this);
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$5] = Modal._jQueryInterface;
-  $.fn[NAME$5].Constructor = Modal;
-
-  $.fn[NAME$5].noConflict = function () {
-    $.fn[NAME$5] = JQUERY_NO_CONFLICT$5;
-    return Modal._jQueryInterface;
-  };
-
-  /**
-   * --------------------------------------------------------------------------
-   * Bootstrap (v4.4.1): tools/sanitizer.js
-   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
-   * --------------------------------------------------------------------------
-   */
-  var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href'];
-  var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i;
-  var DefaultWhitelist = {
-    // Global attributes allowed on any supplied element below.
-    '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],
-    a: ['target', 'href', 'title', 'rel'],
-    area: [],
-    b: [],
-    br: [],
-    col: [],
-    code: [],
-    div: [],
-    em: [],
-    hr: [],
-    h1: [],
-    h2: [],
-    h3: [],
-    h4: [],
-    h5: [],
-    h6: [],
-    i: [],
-    img: ['src', 'alt', 'title', 'width', 'height'],
-    li: [],
-    ol: [],
-    p: [],
-    pre: [],
-    s: [],
-    small: [],
-    span: [],
-    sub: [],
-    sup: [],
-    strong: [],
-    u: [],
-    ul: []
-  };
-  /**
-   * A pattern that recognizes a commonly useful subset of URLs that are safe.
-   *
-   * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
-   */
-
-  var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi;
-  /**
-   * A pattern that matches safe data URLs. Only matches image, video and audio types.
-   *
-   * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
-   */
-
-  var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;
-
-  function allowedAttribute(attr, allowedAttributeList) {
-    var attrName = attr.nodeName.toLowerCase();
-
-    if (allowedAttributeList.indexOf(attrName) !== -1) {
-      if (uriAttrs.indexOf(attrName) !== -1) {
-        return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN));
-      }
-
-      return true;
-    }
-
-    var regExp = allowedAttributeList.filter(function (attrRegex) {
-      return attrRegex instanceof RegExp;
-    }); // Check if a regular expression validates the attribute.
-
-    for (var i = 0, l = regExp.length; i < l; i++) {
-      if (attrName.match(regExp[i])) {
-        return true;
-      }
-    }
-
-    return false;
-  }
-
-  function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {
-    if (unsafeHtml.length === 0) {
-      return unsafeHtml;
-    }
-
-    if (sanitizeFn && typeof sanitizeFn === 'function') {
-      return sanitizeFn(unsafeHtml);
-    }
-
-    var domParser = new window.DOMParser();
-    var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');
-    var whitelistKeys = Object.keys(whiteList);
-    var elements = [].slice.call(createdDocument.body.querySelectorAll('*'));
-
-    var _loop = function _loop(i, len) {
-      var el = elements[i];
-      var elName = el.nodeName.toLowerCase();
-
-      if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) {
-        el.parentNode.removeChild(el);
-        return "continue";
-      }
-
-      var attributeList = [].slice.call(el.attributes);
-      var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []);
-      attributeList.forEach(function (attr) {
-        if (!allowedAttribute(attr, whitelistedAttributes)) {
-          el.removeAttribute(attr.nodeName);
-        }
-      });
-    };
-
-    for (var i = 0, len = elements.length; i < len; i++) {
-      var _ret = _loop(i);
-
-      if (_ret === "continue") continue;
-    }
-
-    return createdDocument.body.innerHTML;
-  }
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$6 = 'tooltip';
-  var VERSION$6 = '4.4.1';
-  var DATA_KEY$6 = 'bs.tooltip';
-  var EVENT_KEY$6 = "." + DATA_KEY$6;
-  var JQUERY_NO_CONFLICT$6 = $.fn[NAME$6];
-  var CLASS_PREFIX = 'bs-tooltip';
-  var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
-  var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'];
-  var DefaultType$4 = {
-    animation: 'boolean',
-    template: 'string',
-    title: '(string|element|function)',
-    trigger: 'string',
-    delay: '(number|object)',
-    html: 'boolean',
-    selector: '(string|boolean)',
-    placement: '(string|function)',
-    offset: '(number|string|function)',
-    container: '(string|element|boolean)',
-    fallbackPlacement: '(string|array)',
-    boundary: '(string|element)',
-    sanitize: 'boolean',
-    sanitizeFn: '(null|function)',
-    whiteList: 'object',
-    popperConfig: '(null|object)'
-  };
-  var AttachmentMap$1 = {
-    AUTO: 'auto',
-    TOP: 'top',
-    RIGHT: 'right',
-    BOTTOM: 'bottom',
-    LEFT: 'left'
-  };
-  var Default$4 = {
-    animation: true,
-    template: '<div class="tooltip" role="tooltip">' + '<div class="arrow"></div>' + '<div class="tooltip-inner"></div></div>',
-    trigger: 'hover focus',
-    title: '',
-    delay: 0,
-    html: false,
-    selector: false,
-    placement: 'top',
-    offset: 0,
-    container: false,
-    fallbackPlacement: 'flip',
-    boundary: 'scrollParent',
-    sanitize: true,
-    sanitizeFn: null,
-    whiteList: DefaultWhitelist,
-    popperConfig: null
-  };
-  var HoverState = {
-    SHOW: 'show',
-    OUT: 'out'
-  };
-  var Event$6 = {
-    HIDE: "hide" + EVENT_KEY$6,
-    HIDDEN: "hidden" + EVENT_KEY$6,
-    SHOW: "show" + EVENT_KEY$6,
-    SHOWN: "shown" + EVENT_KEY$6,
-    INSERTED: "inserted" + EVENT_KEY$6,
-    CLICK: "click" + EVENT_KEY$6,
-    FOCUSIN: "focusin" + EVENT_KEY$6,
-    FOCUSOUT: "focusout" + EVENT_KEY$6,
-    MOUSEENTER: "mouseenter" + EVENT_KEY$6,
-    MOUSELEAVE: "mouseleave" + EVENT_KEY$6
-  };
-  var ClassName$6 = {
-    FADE: 'fade',
-    SHOW: 'show'
-  };
-  var Selector$6 = {
-    TOOLTIP: '.tooltip',
-    TOOLTIP_INNER: '.tooltip-inner',
-    ARROW: '.arrow'
-  };
-  var Trigger = {
-    HOVER: 'hover',
-    FOCUS: 'focus',
-    CLICK: 'click',
-    MANUAL: 'manual'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Tooltip =
-  /*#__PURE__*/
-  function () {
-    function Tooltip(element, config) {
-      if (typeof Popper === 'undefined') {
-        throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)');
-      } // private
-
-
-      this._isEnabled = true;
-      this._timeout = 0;
-      this._hoverState = '';
-      this._activeTrigger = {};
-      this._popper = null; // Protected
-
-      this.element = element;
-      this.config = this._getConfig(config);
-      this.tip = null;
-
-      this._setListeners();
-    } // Getters
-
-
-    var _proto = Tooltip.prototype;
-
-    // Public
-    _proto.enable = function enable() {
-      this._isEnabled = true;
-    };
-
-    _proto.disable = function disable() {
-      this._isEnabled = false;
-    };
-
-    _proto.toggleEnabled = function toggleEnabled() {
-      this._isEnabled = !this._isEnabled;
-    };
-
-    _proto.toggle = function toggle(event) {
-      if (!this._isEnabled) {
-        return;
-      }
-
-      if (event) {
-        var dataKey = this.constructor.DATA_KEY;
-        var context = $(event.currentTarget).data(dataKey);
-
-        if (!context) {
-          context = new this.constructor(event.currentTarget, this._getDelegateConfig());
-          $(event.currentTarget).data(dataKey, context);
-        }
-
-        context._activeTrigger.click = !context._activeTrigger.click;
-
-        if (context._isWithActiveTrigger()) {
-          context._enter(null, context);
-        } else {
-          context._leave(null, context);
-        }
-      } else {
-        if ($(this.getTipElement()).hasClass(ClassName$6.SHOW)) {
-          this._leave(null, this);
-
-          return;
-        }
-
-        this._enter(null, this);
-      }
-    };
-
-    _proto.dispose = function dispose() {
-      clearTimeout(this._timeout);
-      $.removeData(this.element, this.constructor.DATA_KEY);
-      $(this.element).off(this.constructor.EVENT_KEY);
-      $(this.element).closest('.modal').off('hide.bs.modal', this._hideModalHandler);
-
-      if (this.tip) {
-        $(this.tip).remove();
-      }
-
-      this._isEnabled = null;
-      this._timeout = null;
-      this._hoverState = null;
-      this._activeTrigger = null;
-
-      if (this._popper) {
-        this._popper.destroy();
-      }
-
-      this._popper = null;
-      this.element = null;
-      this.config = null;
-      this.tip = null;
-    };
-
-    _proto.show = function show() {
-      var _this = this;
-
-      if ($(this.element).css('display') === 'none') {
-        throw new Error('Please use show on visible elements');
-      }
-
-      var showEvent = $.Event(this.constructor.Event.SHOW);
-
-      if (this.isWithContent() && this._isEnabled) {
-        $(this.element).trigger(showEvent);
-        var shadowRoot = Util.findShadowRoot(this.element);
-        var isInTheDom = $.contains(shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element);
-
-        if (showEvent.isDefaultPrevented() || !isInTheDom) {
-          return;
-        }
-
-        var tip = this.getTipElement();
-        var tipId = Util.getUID(this.constructor.NAME);
-        tip.setAttribute('id', tipId);
-        this.element.setAttribute('aria-describedby', tipId);
-        this.setContent();
-
-        if (this.config.animation) {
-          $(tip).addClass(ClassName$6.FADE);
-        }
-
-        var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement;
-
-        var attachment = this._getAttachment(placement);
-
-        this.addAttachmentClass(attachment);
-
-        var container = this._getContainer();
-
-        $(tip).data(this.constructor.DATA_KEY, this);
-
-        if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {
-          $(tip).appendTo(container);
-        }
-
-        $(this.element).trigger(this.constructor.Event.INSERTED);
-        this._popper = new Popper(this.element, tip, this._getPopperConfig(attachment));
-        $(tip).addClass(ClassName$6.SHOW); // If this is a touch-enabled device we add extra
-        // empty mouseover listeners to the body's immediate children;
-        // only needed because of broken event delegation on iOS
-        // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
-
-        if ('ontouchstart' in document.documentElement) {
-          $(document.body).children().on('mouseover', null, $.noop);
-        }
-
-        var complete = function complete() {
-          if (_this.config.animation) {
-            _this._fixTransition();
-          }
-
-          var prevHoverState = _this._hoverState;
-          _this._hoverState = null;
-          $(_this.element).trigger(_this.constructor.Event.SHOWN);
-
-          if (prevHoverState === HoverState.OUT) {
-            _this._leave(null, _this);
-          }
-        };
-
-        if ($(this.tip).hasClass(ClassName$6.FADE)) {
-          var transitionDuration = Util.getTransitionDurationFromElement(this.tip);
-          $(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-        } else {
-          complete();
-        }
-      }
-    };
-
-    _proto.hide = function hide(callback) {
-      var _this2 = this;
-
-      var tip = this.getTipElement();
-      var hideEvent = $.Event(this.constructor.Event.HIDE);
-
-      var complete = function complete() {
-        if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) {
-          tip.parentNode.removeChild(tip);
-        }
-
-        _this2._cleanTipClass();
-
-        _this2.element.removeAttribute('aria-describedby');
-
-        $(_this2.element).trigger(_this2.constructor.Event.HIDDEN);
-
-        if (_this2._popper !== null) {
-          _this2._popper.destroy();
-        }
-
-        if (callback) {
-          callback();
-        }
-      };
-
-      $(this.element).trigger(hideEvent);
-
-      if (hideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      $(tip).removeClass(ClassName$6.SHOW); // If this is a touch-enabled device we remove the extra
-      // empty mouseover listeners we added for iOS support
-
-      if ('ontouchstart' in document.documentElement) {
-        $(document.body).children().off('mouseover', null, $.noop);
-      }
-
-      this._activeTrigger[Trigger.CLICK] = false;
-      this._activeTrigger[Trigger.FOCUS] = false;
-      this._activeTrigger[Trigger.HOVER] = false;
-
-      if ($(this.tip).hasClass(ClassName$6.FADE)) {
-        var transitionDuration = Util.getTransitionDurationFromElement(tip);
-        $(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-      } else {
-        complete();
-      }
-
-      this._hoverState = '';
-    };
-
-    _proto.update = function update() {
-      if (this._popper !== null) {
-        this._popper.scheduleUpdate();
-      }
-    } // Protected
-    ;
-
-    _proto.isWithContent = function isWithContent() {
-      return Boolean(this.getTitle());
-    };
-
-    _proto.addAttachmentClass = function addAttachmentClass(attachment) {
-      $(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
-    };
-
-    _proto.getTipElement = function getTipElement() {
-      this.tip = this.tip || $(this.config.template)[0];
-      return this.tip;
-    };
-
-    _proto.setContent = function setContent() {
-      var tip = this.getTipElement();
-      this.setElementContent($(tip.querySelectorAll(Selector$6.TOOLTIP_INNER)), this.getTitle());
-      $(tip).removeClass(ClassName$6.FADE + " " + ClassName$6.SHOW);
-    };
-
-    _proto.setElementContent = function setElementContent($element, content) {
-      if (typeof content === 'object' && (content.nodeType || content.jquery)) {
-        // Content is a DOM node or a jQuery
-        if (this.config.html) {
-          if (!$(content).parent().is($element)) {
-            $element.empty().append(content);
-          }
-        } else {
-          $element.text($(content).text());
-        }
-
-        return;
-      }
-
-      if (this.config.html) {
-        if (this.config.sanitize) {
-          content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn);
-        }
-
-        $element.html(content);
-      } else {
-        $element.text(content);
-      }
-    };
-
-    _proto.getTitle = function getTitle() {
-      var title = this.element.getAttribute('data-original-title');
-
-      if (!title) {
-        title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title;
-      }
-
-      return title;
-    } // Private
-    ;
-
-    _proto._getPopperConfig = function _getPopperConfig(attachment) {
-      var _this3 = this;
-
-      var defaultBsConfig = {
-        placement: attachment,
-        modifiers: {
-          offset: this._getOffset(),
-          flip: {
-            behavior: this.config.fallbackPlacement
-          },
-          arrow: {
-            element: Selector$6.ARROW
-          },
-          preventOverflow: {
-            boundariesElement: this.config.boundary
-          }
-        },
-        onCreate: function onCreate(data) {
-          if (data.originalPlacement !== data.placement) {
-            _this3._handlePopperPlacementChange(data);
-          }
-        },
-        onUpdate: function onUpdate(data) {
-          return _this3._handlePopperPlacementChange(data);
-        }
-      };
-      return _objectSpread2({}, defaultBsConfig, {}, this.config.popperConfig);
-    };
-
-    _proto._getOffset = function _getOffset() {
-      var _this4 = this;
-
-      var offset = {};
-
-      if (typeof this.config.offset === 'function') {
-        offset.fn = function (data) {
-          data.offsets = _objectSpread2({}, data.offsets, {}, _this4.config.offset(data.offsets, _this4.element) || {});
-          return data;
-        };
-      } else {
-        offset.offset = this.config.offset;
-      }
-
-      return offset;
-    };
-
-    _proto._getContainer = function _getContainer() {
-      if (this.config.container === false) {
-        return document.body;
-      }
-
-      if (Util.isElement(this.config.container)) {
-        return $(this.config.container);
-      }
-
-      return $(document).find(this.config.container);
-    };
-
-    _proto._getAttachment = function _getAttachment(placement) {
-      return AttachmentMap$1[placement.toUpperCase()];
-    };
-
-    _proto._setListeners = function _setListeners() {
-      var _this5 = this;
-
-      var triggers = this.config.trigger.split(' ');
-      triggers.forEach(function (trigger) {
-        if (trigger === 'click') {
-          $(_this5.element).on(_this5.constructor.Event.CLICK, _this5.config.selector, function (event) {
-            return _this5.toggle(event);
-          });
-        } else if (trigger !== Trigger.MANUAL) {
-          var eventIn = trigger === Trigger.HOVER ? _this5.constructor.Event.MOUSEENTER : _this5.constructor.Event.FOCUSIN;
-          var eventOut = trigger === Trigger.HOVER ? _this5.constructor.Event.MOUSELEAVE : _this5.constructor.Event.FOCUSOUT;
-          $(_this5.element).on(eventIn, _this5.config.selector, function (event) {
-            return _this5._enter(event);
-          }).on(eventOut, _this5.config.selector, function (event) {
-            return _this5._leave(event);
-          });
-        }
-      });
-
-      this._hideModalHandler = function () {
-        if (_this5.element) {
-          _this5.hide();
-        }
-      };
-
-      $(this.element).closest('.modal').on('hide.bs.modal', this._hideModalHandler);
-
-      if (this.config.selector) {
-        this.config = _objectSpread2({}, this.config, {
-          trigger: 'manual',
-          selector: ''
-        });
-      } else {
-        this._fixTitle();
-      }
-    };
-
-    _proto._fixTitle = function _fixTitle() {
-      var titleType = typeof this.element.getAttribute('data-original-title');
-
-      if (this.element.getAttribute('title') || titleType !== 'string') {
-        this.element.setAttribute('data-original-title', this.element.getAttribute('title') || '');
-        this.element.setAttribute('title', '');
-      }
-    };
-
-    _proto._enter = function _enter(event, context) {
-      var dataKey = this.constructor.DATA_KEY;
-      context = context || $(event.currentTarget).data(dataKey);
-
-      if (!context) {
-        context = new this.constructor(event.currentTarget, this._getDelegateConfig());
-        $(event.currentTarget).data(dataKey, context);
-      }
-
-      if (event) {
-        context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true;
-      }
-
-      if ($(context.getTipElement()).hasClass(ClassName$6.SHOW) || context._hoverState === HoverState.SHOW) {
-        context._hoverState = HoverState.SHOW;
-        return;
-      }
-
-      clearTimeout(context._timeout);
-      context._hoverState = HoverState.SHOW;
-
-      if (!context.config.delay || !context.config.delay.show) {
-        context.show();
-        return;
-      }
-
-      context._timeout = setTimeout(function () {
-        if (context._hoverState === HoverState.SHOW) {
-          context.show();
-        }
-      }, context.config.delay.show);
-    };
-
-    _proto._leave = function _leave(event, context) {
-      var dataKey = this.constructor.DATA_KEY;
-      context = context || $(event.currentTarget).data(dataKey);
-
-      if (!context) {
-        context = new this.constructor(event.currentTarget, this._getDelegateConfig());
-        $(event.currentTarget).data(dataKey, context);
-      }
-
-      if (event) {
-        context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false;
-      }
-
-      if (context._isWithActiveTrigger()) {
-        return;
-      }
-
-      clearTimeout(context._timeout);
-      context._hoverState = HoverState.OUT;
-
-      if (!context.config.delay || !context.config.delay.hide) {
-        context.hide();
-        return;
-      }
-
-      context._timeout = setTimeout(function () {
-        if (context._hoverState === HoverState.OUT) {
-          context.hide();
-        }
-      }, context.config.delay.hide);
-    };
-
-    _proto._isWithActiveTrigger = function _isWithActiveTrigger() {
-      for (var trigger in this._activeTrigger) {
-        if (this._activeTrigger[trigger]) {
-          return true;
-        }
-      }
-
-      return false;
-    };
-
-    _proto._getConfig = function _getConfig(config) {
-      var dataAttributes = $(this.element).data();
-      Object.keys(dataAttributes).forEach(function (dataAttr) {
-        if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {
-          delete dataAttributes[dataAttr];
-        }
-      });
-      config = _objectSpread2({}, this.constructor.Default, {}, dataAttributes, {}, typeof config === 'object' && config ? config : {});
-
-      if (typeof config.delay === 'number') {
-        config.delay = {
-          show: config.delay,
-          hide: config.delay
-        };
-      }
-
-      if (typeof config.title === 'number') {
-        config.title = config.title.toString();
-      }
-
-      if (typeof config.content === 'number') {
-        config.content = config.content.toString();
-      }
-
-      Util.typeCheckConfig(NAME$6, config, this.constructor.DefaultType);
-
-      if (config.sanitize) {
-        config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn);
-      }
-
-      return config;
-    };
-
-    _proto._getDelegateConfig = function _getDelegateConfig() {
-      var config = {};
-
-      if (this.config) {
-        for (var key in this.config) {
-          if (this.constructor.Default[key] !== this.config[key]) {
-            config[key] = this.config[key];
-          }
-        }
-      }
-
-      return config;
-    };
-
-    _proto._cleanTipClass = function _cleanTipClass() {
-      var $tip = $(this.getTipElement());
-      var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);
-
-      if (tabClass !== null && tabClass.length) {
-        $tip.removeClass(tabClass.join(''));
-      }
-    };
-
-    _proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) {
-      var popperInstance = popperData.instance;
-      this.tip = popperInstance.popper;
-
-      this._cleanTipClass();
-
-      this.addAttachmentClass(this._getAttachment(popperData.placement));
-    };
-
-    _proto._fixTransition = function _fixTransition() {
-      var tip = this.getTipElement();
-      var initConfigAnimation = this.config.animation;
-
-      if (tip.getAttribute('x-placement') !== null) {
-        return;
-      }
-
-      $(tip).removeClass(ClassName$6.FADE);
-      this.config.animation = false;
-      this.hide();
-      this.show();
-      this.config.animation = initConfigAnimation;
-    } // Static
-    ;
-
-    Tooltip._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$6);
-
-        var _config = typeof config === 'object' && config;
-
-        if (!data && /dispose|hide/.test(config)) {
-          return;
-        }
-
-        if (!data) {
-          data = new Tooltip(this, _config);
-          $(this).data(DATA_KEY$6, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(Tooltip, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$6;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$4;
-      }
-    }, {
-      key: "NAME",
-      get: function get() {
-        return NAME$6;
-      }
-    }, {
-      key: "DATA_KEY",
-      get: function get() {
-        return DATA_KEY$6;
-      }
-    }, {
-      key: "Event",
-      get: function get() {
-        return Event$6;
-      }
-    }, {
-      key: "EVENT_KEY",
-      get: function get() {
-        return EVENT_KEY$6;
-      }
-    }, {
-      key: "DefaultType",
-      get: function get() {
-        return DefaultType$4;
-      }
-    }]);
-
-    return Tooltip;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-
-  $.fn[NAME$6] = Tooltip._jQueryInterface;
-  $.fn[NAME$6].Constructor = Tooltip;
-
-  $.fn[NAME$6].noConflict = function () {
-    $.fn[NAME$6] = JQUERY_NO_CONFLICT$6;
-    return Tooltip._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$7 = 'popover';
-  var VERSION$7 = '4.4.1';
-  var DATA_KEY$7 = 'bs.popover';
-  var EVENT_KEY$7 = "." + DATA_KEY$7;
-  var JQUERY_NO_CONFLICT$7 = $.fn[NAME$7];
-  var CLASS_PREFIX$1 = 'bs-popover';
-  var BSCLS_PREFIX_REGEX$1 = new RegExp("(^|\\s)" + CLASS_PREFIX$1 + "\\S+", 'g');
-
-  var Default$5 = _objectSpread2({}, Tooltip.Default, {
-    placement: 'right',
-    trigger: 'click',
-    content: '',
-    template: '<div class="popover" role="tooltip">' + '<div class="arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div></div>'
-  });
-
-  var DefaultType$5 = _objectSpread2({}, Tooltip.DefaultType, {
-    content: '(string|element|function)'
-  });
-
-  var ClassName$7 = {
-    FADE: 'fade',
-    SHOW: 'show'
-  };
-  var Selector$7 = {
-    TITLE: '.popover-header',
-    CONTENT: '.popover-body'
-  };
-  var Event$7 = {
-    HIDE: "hide" + EVENT_KEY$7,
-    HIDDEN: "hidden" + EVENT_KEY$7,
-    SHOW: "show" + EVENT_KEY$7,
-    SHOWN: "shown" + EVENT_KEY$7,
-    INSERTED: "inserted" + EVENT_KEY$7,
-    CLICK: "click" + EVENT_KEY$7,
-    FOCUSIN: "focusin" + EVENT_KEY$7,
-    FOCUSOUT: "focusout" + EVENT_KEY$7,
-    MOUSEENTER: "mouseenter" + EVENT_KEY$7,
-    MOUSELEAVE: "mouseleave" + EVENT_KEY$7
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Popover =
-  /*#__PURE__*/
-  function (_Tooltip) {
-    _inheritsLoose(Popover, _Tooltip);
-
-    function Popover() {
-      return _Tooltip.apply(this, arguments) || this;
-    }
-
-    var _proto = Popover.prototype;
-
-    // Overrides
-    _proto.isWithContent = function isWithContent() {
-      return this.getTitle() || this._getContent();
-    };
-
-    _proto.addAttachmentClass = function addAttachmentClass(attachment) {
-      $(this.getTipElement()).addClass(CLASS_PREFIX$1 + "-" + attachment);
-    };
-
-    _proto.getTipElement = function getTipElement() {
-      this.tip = this.tip || $(this.config.template)[0];
-      return this.tip;
-    };
-
-    _proto.setContent = function setContent() {
-      var $tip = $(this.getTipElement()); // We use append for html objects to maintain js events
-
-      this.setElementContent($tip.find(Selector$7.TITLE), this.getTitle());
-
-      var content = this._getContent();
-
-      if (typeof content === 'function') {
-        content = content.call(this.element);
-      }
-
-      this.setElementContent($tip.find(Selector$7.CONTENT), content);
-      $tip.removeClass(ClassName$7.FADE + " " + ClassName$7.SHOW);
-    } // Private
-    ;
-
-    _proto._getContent = function _getContent() {
-      return this.element.getAttribute('data-content') || this.config.content;
-    };
-
-    _proto._cleanTipClass = function _cleanTipClass() {
-      var $tip = $(this.getTipElement());
-      var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX$1);
-
-      if (tabClass !== null && tabClass.length > 0) {
-        $tip.removeClass(tabClass.join(''));
-      }
-    } // Static
-    ;
-
-    Popover._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$7);
-
-        var _config = typeof config === 'object' ? config : null;
-
-        if (!data && /dispose|hide/.test(config)) {
-          return;
-        }
-
-        if (!data) {
-          data = new Popover(this, _config);
-          $(this).data(DATA_KEY$7, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(Popover, null, [{
-      key: "VERSION",
-      // Getters
-      get: function get() {
-        return VERSION$7;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$5;
-      }
-    }, {
-      key: "NAME",
-      get: function get() {
-        return NAME$7;
-      }
-    }, {
-      key: "DATA_KEY",
-      get: function get() {
-        return DATA_KEY$7;
-      }
-    }, {
-      key: "Event",
-      get: function get() {
-        return Event$7;
-      }
-    }, {
-      key: "EVENT_KEY",
-      get: function get() {
-        return EVENT_KEY$7;
-      }
-    }, {
-      key: "DefaultType",
-      get: function get() {
-        return DefaultType$5;
-      }
-    }]);
-
-    return Popover;
-  }(Tooltip);
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-
-  $.fn[NAME$7] = Popover._jQueryInterface;
-  $.fn[NAME$7].Constructor = Popover;
-
-  $.fn[NAME$7].noConflict = function () {
-    $.fn[NAME$7] = JQUERY_NO_CONFLICT$7;
-    return Popover._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$8 = 'scrollspy';
-  var VERSION$8 = '4.4.1';
-  var DATA_KEY$8 = 'bs.scrollspy';
-  var EVENT_KEY$8 = "." + DATA_KEY$8;
-  var DATA_API_KEY$6 = '.data-api';
-  var JQUERY_NO_CONFLICT$8 = $.fn[NAME$8];
-  var Default$6 = {
-    offset: 10,
-    method: 'auto',
-    target: ''
-  };
-  var DefaultType$6 = {
-    offset: 'number',
-    method: 'string',
-    target: '(string|element)'
-  };
-  var Event$8 = {
-    ACTIVATE: "activate" + EVENT_KEY$8,
-    SCROLL: "scroll" + EVENT_KEY$8,
-    LOAD_DATA_API: "load" + EVENT_KEY$8 + DATA_API_KEY$6
-  };
-  var ClassName$8 = {
-    DROPDOWN_ITEM: 'dropdown-item',
-    DROPDOWN_MENU: 'dropdown-menu',
-    ACTIVE: 'active'
-  };
-  var Selector$8 = {
-    DATA_SPY: '[data-spy="scroll"]',
-    ACTIVE: '.active',
-    NAV_LIST_GROUP: '.nav, .list-group',
-    NAV_LINKS: '.nav-link',
-    NAV_ITEMS: '.nav-item',
-    LIST_ITEMS: '.list-group-item',
-    DROPDOWN: '.dropdown',
-    DROPDOWN_ITEMS: '.dropdown-item',
-    DROPDOWN_TOGGLE: '.dropdown-toggle'
-  };
-  var OffsetMethod = {
-    OFFSET: 'offset',
-    POSITION: 'position'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var ScrollSpy =
-  /*#__PURE__*/
-  function () {
-    function ScrollSpy(element, config) {
-      var _this = this;
-
-      this._element = element;
-      this._scrollElement = element.tagName === 'BODY' ? window : element;
-      this._config = this._getConfig(config);
-      this._selector = this._config.target + " " + Selector$8.NAV_LINKS + "," + (this._config.target + " " + Selector$8.LIST_ITEMS + ",") + (this._config.target + " " + Selector$8.DROPDOWN_ITEMS);
-      this._offsets = [];
-      this._targets = [];
-      this._activeTarget = null;
-      this._scrollHeight = 0;
-      $(this._scrollElement).on(Event$8.SCROLL, function (event) {
-        return _this._process(event);
-      });
-      this.refresh();
-
-      this._process();
-    } // Getters
-
-
-    var _proto = ScrollSpy.prototype;
-
-    // Public
-    _proto.refresh = function refresh() {
-      var _this2 = this;
-
-      var autoMethod = this._scrollElement === this._scrollElement.window ? OffsetMethod.OFFSET : OffsetMethod.POSITION;
-      var offsetMethod = this._config.method === 'auto' ? autoMethod : this._config.method;
-      var offsetBase = offsetMethod === OffsetMethod.POSITION ? this._getScrollTop() : 0;
-      this._offsets = [];
-      this._targets = [];
-      this._scrollHeight = this._getScrollHeight();
-      var targets = [].slice.call(document.querySelectorAll(this._selector));
-      targets.map(function (element) {
-        var target;
-        var targetSelector = Util.getSelectorFromElement(element);
-
-        if (targetSelector) {
-          target = document.querySelector(targetSelector);
-        }
-
-        if (target) {
-          var targetBCR = target.getBoundingClientRect();
-
-          if (targetBCR.width || targetBCR.height) {
-            // TODO (fat): remove sketch reliance on jQuery position/offset
-            return [$(target)[offsetMethod]().top + offsetBase, targetSelector];
-          }
-        }
-
-        return null;
-      }).filter(function (item) {
-        return item;
-      }).sort(function (a, b) {
-        return a[0] - b[0];
-      }).forEach(function (item) {
-        _this2._offsets.push(item[0]);
-
-        _this2._targets.push(item[1]);
-      });
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY$8);
-      $(this._scrollElement).off(EVENT_KEY$8);
-      this._element = null;
-      this._scrollElement = null;
-      this._config = null;
-      this._selector = null;
-      this._offsets = null;
-      this._targets = null;
-      this._activeTarget = null;
-      this._scrollHeight = null;
-    } // Private
-    ;
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, Default$6, {}, typeof config === 'object' && config ? config : {});
-
-      if (typeof config.target !== 'string') {
-        var id = $(config.target).attr('id');
-
-        if (!id) {
-          id = Util.getUID(NAME$8);
-          $(config.target).attr('id', id);
-        }
-
-        config.target = "#" + id;
-      }
-
-      Util.typeCheckConfig(NAME$8, config, DefaultType$6);
-      return config;
-    };
-
-    _proto._getScrollTop = function _getScrollTop() {
-      return this._scrollElement === window ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop;
-    };
-
-    _proto._getScrollHeight = function _getScrollHeight() {
-      return this._scrollElement.scrollHeight || Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
-    };
-
-    _proto._getOffsetHeight = function _getOffsetHeight() {
-      return this._scrollElement === window ? window.innerHeight : this._scrollElement.getBoundingClientRect().height;
-    };
-
-    _proto._process = function _process() {
-      var scrollTop = this._getScrollTop() + this._config.offset;
-
-      var scrollHeight = this._getScrollHeight();
-
-      var maxScroll = this._config.offset + scrollHeight - this._getOffsetHeight();
-
-      if (this._scrollHeight !== scrollHeight) {
-        this.refresh();
-      }
-
-      if (scrollTop >= maxScroll) {
-        var target = this._targets[this._targets.length - 1];
-
-        if (this._activeTarget !== target) {
-          this._activate(target);
-        }
-
-        return;
-      }
-
-      if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {
-        this._activeTarget = null;
-
-        this._clear();
-
-        return;
-      }
-
-      var offsetLength = this._offsets.length;
-
-      for (var i = offsetLength; i--;) {
-        var isActiveTarget = this._activeTarget !== this._targets[i] && scrollTop >= this._offsets[i] && (typeof this._offsets[i + 1] === 'undefined' || scrollTop < this._offsets[i + 1]);
-
-        if (isActiveTarget) {
-          this._activate(this._targets[i]);
-        }
-      }
-    };
-
-    _proto._activate = function _activate(target) {
-      this._activeTarget = target;
-
-      this._clear();
-
-      var queries = this._selector.split(',').map(function (selector) {
-        return selector + "[data-target=\"" + target + "\"]," + selector + "[href=\"" + target + "\"]";
-      });
-
-      var $link = $([].slice.call(document.querySelectorAll(queries.join(','))));
-
-      if ($link.hasClass(ClassName$8.DROPDOWN_ITEM)) {
-        $link.closest(Selector$8.DROPDOWN).find(Selector$8.DROPDOWN_TOGGLE).addClass(ClassName$8.ACTIVE);
-        $link.addClass(ClassName$8.ACTIVE);
-      } else {
-        // Set triggered link as active
-        $link.addClass(ClassName$8.ACTIVE); // Set triggered links parents as active
-        // With both <ul> and <nav> markup a parent is the previous sibling of any nav ancestor
-
-        $link.parents(Selector$8.NAV_LIST_GROUP).prev(Selector$8.NAV_LINKS + ", " + Selector$8.LIST_ITEMS).addClass(ClassName$8.ACTIVE); // Handle special case when .nav-link is inside .nav-item
-
-        $link.parents(Selector$8.NAV_LIST_GROUP).prev(Selector$8.NAV_ITEMS).children(Selector$8.NAV_LINKS).addClass(ClassName$8.ACTIVE);
-      }
-
-      $(this._scrollElement).trigger(Event$8.ACTIVATE, {
-        relatedTarget: target
-      });
-    };
-
-    _proto._clear = function _clear() {
-      [].slice.call(document.querySelectorAll(this._selector)).filter(function (node) {
-        return node.classList.contains(ClassName$8.ACTIVE);
-      }).forEach(function (node) {
-        return node.classList.remove(ClassName$8.ACTIVE);
-      });
-    } // Static
-    ;
-
-    ScrollSpy._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var data = $(this).data(DATA_KEY$8);
-
-        var _config = typeof config === 'object' && config;
-
-        if (!data) {
-          data = new ScrollSpy(this, _config);
-          $(this).data(DATA_KEY$8, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(ScrollSpy, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$8;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$6;
-      }
-    }]);
-
-    return ScrollSpy;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(window).on(Event$8.LOAD_DATA_API, function () {
-    var scrollSpys = [].slice.call(document.querySelectorAll(Selector$8.DATA_SPY));
-    var scrollSpysLength = scrollSpys.length;
-
-    for (var i = scrollSpysLength; i--;) {
-      var $spy = $(scrollSpys[i]);
-
-      ScrollSpy._jQueryInterface.call($spy, $spy.data());
-    }
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$8] = ScrollSpy._jQueryInterface;
-  $.fn[NAME$8].Constructor = ScrollSpy;
-
-  $.fn[NAME$8].noConflict = function () {
-    $.fn[NAME$8] = JQUERY_NO_CONFLICT$8;
-    return ScrollSpy._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$9 = 'tab';
-  var VERSION$9 = '4.4.1';
-  var DATA_KEY$9 = 'bs.tab';
-  var EVENT_KEY$9 = "." + DATA_KEY$9;
-  var DATA_API_KEY$7 = '.data-api';
-  var JQUERY_NO_CONFLICT$9 = $.fn[NAME$9];
-  var Event$9 = {
-    HIDE: "hide" + EVENT_KEY$9,
-    HIDDEN: "hidden" + EVENT_KEY$9,
-    SHOW: "show" + EVENT_KEY$9,
-    SHOWN: "shown" + EVENT_KEY$9,
-    CLICK_DATA_API: "click" + EVENT_KEY$9 + DATA_API_KEY$7
-  };
-  var ClassName$9 = {
-    DROPDOWN_MENU: 'dropdown-menu',
-    ACTIVE: 'active',
-    DISABLED: 'disabled',
-    FADE: 'fade',
-    SHOW: 'show'
-  };
-  var Selector$9 = {
-    DROPDOWN: '.dropdown',
-    NAV_LIST_GROUP: '.nav, .list-group',
-    ACTIVE: '.active',
-    ACTIVE_UL: '> li > .active',
-    DATA_TOGGLE: '[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',
-    DROPDOWN_TOGGLE: '.dropdown-toggle',
-    DROPDOWN_ACTIVE_CHILD: '> .dropdown-menu .active'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Tab =
-  /*#__PURE__*/
-  function () {
-    function Tab(element) {
-      this._element = element;
-    } // Getters
-
-
-    var _proto = Tab.prototype;
-
-    // Public
-    _proto.show = function show() {
-      var _this = this;
-
-      if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $(this._element).hasClass(ClassName$9.ACTIVE) || $(this._element).hasClass(ClassName$9.DISABLED)) {
-        return;
-      }
-
-      var target;
-      var previous;
-      var listElement = $(this._element).closest(Selector$9.NAV_LIST_GROUP)[0];
-      var selector = Util.getSelectorFromElement(this._element);
-
-      if (listElement) {
-        var itemSelector = listElement.nodeName === 'UL' || listElement.nodeName === 'OL' ? Selector$9.ACTIVE_UL : Selector$9.ACTIVE;
-        previous = $.makeArray($(listElement).find(itemSelector));
-        previous = previous[previous.length - 1];
-      }
-
-      var hideEvent = $.Event(Event$9.HIDE, {
-        relatedTarget: this._element
-      });
-      var showEvent = $.Event(Event$9.SHOW, {
-        relatedTarget: previous
-      });
-
-      if (previous) {
-        $(previous).trigger(hideEvent);
-      }
-
-      $(this._element).trigger(showEvent);
-
-      if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      if (selector) {
-        target = document.querySelector(selector);
-      }
-
-      this._activate(this._element, listElement);
-
-      var complete = function complete() {
-        var hiddenEvent = $.Event(Event$9.HIDDEN, {
-          relatedTarget: _this._element
-        });
-        var shownEvent = $.Event(Event$9.SHOWN, {
-          relatedTarget: previous
-        });
-        $(previous).trigger(hiddenEvent);
-        $(_this._element).trigger(shownEvent);
-      };
-
-      if (target) {
-        this._activate(target, target.parentNode, complete);
-      } else {
-        complete();
-      }
-    };
-
-    _proto.dispose = function dispose() {
-      $.removeData(this._element, DATA_KEY$9);
-      this._element = null;
-    } // Private
-    ;
-
-    _proto._activate = function _activate(element, container, callback) {
-      var _this2 = this;
-
-      var activeElements = container && (container.nodeName === 'UL' || container.nodeName === 'OL') ? $(container).find(Selector$9.ACTIVE_UL) : $(container).children(Selector$9.ACTIVE);
-      var active = activeElements[0];
-      var isTransitioning = callback && active && $(active).hasClass(ClassName$9.FADE);
-
-      var complete = function complete() {
-        return _this2._transitionComplete(element, active, callback);
-      };
-
-      if (active && isTransitioning) {
-        var transitionDuration = Util.getTransitionDurationFromElement(active);
-        $(active).removeClass(ClassName$9.SHOW).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-      } else {
-        complete();
-      }
-    };
-
-    _proto._transitionComplete = function _transitionComplete(element, active, callback) {
-      if (active) {
-        $(active).removeClass(ClassName$9.ACTIVE);
-        var dropdownChild = $(active.parentNode).find(Selector$9.DROPDOWN_ACTIVE_CHILD)[0];
-
-        if (dropdownChild) {
-          $(dropdownChild).removeClass(ClassName$9.ACTIVE);
-        }
-
-        if (active.getAttribute('role') === 'tab') {
-          active.setAttribute('aria-selected', false);
-        }
-      }
-
-      $(element).addClass(ClassName$9.ACTIVE);
-
-      if (element.getAttribute('role') === 'tab') {
-        element.setAttribute('aria-selected', true);
-      }
-
-      Util.reflow(element);
-
-      if (element.classList.contains(ClassName$9.FADE)) {
-        element.classList.add(ClassName$9.SHOW);
-      }
-
-      if (element.parentNode && $(element.parentNode).hasClass(ClassName$9.DROPDOWN_MENU)) {
-        var dropdownElement = $(element).closest(Selector$9.DROPDOWN)[0];
-
-        if (dropdownElement) {
-          var dropdownToggleList = [].slice.call(dropdownElement.querySelectorAll(Selector$9.DROPDOWN_TOGGLE));
-          $(dropdownToggleList).addClass(ClassName$9.ACTIVE);
-        }
-
-        element.setAttribute('aria-expanded', true);
-      }
-
-      if (callback) {
-        callback();
-      }
-    } // Static
-    ;
-
-    Tab._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var $this = $(this);
-        var data = $this.data(DATA_KEY$9);
-
-        if (!data) {
-          data = new Tab(this);
-          $this.data(DATA_KEY$9, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config]();
-        }
-      });
-    };
-
-    _createClass(Tab, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$9;
-      }
-    }]);
-
-    return Tab;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * Data Api implementation
-   * ------------------------------------------------------------------------
-   */
-
-
-  $(document).on(Event$9.CLICK_DATA_API, Selector$9.DATA_TOGGLE, function (event) {
-    event.preventDefault();
-
-    Tab._jQueryInterface.call($(this), 'show');
-  });
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-  $.fn[NAME$9] = Tab._jQueryInterface;
-  $.fn[NAME$9].Constructor = Tab;
-
-  $.fn[NAME$9].noConflict = function () {
-    $.fn[NAME$9] = JQUERY_NO_CONFLICT$9;
-    return Tab._jQueryInterface;
-  };
-
-  /**
-   * ------------------------------------------------------------------------
-   * Constants
-   * ------------------------------------------------------------------------
-   */
-
-  var NAME$a = 'toast';
-  var VERSION$a = '4.4.1';
-  var DATA_KEY$a = 'bs.toast';
-  var EVENT_KEY$a = "." + DATA_KEY$a;
-  var JQUERY_NO_CONFLICT$a = $.fn[NAME$a];
-  var Event$a = {
-    CLICK_DISMISS: "click.dismiss" + EVENT_KEY$a,
-    HIDE: "hide" + EVENT_KEY$a,
-    HIDDEN: "hidden" + EVENT_KEY$a,
-    SHOW: "show" + EVENT_KEY$a,
-    SHOWN: "shown" + EVENT_KEY$a
-  };
-  var ClassName$a = {
-    FADE: 'fade',
-    HIDE: 'hide',
-    SHOW: 'show',
-    SHOWING: 'showing'
-  };
-  var DefaultType$7 = {
-    animation: 'boolean',
-    autohide: 'boolean',
-    delay: 'number'
-  };
-  var Default$7 = {
-    animation: true,
-    autohide: true,
-    delay: 500
-  };
-  var Selector$a = {
-    DATA_DISMISS: '[data-dismiss="toast"]'
-  };
-  /**
-   * ------------------------------------------------------------------------
-   * Class Definition
-   * ------------------------------------------------------------------------
-   */
-
-  var Toast =
-  /*#__PURE__*/
-  function () {
-    function Toast(element, config) {
-      this._element = element;
-      this._config = this._getConfig(config);
-      this._timeout = null;
-
-      this._setListeners();
-    } // Getters
-
-
-    var _proto = Toast.prototype;
-
-    // Public
-    _proto.show = function show() {
-      var _this = this;
-
-      var showEvent = $.Event(Event$a.SHOW);
-      $(this._element).trigger(showEvent);
-
-      if (showEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      if (this._config.animation) {
-        this._element.classList.add(ClassName$a.FADE);
-      }
-
-      var complete = function complete() {
-        _this._element.classList.remove(ClassName$a.SHOWING);
-
-        _this._element.classList.add(ClassName$a.SHOW);
-
-        $(_this._element).trigger(Event$a.SHOWN);
-
-        if (_this._config.autohide) {
-          _this._timeout = setTimeout(function () {
-            _this.hide();
-          }, _this._config.delay);
-        }
-      };
-
-      this._element.classList.remove(ClassName$a.HIDE);
-
-      Util.reflow(this._element);
-
-      this._element.classList.add(ClassName$a.SHOWING);
-
-      if (this._config.animation) {
-        var transitionDuration = Util.getTransitionDurationFromElement(this._element);
-        $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-      } else {
-        complete();
-      }
-    };
-
-    _proto.hide = function hide() {
-      if (!this._element.classList.contains(ClassName$a.SHOW)) {
-        return;
-      }
-
-      var hideEvent = $.Event(Event$a.HIDE);
-      $(this._element).trigger(hideEvent);
-
-      if (hideEvent.isDefaultPrevented()) {
-        return;
-      }
-
-      this._close();
-    };
-
-    _proto.dispose = function dispose() {
-      clearTimeout(this._timeout);
-      this._timeout = null;
-
-      if (this._element.classList.contains(ClassName$a.SHOW)) {
-        this._element.classList.remove(ClassName$a.SHOW);
-      }
-
-      $(this._element).off(Event$a.CLICK_DISMISS);
-      $.removeData(this._element, DATA_KEY$a);
-      this._element = null;
-      this._config = null;
-    } // Private
-    ;
-
-    _proto._getConfig = function _getConfig(config) {
-      config = _objectSpread2({}, Default$7, {}, $(this._element).data(), {}, typeof config === 'object' && config ? config : {});
-      Util.typeCheckConfig(NAME$a, config, this.constructor.DefaultType);
-      return config;
-    };
-
-    _proto._setListeners = function _setListeners() {
-      var _this2 = this;
-
-      $(this._element).on(Event$a.CLICK_DISMISS, Selector$a.DATA_DISMISS, function () {
-        return _this2.hide();
-      });
-    };
-
-    _proto._close = function _close() {
-      var _this3 = this;
-
-      var complete = function complete() {
-        _this3._element.classList.add(ClassName$a.HIDE);
-
-        $(_this3._element).trigger(Event$a.HIDDEN);
-      };
-
-      this._element.classList.remove(ClassName$a.SHOW);
-
-      if (this._config.animation) {
-        var transitionDuration = Util.getTransitionDurationFromElement(this._element);
-        $(this._element).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
-      } else {
-        complete();
-      }
-    } // Static
-    ;
-
-    Toast._jQueryInterface = function _jQueryInterface(config) {
-      return this.each(function () {
-        var $element = $(this);
-        var data = $element.data(DATA_KEY$a);
-
-        var _config = typeof config === 'object' && config;
-
-        if (!data) {
-          data = new Toast(this, _config);
-          $element.data(DATA_KEY$a, data);
-        }
-
-        if (typeof config === 'string') {
-          if (typeof data[config] === 'undefined') {
-            throw new TypeError("No method named \"" + config + "\"");
-          }
-
-          data[config](this);
-        }
-      });
-    };
-
-    _createClass(Toast, null, [{
-      key: "VERSION",
-      get: function get() {
-        return VERSION$a;
-      }
-    }, {
-      key: "DefaultType",
-      get: function get() {
-        return DefaultType$7;
-      }
-    }, {
-      key: "Default",
-      get: function get() {
-        return Default$7;
-      }
-    }]);
-
-    return Toast;
-  }();
-  /**
-   * ------------------------------------------------------------------------
-   * jQuery
-   * ------------------------------------------------------------------------
-   */
-
-
-  $.fn[NAME$a] = Toast._jQueryInterface;
-  $.fn[NAME$a].Constructor = Toast;
-
-  $.fn[NAME$a].noConflict = function () {
-    $.fn[NAME$a] = JQUERY_NO_CONFLICT$a;
-    return Toast._jQueryInterface;
-  };
-
-  exports.Alert = Alert;
-  exports.Button = Button;
-  exports.Carousel = Carousel;
-  exports.Collapse = Collapse;
-  exports.Dropdown = Dropdown;
-  exports.Modal = Modal;
-  exports.Popover = Popover;
-  exports.Scrollspy = ScrollSpy;
-  exports.Tab = Tab;
-  exports.Toast = Toast;
-  exports.Tooltip = Tooltip;
-  exports.Util = Util;
-
-  Object.defineProperty(exports, '__esModule', { value: true });
-
-})));
-//# sourceMappingURL=bootstrap.js.map
diff -pruN 1.2.17-0.1/debian/missing-sources/jquery.js 1.3.6+dfsg-2/debian/missing-sources/jquery.js
--- 1.2.17-0.1/debian/missing-sources/jquery.js	2020-04-10 14:55:49.000000000 +0000
+++ 1.3.6+dfsg-2/debian/missing-sources/jquery.js	1970-01-01 00:00:00.000000000 +0000
@@ -1,10598 +0,0 @@
-/*!
- * jQuery JavaScript Library v3.4.1
- * https://jquery.com/
- *
- * Includes Sizzle.js
- * https://sizzlejs.com/
- *
- * Copyright JS Foundation and other contributors
- * Released under the MIT license
- * https://jquery.org/license
- *
- * Date: 2019-05-01T21:04Z
- */
-( function( global, factory ) {
-
-	"use strict";
-
-	if ( typeof module === "object" && typeof module.exports === "object" ) {
-
-		// For CommonJS and CommonJS-like environments where a proper `window`
-		// is present, execute the factory and get jQuery.
-		// For environments that do not have a `window` with a `document`
-		// (such as Node.js), expose a factory as module.exports.
-		// This accentuates the need for the creation of a real `window`.
-		// e.g. var jQuery = require("jquery")(window);
-		// See ticket #14549 for more info.
-		module.exports = global.document ?
-			factory( global, true ) :
-			function( w ) {
-				if ( !w.document ) {
-					throw new Error( "jQuery requires a window with a document" );
-				}
-				return factory( w );
-			};
-	} else {
-		factory( global );
-	}
-
-// Pass this if window is not defined yet
-} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
-
-// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
-// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
-// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
-// enough that all such attempts are guarded in a try block.
-"use strict";
-
-var arr = [];
-
-var document = window.document;
-
-var getProto = Object.getPrototypeOf;
-
-var slice = arr.slice;
-
-var concat = arr.concat;
-
-var push = arr.push;
-
-var indexOf = arr.indexOf;
-
-var class2type = {};
-
-var toString = class2type.toString;
-
-var hasOwn = class2type.hasOwnProperty;
-
-var fnToString = hasOwn.toString;
-
-var ObjectFunctionString = fnToString.call( Object );
-
-var support = {};
-
-var isFunction = function isFunction( obj ) {
-
-      // Support: Chrome <=57, Firefox <=52
-      // In some browsers, typeof returns "function" for HTML <object> elements
-      // (i.e., `typeof document.createElement( "object" ) === "function"`).
-      // We don't want to classify *any* DOM node as a function.
-      return typeof obj === "function" && typeof obj.nodeType !== "number";
-  };
-
-
-var isWindow = function isWindow( obj ) {
-		return obj != null && obj === obj.window;
-	};
-
-
-
-
-	var preservedScriptAttributes = {
-		type: true,
-		src: true,
-		nonce: true,
-		noModule: true
-	};
-
-	function DOMEval( code, node, doc ) {
-		doc = doc || document;
-
-		var i, val,
-			script = doc.createElement( "script" );
-
-		script.text = code;
-		if ( node ) {
-			for ( i in preservedScriptAttributes ) {
-
-				// Support: Firefox 64+, Edge 18+
-				// Some browsers don't support the "nonce" property on scripts.
-				// On the other hand, just using `getAttribute` is not enough as
-				// the `nonce` attribute is reset to an empty string whenever it
-				// becomes browsing-context connected.
-				// See https://github.com/whatwg/html/issues/2369
-				// See https://html.spec.whatwg.org/#nonce-attributes
-				// The `node.getAttribute` check was added for the sake of
-				// `jQuery.globalEval` so that it can fake a nonce-containing node
-				// via an object.
-				val = node[ i ] || node.getAttribute && node.getAttribute( i );
-				if ( val ) {
-					script.setAttribute( i, val );
-				}
-			}
-		}
-		doc.head.appendChild( script ).parentNode.removeChild( script );
-	}
-
-
-function toType( obj ) {
-	if ( obj == null ) {
-		return obj + "";
-	}
-
-	// Support: Android <=2.3 only (functionish RegExp)
-	return typeof obj === "object" || typeof obj === "function" ?
-		class2type[ toString.call( obj ) ] || "object" :
-		typeof obj;
-}
-/* global Symbol */
-// Defining this global in .eslintrc.json would create a danger of using the global
-// unguarded in another place, it seems safer to define global only for this module
-
-
-
-var
-	version = "3.4.1",
-
-	// Define a local copy of jQuery
-	jQuery = function( selector, context ) {
-
-		// The jQuery object is actually just the init constructor 'enhanced'
-		// Need init if jQuery is called (just allow error to be thrown if not included)
-		return new jQuery.fn.init( selector, context );
-	},
-
-	// Support: Android <=4.0 only
-	// Make sure we trim BOM and NBSP
-	rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
-
-jQuery.fn = jQuery.prototype = {
-
-	// The current version of jQuery being used
-	jquery: version,
-
-	constructor: jQuery,
-
-	// The default length of a jQuery object is 0
-	length: 0,
-
-	toArray: function() {
-		return slice.call( this );
-	},
-
-	// Get the Nth element in the matched element set OR
-	// Get the whole matched element set as a clean array
-	get: function( num ) {
-
-		// Return all the elements in a clean array
-		if ( num == null ) {
-			return slice.call( this );
-		}
-
-		// Return just the one element from the set
-		return num < 0 ? this[ num + this.length ] : this[ num ];
-	},
-
-	// Take an array of elements and push it onto the stack
-	// (returning the new matched element set)
-	pushStack: function( elems ) {
-
-		// Build a new jQuery matched element set
-		var ret = jQuery.merge( this.constructor(), elems );
-
-		// Add the old object onto the stack (as a reference)
-		ret.prevObject = this;
-
-		// Return the newly-formed element set
-		return ret;
-	},
-
-	// Execute a callback for every element in the matched set.
-	each: function( callback ) {
-		return jQuery.each( this, callback );
-	},
-
-	map: function( callback ) {
-		return this.pushStack( jQuery.map( this, function( elem, i ) {
-			return callback.call( elem, i, elem );
-		} ) );
-	},
-
-	slice: function() {
-		return this.pushStack( slice.apply( this, arguments ) );
-	},
-
-	first: function() {
-		return this.eq( 0 );
-	},
-
-	last: function() {
-		return this.eq( -1 );
-	},
-
-	eq: function( i ) {
-		var len = this.length,
-			j = +i + ( i < 0 ? len : 0 );
-		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
-	},
-
-	end: function() {
-		return this.prevObject || this.constructor();
-	},
-
-	// For internal use only.
-	// Behaves like an Array's method, not like a jQuery method.
-	push: push,
-	sort: arr.sort,
-	splice: arr.splice
-};
-
-jQuery.extend = jQuery.fn.extend = function() {
-	var options, name, src, copy, copyIsArray, clone,
-		target = arguments[ 0 ] || {},
-		i = 1,
-		length = arguments.length,
-		deep = false;
-
-	// Handle a deep copy situation
-	if ( typeof target === "boolean" ) {
-		deep = target;
-
-		// Skip the boolean and the target
-		target = arguments[ i ] || {};
-		i++;
-	}
-
-	// Handle case when target is a string or something (possible in deep copy)
-	if ( typeof target !== "object" && !isFunction( target ) ) {
-		target = {};
-	}
-
-	// Extend jQuery itself if only one argument is passed
-	if ( i === length ) {
-		target = this;
-		i--;
-	}
-
-	for ( ; i < length; i++ ) {
-
-		// Only deal with non-null/undefined values
-		if ( ( options = arguments[ i ] ) != null ) {
-
-			// Extend the base object
-			for ( name in options ) {
-				copy = options[ name ];
-
-				// Prevent Object.prototype pollution
-				// Prevent never-ending loop
-				if ( name === "__proto__" || target === copy ) {
-					continue;
-				}
-
-				// Recurse if we're merging plain objects or arrays
-				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
-					( copyIsArray = Array.isArray( copy ) ) ) ) {
-					src = target[ name ];
-
-					// Ensure proper type for the source value
-					if ( copyIsArray && !Array.isArray( src ) ) {
-						clone = [];
-					} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
-						clone = {};
-					} else {
-						clone = src;
-					}
-					copyIsArray = false;
-
-					// Never move original objects, clone them
-					target[ name ] = jQuery.extend( deep, clone, copy );
-
-				// Don't bring in undefined values
-				} else if ( copy !== undefined ) {
-					target[ name ] = copy;
-				}
-			}
-		}
-	}
-
-	// Return the modified object
-	return target;
-};
-
-jQuery.extend( {
-
-	// Unique for each copy of jQuery on the page
-	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
-
-	// Assume jQuery is ready without the ready module
-	isReady: true,
-
-	error: function( msg ) {
-		throw new Error( msg );
-	},
-
-	noop: function() {},
-
-	isPlainObject: function( obj ) {
-		var proto, Ctor;
-
-		// Detect obvious negatives
-		// Use toString instead of jQuery.type to catch host objects
-		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
-			return false;
-		}
-
-		proto = getProto( obj );
-
-		// Objects with no prototype (e.g., `Object.create( null )`) are plain
-		if ( !proto ) {
-			return true;
-		}
-
-		// Objects with prototype are plain iff they were constructed by a global Object function
-		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
-		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
-	},
-
-	isEmptyObject: function( obj ) {
-		var name;
-
-		for ( name in obj ) {
-			return false;
-		}
-		return true;
-	},
-
-	// Evaluates a script in a global context
-	globalEval: function( code, options ) {
-		DOMEval( code, { nonce: options && options.nonce } );
-	},
-
-	each: function( obj, callback ) {
-		var length, i = 0;
-
-		if ( isArrayLike( obj ) ) {
-			length = obj.length;
-			for ( ; i < length; i++ ) {
-				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
-					break;
-				}
-			}
-		} else {
-			for ( i in obj ) {
-				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
-					break;
-				}
-			}
-		}
-
-		return obj;
-	},
-
-	// Support: Android <=4.0 only
-	trim: function( text ) {
-		return text == null ?
-			"" :
-			( text + "" ).replace( rtrim, "" );
-	},
-
-	// results is for internal usage only
-	makeArray: function( arr, results ) {
-		var ret = results || [];
-
-		if ( arr != null ) {
-			if ( isArrayLike( Object( arr ) ) ) {
-				jQuery.merge( ret,
-					typeof arr === "string" ?
-					[ arr ] : arr
-				);
-			} else {
-				push.call( ret, arr );
-			}
-		}
-
-		return ret;
-	},
-
-	inArray: function( elem, arr, i ) {
-		return arr == null ? -1 : indexOf.call( arr, elem, i );
-	},
-
-	// Support: Android <=4.0 only, PhantomJS 1 only
-	// push.apply(_, arraylike) throws on ancient WebKit
-	merge: function( first, second ) {
-		var len = +second.length,
-			j = 0,
-			i = first.length;
-
-		for ( ; j < len; j++ ) {
-			first[ i++ ] = second[ j ];
-		}
-
-		first.length = i;
-
-		return first;
-	},
-
-	grep: function( elems, callback, invert ) {
-		var callbackInverse,
-			matches = [],
-			i = 0,
-			length = elems.length,
-			callbackExpect = !invert;
-
-		// Go through the array, only saving the items
-		// that pass the validator function
-		for ( ; i < length; i++ ) {
-			callbackInverse = !callback( elems[ i ], i );
-			if ( callbackInverse !== callbackExpect ) {
-				matches.push( elems[ i ] );
-			}
-		}
-
-		return matches;
-	},
-
-	// arg is for internal usage only
-	map: function( elems, callback, arg ) {
-		var length, value,
-			i = 0,
-			ret = [];
-
-		// Go through the array, translating each of the items to their new values
-		if ( isArrayLike( elems ) ) {
-			length = elems.length;
-			for ( ; i < length; i++ ) {
-				value = callback( elems[ i ], i, arg );
-
-				if ( value != null ) {
-					ret.push( value );
-				}
-			}
-
-		// Go through every key on the object,
-		} else {
-			for ( i in elems ) {
-				value = callback( elems[ i ], i, arg );
-
-				if ( value != null ) {
-					ret.push( value );
-				}
-			}
-		}
-
-		// Flatten any nested arrays
-		return concat.apply( [], ret );
-	},
-
-	// A global GUID counter for objects
-	guid: 1,
-
-	// jQuery.support is not used in Core but other projects attach their
-	// properties to it so it needs to exist.
-	support: support
-} );
-
-if ( typeof Symbol === "function" ) {
-	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
-}
-
-// Populate the class2type map
-jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
-function( i, name ) {
-	class2type[ "[object " + name + "]" ] = name.toLowerCase();
-} );
-
-function isArrayLike( obj ) {
-
-	// Support: real iOS 8.2 only (not reproducible in simulator)
-	// `in` check used to prevent JIT error (gh-2145)
-	// hasOwn isn't used here due to false negatives
-	// regarding Nodelist length in IE
-	var length = !!obj && "length" in obj && obj.length,
-		type = toType( obj );
-
-	if ( isFunction( obj ) || isWindow( obj ) ) {
-		return false;
-	}
-
-	return type === "array" || length === 0 ||
-		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
-}
-var Sizzle =
-/*!
- * Sizzle CSS Selector Engine v2.3.4
- * https://sizzlejs.com/
- *
- * Copyright JS Foundation and other contributors
- * Released under the MIT license
- * https://js.foundation/
- *
- * Date: 2019-04-08
- */
-(function( window ) {
-
-var i,
-	support,
-	Expr,
-	getText,
-	isXML,
-	tokenize,
-	compile,
-	select,
-	outermostContext,
-	sortInput,
-	hasDuplicate,
-
-	// Local document vars
-	setDocument,
-	document,
-	docElem,
-	documentIsHTML,
-	rbuggyQSA,
-	rbuggyMatches,
-	matches,
-	contains,
-
-	// Instance-specific data
-	expando = "sizzle" + 1 * new Date(),
-	preferredDoc = window.document,
-	dirruns = 0,
-	done = 0,
-	classCache = createCache(),
-	tokenCache = createCache(),
-	compilerCache = createCache(),
-	nonnativeSelectorCache = createCache(),
-	sortOrder = function( a, b ) {
-		if ( a === b ) {
-			hasDuplicate = true;
-		}
-		return 0;
-	},
-
-	// Instance methods
-	hasOwn = ({}).hasOwnProperty,
-	arr = [],
-	pop = arr.pop,
-	push_native = arr.push,
-	push = arr.push,
-	slice = arr.slice,
-	// Use a stripped-down indexOf as it's faster than native
-	// https://jsperf.com/thor-indexof-vs-for/5
-	indexOf = function( list, elem ) {
-		var i = 0,
-			len = list.length;
-		for ( ; i < len; i++ ) {
-			if ( list[i] === elem ) {
-				return i;
-			}
-		}
-		return -1;
-	},
-
-	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",
-
-	// Regular expressions
-
-	// http://www.w3.org/TR/css3-selectors/#whitespace
-	whitespace = "[\\x20\\t\\r\\n\\f]",
-
-	// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier
-	identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+",
-
-	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
-	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
-		// Operator (capture 2)
-		"*([*^$|!~]?=)" + whitespace +
-		// "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
-		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace +
-		"*\\]",
-
-	pseudos = ":(" + identifier + ")(?:\\((" +
-		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
-		// 1. quoted (capture 3; capture 4 or capture 5)
-		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
-		// 2. simple (capture 6)
-		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
-		// 3. anything else (capture 2)
-		".*" +
-		")\\)|)",
-
-	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
-	rwhitespace = new RegExp( whitespace + "+", "g" ),
-	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ),
-
-	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
-	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ),
-	rdescend = new RegExp( whitespace + "|>" ),
-
-	rpseudo = new RegExp( pseudos ),
-	ridentifier = new RegExp( "^" + identifier + "$" ),
-
-	matchExpr = {
-		"ID": new RegExp( "^#(" + identifier + ")" ),
-		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
-		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
-		"ATTR": new RegExp( "^" + attributes ),
-		"PSEUDO": new RegExp( "^" + pseudos ),
-		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace +
-			"*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace +
-			"*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
-		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
-		// For use in libraries implementing .is()
-		// We use this for POS matching in `select`
-		"needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" +
-			whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
-	},
-
-	rhtml = /HTML$/i,
-	rinputs = /^(?:input|select|textarea|button)$/i,
-	rheader = /^h\d$/i,
-
-	rnative = /^[^{]+\{\s*\[native \w/,
-
-	// Easily-parseable/retrievable ID or TAG or CLASS selectors
-	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
-
-	rsibling = /[+~]/,
-
-	// CSS escapes
-	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
-	runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ),
-	funescape = function( _, escaped, escapedWhitespace ) {
-		var high = "0x" + escaped - 0x10000;
-		// NaN means non-codepoint
-		// Support: Firefox<24
-		// Workaround erroneous numeric interpretation of +"0x"
-		return high !== high || escapedWhitespace ?
-			escaped :
-			high < 0 ?
-				// BMP codepoint
-				String.fromCharCode( high + 0x10000 ) :
-				// Supplemental Plane codepoint (surrogate pair)
-				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
-	},
-
-	// CSS string/identifier serialization
-	// https://drafts.csswg.org/cssom/#common-serializing-idioms
-	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
-	fcssescape = function( ch, asCodePoint ) {
-		if ( asCodePoint ) {
-
-			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
-			if ( ch === "\0" ) {
-				return "\uFFFD";
-			}
-
-			// Control characters and (dependent upon position) numbers get escaped as code points
-			return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
-		}
-
-		// Other potentially-special ASCII characters get backslash-escaped
-		return "\\" + ch;
-	},
-
-	// Used for iframes
-	// See setDocument()
-	// Removing the function wrapper causes a "Permission Denied"
-	// error in IE
-	unloadHandler = function() {
-		setDocument();
-	},
-
-	inDisabledFieldset = addCombinator(
-		function( elem ) {
-			return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
-		},
-		{ dir: "parentNode", next: "legend" }
-	);
-
-// Optimize for push.apply( _, NodeList )
-try {
-	push.apply(
-		(arr = slice.call( preferredDoc.childNodes )),
-		preferredDoc.childNodes
-	);
-	// Support: Android<4.0
-	// Detect silently failing push.apply
-	arr[ preferredDoc.childNodes.length ].nodeType;
-} catch ( e ) {
-	push = { apply: arr.length ?
-
-		// Leverage slice if possible
-		function( target, els ) {
-			push_native.apply( target, slice.call(els) );
-		} :
-
-		// Support: IE<9
-		// Otherwise append directly
-		function( target, els ) {
-			var j = target.length,
-				i = 0;
-			// Can't trust NodeList.length
-			while ( (target[j++] = els[i++]) ) {}
-			target.length = j - 1;
-		}
-	};
-}
-
-function Sizzle( selector, context, results, seed ) {
-	var m, i, elem, nid, match, groups, newSelector,
-		newContext = context && context.ownerDocument,
-
-		// nodeType defaults to 9, since context defaults to document
-		nodeType = context ? context.nodeType : 9;
-
-	results = results || [];
-
-	// Return early from calls with invalid selector or context
-	if ( typeof selector !== "string" || !selector ||
-		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
-
-		return results;
-	}
-
-	// Try to shortcut find operations (as opposed to filters) in HTML documents
-	if ( !seed ) {
-
-		if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
-			setDocument( context );
-		}
-		context = context || document;
-
-		if ( documentIsHTML ) {
-
-			// If the selector is sufficiently simple, try using a "get*By*" DOM method
-			// (excepting DocumentFragment context, where the methods don't exist)
-			if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
-
-				// ID selector
-				if ( (m = match[1]) ) {
-
-					// Document context
-					if ( nodeType === 9 ) {
-						if ( (elem = context.getElementById( m )) ) {
-
-							// Support: IE, Opera, Webkit
-							// TODO: identify versions
-							// getElementById can match elements by name instead of ID
-							if ( elem.id === m ) {
-								results.push( elem );
-								return results;
-							}
-						} else {
-							return results;
-						}
-
-					// Element context
-					} else {
-
-						// Support: IE, Opera, Webkit
-						// TODO: identify versions
-						// getElementById can match elements by name instead of ID
-						if ( newContext && (elem = newContext.getElementById( m )) &&
-							contains( context, elem ) &&
-							elem.id === m ) {
-
-							results.push( elem );
-							return results;
-						}
-					}
-
-				// Type selector
-				} else if ( match[2] ) {
-					push.apply( results, context.getElementsByTagName( selector ) );
-					return results;
-
-				// Class selector
-				} else if ( (m = match[3]) && support.getElementsByClassName &&
-					context.getElementsByClassName ) {
-
-					push.apply( results, context.getElementsByClassName( m ) );
-					return results;
-				}
-			}
-
-			// Take advantage of querySelectorAll
-			if ( support.qsa &&
-				!nonnativeSelectorCache[ selector + " " ] &&
-				(!rbuggyQSA || !rbuggyQSA.test( selector )) &&
-
-				// Support: IE 8 only
-				// Exclude object elements
-				(nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) {
-
-				newSelector = selector;
-				newContext = context;
-
-				// qSA considers elements outside a scoping root when evaluating child or
-				// descendant combinators, which is not what we want.
-				// In such cases, we work around the behavior by prefixing every selector in the
-				// list with an ID selector referencing the scope context.
-				// Thanks to Andrew Dupont for this technique.
-				if ( nodeType === 1 && rdescend.test( selector ) ) {
-
-					// Capture the context ID, setting it first if necessary
-					if ( (nid = context.getAttribute( "id" )) ) {
-						nid = nid.replace( rcssescape, fcssescape );
-					} else {
-						context.setAttribute( "id", (nid = expando) );
-					}
-
-					// Prefix every selector in the list
-					groups = tokenize( selector );
-					i = groups.length;
-					while ( i-- ) {
-						groups[i] = "#" + nid + " " + toSelector( groups[i] );
-					}
-					newSelector = groups.join( "," );
-
-					// Expand context for sibling selectors
-					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
-						context;
-				}
-
-				try {
-					push.apply( results,
-						newContext.querySelectorAll( newSelector )
-					);
-					return results;
-				} catch ( qsaError ) {
-					nonnativeSelectorCache( selector, true );
-				} finally {
-					if ( nid === expando ) {
-						context.removeAttribute( "id" );
-					}
-				}
-			}
-		}
-	}
-
-	// All others
-	return select( selector.replace( rtrim, "$1" ), context, results, seed );
-}
-
-/**
- * Create key-value caches of limited size
- * @returns {function(string, object)} Returns the Object data after storing it on itself with
- *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
- *	deleting the oldest entry
- */
-function createCache() {
-	var keys = [];
-
-	function cache( key, value ) {
-		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
-		if ( keys.push( key + " " ) > Expr.cacheLength ) {
-			// Only keep the most recent entries
-			delete cache[ keys.shift() ];
-		}
-		return (cache[ key + " " ] = value);
-	}
-	return cache;
-}
-
-/**
- * Mark a function for special use by Sizzle
- * @param {Function} fn The function to mark
- */
-function markFunction( fn ) {
-	fn[ expando ] = true;
-	return fn;
-}
-
-/**
- * Support testing using an element
- * @param {Function} fn Passed the created element and returns a boolean result
- */
-function assert( fn ) {
-	var el = document.createElement("fieldset");
-
-	try {
-		return !!fn( el );
-	} catch (e) {
-		return false;
-	} finally {
-		// Remove from its parent by default
-		if ( el.parentNode ) {
-			el.parentNode.removeChild( el );
-		}
-		// release memory in IE
-		el = null;
-	}
-}
-
-/**
- * Adds the same handler for all of the specified attrs
- * @param {String} attrs Pipe-separated list of attributes
- * @param {Function} handler The method that will be applied
- */
-function addHandle( attrs, handler ) {
-	var arr = attrs.split("|"),
-		i = arr.length;
-
-	while ( i-- ) {
-		Expr.attrHandle[ arr[i] ] = handler;
-	}
-}
-
-/**
- * Checks document order of two siblings
- * @param {Element} a
- * @param {Element} b
- * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
- */
-function siblingCheck( a, b ) {
-	var cur = b && a,
-		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
-			a.sourceIndex - b.sourceIndex;
-
-	// Use IE sourceIndex if available on both nodes
-	if ( diff ) {
-		return diff;
-	}
-
-	// Check if b follows a
-	if ( cur ) {
-		while ( (cur = cur.nextSibling) ) {
-			if ( cur === b ) {
-				return -1;
-			}
-		}
-	}
-
-	return a ? 1 : -1;
-}
-
-/**
- * Returns a function to use in pseudos for input types
- * @param {String} type
- */
-function createInputPseudo( type ) {
-	return function( elem ) {
-		var name = elem.nodeName.toLowerCase();
-		return name === "input" && elem.type === type;
-	};
-}
-
-/**
- * Returns a function to use in pseudos for buttons
- * @param {String} type
- */
-function createButtonPseudo( type ) {
-	return function( elem ) {
-		var name = elem.nodeName.toLowerCase();
-		return (name === "input" || name === "button") && elem.type === type;
-	};
-}
-
-/**
- * Returns a function to use in pseudos for :enabled/:disabled
- * @param {Boolean} disabled true for :disabled; false for :enabled
- */
-function createDisabledPseudo( disabled ) {
-
-	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
-	return function( elem ) {
-
-		// Only certain elements can match :enabled or :disabled
-		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
-		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
-		if ( "form" in elem ) {
-
-			// Check for inherited disabledness on relevant non-disabled elements:
-			// * listed form-associated elements in a disabled fieldset
-			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
-			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
-			// * option elements in a disabled optgroup
-			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
-			// All such elements have a "form" property.
-			if ( elem.parentNode && elem.disabled === false ) {
-
-				// Option elements defer to a parent optgroup if present
-				if ( "label" in elem ) {
-					if ( "label" in elem.parentNode ) {
-						return elem.parentNode.disabled === disabled;
-					} else {
-						return elem.disabled === disabled;
-					}
-				}
-
-				// Support: IE 6 - 11
-				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
-				return elem.isDisabled === disabled ||
-
-					// Where there is no isDisabled, check manually
-					/* jshint -W018 */
-					elem.isDisabled !== !disabled &&
-						inDisabledFieldset( elem ) === disabled;
-			}
-
-			return elem.disabled === disabled;
-
-		// Try to winnow out elements that can't be disabled before trusting the disabled property.
-		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
-		// even exist on them, let alone have a boolean value.
-		} else if ( "label" in elem ) {
-			return elem.disabled === disabled;
-		}
-
-		// Remaining elements are neither :enabled nor :disabled
-		return false;
-	};
-}
-
-/**
- * Returns a function to use in pseudos for positionals
- * @param {Function} fn
- */
-function createPositionalPseudo( fn ) {
-	return markFunction(function( argument ) {
-		argument = +argument;
-		return markFunction(function( seed, matches ) {
-			var j,
-				matchIndexes = fn( [], seed.length, argument ),
-				i = matchIndexes.length;
-
-			// Match elements found at the specified indexes
-			while ( i-- ) {
-				if ( seed[ (j = matchIndexes[i]) ] ) {
-					seed[j] = !(matches[j] = seed[j]);
-				}
-			}
-		});
-	});
-}
-
-/**
- * Checks a node for validity as a Sizzle context
- * @param {Element|Object=} context
- * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
- */
-function testContext( context ) {
-	return context && typeof context.getElementsByTagName !== "undefined" && context;
-}
-
-// Expose support vars for convenience
-support = Sizzle.support = {};
-
-/**
- * Detects XML nodes
- * @param {Element|Object} elem An element or a document
- * @returns {Boolean} True iff elem is a non-HTML XML node
- */
-isXML = Sizzle.isXML = function( elem ) {
-	var namespace = elem.namespaceURI,
-		docElem = (elem.ownerDocument || elem).documentElement;
-
-	// Support: IE <=8
-	// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
-	// https://bugs.jquery.com/ticket/4833
-	return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
-};
-
-/**
- * Sets document-related variables once based on the current document
- * @param {Element|Object} [doc] An element or document object to use to set the document
- * @returns {Object} Returns the current document
- */
-setDocument = Sizzle.setDocument = function( node ) {
-	var hasCompare, subWindow,
-		doc = node ? node.ownerDocument || node : preferredDoc;
-
-	// Return early if doc is invalid or already selected
-	if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {
-		return document;
-	}
-
-	// Update global variables
-	document = doc;
-	docElem = document.documentElement;
-	documentIsHTML = !isXML( document );
-
-	// Support: IE 9-11, Edge
-	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
-	if ( preferredDoc !== document &&
-		(subWindow = document.defaultView) && subWindow.top !== subWindow ) {
-
-		// Support: IE 11, Edge
-		if ( subWindow.addEventListener ) {
-			subWindow.addEventListener( "unload", unloadHandler, false );
-
-		// Support: IE 9 - 10 only
-		} else if ( subWindow.attachEvent ) {
-			subWindow.attachEvent( "onunload", unloadHandler );
-		}
-	}
-
-	/* Attributes
-	---------------------------------------------------------------------- */
-
-	// Support: IE<8
-	// Verify that getAttribute really returns attributes and not properties
-	// (excepting IE8 booleans)
-	support.attributes = assert(function( el ) {
-		el.className = "i";
-		return !el.getAttribute("className");
-	});
-
-	/* getElement(s)By*
-	---------------------------------------------------------------------- */
-
-	// Check if getElementsByTagName("*") returns only elements
-	support.getElementsByTagName = assert(function( el ) {
-		el.appendChild( document.createComment("") );
-		return !el.getElementsByTagName("*").length;
-	});
-
-	// Support: IE<9
-	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
-
-	// Support: IE<10
-	// Check if getElementById returns elements by name
-	// The broken getElementById methods don't pick up programmatically-set names,
-	// so use a roundabout getElementsByName test
-	support.getById = assert(function( el ) {
-		docElem.appendChild( el ).id = expando;
-		return !document.getElementsByName || !document.getElementsByName( expando ).length;
-	});
-
-	// ID filter and find
-	if ( support.getById ) {
-		Expr.filter["ID"] = function( id ) {
-			var attrId = id.replace( runescape, funescape );
-			return function( elem ) {
-				return elem.getAttribute("id") === attrId;
-			};
-		};
-		Expr.find["ID"] = function( id, context ) {
-			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
-				var elem = context.getElementById( id );
-				return elem ? [ elem ] : [];
-			}
-		};
-	} else {
-		Expr.filter["ID"] =  function( id ) {
-			var attrId = id.replace( runescape, funescape );
-			return function( elem ) {
-				var node = typeof elem.getAttributeNode !== "undefined" &&
-					elem.getAttributeNode("id");
-				return node && node.value === attrId;
-			};
-		};
-
-		// Support: IE 6 - 7 only
-		// getElementById is not reliable as a find shortcut
-		Expr.find["ID"] = function( id, context ) {
-			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
-				var node, i, elems,
-					elem = context.getElementById( id );
-
-				if ( elem ) {
-
-					// Verify the id attribute
-					node = elem.getAttributeNode("id");
-					if ( node && node.value === id ) {
-						return [ elem ];
-					}
-
-					// Fall back on getElementsByName
-					elems = context.getElementsByName( id );
-					i = 0;
-					while ( (elem = elems[i++]) ) {
-						node = elem.getAttributeNode("id");
-						if ( node && node.value === id ) {
-							return [ elem ];
-						}
-					}
-				}
-
-				return [];
-			}
-		};
-	}
-
-	// Tag
-	Expr.find["TAG"] = support.getElementsByTagName ?
-		function( tag, context ) {
-			if ( typeof context.getElementsByTagName !== "undefined" ) {
-				return context.getElementsByTagName( tag );
-
-			// DocumentFragment nodes don't have gEBTN
-			} else if ( support.qsa ) {
-				return context.querySelectorAll( tag );
-			}
-		} :
-
-		function( tag, context ) {
-			var elem,
-				tmp = [],
-				i = 0,
-				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
-				results = context.getElementsByTagName( tag );
-
-			// Filter out possible comments
-			if ( tag === "*" ) {
-				while ( (elem = results[i++]) ) {
-					if ( elem.nodeType === 1 ) {
-						tmp.push( elem );
-					}
-				}
-
-				return tmp;
-			}
-			return results;
-		};
-
-	// Class
-	Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) {
-		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
-			return context.getElementsByClassName( className );
-		}
-	};
-
-	/* QSA/matchesSelector
-	---------------------------------------------------------------------- */
-
-	// QSA and matchesSelector support
-
-	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
-	rbuggyMatches = [];
-
-	// qSa(:focus) reports false when true (Chrome 21)
-	// We allow this because of a bug in IE8/9 that throws an error
-	// whenever `document.activeElement` is accessed on an iframe
-	// So, we allow :focus to pass through QSA all the time to avoid the IE error
-	// See https://bugs.jquery.com/ticket/13378
-	rbuggyQSA = [];
-
-	if ( (support.qsa = rnative.test( document.querySelectorAll )) ) {
-		// Build QSA regex
-		// Regex strategy adopted from Diego Perini
-		assert(function( el ) {
-			// Select is set to empty string on purpose
-			// This is to test IE's treatment of not explicitly
-			// setting a boolean content attribute,
-			// since its presence should be enough
-			// https://bugs.jquery.com/ticket/12359
-			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
-				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
-				"<option selected=''></option></select>";
-
-			// Support: IE8, Opera 11-12.16
-			// Nothing should be selected when empty strings follow ^= or $= or *=
-			// The test attribute must be unknown in Opera but "safe" for WinRT
-			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
-			if ( el.querySelectorAll("[msallowcapture^='']").length ) {
-				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
-			}
-
-			// Support: IE8
-			// Boolean attributes and "value" are not treated correctly
-			if ( !el.querySelectorAll("[selected]").length ) {
-				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
-			}
-
-			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
-			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
-				rbuggyQSA.push("~=");
-			}
-
-			// Webkit/Opera - :checked should return selected option elements
-			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
-			// IE8 throws error here and will not see later tests
-			if ( !el.querySelectorAll(":checked").length ) {
-				rbuggyQSA.push(":checked");
-			}
-
-			// Support: Safari 8+, iOS 8+
-			// https://bugs.webkit.org/show_bug.cgi?id=136851
-			// In-page `selector#id sibling-combinator selector` fails
-			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
-				rbuggyQSA.push(".#.+[+~]");
-			}
-		});
-
-		assert(function( el ) {
-			el.innerHTML = "<a href='' disabled='disabled'></a>" +
-				"<select disabled='disabled'><option/></select>";
-
-			// Support: Windows 8 Native Apps
-			// The type and name attributes are restricted during .innerHTML assignment
-			var input = document.createElement("input");
-			input.setAttribute( "type", "hidden" );
-			el.appendChild( input ).setAttribute( "name", "D" );
-
-			// Support: IE8
-			// Enforce case-sensitivity of name attribute
-			if ( el.querySelectorAll("[name=d]").length ) {
-				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
-			}
-
-			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
-			// IE8 throws error here and will not see later tests
-			if ( el.querySelectorAll(":enabled").length !== 2 ) {
-				rbuggyQSA.push( ":enabled", ":disabled" );
-			}
-
-			// Support: IE9-11+
-			// IE's :disabled selector does not pick up the children of disabled fieldsets
-			docElem.appendChild( el ).disabled = true;
-			if ( el.querySelectorAll(":disabled").length !== 2 ) {
-				rbuggyQSA.push( ":enabled", ":disabled" );
-			}
-
-			// Opera 10-11 does not throw on post-comma invalid pseudos
-			el.querySelectorAll("*,:x");
-			rbuggyQSA.push(",.*:");
-		});
-	}
-
-	if ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||
-		docElem.webkitMatchesSelector ||
-		docElem.mozMatchesSelector ||
-		docElem.oMatchesSelector ||
-		docElem.msMatchesSelector) )) ) {
-
-		assert(function( el ) {
-			// Check to see if it's possible to do matchesSelector
-			// on a disconnected node (IE 9)
-			support.disconnectedMatch = matches.call( el, "*" );
-
-			// This should fail with an exception
-			// Gecko does not error, returns false instead
-			matches.call( el, "[s!='']:x" );
-			rbuggyMatches.push( "!=", pseudos );
-		});
-	}
-
-	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") );
-	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") );
-
-	/* Contains
-	---------------------------------------------------------------------- */
-	hasCompare = rnative.test( docElem.compareDocumentPosition );
-
-	// Element contains another
-	// Purposefully self-exclusive
-	// As in, an element does not contain itself
-	contains = hasCompare || rnative.test( docElem.contains ) ?
-		function( a, b ) {
-			var adown = a.nodeType === 9 ? a.documentElement : a,
-				bup = b && b.parentNode;
-			return a === bup || !!( bup && bup.nodeType === 1 && (
-				adown.contains ?
-					adown.contains( bup ) :
-					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
-			));
-		} :
-		function( a, b ) {
-			if ( b ) {
-				while ( (b = b.parentNode) ) {
-					if ( b === a ) {
-						return true;
-					}
-				}
-			}
-			return false;
-		};
-
-	/* Sorting
-	---------------------------------------------------------------------- */
-
-	// Document order sorting
-	sortOrder = hasCompare ?
-	function( a, b ) {
-
-		// Flag for duplicate removal
-		if ( a === b ) {
-			hasDuplicate = true;
-			return 0;
-		}
-
-		// Sort on method existence if only one input has compareDocumentPosition
-		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
-		if ( compare ) {
-			return compare;
-		}
-
-		// Calculate position if both inputs belong to the same document
-		compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?
-			a.compareDocumentPosition( b ) :
-
-			// Otherwise we know they are disconnected
-			1;
-
-		// Disconnected nodes
-		if ( compare & 1 ||
-			(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {
-
-			// Choose the first element that is related to our preferred document
-			if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {
-				return -1;
-			}
-			if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {
-				return 1;
-			}
-
-			// Maintain original order
-			return sortInput ?
-				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
-				0;
-		}
-
-		return compare & 4 ? -1 : 1;
-	} :
-	function( a, b ) {
-		// Exit early if the nodes are identical
-		if ( a === b ) {
-			hasDuplicate = true;
-			return 0;
-		}
-
-		var cur,
-			i = 0,
-			aup = a.parentNode,
-			bup = b.parentNode,
-			ap = [ a ],
-			bp = [ b ];
-
-		// Parentless nodes are either documents or disconnected
-		if ( !aup || !bup ) {
-			return a === document ? -1 :
-				b === document ? 1 :
-				aup ? -1 :
-				bup ? 1 :
-				sortInput ?
-				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
-				0;
-
-		// If the nodes are siblings, we can do a quick check
-		} else if ( aup === bup ) {
-			return siblingCheck( a, b );
-		}
-
-		// Otherwise we need full lists of their ancestors for comparison
-		cur = a;
-		while ( (cur = cur.parentNode) ) {
-			ap.unshift( cur );
-		}
-		cur = b;
-		while ( (cur = cur.parentNode) ) {
-			bp.unshift( cur );
-		}
-
-		// Walk down the tree looking for a discrepancy
-		while ( ap[i] === bp[i] ) {
-			i++;
-		}
-
-		return i ?
-			// Do a sibling check if the nodes have a common ancestor
-			siblingCheck( ap[i], bp[i] ) :
-
-			// Otherwise nodes in our document sort first
-			ap[i] === preferredDoc ? -1 :
-			bp[i] === preferredDoc ? 1 :
-			0;
-	};
-
-	return document;
-};
-
-Sizzle.matches = function( expr, elements ) {
-	return Sizzle( expr, null, null, elements );
-};
-
-Sizzle.matchesSelector = function( elem, expr ) {
-	// Set document vars if needed
-	if ( ( elem.ownerDocument || elem ) !== document ) {
-		setDocument( elem );
-	}
-
-	if ( support.matchesSelector && documentIsHTML &&
-		!nonnativeSelectorCache[ expr + " " ] &&
-		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
-		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
-
-		try {
-			var ret = matches.call( elem, expr );
-
-			// IE 9's matchesSelector returns false on disconnected nodes
-			if ( ret || support.disconnectedMatch ||
-					// As well, disconnected nodes are said to be in a document
-					// fragment in IE 9
-					elem.document && elem.document.nodeType !== 11 ) {
-				return ret;
-			}
-		} catch (e) {
-			nonnativeSelectorCache( expr, true );
-		}
-	}
-
-	return Sizzle( expr, document, null, [ elem ] ).length > 0;
-};
-
-Sizzle.contains = function( context, elem ) {
-	// Set document vars if needed
-	if ( ( context.ownerDocument || context ) !== document ) {
-		setDocument( context );
-	}
-	return contains( context, elem );
-};
-
-Sizzle.attr = function( elem, name ) {
-	// Set document vars if needed
-	if ( ( elem.ownerDocument || elem ) !== document ) {
-		setDocument( elem );
-	}
-
-	var fn = Expr.attrHandle[ name.toLowerCase() ],
-		// Don't get fooled by Object.prototype properties (jQuery #13807)
-		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
-			fn( elem, name, !documentIsHTML ) :
-			undefined;
-
-	return val !== undefined ?
-		val :
-		support.attributes || !documentIsHTML ?
-			elem.getAttribute( name ) :
-			(val = elem.getAttributeNode(name)) && val.specified ?
-				val.value :
-				null;
-};
-
-Sizzle.escape = function( sel ) {
-	return (sel + "").replace( rcssescape, fcssescape );
-};
-
-Sizzle.error = function( msg ) {
-	throw new Error( "Syntax error, unrecognized expression: " + msg );
-};
-
-/**
- * Document sorting and removing duplicates
- * @param {ArrayLike} results
- */
-Sizzle.uniqueSort = function( results ) {
-	var elem,
-		duplicates = [],
-		j = 0,
-		i = 0;
-
-	// Unless we *know* we can detect duplicates, assume their presence
-	hasDuplicate = !support.detectDuplicates;
-	sortInput = !support.sortStable && results.slice( 0 );
-	results.sort( sortOrder );
-
-	if ( hasDuplicate ) {
-		while ( (elem = results[i++]) ) {
-			if ( elem === results[ i ] ) {
-				j = duplicates.push( i );
-			}
-		}
-		while ( j-- ) {
-			results.splice( duplicates[ j ], 1 );
-		}
-	}
-
-	// Clear input after sorting to release objects
-	// See https://github.com/jquery/sizzle/pull/225
-	sortInput = null;
-
-	return results;
-};
-
-/**
- * Utility function for retrieving the text value of an array of DOM nodes
- * @param {Array|Element} elem
- */
-getText = Sizzle.getText = function( elem ) {
-	var node,
-		ret = "",
-		i = 0,
-		nodeType = elem.nodeType;
-
-	if ( !nodeType ) {
-		// If no nodeType, this is expected to be an array
-		while ( (node = elem[i++]) ) {
-			// Do not traverse comment nodes
-			ret += getText( node );
-		}
-	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
-		// Use textContent for elements
-		// innerText usage removed for consistency of new lines (jQuery #11153)
-		if ( typeof elem.textContent === "string" ) {
-			return elem.textContent;
-		} else {
-			// Traverse its children
-			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
-				ret += getText( elem );
-			}
-		}
-	} else if ( nodeType === 3 || nodeType === 4 ) {
-		return elem.nodeValue;
-	}
-	// Do not include comment or processing instruction nodes
-
-	return ret;
-};
-
-Expr = Sizzle.selectors = {
-
-	// Can be adjusted by the user
-	cacheLength: 50,
-
-	createPseudo: markFunction,
-
-	match: matchExpr,
-
-	attrHandle: {},
-
-	find: {},
-
-	relative: {
-		">": { dir: "parentNode", first: true },
-		" ": { dir: "parentNode" },
-		"+": { dir: "previousSibling", first: true },
-		"~": { dir: "previousSibling" }
-	},
-
-	preFilter: {
-		"ATTR": function( match ) {
-			match[1] = match[1].replace( runescape, funescape );
-
-			// Move the given value to match[3] whether quoted or unquoted
-			match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape );
-
-			if ( match[2] === "~=" ) {
-				match[3] = " " + match[3] + " ";
-			}
-
-			return match.slice( 0, 4 );
-		},
-
-		"CHILD": function( match ) {
-			/* matches from matchExpr["CHILD"]
-				1 type (only|nth|...)
-				2 what (child|of-type)
-				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
-				4 xn-component of xn+y argument ([+-]?\d*n|)
-				5 sign of xn-component
-				6 x of xn-component
-				7 sign of y-component
-				8 y of y-component
-			*/
-			match[1] = match[1].toLowerCase();
-
-			if ( match[1].slice( 0, 3 ) === "nth" ) {
-				// nth-* requires argument
-				if ( !match[3] ) {
-					Sizzle.error( match[0] );
-				}
-
-				// numeric x and y parameters for Expr.filter.CHILD
-				// remember that false/true cast respectively to 0/1
-				match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) );
-				match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" );
-
-			// other types prohibit arguments
-			} else if ( match[3] ) {
-				Sizzle.error( match[0] );
-			}
-
-			return match;
-		},
-
-		"PSEUDO": function( match ) {
-			var excess,
-				unquoted = !match[6] && match[2];
-
-			if ( matchExpr["CHILD"].test( match[0] ) ) {
-				return null;
-			}
-
-			// Accept quoted arguments as-is
-			if ( match[3] ) {
-				match[2] = match[4] || match[5] || "";
-
-			// Strip excess characters from unquoted arguments
-			} else if ( unquoted && rpseudo.test( unquoted ) &&
-				// Get excess from tokenize (recursively)
-				(excess = tokenize( unquoted, true )) &&
-				// advance to the next closing parenthesis
-				(excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
-
-				// excess is a negative index
-				match[0] = match[0].slice( 0, excess );
-				match[2] = unquoted.slice( 0, excess );
-			}
-
-			// Return only captures needed by the pseudo filter method (type and argument)
-			return match.slice( 0, 3 );
-		}
-	},
-
-	filter: {
-
-		"TAG": function( nodeNameSelector ) {
-			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
-			return nodeNameSelector === "*" ?
-				function() { return true; } :
-				function( elem ) {
-					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
-				};
-		},
-
-		"CLASS": function( className ) {
-			var pattern = classCache[ className + " " ];
-
-			return pattern ||
-				(pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) &&
-				classCache( className, function( elem ) {
-					return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" );
-				});
-		},
-
-		"ATTR": function( name, operator, check ) {
-			return function( elem ) {
-				var result = Sizzle.attr( elem, name );
-
-				if ( result == null ) {
-					return operator === "!=";
-				}
-				if ( !operator ) {
-					return true;
-				}
-
-				result += "";
-
-				return operator === "=" ? result === check :
-					operator === "!=" ? result !== check :
-					operator === "^=" ? check && result.indexOf( check ) === 0 :
-					operator === "*=" ? check && result.indexOf( check ) > -1 :
-					operator === "$=" ? check && result.slice( -check.length ) === check :
-					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
-					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
-					false;
-			};
-		},
-
-		"CHILD": function( type, what, argument, first, last ) {
-			var simple = type.slice( 0, 3 ) !== "nth",
-				forward = type.slice( -4 ) !== "last",
-				ofType = what === "of-type";
-
-			return first === 1 && last === 0 ?
-
-				// Shortcut for :nth-*(n)
-				function( elem ) {
-					return !!elem.parentNode;
-				} :
-
-				function( elem, context, xml ) {
-					var cache, uniqueCache, outerCache, node, nodeIndex, start,
-						dir = simple !== forward ? "nextSibling" : "previousSibling",
-						parent = elem.parentNode,
-						name = ofType && elem.nodeName.toLowerCase(),
-						useCache = !xml && !ofType,
-						diff = false;
-
-					if ( parent ) {
-
-						// :(first|last|only)-(child|of-type)
-						if ( simple ) {
-							while ( dir ) {
-								node = elem;
-								while ( (node = node[ dir ]) ) {
-									if ( ofType ?
-										node.nodeName.toLowerCase() === name :
-										node.nodeType === 1 ) {
-
-										return false;
-									}
-								}
-								// Reverse direction for :only-* (if we haven't yet done so)
-								start = dir = type === "only" && !start && "nextSibling";
-							}
-							return true;
-						}
-
-						start = [ forward ? parent.firstChild : parent.lastChild ];
-
-						// non-xml :nth-child(...) stores cache data on `parent`
-						if ( forward && useCache ) {
-
-							// Seek `elem` from a previously-cached index
-
-							// ...in a gzip-friendly way
-							node = parent;
-							outerCache = node[ expando ] || (node[ expando ] = {});
-
-							// Support: IE <9 only
-							// Defend against cloned attroperties (jQuery gh-1709)
-							uniqueCache = outerCache[ node.uniqueID ] ||
-								(outerCache[ node.uniqueID ] = {});
-
-							cache = uniqueCache[ type ] || [];
-							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
-							diff = nodeIndex && cache[ 2 ];
-							node = nodeIndex && parent.childNodes[ nodeIndex ];
-
-							while ( (node = ++nodeIndex && node && node[ dir ] ||
-
-								// Fallback to seeking `elem` from the start
-								(diff = nodeIndex = 0) || start.pop()) ) {
-
-								// When found, cache indexes on `parent` and break
-								if ( node.nodeType === 1 && ++diff && node === elem ) {
-									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
-									break;
-								}
-							}
-
-						} else {
-							// Use previously-cached element index if available
-							if ( useCache ) {
-								// ...in a gzip-friendly way
-								node = elem;
-								outerCache = node[ expando ] || (node[ expando ] = {});
-
-								// Support: IE <9 only
-								// Defend against cloned attroperties (jQuery gh-1709)
-								uniqueCache = outerCache[ node.uniqueID ] ||
-									(outerCache[ node.uniqueID ] = {});
-
-								cache = uniqueCache[ type ] || [];
-								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
-								diff = nodeIndex;
-							}
-
-							// xml :nth-child(...)
-							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
-							if ( diff === false ) {
-								// Use the same loop as above to seek `elem` from the start
-								while ( (node = ++nodeIndex && node && node[ dir ] ||
-									(diff = nodeIndex = 0) || start.pop()) ) {
-
-									if ( ( ofType ?
-										node.nodeName.toLowerCase() === name :
-										node.nodeType === 1 ) &&
-										++diff ) {
-
-										// Cache the index of each encountered element
-										if ( useCache ) {
-											outerCache = node[ expando ] || (node[ expando ] = {});
-
-											// Support: IE <9 only
-											// Defend against cloned attroperties (jQuery gh-1709)
-											uniqueCache = outerCache[ node.uniqueID ] ||
-												(outerCache[ node.uniqueID ] = {});
-
-											uniqueCache[ type ] = [ dirruns, diff ];
-										}
-
-										if ( node === elem ) {
-											break;
-										}
-									}
-								}
-							}
-						}
-
-						// Incorporate the offset, then check against cycle size
-						diff -= last;
-						return diff === first || ( diff % first === 0 && diff / first >= 0 );
-					}
-				};
-		},
-
-		"PSEUDO": function( pseudo, argument ) {
-			// pseudo-class names are case-insensitive
-			// http://www.w3.org/TR/selectors/#pseudo-classes
-			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
-			// Remember that setFilters inherits from pseudos
-			var args,
-				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
-					Sizzle.error( "unsupported pseudo: " + pseudo );
-
-			// The user may use createPseudo to indicate that
-			// arguments are needed to create the filter function
-			// just as Sizzle does
-			if ( fn[ expando ] ) {
-				return fn( argument );
-			}
-
-			// But maintain support for old signatures
-			if ( fn.length > 1 ) {
-				args = [ pseudo, pseudo, "", argument ];
-				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
-					markFunction(function( seed, matches ) {
-						var idx,
-							matched = fn( seed, argument ),
-							i = matched.length;
-						while ( i-- ) {
-							idx = indexOf( seed, matched[i] );
-							seed[ idx ] = !( matches[ idx ] = matched[i] );
-						}
-					}) :
-					function( elem ) {
-						return fn( elem, 0, args );
-					};
-			}
-
-			return fn;
-		}
-	},
-
-	pseudos: {
-		// Potentially complex pseudos
-		"not": markFunction(function( selector ) {
-			// Trim the selector passed to compile
-			// to avoid treating leading and trailing
-			// spaces as combinators
-			var input = [],
-				results = [],
-				matcher = compile( selector.replace( rtrim, "$1" ) );
-
-			return matcher[ expando ] ?
-				markFunction(function( seed, matches, context, xml ) {
-					var elem,
-						unmatched = matcher( seed, null, xml, [] ),
-						i = seed.length;
-
-					// Match elements unmatched by `matcher`
-					while ( i-- ) {
-						if ( (elem = unmatched[i]) ) {
-							seed[i] = !(matches[i] = elem);
-						}
-					}
-				}) :
-				function( elem, context, xml ) {
-					input[0] = elem;
-					matcher( input, null, xml, results );
-					// Don't keep the element (issue #299)
-					input[0] = null;
-					return !results.pop();
-				};
-		}),
-
-		"has": markFunction(function( selector ) {
-			return function( elem ) {
-				return Sizzle( selector, elem ).length > 0;
-			};
-		}),
-
-		"contains": markFunction(function( text ) {
-			text = text.replace( runescape, funescape );
-			return function( elem ) {
-				return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
-			};
-		}),
-
-		// "Whether an element is represented by a :lang() selector
-		// is based solely on the element's language value
-		// being equal to the identifier C,
-		// or beginning with the identifier C immediately followed by "-".
-		// The matching of C against the element's language value is performed case-insensitively.
-		// The identifier C does not have to be a valid language name."
-		// http://www.w3.org/TR/selectors/#lang-pseudo
-		"lang": markFunction( function( lang ) {
-			// lang value must be a valid identifier
-			if ( !ridentifier.test(lang || "") ) {
-				Sizzle.error( "unsupported lang: " + lang );
-			}
-			lang = lang.replace( runescape, funescape ).toLowerCase();
-			return function( elem ) {
-				var elemLang;
-				do {
-					if ( (elemLang = documentIsHTML ?
-						elem.lang :
-						elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) {
-
-						elemLang = elemLang.toLowerCase();
-						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
-					}
-				} while ( (elem = elem.parentNode) && elem.nodeType === 1 );
-				return false;
-			};
-		}),
-
-		// Miscellaneous
-		"target": function( elem ) {
-			var hash = window.location && window.location.hash;
-			return hash && hash.slice( 1 ) === elem.id;
-		},
-
-		"root": function( elem ) {
-			return elem === docElem;
-		},
-
-		"focus": function( elem ) {
-			return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);
-		},
-
-		// Boolean properties
-		"enabled": createDisabledPseudo( false ),
-		"disabled": createDisabledPseudo( true ),
-
-		"checked": function( elem ) {
-			// In CSS3, :checked should return both checked and selected elements
-			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
-			var nodeName = elem.nodeName.toLowerCase();
-			return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected);
-		},
-
-		"selected": function( elem ) {
-			// Accessing this property makes selected-by-default
-			// options in Safari work properly
-			if ( elem.parentNode ) {
-				elem.parentNode.selectedIndex;
-			}
-
-			return elem.selected === true;
-		},
-
-		// Contents
-		"empty": function( elem ) {
-			// http://www.w3.org/TR/selectors/#empty-pseudo
-			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
-			//   but not by others (comment: 8; processing instruction: 7; etc.)
-			// nodeType < 6 works because attributes (2) do not appear as children
-			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
-				if ( elem.nodeType < 6 ) {
-					return false;
-				}
-			}
-			return true;
-		},
-
-		"parent": function( elem ) {
-			return !Expr.pseudos["empty"]( elem );
-		},
-
-		// Element/input types
-		"header": function( elem ) {
-			return rheader.test( elem.nodeName );
-		},
-
-		"input": function( elem ) {
-			return rinputs.test( elem.nodeName );
-		},
-
-		"button": function( elem ) {
-			var name = elem.nodeName.toLowerCase();
-			return name === "input" && elem.type === "button" || name === "button";
-		},
-
-		"text": function( elem ) {
-			var attr;
-			return elem.nodeName.toLowerCase() === "input" &&
-				elem.type === "text" &&
-
-				// Support: IE<8
-				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
-				( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" );
-		},
-
-		// Position-in-collection
-		"first": createPositionalPseudo(function() {
-			return [ 0 ];
-		}),
-
-		"last": createPositionalPseudo(function( matchIndexes, length ) {
-			return [ length - 1 ];
-		}),
-
-		"eq": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			return [ argument < 0 ? argument + length : argument ];
-		}),
-
-		"even": createPositionalPseudo(function( matchIndexes, length ) {
-			var i = 0;
-			for ( ; i < length; i += 2 ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"odd": createPositionalPseudo(function( matchIndexes, length ) {
-			var i = 1;
-			for ( ; i < length; i += 2 ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"lt": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			var i = argument < 0 ?
-				argument + length :
-				argument > length ?
-					length :
-					argument;
-			for ( ; --i >= 0; ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		}),
-
-		"gt": createPositionalPseudo(function( matchIndexes, length, argument ) {
-			var i = argument < 0 ? argument + length : argument;
-			for ( ; ++i < length; ) {
-				matchIndexes.push( i );
-			}
-			return matchIndexes;
-		})
-	}
-};
-
-Expr.pseudos["nth"] = Expr.pseudos["eq"];
-
-// Add button/input type pseudos
-for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
-	Expr.pseudos[ i ] = createInputPseudo( i );
-}
-for ( i in { submit: true, reset: true } ) {
-	Expr.pseudos[ i ] = createButtonPseudo( i );
-}
-
-// Easy API for creating new setFilters
-function setFilters() {}
-setFilters.prototype = Expr.filters = Expr.pseudos;
-Expr.setFilters = new setFilters();
-
-tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
-	var matched, match, tokens, type,
-		soFar, groups, preFilters,
-		cached = tokenCache[ selector + " " ];
-
-	if ( cached ) {
-		return parseOnly ? 0 : cached.slice( 0 );
-	}
-
-	soFar = selector;
-	groups = [];
-	preFilters = Expr.preFilter;
-
-	while ( soFar ) {
-
-		// Comma and first run
-		if ( !matched || (match = rcomma.exec( soFar )) ) {
-			if ( match ) {
-				// Don't consume trailing commas as valid
-				soFar = soFar.slice( match[0].length ) || soFar;
-			}
-			groups.push( (tokens = []) );
-		}
-
-		matched = false;
-
-		// Combinators
-		if ( (match = rcombinators.exec( soFar )) ) {
-			matched = match.shift();
-			tokens.push({
-				value: matched,
-				// Cast descendant combinators to space
-				type: match[0].replace( rtrim, " " )
-			});
-			soFar = soFar.slice( matched.length );
-		}
-
-		// Filters
-		for ( type in Expr.filter ) {
-			if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||
-				(match = preFilters[ type ]( match ))) ) {
-				matched = match.shift();
-				tokens.push({
-					value: matched,
-					type: type,
-					matches: match
-				});
-				soFar = soFar.slice( matched.length );
-			}
-		}
-
-		if ( !matched ) {
-			break;
-		}
-	}
-
-	// Return the length of the invalid excess
-	// if we're just parsing
-	// Otherwise, throw an error or return tokens
-	return parseOnly ?
-		soFar.length :
-		soFar ?
-			Sizzle.error( selector ) :
-			// Cache the tokens
-			tokenCache( selector, groups ).slice( 0 );
-};
-
-function toSelector( tokens ) {
-	var i = 0,
-		len = tokens.length,
-		selector = "";
-	for ( ; i < len; i++ ) {
-		selector += tokens[i].value;
-	}
-	return selector;
-}
-
-function addCombinator( matcher, combinator, base ) {
-	var dir = combinator.dir,
-		skip = combinator.next,
-		key = skip || dir,
-		checkNonElements = base && key === "parentNode",
-		doneName = done++;
-
-	return combinator.first ?
-		// Check against closest ancestor/preceding element
-		function( elem, context, xml ) {
-			while ( (elem = elem[ dir ]) ) {
-				if ( elem.nodeType === 1 || checkNonElements ) {
-					return matcher( elem, context, xml );
-				}
-			}
-			return false;
-		} :
-
-		// Check against all ancestor/preceding elements
-		function( elem, context, xml ) {
-			var oldCache, uniqueCache, outerCache,
-				newCache = [ dirruns, doneName ];
-
-			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
-			if ( xml ) {
-				while ( (elem = elem[ dir ]) ) {
-					if ( elem.nodeType === 1 || checkNonElements ) {
-						if ( matcher( elem, context, xml ) ) {
-							return true;
-						}
-					}
-				}
-			} else {
-				while ( (elem = elem[ dir ]) ) {
-					if ( elem.nodeType === 1 || checkNonElements ) {
-						outerCache = elem[ expando ] || (elem[ expando ] = {});
-
-						// Support: IE <9 only
-						// Defend against cloned attroperties (jQuery gh-1709)
-						uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});
-
-						if ( skip && skip === elem.nodeName.toLowerCase() ) {
-							elem = elem[ dir ] || elem;
-						} else if ( (oldCache = uniqueCache[ key ]) &&
-							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
-
-							// Assign to newCache so results back-propagate to previous elements
-							return (newCache[ 2 ] = oldCache[ 2 ]);
-						} else {
-							// Reuse newcache so results back-propagate to previous elements
-							uniqueCache[ key ] = newCache;
-
-							// A match means we're done; a fail means we have to keep checking
-							if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {
-								return true;
-							}
-						}
-					}
-				}
-			}
-			return false;
-		};
-}
-
-function elementMatcher( matchers ) {
-	return matchers.length > 1 ?
-		function( elem, context, xml ) {
-			var i = matchers.length;
-			while ( i-- ) {
-				if ( !matchers[i]( elem, context, xml ) ) {
-					return false;
-				}
-			}
-			return true;
-		} :
-		matchers[0];
-}
-
-function multipleContexts( selector, contexts, results ) {
-	var i = 0,
-		len = contexts.length;
-	for ( ; i < len; i++ ) {
-		Sizzle( selector, contexts[i], results );
-	}
-	return results;
-}
-
-function condense( unmatched, map, filter, context, xml ) {
-	var elem,
-		newUnmatched = [],
-		i = 0,
-		len = unmatched.length,
-		mapped = map != null;
-
-	for ( ; i < len; i++ ) {
-		if ( (elem = unmatched[i]) ) {
-			if ( !filter || filter( elem, context, xml ) ) {
-				newUnmatched.push( elem );
-				if ( mapped ) {
-					map.push( i );
-				}
-			}
-		}
-	}
-
-	return newUnmatched;
-}
-
-function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
-	if ( postFilter && !postFilter[ expando ] ) {
-		postFilter = setMatcher( postFilter );
-	}
-	if ( postFinder && !postFinder[ expando ] ) {
-		postFinder = setMatcher( postFinder, postSelector );
-	}
-	return markFunction(function( seed, results, context, xml ) {
-		var temp, i, elem,
-			preMap = [],
-			postMap = [],
-			preexisting = results.length,
-
-			// Get initial elements from seed or context
-			elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ),
-
-			// Prefilter to get matcher input, preserving a map for seed-results synchronization
-			matcherIn = preFilter && ( seed || !selector ) ?
-				condense( elems, preMap, preFilter, context, xml ) :
-				elems,
-
-			matcherOut = matcher ?
-				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
-				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
-
-					// ...intermediate processing is necessary
-					[] :
-
-					// ...otherwise use results directly
-					results :
-				matcherIn;
-
-		// Find primary matches
-		if ( matcher ) {
-			matcher( matcherIn, matcherOut, context, xml );
-		}
-
-		// Apply postFilter
-		if ( postFilter ) {
-			temp = condense( matcherOut, postMap );
-			postFilter( temp, [], context, xml );
-
-			// Un-match failing elements by moving them back to matcherIn
-			i = temp.length;
-			while ( i-- ) {
-				if ( (elem = temp[i]) ) {
-					matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);
-				}
-			}
-		}
-
-		if ( seed ) {
-			if ( postFinder || preFilter ) {
-				if ( postFinder ) {
-					// Get the final matcherOut by condensing this intermediate into postFinder contexts
-					temp = [];
-					i = matcherOut.length;
-					while ( i-- ) {
-						if ( (elem = matcherOut[i]) ) {
-							// Restore matcherIn since elem is not yet a final match
-							temp.push( (matcherIn[i] = elem) );
-						}
-					}
-					postFinder( null, (matcherOut = []), temp, xml );
-				}
-
-				// Move matched elements from seed to results to keep them synchronized
-				i = matcherOut.length;
-				while ( i-- ) {
-					if ( (elem = matcherOut[i]) &&
-						(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {
-
-						seed[temp] = !(results[temp] = elem);
-					}
-				}
-			}
-
-		// Add elements to results, through postFinder if defined
-		} else {
-			matcherOut = condense(
-				matcherOut === results ?
-					matcherOut.splice( preexisting, matcherOut.length ) :
-					matcherOut
-			);
-			if ( postFinder ) {
-				postFinder( null, results, matcherOut, xml );
-			} else {
-				push.apply( results, matcherOut );
-			}
-		}
-	});
-}
-
-function matcherFromTokens( tokens ) {
-	var checkContext, matcher, j,
-		len = tokens.length,
-		leadingRelative = Expr.relative[ tokens[0].type ],
-		implicitRelative = leadingRelative || Expr.relative[" "],
-		i = leadingRelative ? 1 : 0,
-
-		// The foundational matcher ensures that elements are reachable from top-level context(s)
-		matchContext = addCombinator( function( elem ) {
-			return elem === checkContext;
-		}, implicitRelative, true ),
-		matchAnyContext = addCombinator( function( elem ) {
-			return indexOf( checkContext, elem ) > -1;
-		}, implicitRelative, true ),
-		matchers = [ function( elem, context, xml ) {
-			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
-				(checkContext = context).nodeType ?
-					matchContext( elem, context, xml ) :
-					matchAnyContext( elem, context, xml ) );
-			// Avoid hanging onto element (issue #299)
-			checkContext = null;
-			return ret;
-		} ];
-
-	for ( ; i < len; i++ ) {
-		if ( (matcher = Expr.relative[ tokens[i].type ]) ) {
-			matchers = [ addCombinator(elementMatcher( matchers ), matcher) ];
-		} else {
-			matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );
-
-			// Return special upon seeing a positional matcher
-			if ( matcher[ expando ] ) {
-				// Find the next relative operator (if any) for proper handling
-				j = ++i;
-				for ( ; j < len; j++ ) {
-					if ( Expr.relative[ tokens[j].type ] ) {
-						break;
-					}
-				}
-				return setMatcher(
-					i > 1 && elementMatcher( matchers ),
-					i > 1 && toSelector(
-						// If the preceding token was a descendant combinator, insert an implicit any-element `*`
-						tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" })
-					).replace( rtrim, "$1" ),
-					matcher,
-					i < j && matcherFromTokens( tokens.slice( i, j ) ),
-					j < len && matcherFromTokens( (tokens = tokens.slice( j )) ),
-					j < len && toSelector( tokens )
-				);
-			}
-			matchers.push( matcher );
-		}
-	}
-
-	return elementMatcher( matchers );
-}
-
-function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
-	var bySet = setMatchers.length > 0,
-		byElement = elementMatchers.length > 0,
-		superMatcher = function( seed, context, xml, results, outermost ) {
-			var elem, j, matcher,
-				matchedCount = 0,
-				i = "0",
-				unmatched = seed && [],
-				setMatched = [],
-				contextBackup = outermostContext,
-				// We must always have either seed elements or outermost context
-				elems = seed || byElement && Expr.find["TAG"]( "*", outermost ),
-				// Use integer dirruns iff this is the outermost matcher
-				dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),
-				len = elems.length;
-
-			if ( outermost ) {
-				outermostContext = context === document || context || outermost;
-			}
-
-			// Add elements passing elementMatchers directly to results
-			// Support: IE<9, Safari
-			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
-			for ( ; i !== len && (elem = elems[i]) != null; i++ ) {
-				if ( byElement && elem ) {
-					j = 0;
-					if ( !context && elem.ownerDocument !== document ) {
-						setDocument( elem );
-						xml = !documentIsHTML;
-					}
-					while ( (matcher = elementMatchers[j++]) ) {
-						if ( matcher( elem, context || document, xml) ) {
-							results.push( elem );
-							break;
-						}
-					}
-					if ( outermost ) {
-						dirruns = dirrunsUnique;
-					}
-				}
-
-				// Track unmatched elements for set filters
-				if ( bySet ) {
-					// They will have gone through all possible matchers
-					if ( (elem = !matcher && elem) ) {
-						matchedCount--;
-					}
-
-					// Lengthen the array for every element, matched or not
-					if ( seed ) {
-						unmatched.push( elem );
-					}
-				}
-			}
-
-			// `i` is now the count of elements visited above, and adding it to `matchedCount`
-			// makes the latter nonnegative.
-			matchedCount += i;
-
-			// Apply set filters to unmatched elements
-			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
-			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
-			// no element matchers and no seed.
-			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
-			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
-			// numerically zero.
-			if ( bySet && i !== matchedCount ) {
-				j = 0;
-				while ( (matcher = setMatchers[j++]) ) {
-					matcher( unmatched, setMatched, context, xml );
-				}
-
-				if ( seed ) {
-					// Reintegrate element matches to eliminate the need for sorting
-					if ( matchedCount > 0 ) {
-						while ( i-- ) {
-							if ( !(unmatched[i] || setMatched[i]) ) {
-								setMatched[i] = pop.call( results );
-							}
-						}
-					}
-
-					// Discard index placeholder values to get only actual matches
-					setMatched = condense( setMatched );
-				}
-
-				// Add matches to results
-				push.apply( results, setMatched );
-
-				// Seedless set matches succeeding multiple successful matchers stipulate sorting
-				if ( outermost && !seed && setMatched.length > 0 &&
-					( matchedCount + setMatchers.length ) > 1 ) {
-
-					Sizzle.uniqueSort( results );
-				}
-			}
-
-			// Override manipulation of globals by nested matchers
-			if ( outermost ) {
-				dirruns = dirrunsUnique;
-				outermostContext = contextBackup;
-			}
-
-			return unmatched;
-		};
-
-	return bySet ?
-		markFunction( superMatcher ) :
-		superMatcher;
-}
-
-compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
-	var i,
-		setMatchers = [],
-		elementMatchers = [],
-		cached = compilerCache[ selector + " " ];
-
-	if ( !cached ) {
-		// Generate a function of recursive functions that can be used to check each element
-		if ( !match ) {
-			match = tokenize( selector );
-		}
-		i = match.length;
-		while ( i-- ) {
-			cached = matcherFromTokens( match[i] );
-			if ( cached[ expando ] ) {
-				setMatchers.push( cached );
-			} else {
-				elementMatchers.push( cached );
-			}
-		}
-
-		// Cache the compiled function
-		cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );
-
-		// Save selector and tokenization
-		cached.selector = selector;
-	}
-	return cached;
-};
-
-/**
- * A low-level selection function that works with Sizzle's compiled
- *  selector functions
- * @param {String|Function} selector A selector or a pre-compiled
- *  selector function built with Sizzle.compile
- * @param {Element} context
- * @param {Array} [results]
- * @param {Array} [seed] A set of elements to match against
- */
-select = Sizzle.select = function( selector, context, results, seed ) {
-	var i, tokens, token, type, find,
-		compiled = typeof selector === "function" && selector,
-		match = !seed && tokenize( (selector = compiled.selector || selector) );
-
-	results = results || [];
-
-	// Try to minimize operations if there is only one selector in the list and no seed
-	// (the latter of which guarantees us context)
-	if ( match.length === 1 ) {
-
-		// Reduce context if the leading compound selector is an ID
-		tokens = match[0] = match[0].slice( 0 );
-		if ( tokens.length > 2 && (token = tokens[0]).type === "ID" &&
-				context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) {
-
-			context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];
-			if ( !context ) {
-				return results;
-
-			// Precompiled matchers will still verify ancestry, so step up a level
-			} else if ( compiled ) {
-				context = context.parentNode;
-			}
-
-			selector = selector.slice( tokens.shift().value.length );
-		}
-
-		// Fetch a seed set for right-to-left matching
-		i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length;
-		while ( i-- ) {
-			token = tokens[i];
-
-			// Abort if we hit a combinator
-			if ( Expr.relative[ (type = token.type) ] ) {
-				break;
-			}
-			if ( (find = Expr.find[ type ]) ) {
-				// Search, expanding context for leading sibling combinators
-				if ( (seed = find(
-					token.matches[0].replace( runescape, funescape ),
-					rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context
-				)) ) {
-
-					// If seed is empty or no tokens remain, we can return early
-					tokens.splice( i, 1 );
-					selector = seed.length && toSelector( tokens );
-					if ( !selector ) {
-						push.apply( results, seed );
-						return results;
-					}
-
-					break;
-				}
-			}
-		}
-	}
-
-	// Compile and execute a filtering function if one is not provided
-	// Provide `match` to avoid retokenization if we modified the selector above
-	( compiled || compile( selector, match ) )(
-		seed,
-		context,
-		!documentIsHTML,
-		results,
-		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
-	);
-	return results;
-};
-
-// One-time assignments
-
-// Sort stability
-support.sortStable = expando.split("").sort( sortOrder ).join("") === expando;
-
-// Support: Chrome 14-35+
-// Always assume duplicates if they aren't passed to the comparison function
-support.detectDuplicates = !!hasDuplicate;
-
-// Initialize against the default document
-setDocument();
-
-// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
-// Detached nodes confoundingly follow *each other*
-support.sortDetached = assert(function( el ) {
-	// Should return 1, but returns 4 (following)
-	return el.compareDocumentPosition( document.createElement("fieldset") ) & 1;
-});
-
-// Support: IE<8
-// Prevent attribute/property "interpolation"
-// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
-if ( !assert(function( el ) {
-	el.innerHTML = "<a href='#'></a>";
-	return el.firstChild.getAttribute("href") === "#" ;
-}) ) {
-	addHandle( "type|href|height|width", function( elem, name, isXML ) {
-		if ( !isXML ) {
-			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
-		}
-	});
-}
-
-// Support: IE<9
-// Use defaultValue in place of getAttribute("value")
-if ( !support.attributes || !assert(function( el ) {
-	el.innerHTML = "<input/>";
-	el.firstChild.setAttribute( "value", "" );
-	return el.firstChild.getAttribute( "value" ) === "";
-}) ) {
-	addHandle( "value", function( elem, name, isXML ) {
-		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
-			return elem.defaultValue;
-		}
-	});
-}
-
-// Support: IE<9
-// Use getAttributeNode to fetch booleans when getAttribute lies
-if ( !assert(function( el ) {
-	return el.getAttribute("disabled") == null;
-}) ) {
-	addHandle( booleans, function( elem, name, isXML ) {
-		var val;
-		if ( !isXML ) {
-			return elem[ name ] === true ? name.toLowerCase() :
-					(val = elem.getAttributeNode( name )) && val.specified ?
-					val.value :
-				null;
-		}
-	});
-}
-
-return Sizzle;
-
-})( window );
-
-
-
-jQuery.find = Sizzle;
-jQuery.expr = Sizzle.selectors;
-
-// Deprecated
-jQuery.expr[ ":" ] = jQuery.expr.pseudos;
-jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
-jQuery.text = Sizzle.getText;
-jQuery.isXMLDoc = Sizzle.isXML;
-jQuery.contains = Sizzle.contains;
-jQuery.escapeSelector = Sizzle.escape;
-
-
-
-
-var dir = function( elem, dir, until ) {
-	var matched = [],
-		truncate = until !== undefined;
-
-	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
-		if ( elem.nodeType === 1 ) {
-			if ( truncate && jQuery( elem ).is( until ) ) {
-				break;
-			}
-			matched.push( elem );
-		}
-	}
-	return matched;
-};
-
-
-var siblings = function( n, elem ) {
-	var matched = [];
-
-	for ( ; n; n = n.nextSibling ) {
-		if ( n.nodeType === 1 && n !== elem ) {
-			matched.push( n );
-		}
-	}
-
-	return matched;
-};
-
-
-var rneedsContext = jQuery.expr.match.needsContext;
-
-
-
-function nodeName( elem, name ) {
-
-  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
-
-};
-var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
-
-
-
-// Implement the identical functionality for filter and not
-function winnow( elements, qualifier, not ) {
-	if ( isFunction( qualifier ) ) {
-		return jQuery.grep( elements, function( elem, i ) {
-			return !!qualifier.call( elem, i, elem ) !== not;
-		} );
-	}
-
-	// Single element
-	if ( qualifier.nodeType ) {
-		return jQuery.grep( elements, function( elem ) {
-			return ( elem === qualifier ) !== not;
-		} );
-	}
-
-	// Arraylike of elements (jQuery, arguments, Array)
-	if ( typeof qualifier !== "string" ) {
-		return jQuery.grep( elements, function( elem ) {
-			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
-		} );
-	}
-
-	// Filtered directly for both simple and complex selectors
-	return jQuery.filter( qualifier, elements, not );
-}
-
-jQuery.filter = function( expr, elems, not ) {
-	var elem = elems[ 0 ];
-
-	if ( not ) {
-		expr = ":not(" + expr + ")";
-	}
-
-	if ( elems.length === 1 && elem.nodeType === 1 ) {
-		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
-	}
-
-	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
-		return elem.nodeType === 1;
-	} ) );
-};
-
-jQuery.fn.extend( {
-	find: function( selector ) {
-		var i, ret,
-			len = this.length,
-			self = this;
-
-		if ( typeof selector !== "string" ) {
-			return this.pushStack( jQuery( selector ).filter( function() {
-				for ( i = 0; i < len; i++ ) {
-					if ( jQuery.contains( self[ i ], this ) ) {
-						return true;
-					}
-				}
-			} ) );
-		}
-
-		ret = this.pushStack( [] );
-
-		for ( i = 0; i < len; i++ ) {
-			jQuery.find( selector, self[ i ], ret );
-		}
-
-		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
-	},
-	filter: function( selector ) {
-		return this.pushStack( winnow( this, selector || [], false ) );
-	},
-	not: function( selector ) {
-		return this.pushStack( winnow( this, selector || [], true ) );
-	},
-	is: function( selector ) {
-		return !!winnow(
-			this,
-
-			// If this is a positional/relative selector, check membership in the returned set
-			// so $("p:first").is("p:last") won't return true for a doc with two "p".
-			typeof selector === "string" && rneedsContext.test( selector ) ?
-				jQuery( selector ) :
-				selector || [],
-			false
-		).length;
-	}
-} );
-
-
-// Initialize a jQuery object
-
-
-// A central reference to the root jQuery(document)
-var rootjQuery,
-
-	// A simple way to check for HTML strings
-	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
-	// Strict HTML recognition (#11290: must start with <)
-	// Shortcut simple #id case for speed
-	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
-
-	init = jQuery.fn.init = function( selector, context, root ) {
-		var match, elem;
-
-		// HANDLE: $(""), $(null), $(undefined), $(false)
-		if ( !selector ) {
-			return this;
-		}
-
-		// Method init() accepts an alternate rootjQuery
-		// so migrate can support jQuery.sub (gh-2101)
-		root = root || rootjQuery;
-
-		// Handle HTML strings
-		if ( typeof selector === "string" ) {
-			if ( selector[ 0 ] === "<" &&
-				selector[ selector.length - 1 ] === ">" &&
-				selector.length >= 3 ) {
-
-				// Assume that strings that start and end with <> are HTML and skip the regex check
-				match = [ null, selector, null ];
-
-			} else {
-				match = rquickExpr.exec( selector );
-			}
-
-			// Match html or make sure no context is specified for #id
-			if ( match && ( match[ 1 ] || !context ) ) {
-
-				// HANDLE: $(html) -> $(array)
-				if ( match[ 1 ] ) {
-					context = context instanceof jQuery ? context[ 0 ] : context;
-
-					// Option to run scripts is true for back-compat
-					// Intentionally let the error be thrown if parseHTML is not present
-					jQuery.merge( this, jQuery.parseHTML(
-						match[ 1 ],
-						context && context.nodeType ? context.ownerDocument || context : document,
-						true
-					) );
-
-					// HANDLE: $(html, props)
-					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
-						for ( match in context ) {
-
-							// Properties of context are called as methods if possible
-							if ( isFunction( this[ match ] ) ) {
-								this[ match ]( context[ match ] );
-
-							// ...and otherwise set as attributes
-							} else {
-								this.attr( match, context[ match ] );
-							}
-						}
-					}
-
-					return this;
-
-				// HANDLE: $(#id)
-				} else {
-					elem = document.getElementById( match[ 2 ] );
-
-					if ( elem ) {
-
-						// Inject the element directly into the jQuery object
-						this[ 0 ] = elem;
-						this.length = 1;
-					}
-					return this;
-				}
-
-			// HANDLE: $(expr, $(...))
-			} else if ( !context || context.jquery ) {
-				return ( context || root ).find( selector );
-
-			// HANDLE: $(expr, context)
-			// (which is just equivalent to: $(context).find(expr)
-			} else {
-				return this.constructor( context ).find( selector );
-			}
-
-		// HANDLE: $(DOMElement)
-		} else if ( selector.nodeType ) {
-			this[ 0 ] = selector;
-			this.length = 1;
-			return this;
-
-		// HANDLE: $(function)
-		// Shortcut for document ready
-		} else if ( isFunction( selector ) ) {
-			return root.ready !== undefined ?
-				root.ready( selector ) :
-
-				// Execute immediately if ready is not present
-				selector( jQuery );
-		}
-
-		return jQuery.makeArray( selector, this );
-	};
-
-// Give the init function the jQuery prototype for later instantiation
-init.prototype = jQuery.fn;
-
-// Initialize central reference
-rootjQuery = jQuery( document );
-
-
-var rparentsprev = /^(?:parents|prev(?:Until|All))/,
-
-	// Methods guaranteed to produce a unique set when starting from a unique set
-	guaranteedUnique = {
-		children: true,
-		contents: true,
-		next: true,
-		prev: true
-	};
-
-jQuery.fn.extend( {
-	has: function( target ) {
-		var targets = jQuery( target, this ),
-			l = targets.length;
-
-		return this.filter( function() {
-			var i = 0;
-			for ( ; i < l; i++ ) {
-				if ( jQuery.contains( this, targets[ i ] ) ) {
-					return true;
-				}
-			}
-		} );
-	},
-
-	closest: function( selectors, context ) {
-		var cur,
-			i = 0,
-			l = this.length,
-			matched = [],
-			targets = typeof selectors !== "string" && jQuery( selectors );
-
-		// Positional selectors never match, since there's no _selection_ context
-		if ( !rneedsContext.test( selectors ) ) {
-			for ( ; i < l; i++ ) {
-				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
-
-					// Always skip document fragments
-					if ( cur.nodeType < 11 && ( targets ?
-						targets.index( cur ) > -1 :
-
-						// Don't pass non-elements to Sizzle
-						cur.nodeType === 1 &&
-							jQuery.find.matchesSelector( cur, selectors ) ) ) {
-
-						matched.push( cur );
-						break;
-					}
-				}
-			}
-		}
-
-		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
-	},
-
-	// Determine the position of an element within the set
-	index: function( elem ) {
-
-		// No argument, return index in parent
-		if ( !elem ) {
-			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
-		}
-
-		// Index in selector
-		if ( typeof elem === "string" ) {
-			return indexOf.call( jQuery( elem ), this[ 0 ] );
-		}
-
-		// Locate the position of the desired element
-		return indexOf.call( this,
-
-			// If it receives a jQuery object, the first element is used
-			elem.jquery ? elem[ 0 ] : elem
-		);
-	},
-
-	add: function( selector, context ) {
-		return this.pushStack(
-			jQuery.uniqueSort(
-				jQuery.merge( this.get(), jQuery( selector, context ) )
-			)
-		);
-	},
-
-	addBack: function( selector ) {
-		return this.add( selector == null ?
-			this.prevObject : this.prevObject.filter( selector )
-		);
-	}
-} );
-
-function sibling( cur, dir ) {
-	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
-	return cur;
-}
-
-jQuery.each( {
-	parent: function( elem ) {
-		var parent = elem.parentNode;
-		return parent && parent.nodeType !== 11 ? parent : null;
-	},
-	parents: function( elem ) {
-		return dir( elem, "parentNode" );
-	},
-	parentsUntil: function( elem, i, until ) {
-		return dir( elem, "parentNode", until );
-	},
-	next: function( elem ) {
-		return sibling( elem, "nextSibling" );
-	},
-	prev: function( elem ) {
-		return sibling( elem, "previousSibling" );
-	},
-	nextAll: function( elem ) {
-		return dir( elem, "nextSibling" );
-	},
-	prevAll: function( elem ) {
-		return dir( elem, "previousSibling" );
-	},
-	nextUntil: function( elem, i, until ) {
-		return dir( elem, "nextSibling", until );
-	},
-	prevUntil: function( elem, i, until ) {
-		return dir( elem, "previousSibling", until );
-	},
-	siblings: function( elem ) {
-		return siblings( ( elem.parentNode || {} ).firstChild, elem );
-	},
-	children: function( elem ) {
-		return siblings( elem.firstChild );
-	},
-	contents: function( elem ) {
-		if ( typeof elem.contentDocument !== "undefined" ) {
-			return elem.contentDocument;
-		}
-
-		// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
-		// Treat the template element as a regular one in browsers that
-		// don't support it.
-		if ( nodeName( elem, "template" ) ) {
-			elem = elem.content || elem;
-		}
-
-		return jQuery.merge( [], elem.childNodes );
-	}
-}, function( name, fn ) {
-	jQuery.fn[ name ] = function( until, selector ) {
-		var matched = jQuery.map( this, fn, until );
-
-		if ( name.slice( -5 ) !== "Until" ) {
-			selector = until;
-		}
-
-		if ( selector && typeof selector === "string" ) {
-			matched = jQuery.filter( selector, matched );
-		}
-
-		if ( this.length > 1 ) {
-
-			// Remove duplicates
-			if ( !guaranteedUnique[ name ] ) {
-				jQuery.uniqueSort( matched );
-			}
-
-			// Reverse order for parents* and prev-derivatives
-			if ( rparentsprev.test( name ) ) {
-				matched.reverse();
-			}
-		}
-
-		return this.pushStack( matched );
-	};
-} );
-var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
-
-
-
-// Convert String-formatted options into Object-formatted ones
-function createOptions( options ) {
-	var object = {};
-	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
-		object[ flag ] = true;
-	} );
-	return object;
-}
-
-/*
- * Create a callback list using the following parameters:
- *
- *	options: an optional list of space-separated options that will change how
- *			the callback list behaves or a more traditional option object
- *
- * By default a callback list will act like an event callback list and can be
- * "fired" multiple times.
- *
- * Possible options:
- *
- *	once:			will ensure the callback list can only be fired once (like a Deferred)
- *
- *	memory:			will keep track of previous values and will call any callback added
- *					after the list has been fired right away with the latest "memorized"
- *					values (like a Deferred)
- *
- *	unique:			will ensure a callback can only be added once (no duplicate in the list)
- *
- *	stopOnFalse:	interrupt callings when a callback returns false
- *
- */
-jQuery.Callbacks = function( options ) {
-
-	// Convert options from String-formatted to Object-formatted if needed
-	// (we check in cache first)
-	options = typeof options === "string" ?
-		createOptions( options ) :
-		jQuery.extend( {}, options );
-
-	var // Flag to know if list is currently firing
-		firing,
-
-		// Last fire value for non-forgettable lists
-		memory,
-
-		// Flag to know if list was already fired
-		fired,
-
-		// Flag to prevent firing
-		locked,
-
-		// Actual callback list
-		list = [],
-
-		// Queue of execution data for repeatable lists
-		queue = [],
-
-		// Index of currently firing callback (modified by add/remove as needed)
-		firingIndex = -1,
-
-		// Fire callbacks
-		fire = function() {
-
-			// Enforce single-firing
-			locked = locked || options.once;
-
-			// Execute callbacks for all pending executions,
-			// respecting firingIndex overrides and runtime changes
-			fired = firing = true;
-			for ( ; queue.length; firingIndex = -1 ) {
-				memory = queue.shift();
-				while ( ++firingIndex < list.length ) {
-
-					// Run callback and check for early termination
-					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
-						options.stopOnFalse ) {
-
-						// Jump to end and forget the data so .add doesn't re-fire
-						firingIndex = list.length;
-						memory = false;
-					}
-				}
-			}
-
-			// Forget the data if we're done with it
-			if ( !options.memory ) {
-				memory = false;
-			}
-
-			firing = false;
-
-			// Clean up if we're done firing for good
-			if ( locked ) {
-
-				// Keep an empty list if we have data for future add calls
-				if ( memory ) {
-					list = [];
-
-				// Otherwise, this object is spent
-				} else {
-					list = "";
-				}
-			}
-		},
-
-		// Actual Callbacks object
-		self = {
-
-			// Add a callback or a collection of callbacks to the list
-			add: function() {
-				if ( list ) {
-
-					// If we have memory from a past run, we should fire after adding
-					if ( memory && !firing ) {
-						firingIndex = list.length - 1;
-						queue.push( memory );
-					}
-
-					( function add( args ) {
-						jQuery.each( args, function( _, arg ) {
-							if ( isFunction( arg ) ) {
-								if ( !options.unique || !self.has( arg ) ) {
-									list.push( arg );
-								}
-							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
-
-								// Inspect recursively
-								add( arg );
-							}
-						} );
-					} )( arguments );
-
-					if ( memory && !firing ) {
-						fire();
-					}
-				}
-				return this;
-			},
-
-			// Remove a callback from the list
-			remove: function() {
-				jQuery.each( arguments, function( _, arg ) {
-					var index;
-					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
-						list.splice( index, 1 );
-
-						// Handle firing indexes
-						if ( index <= firingIndex ) {
-							firingIndex--;
-						}
-					}
-				} );
-				return this;
-			},
-
-			// Check if a given callback is in the list.
-			// If no argument is given, return whether or not list has callbacks attached.
-			has: function( fn ) {
-				return fn ?
-					jQuery.inArray( fn, list ) > -1 :
-					list.length > 0;
-			},
-
-			// Remove all callbacks from the list
-			empty: function() {
-				if ( list ) {
-					list = [];
-				}
-				return this;
-			},
-
-			// Disable .fire and .add
-			// Abort any current/pending executions
-			// Clear all callbacks and values
-			disable: function() {
-				locked = queue = [];
-				list = memory = "";
-				return this;
-			},
-			disabled: function() {
-				return !list;
-			},
-
-			// Disable .fire
-			// Also disable .add unless we have memory (since it would have no effect)
-			// Abort any pending executions
-			lock: function() {
-				locked = queue = [];
-				if ( !memory && !firing ) {
-					list = memory = "";
-				}
-				return this;
-			},
-			locked: function() {
-				return !!locked;
-			},
-
-			// Call all callbacks with the given context and arguments
-			fireWith: function( context, args ) {
-				if ( !locked ) {
-					args = args || [];
-					args = [ context, args.slice ? args.slice() : args ];
-					queue.push( args );
-					if ( !firing ) {
-						fire();
-					}
-				}
-				return this;
-			},
-
-			// Call all the callbacks with the given arguments
-			fire: function() {
-				self.fireWith( this, arguments );
-				return this;
-			},
-
-			// To know if the callbacks have already been called at least once
-			fired: function() {
-				return !!fired;
-			}
-		};
-
-	return self;
-};
-
-
-function Identity( v ) {
-	return v;
-}
-function Thrower( ex ) {
-	throw ex;
-}
-
-function adoptValue( value, resolve, reject, noValue ) {
-	var method;
-
-	try {
-
-		// Check for promise aspect first to privilege synchronous behavior
-		if ( value && isFunction( ( method = value.promise ) ) ) {
-			method.call( value ).done( resolve ).fail( reject );
-
-		// Other thenables
-		} else if ( value && isFunction( ( method = value.then ) ) ) {
-			method.call( value, resolve, reject );
-
-		// Other non-thenables
-		} else {
-
-			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
-			// * false: [ value ].slice( 0 ) => resolve( value )
-			// * true: [ value ].slice( 1 ) => resolve()
-			resolve.apply( undefined, [ value ].slice( noValue ) );
-		}
-
-	// For Promises/A+, convert exceptions into rejections
-	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
-	// Deferred#then to conditionally suppress rejection.
-	} catch ( value ) {
-
-		// Support: Android 4.0 only
-		// Strict mode functions invoked without .call/.apply get global-object context
-		reject.apply( undefined, [ value ] );
-	}
-}
-
-jQuery.extend( {
-
-	Deferred: function( func ) {
-		var tuples = [
-
-				// action, add listener, callbacks,
-				// ... .then handlers, argument index, [final state]
-				[ "notify", "progress", jQuery.Callbacks( "memory" ),
-					jQuery.Callbacks( "memory" ), 2 ],
-				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
-					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
-				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
-					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
-			],
-			state = "pending",
-			promise = {
-				state: function() {
-					return state;
-				},
-				always: function() {
-					deferred.done( arguments ).fail( arguments );
-					return this;
-				},
-				"catch": function( fn ) {
-					return promise.then( null, fn );
-				},
-
-				// Keep pipe for back-compat
-				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
-					var fns = arguments;
-
-					return jQuery.Deferred( function( newDefer ) {
-						jQuery.each( tuples, function( i, tuple ) {
-
-							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
-							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
-
-							// deferred.progress(function() { bind to newDefer or newDefer.notify })
-							// deferred.done(function() { bind to newDefer or newDefer.resolve })
-							// deferred.fail(function() { bind to newDefer or newDefer.reject })
-							deferred[ tuple[ 1 ] ]( function() {
-								var returned = fn && fn.apply( this, arguments );
-								if ( returned && isFunction( returned.promise ) ) {
-									returned.promise()
-										.progress( newDefer.notify )
-										.done( newDefer.resolve )
-										.fail( newDefer.reject );
-								} else {
-									newDefer[ tuple[ 0 ] + "With" ](
-										this,
-										fn ? [ returned ] : arguments
-									);
-								}
-							} );
-						} );
-						fns = null;
-					} ).promise();
-				},
-				then: function( onFulfilled, onRejected, onProgress ) {
-					var maxDepth = 0;
-					function resolve( depth, deferred, handler, special ) {
-						return function() {
-							var that = this,
-								args = arguments,
-								mightThrow = function() {
-									var returned, then;
-
-									// Support: Promises/A+ section 2.3.3.3.3
-									// https://promisesaplus.com/#point-59
-									// Ignore double-resolution attempts
-									if ( depth < maxDepth ) {
-										return;
-									}
-
-									returned = handler.apply( that, args );
-
-									// Support: Promises/A+ section 2.3.1
-									// https://promisesaplus.com/#point-48
-									if ( returned === deferred.promise() ) {
-										throw new TypeError( "Thenable self-resolution" );
-									}
-
-									// Support: Promises/A+ sections 2.3.3.1, 3.5
-									// https://promisesaplus.com/#point-54
-									// https://promisesaplus.com/#point-75
-									// Retrieve `then` only once
-									then = returned &&
-
-										// Support: Promises/A+ section 2.3.4
-										// https://promisesaplus.com/#point-64
-										// Only check objects and functions for thenability
-										( typeof returned === "object" ||
-											typeof returned === "function" ) &&
-										returned.then;
-
-									// Handle a returned thenable
-									if ( isFunction( then ) ) {
-
-										// Special processors (notify) just wait for resolution
-										if ( special ) {
-											then.call(
-												returned,
-												resolve( maxDepth, deferred, Identity, special ),
-												resolve( maxDepth, deferred, Thrower, special )
-											);
-
-										// Normal processors (resolve) also hook into progress
-										} else {
-
-											// ...and disregard older resolution values
-											maxDepth++;
-
-											then.call(
-												returned,
-												resolve( maxDepth, deferred, Identity, special ),
-												resolve( maxDepth, deferred, Thrower, special ),
-												resolve( maxDepth, deferred, Identity,
-													deferred.notifyWith )
-											);
-										}
-
-									// Handle all other returned values
-									} else {
-
-										// Only substitute handlers pass on context
-										// and multiple values (non-spec behavior)
-										if ( handler !== Identity ) {
-											that = undefined;
-											args = [ returned ];
-										}
-
-										// Process the value(s)
-										// Default process is resolve
-										( special || deferred.resolveWith )( that, args );
-									}
-								},
-
-								// Only normal processors (resolve) catch and reject exceptions
-								process = special ?
-									mightThrow :
-									function() {
-										try {
-											mightThrow();
-										} catch ( e ) {
-
-											if ( jQuery.Deferred.exceptionHook ) {
-												jQuery.Deferred.exceptionHook( e,
-													process.stackTrace );
-											}
-
-											// Support: Promises/A+ section 2.3.3.3.4.1
-											// https://promisesaplus.com/#point-61
-											// Ignore post-resolution exceptions
-											if ( depth + 1 >= maxDepth ) {
-
-												// Only substitute handlers pass on context
-												// and multiple values (non-spec behavior)
-												if ( handler !== Thrower ) {
-													that = undefined;
-													args = [ e ];
-												}
-
-												deferred.rejectWith( that, args );
-											}
-										}
-									};
-
-							// Support: Promises/A+ section 2.3.3.3.1
-							// https://promisesaplus.com/#point-57
-							// Re-resolve promises immediately to dodge false rejection from
-							// subsequent errors
-							if ( depth ) {
-								process();
-							} else {
-
-								// Call an optional hook to record the stack, in case of exception
-								// since it's otherwise lost when execution goes async
-								if ( jQuery.Deferred.getStackHook ) {
-									process.stackTrace = jQuery.Deferred.getStackHook();
-								}
-								window.setTimeout( process );
-							}
-						};
-					}
-
-					return jQuery.Deferred( function( newDefer ) {
-
-						// progress_handlers.add( ... )
-						tuples[ 0 ][ 3 ].add(
-							resolve(
-								0,
-								newDefer,
-								isFunction( onProgress ) ?
-									onProgress :
-									Identity,
-								newDefer.notifyWith
-							)
-						);
-
-						// fulfilled_handlers.add( ... )
-						tuples[ 1 ][ 3 ].add(
-							resolve(
-								0,
-								newDefer,
-								isFunction( onFulfilled ) ?
-									onFulfilled :
-									Identity
-							)
-						);
-
-						// rejected_handlers.add( ... )
-						tuples[ 2 ][ 3 ].add(
-							resolve(
-								0,
-								newDefer,
-								isFunction( onRejected ) ?
-									onRejected :
-									Thrower
-							)
-						);
-					} ).promise();
-				},
-
-				// Get a promise for this deferred
-				// If obj is provided, the promise aspect is added to the object
-				promise: function( obj ) {
-					return obj != null ? jQuery.extend( obj, promise ) : promise;
-				}
-			},
-			deferred = {};
-
-		// Add list-specific methods
-		jQuery.each( tuples, function( i, tuple ) {
-			var list = tuple[ 2 ],
-				stateString = tuple[ 5 ];
-
-			// promise.progress = list.add
-			// promise.done = list.add
-			// promise.fail = list.add
-			promise[ tuple[ 1 ] ] = list.add;
-
-			// Handle state
-			if ( stateString ) {
-				list.add(
-					function() {
-
-						// state = "resolved" (i.e., fulfilled)
-						// state = "rejected"
-						state = stateString;
-					},
-
-					// rejected_callbacks.disable
-					// fulfilled_callbacks.disable
-					tuples[ 3 - i ][ 2 ].disable,
-
-					// rejected_handlers.disable
-					// fulfilled_handlers.disable
-					tuples[ 3 - i ][ 3 ].disable,
-
-					// progress_callbacks.lock
-					tuples[ 0 ][ 2 ].lock,
-
-					// progress_handlers.lock
-					tuples[ 0 ][ 3 ].lock
-				);
-			}
-
-			// progress_handlers.fire
-			// fulfilled_handlers.fire
-			// rejected_handlers.fire
-			list.add( tuple[ 3 ].fire );
-
-			// deferred.notify = function() { deferred.notifyWith(...) }
-			// deferred.resolve = function() { deferred.resolveWith(...) }
-			// deferred.reject = function() { deferred.rejectWith(...) }
-			deferred[ tuple[ 0 ] ] = function() {
-				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
-				return this;
-			};
-
-			// deferred.notifyWith = list.fireWith
-			// deferred.resolveWith = list.fireWith
-			// deferred.rejectWith = list.fireWith
-			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
-		} );
-
-		// Make the deferred a promise
-		promise.promise( deferred );
-
-		// Call given func if any
-		if ( func ) {
-			func.call( deferred, deferred );
-		}
-
-		// All done!
-		return deferred;
-	},
-
-	// Deferred helper
-	when: function( singleValue ) {
-		var
-
-			// count of uncompleted subordinates
-			remaining = arguments.length,
-
-			// count of unprocessed arguments
-			i = remaining,
-
-			// subordinate fulfillment data
-			resolveContexts = Array( i ),
-			resolveValues = slice.call( arguments ),
-
-			// the master Deferred
-			master = jQuery.Deferred(),
-
-			// subordinate callback factory
-			updateFunc = function( i ) {
-				return function( value ) {
-					resolveContexts[ i ] = this;
-					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
-					if ( !( --remaining ) ) {
-						master.resolveWith( resolveContexts, resolveValues );
-					}
-				};
-			};
-
-		// Single- and empty arguments are adopted like Promise.resolve
-		if ( remaining <= 1 ) {
-			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
-				!remaining );
-
-			// Use .then() to unwrap secondary thenables (cf. gh-3000)
-			if ( master.state() === "pending" ||
-				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
-
-				return master.then();
-			}
-		}
-
-		// Multiple arguments are aggregated like Promise.all array elements
-		while ( i-- ) {
-			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
-		}
-
-		return master.promise();
-	}
-} );
-
-
-// These usually indicate a programmer mistake during development,
-// warn about them ASAP rather than swallowing them by default.
-var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
-
-jQuery.Deferred.exceptionHook = function( error, stack ) {
-
-	// Support: IE 8 - 9 only
-	// Console exists when dev tools are open, which can happen at any time
-	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
-		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
-	}
-};
-
-
-
-
-jQuery.readyException = function( error ) {
-	window.setTimeout( function() {
-		throw error;
-	} );
-};
-
-
-
-
-// The deferred used on DOM ready
-var readyList = jQuery.Deferred();
-
-jQuery.fn.ready = function( fn ) {
-
-	readyList
-		.then( fn )
-
-		// Wrap jQuery.readyException in a function so that the lookup
-		// happens at the time of error handling instead of callback
-		// registration.
-		.catch( function( error ) {
-			jQuery.readyException( error );
-		} );
-
-	return this;
-};
-
-jQuery.extend( {
-
-	// Is the DOM ready to be used? Set to true once it occurs.
-	isReady: false,
-
-	// A counter to track how many items to wait for before
-	// the ready event fires. See #6781
-	readyWait: 1,
-
-	// Handle when the DOM is ready
-	ready: function( wait ) {
-
-		// Abort if there are pending holds or we're already ready
-		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
-			return;
-		}
-
-		// Remember that the DOM is ready
-		jQuery.isReady = true;
-
-		// If a normal DOM Ready event fired, decrement, and wait if need be
-		if ( wait !== true && --jQuery.readyWait > 0 ) {
-			return;
-		}
-
-		// If there are functions bound, to execute
-		readyList.resolveWith( document, [ jQuery ] );
-	}
-} );
-
-jQuery.ready.then = readyList.then;
-
-// The ready event handler and self cleanup method
-function completed() {
-	document.removeEventListener( "DOMContentLoaded", completed );
-	window.removeEventListener( "load", completed );
-	jQuery.ready();
-}
-
-// Catch cases where $(document).ready() is called
-// after the browser event has already occurred.
-// Support: IE <=9 - 10 only
-// Older IE sometimes signals "interactive" too soon
-if ( document.readyState === "complete" ||
-	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
-
-	// Handle it asynchronously to allow scripts the opportunity to delay ready
-	window.setTimeout( jQuery.ready );
-
-} else {
-
-	// Use the handy event callback
-	document.addEventListener( "DOMContentLoaded", completed );
-
-	// A fallback to window.onload, that will always work
-	window.addEventListener( "load", completed );
-}
-
-
-
-
-// Multifunctional method to get and set values of a collection
-// The value/s can optionally be executed if it's a function
-var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
-	var i = 0,
-		len = elems.length,
-		bulk = key == null;
-
-	// Sets many values
-	if ( toType( key ) === "object" ) {
-		chainable = true;
-		for ( i in key ) {
-			access( elems, fn, i, key[ i ], true, emptyGet, raw );
-		}
-
-	// Sets one value
-	} else if ( value !== undefined ) {
-		chainable = true;
-
-		if ( !isFunction( value ) ) {
-			raw = true;
-		}
-
-		if ( bulk ) {
-
-			// Bulk operations run against the entire set
-			if ( raw ) {
-				fn.call( elems, value );
-				fn = null;
-
-			// ...except when executing function values
-			} else {
-				bulk = fn;
-				fn = function( elem, key, value ) {
-					return bulk.call( jQuery( elem ), value );
-				};
-			}
-		}
-
-		if ( fn ) {
-			for ( ; i < len; i++ ) {
-				fn(
-					elems[ i ], key, raw ?
-					value :
-					value.call( elems[ i ], i, fn( elems[ i ], key ) )
-				);
-			}
-		}
-	}
-
-	if ( chainable ) {
-		return elems;
-	}
-
-	// Gets
-	if ( bulk ) {
-		return fn.call( elems );
-	}
-
-	return len ? fn( elems[ 0 ], key ) : emptyGet;
-};
-
-
-// Matches dashed string for camelizing
-var rmsPrefix = /^-ms-/,
-	rdashAlpha = /-([a-z])/g;
-
-// Used by camelCase as callback to replace()
-function fcamelCase( all, letter ) {
-	return letter.toUpperCase();
-}
-
-// Convert dashed to camelCase; used by the css and data modules
-// Support: IE <=9 - 11, Edge 12 - 15
-// Microsoft forgot to hump their vendor prefix (#9572)
-function camelCase( string ) {
-	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
-}
-var acceptData = function( owner ) {
-
-	// Accepts only:
-	//  - Node
-	//    - Node.ELEMENT_NODE
-	//    - Node.DOCUMENT_NODE
-	//  - Object
-	//    - Any
-	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
-};
-
-
-
-
-function Data() {
-	this.expando = jQuery.expando + Data.uid++;
-}
-
-Data.uid = 1;
-
-Data.prototype = {
-
-	cache: function( owner ) {
-
-		// Check if the owner object already has a cache
-		var value = owner[ this.expando ];
-
-		// If not, create one
-		if ( !value ) {
-			value = {};
-
-			// We can accept data for non-element nodes in modern browsers,
-			// but we should not, see #8335.
-			// Always return an empty object.
-			if ( acceptData( owner ) ) {
-
-				// If it is a node unlikely to be stringify-ed or looped over
-				// use plain assignment
-				if ( owner.nodeType ) {
-					owner[ this.expando ] = value;
-
-				// Otherwise secure it in a non-enumerable property
-				// configurable must be true to allow the property to be
-				// deleted when data is removed
-				} else {
-					Object.defineProperty( owner, this.expando, {
-						value: value,
-						configurable: true
-					} );
-				}
-			}
-		}
-
-		return value;
-	},
-	set: function( owner, data, value ) {
-		var prop,
-			cache = this.cache( owner );
-
-		// Handle: [ owner, key, value ] args
-		// Always use camelCase key (gh-2257)
-		if ( typeof data === "string" ) {
-			cache[ camelCase( data ) ] = value;
-
-		// Handle: [ owner, { properties } ] args
-		} else {
-
-			// Copy the properties one-by-one to the cache object
-			for ( prop in data ) {
-				cache[ camelCase( prop ) ] = data[ prop ];
-			}
-		}
-		return cache;
-	},
-	get: function( owner, key ) {
-		return key === undefined ?
-			this.cache( owner ) :
-
-			// Always use camelCase key (gh-2257)
-			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
-	},
-	access: function( owner, key, value ) {
-
-		// In cases where either:
-		//
-		//   1. No key was specified
-		//   2. A string key was specified, but no value provided
-		//
-		// Take the "read" path and allow the get method to determine
-		// which value to return, respectively either:
-		//
-		//   1. The entire cache object
-		//   2. The data stored at the key
-		//
-		if ( key === undefined ||
-				( ( key && typeof key === "string" ) && value === undefined ) ) {
-
-			return this.get( owner, key );
-		}
-
-		// When the key is not a string, or both a key and value
-		// are specified, set or extend (existing objects) with either:
-		//
-		//   1. An object of properties
-		//   2. A key and value
-		//
-		this.set( owner, key, value );
-
-		// Since the "set" path can have two possible entry points
-		// return the expected data based on which path was taken[*]
-		return value !== undefined ? value : key;
-	},
-	remove: function( owner, key ) {
-		var i,
-			cache = owner[ this.expando ];
-
-		if ( cache === undefined ) {
-			return;
-		}
-
-		if ( key !== undefined ) {
-
-			// Support array or space separated string of keys
-			if ( Array.isArray( key ) ) {
-
-				// If key is an array of keys...
-				// We always set camelCase keys, so remove that.
-				key = key.map( camelCase );
-			} else {
-				key = camelCase( key );
-
-				// If a key with the spaces exists, use it.
-				// Otherwise, create an array by matching non-whitespace
-				key = key in cache ?
-					[ key ] :
-					( key.match( rnothtmlwhite ) || [] );
-			}
-
-			i = key.length;
-
-			while ( i-- ) {
-				delete cache[ key[ i ] ];
-			}
-		}
-
-		// Remove the expando if there's no more data
-		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
-
-			// Support: Chrome <=35 - 45
-			// Webkit & Blink performance suffers when deleting properties
-			// from DOM nodes, so set to undefined instead
-			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
-			if ( owner.nodeType ) {
-				owner[ this.expando ] = undefined;
-			} else {
-				delete owner[ this.expando ];
-			}
-		}
-	},
-	hasData: function( owner ) {
-		var cache = owner[ this.expando ];
-		return cache !== undefined && !jQuery.isEmptyObject( cache );
-	}
-};
-var dataPriv = new Data();
-
-var dataUser = new Data();
-
-
-
-//	Implementation Summary
-//
-//	1. Enforce API surface and semantic compatibility with 1.9.x branch
-//	2. Improve the module's maintainability by reducing the storage
-//		paths to a single mechanism.
-//	3. Use the same single mechanism to support "private" and "user" data.
-//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
-//	5. Avoid exposing implementation details on user objects (eg. expando properties)
-//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
-
-var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
-	rmultiDash = /[A-Z]/g;
-
-function getData( data ) {
-	if ( data === "true" ) {
-		return true;
-	}
-
-	if ( data === "false" ) {
-		return false;
-	}
-
-	if ( data === "null" ) {
-		return null;
-	}
-
-	// Only convert to a number if it doesn't change the string
-	if ( data === +data + "" ) {
-		return +data;
-	}
-
-	if ( rbrace.test( data ) ) {
-		return JSON.parse( data );
-	}
-
-	return data;
-}
-
-function dataAttr( elem, key, data ) {
-	var name;
-
-	// If nothing was found internally, try to fetch any
-	// data from the HTML5 data-* attribute
-	if ( data === undefined && elem.nodeType === 1 ) {
-		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
-		data = elem.getAttribute( name );
-
-		if ( typeof data === "string" ) {
-			try {
-				data = getData( data );
-			} catch ( e ) {}
-
-			// Make sure we set the data so it isn't changed later
-			dataUser.set( elem, key, data );
-		} else {
-			data = undefined;
-		}
-	}
-	return data;
-}
-
-jQuery.extend( {
-	hasData: function( elem ) {
-		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
-	},
-
-	data: function( elem, name, data ) {
-		return dataUser.access( elem, name, data );
-	},
-
-	removeData: function( elem, name ) {
-		dataUser.remove( elem, name );
-	},
-
-	// TODO: Now that all calls to _data and _removeData have been replaced
-	// with direct calls to dataPriv methods, these can be deprecated.
-	_data: function( elem, name, data ) {
-		return dataPriv.access( elem, name, data );
-	},
-
-	_removeData: function( elem, name ) {
-		dataPriv.remove( elem, name );
-	}
-} );
-
-jQuery.fn.extend( {
-	data: function( key, value ) {
-		var i, name, data,
-			elem = this[ 0 ],
-			attrs = elem && elem.attributes;
-
-		// Gets all values
-		if ( key === undefined ) {
-			if ( this.length ) {
-				data = dataUser.get( elem );
-
-				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
-					i = attrs.length;
-					while ( i-- ) {
-
-						// Support: IE 11 only
-						// The attrs elements can be null (#14894)
-						if ( attrs[ i ] ) {
-							name = attrs[ i ].name;
-							if ( name.indexOf( "data-" ) === 0 ) {
-								name = camelCase( name.slice( 5 ) );
-								dataAttr( elem, name, data[ name ] );
-							}
-						}
-					}
-					dataPriv.set( elem, "hasDataAttrs", true );
-				}
-			}
-
-			return data;
-		}
-
-		// Sets multiple values
-		if ( typeof key === "object" ) {
-			return this.each( function() {
-				dataUser.set( this, key );
-			} );
-		}
-
-		return access( this, function( value ) {
-			var data;
-
-			// The calling jQuery object (element matches) is not empty
-			// (and therefore has an element appears at this[ 0 ]) and the
-			// `value` parameter was not undefined. An empty jQuery object
-			// will result in `undefined` for elem = this[ 0 ] which will
-			// throw an exception if an attempt to read a data cache is made.
-			if ( elem && value === undefined ) {
-
-				// Attempt to get data from the cache
-				// The key will always be camelCased in Data
-				data = dataUser.get( elem, key );
-				if ( data !== undefined ) {
-					return data;
-				}
-
-				// Attempt to "discover" the data in
-				// HTML5 custom data-* attrs
-				data = dataAttr( elem, key );
-				if ( data !== undefined ) {
-					return data;
-				}
-
-				// We tried really hard, but the data doesn't exist.
-				return;
-			}
-
-			// Set the data...
-			this.each( function() {
-
-				// We always store the camelCased key
-				dataUser.set( this, key, value );
-			} );
-		}, null, value, arguments.length > 1, null, true );
-	},
-
-	removeData: function( key ) {
-		return this.each( function() {
-			dataUser.remove( this, key );
-		} );
-	}
-} );
-
-
-jQuery.extend( {
-	queue: function( elem, type, data ) {
-		var queue;
-
-		if ( elem ) {
-			type = ( type || "fx" ) + "queue";
-			queue = dataPriv.get( elem, type );
-
-			// Speed up dequeue by getting out quickly if this is just a lookup
-			if ( data ) {
-				if ( !queue || Array.isArray( data ) ) {
-					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
-				} else {
-					queue.push( data );
-				}
-			}
-			return queue || [];
-		}
-	},
-
-	dequeue: function( elem, type ) {
-		type = type || "fx";
-
-		var queue = jQuery.queue( elem, type ),
-			startLength = queue.length,
-			fn = queue.shift(),
-			hooks = jQuery._queueHooks( elem, type ),
-			next = function() {
-				jQuery.dequeue( elem, type );
-			};
-
-		// If the fx queue is dequeued, always remove the progress sentinel
-		if ( fn === "inprogress" ) {
-			fn = queue.shift();
-			startLength--;
-		}
-
-		if ( fn ) {
-
-			// Add a progress sentinel to prevent the fx queue from being
-			// automatically dequeued
-			if ( type === "fx" ) {
-				queue.unshift( "inprogress" );
-			}
-
-			// Clear up the last queue stop function
-			delete hooks.stop;
-			fn.call( elem, next, hooks );
-		}
-
-		if ( !startLength && hooks ) {
-			hooks.empty.fire();
-		}
-	},
-
-	// Not public - generate a queueHooks object, or return the current one
-	_queueHooks: function( elem, type ) {
-		var key = type + "queueHooks";
-		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
-			empty: jQuery.Callbacks( "once memory" ).add( function() {
-				dataPriv.remove( elem, [ type + "queue", key ] );
-			} )
-		} );
-	}
-} );
-
-jQuery.fn.extend( {
-	queue: function( type, data ) {
-		var setter = 2;
-
-		if ( typeof type !== "string" ) {
-			data = type;
-			type = "fx";
-			setter--;
-		}
-
-		if ( arguments.length < setter ) {
-			return jQuery.queue( this[ 0 ], type );
-		}
-
-		return data === undefined ?
-			this :
-			this.each( function() {
-				var queue = jQuery.queue( this, type, data );
-
-				// Ensure a hooks for this queue
-				jQuery._queueHooks( this, type );
-
-				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
-					jQuery.dequeue( this, type );
-				}
-			} );
-	},
-	dequeue: function( type ) {
-		return this.each( function() {
-			jQuery.dequeue( this, type );
-		} );
-	},
-	clearQueue: function( type ) {
-		return this.queue( type || "fx", [] );
-	},
-
-	// Get a promise resolved when queues of a certain type
-	// are emptied (fx is the type by default)
-	promise: function( type, obj ) {
-		var tmp,
-			count = 1,
-			defer = jQuery.Deferred(),
-			elements = this,
-			i = this.length,
-			resolve = function() {
-				if ( !( --count ) ) {
-					defer.resolveWith( elements, [ elements ] );
-				}
-			};
-
-		if ( typeof type !== "string" ) {
-			obj = type;
-			type = undefined;
-		}
-		type = type || "fx";
-
-		while ( i-- ) {
-			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
-			if ( tmp && tmp.empty ) {
-				count++;
-				tmp.empty.add( resolve );
-			}
-		}
-		resolve();
-		return defer.promise( obj );
-	}
-} );
-var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
-
-var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
-
-
-var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
-
-var documentElement = document.documentElement;
-
-
-
-	var isAttached = function( elem ) {
-			return jQuery.contains( elem.ownerDocument, elem );
-		},
-		composed = { composed: true };
-
-	// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
-	// Check attachment across shadow DOM boundaries when possible (gh-3504)
-	// Support: iOS 10.0-10.2 only
-	// Early iOS 10 versions support `attachShadow` but not `getRootNode`,
-	// leading to errors. We need to check for `getRootNode`.
-	if ( documentElement.getRootNode ) {
-		isAttached = function( elem ) {
-			return jQuery.contains( elem.ownerDocument, elem ) ||
-				elem.getRootNode( composed ) === elem.ownerDocument;
-		};
-	}
-var isHiddenWithinTree = function( elem, el ) {
-
-		// isHiddenWithinTree might be called from jQuery#filter function;
-		// in that case, element will be second argument
-		elem = el || elem;
-
-		// Inline style trumps all
-		return elem.style.display === "none" ||
-			elem.style.display === "" &&
-
-			// Otherwise, check computed style
-			// Support: Firefox <=43 - 45
-			// Disconnected elements can have computed display: none, so first confirm that elem is
-			// in the document.
-			isAttached( elem ) &&
-
-			jQuery.css( elem, "display" ) === "none";
-	};
-
-var swap = function( elem, options, callback, args ) {
-	var ret, name,
-		old = {};
-
-	// Remember the old values, and insert the new ones
-	for ( name in options ) {
-		old[ name ] = elem.style[ name ];
-		elem.style[ name ] = options[ name ];
-	}
-
-	ret = callback.apply( elem, args || [] );
-
-	// Revert the old values
-	for ( name in options ) {
-		elem.style[ name ] = old[ name ];
-	}
-
-	return ret;
-};
-
-
-
-
-function adjustCSS( elem, prop, valueParts, tween ) {
-	var adjusted, scale,
-		maxIterations = 20,
-		currentValue = tween ?
-			function() {
-				return tween.cur();
-			} :
-			function() {
-				return jQuery.css( elem, prop, "" );
-			},
-		initial = currentValue(),
-		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
-
-		// Starting value computation is required for potential unit mismatches
-		initialInUnit = elem.nodeType &&
-			( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
-			rcssNum.exec( jQuery.css( elem, prop ) );
-
-	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
-
-		// Support: Firefox <=54
-		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
-		initial = initial / 2;
-
-		// Trust units reported by jQuery.css
-		unit = unit || initialInUnit[ 3 ];
-
-		// Iteratively approximate from a nonzero starting point
-		initialInUnit = +initial || 1;
-
-		while ( maxIterations-- ) {
-
-			// Evaluate and update our best guess (doubling guesses that zero out).
-			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
-			jQuery.style( elem, prop, initialInUnit + unit );
-			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
-				maxIterations = 0;
-			}
-			initialInUnit = initialInUnit / scale;
-
-		}
-
-		initialInUnit = initialInUnit * 2;
-		jQuery.style( elem, prop, initialInUnit + unit );
-
-		// Make sure we update the tween properties later on
-		valueParts = valueParts || [];
-	}
-
-	if ( valueParts ) {
-		initialInUnit = +initialInUnit || +initial || 0;
-
-		// Apply relative offset (+=/-=) if specified
-		adjusted = valueParts[ 1 ] ?
-			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
-			+valueParts[ 2 ];
-		if ( tween ) {
-			tween.unit = unit;
-			tween.start = initialInUnit;
-			tween.end = adjusted;
-		}
-	}
-	return adjusted;
-}
-
-
-var defaultDisplayMap = {};
-
-function getDefaultDisplay( elem ) {
-	var temp,
-		doc = elem.ownerDocument,
-		nodeName = elem.nodeName,
-		display = defaultDisplayMap[ nodeName ];
-
-	if ( display ) {
-		return display;
-	}
-
-	temp = doc.body.appendChild( doc.createElement( nodeName ) );
-	display = jQuery.css( temp, "display" );
-
-	temp.parentNode.removeChild( temp );
-
-	if ( display === "none" ) {
-		display = "block";
-	}
-	defaultDisplayMap[ nodeName ] = display;
-
-	return display;
-}
-
-function showHide( elements, show ) {
-	var display, elem,
-		values = [],
-		index = 0,
-		length = elements.length;
-
-	// Determine new display value for elements that need to change
-	for ( ; index < length; index++ ) {
-		elem = elements[ index ];
-		if ( !elem.style ) {
-			continue;
-		}
-
-		display = elem.style.display;
-		if ( show ) {
-
-			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
-			// check is required in this first loop unless we have a nonempty display value (either
-			// inline or about-to-be-restored)
-			if ( display === "none" ) {
-				values[ index ] = dataPriv.get( elem, "display" ) || null;
-				if ( !values[ index ] ) {
-					elem.style.display = "";
-				}
-			}
-			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
-				values[ index ] = getDefaultDisplay( elem );
-			}
-		} else {
-			if ( display !== "none" ) {
-				values[ index ] = "none";
-
-				// Remember what we're overwriting
-				dataPriv.set( elem, "display", display );
-			}
-		}
-	}
-
-	// Set the display of the elements in a second loop to avoid constant reflow
-	for ( index = 0; index < length; index++ ) {
-		if ( values[ index ] != null ) {
-			elements[ index ].style.display = values[ index ];
-		}
-	}
-
-	return elements;
-}
-
-jQuery.fn.extend( {
-	show: function() {
-		return showHide( this, true );
-	},
-	hide: function() {
-		return showHide( this );
-	},
-	toggle: function( state ) {
-		if ( typeof state === "boolean" ) {
-			return state ? this.show() : this.hide();
-		}
-
-		return this.each( function() {
-			if ( isHiddenWithinTree( this ) ) {
-				jQuery( this ).show();
-			} else {
-				jQuery( this ).hide();
-			}
-		} );
-	}
-} );
-var rcheckableType = ( /^(?:checkbox|radio)$/i );
-
-var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
-
-var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
-
-
-
-// We have to close these tags to support XHTML (#13200)
-var wrapMap = {
-
-	// Support: IE <=9 only
-	option: [ 1, "<select multiple='multiple'>", "</select>" ],
-
-	// XHTML parsers do not magically insert elements in the
-	// same way that tag soup parsers do. So we cannot shorten
-	// this by omitting <tbody> or other required elements.
-	thead: [ 1, "<table>", "</table>" ],
-	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
-	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
-	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
-
-	_default: [ 0, "", "" ]
-};
-
-// Support: IE <=9 only
-wrapMap.optgroup = wrapMap.option;
-
-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
-wrapMap.th = wrapMap.td;
-
-
-function getAll( context, tag ) {
-
-	// Support: IE <=9 - 11 only
-	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
-	var ret;
-
-	if ( typeof context.getElementsByTagName !== "undefined" ) {
-		ret = context.getElementsByTagName( tag || "*" );
-
-	} else if ( typeof context.querySelectorAll !== "undefined" ) {
-		ret = context.querySelectorAll( tag || "*" );
-
-	} else {
-		ret = [];
-	}
-
-	if ( tag === undefined || tag && nodeName( context, tag ) ) {
-		return jQuery.merge( [ context ], ret );
-	}
-
-	return ret;
-}
-
-
-// Mark scripts as having already been evaluated
-function setGlobalEval( elems, refElements ) {
-	var i = 0,
-		l = elems.length;
-
-	for ( ; i < l; i++ ) {
-		dataPriv.set(
-			elems[ i ],
-			"globalEval",
-			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
-		);
-	}
-}
-
-
-var rhtml = /<|&#?\w+;/;
-
-function buildFragment( elems, context, scripts, selection, ignored ) {
-	var elem, tmp, tag, wrap, attached, j,
-		fragment = context.createDocumentFragment(),
-		nodes = [],
-		i = 0,
-		l = elems.length;
-
-	for ( ; i < l; i++ ) {
-		elem = elems[ i ];
-
-		if ( elem || elem === 0 ) {
-
-			// Add nodes directly
-			if ( toType( elem ) === "object" ) {
-
-				// Support: Android <=4.0 only, PhantomJS 1 only
-				// push.apply(_, arraylike) throws on ancient WebKit
-				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
-
-			// Convert non-html into a text node
-			} else if ( !rhtml.test( elem ) ) {
-				nodes.push( context.createTextNode( elem ) );
-
-			// Convert html into DOM nodes
-			} else {
-				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
-
-				// Deserialize a standard representation
-				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
-				wrap = wrapMap[ tag ] || wrapMap._default;
-				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
-
-				// Descend through wrappers to the right content
-				j = wrap[ 0 ];
-				while ( j-- ) {
-					tmp = tmp.lastChild;
-				}
-
-				// Support: Android <=4.0 only, PhantomJS 1 only
-				// push.apply(_, arraylike) throws on ancient WebKit
-				jQuery.merge( nodes, tmp.childNodes );
-
-				// Remember the top-level container
-				tmp = fragment.firstChild;
-
-				// Ensure the created nodes are orphaned (#12392)
-				tmp.textContent = "";
-			}
-		}
-	}
-
-	// Remove wrapper from fragment
-	fragment.textContent = "";
-
-	i = 0;
-	while ( ( elem = nodes[ i++ ] ) ) {
-
-		// Skip elements already in the context collection (trac-4087)
-		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
-			if ( ignored ) {
-				ignored.push( elem );
-			}
-			continue;
-		}
-
-		attached = isAttached( elem );
-
-		// Append to fragment
-		tmp = getAll( fragment.appendChild( elem ), "script" );
-
-		// Preserve script evaluation history
-		if ( attached ) {
-			setGlobalEval( tmp );
-		}
-
-		// Capture executables
-		if ( scripts ) {
-			j = 0;
-			while ( ( elem = tmp[ j++ ] ) ) {
-				if ( rscriptType.test( elem.type || "" ) ) {
-					scripts.push( elem );
-				}
-			}
-		}
-	}
-
-	return fragment;
-}
-
-
-( function() {
-	var fragment = document.createDocumentFragment(),
-		div = fragment.appendChild( document.createElement( "div" ) ),
-		input = document.createElement( "input" );
-
-	// Support: Android 4.0 - 4.3 only
-	// Check state lost if the name is set (#11217)
-	// Support: Windows Web Apps (WWA)
-	// `name` and `type` must use .setAttribute for WWA (#14901)
-	input.setAttribute( "type", "radio" );
-	input.setAttribute( "checked", "checked" );
-	input.setAttribute( "name", "t" );
-
-	div.appendChild( input );
-
-	// Support: Android <=4.1 only
-	// Older WebKit doesn't clone checked state correctly in fragments
-	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
-
-	// Support: IE <=11 only
-	// Make sure textarea (and checkbox) defaultValue is properly cloned
-	div.innerHTML = "<textarea>x</textarea>";
-	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
-} )();
-
-
-var
-	rkeyEvent = /^key/,
-	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
-	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
-
-function returnTrue() {
-	return true;
-}
-
-function returnFalse() {
-	return false;
-}
-
-// Support: IE <=9 - 11+
-// focus() and blur() are asynchronous, except when they are no-op.
-// So expect focus to be synchronous when the element is already active,
-// and blur to be synchronous when the element is not already active.
-// (focus and blur are always synchronous in other supported browsers,
-// this just defines when we can count on it).
-function expectSync( elem, type ) {
-	return ( elem === safeActiveElement() ) === ( type === "focus" );
-}
-
-// Support: IE <=9 only
-// Accessing document.activeElement can throw unexpectedly
-// https://bugs.jquery.com/ticket/13393
-function safeActiveElement() {
-	try {
-		return document.activeElement;
-	} catch ( err ) { }
-}
-
-function on( elem, types, selector, data, fn, one ) {
-	var origFn, type;
-
-	// Types can be a map of types/handlers
-	if ( typeof types === "object" ) {
-
-		// ( types-Object, selector, data )
-		if ( typeof selector !== "string" ) {
-
-			// ( types-Object, data )
-			data = data || selector;
-			selector = undefined;
-		}
-		for ( type in types ) {
-			on( elem, type, selector, data, types[ type ], one );
-		}
-		return elem;
-	}
-
-	if ( data == null && fn == null ) {
-
-		// ( types, fn )
-		fn = selector;
-		data = selector = undefined;
-	} else if ( fn == null ) {
-		if ( typeof selector === "string" ) {
-
-			// ( types, selector, fn )
-			fn = data;
-			data = undefined;
-		} else {
-
-			// ( types, data, fn )
-			fn = data;
-			data = selector;
-			selector = undefined;
-		}
-	}
-	if ( fn === false ) {
-		fn = returnFalse;
-	} else if ( !fn ) {
-		return elem;
-	}
-
-	if ( one === 1 ) {
-		origFn = fn;
-		fn = function( event ) {
-
-			// Can use an empty set, since event contains the info
-			jQuery().off( event );
-			return origFn.apply( this, arguments );
-		};
-
-		// Use same guid so caller can remove using origFn
-		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
-	}
-	return elem.each( function() {
-		jQuery.event.add( this, types, fn, data, selector );
-	} );
-}
-
-/*
- * Helper functions for managing events -- not part of the public interface.
- * Props to Dean Edwards' addEvent library for many of the ideas.
- */
-jQuery.event = {
-
-	global: {},
-
-	add: function( elem, types, handler, data, selector ) {
-
-		var handleObjIn, eventHandle, tmp,
-			events, t, handleObj,
-			special, handlers, type, namespaces, origType,
-			elemData = dataPriv.get( elem );
-
-		// Don't attach events to noData or text/comment nodes (but allow plain objects)
-		if ( !elemData ) {
-			return;
-		}
-
-		// Caller can pass in an object of custom data in lieu of the handler
-		if ( handler.handler ) {
-			handleObjIn = handler;
-			handler = handleObjIn.handler;
-			selector = handleObjIn.selector;
-		}
-
-		// Ensure that invalid selectors throw exceptions at attach time
-		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
-		if ( selector ) {
-			jQuery.find.matchesSelector( documentElement, selector );
-		}
-
-		// Make sure that the handler has a unique ID, used to find/remove it later
-		if ( !handler.guid ) {
-			handler.guid = jQuery.guid++;
-		}
-
-		// Init the element's event structure and main handler, if this is the first
-		if ( !( events = elemData.events ) ) {
-			events = elemData.events = {};
-		}
-		if ( !( eventHandle = elemData.handle ) ) {
-			eventHandle = elemData.handle = function( e ) {
-
-				// Discard the second event of a jQuery.event.trigger() and
-				// when an event is called after a page has unloaded
-				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
-					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
-			};
-		}
-
-		// Handle multiple events separated by a space
-		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
-		t = types.length;
-		while ( t-- ) {
-			tmp = rtypenamespace.exec( types[ t ] ) || [];
-			type = origType = tmp[ 1 ];
-			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
-
-			// There *must* be a type, no attaching namespace-only handlers
-			if ( !type ) {
-				continue;
-			}
-
-			// If event changes its type, use the special event handlers for the changed type
-			special = jQuery.event.special[ type ] || {};
-
-			// If selector defined, determine special event api type, otherwise given type
-			type = ( selector ? special.delegateType : special.bindType ) || type;
-
-			// Update special based on newly reset type
-			special = jQuery.event.special[ type ] || {};
-
-			// handleObj is passed to all event handlers
-			handleObj = jQuery.extend( {
-				type: type,
-				origType: origType,
-				data: data,
-				handler: handler,
-				guid: handler.guid,
-				selector: selector,
-				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
-				namespace: namespaces.join( "." )
-			}, handleObjIn );
-
-			// Init the event handler queue if we're the first
-			if ( !( handlers = events[ type ] ) ) {
-				handlers = events[ type ] = [];
-				handlers.delegateCount = 0;
-
-				// Only use addEventListener if the special events handler returns false
-				if ( !special.setup ||
-					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
-
-					if ( elem.addEventListener ) {
-						elem.addEventListener( type, eventHandle );
-					}
-				}
-			}
-
-			if ( special.add ) {
-				special.add.call( elem, handleObj );
-
-				if ( !handleObj.handler.guid ) {
-					handleObj.handler.guid = handler.guid;
-				}
-			}
-
-			// Add to the element's handler list, delegates in front
-			if ( selector ) {
-				handlers.splice( handlers.delegateCount++, 0, handleObj );
-			} else {
-				handlers.push( handleObj );
-			}
-
-			// Keep track of which events have ever been used, for event optimization
-			jQuery.event.global[ type ] = true;
-		}
-
-	},
-
-	// Detach an event or set of events from an element
-	remove: function( elem, types, handler, selector, mappedTypes ) {
-
-		var j, origCount, tmp,
-			events, t, handleObj,
-			special, handlers, type, namespaces, origType,
-			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
-
-		if ( !elemData || !( events = elemData.events ) ) {
-			return;
-		}
-
-		// Once for each type.namespace in types; type may be omitted
-		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
-		t = types.length;
-		while ( t-- ) {
-			tmp = rtypenamespace.exec( types[ t ] ) || [];
-			type = origType = tmp[ 1 ];
-			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
-
-			// Unbind all events (on this namespace, if provided) for the element
-			if ( !type ) {
-				for ( type in events ) {
-					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
-				}
-				continue;
-			}
-
-			special = jQuery.event.special[ type ] || {};
-			type = ( selector ? special.delegateType : special.bindType ) || type;
-			handlers = events[ type ] || [];
-			tmp = tmp[ 2 ] &&
-				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
-
-			// Remove matching events
-			origCount = j = handlers.length;
-			while ( j-- ) {
-				handleObj = handlers[ j ];
-
-				if ( ( mappedTypes || origType === handleObj.origType ) &&
-					( !handler || handler.guid === handleObj.guid ) &&
-					( !tmp || tmp.test( handleObj.namespace ) ) &&
-					( !selector || selector === handleObj.selector ||
-						selector === "**" && handleObj.selector ) ) {
-					handlers.splice( j, 1 );
-
-					if ( handleObj.selector ) {
-						handlers.delegateCount--;
-					}
-					if ( special.remove ) {
-						special.remove.call( elem, handleObj );
-					}
-				}
-			}
-
-			// Remove generic event handler if we removed something and no more handlers exist
-			// (avoids potential for endless recursion during removal of special event handlers)
-			if ( origCount && !handlers.length ) {
-				if ( !special.teardown ||
-					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
-
-					jQuery.removeEvent( elem, type, elemData.handle );
-				}
-
-				delete events[ type ];
-			}
-		}
-
-		// Remove data and the expando if it's no longer used
-		if ( jQuery.isEmptyObject( events ) ) {
-			dataPriv.remove( elem, "handle events" );
-		}
-	},
-
-	dispatch: function( nativeEvent ) {
-
-		// Make a writable jQuery.Event from the native event object
-		var event = jQuery.event.fix( nativeEvent );
-
-		var i, j, ret, matched, handleObj, handlerQueue,
-			args = new Array( arguments.length ),
-			handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [],
-			special = jQuery.event.special[ event.type ] || {};
-
-		// Use the fix-ed jQuery.Event rather than the (read-only) native event
-		args[ 0 ] = event;
-
-		for ( i = 1; i < arguments.length; i++ ) {
-			args[ i ] = arguments[ i ];
-		}
-
-		event.delegateTarget = this;
-
-		// Call the preDispatch hook for the mapped type, and let it bail if desired
-		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
-			return;
-		}
-
-		// Determine handlers
-		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
-
-		// Run delegates first; they may want to stop propagation beneath us
-		i = 0;
-		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
-			event.currentTarget = matched.elem;
-
-			j = 0;
-			while ( ( handleObj = matched.handlers[ j++ ] ) &&
-				!event.isImmediatePropagationStopped() ) {
-
-				// If the event is namespaced, then each handler is only invoked if it is
-				// specially universal or its namespaces are a superset of the event's.
-				if ( !event.rnamespace || handleObj.namespace === false ||
-					event.rnamespace.test( handleObj.namespace ) ) {
-
-					event.handleObj = handleObj;
-					event.data = handleObj.data;
-
-					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
-						handleObj.handler ).apply( matched.elem, args );
-
-					if ( ret !== undefined ) {
-						if ( ( event.result = ret ) === false ) {
-							event.preventDefault();
-							event.stopPropagation();
-						}
-					}
-				}
-			}
-		}
-
-		// Call the postDispatch hook for the mapped type
-		if ( special.postDispatch ) {
-			special.postDispatch.call( this, event );
-		}
-
-		return event.result;
-	},
-
-	handlers: function( event, handlers ) {
-		var i, handleObj, sel, matchedHandlers, matchedSelectors,
-			handlerQueue = [],
-			delegateCount = handlers.delegateCount,
-			cur = event.target;
-
-		// Find delegate handlers
-		if ( delegateCount &&
-
-			// Support: IE <=9
-			// Black-hole SVG <use> instance trees (trac-13180)
-			cur.nodeType &&
-
-			// Support: Firefox <=42
-			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
-			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
-			// Support: IE 11 only
-			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
-			!( event.type === "click" && event.button >= 1 ) ) {
-
-			for ( ; cur !== this; cur = cur.parentNode || this ) {
-
-				// Don't check non-elements (#13208)
-				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
-				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
-					matchedHandlers = [];
-					matchedSelectors = {};
-					for ( i = 0; i < delegateCount; i++ ) {
-						handleObj = handlers[ i ];
-
-						// Don't conflict with Object.prototype properties (#13203)
-						sel = handleObj.selector + " ";
-
-						if ( matchedSelectors[ sel ] === undefined ) {
-							matchedSelectors[ sel ] = handleObj.needsContext ?
-								jQuery( sel, this ).index( cur ) > -1 :
-								jQuery.find( sel, this, null, [ cur ] ).length;
-						}
-						if ( matchedSelectors[ sel ] ) {
-							matchedHandlers.push( handleObj );
-						}
-					}
-					if ( matchedHandlers.length ) {
-						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
-					}
-				}
-			}
-		}
-
-		// Add the remaining (directly-bound) handlers
-		cur = this;
-		if ( delegateCount < handlers.length ) {
-			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
-		}
-
-		return handlerQueue;
-	},
-
-	addProp: function( name, hook ) {
-		Object.defineProperty( jQuery.Event.prototype, name, {
-			enumerable: true,
-			configurable: true,
-
-			get: isFunction( hook ) ?
-				function() {
-					if ( this.originalEvent ) {
-							return hook( this.originalEvent );
-					}
-				} :
-				function() {
-					if ( this.originalEvent ) {
-							return this.originalEvent[ name ];
-					}
-				},
-
-			set: function( value ) {
-				Object.defineProperty( this, name, {
-					enumerable: true,
-					configurable: true,
-					writable: true,
-					value: value
-				} );
-			}
-		} );
-	},
-
-	fix: function( originalEvent ) {
-		return originalEvent[ jQuery.expando ] ?
-			originalEvent :
-			new jQuery.Event( originalEvent );
-	},
-
-	special: {
-		load: {
-
-			// Prevent triggered image.load events from bubbling to window.load
-			noBubble: true
-		},
-		click: {
-
-			// Utilize native event to ensure correct state for checkable inputs
-			setup: function( data ) {
-
-				// For mutual compressibility with _default, replace `this` access with a local var.
-				// `|| data` is dead code meant only to preserve the variable through minification.
-				var el = this || data;
-
-				// Claim the first handler
-				if ( rcheckableType.test( el.type ) &&
-					el.click && nodeName( el, "input" ) ) {
-
-					// dataPriv.set( el, "click", ... )
-					leverageNative( el, "click", returnTrue );
-				}
-
-				// Return false to allow normal processing in the caller
-				return false;
-			},
-			trigger: function( data ) {
-
-				// For mutual compressibility with _default, replace `this` access with a local var.
-				// `|| data` is dead code meant only to preserve the variable through minification.
-				var el = this || data;
-
-				// Force setup before triggering a click
-				if ( rcheckableType.test( el.type ) &&
-					el.click && nodeName( el, "input" ) ) {
-
-					leverageNative( el, "click" );
-				}
-
-				// Return non-false to allow normal event-path propagation
-				return true;
-			},
-
-			// For cross-browser consistency, suppress native .click() on links
-			// Also prevent it if we're currently inside a leveraged native-event stack
-			_default: function( event ) {
-				var target = event.target;
-				return rcheckableType.test( target.type ) &&
-					target.click && nodeName( target, "input" ) &&
-					dataPriv.get( target, "click" ) ||
-					nodeName( target, "a" );
-			}
-		},
-
-		beforeunload: {
-			postDispatch: function( event ) {
-
-				// Support: Firefox 20+
-				// Firefox doesn't alert if the returnValue field is not set.
-				if ( event.result !== undefined && event.originalEvent ) {
-					event.originalEvent.returnValue = event.result;
-				}
-			}
-		}
-	}
-};
-
-// Ensure the presence of an event listener that handles manually-triggered
-// synthetic events by interrupting progress until reinvoked in response to
-// *native* events that it fires directly, ensuring that state changes have
-// already occurred before other listeners are invoked.
-function leverageNative( el, type, expectSync ) {
-
-	// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
-	if ( !expectSync ) {
-		if ( dataPriv.get( el, type ) === undefined ) {
-			jQuery.event.add( el, type, returnTrue );
-		}
-		return;
-	}
-
-	// Register the controller as a special universal handler for all event namespaces
-	dataPriv.set( el, type, false );
-	jQuery.event.add( el, type, {
-		namespace: false,
-		handler: function( event ) {
-			var notAsync, result,
-				saved = dataPriv.get( this, type );
-
-			if ( ( event.isTrigger & 1 ) && this[ type ] ) {
-
-				// Interrupt processing of the outer synthetic .trigger()ed event
-				// Saved data should be false in such cases, but might be a leftover capture object
-				// from an async native handler (gh-4350)
-				if ( !saved.length ) {
-
-					// Store arguments for use when handling the inner native event
-					// There will always be at least one argument (an event object), so this array
-					// will not be confused with a leftover capture object.
-					saved = slice.call( arguments );
-					dataPriv.set( this, type, saved );
-
-					// Trigger the native event and capture its result
-					// Support: IE <=9 - 11+
-					// focus() and blur() are asynchronous
-					notAsync = expectSync( this, type );
-					this[ type ]();
-					result = dataPriv.get( this, type );
-					if ( saved !== result || notAsync ) {
-						dataPriv.set( this, type, false );
-					} else {
-						result = {};
-					}
-					if ( saved !== result ) {
-
-						// Cancel the outer synthetic event
-						event.stopImmediatePropagation();
-						event.preventDefault();
-						return result.value;
-					}
-
-				// If this is an inner synthetic event for an event with a bubbling surrogate
-				// (focus or blur), assume that the surrogate already propagated from triggering the
-				// native event and prevent that from happening again here.
-				// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
-				// bubbling surrogate propagates *after* the non-bubbling base), but that seems
-				// less bad than duplication.
-				} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
-					event.stopPropagation();
-				}
-
-			// If this is a native event triggered above, everything is now in order
-			// Fire an inner synthetic event with the original arguments
-			} else if ( saved.length ) {
-
-				// ...and capture the result
-				dataPriv.set( this, type, {
-					value: jQuery.event.trigger(
-
-						// Support: IE <=9 - 11+
-						// Extend with the prototype to reset the above stopImmediatePropagation()
-						jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
-						saved.slice( 1 ),
-						this
-					)
-				} );
-
-				// Abort handling of the native event
-				event.stopImmediatePropagation();
-			}
-		}
-	} );
-}
-
-jQuery.removeEvent = function( elem, type, handle ) {
-
-	// This "if" is needed for plain objects
-	if ( elem.removeEventListener ) {
-		elem.removeEventListener( type, handle );
-	}
-};
-
-jQuery.Event = function( src, props ) {
-
-	// Allow instantiation without the 'new' keyword
-	if ( !( this instanceof jQuery.Event ) ) {
-		return new jQuery.Event( src, props );
-	}
-
-	// Event object
-	if ( src && src.type ) {
-		this.originalEvent = src;
-		this.type = src.type;
-
-		// Events bubbling up the document may have been marked as prevented
-		// by a handler lower down the tree; reflect the correct value.
-		this.isDefaultPrevented = src.defaultPrevented ||
-				src.defaultPrevented === undefined &&
-
-				// Support: Android <=2.3 only
-				src.returnValue === false ?
-			returnTrue :
-			returnFalse;
-
-		// Create target properties
-		// Support: Safari <=6 - 7 only
-		// Target should not be a text node (#504, #13143)
-		this.target = ( src.target && src.target.nodeType === 3 ) ?
-			src.target.parentNode :
-			src.target;
-
-		this.currentTarget = src.currentTarget;
-		this.relatedTarget = src.relatedTarget;
-
-	// Event type
-	} else {
-		this.type = src;
-	}
-
-	// Put explicitly provided properties onto the event object
-	if ( props ) {
-		jQuery.extend( this, props );
-	}
-
-	// Create a timestamp if incoming event doesn't have one
-	this.timeStamp = src && src.timeStamp || Date.now();
-
-	// Mark it as fixed
-	this[ jQuery.expando ] = true;
-};
-
-// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
-// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
-jQuery.Event.prototype = {
-	constructor: jQuery.Event,
-	isDefaultPrevented: returnFalse,
-	isPropagationStopped: returnFalse,
-	isImmediatePropagationStopped: returnFalse,
-	isSimulated: false,
-
-	preventDefault: function() {
-		var e = this.originalEvent;
-
-		this.isDefaultPrevented = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.preventDefault();
-		}
-	},
-	stopPropagation: function() {
-		var e = this.originalEvent;
-
-		this.isPropagationStopped = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.stopPropagation();
-		}
-	},
-	stopImmediatePropagation: function() {
-		var e = this.originalEvent;
-
-		this.isImmediatePropagationStopped = returnTrue;
-
-		if ( e && !this.isSimulated ) {
-			e.stopImmediatePropagation();
-		}
-
-		this.stopPropagation();
-	}
-};
-
-// Includes all common event props including KeyEvent and MouseEvent specific props
-jQuery.each( {
-	altKey: true,
-	bubbles: true,
-	cancelable: true,
-	changedTouches: true,
-	ctrlKey: true,
-	detail: true,
-	eventPhase: true,
-	metaKey: true,
-	pageX: true,
-	pageY: true,
-	shiftKey: true,
-	view: true,
-	"char": true,
-	code: true,
-	charCode: true,
-	key: true,
-	keyCode: true,
-	button: true,
-	buttons: true,
-	clientX: true,
-	clientY: true,
-	offsetX: true,
-	offsetY: true,
-	pointerId: true,
-	pointerType: true,
-	screenX: true,
-	screenY: true,
-	targetTouches: true,
-	toElement: true,
-	touches: true,
-
-	which: function( event ) {
-		var button = event.button;
-
-		// Add which for key events
-		if ( event.which == null && rkeyEvent.test( event.type ) ) {
-			return event.charCode != null ? event.charCode : event.keyCode;
-		}
-
-		// Add which for click: 1 === left; 2 === middle; 3 === right
-		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
-			if ( button & 1 ) {
-				return 1;
-			}
-
-			if ( button & 2 ) {
-				return 3;
-			}
-
-			if ( button & 4 ) {
-				return 2;
-			}
-
-			return 0;
-		}
-
-		return event.which;
-	}
-}, jQuery.event.addProp );
-
-jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
-	jQuery.event.special[ type ] = {
-
-		// Utilize native event if possible so blur/focus sequence is correct
-		setup: function() {
-
-			// Claim the first handler
-			// dataPriv.set( this, "focus", ... )
-			// dataPriv.set( this, "blur", ... )
-			leverageNative( this, type, expectSync );
-
-			// Return false to allow normal processing in the caller
-			return false;
-		},
-		trigger: function() {
-
-			// Force setup before trigger
-			leverageNative( this, type );
-
-			// Return non-false to allow normal event-path propagation
-			return true;
-		},
-
-		delegateType: delegateType
-	};
-} );
-
-// Create mouseenter/leave events using mouseover/out and event-time checks
-// so that event delegation works in jQuery.
-// Do the same for pointerenter/pointerleave and pointerover/pointerout
-//
-// Support: Safari 7 only
-// Safari sends mouseenter too often; see:
-// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
-// for the description of the bug (it existed in older Chrome versions as well).
-jQuery.each( {
-	mouseenter: "mouseover",
-	mouseleave: "mouseout",
-	pointerenter: "pointerover",
-	pointerleave: "pointerout"
-}, function( orig, fix ) {
-	jQuery.event.special[ orig ] = {
-		delegateType: fix,
-		bindType: fix,
-
-		handle: function( event ) {
-			var ret,
-				target = this,
-				related = event.relatedTarget,
-				handleObj = event.handleObj;
-
-			// For mouseenter/leave call the handler if related is outside the target.
-			// NB: No relatedTarget if the mouse left/entered the browser window
-			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
-				event.type = handleObj.origType;
-				ret = handleObj.handler.apply( this, arguments );
-				event.type = fix;
-			}
-			return ret;
-		}
-	};
-} );
-
-jQuery.fn.extend( {
-
-	on: function( types, selector, data, fn ) {
-		return on( this, types, selector, data, fn );
-	},
-	one: function( types, selector, data, fn ) {
-		return on( this, types, selector, data, fn, 1 );
-	},
-	off: function( types, selector, fn ) {
-		var handleObj, type;
-		if ( types && types.preventDefault && types.handleObj ) {
-
-			// ( event )  dispatched jQuery.Event
-			handleObj = types.handleObj;
-			jQuery( types.delegateTarget ).off(
-				handleObj.namespace ?
-					handleObj.origType + "." + handleObj.namespace :
-					handleObj.origType,
-				handleObj.selector,
-				handleObj.handler
-			);
-			return this;
-		}
-		if ( typeof types === "object" ) {
-
-			// ( types-object [, selector] )
-			for ( type in types ) {
-				this.off( type, selector, types[ type ] );
-			}
-			return this;
-		}
-		if ( selector === false || typeof selector === "function" ) {
-
-			// ( types [, fn] )
-			fn = selector;
-			selector = undefined;
-		}
-		if ( fn === false ) {
-			fn = returnFalse;
-		}
-		return this.each( function() {
-			jQuery.event.remove( this, types, fn, selector );
-		} );
-	}
-} );
-
-
-var
-
-	/* eslint-disable max-len */
-
-	// See https://github.com/eslint/eslint/issues/3229
-	rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,
-
-	/* eslint-enable */
-
-	// Support: IE <=10 - 11, Edge 12 - 13 only
-	// In IE/Edge using regex groups here causes severe slowdowns.
-	// See https://connect.microsoft.com/IE/feedback/details/1736512/
-	rnoInnerhtml = /<script|<style|<link/i,
-
-	// checked="checked" or checked
-	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
-	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
-
-// Prefer a tbody over its parent table for containing new rows
-function manipulationTarget( elem, content ) {
-	if ( nodeName( elem, "table" ) &&
-		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
-
-		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
-	}
-
-	return elem;
-}
-
-// Replace/restore the type attribute of script elements for safe DOM manipulation
-function disableScript( elem ) {
-	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
-	return elem;
-}
-function restoreScript( elem ) {
-	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
-		elem.type = elem.type.slice( 5 );
-	} else {
-		elem.removeAttribute( "type" );
-	}
-
-	return elem;
-}
-
-function cloneCopyEvent( src, dest ) {
-	var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;
-
-	if ( dest.nodeType !== 1 ) {
-		return;
-	}
-
-	// 1. Copy private data: events, handlers, etc.
-	if ( dataPriv.hasData( src ) ) {
-		pdataOld = dataPriv.access( src );
-		pdataCur = dataPriv.set( dest, pdataOld );
-		events = pdataOld.events;
-
-		if ( events ) {
-			delete pdataCur.handle;
-			pdataCur.events = {};
-
-			for ( type in events ) {
-				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
-					jQuery.event.add( dest, type, events[ type ][ i ] );
-				}
-			}
-		}
-	}
-
-	// 2. Copy user data
-	if ( dataUser.hasData( src ) ) {
-		udataOld = dataUser.access( src );
-		udataCur = jQuery.extend( {}, udataOld );
-
-		dataUser.set( dest, udataCur );
-	}
-}
-
-// Fix IE bugs, see support tests
-function fixInput( src, dest ) {
-	var nodeName = dest.nodeName.toLowerCase();
-
-	// Fails to persist the checked state of a cloned checkbox or radio button.
-	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
-		dest.checked = src.checked;
-
-	// Fails to return the selected option to the default selected state when cloning options
-	} else if ( nodeName === "input" || nodeName === "textarea" ) {
-		dest.defaultValue = src.defaultValue;
-	}
-}
-
-function domManip( collection, args, callback, ignored ) {
-
-	// Flatten any nested arrays
-	args = concat.apply( [], args );
-
-	var fragment, first, scripts, hasScripts, node, doc,
-		i = 0,
-		l = collection.length,
-		iNoClone = l - 1,
-		value = args[ 0 ],
-		valueIsFunction = isFunction( value );
-
-	// We can't cloneNode fragments that contain checked, in WebKit
-	if ( valueIsFunction ||
-			( l > 1 && typeof value === "string" &&
-				!support.checkClone && rchecked.test( value ) ) ) {
-		return collection.each( function( index ) {
-			var self = collection.eq( index );
-			if ( valueIsFunction ) {
-				args[ 0 ] = value.call( this, index, self.html() );
-			}
-			domManip( self, args, callback, ignored );
-		} );
-	}
-
-	if ( l ) {
-		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
-		first = fragment.firstChild;
-
-		if ( fragment.childNodes.length === 1 ) {
-			fragment = first;
-		}
-
-		// Require either new content or an interest in ignored elements to invoke the callback
-		if ( first || ignored ) {
-			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
-			hasScripts = scripts.length;
-
-			// Use the original fragment for the last item
-			// instead of the first because it can end up
-			// being emptied incorrectly in certain situations (#8070).
-			for ( ; i < l; i++ ) {
-				node = fragment;
-
-				if ( i !== iNoClone ) {
-					node = jQuery.clone( node, true, true );
-
-					// Keep references to cloned scripts for later restoration
-					if ( hasScripts ) {
-
-						// Support: Android <=4.0 only, PhantomJS 1 only
-						// push.apply(_, arraylike) throws on ancient WebKit
-						jQuery.merge( scripts, getAll( node, "script" ) );
-					}
-				}
-
-				callback.call( collection[ i ], node, i );
-			}
-
-			if ( hasScripts ) {
-				doc = scripts[ scripts.length - 1 ].ownerDocument;
-
-				// Reenable scripts
-				jQuery.map( scripts, restoreScript );
-
-				// Evaluate executable scripts on first document insertion
-				for ( i = 0; i < hasScripts; i++ ) {
-					node = scripts[ i ];
-					if ( rscriptType.test( node.type || "" ) &&
-						!dataPriv.access( node, "globalEval" ) &&
-						jQuery.contains( doc, node ) ) {
-
-						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
-
-							// Optional AJAX dependency, but won't run scripts if not present
-							if ( jQuery._evalUrl && !node.noModule ) {
-								jQuery._evalUrl( node.src, {
-									nonce: node.nonce || node.getAttribute( "nonce" )
-								} );
-							}
-						} else {
-							DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
-						}
-					}
-				}
-			}
-		}
-	}
-
-	return collection;
-}
-
-function remove( elem, selector, keepData ) {
-	var node,
-		nodes = selector ? jQuery.filter( selector, elem ) : elem,
-		i = 0;
-
-	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
-		if ( !keepData && node.nodeType === 1 ) {
-			jQuery.cleanData( getAll( node ) );
-		}
-
-		if ( node.parentNode ) {
-			if ( keepData && isAttached( node ) ) {
-				setGlobalEval( getAll( node, "script" ) );
-			}
-			node.parentNode.removeChild( node );
-		}
-	}
-
-	return elem;
-}
-
-jQuery.extend( {
-	htmlPrefilter: function( html ) {
-		return html.replace( rxhtmlTag, "<$1></$2>" );
-	},
-
-	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
-		var i, l, srcElements, destElements,
-			clone = elem.cloneNode( true ),
-			inPage = isAttached( elem );
-
-		// Fix IE cloning issues
-		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
-				!jQuery.isXMLDoc( elem ) ) {
-
-			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
-			destElements = getAll( clone );
-			srcElements = getAll( elem );
-
-			for ( i = 0, l = srcElements.length; i < l; i++ ) {
-				fixInput( srcElements[ i ], destElements[ i ] );
-			}
-		}
-
-		// Copy the events from the original to the clone
-		if ( dataAndEvents ) {
-			if ( deepDataAndEvents ) {
-				srcElements = srcElements || getAll( elem );
-				destElements = destElements || getAll( clone );
-
-				for ( i = 0, l = srcElements.length; i < l; i++ ) {
-					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
-				}
-			} else {
-				cloneCopyEvent( elem, clone );
-			}
-		}
-
-		// Preserve script evaluation history
-		destElements = getAll( clone, "script" );
-		if ( destElements.length > 0 ) {
-			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
-		}
-
-		// Return the cloned set
-		return clone;
-	},
-
-	cleanData: function( elems ) {
-		var data, elem, type,
-			special = jQuery.event.special,
-			i = 0;
-
-		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
-			if ( acceptData( elem ) ) {
-				if ( ( data = elem[ dataPriv.expando ] ) ) {
-					if ( data.events ) {
-						for ( type in data.events ) {
-							if ( special[ type ] ) {
-								jQuery.event.remove( elem, type );
-
-							// This is a shortcut to avoid jQuery.event.remove's overhead
-							} else {
-								jQuery.removeEvent( elem, type, data.handle );
-							}
-						}
-					}
-
-					// Support: Chrome <=35 - 45+
-					// Assign undefined instead of using delete, see Data#remove
-					elem[ dataPriv.expando ] = undefined;
-				}
-				if ( elem[ dataUser.expando ] ) {
-
-					// Support: Chrome <=35 - 45+
-					// Assign undefined instead of using delete, see Data#remove
-					elem[ dataUser.expando ] = undefined;
-				}
-			}
-		}
-	}
-} );
-
-jQuery.fn.extend( {
-	detach: function( selector ) {
-		return remove( this, selector, true );
-	},
-
-	remove: function( selector ) {
-		return remove( this, selector );
-	},
-
-	text: function( value ) {
-		return access( this, function( value ) {
-			return value === undefined ?
-				jQuery.text( this ) :
-				this.empty().each( function() {
-					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-						this.textContent = value;
-					}
-				} );
-		}, null, value, arguments.length );
-	},
-
-	append: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-				var target = manipulationTarget( this, elem );
-				target.appendChild( elem );
-			}
-		} );
-	},
-
-	prepend: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
-				var target = manipulationTarget( this, elem );
-				target.insertBefore( elem, target.firstChild );
-			}
-		} );
-	},
-
-	before: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.parentNode ) {
-				this.parentNode.insertBefore( elem, this );
-			}
-		} );
-	},
-
-	after: function() {
-		return domManip( this, arguments, function( elem ) {
-			if ( this.parentNode ) {
-				this.parentNode.insertBefore( elem, this.nextSibling );
-			}
-		} );
-	},
-
-	empty: function() {
-		var elem,
-			i = 0;
-
-		for ( ; ( elem = this[ i ] ) != null; i++ ) {
-			if ( elem.nodeType === 1 ) {
-
-				// Prevent memory leaks
-				jQuery.cleanData( getAll( elem, false ) );
-
-				// Remove any remaining nodes
-				elem.textContent = "";
-			}
-		}
-
-		return this;
-	},
-
-	clone: function( dataAndEvents, deepDataAndEvents ) {
-		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
-		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
-
-		return this.map( function() {
-			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
-		} );
-	},
-
-	html: function( value ) {
-		return access( this, function( value ) {
-			var elem = this[ 0 ] || {},
-				i = 0,
-				l = this.length;
-
-			if ( value === undefined && elem.nodeType === 1 ) {
-				return elem.innerHTML;
-			}
-
-			// See if we can take a shortcut and just use innerHTML
-			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
-				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
-
-				value = jQuery.htmlPrefilter( value );
-
-				try {
-					for ( ; i < l; i++ ) {
-						elem = this[ i ] || {};
-
-						// Remove element nodes and prevent memory leaks
-						if ( elem.nodeType === 1 ) {
-							jQuery.cleanData( getAll( elem, false ) );
-							elem.innerHTML = value;
-						}
-					}
-
-					elem = 0;
-
-				// If using innerHTML throws an exception, use the fallback method
-				} catch ( e ) {}
-			}
-
-			if ( elem ) {
-				this.empty().append( value );
-			}
-		}, null, value, arguments.length );
-	},
-
-	replaceWith: function() {
-		var ignored = [];
-
-		// Make the changes, replacing each non-ignored context element with the new content
-		return domManip( this, arguments, function( elem ) {
-			var parent = this.parentNode;
-
-			if ( jQuery.inArray( this, ignored ) < 0 ) {
-				jQuery.cleanData( getAll( this ) );
-				if ( parent ) {
-					parent.replaceChild( elem, this );
-				}
-			}
-
-		// Force callback invocation
-		}, ignored );
-	}
-} );
-
-jQuery.each( {
-	appendTo: "append",
-	prependTo: "prepend",
-	insertBefore: "before",
-	insertAfter: "after",
-	replaceAll: "replaceWith"
-}, function( name, original ) {
-	jQuery.fn[ name ] = function( selector ) {
-		var elems,
-			ret = [],
-			insert = jQuery( selector ),
-			last = insert.length - 1,
-			i = 0;
-
-		for ( ; i <= last; i++ ) {
-			elems = i === last ? this : this.clone( true );
-			jQuery( insert[ i ] )[ original ]( elems );
-
-			// Support: Android <=4.0 only, PhantomJS 1 only
-			// .get() because push.apply(_, arraylike) throws on ancient WebKit
-			push.apply( ret, elems.get() );
-		}
-
-		return this.pushStack( ret );
-	};
-} );
-var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
-
-var getStyles = function( elem ) {
-
-		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
-		// IE throws on elements created in popups
-		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
-		var view = elem.ownerDocument.defaultView;
-
-		if ( !view || !view.opener ) {
-			view = window;
-		}
-
-		return view.getComputedStyle( elem );
-	};
-
-var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
-
-
-
-( function() {
-
-	// Executing both pixelPosition & boxSizingReliable tests require only one layout
-	// so they're executed at the same time to save the second computation.
-	function computeStyleTests() {
-
-		// This is a singleton, we need to execute it only once
-		if ( !div ) {
-			return;
-		}
-
-		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
-			"margin-top:1px;padding:0;border:0";
-		div.style.cssText =
-			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
-			"margin:auto;border:1px;padding:1px;" +
-			"width:60%;top:1%";
-		documentElement.appendChild( container ).appendChild( div );
-
-		var divStyle = window.getComputedStyle( div );
-		pixelPositionVal = divStyle.top !== "1%";
-
-		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
-		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
-
-		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
-		// Some styles come back with percentage values, even though they shouldn't
-		div.style.right = "60%";
-		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
-
-		// Support: IE 9 - 11 only
-		// Detect misreporting of content dimensions for box-sizing:border-box elements
-		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
-
-		// Support: IE 9 only
-		// Detect overflow:scroll screwiness (gh-3699)
-		// Support: Chrome <=64
-		// Don't get tricked when zoom affects offsetWidth (gh-4029)
-		div.style.position = "absolute";
-		scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
-
-		documentElement.removeChild( container );
-
-		// Nullify the div so it wouldn't be stored in the memory and
-		// it will also be a sign that checks already performed
-		div = null;
-	}
-
-	function roundPixelMeasures( measure ) {
-		return Math.round( parseFloat( measure ) );
-	}
-
-	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
-		reliableMarginLeftVal,
-		container = document.createElement( "div" ),
-		div = document.createElement( "div" );
-
-	// Finish early in limited (non-browser) environments
-	if ( !div.style ) {
-		return;
-	}
-
-	// Support: IE <=9 - 11 only
-	// Style of cloned element affects source element cloned (#8908)
-	div.style.backgroundClip = "content-box";
-	div.cloneNode( true ).style.backgroundClip = "";
-	support.clearCloneStyle = div.style.backgroundClip === "content-box";
-
-	jQuery.extend( support, {
-		boxSizingReliable: function() {
-			computeStyleTests();
-			return boxSizingReliableVal;
-		},
-		pixelBoxStyles: function() {
-			computeStyleTests();
-			return pixelBoxStylesVal;
-		},
-		pixelPosition: function() {
-			computeStyleTests();
-			return pixelPositionVal;
-		},
-		reliableMarginLeft: function() {
-			computeStyleTests();
-			return reliableMarginLeftVal;
-		},
-		scrollboxSize: function() {
-			computeStyleTests();
-			return scrollboxSizeVal;
-		}
-	} );
-} )();
-
-
-function curCSS( elem, name, computed ) {
-	var width, minWidth, maxWidth, ret,
-
-		// Support: Firefox 51+
-		// Retrieving style before computed somehow
-		// fixes an issue with getting wrong values
-		// on detached elements
-		style = elem.style;
-
-	computed = computed || getStyles( elem );
-
-	// getPropertyValue is needed for:
-	//   .css('filter') (IE 9 only, #12537)
-	//   .css('--customProperty) (#3144)
-	if ( computed ) {
-		ret = computed.getPropertyValue( name ) || computed[ name ];
-
-		if ( ret === "" && !isAttached( elem ) ) {
-			ret = jQuery.style( elem, name );
-		}
-
-		// A tribute to the "awesome hack by Dean Edwards"
-		// Android Browser returns percentage for some values,
-		// but width seems to be reliably pixels.
-		// This is against the CSSOM draft spec:
-		// https://drafts.csswg.org/cssom/#resolved-values
-		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
-
-			// Remember the original values
-			width = style.width;
-			minWidth = style.minWidth;
-			maxWidth = style.maxWidth;
-
-			// Put in the new values to get a computed value out
-			style.minWidth = style.maxWidth = style.width = ret;
-			ret = computed.width;
-
-			// Revert the changed values
-			style.width = width;
-			style.minWidth = minWidth;
-			style.maxWidth = maxWidth;
-		}
-	}
-
-	return ret !== undefined ?
-
-		// Support: IE <=9 - 11 only
-		// IE returns zIndex value as an integer.
-		ret + "" :
-		ret;
-}
-
-
-function addGetHookIf( conditionFn, hookFn ) {
-
-	// Define the hook, we'll check on the first run if it's really needed.
-	return {
-		get: function() {
-			if ( conditionFn() ) {
-
-				// Hook not needed (or it's not possible to use it due
-				// to missing dependency), remove it.
-				delete this.get;
-				return;
-			}
-
-			// Hook needed; redefine it so that the support test is not executed again.
-			return ( this.get = hookFn ).apply( this, arguments );
-		}
-	};
-}
-
-
-var cssPrefixes = [ "Webkit", "Moz", "ms" ],
-	emptyStyle = document.createElement( "div" ).style,
-	vendorProps = {};
-
-// Return a vendor-prefixed property or undefined
-function vendorPropName( name ) {
-
-	// Check for vendor prefixed names
-	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
-		i = cssPrefixes.length;
-
-	while ( i-- ) {
-		name = cssPrefixes[ i ] + capName;
-		if ( name in emptyStyle ) {
-			return name;
-		}
-	}
-}
-
-// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
-function finalPropName( name ) {
-	var final = jQuery.cssProps[ name ] || vendorProps[ name ];
-
-	if ( final ) {
-		return final;
-	}
-	if ( name in emptyStyle ) {
-		return name;
-	}
-	return vendorProps[ name ] = vendorPropName( name ) || name;
-}
-
-
-var
-
-	// Swappable if display is none or starts with table
-	// except "table", "table-cell", or "table-caption"
-	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
-	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
-	rcustomProp = /^--/,
-	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
-	cssNormalTransform = {
-		letterSpacing: "0",
-		fontWeight: "400"
-	};
-
-function setPositiveNumber( elem, value, subtract ) {
-
-	// Any relative (+/-) values have already been
-	// normalized at this point
-	var matches = rcssNum.exec( value );
-	return matches ?
-
-		// Guard against undefined "subtract", e.g., when used as in cssHooks
-		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
-		value;
-}
-
-function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
-	var i = dimension === "width" ? 1 : 0,
-		extra = 0,
-		delta = 0;
-
-	// Adjustment may not be necessary
-	if ( box === ( isBorderBox ? "border" : "content" ) ) {
-		return 0;
-	}
-
-	for ( ; i < 4; i += 2 ) {
-
-		// Both box models exclude margin
-		if ( box === "margin" ) {
-			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
-		}
-
-		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
-		if ( !isBorderBox ) {
-
-			// Add padding
-			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-
-			// For "border" or "margin", add border
-			if ( box !== "padding" ) {
-				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
-
-			// But still keep track of it otherwise
-			} else {
-				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
-			}
-
-		// If we get here with a border-box (content + padding + border), we're seeking "content" or
-		// "padding" or "margin"
-		} else {
-
-			// For "content", subtract padding
-			if ( box === "content" ) {
-				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
-			}
-
-			// For "content" or "padding", subtract border
-			if ( box !== "margin" ) {
-				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
-			}
-		}
-	}
-
-	// Account for positive content-box scroll gutter when requested by providing computedVal
-	if ( !isBorderBox && computedVal >= 0 ) {
-
-		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
-		// Assuming integer scroll gutter, subtract the rest and round down
-		delta += Math.max( 0, Math.ceil(
-			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
-			computedVal -
-			delta -
-			extra -
-			0.5
-
-		// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
-		// Use an explicit zero to avoid NaN (gh-3964)
-		) ) || 0;
-	}
-
-	return delta;
-}
-
-function getWidthOrHeight( elem, dimension, extra ) {
-
-	// Start with computed style
-	var styles = getStyles( elem ),
-
-		// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
-		// Fake content-box until we know it's needed to know the true value.
-		boxSizingNeeded = !support.boxSizingReliable() || extra,
-		isBorderBox = boxSizingNeeded &&
-			jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
-		valueIsBorderBox = isBorderBox,
-
-		val = curCSS( elem, dimension, styles ),
-		offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
-
-	// Support: Firefox <=54
-	// Return a confounding non-pixel value or feign ignorance, as appropriate.
-	if ( rnumnonpx.test( val ) ) {
-		if ( !extra ) {
-			return val;
-		}
-		val = "auto";
-	}
-
-
-	// Fall back to offsetWidth/offsetHeight when value is "auto"
-	// This happens for inline elements with no explicit setting (gh-3571)
-	// Support: Android <=4.1 - 4.3 only
-	// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
-	// Support: IE 9-11 only
-	// Also use offsetWidth/offsetHeight for when box sizing is unreliable
-	// We use getClientRects() to check for hidden/disconnected.
-	// In those cases, the computed value can be trusted to be border-box
-	if ( ( !support.boxSizingReliable() && isBorderBox ||
-		val === "auto" ||
-		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
-		elem.getClientRects().length ) {
-
-		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
-
-		// Where available, offsetWidth/offsetHeight approximate border box dimensions.
-		// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
-		// retrieved value as a content box dimension.
-		valueIsBorderBox = offsetProp in elem;
-		if ( valueIsBorderBox ) {
-			val = elem[ offsetProp ];
-		}
-	}
-
-	// Normalize "" and auto
-	val = parseFloat( val ) || 0;
-
-	// Adjust for the element's box model
-	return ( val +
-		boxModelAdjustment(
-			elem,
-			dimension,
-			extra || ( isBorderBox ? "border" : "content" ),
-			valueIsBorderBox,
-			styles,
-
-			// Provide the current computed size to request scroll gutter calculation (gh-3589)
-			val
-		)
-	) + "px";
-}
-
-jQuery.extend( {
-
-	// Add in style property hooks for overriding the default
-	// behavior of getting and setting a style property
-	cssHooks: {
-		opacity: {
-			get: function( elem, computed ) {
-				if ( computed ) {
-
-					// We should always get a number back from opacity
-					var ret = curCSS( elem, "opacity" );
-					return ret === "" ? "1" : ret;
-				}
-			}
-		}
-	},
-
-	// Don't automatically add "px" to these possibly-unitless properties
-	cssNumber: {
-		"animationIterationCount": true,
-		"columnCount": true,
-		"fillOpacity": true,
-		"flexGrow": true,
-		"flexShrink": true,
-		"fontWeight": true,
-		"gridArea": true,
-		"gridColumn": true,
-		"gridColumnEnd": true,
-		"gridColumnStart": true,
-		"gridRow": true,
-		"gridRowEnd": true,
-		"gridRowStart": true,
-		"lineHeight": true,
-		"opacity": true,
-		"order": true,
-		"orphans": true,
-		"widows": true,
-		"zIndex": true,
-		"zoom": true
-	},
-
-	// Add in properties whose names you wish to fix before
-	// setting or getting the value
-	cssProps: {},
-
-	// Get and set the style property on a DOM Node
-	style: function( elem, name, value, extra ) {
-
-		// Don't set styles on text and comment nodes
-		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
-			return;
-		}
-
-		// Make sure that we're working with the right name
-		var ret, type, hooks,
-			origName = camelCase( name ),
-			isCustomProp = rcustomProp.test( name ),
-			style = elem.style;
-
-		// Make sure that we're working with the right name. We don't
-		// want to query the value if it is a CSS custom property
-		// since they are user-defined.
-		if ( !isCustomProp ) {
-			name = finalPropName( origName );
-		}
-
-		// Gets hook for the prefixed version, then unprefixed version
-		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
-		// Check if we're setting a value
-		if ( value !== undefined ) {
-			type = typeof value;
-
-			// Convert "+=" or "-=" to relative numbers (#7345)
-			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
-				value = adjustCSS( elem, name, ret );
-
-				// Fixes bug #9237
-				type = "number";
-			}
-
-			// Make sure that null and NaN values aren't set (#7116)
-			if ( value == null || value !== value ) {
-				return;
-			}
-
-			// If a number was passed in, add the unit (except for certain CSS properties)
-			// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
-			// "px" to a few hardcoded values.
-			if ( type === "number" && !isCustomProp ) {
-				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
-			}
-
-			// background-* props affect original clone's values
-			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
-				style[ name ] = "inherit";
-			}
-
-			// If a hook was provided, use that value, otherwise just set the specified value
-			if ( !hooks || !( "set" in hooks ) ||
-				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
-
-				if ( isCustomProp ) {
-					style.setProperty( name, value );
-				} else {
-					style[ name ] = value;
-				}
-			}
-
-		} else {
-
-			// If a hook was provided get the non-computed value from there
-			if ( hooks && "get" in hooks &&
-				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
-
-				return ret;
-			}
-
-			// Otherwise just get the value from the style object
-			return style[ name ];
-		}
-	},
-
-	css: function( elem, name, extra, styles ) {
-		var val, num, hooks,
-			origName = camelCase( name ),
-			isCustomProp = rcustomProp.test( name );
-
-		// Make sure that we're working with the right name. We don't
-		// want to modify the value if it is a CSS custom property
-		// since they are user-defined.
-		if ( !isCustomProp ) {
-			name = finalPropName( origName );
-		}
-
-		// Try prefixed name followed by the unprefixed name
-		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
-
-		// If a hook was provided get the computed value from there
-		if ( hooks && "get" in hooks ) {
-			val = hooks.get( elem, true, extra );
-		}
-
-		// Otherwise, if a way to get the computed value exists, use that
-		if ( val === undefined ) {
-			val = curCSS( elem, name, styles );
-		}
-
-		// Convert "normal" to computed value
-		if ( val === "normal" && name in cssNormalTransform ) {
-			val = cssNormalTransform[ name ];
-		}
-
-		// Make numeric if forced or a qualifier was provided and val looks numeric
-		if ( extra === "" || extra ) {
-			num = parseFloat( val );
-			return extra === true || isFinite( num ) ? num || 0 : val;
-		}
-
-		return val;
-	}
-} );
-
-jQuery.each( [ "height", "width" ], function( i, dimension ) {
-	jQuery.cssHooks[ dimension ] = {
-		get: function( elem, computed, extra ) {
-			if ( computed ) {
-
-				// Certain elements can have dimension info if we invisibly show them
-				// but it must have a current display style that would benefit
-				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
-
-					// Support: Safari 8+
-					// Table columns in Safari have non-zero offsetWidth & zero
-					// getBoundingClientRect().width unless display is changed.
-					// Support: IE <=11 only
-					// Running getBoundingClientRect on a disconnected node
-					// in IE throws an error.
-					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
-						swap( elem, cssShow, function() {
-							return getWidthOrHeight( elem, dimension, extra );
-						} ) :
-						getWidthOrHeight( elem, dimension, extra );
-			}
-		},
-
-		set: function( elem, value, extra ) {
-			var matches,
-				styles = getStyles( elem ),
-
-				// Only read styles.position if the test has a chance to fail
-				// to avoid forcing a reflow.
-				scrollboxSizeBuggy = !support.scrollboxSize() &&
-					styles.position === "absolute",
-
-				// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
-				boxSizingNeeded = scrollboxSizeBuggy || extra,
-				isBorderBox = boxSizingNeeded &&
-					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
-				subtract = extra ?
-					boxModelAdjustment(
-						elem,
-						dimension,
-						extra,
-						isBorderBox,
-						styles
-					) :
-					0;
-
-			// Account for unreliable border-box dimensions by comparing offset* to computed and
-			// faking a content-box to get border and padding (gh-3699)
-			if ( isBorderBox && scrollboxSizeBuggy ) {
-				subtract -= Math.ceil(
-					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
-					parseFloat( styles[ dimension ] ) -
-					boxModelAdjustment( elem, dimension, "border", false, styles ) -
-					0.5
-				);
-			}
-
-			// Convert to pixels if value adjustment is needed
-			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
-				( matches[ 3 ] || "px" ) !== "px" ) {
-
-				elem.style[ dimension ] = value;
-				value = jQuery.css( elem, dimension );
-			}
-
-			return setPositiveNumber( elem, value, subtract );
-		}
-	};
-} );
-
-jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
-	function( elem, computed ) {
-		if ( computed ) {
-			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
-				elem.getBoundingClientRect().left -
-					swap( elem, { marginLeft: 0 }, function() {
-						return elem.getBoundingClientRect().left;
-					} )
-				) + "px";
-		}
-	}
-);
-
-// These hooks are used by animate to expand properties
-jQuery.each( {
-	margin: "",
-	padding: "",
-	border: "Width"
-}, function( prefix, suffix ) {
-	jQuery.cssHooks[ prefix + suffix ] = {
-		expand: function( value ) {
-			var i = 0,
-				expanded = {},
-
-				// Assumes a single number if not a string
-				parts = typeof value === "string" ? value.split( " " ) : [ value ];
-
-			for ( ; i < 4; i++ ) {
-				expanded[ prefix + cssExpand[ i ] + suffix ] =
-					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
-			}
-
-			return expanded;
-		}
-	};
-
-	if ( prefix !== "margin" ) {
-		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
-	}
-} );
-
-jQuery.fn.extend( {
-	css: function( name, value ) {
-		return access( this, function( elem, name, value ) {
-			var styles, len,
-				map = {},
-				i = 0;
-
-			if ( Array.isArray( name ) ) {
-				styles = getStyles( elem );
-				len = name.length;
-
-				for ( ; i < len; i++ ) {
-					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
-				}
-
-				return map;
-			}
-
-			return value !== undefined ?
-				jQuery.style( elem, name, value ) :
-				jQuery.css( elem, name );
-		}, name, value, arguments.length > 1 );
-	}
-} );
-
-
-function Tween( elem, options, prop, end, easing ) {
-	return new Tween.prototype.init( elem, options, prop, end, easing );
-}
-jQuery.Tween = Tween;
-
-Tween.prototype = {
-	constructor: Tween,
-	init: function( elem, options, prop, end, easing, unit ) {
-		this.elem = elem;
-		this.prop = prop;
-		this.easing = easing || jQuery.easing._default;
-		this.options = options;
-		this.start = this.now = this.cur();
-		this.end = end;
-		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
-	},
-	cur: function() {
-		var hooks = Tween.propHooks[ this.prop ];
-
-		return hooks && hooks.get ?
-			hooks.get( this ) :
-			Tween.propHooks._default.get( this );
-	},
-	run: function( percent ) {
-		var eased,
-			hooks = Tween.propHooks[ this.prop ];
-
-		if ( this.options.duration ) {
-			this.pos = eased = jQuery.easing[ this.easing ](
-				percent, this.options.duration * percent, 0, 1, this.options.duration
-			);
-		} else {
-			this.pos = eased = percent;
-		}
-		this.now = ( this.end - this.start ) * eased + this.start;
-
-		if ( this.options.step ) {
-			this.options.step.call( this.elem, this.now, this );
-		}
-
-		if ( hooks && hooks.set ) {
-			hooks.set( this );
-		} else {
-			Tween.propHooks._default.set( this );
-		}
-		return this;
-	}
-};
-
-Tween.prototype.init.prototype = Tween.prototype;
-
-Tween.propHooks = {
-	_default: {
-		get: function( tween ) {
-			var result;
-
-			// Use a property on the element directly when it is not a DOM element,
-			// or when there is no matching style property that exists.
-			if ( tween.elem.nodeType !== 1 ||
-				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
-				return tween.elem[ tween.prop ];
-			}
-
-			// Passing an empty string as a 3rd parameter to .css will automatically
-			// attempt a parseFloat and fallback to a string if the parse fails.
-			// Simple values such as "10px" are parsed to Float;
-			// complex values such as "rotate(1rad)" are returned as-is.
-			result = jQuery.css( tween.elem, tween.prop, "" );
-
-			// Empty strings, null, undefined and "auto" are converted to 0.
-			return !result || result === "auto" ? 0 : result;
-		},
-		set: function( tween ) {
-
-			// Use step hook for back compat.
-			// Use cssHook if its there.
-			// Use .style if available and use plain properties where available.
-			if ( jQuery.fx.step[ tween.prop ] ) {
-				jQuery.fx.step[ tween.prop ]( tween );
-			} else if ( tween.elem.nodeType === 1 && (
-					jQuery.cssHooks[ tween.prop ] ||
-					tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
-				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
-			} else {
-				tween.elem[ tween.prop ] = tween.now;
-			}
-		}
-	}
-};
-
-// Support: IE <=9 only
-// Panic based approach to setting things on disconnected nodes
-Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
-	set: function( tween ) {
-		if ( tween.elem.nodeType && tween.elem.parentNode ) {
-			tween.elem[ tween.prop ] = tween.now;
-		}
-	}
-};
-
-jQuery.easing = {
-	linear: function( p ) {
-		return p;
-	},
-	swing: function( p ) {
-		return 0.5 - Math.cos( p * Math.PI ) / 2;
-	},
-	_default: "swing"
-};
-
-jQuery.fx = Tween.prototype.init;
-
-// Back compat <1.8 extension point
-jQuery.fx.step = {};
-
-
-
-
-var
-	fxNow, inProgress,
-	rfxtypes = /^(?:toggle|show|hide)$/,
-	rrun = /queueHooks$/;
-
-function schedule() {
-	if ( inProgress ) {
-		if ( document.hidden === false && window.requestAnimationFrame ) {
-			window.requestAnimationFrame( schedule );
-		} else {
-			window.setTimeout( schedule, jQuery.fx.interval );
-		}
-
-		jQuery.fx.tick();
-	}
-}
-
-// Animations created synchronously will run synchronously
-function createFxNow() {
-	window.setTimeout( function() {
-		fxNow = undefined;
-	} );
-	return ( fxNow = Date.now() );
-}
-
-// Generate parameters to create a standard animation
-function genFx( type, includeWidth ) {
-	var which,
-		i = 0,
-		attrs = { height: type };
-
-	// If we include width, step value is 1 to do all cssExpand values,
-	// otherwise step value is 2 to skip over Left and Right
-	includeWidth = includeWidth ? 1 : 0;
-	for ( ; i < 4; i += 2 - includeWidth ) {
-		which = cssExpand[ i ];
-		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
-	}
-
-	if ( includeWidth ) {
-		attrs.opacity = attrs.width = type;
-	}
-
-	return attrs;
-}
-
-function createTween( value, prop, animation ) {
-	var tween,
-		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
-		index = 0,
-		length = collection.length;
-	for ( ; index < length; index++ ) {
-		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
-
-			// We're done with this property
-			return tween;
-		}
-	}
-}
-
-function defaultPrefilter( elem, props, opts ) {
-	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
-		isBox = "width" in props || "height" in props,
-		anim = this,
-		orig = {},
-		style = elem.style,
-		hidden = elem.nodeType && isHiddenWithinTree( elem ),
-		dataShow = dataPriv.get( elem, "fxshow" );
-
-	// Queue-skipping animations hijack the fx hooks
-	if ( !opts.queue ) {
-		hooks = jQuery._queueHooks( elem, "fx" );
-		if ( hooks.unqueued == null ) {
-			hooks.unqueued = 0;
-			oldfire = hooks.empty.fire;
-			hooks.empty.fire = function() {
-				if ( !hooks.unqueued ) {
-					oldfire();
-				}
-			};
-		}
-		hooks.unqueued++;
-
-		anim.always( function() {
-
-			// Ensure the complete handler is called before this completes
-			anim.always( function() {
-				hooks.unqueued--;
-				if ( !jQuery.queue( elem, "fx" ).length ) {
-					hooks.empty.fire();
-				}
-			} );
-		} );
-	}
-
-	// Detect show/hide animations
-	for ( prop in props ) {
-		value = props[ prop ];
-		if ( rfxtypes.test( value ) ) {
-			delete props[ prop ];
-			toggle = toggle || value === "toggle";
-			if ( value === ( hidden ? "hide" : "show" ) ) {
-
-				// Pretend to be hidden if this is a "show" and
-				// there is still data from a stopped show/hide
-				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
-					hidden = true;
-
-				// Ignore all other no-op show/hide data
-				} else {
-					continue;
-				}
-			}
-			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
-		}
-	}
-
-	// Bail out if this is a no-op like .hide().hide()
-	propTween = !jQuery.isEmptyObject( props );
-	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
-		return;
-	}
-
-	// Restrict "overflow" and "display" styles during box animations
-	if ( isBox && elem.nodeType === 1 ) {
-
-		// Support: IE <=9 - 11, Edge 12 - 15
-		// Record all 3 overflow attributes because IE does not infer the shorthand
-		// from identically-valued overflowX and overflowY and Edge just mirrors
-		// the overflowX value there.
-		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
-
-		// Identify a display type, preferring old show/hide data over the CSS cascade
-		restoreDisplay = dataShow && dataShow.display;
-		if ( restoreDisplay == null ) {
-			restoreDisplay = dataPriv.get( elem, "display" );
-		}
-		display = jQuery.css( elem, "display" );
-		if ( display === "none" ) {
-			if ( restoreDisplay ) {
-				display = restoreDisplay;
-			} else {
-
-				// Get nonempty value(s) by temporarily forcing visibility
-				showHide( [ elem ], true );
-				restoreDisplay = elem.style.display || restoreDisplay;
-				display = jQuery.css( elem, "display" );
-				showHide( [ elem ] );
-			}
-		}
-
-		// Animate inline elements as inline-block
-		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
-			if ( jQuery.css( elem, "float" ) === "none" ) {
-
-				// Restore the original display value at the end of pure show/hide animations
-				if ( !propTween ) {
-					anim.done( function() {
-						style.display = restoreDisplay;
-					} );
-					if ( restoreDisplay == null ) {
-						display = style.display;
-						restoreDisplay = display === "none" ? "" : display;
-					}
-				}
-				style.display = "inline-block";
-			}
-		}
-	}
-
-	if ( opts.overflow ) {
-		style.overflow = "hidden";
-		anim.always( function() {
-			style.overflow = opts.overflow[ 0 ];
-			style.overflowX = opts.overflow[ 1 ];
-			style.overflowY = opts.overflow[ 2 ];
-		} );
-	}
-
-	// Implement show/hide animations
-	propTween = false;
-	for ( prop in orig ) {
-
-		// General show/hide setup for this element animation
-		if ( !propTween ) {
-			if ( dataShow ) {
-				if ( "hidden" in dataShow ) {
-					hidden = dataShow.hidden;
-				}
-			} else {
-				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
-			}
-
-			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
-			if ( toggle ) {
-				dataShow.hidden = !hidden;
-			}
-
-			// Show elements before animating them
-			if ( hidden ) {
-				showHide( [ elem ], true );
-			}
-
-			/* eslint-disable no-loop-func */
-
-			anim.done( function() {
-
-			/* eslint-enable no-loop-func */
-
-				// The final step of a "hide" animation is actually hiding the element
-				if ( !hidden ) {
-					showHide( [ elem ] );
-				}
-				dataPriv.remove( elem, "fxshow" );
-				for ( prop in orig ) {
-					jQuery.style( elem, prop, orig[ prop ] );
-				}
-			} );
-		}
-
-		// Per-property setup
-		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
-		if ( !( prop in dataShow ) ) {
-			dataShow[ prop ] = propTween.start;
-			if ( hidden ) {
-				propTween.end = propTween.start;
-				propTween.start = 0;
-			}
-		}
-	}
-}
-
-function propFilter( props, specialEasing ) {
-	var index, name, easing, value, hooks;
-
-	// camelCase, specialEasing and expand cssHook pass
-	for ( index in props ) {
-		name = camelCase( index );
-		easing = specialEasing[ name ];
-		value = props[ index ];
-		if ( Array.isArray( value ) ) {
-			easing = value[ 1 ];
-			value = props[ index ] = value[ 0 ];
-		}
-
-		if ( index !== name ) {
-			props[ name ] = value;
-			delete props[ index ];
-		}
-
-		hooks = jQuery.cssHooks[ name ];
-		if ( hooks && "expand" in hooks ) {
-			value = hooks.expand( value );
-			delete props[ name ];
-
-			// Not quite $.extend, this won't overwrite existing keys.
-			// Reusing 'index' because we have the correct "name"
-			for ( index in value ) {
-				if ( !( index in props ) ) {
-					props[ index ] = value[ index ];
-					specialEasing[ index ] = easing;
-				}
-			}
-		} else {
-			specialEasing[ name ] = easing;
-		}
-	}
-}
-
-function Animation( elem, properties, options ) {
-	var result,
-		stopped,
-		index = 0,
-		length = Animation.prefilters.length,
-		deferred = jQuery.Deferred().always( function() {
-
-			// Don't match elem in the :animated selector
-			delete tick.elem;
-		} ),
-		tick = function() {
-			if ( stopped ) {
-				return false;
-			}
-			var currentTime = fxNow || createFxNow(),
-				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
-
-				// Support: Android 2.3 only
-				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
-				temp = remaining / animation.duration || 0,
-				percent = 1 - temp,
-				index = 0,
-				length = animation.tweens.length;
-
-			for ( ; index < length; index++ ) {
-				animation.tweens[ index ].run( percent );
-			}
-
-			deferred.notifyWith( elem, [ animation, percent, remaining ] );
-
-			// If there's more to do, yield
-			if ( percent < 1 && length ) {
-				return remaining;
-			}
-
-			// If this was an empty animation, synthesize a final progress notification
-			if ( !length ) {
-				deferred.notifyWith( elem, [ animation, 1, 0 ] );
-			}
-
-			// Resolve the animation and report its conclusion
-			deferred.resolveWith( elem, [ animation ] );
-			return false;
-		},
-		animation = deferred.promise( {
-			elem: elem,
-			props: jQuery.extend( {}, properties ),
-			opts: jQuery.extend( true, {
-				specialEasing: {},
-				easing: jQuery.easing._default
-			}, options ),
-			originalProperties: properties,
-			originalOptions: options,
-			startTime: fxNow || createFxNow(),
-			duration: options.duration,
-			tweens: [],
-			createTween: function( prop, end ) {
-				var tween = jQuery.Tween( elem, animation.opts, prop, end,
-						animation.opts.specialEasing[ prop ] || animation.opts.easing );
-				animation.tweens.push( tween );
-				return tween;
-			},
-			stop: function( gotoEnd ) {
-				var index = 0,
-
-					// If we are going to the end, we want to run all the tweens
-					// otherwise we skip this part
-					length = gotoEnd ? animation.tweens.length : 0;
-				if ( stopped ) {
-					return this;
-				}
-				stopped = true;
-				for ( ; index < length; index++ ) {
-					animation.tweens[ index ].run( 1 );
-				}
-
-				// Resolve when we played the last frame; otherwise, reject
-				if ( gotoEnd ) {
-					deferred.notifyWith( elem, [ animation, 1, 0 ] );
-					deferred.resolveWith( elem, [ animation, gotoEnd ] );
-				} else {
-					deferred.rejectWith( elem, [ animation, gotoEnd ] );
-				}
-				return this;
-			}
-		} ),
-		props = animation.props;
-
-	propFilter( props, animation.opts.specialEasing );
-
-	for ( ; index < length; index++ ) {
-		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
-		if ( result ) {
-			if ( isFunction( result.stop ) ) {
-				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
-					result.stop.bind( result );
-			}
-			return result;
-		}
-	}
-
-	jQuery.map( props, createTween, animation );
-
-	if ( isFunction( animation.opts.start ) ) {
-		animation.opts.start.call( elem, animation );
-	}
-
-	// Attach callbacks from options
-	animation
-		.progress( animation.opts.progress )
-		.done( animation.opts.done, animation.opts.complete )
-		.fail( animation.opts.fail )
-		.always( animation.opts.always );
-
-	jQuery.fx.timer(
-		jQuery.extend( tick, {
-			elem: elem,
-			anim: animation,
-			queue: animation.opts.queue
-		} )
-	);
-
-	return animation;
-}
-
-jQuery.Animation = jQuery.extend( Animation, {
-
-	tweeners: {
-		"*": [ function( prop, value ) {
-			var tween = this.createTween( prop, value );
-			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
-			return tween;
-		} ]
-	},
-
-	tweener: function( props, callback ) {
-		if ( isFunction( props ) ) {
-			callback = props;
-			props = [ "*" ];
-		} else {
-			props = props.match( rnothtmlwhite );
-		}
-
-		var prop,
-			index = 0,
-			length = props.length;
-
-		for ( ; index < length; index++ ) {
-			prop = props[ index ];
-			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
-			Animation.tweeners[ prop ].unshift( callback );
-		}
-	},
-
-	prefilters: [ defaultPrefilter ],
-
-	prefilter: function( callback, prepend ) {
-		if ( prepend ) {
-			Animation.prefilters.unshift( callback );
-		} else {
-			Animation.prefilters.push( callback );
-		}
-	}
-} );
-
-jQuery.speed = function( speed, easing, fn ) {
-	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
-		complete: fn || !fn && easing ||
-			isFunction( speed ) && speed,
-		duration: speed,
-		easing: fn && easing || easing && !isFunction( easing ) && easing
-	};
-
-	// Go to the end state if fx are off
-	if ( jQuery.fx.off ) {
-		opt.duration = 0;
-
-	} else {
-		if ( typeof opt.duration !== "number" ) {
-			if ( opt.duration in jQuery.fx.speeds ) {
-				opt.duration = jQuery.fx.speeds[ opt.duration ];
-
-			} else {
-				opt.duration = jQuery.fx.speeds._default;
-			}
-		}
-	}
-
-	// Normalize opt.queue - true/undefined/null -> "fx"
-	if ( opt.queue == null || opt.queue === true ) {
-		opt.queue = "fx";
-	}
-
-	// Queueing
-	opt.old = opt.complete;
-
-	opt.complete = function() {
-		if ( isFunction( opt.old ) ) {
-			opt.old.call( this );
-		}
-
-		if ( opt.queue ) {
-			jQuery.dequeue( this, opt.queue );
-		}
-	};
-
-	return opt;
-};
-
-jQuery.fn.extend( {
-	fadeTo: function( speed, to, easing, callback ) {
-
-		// Show any hidden elements after setting opacity to 0
-		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
-
-			// Animate to the value specified
-			.end().animate( { opacity: to }, speed, easing, callback );
-	},
-	animate: function( prop, speed, easing, callback ) {
-		var empty = jQuery.isEmptyObject( prop ),
-			optall = jQuery.speed( speed, easing, callback ),
-			doAnimation = function() {
-
-				// Operate on a copy of prop so per-property easing won't be lost
-				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
-
-				// Empty animations, or finishing resolves immediately
-				if ( empty || dataPriv.get( this, "finish" ) ) {
-					anim.stop( true );
-				}
-			};
-			doAnimation.finish = doAnimation;
-
-		return empty || optall.queue === false ?
-			this.each( doAnimation ) :
-			this.queue( optall.queue, doAnimation );
-	},
-	stop: function( type, clearQueue, gotoEnd ) {
-		var stopQueue = function( hooks ) {
-			var stop = hooks.stop;
-			delete hooks.stop;
-			stop( gotoEnd );
-		};
-
-		if ( typeof type !== "string" ) {
-			gotoEnd = clearQueue;
-			clearQueue = type;
-			type = undefined;
-		}
-		if ( clearQueue && type !== false ) {
-			this.queue( type || "fx", [] );
-		}
-
-		return this.each( function() {
-			var dequeue = true,
-				index = type != null && type + "queueHooks",
-				timers = jQuery.timers,
-				data = dataPriv.get( this );
-
-			if ( index ) {
-				if ( data[ index ] && data[ index ].stop ) {
-					stopQueue( data[ index ] );
-				}
-			} else {
-				for ( index in data ) {
-					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
-						stopQueue( data[ index ] );
-					}
-				}
-			}
-
-			for ( index = timers.length; index--; ) {
-				if ( timers[ index ].elem === this &&
-					( type == null || timers[ index ].queue === type ) ) {
-
-					timers[ index ].anim.stop( gotoEnd );
-					dequeue = false;
-					timers.splice( index, 1 );
-				}
-			}
-
-			// Start the next in the queue if the last step wasn't forced.
-			// Timers currently will call their complete callbacks, which
-			// will dequeue but only if they were gotoEnd.
-			if ( dequeue || !gotoEnd ) {
-				jQuery.dequeue( this, type );
-			}
-		} );
-	},
-	finish: function( type ) {
-		if ( type !== false ) {
-			type = type || "fx";
-		}
-		return this.each( function() {
-			var index,
-				data = dataPriv.get( this ),
-				queue = data[ type + "queue" ],
-				hooks = data[ type + "queueHooks" ],
-				timers = jQuery.timers,
-				length = queue ? queue.length : 0;
-
-			// Enable finishing flag on private data
-			data.finish = true;
-
-			// Empty the queue first
-			jQuery.queue( this, type, [] );
-
-			if ( hooks && hooks.stop ) {
-				hooks.stop.call( this, true );
-			}
-
-			// Look for any active animations, and finish them
-			for ( index = timers.length; index--; ) {
-				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
-					timers[ index ].anim.stop( true );
-					timers.splice( index, 1 );
-				}
-			}
-
-			// Look for any animations in the old queue and finish them
-			for ( index = 0; index < length; index++ ) {
-				if ( queue[ index ] && queue[ index ].finish ) {
-					queue[ index ].finish.call( this );
-				}
-			}
-
-			// Turn off finishing flag
-			delete data.finish;
-		} );
-	}
-} );
-
-jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) {
-	var cssFn = jQuery.fn[ name ];
-	jQuery.fn[ name ] = function( speed, easing, callback ) {
-		return speed == null || typeof speed === "boolean" ?
-			cssFn.apply( this, arguments ) :
-			this.animate( genFx( name, true ), speed, easing, callback );
-	};
-} );
-
-// Generate shortcuts for custom animations
-jQuery.each( {
-	slideDown: genFx( "show" ),
-	slideUp: genFx( "hide" ),
-	slideToggle: genFx( "toggle" ),
-	fadeIn: { opacity: "show" },
-	fadeOut: { opacity: "hide" },
-	fadeToggle: { opacity: "toggle" }
-}, function( name, props ) {
-	jQuery.fn[ name ] = function( speed, easing, callback ) {
-		return this.animate( props, speed, easing, callback );
-	};
-} );
-
-jQuery.timers = [];
-jQuery.fx.tick = function() {
-	var timer,
-		i = 0,
-		timers = jQuery.timers;
-
-	fxNow = Date.now();
-
-	for ( ; i < timers.length; i++ ) {
-		timer = timers[ i ];
-
-		// Run the timer and safely remove it when done (allowing for external removal)
-		if ( !timer() && timers[ i ] === timer ) {
-			timers.splice( i--, 1 );
-		}
-	}
-
-	if ( !timers.length ) {
-		jQuery.fx.stop();
-	}
-	fxNow = undefined;
-};
-
-jQuery.fx.timer = function( timer ) {
-	jQuery.timers.push( timer );
-	jQuery.fx.start();
-};
-
-jQuery.fx.interval = 13;
-jQuery.fx.start = function() {
-	if ( inProgress ) {
-		return;
-	}
-
-	inProgress = true;
-	schedule();
-};
-
-jQuery.fx.stop = function() {
-	inProgress = null;
-};
-
-jQuery.fx.speeds = {
-	slow: 600,
-	fast: 200,
-
-	// Default speed
-	_default: 400
-};
-
-
-// Based off of the plugin by Clint Helfers, with permission.
-// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
-jQuery.fn.delay = function( time, type ) {
-	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
-	type = type || "fx";
-
-	return this.queue( type, function( next, hooks ) {
-		var timeout = window.setTimeout( next, time );
-		hooks.stop = function() {
-			window.clearTimeout( timeout );
-		};
-	} );
-};
-
-
-( function() {
-	var input = document.createElement( "input" ),
-		select = document.createElement( "select" ),
-		opt = select.appendChild( document.createElement( "option" ) );
-
-	input.type = "checkbox";
-
-	// Support: Android <=4.3 only
-	// Default value for a checkbox should be "on"
-	support.checkOn = input.value !== "";
-
-	// Support: IE <=11 only
-	// Must access selectedIndex to make default options select
-	support.optSelected = opt.selected;
-
-	// Support: IE <=11 only
-	// An input loses its value after becoming a radio
-	input = document.createElement( "input" );
-	input.value = "t";
-	input.type = "radio";
-	support.radioValue = input.value === "t";
-} )();
-
-
-var boolHook,
-	attrHandle = jQuery.expr.attrHandle;
-
-jQuery.fn.extend( {
-	attr: function( name, value ) {
-		return access( this, jQuery.attr, name, value, arguments.length > 1 );
-	},
-
-	removeAttr: function( name ) {
-		return this.each( function() {
-			jQuery.removeAttr( this, name );
-		} );
-	}
-} );
-
-jQuery.extend( {
-	attr: function( elem, name, value ) {
-		var ret, hooks,
-			nType = elem.nodeType;
-
-		// Don't get/set attributes on text, comment and attribute nodes
-		if ( nType === 3 || nType === 8 || nType === 2 ) {
-			return;
-		}
-
-		// Fallback to prop when attributes are not supported
-		if ( typeof elem.getAttribute === "undefined" ) {
-			return jQuery.prop( elem, name, value );
-		}
-
-		// Attribute hooks are determined by the lowercase version
-		// Grab necessary hook if one is defined
-		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
-			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
-				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
-		}
-
-		if ( value !== undefined ) {
-			if ( value === null ) {
-				jQuery.removeAttr( elem, name );
-				return;
-			}
-
-			if ( hooks && "set" in hooks &&
-				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
-				return ret;
-			}
-
-			elem.setAttribute( name, value + "" );
-			return value;
-		}
-
-		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
-			return ret;
-		}
-
-		ret = jQuery.find.attr( elem, name );
-
-		// Non-existent attributes return null, we normalize to undefined
-		return ret == null ? undefined : ret;
-	},
-
-	attrHooks: {
-		type: {
-			set: function( elem, value ) {
-				if ( !support.radioValue && value === "radio" &&
-					nodeName( elem, "input" ) ) {
-					var val = elem.value;
-					elem.setAttribute( "type", value );
-					if ( val ) {
-						elem.value = val;
-					}
-					return value;
-				}
-			}
-		}
-	},
-
-	removeAttr: function( elem, value ) {
-		var name,
-			i = 0,
-
-			// Attribute names can contain non-HTML whitespace characters
-			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
-			attrNames = value && value.match( rnothtmlwhite );
-
-		if ( attrNames && elem.nodeType === 1 ) {
-			while ( ( name = attrNames[ i++ ] ) ) {
-				elem.removeAttribute( name );
-			}
-		}
-	}
-} );
-
-// Hooks for boolean attributes
-boolHook = {
-	set: function( elem, value, name ) {
-		if ( value === false ) {
-
-			// Remove boolean attributes when set to false
-			jQuery.removeAttr( elem, name );
-		} else {
-			elem.setAttribute( name, name );
-		}
-		return name;
-	}
-};
-
-jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) {
-	var getter = attrHandle[ name ] || jQuery.find.attr;
-
-	attrHandle[ name ] = function( elem, name, isXML ) {
-		var ret, handle,
-			lowercaseName = name.toLowerCase();
-
-		if ( !isXML ) {
-
-			// Avoid an infinite loop by temporarily removing this function from the getter
-			handle = attrHandle[ lowercaseName ];
-			attrHandle[ lowercaseName ] = ret;
-			ret = getter( elem, name, isXML ) != null ?
-				lowercaseName :
-				null;
-			attrHandle[ lowercaseName ] = handle;
-		}
-		return ret;
-	};
-} );
-
-
-
-
-var rfocusable = /^(?:input|select|textarea|button)$/i,
-	rclickable = /^(?:a|area)$/i;
-
-jQuery.fn.extend( {
-	prop: function( name, value ) {
-		return access( this, jQuery.prop, name, value, arguments.length > 1 );
-	},
-
-	removeProp: function( name ) {
-		return this.each( function() {
-			delete this[ jQuery.propFix[ name ] || name ];
-		} );
-	}
-} );
-
-jQuery.extend( {
-	prop: function( elem, name, value ) {
-		var ret, hooks,
-			nType = elem.nodeType;
-
-		// Don't get/set properties on text, comment and attribute nodes
-		if ( nType === 3 || nType === 8 || nType === 2 ) {
-			return;
-		}
-
-		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
-
-			// Fix name and attach hooks
-			name = jQuery.propFix[ name ] || name;
-			hooks = jQuery.propHooks[ name ];
-		}
-
-		if ( value !== undefined ) {
-			if ( hooks && "set" in hooks &&
-				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
-				return ret;
-			}
-
-			return ( elem[ name ] = value );
-		}
-
-		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
-			return ret;
-		}
-
-		return elem[ name ];
-	},
-
-	propHooks: {
-		tabIndex: {
-			get: function( elem ) {
-
-				// Support: IE <=9 - 11 only
-				// elem.tabIndex doesn't always return the
-				// correct value when it hasn't been explicitly set
-				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
-				// Use proper attribute retrieval(#12072)
-				var tabindex = jQuery.find.attr( elem, "tabindex" );
-
-				if ( tabindex ) {
-					return parseInt( tabindex, 10 );
-				}
-
-				if (
-					rfocusable.test( elem.nodeName ) ||
-					rclickable.test( elem.nodeName ) &&
-					elem.href
-				) {
-					return 0;
-				}
-
-				return -1;
-			}
-		}
-	},
-
-	propFix: {
-		"for": "htmlFor",
-		"class": "className"
-	}
-} );
-
-// Support: IE <=11 only
-// Accessing the selectedIndex property
-// forces the browser to respect setting selected
-// on the option
-// The getter ensures a default option is selected
-// when in an optgroup
-// eslint rule "no-unused-expressions" is disabled for this code
-// since it considers such accessions noop
-if ( !support.optSelected ) {
-	jQuery.propHooks.selected = {
-		get: function( elem ) {
-
-			/* eslint no-unused-expressions: "off" */
-
-			var parent = elem.parentNode;
-			if ( parent && parent.parentNode ) {
-				parent.parentNode.selectedIndex;
-			}
-			return null;
-		},
-		set: function( elem ) {
-
-			/* eslint no-unused-expressions: "off" */
-
-			var parent = elem.parentNode;
-			if ( parent ) {
-				parent.selectedIndex;
-
-				if ( parent.parentNode ) {
-					parent.parentNode.selectedIndex;
-				}
-			}
-		}
-	};
-}
-
-jQuery.each( [
-	"tabIndex",
-	"readOnly",
-	"maxLength",
-	"cellSpacing",
-	"cellPadding",
-	"rowSpan",
-	"colSpan",
-	"useMap",
-	"frameBorder",
-	"contentEditable"
-], function() {
-	jQuery.propFix[ this.toLowerCase() ] = this;
-} );
-
-
-
-
-	// Strip and collapse whitespace according to HTML spec
-	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
-	function stripAndCollapse( value ) {
-		var tokens = value.match( rnothtmlwhite ) || [];
-		return tokens.join( " " );
-	}
-
-
-function getClass( elem ) {
-	return elem.getAttribute && elem.getAttribute( "class" ) || "";
-}
-
-function classesToArray( value ) {
-	if ( Array.isArray( value ) ) {
-		return value;
-	}
-	if ( typeof value === "string" ) {
-		return value.match( rnothtmlwhite ) || [];
-	}
-	return [];
-}
-
-jQuery.fn.extend( {
-	addClass: function( value ) {
-		var classes, elem, cur, curValue, clazz, j, finalValue,
-			i = 0;
-
-		if ( isFunction( value ) ) {
-			return this.each( function( j ) {
-				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
-			} );
-		}
-
-		classes = classesToArray( value );
-
-		if ( classes.length ) {
-			while ( ( elem = this[ i++ ] ) ) {
-				curValue = getClass( elem );
-				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
-
-				if ( cur ) {
-					j = 0;
-					while ( ( clazz = classes[ j++ ] ) ) {
-						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
-							cur += clazz + " ";
-						}
-					}
-
-					// Only assign if different to avoid unneeded rendering.
-					finalValue = stripAndCollapse( cur );
-					if ( curValue !== finalValue ) {
-						elem.setAttribute( "class", finalValue );
-					}
-				}
-			}
-		}
-
-		return this;
-	},
-
-	removeClass: function( value ) {
-		var classes, elem, cur, curValue, clazz, j, finalValue,
-			i = 0;
-
-		if ( isFunction( value ) ) {
-			return this.each( function( j ) {
-				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
-			} );
-		}
-
-		if ( !arguments.length ) {
-			return this.attr( "class", "" );
-		}
-
-		classes = classesToArray( value );
-
-		if ( classes.length ) {
-			while ( ( elem = this[ i++ ] ) ) {
-				curValue = getClass( elem );
-
-				// This expression is here for better compressibility (see addClass)
-				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
-
-				if ( cur ) {
-					j = 0;
-					while ( ( clazz = classes[ j++ ] ) ) {
-
-						// Remove *all* instances
-						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
-							cur = cur.replace( " " + clazz + " ", " " );
-						}
-					}
-
-					// Only assign if different to avoid unneeded rendering.
-					finalValue = stripAndCollapse( cur );
-					if ( curValue !== finalValue ) {
-						elem.setAttribute( "class", finalValue );
-					}
-				}
-			}
-		}
-
-		return this;
-	},
-
-	toggleClass: function( value, stateVal ) {
-		var type = typeof value,
-			isValidValue = type === "string" || Array.isArray( value );
-
-		if ( typeof stateVal === "boolean" && isValidValue ) {
-			return stateVal ? this.addClass( value ) : this.removeClass( value );
-		}
-
-		if ( isFunction( value ) ) {
-			return this.each( function( i ) {
-				jQuery( this ).toggleClass(
-					value.call( this, i, getClass( this ), stateVal ),
-					stateVal
-				);
-			} );
-		}
-
-		return this.each( function() {
-			var className, i, self, classNames;
-
-			if ( isValidValue ) {
-
-				// Toggle individual class names
-				i = 0;
-				self = jQuery( this );
-				classNames = classesToArray( value );
-
-				while ( ( className = classNames[ i++ ] ) ) {
-
-					// Check each className given, space separated list
-					if ( self.hasClass( className ) ) {
-						self.removeClass( className );
-					} else {
-						self.addClass( className );
-					}
-				}
-
-			// Toggle whole class name
-			} else if ( value === undefined || type === "boolean" ) {
-				className = getClass( this );
-				if ( className ) {
-
-					// Store className if set
-					dataPriv.set( this, "__className__", className );
-				}
-
-				// If the element has a class name or if we're passed `false`,
-				// then remove the whole classname (if there was one, the above saved it).
-				// Otherwise bring back whatever was previously saved (if anything),
-				// falling back to the empty string if nothing was stored.
-				if ( this.setAttribute ) {
-					this.setAttribute( "class",
-						className || value === false ?
-						"" :
-						dataPriv.get( this, "__className__" ) || ""
-					);
-				}
-			}
-		} );
-	},
-
-	hasClass: function( selector ) {
-		var className, elem,
-			i = 0;
-
-		className = " " + selector + " ";
-		while ( ( elem = this[ i++ ] ) ) {
-			if ( elem.nodeType === 1 &&
-				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
-					return true;
-			}
-		}
-
-		return false;
-	}
-} );
-
-
-
-
-var rreturn = /\r/g;
-
-jQuery.fn.extend( {
-	val: function( value ) {
-		var hooks, ret, valueIsFunction,
-			elem = this[ 0 ];
-
-		if ( !arguments.length ) {
-			if ( elem ) {
-				hooks = jQuery.valHooks[ elem.type ] ||
-					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
-
-				if ( hooks &&
-					"get" in hooks &&
-					( ret = hooks.get( elem, "value" ) ) !== undefined
-				) {
-					return ret;
-				}
-
-				ret = elem.value;
-
-				// Handle most common string cases
-				if ( typeof ret === "string" ) {
-					return ret.replace( rreturn, "" );
-				}
-
-				// Handle cases where value is null/undef or number
-				return ret == null ? "" : ret;
-			}
-
-			return;
-		}
-
-		valueIsFunction = isFunction( value );
-
-		return this.each( function( i ) {
-			var val;
-
-			if ( this.nodeType !== 1 ) {
-				return;
-			}
-
-			if ( valueIsFunction ) {
-				val = value.call( this, i, jQuery( this ).val() );
-			} else {
-				val = value;
-			}
-
-			// Treat null/undefined as ""; convert numbers to string
-			if ( val == null ) {
-				val = "";
-
-			} else if ( typeof val === "number" ) {
-				val += "";
-
-			} else if ( Array.isArray( val ) ) {
-				val = jQuery.map( val, function( value ) {
-					return value == null ? "" : value + "";
-				} );
-			}
-
-			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
-
-			// If set returns undefined, fall back to normal setting
-			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
-				this.value = val;
-			}
-		} );
-	}
-} );
-
-jQuery.extend( {
-	valHooks: {
-		option: {
-			get: function( elem ) {
-
-				var val = jQuery.find.attr( elem, "value" );
-				return val != null ?
-					val :
-
-					// Support: IE <=10 - 11 only
-					// option.text throws exceptions (#14686, #14858)
-					// Strip and collapse whitespace
-					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
-					stripAndCollapse( jQuery.text( elem ) );
-			}
-		},
-		select: {
-			get: function( elem ) {
-				var value, option, i,
-					options = elem.options,
-					index = elem.selectedIndex,
-					one = elem.type === "select-one",
-					values = one ? null : [],
-					max = one ? index + 1 : options.length;
-
-				if ( index < 0 ) {
-					i = max;
-
-				} else {
-					i = one ? index : 0;
-				}
-
-				// Loop through all the selected options
-				for ( ; i < max; i++ ) {
-					option = options[ i ];
-
-					// Support: IE <=9 only
-					// IE8-9 doesn't update selected after form reset (#2551)
-					if ( ( option.selected || i === index ) &&
-
-							// Don't return options that are disabled or in a disabled optgroup
-							!option.disabled &&
-							( !option.parentNode.disabled ||
-								!nodeName( option.parentNode, "optgroup" ) ) ) {
-
-						// Get the specific value for the option
-						value = jQuery( option ).val();
-
-						// We don't need an array for one selects
-						if ( one ) {
-							return value;
-						}
-
-						// Multi-Selects return an array
-						values.push( value );
-					}
-				}
-
-				return values;
-			},
-
-			set: function( elem, value ) {
-				var optionSet, option,
-					options = elem.options,
-					values = jQuery.makeArray( value ),
-					i = options.length;
-
-				while ( i-- ) {
-					option = options[ i ];
-
-					/* eslint-disable no-cond-assign */
-
-					if ( option.selected =
-						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
-					) {
-						optionSet = true;
-					}
-
-					/* eslint-enable no-cond-assign */
-				}
-
-				// Force browsers to behave consistently when non-matching value is set
-				if ( !optionSet ) {
-					elem.selectedIndex = -1;
-				}
-				return values;
-			}
-		}
-	}
-} );
-
-// Radios and checkboxes getter/setter
-jQuery.each( [ "radio", "checkbox" ], function() {
-	jQuery.valHooks[ this ] = {
-		set: function( elem, value ) {
-			if ( Array.isArray( value ) ) {
-				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
-			}
-		}
-	};
-	if ( !support.checkOn ) {
-		jQuery.valHooks[ this ].get = function( elem ) {
-			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
-		};
-	}
-} );
-
-
-
-
-// Return jQuery for attributes-only inclusion
-
-
-support.focusin = "onfocusin" in window;
-
-
-var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
-	stopPropagationCallback = function( e ) {
-		e.stopPropagation();
-	};
-
-jQuery.extend( jQuery.event, {
-
-	trigger: function( event, data, elem, onlyHandlers ) {
-
-		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
-			eventPath = [ elem || document ],
-			type = hasOwn.call( event, "type" ) ? event.type : event,
-			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
-
-		cur = lastElement = tmp = elem = elem || document;
-
-		// Don't do events on text and comment nodes
-		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
-			return;
-		}
-
-		// focus/blur morphs to focusin/out; ensure we're not firing them right now
-		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
-			return;
-		}
-
-		if ( type.indexOf( "." ) > -1 ) {
-
-			// Namespaced trigger; create a regexp to match event type in handle()
-			namespaces = type.split( "." );
-			type = namespaces.shift();
-			namespaces.sort();
-		}
-		ontype = type.indexOf( ":" ) < 0 && "on" + type;
-
-		// Caller can pass in a jQuery.Event object, Object, or just an event type string
-		event = event[ jQuery.expando ] ?
-			event :
-			new jQuery.Event( type, typeof event === "object" && event );
-
-		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
-		event.isTrigger = onlyHandlers ? 2 : 3;
-		event.namespace = namespaces.join( "." );
-		event.rnamespace = event.namespace ?
-			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
-			null;
-
-		// Clean up the event in case it is being reused
-		event.result = undefined;
-		if ( !event.target ) {
-			event.target = elem;
-		}
-
-		// Clone any incoming data and prepend the event, creating the handler arg list
-		data = data == null ?
-			[ event ] :
-			jQuery.makeArray( data, [ event ] );
-
-		// Allow special events to draw outside the lines
-		special = jQuery.event.special[ type ] || {};
-		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
-			return;
-		}
-
-		// Determine event propagation path in advance, per W3C events spec (#9951)
-		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
-		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
-
-			bubbleType = special.delegateType || type;
-			if ( !rfocusMorph.test( bubbleType + type ) ) {
-				cur = cur.parentNode;
-			}
-			for ( ; cur; cur = cur.parentNode ) {
-				eventPath.push( cur );
-				tmp = cur;
-			}
-
-			// Only add window if we got to document (e.g., not plain obj or detached DOM)
-			if ( tmp === ( elem.ownerDocument || document ) ) {
-				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
-			}
-		}
-
-		// Fire handlers on the event path
-		i = 0;
-		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
-			lastElement = cur;
-			event.type = i > 1 ?
-				bubbleType :
-				special.bindType || type;
-
-			// jQuery handler
-			handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] &&
-				dataPriv.get( cur, "handle" );
-			if ( handle ) {
-				handle.apply( cur, data );
-			}
-
-			// Native handler
-			handle = ontype && cur[ ontype ];
-			if ( handle && handle.apply && acceptData( cur ) ) {
-				event.result = handle.apply( cur, data );
-				if ( event.result === false ) {
-					event.preventDefault();
-				}
-			}
-		}
-		event.type = type;
-
-		// If nobody prevented the default action, do it now
-		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
-
-			if ( ( !special._default ||
-				special._default.apply( eventPath.pop(), data ) === false ) &&
-				acceptData( elem ) ) {
-
-				// Call a native DOM method on the target with the same name as the event.
-				// Don't do default actions on window, that's where global variables be (#6170)
-				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
-
-					// Don't re-trigger an onFOO event when we call its FOO() method
-					tmp = elem[ ontype ];
-
-					if ( tmp ) {
-						elem[ ontype ] = null;
-					}
-
-					// Prevent re-triggering of the same event, since we already bubbled it above
-					jQuery.event.triggered = type;
-
-					if ( event.isPropagationStopped() ) {
-						lastElement.addEventListener( type, stopPropagationCallback );
-					}
-
-					elem[ type ]();
-
-					if ( event.isPropagationStopped() ) {
-						lastElement.removeEventListener( type, stopPropagationCallback );
-					}
-
-					jQuery.event.triggered = undefined;
-
-					if ( tmp ) {
-						elem[ ontype ] = tmp;
-					}
-				}
-			}
-		}
-
-		return event.result;
-	},
-
-	// Piggyback on a donor event to simulate a different one
-	// Used only for `focus(in | out)` events
-	simulate: function( type, elem, event ) {
-		var e = jQuery.extend(
-			new jQuery.Event(),
-			event,
-			{
-				type: type,
-				isSimulated: true
-			}
-		);
-
-		jQuery.event.trigger( e, null, elem );
-	}
-
-} );
-
-jQuery.fn.extend( {
-
-	trigger: function( type, data ) {
-		return this.each( function() {
-			jQuery.event.trigger( type, data, this );
-		} );
-	},
-	triggerHandler: function( type, data ) {
-		var elem = this[ 0 ];
-		if ( elem ) {
-			return jQuery.event.trigger( type, data, elem, true );
-		}
-	}
-} );
-
-
-// Support: Firefox <=44
-// Firefox doesn't have focus(in | out) events
-// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
-//
-// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
-// focus(in | out) events fire after focus & blur events,
-// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
-// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
-if ( !support.focusin ) {
-	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
-
-		// Attach a single capturing handler on the document while someone wants focusin/focusout
-		var handler = function( event ) {
-			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
-		};
-
-		jQuery.event.special[ fix ] = {
-			setup: function() {
-				var doc = this.ownerDocument || this,
-					attaches = dataPriv.access( doc, fix );
-
-				if ( !attaches ) {
-					doc.addEventListener( orig, handler, true );
-				}
-				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
-			},
-			teardown: function() {
-				var doc = this.ownerDocument || this,
-					attaches = dataPriv.access( doc, fix ) - 1;
-
-				if ( !attaches ) {
-					doc.removeEventListener( orig, handler, true );
-					dataPriv.remove( doc, fix );
-
-				} else {
-					dataPriv.access( doc, fix, attaches );
-				}
-			}
-		};
-	} );
-}
-var location = window.location;
-
-var nonce = Date.now();
-
-var rquery = ( /\?/ );
-
-
-
-// Cross-browser xml parsing
-jQuery.parseXML = function( data ) {
-	var xml;
-	if ( !data || typeof data !== "string" ) {
-		return null;
-	}
-
-	// Support: IE 9 - 11 only
-	// IE throws on parseFromString with invalid input.
-	try {
-		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
-	} catch ( e ) {
-		xml = undefined;
-	}
-
-	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
-		jQuery.error( "Invalid XML: " + data );
-	}
-	return xml;
-};
-
-
-var
-	rbracket = /\[\]$/,
-	rCRLF = /\r?\n/g,
-	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
-	rsubmittable = /^(?:input|select|textarea|keygen)/i;
-
-function buildParams( prefix, obj, traditional, add ) {
-	var name;
-
-	if ( Array.isArray( obj ) ) {
-
-		// Serialize array item.
-		jQuery.each( obj, function( i, v ) {
-			if ( traditional || rbracket.test( prefix ) ) {
-
-				// Treat each array item as a scalar.
-				add( prefix, v );
-
-			} else {
-
-				// Item is non-scalar (array or object), encode its numeric index.
-				buildParams(
-					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
-					v,
-					traditional,
-					add
-				);
-			}
-		} );
-
-	} else if ( !traditional && toType( obj ) === "object" ) {
-
-		// Serialize object item.
-		for ( name in obj ) {
-			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
-		}
-
-	} else {
-
-		// Serialize scalar item.
-		add( prefix, obj );
-	}
-}
-
-// Serialize an array of form elements or a set of
-// key/values into a query string
-jQuery.param = function( a, traditional ) {
-	var prefix,
-		s = [],
-		add = function( key, valueOrFunction ) {
-
-			// If value is a function, invoke it and use its return value
-			var value = isFunction( valueOrFunction ) ?
-				valueOrFunction() :
-				valueOrFunction;
-
-			s[ s.length ] = encodeURIComponent( key ) + "=" +
-				encodeURIComponent( value == null ? "" : value );
-		};
-
-	if ( a == null ) {
-		return "";
-	}
-
-	// If an array was passed in, assume that it is an array of form elements.
-	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
-
-		// Serialize the form elements
-		jQuery.each( a, function() {
-			add( this.name, this.value );
-		} );
-
-	} else {
-
-		// If traditional, encode the "old" way (the way 1.3.2 or older
-		// did it), otherwise encode params recursively.
-		for ( prefix in a ) {
-			buildParams( prefix, a[ prefix ], traditional, add );
-		}
-	}
-
-	// Return the resulting serialization
-	return s.join( "&" );
-};
-
-jQuery.fn.extend( {
-	serialize: function() {
-		return jQuery.param( this.serializeArray() );
-	},
-	serializeArray: function() {
-		return this.map( function() {
-
-			// Can add propHook for "elements" to filter or add form elements
-			var elements = jQuery.prop( this, "elements" );
-			return elements ? jQuery.makeArray( elements ) : this;
-		} )
-		.filter( function() {
-			var type = this.type;
-
-			// Use .is( ":disabled" ) so that fieldset[disabled] works
-			return this.name && !jQuery( this ).is( ":disabled" ) &&
-				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
-				( this.checked || !rcheckableType.test( type ) );
-		} )
-		.map( function( i, elem ) {
-			var val = jQuery( this ).val();
-
-			if ( val == null ) {
-				return null;
-			}
-
-			if ( Array.isArray( val ) ) {
-				return jQuery.map( val, function( val ) {
-					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
-				} );
-			}
-
-			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
-		} ).get();
-	}
-} );
-
-
-var
-	r20 = /%20/g,
-	rhash = /#.*$/,
-	rantiCache = /([?&])_=[^&]*/,
-	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
-
-	// #7653, #8125, #8152: local protocol detection
-	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
-	rnoContent = /^(?:GET|HEAD)$/,
-	rprotocol = /^\/\//,
-
-	/* Prefilters
-	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
-	 * 2) These are called:
-	 *    - BEFORE asking for a transport
-	 *    - AFTER param serialization (s.data is a string if s.processData is true)
-	 * 3) key is the dataType
-	 * 4) the catchall symbol "*" can be used
-	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
-	 */
-	prefilters = {},
-
-	/* Transports bindings
-	 * 1) key is the dataType
-	 * 2) the catchall symbol "*" can be used
-	 * 3) selection will start with transport dataType and THEN go to "*" if needed
-	 */
-	transports = {},
-
-	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
-	allTypes = "*/".concat( "*" ),
-
-	// Anchor tag for parsing the document origin
-	originAnchor = document.createElement( "a" );
-	originAnchor.href = location.href;
-
-// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
-function addToPrefiltersOrTransports( structure ) {
-
-	// dataTypeExpression is optional and defaults to "*"
-	return function( dataTypeExpression, func ) {
-
-		if ( typeof dataTypeExpression !== "string" ) {
-			func = dataTypeExpression;
-			dataTypeExpression = "*";
-		}
-
-		var dataType,
-			i = 0,
-			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
-
-		if ( isFunction( func ) ) {
-
-			// For each dataType in the dataTypeExpression
-			while ( ( dataType = dataTypes[ i++ ] ) ) {
-
-				// Prepend if requested
-				if ( dataType[ 0 ] === "+" ) {
-					dataType = dataType.slice( 1 ) || "*";
-					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
-
-				// Otherwise append
-				} else {
-					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
-				}
-			}
-		}
-	};
-}
-
-// Base inspection function for prefilters and transports
-function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
-
-	var inspected = {},
-		seekingTransport = ( structure === transports );
-
-	function inspect( dataType ) {
-		var selected;
-		inspected[ dataType ] = true;
-		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
-			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
-			if ( typeof dataTypeOrTransport === "string" &&
-				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
-
-				options.dataTypes.unshift( dataTypeOrTransport );
-				inspect( dataTypeOrTransport );
-				return false;
-			} else if ( seekingTransport ) {
-				return !( selected = dataTypeOrTransport );
-			}
-		} );
-		return selected;
-	}
-
-	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
-}
-
-// A special extend for ajax options
-// that takes "flat" options (not to be deep extended)
-// Fixes #9887
-function ajaxExtend( target, src ) {
-	var key, deep,
-		flatOptions = jQuery.ajaxSettings.flatOptions || {};
-
-	for ( key in src ) {
-		if ( src[ key ] !== undefined ) {
-			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
-		}
-	}
-	if ( deep ) {
-		jQuery.extend( true, target, deep );
-	}
-
-	return target;
-}
-
-/* Handles responses to an ajax request:
- * - finds the right dataType (mediates between content-type and expected dataType)
- * - returns the corresponding response
- */
-function ajaxHandleResponses( s, jqXHR, responses ) {
-
-	var ct, type, finalDataType, firstDataType,
-		contents = s.contents,
-		dataTypes = s.dataTypes;
-
-	// Remove auto dataType and get content-type in the process
-	while ( dataTypes[ 0 ] === "*" ) {
-		dataTypes.shift();
-		if ( ct === undefined ) {
-			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
-		}
-	}
-
-	// Check if we're dealing with a known content-type
-	if ( ct ) {
-		for ( type in contents ) {
-			if ( contents[ type ] && contents[ type ].test( ct ) ) {
-				dataTypes.unshift( type );
-				break;
-			}
-		}
-	}
-
-	// Check to see if we have a response for the expected dataType
-	if ( dataTypes[ 0 ] in responses ) {
-		finalDataType = dataTypes[ 0 ];
-	} else {
-
-		// Try convertible dataTypes
-		for ( type in responses ) {
-			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
-				finalDataType = type;
-				break;
-			}
-			if ( !firstDataType ) {
-				firstDataType = type;
-			}
-		}
-
-		// Or just use first one
-		finalDataType = finalDataType || firstDataType;
-	}
-
-	// If we found a dataType
-	// We add the dataType to the list if needed
-	// and return the corresponding response
-	if ( finalDataType ) {
-		if ( finalDataType !== dataTypes[ 0 ] ) {
-			dataTypes.unshift( finalDataType );
-		}
-		return responses[ finalDataType ];
-	}
-}
-
-/* Chain conversions given the request and the original response
- * Also sets the responseXXX fields on the jqXHR instance
- */
-function ajaxConvert( s, response, jqXHR, isSuccess ) {
-	var conv2, current, conv, tmp, prev,
-		converters = {},
-
-		// Work with a copy of dataTypes in case we need to modify it for conversion
-		dataTypes = s.dataTypes.slice();
-
-	// Create converters map with lowercased keys
-	if ( dataTypes[ 1 ] ) {
-		for ( conv in s.converters ) {
-			converters[ conv.toLowerCase() ] = s.converters[ conv ];
-		}
-	}
-
-	current = dataTypes.shift();
-
-	// Convert to each sequential dataType
-	while ( current ) {
-
-		if ( s.responseFields[ current ] ) {
-			jqXHR[ s.responseFields[ current ] ] = response;
-		}
-
-		// Apply the dataFilter if provided
-		if ( !prev && isSuccess && s.dataFilter ) {
-			response = s.dataFilter( response, s.dataType );
-		}
-
-		prev = current;
-		current = dataTypes.shift();
-
-		if ( current ) {
-
-			// There's only work to do if current dataType is non-auto
-			if ( current === "*" ) {
-
-				current = prev;
-
-			// Convert response if prev dataType is non-auto and differs from current
-			} else if ( prev !== "*" && prev !== current ) {
-
-				// Seek a direct converter
-				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
-
-				// If none found, seek a pair
-				if ( !conv ) {
-					for ( conv2 in converters ) {
-
-						// If conv2 outputs current
-						tmp = conv2.split( " " );
-						if ( tmp[ 1 ] === current ) {
-
-							// If prev can be converted to accepted input
-							conv = converters[ prev + " " + tmp[ 0 ] ] ||
-								converters[ "* " + tmp[ 0 ] ];
-							if ( conv ) {
-
-								// Condense equivalence converters
-								if ( conv === true ) {
-									conv = converters[ conv2 ];
-
-								// Otherwise, insert the intermediate dataType
-								} else if ( converters[ conv2 ] !== true ) {
-									current = tmp[ 0 ];
-									dataTypes.unshift( tmp[ 1 ] );
-								}
-								break;
-							}
-						}
-					}
-				}
-
-				// Apply converter (if not an equivalence)
-				if ( conv !== true ) {
-
-					// Unless errors are allowed to bubble, catch and return them
-					if ( conv && s.throws ) {
-						response = conv( response );
-					} else {
-						try {
-							response = conv( response );
-						} catch ( e ) {
-							return {
-								state: "parsererror",
-								error: conv ? e : "No conversion from " + prev + " to " + current
-							};
-						}
-					}
-				}
-			}
-		}
-	}
-
-	return { state: "success", data: response };
-}
-
-jQuery.extend( {
-
-	// Counter for holding the number of active queries
-	active: 0,
-
-	// Last-Modified header cache for next request
-	lastModified: {},
-	etag: {},
-
-	ajaxSettings: {
-		url: location.href,
-		type: "GET",
-		isLocal: rlocalProtocol.test( location.protocol ),
-		global: true,
-		processData: true,
-		async: true,
-		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
-
-		/*
-		timeout: 0,
-		data: null,
-		dataType: null,
-		username: null,
-		password: null,
-		cache: null,
-		throws: false,
-		traditional: false,
-		headers: {},
-		*/
-
-		accepts: {
-			"*": allTypes,
-			text: "text/plain",
-			html: "text/html",
-			xml: "application/xml, text/xml",
-			json: "application/json, text/javascript"
-		},
-
-		contents: {
-			xml: /\bxml\b/,
-			html: /\bhtml/,
-			json: /\bjson\b/
-		},
-
-		responseFields: {
-			xml: "responseXML",
-			text: "responseText",
-			json: "responseJSON"
-		},
-
-		// Data converters
-		// Keys separate source (or catchall "*") and destination types with a single space
-		converters: {
-
-			// Convert anything to text
-			"* text": String,
-
-			// Text to html (true = no transformation)
-			"text html": true,
-
-			// Evaluate text as a json expression
-			"text json": JSON.parse,
-
-			// Parse text as xml
-			"text xml": jQuery.parseXML
-		},
-
-		// For options that shouldn't be deep extended:
-		// you can add your own custom options here if
-		// and when you create one that shouldn't be
-		// deep extended (see ajaxExtend)
-		flatOptions: {
-			url: true,
-			context: true
-		}
-	},
-
-	// Creates a full fledged settings object into target
-	// with both ajaxSettings and settings fields.
-	// If target is omitted, writes into ajaxSettings.
-	ajaxSetup: function( target, settings ) {
-		return settings ?
-
-			// Building a settings object
-			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
-
-			// Extending ajaxSettings
-			ajaxExtend( jQuery.ajaxSettings, target );
-	},
-
-	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
-	ajaxTransport: addToPrefiltersOrTransports( transports ),
-
-	// Main method
-	ajax: function( url, options ) {
-
-		// If url is an object, simulate pre-1.5 signature
-		if ( typeof url === "object" ) {
-			options = url;
-			url = undefined;
-		}
-
-		// Force options to be an object
-		options = options || {};
-
-		var transport,
-
-			// URL without anti-cache param
-			cacheURL,
-
-			// Response headers
-			responseHeadersString,
-			responseHeaders,
-
-			// timeout handle
-			timeoutTimer,
-
-			// Url cleanup var
-			urlAnchor,
-
-			// Request state (becomes false upon send and true upon completion)
-			completed,
-
-			// To know if global events are to be dispatched
-			fireGlobals,
-
-			// Loop variable
-			i,
-
-			// uncached part of the url
-			uncached,
-
-			// Create the final options object
-			s = jQuery.ajaxSetup( {}, options ),
-
-			// Callbacks context
-			callbackContext = s.context || s,
-
-			// Context for global events is callbackContext if it is a DOM node or jQuery collection
-			globalEventContext = s.context &&
-				( callbackContext.nodeType || callbackContext.jquery ) ?
-					jQuery( callbackContext ) :
-					jQuery.event,
-
-			// Deferreds
-			deferred = jQuery.Deferred(),
-			completeDeferred = jQuery.Callbacks( "once memory" ),
-
-			// Status-dependent callbacks
-			statusCode = s.statusCode || {},
-
-			// Headers (they are sent all at once)
-			requestHeaders = {},
-			requestHeadersNames = {},
-
-			// Default abort message
-			strAbort = "canceled",
-
-			// Fake xhr
-			jqXHR = {
-				readyState: 0,
-
-				// Builds headers hashtable if needed
-				getResponseHeader: function( key ) {
-					var match;
-					if ( completed ) {
-						if ( !responseHeaders ) {
-							responseHeaders = {};
-							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
-								responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
-									( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
-										.concat( match[ 2 ] );
-							}
-						}
-						match = responseHeaders[ key.toLowerCase() + " " ];
-					}
-					return match == null ? null : match.join( ", " );
-				},
-
-				// Raw string
-				getAllResponseHeaders: function() {
-					return completed ? responseHeadersString : null;
-				},
-
-				// Caches the header
-				setRequestHeader: function( name, value ) {
-					if ( completed == null ) {
-						name = requestHeadersNames[ name.toLowerCase() ] =
-							requestHeadersNames[ name.toLowerCase() ] || name;
-						requestHeaders[ name ] = value;
-					}
-					return this;
-				},
-
-				// Overrides response content-type header
-				overrideMimeType: function( type ) {
-					if ( completed == null ) {
-						s.mimeType = type;
-					}
-					return this;
-				},
-
-				// Status-dependent callbacks
-				statusCode: function( map ) {
-					var code;
-					if ( map ) {
-						if ( completed ) {
-
-							// Execute the appropriate callbacks
-							jqXHR.always( map[ jqXHR.status ] );
-						} else {
-
-							// Lazy-add the new callbacks in a way that preserves old ones
-							for ( code in map ) {
-								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
-							}
-						}
-					}
-					return this;
-				},
-
-				// Cancel the request
-				abort: function( statusText ) {
-					var finalText = statusText || strAbort;
-					if ( transport ) {
-						transport.abort( finalText );
-					}
-					done( 0, finalText );
-					return this;
-				}
-			};
-
-		// Attach deferreds
-		deferred.promise( jqXHR );
-
-		// Add protocol if not provided (prefilters might expect it)
-		// Handle falsy url in the settings object (#10093: consistency with old signature)
-		// We also use the url parameter if available
-		s.url = ( ( url || s.url || location.href ) + "" )
-			.replace( rprotocol, location.protocol + "//" );
-
-		// Alias method option to type as per ticket #12004
-		s.type = options.method || options.type || s.method || s.type;
-
-		// Extract dataTypes list
-		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
-
-		// A cross-domain request is in order when the origin doesn't match the current origin.
-		if ( s.crossDomain == null ) {
-			urlAnchor = document.createElement( "a" );
-
-			// Support: IE <=8 - 11, Edge 12 - 15
-			// IE throws exception on accessing the href property if url is malformed,
-			// e.g. http://example.com:80x/
-			try {
-				urlAnchor.href = s.url;
-
-				// Support: IE <=8 - 11 only
-				// Anchor's host property isn't correctly set when s.url is relative
-				urlAnchor.href = urlAnchor.href;
-				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
-					urlAnchor.protocol + "//" + urlAnchor.host;
-			} catch ( e ) {
-
-				// If there is an error parsing the URL, assume it is crossDomain,
-				// it can be rejected by the transport if it is invalid
-				s.crossDomain = true;
-			}
-		}
-
-		// Convert data if not already a string
-		if ( s.data && s.processData && typeof s.data !== "string" ) {
-			s.data = jQuery.param( s.data, s.traditional );
-		}
-
-		// Apply prefilters
-		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
-
-		// If request was aborted inside a prefilter, stop there
-		if ( completed ) {
-			return jqXHR;
-		}
-
-		// We can fire global events as of now if asked to
-		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
-		fireGlobals = jQuery.event && s.global;
-
-		// Watch for a new set of requests
-		if ( fireGlobals && jQuery.active++ === 0 ) {
-			jQuery.event.trigger( "ajaxStart" );
-		}
-
-		// Uppercase the type
-		s.type = s.type.toUpperCase();
-
-		// Determine if request has content
-		s.hasContent = !rnoContent.test( s.type );
-
-		// Save the URL in case we're toying with the If-Modified-Since
-		// and/or If-None-Match header later on
-		// Remove hash to simplify url manipulation
-		cacheURL = s.url.replace( rhash, "" );
-
-		// More options handling for requests with no content
-		if ( !s.hasContent ) {
-
-			// Remember the hash so we can put it back
-			uncached = s.url.slice( cacheURL.length );
-
-			// If data is available and should be processed, append data to url
-			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
-				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
-
-				// #9682: remove data so that it's not used in an eventual retry
-				delete s.data;
-			}
-
-			// Add or update anti-cache param if needed
-			if ( s.cache === false ) {
-				cacheURL = cacheURL.replace( rantiCache, "$1" );
-				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached;
-			}
-
-			// Put hash and anti-cache on the URL that will be requested (gh-1732)
-			s.url = cacheURL + uncached;
-
-		// Change '%20' to '+' if this is encoded form body content (gh-2658)
-		} else if ( s.data && s.processData &&
-			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
-			s.data = s.data.replace( r20, "+" );
-		}
-
-		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
-		if ( s.ifModified ) {
-			if ( jQuery.lastModified[ cacheURL ] ) {
-				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
-			}
-			if ( jQuery.etag[ cacheURL ] ) {
-				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
-			}
-		}
-
-		// Set the correct header, if data is being sent
-		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
-			jqXHR.setRequestHeader( "Content-Type", s.contentType );
-		}
-
-		// Set the Accepts header for the server, depending on the dataType
-		jqXHR.setRequestHeader(
-			"Accept",
-			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
-				s.accepts[ s.dataTypes[ 0 ] ] +
-					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
-				s.accepts[ "*" ]
-		);
-
-		// Check for headers option
-		for ( i in s.headers ) {
-			jqXHR.setRequestHeader( i, s.headers[ i ] );
-		}
-
-		// Allow custom headers/mimetypes and early abort
-		if ( s.beforeSend &&
-			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
-
-			// Abort if not done already and return
-			return jqXHR.abort();
-		}
-
-		// Aborting is no longer a cancellation
-		strAbort = "abort";
-
-		// Install callbacks on deferreds
-		completeDeferred.add( s.complete );
-		jqXHR.done( s.success );
-		jqXHR.fail( s.error );
-
-		// Get transport
-		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
-
-		// If no transport, we auto-abort
-		if ( !transport ) {
-			done( -1, "No Transport" );
-		} else {
-			jqXHR.readyState = 1;
-
-			// Send global event
-			if ( fireGlobals ) {
-				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
-			}
-
-			// If request was aborted inside ajaxSend, stop there
-			if ( completed ) {
-				return jqXHR;
-			}
-
-			// Timeout
-			if ( s.async && s.timeout > 0 ) {
-				timeoutTimer = window.setTimeout( function() {
-					jqXHR.abort( "timeout" );
-				}, s.timeout );
-			}
-
-			try {
-				completed = false;
-				transport.send( requestHeaders, done );
-			} catch ( e ) {
-
-				// Rethrow post-completion exceptions
-				if ( completed ) {
-					throw e;
-				}
-
-				// Propagate others as results
-				done( -1, e );
-			}
-		}
-
-		// Callback for when everything is done
-		function done( status, nativeStatusText, responses, headers ) {
-			var isSuccess, success, error, response, modified,
-				statusText = nativeStatusText;
-
-			// Ignore repeat invocations
-			if ( completed ) {
-				return;
-			}
-
-			completed = true;
-
-			// Clear timeout if it exists
-			if ( timeoutTimer ) {
-				window.clearTimeout( timeoutTimer );
-			}
-
-			// Dereference transport for early garbage collection
-			// (no matter how long the jqXHR object will be used)
-			transport = undefined;
-
-			// Cache response headers
-			responseHeadersString = headers || "";
-
-			// Set readyState
-			jqXHR.readyState = status > 0 ? 4 : 0;
-
-			// Determine if successful
-			isSuccess = status >= 200 && status < 300 || status === 304;
-
-			// Get response data
-			if ( responses ) {
-				response = ajaxHandleResponses( s, jqXHR, responses );
-			}
-
-			// Convert no matter what (that way responseXXX fields are always set)
-			response = ajaxConvert( s, response, jqXHR, isSuccess );
-
-			// If successful, handle type chaining
-			if ( isSuccess ) {
-
-				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
-				if ( s.ifModified ) {
-					modified = jqXHR.getResponseHeader( "Last-Modified" );
-					if ( modified ) {
-						jQuery.lastModified[ cacheURL ] = modified;
-					}
-					modified = jqXHR.getResponseHeader( "etag" );
-					if ( modified ) {
-						jQuery.etag[ cacheURL ] = modified;
-					}
-				}
-
-				// if no content
-				if ( status === 204 || s.type === "HEAD" ) {
-					statusText = "nocontent";
-
-				// if not modified
-				} else if ( status === 304 ) {
-					statusText = "notmodified";
-
-				// If we have data, let's convert it
-				} else {
-					statusText = response.state;
-					success = response.data;
-					error = response.error;
-					isSuccess = !error;
-				}
-			} else {
-
-				// Extract error from statusText and normalize for non-aborts
-				error = statusText;
-				if ( status || !statusText ) {
-					statusText = "error";
-					if ( status < 0 ) {
-						status = 0;
-					}
-				}
-			}
-
-			// Set data for the fake xhr object
-			jqXHR.status = status;
-			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
-
-			// Success/Error
-			if ( isSuccess ) {
-				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
-			} else {
-				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
-			}
-
-			// Status-dependent callbacks
-			jqXHR.statusCode( statusCode );
-			statusCode = undefined;
-
-			if ( fireGlobals ) {
-				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
-					[ jqXHR, s, isSuccess ? success : error ] );
-			}
-
-			// Complete
-			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
-
-			if ( fireGlobals ) {
-				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
-
-				// Handle the global AJAX counter
-				if ( !( --jQuery.active ) ) {
-					jQuery.event.trigger( "ajaxStop" );
-				}
-			}
-		}
-
-		return jqXHR;
-	},
-
-	getJSON: function( url, data, callback ) {
-		return jQuery.get( url, data, callback, "json" );
-	},
-
-	getScript: function( url, callback ) {
-		return jQuery.get( url, undefined, callback, "script" );
-	}
-} );
-
-jQuery.each( [ "get", "post" ], function( i, method ) {
-	jQuery[ method ] = function( url, data, callback, type ) {
-
-		// Shift arguments if data argument was omitted
-		if ( isFunction( data ) ) {
-			type = type || callback;
-			callback = data;
-			data = undefined;
-		}
-
-		// The url can be an options object (which then must have .url)
-		return jQuery.ajax( jQuery.extend( {
-			url: url,
-			type: method,
-			dataType: type,
-			data: data,
-			success: callback
-		}, jQuery.isPlainObject( url ) && url ) );
-	};
-} );
-
-
-jQuery._evalUrl = function( url, options ) {
-	return jQuery.ajax( {
-		url: url,
-
-		// Make this explicit, since user can override this through ajaxSetup (#11264)
-		type: "GET",
-		dataType: "script",
-		cache: true,
-		async: false,
-		global: false,
-
-		// Only evaluate the response if it is successful (gh-4126)
-		// dataFilter is not invoked for failure responses, so using it instead
-		// of the default converter is kludgy but it works.
-		converters: {
-			"text script": function() {}
-		},
-		dataFilter: function( response ) {
-			jQuery.globalEval( response, options );
-		}
-	} );
-};
-
-
-jQuery.fn.extend( {
-	wrapAll: function( html ) {
-		var wrap;
-
-		if ( this[ 0 ] ) {
-			if ( isFunction( html ) ) {
-				html = html.call( this[ 0 ] );
-			}
-
-			// The elements to wrap the target around
-			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
-
-			if ( this[ 0 ].parentNode ) {
-				wrap.insertBefore( this[ 0 ] );
-			}
-
-			wrap.map( function() {
-				var elem = this;
-
-				while ( elem.firstElementChild ) {
-					elem = elem.firstElementChild;
-				}
-
-				return elem;
-			} ).append( this );
-		}
-
-		return this;
-	},
-
-	wrapInner: function( html ) {
-		if ( isFunction( html ) ) {
-			return this.each( function( i ) {
-				jQuery( this ).wrapInner( html.call( this, i ) );
-			} );
-		}
-
-		return this.each( function() {
-			var self = jQuery( this ),
-				contents = self.contents();
-
-			if ( contents.length ) {
-				contents.wrapAll( html );
-
-			} else {
-				self.append( html );
-			}
-		} );
-	},
-
-	wrap: function( html ) {
-		var htmlIsFunction = isFunction( html );
-
-		return this.each( function( i ) {
-			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
-		} );
-	},
-
-	unwrap: function( selector ) {
-		this.parent( selector ).not( "body" ).each( function() {
-			jQuery( this ).replaceWith( this.childNodes );
-		} );
-		return this;
-	}
-} );
-
-
-jQuery.expr.pseudos.hidden = function( elem ) {
-	return !jQuery.expr.pseudos.visible( elem );
-};
-jQuery.expr.pseudos.visible = function( elem ) {
-	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
-};
-
-
-
-
-jQuery.ajaxSettings.xhr = function() {
-	try {
-		return new window.XMLHttpRequest();
-	} catch ( e ) {}
-};
-
-var xhrSuccessStatus = {
-
-		// File protocol always yields status code 0, assume 200
-		0: 200,
-
-		// Support: IE <=9 only
-		// #1450: sometimes IE returns 1223 when it should be 204
-		1223: 204
-	},
-	xhrSupported = jQuery.ajaxSettings.xhr();
-
-support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
-support.ajax = xhrSupported = !!xhrSupported;
-
-jQuery.ajaxTransport( function( options ) {
-	var callback, errorCallback;
-
-	// Cross domain only allowed if supported through XMLHttpRequest
-	if ( support.cors || xhrSupported && !options.crossDomain ) {
-		return {
-			send: function( headers, complete ) {
-				var i,
-					xhr = options.xhr();
-
-				xhr.open(
-					options.type,
-					options.url,
-					options.async,
-					options.username,
-					options.password
-				);
-
-				// Apply custom fields if provided
-				if ( options.xhrFields ) {
-					for ( i in options.xhrFields ) {
-						xhr[ i ] = options.xhrFields[ i ];
-					}
-				}
-
-				// Override mime type if needed
-				if ( options.mimeType && xhr.overrideMimeType ) {
-					xhr.overrideMimeType( options.mimeType );
-				}
-
-				// X-Requested-With header
-				// For cross-domain requests, seeing as conditions for a preflight are
-				// akin to a jigsaw puzzle, we simply never set it to be sure.
-				// (it can always be set on a per-request basis or even using ajaxSetup)
-				// For same-domain requests, won't change header if already provided.
-				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
-					headers[ "X-Requested-With" ] = "XMLHttpRequest";
-				}
-
-				// Set headers
-				for ( i in headers ) {
-					xhr.setRequestHeader( i, headers[ i ] );
-				}
-
-				// Callback
-				callback = function( type ) {
-					return function() {
-						if ( callback ) {
-							callback = errorCallback = xhr.onload =
-								xhr.onerror = xhr.onabort = xhr.ontimeout =
-									xhr.onreadystatechange = null;
-
-							if ( type === "abort" ) {
-								xhr.abort();
-							} else if ( type === "error" ) {
-
-								// Support: IE <=9 only
-								// On a manual native abort, IE9 throws
-								// errors on any property access that is not readyState
-								if ( typeof xhr.status !== "number" ) {
-									complete( 0, "error" );
-								} else {
-									complete(
-
-										// File: protocol always yields status 0; see #8605, #14207
-										xhr.status,
-										xhr.statusText
-									);
-								}
-							} else {
-								complete(
-									xhrSuccessStatus[ xhr.status ] || xhr.status,
-									xhr.statusText,
-
-									// Support: IE <=9 only
-									// IE9 has no XHR2 but throws on binary (trac-11426)
-									// For XHR2 non-text, let the caller handle it (gh-2498)
-									( xhr.responseType || "text" ) !== "text"  ||
-									typeof xhr.responseText !== "string" ?
-										{ binary: xhr.response } :
-										{ text: xhr.responseText },
-									xhr.getAllResponseHeaders()
-								);
-							}
-						}
-					};
-				};
-
-				// Listen to events
-				xhr.onload = callback();
-				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
-
-				// Support: IE 9 only
-				// Use onreadystatechange to replace onabort
-				// to handle uncaught aborts
-				if ( xhr.onabort !== undefined ) {
-					xhr.onabort = errorCallback;
-				} else {
-					xhr.onreadystatechange = function() {
-
-						// Check readyState before timeout as it changes
-						if ( xhr.readyState === 4 ) {
-
-							// Allow onerror to be called first,
-							// but that will not handle a native abort
-							// Also, save errorCallback to a variable
-							// as xhr.onerror cannot be accessed
-							window.setTimeout( function() {
-								if ( callback ) {
-									errorCallback();
-								}
-							} );
-						}
-					};
-				}
-
-				// Create the abort callback
-				callback = callback( "abort" );
-
-				try {
-
-					// Do send the request (this may raise an exception)
-					xhr.send( options.hasContent && options.data || null );
-				} catch ( e ) {
-
-					// #14683: Only rethrow if this hasn't been notified as an error yet
-					if ( callback ) {
-						throw e;
-					}
-				}
-			},
-
-			abort: function() {
-				if ( callback ) {
-					callback();
-				}
-			}
-		};
-	}
-} );
-
-
-
-
-// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
-jQuery.ajaxPrefilter( function( s ) {
-	if ( s.crossDomain ) {
-		s.contents.script = false;
-	}
-} );
-
-// Install script dataType
-jQuery.ajaxSetup( {
-	accepts: {
-		script: "text/javascript, application/javascript, " +
-			"application/ecmascript, application/x-ecmascript"
-	},
-	contents: {
-		script: /\b(?:java|ecma)script\b/
-	},
-	converters: {
-		"text script": function( text ) {
-			jQuery.globalEval( text );
-			return text;
-		}
-	}
-} );
-
-// Handle cache's special case and crossDomain
-jQuery.ajaxPrefilter( "script", function( s ) {
-	if ( s.cache === undefined ) {
-		s.cache = false;
-	}
-	if ( s.crossDomain ) {
-		s.type = "GET";
-	}
-} );
-
-// Bind script tag hack transport
-jQuery.ajaxTransport( "script", function( s ) {
-
-	// This transport only deals with cross domain or forced-by-attrs requests
-	if ( s.crossDomain || s.scriptAttrs ) {
-		var script, callback;
-		return {
-			send: function( _, complete ) {
-				script = jQuery( "<script>" )
-					.attr( s.scriptAttrs || {} )
-					.prop( { charset: s.scriptCharset, src: s.url } )
-					.on( "load error", callback = function( evt ) {
-						script.remove();
-						callback = null;
-						if ( evt ) {
-							complete( evt.type === "error" ? 404 : 200, evt.type );
-						}
-					} );
-
-				// Use native DOM manipulation to avoid our domManip AJAX trickery
-				document.head.appendChild( script[ 0 ] );
-			},
-			abort: function() {
-				if ( callback ) {
-					callback();
-				}
-			}
-		};
-	}
-} );
-
-
-
-
-var oldCallbacks = [],
-	rjsonp = /(=)\?(?=&|$)|\?\?/;
-
-// Default jsonp settings
-jQuery.ajaxSetup( {
-	jsonp: "callback",
-	jsonpCallback: function() {
-		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) );
-		this[ callback ] = true;
-		return callback;
-	}
-} );
-
-// Detect, normalize options and install callbacks for jsonp requests
-jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
-
-	var callbackName, overwritten, responseContainer,
-		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
-			"url" :
-			typeof s.data === "string" &&
-				( s.contentType || "" )
-					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
-				rjsonp.test( s.data ) && "data"
-		);
-
-	// Handle iff the expected data type is "jsonp" or we have a parameter to set
-	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
-
-		// Get callback name, remembering preexisting value associated with it
-		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
-			s.jsonpCallback() :
-			s.jsonpCallback;
-
-		// Insert callback into url or form data
-		if ( jsonProp ) {
-			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
-		} else if ( s.jsonp !== false ) {
-			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
-		}
-
-		// Use data converter to retrieve json after script execution
-		s.converters[ "script json" ] = function() {
-			if ( !responseContainer ) {
-				jQuery.error( callbackName + " was not called" );
-			}
-			return responseContainer[ 0 ];
-		};
-
-		// Force json dataType
-		s.dataTypes[ 0 ] = "json";
-
-		// Install callback
-		overwritten = window[ callbackName ];
-		window[ callbackName ] = function() {
-			responseContainer = arguments;
-		};
-
-		// Clean-up function (fires after converters)
-		jqXHR.always( function() {
-
-			// If previous value didn't exist - remove it
-			if ( overwritten === undefined ) {
-				jQuery( window ).removeProp( callbackName );
-
-			// Otherwise restore preexisting value
-			} else {
-				window[ callbackName ] = overwritten;
-			}
-
-			// Save back as free
-			if ( s[ callbackName ] ) {
-
-				// Make sure that re-using the options doesn't screw things around
-				s.jsonpCallback = originalSettings.jsonpCallback;
-
-				// Save the callback name for future use
-				oldCallbacks.push( callbackName );
-			}
-
-			// Call if it was a function and we have a response
-			if ( responseContainer && isFunction( overwritten ) ) {
-				overwritten( responseContainer[ 0 ] );
-			}
-
-			responseContainer = overwritten = undefined;
-		} );
-
-		// Delegate to script
-		return "script";
-	}
-} );
-
-
-
-
-// Support: Safari 8 only
-// In Safari 8 documents created via document.implementation.createHTMLDocument
-// collapse sibling forms: the second one becomes a child of the first one.
-// Because of that, this security measure has to be disabled in Safari 8.
-// https://bugs.webkit.org/show_bug.cgi?id=137337
-support.createHTMLDocument = ( function() {
-	var body = document.implementation.createHTMLDocument( "" ).body;
-	body.innerHTML = "<form></form><form></form>";
-	return body.childNodes.length === 2;
-} )();
-
-
-// Argument "data" should be string of html
-// context (optional): If specified, the fragment will be created in this context,
-// defaults to document
-// keepScripts (optional): If true, will include scripts passed in the html string
-jQuery.parseHTML = function( data, context, keepScripts ) {
-	if ( typeof data !== "string" ) {
-		return [];
-	}
-	if ( typeof context === "boolean" ) {
-		keepScripts = context;
-		context = false;
-	}
-
-	var base, parsed, scripts;
-
-	if ( !context ) {
-
-		// Stop scripts or inline event handlers from being executed immediately
-		// by using document.implementation
-		if ( support.createHTMLDocument ) {
-			context = document.implementation.createHTMLDocument( "" );
-
-			// Set the base href for the created document
-			// so any parsed elements with URLs
-			// are based on the document's URL (gh-2965)
-			base = context.createElement( "base" );
-			base.href = document.location.href;
-			context.head.appendChild( base );
-		} else {
-			context = document;
-		}
-	}
-
-	parsed = rsingleTag.exec( data );
-	scripts = !keepScripts && [];
-
-	// Single tag
-	if ( parsed ) {
-		return [ context.createElement( parsed[ 1 ] ) ];
-	}
-
-	parsed = buildFragment( [ data ], context, scripts );
-
-	if ( scripts && scripts.length ) {
-		jQuery( scripts ).remove();
-	}
-
-	return jQuery.merge( [], parsed.childNodes );
-};
-
-
-/**
- * Load a url into a page
- */
-jQuery.fn.load = function( url, params, callback ) {
-	var selector, type, response,
-		self = this,
-		off = url.indexOf( " " );
-
-	if ( off > -1 ) {
-		selector = stripAndCollapse( url.slice( off ) );
-		url = url.slice( 0, off );
-	}
-
-	// If it's a function
-	if ( isFunction( params ) ) {
-
-		// We assume that it's the callback
-		callback = params;
-		params = undefined;
-
-	// Otherwise, build a param string
-	} else if ( params && typeof params === "object" ) {
-		type = "POST";
-	}
-
-	// If we have elements to modify, make the request
-	if ( self.length > 0 ) {
-		jQuery.ajax( {
-			url: url,
-
-			// If "type" variable is undefined, then "GET" method will be used.
-			// Make value of this field explicit since
-			// user can override it through ajaxSetup method
-			type: type || "GET",
-			dataType: "html",
-			data: params
-		} ).done( function( responseText ) {
-
-			// Save response for use in complete callback
-			response = arguments;
-
-			self.html( selector ?
-
-				// If a selector was specified, locate the right elements in a dummy div
-				// Exclude scripts to avoid IE 'Permission Denied' errors
-				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
-
-				// Otherwise use the full result
-				responseText );
-
-		// If the request succeeds, this function gets "data", "status", "jqXHR"
-		// but they are ignored because response was set above.
-		// If it fails, this function gets "jqXHR", "status", "error"
-		} ).always( callback && function( jqXHR, status ) {
-			self.each( function() {
-				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
-			} );
-		} );
-	}
-
-	return this;
-};
-
-
-
-
-// Attach a bunch of functions for handling common AJAX events
-jQuery.each( [
-	"ajaxStart",
-	"ajaxStop",
-	"ajaxComplete",
-	"ajaxError",
-	"ajaxSuccess",
-	"ajaxSend"
-], function( i, type ) {
-	jQuery.fn[ type ] = function( fn ) {
-		return this.on( type, fn );
-	};
-} );
-
-
-
-
-jQuery.expr.pseudos.animated = function( elem ) {
-	return jQuery.grep( jQuery.timers, function( fn ) {
-		return elem === fn.elem;
-	} ).length;
-};
-
-
-
-
-jQuery.offset = {
-	setOffset: function( elem, options, i ) {
-		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
-			position = jQuery.css( elem, "position" ),
-			curElem = jQuery( elem ),
-			props = {};
-
-		// Set position first, in-case top/left are set even on static elem
-		if ( position === "static" ) {
-			elem.style.position = "relative";
-		}
-
-		curOffset = curElem.offset();
-		curCSSTop = jQuery.css( elem, "top" );
-		curCSSLeft = jQuery.css( elem, "left" );
-		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
-			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
-
-		// Need to be able to calculate position if either
-		// top or left is auto and position is either absolute or fixed
-		if ( calculatePosition ) {
-			curPosition = curElem.position();
-			curTop = curPosition.top;
-			curLeft = curPosition.left;
-
-		} else {
-			curTop = parseFloat( curCSSTop ) || 0;
-			curLeft = parseFloat( curCSSLeft ) || 0;
-		}
-
-		if ( isFunction( options ) ) {
-
-			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
-			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
-		}
-
-		if ( options.top != null ) {
-			props.top = ( options.top - curOffset.top ) + curTop;
-		}
-		if ( options.left != null ) {
-			props.left = ( options.left - curOffset.left ) + curLeft;
-		}
-
-		if ( "using" in options ) {
-			options.using.call( elem, props );
-
-		} else {
-			curElem.css( props );
-		}
-	}
-};
-
-jQuery.fn.extend( {
-
-	// offset() relates an element's border box to the document origin
-	offset: function( options ) {
-
-		// Preserve chaining for setter
-		if ( arguments.length ) {
-			return options === undefined ?
-				this :
-				this.each( function( i ) {
-					jQuery.offset.setOffset( this, options, i );
-				} );
-		}
-
-		var rect, win,
-			elem = this[ 0 ];
-
-		if ( !elem ) {
-			return;
-		}
-
-		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
-		// Support: IE <=11 only
-		// Running getBoundingClientRect on a
-		// disconnected node in IE throws an error
-		if ( !elem.getClientRects().length ) {
-			return { top: 0, left: 0 };
-		}
-
-		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
-		rect = elem.getBoundingClientRect();
-		win = elem.ownerDocument.defaultView;
-		return {
-			top: rect.top + win.pageYOffset,
-			left: rect.left + win.pageXOffset
-		};
-	},
-
-	// position() relates an element's margin box to its offset parent's padding box
-	// This corresponds to the behavior of CSS absolute positioning
-	position: function() {
-		if ( !this[ 0 ] ) {
-			return;
-		}
-
-		var offsetParent, offset, doc,
-			elem = this[ 0 ],
-			parentOffset = { top: 0, left: 0 };
-
-		// position:fixed elements are offset from the viewport, which itself always has zero offset
-		if ( jQuery.css( elem, "position" ) === "fixed" ) {
-
-			// Assume position:fixed implies availability of getBoundingClientRect
-			offset = elem.getBoundingClientRect();
-
-		} else {
-			offset = this.offset();
-
-			// Account for the *real* offset parent, which can be the document or its root element
-			// when a statically positioned element is identified
-			doc = elem.ownerDocument;
-			offsetParent = elem.offsetParent || doc.documentElement;
-			while ( offsetParent &&
-				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
-				jQuery.css( offsetParent, "position" ) === "static" ) {
-
-				offsetParent = offsetParent.parentNode;
-			}
-			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
-
-				// Incorporate borders into its offset, since they are outside its content origin
-				parentOffset = jQuery( offsetParent ).offset();
-				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
-				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
-			}
-		}
-
-		// Subtract parent offsets and element margins
-		return {
-			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
-			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
-		};
-	},
-
-	// This method will return documentElement in the following cases:
-	// 1) For the element inside the iframe without offsetParent, this method will return
-	//    documentElement of the parent window
-	// 2) For the hidden or detached element
-	// 3) For body or html element, i.e. in case of the html node - it will return itself
-	//
-	// but those exceptions were never presented as a real life use-cases
-	// and might be considered as more preferable results.
-	//
-	// This logic, however, is not guaranteed and can change at any point in the future
-	offsetParent: function() {
-		return this.map( function() {
-			var offsetParent = this.offsetParent;
-
-			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
-				offsetParent = offsetParent.offsetParent;
-			}
-
-			return offsetParent || documentElement;
-		} );
-	}
-} );
-
-// Create scrollLeft and scrollTop methods
-jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
-	var top = "pageYOffset" === prop;
-
-	jQuery.fn[ method ] = function( val ) {
-		return access( this, function( elem, method, val ) {
-
-			// Coalesce documents and windows
-			var win;
-			if ( isWindow( elem ) ) {
-				win = elem;
-			} else if ( elem.nodeType === 9 ) {
-				win = elem.defaultView;
-			}
-
-			if ( val === undefined ) {
-				return win ? win[ prop ] : elem[ method ];
-			}
-
-			if ( win ) {
-				win.scrollTo(
-					!top ? val : win.pageXOffset,
-					top ? val : win.pageYOffset
-				);
-
-			} else {
-				elem[ method ] = val;
-			}
-		}, method, val, arguments.length );
-	};
-} );
-
-// Support: Safari <=7 - 9.1, Chrome <=37 - 49
-// Add the top/left cssHooks using jQuery.fn.position
-// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
-// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
-// getComputedStyle returns percent when specified for top/left/bottom/right;
-// rather than make the css module depend on the offset module, just check for it here
-jQuery.each( [ "top", "left" ], function( i, prop ) {
-	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
-		function( elem, computed ) {
-			if ( computed ) {
-				computed = curCSS( elem, prop );
-
-				// If curCSS returns percentage, fallback to offset
-				return rnumnonpx.test( computed ) ?
-					jQuery( elem ).position()[ prop ] + "px" :
-					computed;
-			}
-		}
-	);
-} );
-
-
-// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
-jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
-	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
-		function( defaultExtra, funcName ) {
-
-		// Margin is only for outerHeight, outerWidth
-		jQuery.fn[ funcName ] = function( margin, value ) {
-			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
-				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
-
-			return access( this, function( elem, type, value ) {
-				var doc;
-
-				if ( isWindow( elem ) ) {
-
-					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
-					return funcName.indexOf( "outer" ) === 0 ?
-						elem[ "inner" + name ] :
-						elem.document.documentElement[ "client" + name ];
-				}
-
-				// Get document width or height
-				if ( elem.nodeType === 9 ) {
-					doc = elem.documentElement;
-
-					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
-					// whichever is greatest
-					return Math.max(
-						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
-						elem.body[ "offset" + name ], doc[ "offset" + name ],
-						doc[ "client" + name ]
-					);
-				}
-
-				return value === undefined ?
-
-					// Get width or height on the element, requesting but not forcing parseFloat
-					jQuery.css( elem, type, extra ) :
-
-					// Set width or height on the element
-					jQuery.style( elem, type, value, extra );
-			}, type, chainable ? margin : undefined, chainable );
-		};
-	} );
-} );
-
-
-jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
-	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
-	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
-	function( i, name ) {
-
-	// Handle event binding
-	jQuery.fn[ name ] = function( data, fn ) {
-		return arguments.length > 0 ?
-			this.on( name, null, data, fn ) :
-			this.trigger( name );
-	};
-} );
-
-jQuery.fn.extend( {
-	hover: function( fnOver, fnOut ) {
-		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
-	}
-} );
-
-
-
-
-jQuery.fn.extend( {
-
-	bind: function( types, data, fn ) {
-		return this.on( types, null, data, fn );
-	},
-	unbind: function( types, fn ) {
-		return this.off( types, null, fn );
-	},
-
-	delegate: function( selector, types, data, fn ) {
-		return this.on( types, selector, data, fn );
-	},
-	undelegate: function( selector, types, fn ) {
-
-		// ( namespace ) or ( selector, types [, fn] )
-		return arguments.length === 1 ?
-			this.off( selector, "**" ) :
-			this.off( types, selector || "**", fn );
-	}
-} );
-
-// Bind a function to a context, optionally partially applying any
-// arguments.
-// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
-// However, it is not slated for removal any time soon
-jQuery.proxy = function( fn, context ) {
-	var tmp, args, proxy;
-
-	if ( typeof context === "string" ) {
-		tmp = fn[ context ];
-		context = fn;
-		fn = tmp;
-	}
-
-	// Quick check to determine if target is callable, in the spec
-	// this throws a TypeError, but we will just return undefined.
-	if ( !isFunction( fn ) ) {
-		return undefined;
-	}
-
-	// Simulated bind
-	args = slice.call( arguments, 2 );
-	proxy = function() {
-		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
-	};
-
-	// Set the guid of unique handler to the same of original handler, so it can be removed
-	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
-
-	return proxy;
-};
-
-jQuery.holdReady = function( hold ) {
-	if ( hold ) {
-		jQuery.readyWait++;
-	} else {
-		jQuery.ready( true );
-	}
-};
-jQuery.isArray = Array.isArray;
-jQuery.parseJSON = JSON.parse;
-jQuery.nodeName = nodeName;
-jQuery.isFunction = isFunction;
-jQuery.isWindow = isWindow;
-jQuery.camelCase = camelCase;
-jQuery.type = toType;
-
-jQuery.now = Date.now;
-
-jQuery.isNumeric = function( obj ) {
-
-	// As of jQuery 3.0, isNumeric is limited to
-	// strings and numbers (primitives or objects)
-	// that can be coerced to finite numbers (gh-2662)
-	var type = jQuery.type( obj );
-	return ( type === "number" || type === "string" ) &&
-
-		// parseFloat NaNs numeric-cast false positives ("")
-		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
-		// subtraction forces infinities to NaN
-		!isNaN( obj - parseFloat( obj ) );
-};
-
-
-
-
-// Register as a named AMD module, since jQuery can be concatenated with other
-// files that may use define, but not via a proper concatenation script that
-// understands anonymous AMD modules. A named AMD is safest and most robust
-// way to register. Lowercase jquery is used because AMD module names are
-// derived from file names, and jQuery is normally delivered in a lowercase
-// file name. Do this after creating the global so that if an AMD module wants
-// to call noConflict to hide this version of jQuery, it will work.
-
-// Note that for maximum portability, libraries that are not jQuery should
-// declare themselves as anonymous modules, and avoid setting a global if an
-// AMD loader is present. jQuery is a special case. For more information, see
-// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
-
-if ( typeof define === "function" && define.amd ) {
-	define( "jquery", [], function() {
-		return jQuery;
-	} );
-}
-
-
-
-
-var
-
-	// Map over jQuery in case of overwrite
-	_jQuery = window.jQuery,
-
-	// Map over the $ in case of overwrite
-	_$ = window.$;
-
-jQuery.noConflict = function( deep ) {
-	if ( window.$ === jQuery ) {
-		window.$ = _$;
-	}
-
-	if ( deep && window.jQuery === jQuery ) {
-		window.jQuery = _jQuery;
-	}
-
-	return jQuery;
-};
-
-// Expose jQuery and $ identifiers, even in AMD
-// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
-// and CommonJS for browser emulators (#13566)
-if ( !noGlobal ) {
-	window.jQuery = window.$ = jQuery;
-}
-
-
-
-
-return jQuery;
-} );
diff -pruN 1.2.17-0.1/debian/missing-sources/README 1.3.6+dfsg-2/debian/missing-sources/README
--- 1.2.17-0.1/debian/missing-sources/README	2020-04-10 15:11:26.000000000 +0000
+++ 1.3.6+dfsg-2/debian/missing-sources/README	1970-01-01 00:00:00.000000000 +0000
@@ -1,19 +0,0 @@
-Missing source files
---------------------
-
-OpenScap ships a minified jquery library for the documentation.
-
-For Debian, all sources are required, so we grabbed the sources from the above
-project(s) or from the various upstream projects, and put them in the
-missin-sources directory.
-
-Last synchronization was made with OpenScap version 1.2.17
-
-Files: docs/html/jquery.js
-Project: jQuery 3.4.1
-URL https://code.jquery.com/jquery-3.4.1.js
-Source: jquery-3.4.1.js
-
-Project Bootstrap 4.4.1
-URL https://github.com/twbs/bootstrap/archive/v4.4.1.tar.gz
-Source: bootstrap.js
diff -pruN 1.2.17-0.1/debian/openscap-common.install 1.3.6+dfsg-2/debian/openscap-common.install
--- 1.2.17-0.1/debian/openscap-common.install	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-common.install	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+usr/share/openscap/*
diff -pruN 1.2.17-0.1/debian/openscap-doc.doc-base.api 1.3.6+dfsg-2/debian/openscap-doc.doc-base.api
--- 1.2.17-0.1/debian/openscap-doc.doc-base.api	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-doc.doc-base.api	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,8 @@
+Document: openscap-api
+Title: OpenSCAP API documentation
+Abstract: Leverage the OpenSCAP Base C API for your application.
+Section: Programming/C
+
+Format: HTML
+Index: /usr/share/doc/openscap/html/index.html
+Files: /usr/share/doc/openscap/html/*
diff -pruN 1.2.17-0.1/debian/openscap-doc.doc-base.manual 1.3.6+dfsg-2/debian/openscap-doc.doc-base.manual
--- 1.2.17-0.1/debian/openscap-doc.doc-base.manual	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-doc.doc-base.manual	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,11 @@
+Document: openscap-manual
+Title: OpenSCAP user manual
+Abstract: This documentation provides information about OpenSCAP and its most
+ common operations. With OpenSCAP, you can check security configuration
+ settings of a system, and examine the system for signs of a compromise by
+ using rules based on standards and specifications.
+Section: System/Security
+
+Format: HTML
+Index: /usr/share/doc/openscap/manual/manual.html
+Files: /usr/share/doc/openscap/manual/*
diff -pruN 1.2.17-0.1/debian/openscap-doc.install 1.3.6+dfsg-2/debian/openscap-doc.install
--- 1.2.17-0.1/debian/openscap-doc.install	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-doc.install	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,2 @@
+usr/share/doc/openscap/html
+usr/share/doc/openscap/manual
diff -pruN 1.2.17-0.1/debian/openscap-scanner.docs 1.3.6+dfsg-2/debian/openscap-scanner.docs
--- 1.2.17-0.1/debian/openscap-scanner.docs	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-scanner.docs	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+README*
diff -pruN 1.2.17-0.1/debian/openscap-scanner.examples 1.3.6+dfsg-2/debian/openscap-scanner.examples
--- 1.2.17-0.1/debian/openscap-scanner.examples	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-scanner.examples	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+docs/oscap-scan.cron
diff -pruN 1.2.17-0.1/debian/openscap-scanner.install 1.3.6+dfsg-2/debian/openscap-scanner.install
--- 1.2.17-0.1/debian/openscap-scanner.install	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-scanner.install	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,2 @@
+etc/bash_completion.d/oscap usr/share/bash-completion/completions/
+usr/bin/oscap
diff -pruN 1.2.17-0.1/debian/openscap-scanner.manpages 1.3.6+dfsg-2/debian/openscap-scanner.manpages
--- 1.2.17-0.1/debian/openscap-scanner.manpages	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-scanner.manpages	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+usr/share/man/man8/oscap.8
diff -pruN 1.2.17-0.1/debian/openscap-utils.install 1.3.6+dfsg-2/debian/openscap-utils.install
--- 1.2.17-0.1/debian/openscap-utils.install	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-utils.install	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,8 @@
+usr/bin/autotailor
+usr/bin/oscap-chroot
+usr/bin/oscap-docker
+usr/bin/oscap-podman
+usr/bin/oscap-run-sce-script
+usr/bin/oscap-ssh
+usr/bin/oscap-vm
+usr/bin/scap-as-rpm
diff -pruN 1.2.17-0.1/debian/openscap-utils.manpages 1.3.6+dfsg-2/debian/openscap-utils.manpages
--- 1.2.17-0.1/debian/openscap-utils.manpages	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/openscap-utils.manpages	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,7 @@
+usr/share/man/man8/autotailor.8
+usr/share/man/man8/oscap-chroot.8
+usr/share/man/man8/oscap-docker.8
+usr/share/man/man8/oscap-podman.8
+usr/share/man/man8/oscap-ssh.8
+usr/share/man/man8/oscap-vm.8
+usr/share/man/man8/scap-as-rpm.8
diff -pruN 1.2.17-0.1/debian/patches/001_fix_kfreebsd_probe.patch 1.3.6+dfsg-2/debian/patches/001_fix_kfreebsd_probe.patch
--- 1.2.17-0.1/debian/patches/001_fix_kfreebsd_probe.patch	2017-10-04 19:16:09.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/001_fix_kfreebsd_probe.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,20 +0,0 @@
-Index: openscap/src/OVAL/probes/probe/icache.c
-===================================================================
---- openscap.orig/src/OVAL/probes/probe/icache.c
-+++ openscap/src/OVAL/probes/probe/icache.c
-@@ -467,6 +467,7 @@ int probe_icache_nop(probe_icache_t *cac
-  */
- static int probe_cobj_memcheck(size_t item_cnt)
- {
-+#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__))
- 	if (item_cnt > PROBE_RESULT_MEMCHECK_CTRESHOLD) {
- 		struct proc_memusage mu_proc;
- 		struct sys_memusage  mu_sys;
-@@ -494,6 +495,7 @@ static int probe_cobj_memcheck(size_t it
- 			return (1);
- 		}
- 	}
-+#endif
- 
- 	return (0);
- }
diff -pruN 1.2.17-0.1/debian/patches/005_configure_dpkg_probe.patch 1.3.6+dfsg-2/debian/patches/005_configure_dpkg_probe.patch
--- 1.2.17-0.1/debian/patches/005_configure_dpkg_probe.patch	2015-05-05 15:24:36.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/005_configure_dpkg_probe.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,25 +0,0 @@
-Index: openscap/configure.ac
-===================================================================
---- openscap.orig/configure.ac
-+++ openscap/configure.ac
-@@ -624,7 +624,7 @@ echo
- echo '* Checking for apt_pkg library used by: dpkginfo '
- PKG_CHECK_MODULES([apt_pkg], [libapt-pkg >= 0.0],[],[
- SAVE_LIBS=$LIBS
--AC_SEARCH_LIBS([pkgInitConfig],[apt-pkg],[
-+AC_SEARCH_LIBS([pkgVersion],[apt-pkg],[
- apt_pkg_CFLAGS=;
- apt_pkg_LIBS=-lapt-pkg;
- ],[
-@@ -638,7 +638,10 @@ LIBS=$SAVE_LIBS
- SAVE_LIBS=$LIBS
- LIBS=$apt_pkg_LIBS
- AC_LANG_PUSH([C++])
--AC_CHECK_FUNCS([pkgInitConfig pkgInitSystem], [], [
-+AC_LINK_IFELSE(
-+  [AC_LANG_PROGRAM([#include <apt-pkg/init.h>],
-+    [if (pkgInitConfig (*_config) == false) return -1;])],
-+  [TEST_LIBS="$TEST_LIBS -lapt-pkg"], [
- probe_dpkginfo_req_deps_ok=no;
- probe_dpkginfo_req_deps_missing+=", $ac_func func";
- ])
diff -pruN 1.2.17-0.1/debian/patches/006_fix_dpkg_probe.patch 1.3.6+dfsg-2/debian/patches/006_fix_dpkg_probe.patch
--- 1.2.17-0.1/debian/patches/006_fix_dpkg_probe.patch	2015-12-06 13:53:33.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/006_fix_dpkg_probe.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,13 +0,0 @@
-Index: openscap/src/OVAL/probes/unix/linux/dpkginfo.c
-===================================================================
---- openscap.orig/src/OVAL/probes/unix/linux/dpkginfo.c
-+++ openscap/src/OVAL/probes/unix/linux/dpkginfo.c
-@@ -54,6 +54,8 @@
- #include <seap.h>
- #include <probe-api.h>
- #include <alloc.h>
-+#include <common/assume.h>
-+#include "common/debug_priv.h"
- 
- #include "common/debug_priv.h"
- #include "public/oval_schema_version.h"
diff -pruN 1.2.17-0.1/debian/patches/007_automake_fix_schema_install.patch 1.3.6+dfsg-2/debian/patches/007_automake_fix_schema_install.patch
--- 1.2.17-0.1/debian/patches/007_automake_fix_schema_install.patch	2018-04-28 15:33:08.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/007_automake_fix_schema_install.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,13 +0,0 @@
-Index: openscap/schemas/Makefile.am
-===================================================================
---- openscap.orig/schemas/Makefile.am
-+++ openscap/schemas/Makefile.am
-@@ -39,7 +39,7 @@ oval511_DATA = $(wildcard $(srcdir)/oval
- oval5111_DATA = $(wildcard $(srcdir)/oval/5.11.1/*.xsd $(srcdir)/oval/5.11.1/*.xsl)
- oval5112_DATA = $(wildcard $(srcdir)/oval/5.11.2/*.xsd $(srcdir)/oval/5.11.2/*.xsl)
- 
--sce10_DATA = sce/1.0/sce-result-schema.xsd
-+sce10_DATA = $(srcdir)/sce/1.0/sce-result-schema.xsd
- 
- xccdf11_DATA = $(wildcard $(srcdir)/xccdf/1.1/*.xsd $(srcdir)/xccdf/1.1/*.dtd)
- xccdf11tailoring_DATA = $(wildcard $(srcdir)/xccdf/1.1-tailoring/*.xsd $(srcdir)/xccdf/1.1-tailoring/*.dtd)
diff -pruN 1.2.17-0.1/debian/patches/008_fix_kfreebsd_ftbfs.patch 1.3.6+dfsg-2/debian/patches/008_fix_kfreebsd_ftbfs.patch
--- 1.2.17-0.1/debian/patches/008_fix_kfreebsd_ftbfs.patch	2015-03-25 17:04:21.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/008_fix_kfreebsd_ftbfs.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,29 +0,0 @@
-Index: openscap/src/OVAL/probes/unix/routingtable.c
-===================================================================
---- openscap.orig/src/OVAL/probes/unix/routingtable.c	2013-03-15 16:13:48.281739616 +0100
-+++ openscap/src/OVAL/probes/unix/routingtable.c	2013-07-04 14:29:42.599865637 +0200
-@@ -201,7 +201,9 @@
-     RT_COND_ADD_FLAG(RTF_UP, "UP");
-     RT_COND_ADD_FLAG(RTF_GATEWAY, "GATEWAY");
-     RT_COND_ADD_FLAG(RTF_HOST, "HOST");
-+#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__))
-     RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE");
-+#endif
-     RT_COND_ADD_FLAG(RTF_DYNAMIC, "DYNAMIC");
-     RT_COND_ADD_FLAG(RTF_MODIFIED, "MODIFIED");
-     RT_COND_ADD_FLAG(RTF_REJECT, "REJECT");
-@@ -260,11 +262,13 @@
-     RT_COND_ADD_FLAG(RTF_UP, "UP");
-     RT_COND_ADD_FLAG(RTF_GATEWAY, "GATEWAY");
-     RT_COND_ADD_FLAG(RTF_HOST, "HOST");
--    RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE");
-     RT_COND_ADD_FLAG(RTF_DYNAMIC, "DYNAMIC");
-     RT_COND_ADD_FLAG(RTF_MODIFIED, "MODIFIED");
-+#if !(defined(__FreeBSD__) || defined(__FreeBSD_kernel__))
-+    RT_COND_ADD_FLAG(RTF_REINSTATE, "REINSTATE");
-     RT_COND_ADD_FLAG(RTF_ADDRCONF, "ADDRCONF");
-     RT_COND_ADD_FLAG(RTF_CACHE, "CACHE");
-+#endif
-     RT_COND_ADD_FLAG(RTF_REJECT, "REJECT");
-     rt->rt_flags[i] = NULL;
- 
diff -pruN 1.2.17-0.1/debian/patches/009_rename_perl_so,patch 1.3.6+dfsg-2/debian/patches/009_rename_perl_so,patch
--- 1.2.17-0.1/debian/patches/009_rename_perl_so,patch	2020-04-09 13:59:21.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/009_rename_perl_so,patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,17 +0,0 @@
---- a/swig/perl/Makefile.am
-+++ b/swig/perl/Makefile.am
-@@ -19,10 +19,10 @@
- if WANT_PERL
- AM_CPPFLAGS += $(PERL_INCLUDES)
- perl_vendorlib_DATA = openscap.pm
--perl_vendorarch_LTLIBRARIES = _openscap_pm.la
--_openscap_pm_la_LDFLAGS = -module -avoid-version
--_openscap_pm_la_LIBADD  = ${top_builddir}/src/libopenscap.la
--nodist__openscap_pm_la_SOURCES = openscap_pm_wrap.c
-+perl_vendorarch_LTLIBRARIES = openscap_pm.la
-+openscap_pm_la_LDFLAGS = -module -avoid-version
-+openscap_pm_la_LIBADD  = ${top_builddir}/src/libopenscap.la
-+nodist_openscap_pm_la_SOURCES = openscap_pm_wrap.c
- endif
- 
- WANT_MODULE=
diff -pruN 1.2.17-0.1/debian/patches/010-install-cpe-oval.patch 1.3.6+dfsg-2/debian/patches/010-install-cpe-oval.patch
--- 1.2.17-0.1/debian/patches/010-install-cpe-oval.patch	2018-05-03 08:24:32.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/010-install-cpe-oval.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,10 +0,0 @@
-Index: openscap/cpe/Makefile.am
-===================================================================
---- openscap.orig/cpe/Makefile.am
-+++ openscap/cpe/Makefile.am
-@@ -1,4 +1,4 @@
- cpedir = $(pkgdatadir)/cpe/
--cpe_DATA = $(wildcard *.xml) README
-+cpe_DATA = $(wildcard $(srcdir)/*.xml) README
- 
- EXTRA_DIST = $(cpe_DATA)
diff -pruN 1.2.17-0.1/debian/patches/010_perlpm_install_fix.patch 1.3.6+dfsg-2/debian/patches/010_perlpm_install_fix.patch
--- 1.2.17-0.1/debian/patches/010_perlpm_install_fix.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/010_perlpm_install_fix.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,23 @@
+From: Philippe Thierry <philou@debian.org>
+Date: Wed, 20 Jul 2022 09:38:12 +0200
+Subject: _perlpm_install_fix
+
+Forwarded: not-needed
+---
+ swig/perl/CMakeLists.txt | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/swig/perl/CMakeLists.txt b/swig/perl/CMakeLists.txt
+index 057b365..59dc1fa 100644
+--- a/swig/perl/CMakeLists.txt
++++ b/swig/perl/CMakeLists.txt
+@@ -20,7 +20,7 @@ if (APPLE OR (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD"))
+                 DESTINATION ${CMAKE_INSTALL_DATADIR}/perl5/vendor_perl)
+ else()
+         install(TARGETS ${SWIG_MODULE_openscap_pm_REAL_NAME}
+-               DESTINATION ${PERL_VENDORLIB})
++               DESTINATION ${CMAKE_INSTALL_LIBDIR}/perl5/${PERL_VERSION})
+         install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/openscap_pm.pm
+-               DESTINATION ${PERL_VENDORARCH})
++               DESTINATION ${CMAKE_INSTALL_DATADIR}/perl5/)
+ endif()
diff -pruN 1.2.17-0.1/debian/patches/add-missing-free.patch 1.3.6+dfsg-2/debian/patches/add-missing-free.patch
--- 1.2.17-0.1/debian/patches/add-missing-free.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/add-missing-free.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,34 @@
+From: Jan Cerny <jcerny@redhat.com>
+Date: Thu, 27 Jan 2022 15:16:02 +0100
+Subject: [PATCH] Add a missing free
+
+Addressing:
+Error: RESOURCE_LEAK (CWE-772): [#def4] [important]
+openscap-1.3.6/src/XCCDF_POLICY/xccdf_policy.c:2144: alloc_fn: Storage is returned from allocation function "oscap_htable_iterator_new".
+openscap-1.3.6/src/XCCDF_POLICY/xccdf_policy.c:2144: var_assign: Assigning: "rit" = storage returned from "oscap_htable_iterator_new(policy->rules)".
+openscap-1.3.6/src/XCCDF_POLICY/xccdf_policy.c:2145: noescape: Resource "rit" is not freed or pointed-to in "oscap_htable_iterator_has_more".
+openscap-1.3.6/src/XCCDF_POLICY/xccdf_policy.c:2146: noescape: Resource "rit" is not freed or pointed-to in "oscap_htable_iterator_next_key".
+openscap-1.3.6/src/XCCDF_POLICY/xccdf_policy.c:2150: leaked_storage: Variable "rit" going out of scope leaks the storage it points to.
+ 2148|   			oscap_seterr(OSCAP_EFAMILY_XCCDF,
+ 2149|   				"Rule '%s' not found in selected profile.", rule_id);
+ 2150|-> 			return NULL;
+ 2151|   		}
+ 2152|   	}
+
+Origin: upstream, https://github.com/OpenSCAP/openscap/commit/6ef54336a018566a32f6a95177635ada7f20794e
+---
+ src/XCCDF_POLICY/xccdf_policy.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/XCCDF_POLICY/xccdf_policy.c b/src/XCCDF_POLICY/xccdf_policy.c
+index b63853a38f..4d4b7ad0a1 100644
+--- a/src/XCCDF_POLICY/xccdf_policy.c
++++ b/src/XCCDF_POLICY/xccdf_policy.c
+@@ -2147,6 +2147,7 @@ struct xccdf_result * xccdf_policy_evaluate(struct xccdf_policy * policy)
+ 		if (oscap_htable_get(policy->rules_found, rule_id) == NULL) {
+ 			oscap_seterr(OSCAP_EFAMILY_XCCDF,
+ 				"Rule '%s' not found in selected profile.", rule_id);
++			oscap_htable_iterator_free(rit);
+ 			return NULL;
+ 		}
+ 	}
diff -pruN 1.2.17-0.1/debian/patches/apt-1.9.0.patch 1.3.6+dfsg-2/debian/patches/apt-1.9.0.patch
--- 1.2.17-0.1/debian/patches/apt-1.9.0.patch	2018-05-03 08:38:37.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/apt-1.9.0.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,33 +0,0 @@
-From d328d01ba632a49a57c44fb8075a0753a07c5cac Mon Sep 17 00:00:00 2001
-From: Julian Andres Klode <julian.klode@canonical.com>
-Date: Tue, 18 Jun 2019 11:57:58 +0200
-Subject: [PATCH] Include additional headers in dkpginfo-helper for apt 1.9
-
-apt 1.9 cleans up the header includes a bit, causing the build
-to fail, so add the additional headers we are missing.
-
-Origin: https://github.com/OpenSCAP/openscap/pull/1363
----
- src/OVAL/probes/unix/linux/dpkginfo-helper.cxx | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx b/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx
-index 952f85204..18acc5637 100644
---- a/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx
-+++ b/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx
-@@ -9,9 +9,12 @@
- 
- #include <apt-pkg/init.h>
- #include <apt-pkg/error.h>
-+#include <apt-pkg/configuration.h>
-+#include <apt-pkg/fileutl.h>
- #include <apt-pkg/mmap.h>
- #include <apt-pkg/pkgcache.h>
- #include <apt-pkg/pkgrecords.h>
-+#include <apt-pkg/pkgsystem.h>
- 
- #include "dpkginfo-helper.h"
- 
--- 
-2.20.1
-
diff -pruN 1.2.17-0.1/debian/patches/apt-1.9.11.patch 1.3.6+dfsg-2/debian/patches/apt-1.9.11.patch
--- 1.2.17-0.1/debian/patches/apt-1.9.11.patch	2018-05-03 08:38:37.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/apt-1.9.11.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,59 +0,0 @@
-Description: Use apt's pkgCacheFile instead of hacking around with MMap
- Opening the cache by opening the file, mmaping it and creating a
- cache out of it is not the way it's supposed to work, and APT 1.9.11
- hid the MMap symbols, so this no longer links.
- .
- Use APT's pkgCacheFile class instead which does all the horrible
- stuff itself and just gives you a nice cache.
-Author: Julian Andres Klode <juliank@ubuntu.com>
-Last-Update: 2020-02-27
-
---- openscap-1.2.16.orig/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx
-+++ openscap-1.2.16/src/OVAL/probes/unix/linux/dpkginfo-helper.cxx
-@@ -9,6 +9,7 @@
- 
- #include <apt-pkg/init.h>
- #include <apt-pkg/error.h>
-+#include <apt-pkg/cachefile.h>
- #include <apt-pkg/configuration.h>
- #include <apt-pkg/fileutl.h>
- #include <apt-pkg/mmap.h>
-@@ -21,25 +22,14 @@
- using namespace std;
- 
- static int _init_done = 0;
--static pkgCache *cgCache = NULL;
--static MMap *dpkg_mmap = NULL;
-+static pkgCacheFile *cgCache;
- 
- static int opencache (void) {
-         if (pkgInitConfig (*_config) == false) return 0;
-         if (pkgInitSystem (*_config, _system) == false) return 0;
- 
--        FileFd *fd = new FileFd (_config->FindFile ("Dir::Cache::pkgcache"),
--                        FileFd::ReadOnly);
--
--        dpkg_mmap = new MMap (*fd, MMap::Public|MMap::ReadOnly);
--        if (_error->PendingError () == true) {
--                _error->DumpErrors ();
--                return 0;
--        }
--
--        cgCache = new pkgCache (dpkg_mmap);
--        if (0 == cgCache) return 0;
--        if (_error->PendingError () == true) {
-+        cgCache = new pkgCacheFile;
-+        if (!cgCache->BuildCaches(NULL, false)) {
-                 _error->DumpErrors ();
-                 return 0;
-         }
-@@ -135,9 +125,6 @@ int dpkginfo_fini()
-         delete cgCache;
-         cgCache = NULL;
- 
--        delete dpkg_mmap;
--        dpkg_mmap = NULL;
--
-         return 0;
- }
- 
diff -pruN 1.2.17-0.1/debian/patches/create-diagrams-when-generating-Doxygen-documen.patch 1.3.6+dfsg-2/debian/patches/create-diagrams-when-generating-Doxygen-documen.patch
--- 1.2.17-0.1/debian/patches/create-diagrams-when-generating-Doxygen-documen.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/create-diagrams-when-generating-Doxygen-documen.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,63 @@
+From: Håvard F. Aasen <havard.f.aasen@pfft.no>
+Date: Tue, 12 Jul 2022 07:29:02 +0200
+Subject: [PATCH] docs: Create diagrams when generating Doxygen documentation
+
+If we enable documentation and CMake finds Doxygen and 'dot' in path,
+diagrams will be generated.
+
+CMake searches for 'dot' at the same time as Doxygen.
+
+'dot' is a tool found in graphviz.
+
+Forwarded: https://github.com/OpenSCAP/openscap/pull/1872
+---
+ CMakeLists.txt      | 1 +
+ docs/CMakeLists.txt | 6 ++++++
+ docs/Doxyfile.in    | 2 +-
+ 3 files changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 61c57d7a3..45380539c 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -469,6 +469,7 @@ message(STATUS " ")
+ message(STATUS "Documentation:")
+ message(STATUS "enabled: ${ENABLE_DOCS}")
+ message(STATUS "doxygen: ${DOXYGEN_EXECUTABLE}")
++message(STATUS "graphviz: ${DOXYGEN_DOT_EXECUTABLE}")
+ message(STATUS "asciidoc: ${ASCIIDOC_EXECUTABLE}")
+ 
+ # ---------- PATHS
+diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt
+index b8c5bc5ba..0a5e627c2 100644
+--- a/docs/CMakeLists.txt
++++ b/docs/CMakeLists.txt
+@@ -8,6 +8,12 @@ if(ENABLE_DOCS)
+         set(DOXYGEN_IN ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in)
+         set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
+ 
++        # configure for graphviz
++        set(DOXYGEN_DIAGRAM "NO")
++        if(DOXYGEN_DOT_FOUND)
++            set(DOXYGEN_DIAGRAM "YES")
++        endif()
++
+         # request to configure the file
+         configure_file(${DOXYGEN_IN} ${DOXYGEN_OUT} @ONLY)
+ 
+diff --git a/docs/Doxyfile.in b/docs/Doxyfile.in
+index f48a3e763..7a2e88601 100644
+--- a/docs/Doxyfile.in
++++ b/docs/Doxyfile.in
+@@ -1220,7 +1220,7 @@ HIDE_UNDOC_RELATIONS   = YES
+ # toolkit from AT&T and Lucent Bell Labs. The other options in this section 
+ # have no effect if this option is set to NO (the default)
+ 
+-HAVE_DOT               = NO
++HAVE_DOT               = @DOXYGEN_DIAGRAM@
+ 
+ # By default doxygen will write a font called FreeSans.ttf to the output 
+ # directory and reference it in all dot files that doxygen generates. This 
+-- 
+2.35.1
+
diff -pruN 1.2.17-0.1/debian/patches/create-Doxygen-diagrams-as-svg.patch 1.3.6+dfsg-2/debian/patches/create-Doxygen-diagrams-as-svg.patch
--- 1.2.17-0.1/debian/patches/create-Doxygen-diagrams-as-svg.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/create-Doxygen-diagrams-as-svg.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,25 @@
+From: Håvard F. Aasen <havard.f.aasen@pfft.no>
+Date: Tue, 12 Jul 2022 08:18:04 +0200
+Subject: [PATCH] docs: Create Doxygen diagrams as svg
+
+Forwarded: https://github.com/OpenSCAP/openscap/pull/1872
+---
+ docs/Doxyfile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/docs/Doxyfile.in b/docs/Doxyfile.in
+index 7a2e88601..ea85b4a21 100644
+--- a/docs/Doxyfile.in
++++ b/docs/Doxyfile.in
+@@ -1316,7 +1316,7 @@ DIRECTORY_GRAPH        = YES
+ # generated by dot. Possible values are png, jpg, or gif
+ # If left blank png will be used.
+ 
+-DOT_IMAGE_FORMAT       = png
++DOT_IMAGE_FORMAT       = svg
+ 
+ # The tag DOT_PATH can be used to specify the path where the dot tool can be 
+ # found. If left blank, it is assumed the dot tool can be found in the path.
+-- 
+2.35.1
+
diff -pruN 1.2.17-0.1/debian/patches/OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch 1.3.6+dfsg-2/debian/patches/OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch
--- 1.2.17-0.1/debian/patches/OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,52 @@
+From: Evgeny Kolesnikov <ekolesni@redhat.com>
+Date: Thu, 28 Jul 2022 14:05:55 +0200
+Subject: OVAL/SEAP: Allocate aligned memory in SEXP_rawval_lblk_new
+
+The lblk pointer is affected by 2-bit LSB magic SEAP uses
+for reference-counting. On 32-bit platforms it requires extra
+alignment.
+
+Origin: upstream, https://github.com/OpenSCAP/openscap/commit/13e04d95e1ddee11c5b76336df83aea26d9ff065
+---
+ src/OVAL/probes/SEAP/sexp-value.c | 14 ++++++++------
+ 1 file changed, 8 insertions(+), 6 deletions(-)
+
+diff --git a/src/OVAL/probes/SEAP/sexp-value.c b/src/OVAL/probes/SEAP/sexp-value.c
+index b8b3ed6..baa2354 100644
+--- a/src/OVAL/probes/SEAP/sexp-value.c
++++ b/src/OVAL/probes/SEAP/sexp-value.c
+@@ -106,8 +106,10 @@ uintptr_t SEXP_rawval_lblk_new (uint8_t sz)
+ {
+         _A(sz < 16);
+ 
+-	struct SEXP_val_lblk *lblk = malloc(sizeof(struct SEXP_val_lblk));
+-	lblk->memb = malloc(sizeof(SEXP_t) * (1 << sz));
++        struct SEXP_val_lblk *lblk = oscap_aligned_malloc(
++                sizeof(struct SEXP_val_lblk),
++                SEXP_LBLK_ALIGN);
++        lblk->memb = malloc(sizeof(SEXP_t) * (1 << sz));
+ 
+         lblk->nxsz = ((uintptr_t)(NULL) & SEXP_LBLKP_MASK) | ((uintptr_t)sz & SEXP_LBLKS_MASK);
+         lblk->refs = 1;
+@@ -517,8 +519,8 @@ void SEXP_rawval_lblk_free (uintptr_t lblkp, void (*func) (SEXP_t *))
+                         func (lblk->memb + lblk->real);
+                 }
+ 
+-		free(lblk->memb);
+-		free(lblk);
++                free(lblk->memb);
++                oscap_aligned_free(lblk);
+ 
+                 if (next != NULL)
+                         SEXP_rawval_lblk_free ((uintptr_t)next, func);
+@@ -539,8 +541,8 @@ void SEXP_rawval_lblk_free1 (uintptr_t lblkp, void (*func) (SEXP_t *))
+                         func (lblk->memb + lblk->real);
+                 }
+ 
+-		free(lblk->memb);
+-		free(lblk);
++                free(lblk->memb);
++                oscap_aligned_free(lblk);
+         }
+ 
+         return;
diff -pruN 1.2.17-0.1/debian/patches/remove-superfluous-strdup.patch 1.3.6+dfsg-2/debian/patches/remove-superfluous-strdup.patch
--- 1.2.17-0.1/debian/patches/remove-superfluous-strdup.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/remove-superfluous-strdup.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,40 @@
+From: jan Cerny <jcerny@redhat.com>
+Date: Thu, 27 Jan 2022 15:09:02 +0100
+Subject: [PATCH] Remove superfluous strdup
+
+We can do this because xccdf_session_set_rule calls strdup on the rule
+parameter internally.
+
+Addressing:
+
+Error: RESOURCE_LEAK (CWE-772): [#def2] [important]
+openscap-1.3.6/build/swig/python3/CMakeFiles/_openscap_py.dir/openscapPYTHON_wrap.c:4148: alloc_fn: Storage is returned from allocation function "strdup".
+openscap-1.3.6/build/swig/python3/CMakeFiles/_openscap_py.dir/openscapPYTHON_wrap.c:4148: var_assign: Assigning: "n_rule" = storage returned from "strdup(rule)".
+openscap-1.3.6/build/swig/python3/CMakeFiles/_openscap_py.dir/openscapPYTHON_wrap.c:4149: noescape: Resource "n_rule" is not freed or pointed-to in "xccdf_session_set_rule".
+openscap-1.3.6/build/swig/python3/CMakeFiles/_openscap_py.dir/openscapPYTHON_wrap.c:4150: leaked_storage: Variable "n_rule" going out of scope leaks the storage it points to.
+ 4148|       char *n_rule = strdup(rule);
+ 4149|       xccdf_session_set_rule(sess, n_rule);
+ 4150|-> }
+ 4151|
+ 4152|   void xccdf_session_free_py(struct xccdf_session *sess){
+
+Origin: upstream, https://github.com/OpenSCAP/openscap/commit/d3e7d5be1fcd55ef396de6070f877df0f2c2c58e
+---
+ swig/openscap.i | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/swig/openscap.i b/swig/openscap.i
+index 2fe1cce99e..158a226757 100644
+--- a/swig/openscap.i
++++ b/swig/openscap.i
+@@ -559,8 +559,7 @@ struct xccdf_session {
+ };
+ 
+ void xccdf_session_set_rule_py(struct xccdf_session  *sess, char *rule) {
+-    char *n_rule = strdup(rule);
+-    xccdf_session_set_rule(sess, n_rule);
++    xccdf_session_set_rule(sess, rule);
+ }
+ 
+ void xccdf_session_free_py(struct xccdf_session *sess){
+
diff -pruN 1.2.17-0.1/debian/patches/run-a-minor-testsuite.patch 1.3.6+dfsg-2/debian/patches/run-a-minor-testsuite.patch
--- 1.2.17-0.1/debian/patches/run-a-minor-testsuite.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/run-a-minor-testsuite.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,42 @@
+From: =?utf-8?b?IkjDpXZhcmQgRi4gQWFzZW4i?= <havard.f.aasen@pfft.no>
+Date: Sat, 30 Jul 2022 07:57:36 +0200
+Subject: run a minor testsuite
+
+Forwarded: not-needed
+---
+ tests/CMakeLists.txt | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
+index ae8c4f2..fa78bd5 100644
+--- a/tests/CMakeLists.txt
++++ b/tests/CMakeLists.txt
+@@ -22,20 +22,20 @@ endfunction()
+ 
+ configure_file("test_common.sh.in" "test_common.sh" @ONLY)
+ 
+-add_subdirectory("API")
++#add_subdirectory("API")
+ add_subdirectory("bindings")
+-add_subdirectory("bz2")
++#add_subdirectory("bz2")
+ add_subdirectory("codestyle")
+-add_subdirectory("curl")
++#add_subdirectory("curl")
+ add_subdirectory("CPE")
+-add_subdirectory("DS")
++#add_subdirectory("DS")
+ add_subdirectory("mitre")
+-add_subdirectory("nist")
++#add_subdirectory("nist")
+ add_subdirectory("oscap_string")
+ add_subdirectory("oval_details")
+-add_subdirectory("probes")
+-add_subdirectory("report")
+-add_subdirectory("sce")
++#add_subdirectory("probes")
++#add_subdirectory("report")
++#add_subdirectory("sce")
+ add_subdirectory("schemas")
+ add_subdirectory("sources")
+ add_subdirectory("utils")
diff -pruN 1.2.17-0.1/debian/patches/series 1.3.6+dfsg-2/debian/patches/series
--- 1.2.17-0.1/debian/patches/series	2020-04-10 14:40:43.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/series	2022-07-30 09:26:47.000000000 +0000
@@ -1,10 +1,8 @@
-001_fix_kfreebsd_probe.patch
-#005_configure_dpkg_probe.patch
-006_fix_dpkg_probe.patch
-007_automake_fix_schema_install.patch
-008_fix_kfreebsd_ftbfs.patch
-009_rename_perl_so,patch
-#010-install-cpe-oval.patch
-apt-1.9.0.patch
-apt-1.9.11.patch
-use_sys-xattr.patch
+010_perlpm_install_fix.patch
+create-diagrams-when-generating-Doxygen-documen.patch
+create-Doxygen-diagrams-as-svg.patch
+update-whatis-entry.patch
+remove-superfluous-strdup.patch
+add-missing-free.patch
+OVAL-SEAP-Allocate-aligned-memory-in-SEXP_rawval_lblk_new.patch
+run-a-minor-testsuite.patch
diff -pruN 1.2.17-0.1/debian/patches/update-whatis-entry.patch 1.3.6+dfsg-2/debian/patches/update-whatis-entry.patch
--- 1.2.17-0.1/debian/patches/update-whatis-entry.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/update-whatis-entry.patch	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,21 @@
+From: Håvard F. Aasen <havard.f.aasen@pfft.no>
+Date: Mon, 11 Jul 2022 08:40:52 +0200
+Subject: [PATCH] Update whatis entry
+
+Origin: upstream, https://github.com/OpenSCAP/openscap/commit/39663ed27e175677260936a4670d79f1e536f132
+---
+ utils/scap-as-rpm.8 | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/utils/scap-as-rpm.8 b/utils/scap-as-rpm.8
+index 3a41331eea..b871594c69 100644
+--- a/utils/scap-as-rpm.8
++++ b/utils/scap-as-rpm.8
+@@ -1,6 +1,6 @@
+ .TH scap-as-rpm "8" "November 2013" "scap-as-rpm" "System Administration Utilities"
+ .SH NAME
+-scap-as-rpm \- manual page for scap-as-rpm
++scap-as-rpm \- takes given SCAP input(s) and packs them in an RPM package
+ .SH DESCRIPTION
+ usage: scap\-as\-rpm [\-h] [\-\-pkg\-name PKG_NAME] [\-\-pkg\-version PKG_VERSION]
+ .IP
diff -pruN 1.2.17-0.1/debian/patches/use_sys-xattr.patch 1.3.6+dfsg-2/debian/patches/use_sys-xattr.patch
--- 1.2.17-0.1/debian/patches/use_sys-xattr.patch	2020-04-10 06:04:21.000000000 +0000
+++ 1.3.6+dfsg-2/debian/patches/use_sys-xattr.patch	1970-01-01 00:00:00.000000000 +0000
@@ -1,16 +0,0 @@
-Description: Change from <attr/xattr.h> to <sys/xattr.h>
-Author: Håvard Flaget Aasen <haavard_aasen@yahoo.no>
-Bug-Debian://bugs.debian.org/#953916
-Last-Update: 2020-04-10
----
---- a/src/OVAL/probes/unix/fileextendedattribute.c
-+++ b/src/OVAL/probes/unix/fileextendedattribute.c
-@@ -41,7 +41,7 @@
- #include <limits.h>
- 
- #include <sys/types.h>
--#include <attr/xattr.h>
-+#include <sys/xattr.h>
- 
- #include <probe/probe.h>
- #include <probe/option.h>
diff -pruN 1.2.17-0.1/debian/rules 1.3.6+dfsg-2/debian/rules
--- 1.2.17-0.1/debian/rules	2020-04-10 14:07:06.000000000 +0000
+++ 1.3.6+dfsg-2/debian/rules	2022-07-30 09:26:47.000000000 +0000
@@ -4,37 +4,65 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-DEFAULTPY=$(shell py3versions -v -d)
-ALLPY=$(DEFAULTPY)
+export DEB_BUILD_MAINT_OPTIONS := hardening=+all
 
-override_dh_auto_test:
-	# disable tests until they work as expected
-	:
-
-override_dh_auto_configure: $(ALLPY:%=override_dh_auto_configure-%)
-
-override_dh_auto_configure-%:
-	dh_auto_configure -Bbuild-python-$* -- --enable-sce --enable-perl PYTHON=/usr/bin/python$*
+PYVERS=$(shell py3versions --supported --version)
+PERL_VERSION:=$(shell perl -e 'my @ver=split /\./, sprintf("%vd", $$^V); print("$$ver[0].$$ver[1]");')
+CMAKE_OPTS = -DCMAKE_BUILD_RPATH_USE_ORIGIN=ON \
+	     -DENABLE_DOCS=ON \
+	     -DENABLE_PERL=ON \
+	     -DOPENSCAP_PROBE_UNIX_GCONF=OFF \
+	     -DGCONF_LIBRARY= \
+	     -DPERL_VERSION=$(PERL_VERSION) \
+	     -DPYTHON_EXECUTABLE=/usr/bin/python$$V
 
-override_dh_auto_build: $(ALLPY:%=override_dh_auto_build-%)
-
-override_dh_auto_build-%:
-	dh_auto_build -Bbuild-python-$*
+override_dh_auto_clean:
+	for V in $(PYVERS); do \
+		dh_auto_clean --builddir=build-py$$V ; \
+	done
+
+override_dh_auto_configure:
+	for V in $(PYVERS); do \
+		dh_auto_configure --builddir=build-py$$V -- \
+			$(CMAKE_OPTS) ; \
+	done
+
+override_dh_auto_build:
+	for V in $(PYVERS); do \
+		dh_auto_build --builddir=build-py$$V ; \
+	done
+
+override_dh_auto_install:
+	# Move Python files to separate folders so they don't overwrite
+	# each other at install time.
+	for V in $(PYVERS); do \
+		dh_auto_install --builddir=build-py$$V ; \
+		mv ${CURDIR}/debian/tmp/usr/lib/python3 ${CURDIR}/debian/tmp/usr/lib/python$$V ; \
+		chmod 0644 ${CURDIR}/debian/tmp/usr/lib/python$$V/dist-packages/openscap_py.py ; \
+		chmod 0644 ${CURDIR}/debian/tmp/usr/lib/python$$V/dist-packages/openscap_api.py ; \
+	done
 
-override_dh_auto_install: $(ALLPY:%=override_dh_auto_install-%)
 	find debian/tmp -name "*.la" -delete
-	rm -f debian/libopenscap-dev/usr/share/doc/libopenscap-dev/html/jquery.js
-
-override_dh_auto_install-%:
-	dh_auto_install -Bbuild-python-$* --destdir=debian/tmp
+	mv debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/perl5/$(PERL_VERSION)* debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/perl5/$(PERL_VERSION)
+	$(RM) $(CURDIR)/debian/tmp/usr/share/doc/openscap/html/*.md5 \
+	      $(CURDIR)/debian/tmp/usr/share/doc/openscap/html/*.map
 
 override_dh_strip:
-	dh_strip -plibopenscap8 --dbg-package=libopenscap8-dbg
-	dh_strip -ppython3-openscap --dbg-package=libopenscap8-dbg
-	dh_strip -plibopenscap-perl --dbg-package=libopenscap8-dbg
+	dh_strip -popenscap-scanner --dbgsym-migration='libopenscap8-dbg (<< 1.3.4-1.1~)'
+	dh_strip -plibopenscap25 --dbgsym-migration='libopenscap8-dbg (<< 1.3.4-1.1~)'
+	dh_strip -ppython3-openscap --dbgsym-migration='libopenscap8-dbg (<< 1.3.4-1.1~)'
+	dh_strip -plibopenscap-perl --dbgsym-migration='libopenscap8-dbg (<< 1.3.4-1.1~)'
 
-override_dh_auto_clean:
-	rm -rf build-*
+override_dh_python3:
+	dh_python3 -popenscap-utils -ppython3-openscap --shebang=/usr/bin/python3
+
+override_dh_installchangelogs:
+	dh_installchangelogs NEWS
+
+override_dh_auto_test:
+	for V in $(PYVERS); do \
+		dh_auto_test --builddir=build-py$$V ; \
+	done
 
 %:
 	dh $@ --with python3
diff -pruN 1.2.17-0.1/debian/salsa-ci.yml 1.3.6+dfsg-2/debian/salsa-ci.yml
--- 1.2.17-0.1/debian/salsa-ci.yml	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/salsa-ci.yml	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,4 @@
+---
+include:
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
diff -pruN 1.2.17-0.1/debian/source/lintian-overrides 1.3.6+dfsg-2/debian/source/lintian-overrides
--- 1.2.17-0.1/debian/source/lintian-overrides	2020-04-10 14:58:35.000000000 +0000
+++ 1.3.6+dfsg-2/debian/source/lintian-overrides	1970-01-01 00:00:00.000000000 +0000
@@ -1,2 +0,0 @@
-# Tagged wrong because of very_long_line_lenghts_in_source_file
-openscap source: source-is-missing xsl/xccdf-resources/openscap.js line length is 263 characters (>256)
diff -pruN 1.2.17-0.1/debian/tests/autopkgtest-pkg-python.conf 1.3.6+dfsg-2/debian/tests/autopkgtest-pkg-python.conf
--- 1.2.17-0.1/debian/tests/autopkgtest-pkg-python.conf	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/tests/autopkgtest-pkg-python.conf	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1 @@
+import_name = oscap_docker_python
diff -pruN 1.2.17-0.1/debian/upstream/metadata 1.3.6+dfsg-2/debian/upstream/metadata
--- 1.2.17-0.1/debian/upstream/metadata	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/debian/upstream/metadata	2022-07-30 09:26:47.000000000 +0000
@@ -0,0 +1,4 @@
+Bug-Database: https://github.com/OpenSCAP/openscap/issues
+Bug-Submit: https://github.com/OpenSCAP/openscap/issues/new
+Repository: https://github.com/OpenSCAP/openscap.git
+Repository-Browse: https://github.com/OpenSCAP/openscap
diff -pruN 1.2.17-0.1/debian/watch 1.3.6+dfsg-2/debian/watch
--- 1.2.17-0.1/debian/watch	2016-04-22 15:00:17.000000000 +0000
+++ 1.3.6+dfsg-2/debian/watch	2022-07-30 09:26:47.000000000 +0000
@@ -1,10 +1,5 @@
-# watch control file for uscan
-# Run the "uscan" command to check for upstream updates and more.
-# See uscan(1) for format
-
-# Compulsory line, this is a version 3 file
-version=3
-
-opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/openscap-$1\.tar\.gz/ \
-  https://github.com/OpenSCAP/openscap/tags .*/v?(\d\S*)\.tar\.gz
-
+version=4
+opts=filenamemangle=s/.+\/openscap?(\d\S*)\.tar\.gz/openscap-$1\.tar\.gz/,\
+dversionmangle=s/\+dfsg\d*$//,\
+repacksuffix=+dfsg \
+https://github.com/OpenSCAP/openscap/releases .*/openscap-(\d\S*)\.tar\.gz
diff -pruN 1.2.17-0.1/dist/bash_completion.d/oscap 1.3.6+dfsg-2/dist/bash_completion.d/oscap
--- 1.2.17-0.1/dist/bash_completion.d/oscap	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/dist/bash_completion.d/oscap	2022-01-19 14:38:33.000000000 +0000
@@ -3,7 +3,7 @@
 # returns number of params
 function _oscap_noarg {
     case "$1" in
-      --definitions|--syschar|--results|--schematron|-f|--force|-q|--quiet|--oval-results) return 0 ;;
+      --definitions|--syschar|--results|--skip-schematron|-f|--force|-q|--quiet|--oval-results) return 0 ;;
       --version|--help|-V|-h) return 256 ;; # stop cmdline processing
       *) return 1 ;;
     esac
@@ -26,29 +26,29 @@ function _oscap {
     # command options
     local -A opts=()
 	opts[oscap]="--version --quiet --help -V -q -h"
-    opts[oscap:oval:validate]="--version --definitions --variables --syschar --results --directives --schematron"
-    opts[oscap:oval:eval]="--datastream-id --oval-id --id --variables --directives --without-syschar --results --report --skip-valid --fetch-remote-resources --verbose --verbose-log-file"
-    opts[oscap:oval:analyse]="--variables --directives --verbose --verbose-log-file"
-    opts[oscap:oval:collect]="--variables --verbose --verbose-log-file"
+    opts[oscap:oval:validate]="--version --definitions --variables --syschar --results --directives --skip-schematron"
+    opts[oscap:oval:eval]="--datastream-id --oval-id --id --variables --directives --without-syschar --results --report --skip-valid --skip-validation --fetch-remote-resources --local-files --verbose --verbose-log-file"
+    opts[oscap:oval:analyse]="--variables --directives --verbose --verbose-log-file --skip-valid --skip-validation"
+    opts[oscap:oval:collect]="--id --syschar --skip-valid --skip-validation --variables --verbose --verbose-log-file"
     opts[oscap:oval:generate:report]="-o --output"
-    opts[oscap:xccdf:eval]="--benchmark-id --check-engine-results --cpe --datastream-id --export-variables --fetch-remote-resources --oval-results --profile --progress --remediate --report --results --results-arf --rule --sce-results --skip-valid --stig-viewer --tailoring-file --tailoring-id --thin-results --verbose --verbose-log-file --without-syschar --xccdf-id"
-    opts[oscap:xccdf:validate]="--schematron"
-    opts[oscap:xccdf:export-oval-variables]="--datastream-id --xccdf-id --profile --skip-valid --fetch-remote-resources --cpe"
-    opts[oscap:xccdf:remediate]="--result-id --skip-valid --fetch-remote-resources --results --results-arf --report --oval-results --export-variables --cpe"
+    opts[oscap:xccdf:eval]="--benchmark-id --check-engine-results --cpe --datastream-id --enforce-signature --export-variables --fetch-remote-resources --local-files --oval-results --profile --progress --progress-full --remediate --report --results --results-arf --rule --skip-rule --skip-valid --skip-validation --skip-signature-validation --stig-viewer --tailoring-file --tailoring-id --thin-results --verbose --verbose-log-file --without-syschar --xccdf-id"
+    opts[oscap:xccdf:validate]="--skip-schematron"
+    opts[oscap:xccdf:export-oval-variables]="--datastream-id --xccdf-id --profile --skip-valid --skip-validation --fetch-remote-resources --local-files --cpe"
+    opts[oscap:xccdf:remediate]="--result-id --skip-valid --skip-validation --fetch-remote-resources --local-files --results --results-arf --report --oval-results --export-variables --cpe --check-engine-results --progress --progress-full"
     opts[oscap:xccdf:resolve]="-o --output -f --force"
     opts[oscap:xccdf:generate]="--profile"
-    opts[oscap:xccdf:generate:report]="-o --output -i --result-id --show --profile --oval-template"
-    opts[oscap:xccdf:generate:guide]="-o --output --hide-profile-info --profile"
-    opts[oscap:xccdf:generate:fix]="-o --output --template --profile --result-id --profile"
+    opts[oscap:xccdf:generate:report]="-o --output --result-id --profile --oval-template --sce-template"
+    opts[oscap:xccdf:generate:guide]="-o --output --hide-profile-info --profile --benchmark-id --xccdf-id --tailoring-file --tailoring-id --skip-signature-validation --enforce-signature"
+    opts[oscap:xccdf:generate:fix]="-o --output --template --profile --result-id --profile --fix-type --xccdf-id --benchmark-id --tailoring-file --tailoring-id --skip-signature-validation --enforce-signature"
     opts[oscap:xccdf:generate:custom]="-o --output --stylesheet"
-    opts[oscap:ds:sds-add]="--datastream-id --skip-valid"
-    opts[oscap:ds:sds-compose]="--skip-valid"
-    opts[oscap:ds:sds-split]="--datastream-id --xccdf-id --skip-valid --fetch-remote-resources"
-    opts[oscap:ds:rds-create]="--skip-valid"
-    opts[oscap:ds:rds-split]="--report-id --skip-valid"
+    opts[oscap:ds:sds-add]="--datastream-id --skip-valid --skip-validation"
+    opts[oscap:ds:sds-compose]="--skip-valid --skip-validation"
+    opts[oscap:ds:sds-split]="--datastream-id --xccdf-id --skip-valid --skip-validation --fetch-remote-resources --local-files"
+    opts[oscap:ds:rds-create]="--skip-valid --skip-validation"
+    opts[oscap:ds:rds-split]="--report-id --skip-valid --skip-validation"
     opts[oscap:cvss:score]=""
     opts[oscap:cvss:describe]=""
-    opts[oscap:info]="--fetch-remote-resources --profile --profiles"
+    opts[oscap:info]="--fetch-remote-resources --local-files --profile --profiles"
 
     # local variables
 	local std cmd i prev
diff -pruN 1.2.17-0.1/dist/CMakeLists.txt 1.3.6+dfsg-2/dist/CMakeLists.txt
--- 1.2.17-0.1/dist/CMakeLists.txt	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.6+dfsg-2/dist/CMakeLists.txt	2020-07-24 07:33:14.000000000 +0000
@@ -0,0 +1,3 @@
+if(NOT WIN32)
+	install(DIRECTORY "bash_completion.d" DESTINATION "${CMAKE_INSTALL_FULL_SYSCONFDIR}")
+endif()
diff -pruN 1.2.17-0.1/dist/fedora/oscap-scan.init 1.3.6+dfsg-2/dist/fedora/oscap-scan.init
--- 1.2.17-0.1/dist/fedora/oscap-scan.init	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/dist/fedora/oscap-scan.init	1970-01-01 00:00:00.000000000 +0000
@@ -1,112 +0,0 @@
-#!/bin/sh
-#
-# oscap-scan:		OpenSCAP security scanner
-#
-# chkconfig: - 96 99
-# description:  This service runs OpenSCAP security scanner to check the \
-#		system settings. The program does not stay resident, \
-#		but rather runs once. The results of security audit are 
-#		stored in /var/log/oscap-scan.xml.log
-#
-# processname: /usr/bin/oscap
-# config: /etc/sysconfig/oscap-scan
-#
-# Return values according to LSB for all commands but status:
-# 0 - success
-# 1 - generic or unspecified error
-# 2 - invalid or excess argument(s)
-# 3 - unimplemented feature (e.g. "reload")
-# 4 - insufficient privilege
-# 5 - program is not installed
-# 6 - program is not configured
-# 7 - program is not running
-
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-prog="oscap"
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-# Allow anyone to run status
-if [ "$1" = "status" ] ; then
-	exit 3
-fi
-
-# Check that we are root ... so non-root users stop here
-test $EUID = 0  ||  exit 4
-
-RETVAL=0
-
-start() {
-	test -x /usr/bin/oscap  || exit 5
-	# Now check that the sysconfig is found and has important things
-	# configured
-	for SCAN_FILE in `find /etc/sysconfig -name oscap-scan\*`; do
-		SCAN_OPTIONS="" && FIX_OPTIONS=""
-		test -f ${SCAN_FILE} && . ${SCAN_FILE} && test x"$SCAN_OPTIONS" != "x" || continue
-		echo  -n $"Starting $prog (${SCAN_FILE}): "
-		$prog $SCAN_OPTIONS
-		ERR=$?
-		if [ $ERR -eq 0 ] ; then
-			sleep 1
-			logger "OpenSCAP security scan (${SCAN_FILE}): PASS"
-		elif [ $ERR -eq 1 ] ; then
-			sleep 1
-			logger "OpenSCAP security scan (${SCAN_FILE}): ERROR. Run oscap scan from command line."
-		else
-			sleep 1
-			logger "OpenSCAP security scan (${SCAN_FILE}): FAILED. See results in /var/log/oscap-scan.xml.log"
-		fi
-		[ "$ERR" -eq 0 ] && success $"$prog startup" || failure $"$prog startup"
-		echo
-		if [ $ERR -ne 0 ] && [ $ERR -ne 1 ]; then
-			test x"$FIX_OPTIONS" != "x" || continue
-			echo  -n $"Starting $prog remediations (${SCAN_FILE}): "
-			temp_file=`mktemp`
-			$prog $FIX_OPTIONS > ${temp_file} 2>/dev/null
-			sh ${temp_file}
-			FIX_ERR=$?
-			if [ $FIX_ERR -eq 0 ] ; then
-				sleep 1
-				logger "OpenSCAP remediations (${SCAN_FILE}): PASS"
-			elif [ $vERR -eq 1 ] ; then
-				sleep 1
-				logger "OpenSCAP remediations (${SCAN_FILE}): ERROR. Run oscap scan from command line."
-			else
-				sleep 1
-				logger "OpenSCAP remediations (${SCAN_FILE}): FAILED."
-			fi
-			rm -f ${temp_file}
-			echo
-		fi
-	done
-}
-
-
-# See how we were called.
-case "$1" in
-    start)
-	start
-	;;
-    restart)
-	start
-	;;
-    stop)
-	RETVAL=0;
-	;;
-    condrestart)
-	RETVAL=0;
-	;;
-    try-restart)
-	RETVAL=0;
-	;;
-    reload)
-	RETVAL=0;
-	;;
-    *)
-	echo $"Usage: $0 {start}"
-	RETVAL=2
-	;;
-esac
-exit $RETVAL
-
diff -pruN 1.2.17-0.1/dist/fedora/oscap-scan.sys 1.3.6+dfsg-2/dist/fedora/oscap-scan.sys
--- 1.2.17-0.1/dist/fedora/oscap-scan.sys	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/dist/fedora/oscap-scan.sys	1970-01-01 00:00:00.000000000 +0000
@@ -1,11 +0,0 @@
-
-#oscap-scan command line options:
-#SCAN_OPTIONS="xccdf eval
-#         --profile F14-Desktop
-#         --report /var/log/oscap-scan-log.html
-#         --results /var/log/oscap-scan-log.xml
-#         /usr/share/openscap/scap-xccdf.xml"
-
-#FIX_OPTIONS="xccdf generate fix
-#         --result-id xccdf_org.open-scap_testresult_F14-Desktop
-#         /var/log/oscap-scan-log.xml"
diff -pruN 1.2.17-0.1/dist/fedora/scap-fedora14-oval.xml 1.3.6+dfsg-2/dist/fedora/scap-fedora14-oval.xml
--- 1.2.17-0.1/dist/fedora/scap-fedora14-oval.xml	2018-05-29 08:44:29.000000000 +0000
+++ 1.3.6+dfsg-2/dist/fedora/scap-fedora14-oval.xml	1970-01-01 00:00:00.000000000 +0000
@@ -1,10591 +0,0 @@
-<?xml version="1.0"?>
-<oval_definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5"
- xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5"
- xmlns:oval-def="http://oval.mitre.org/XMLSchema/oval-definitions-5"
- xmlns:ind-def="http://oval.mitre.org/XMLSchema/oval-definitions-5#independent"
- xmlns:lin-def="http://oval.mitre.org/XMLSchema/oval-definitions-5#linux"
- xmlns:unix-def="http://oval.mitre.org/XMLSchema/oval-definitions-5#unix">
-      <generator>
-            <oval:product_name>vim, emacs</oval:product_name>
-            <oval:schema_version>5.5</oval:schema_version>
-            <oval:timestamp>2010-08-30T12:00:00-04:00</oval:timestamp>
-      </generator>
-      <definitions>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20000" version="1">
-                  <metadata>
-                        <title>Ensure that /tmp has its own partition or logical volume</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The /tmp directory is a world-writable directory used for temporary ﬁle storage. Verify that it has its own partition or logical volume.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20000" comment="Check in /etc/fstab for a /tmp mount point" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20001" version="1">
-                  <metadata>
-                        <title>Ensure that /tmp is of adequate size</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Because software may need to use /tmp to temporarily store large ﬁles, ensure that it is of adequate size.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20002" version="1">
-                  <metadata>
-                        <title>Ensure that /var has its own partition or logical volume</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The /var directory is used by daemons and other system 
-                              services to store frequently-changing data. It is not uncommon for the /var directory 
-                              to contain world-writable directories, installed by other software packages.
-                              Ensure that /var has its own partition or logical volume.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20002" comment="Check in /etc/fstab for a /var mount point" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20003" version="1">
-                  <metadata>
-                        <title>Ensure that /var is of adequate size</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Because the yum package manager and other software uses /var to temporarily store 
-                              large ﬁles, ensure that it is of adequate size. For a modern, general-purpose system, 
-                              10GB should be adequate.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20004" version="1">
-                  <metadata>
-                        <title>Ensure that /var/log has its own partition or logical volum</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>System logs are stored in the /var/log directory. Ensure that it has its own partition or logical volume.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20004" comment="Check in /etc/fstab for a /var/log mount point" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20005" version="1">
-                  <metadata>
-                        <title>Ensure that /var/log/audit has its own partition or logical volume</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Audit logs are stored in the /var/log/audit directory. 
-                              Ensure that it has its own partition or logical volume.  Make absolutely certain 
-                              that it is large enough to store all audit logs that will be created by the auditing
-                              daemon.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20005" comment="Check in /etc/fstab for a /var/log/audit mount point" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20006" version="1">
-                  <metadata>
-                        <title>Ensure that /home has its own partition or logical volume</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>If user home directories will be stored locally, create a separate 
-                              partition for /home. If /home will be mounted from another system such as an NFS server, then 
-                              creating a separate partition is not necessary at this time, and the mountpoint can 
-                              instead be conﬁgured later.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20006" comment="Check in /etc/fstab for a /home mount point" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200065" version="1">
-                  <metadata>
-                        <title>Ensure that GPG Key for Fedora is installed</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The GPG key should be installed.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:200065" comment="check gpg signature" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20008" version="1">
-                  <metadata>
-                        <title>yum-updatesd service should be disabled</title>
-                        <reference ref_id="CCE-4218-4" source="CCE"/>
-                        <description>The yum-updatesd service should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check that yum-updatesd service is disabled" test_ref="oval:org.open-scap.f14:tst:20008"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20009" version="1">
-                  <metadata>
-                        <title>Automatic Update Retrieval should be scheduled with Cron</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Place the yum.cron script somewhere in /etc/cron.*/</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check for existence of yum.cron" test_ref="oval:org.open-scap.f14:tst:20009" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20010" version="1">
-                  <metadata>
-                        <title>Ensure gpgcheck is Globally Activated</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The gpgcheck option should be used to ensure that checking of an RPM package’s signature always occurs prior
-                              to its installation./</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of gpgcheck in /etc/yum.conf" test_ref="oval:org.open-scap.f14:tst:20010" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20011" version="1">
-                  <metadata>
-                        <title>Ensure Package Signature Checking is Not Disabled For Any Repos</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>To ensure that signature checking is not disabled for any repos, ensure that the following line DOES NOT
-                              appear in any repo conﬁguration ﬁles in /etc/yum.repos.d or elsewhere</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of gpgcheck=0 in /etc/yum.repos.d/*" test_ref="oval:org.open-scap.f14:tst:20011" negate="true" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20012" version="1">
-                  <metadata>
-                        <title>Ensure Repodata Signature Checking is Globally Activated</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The repo_gpgcheck option should be used to ensure that checking of a signature on repodata is performed prior
-                              to using it.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of repo_gpgcheck in /etc/yum.conf" test_ref="oval:org.open-scap.f14:tst:20012" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20013" version="1">
-                  <metadata>
-                        <title>Ensure Repodata Signature Checking is Not Disabled For Any Repos</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>To ensure that signature checking is not disabled for any repos, ensure that the following line DOES NOT
-                              appear in any repo conﬁguration ﬁles in /etc/yum.repos.d or elsewhere:</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of repo_gpgcheck=0 in /etc/yum.repos.d/*" test_ref="oval:org.open-scap.f14:tst:20013" negate="true" />
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20014" version="1">
-                  <metadata>
-                        <title>Install AIDE</title>
-                        <reference ref_id="CCE-4209-3" source="CCE"/>
-                        <description>The AIDE package should be installed</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20014"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20015" version="1">
-                  <metadata>
-                        <title>Run AIDE periodically</title>
-                        <reference ref_id="CCE-4209-3" source="CCE"/>
-                        <description>>Setup cron to run AIDE periodically using cron.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200155" version="1">
-                  <metadata>
-                        <title>Verify Package Integrity Using RPM</title>
-                        <reference ref_id="CCE-4209-3" source="CCE"/>
-                        <description>>Verify the integrity of installed packages by comparing the installed ﬁles with 
-                              information about the ﬁles taken from the package metadata stored in the RPM
-                              database.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20016" version="1">
-                  <metadata>
-                        <title>Add nodev Option to Non-Root Local Partitions</title>
-                        <reference ref_id="CCE-4249-9" source="CCE"/>
-                        <description>The nodev option should be enabled for all non-root partitions.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20016" comment="Check options for nodev in /etc/fstab for all non-root partitions" />
-                        <criterion test_ref="oval:org.open-scap.f14:tst:200162" comment="Check options for nodev in /etc/mtab for all non-root partitions" /> 
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20017" version="1">
-                  <metadata>
-                        <title>Add nodev Option to Removable Media Partitions</title>
-                        <reference ref_id="CCE-3522-0" source="CCE"/>
-                        <description>The nodev option should be enabled for all removable media.</description>
-                  </metadata>
-                  <criteria>
-                        <!-- TODO create a udev rule and make sure it is present -->
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20018" version="1">
-                  <metadata>
-                        <title>Add noexec Option to Removable Media Partitions</title>
-                        <reference ref_id="CCE-4275-4" source="CCE"/>
-                        <description>The noexec option should be enabled for all removable media.</description>
-                  </metadata>
-                  <criteria>
-                        <!-- TODO create a udev rule and make sure it is present -->
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20019" version="1">
-                  <metadata>
-                        <title>Add nosuid Option to Removable Media Partitions</title>
-                        <reference ref_id="CCE-4042-8" source="CCE"/>
-                        <description>The nosuid option should be enabled for all removable media.</description>
-                  </metadata>
-                  <criteria>
-                        <!-- TODO create a udev rule and make sure it is present -->
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20020" version="1">
-                  <metadata>
-                        <title>Restrict Console Device Access</title>
-                        <reference ref_id="CCE-3685-5" source="CCE"/>
-                        <description>Console device ownership should be restricted to root-only as appropriate.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check file /etc/security/console.perms.d/50-default.perms for &lt;console&gt; or &lt;xconsole&gt;" test_ref="oval:org.open-scap.f14:tst:20020"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20021" version="1">
-                  <metadata>
-                        <title>Disable Modprobe Loading of USB Storage Driver</title>
-                        <reference ref_id="CCE-4187-1" source="CCE"/>
-                        <description>The USB device support module should not be loaded</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check the usb storage support" test_ref="oval:org.open-scap.f14:tst:20021"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20022" version="1">
-                  <metadata>
-                        <title>Remove USB Storage Driver</title>
-                        <reference ref_id="CCE-4006-3" source="CCE"/>
-                        <description>The USB device support module should not be installed.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check if The USB device support module is not installed" test_ref="oval:org.open-scap.f14:tst:20022"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20023" version="1">
-                  <metadata>
-                        <title>Disable Kernel Support for USB via Bootloader Configuration</title>
-                        <reference ref_id="CCE-4173-1" source="CCE"/>
-                        <description>USB kernel support should be disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20023"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20024" version="1">
-                  <metadata>
-                        <title>Disable Booting from USB Devices in the BIOS</title>
-                        <reference ref_id="CCE-3944-6" source="CCE"/>
-                        <description>The ability to boot from USB devices should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20025" version="1">
-                  <metadata>
-                        <title>Disable the Automounter if Possible</title>
-                        <reference ref_id="CCE-4072-5" source="CCE"/>
-                        <description>The autofs service is disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20025"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20026" version="1">
-                  <metadata>
-                        <title>Disable GNOME Automounting if Possible</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>The GNOME automounter (gnome-volume-manager) should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20026" comment="XMLFile test"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20027" version="1">
-                  <metadata>
-                        <title>Disable Mounting of cramfs</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20027" comment="check for cramfs"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20028" version="1">
-                  <metadata>
-                        <title>Disable Mounting of freevxfs</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20028" comment="check for freevxfs"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20029" version="1">
-                  <metadata>
-                        <title>Disable Mounting of jffs2</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20029" comment="check for jffs2"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20030" version="1">
-                  <metadata>
-                        <title>Disable Mounting of hfs</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20030" comment="check for hfs"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20031" version="1">
-                  <metadata>
-                        <title>Disable Mounting of hfsplus</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20031" comment="check for hfsplus"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20032" version="1">
-                  <metadata>
-                        <title>Disable Mounting of squashfs</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20032" comment="check for squashfs"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20033" version="1">
-                  <metadata>
-                        <title>Disable Mounting of udf</title>
-                        <reference ref_id="CCE-4231-7" source="CCE"/>
-                        <description>prevents usage of this uncommon ﬁlesystems.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20033" comment="check for udf"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20034" version="1">
-                  <metadata>
-                        <title>Verify user who owns 'shadow' file</title>
-                        <reference ref_id="CCE-3918-0" source="CCE"/>
-                        <description>The /etc/shadow file should be owned by the appropriate user.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20034" comment="Check file ownership of /etc/shadow"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20035" version="1">
-                  <metadata>
-                        <title>Verify group who owns 'shadow' file</title>
-                        <reference ref_id="CCE-3988-3" source="CCE"/>
-                        <description>The /etc/shadow file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20035"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20036" version="1">
-                  <metadata>
-                        <title>Verify user who owns 'group' file</title>
-                        <reference ref_id="CCE-3276-3" source="CCE"/>
-                        <description>The /etc/group file should be owned by the appropriate user.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20036"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20037" version="1">
-                  <metadata>
-                        <title>Verify group who owns 'group' file</title>
-                        <reference ref_id="CCE-3883-6" source="CCE"/>
-                        <description>The /etc/group file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20037"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20038" version="1">
-                  <metadata>
-                        <title>Verify user who owns 'gshadow' file</title>
-                        <reference ref_id="CCE-4210-1" source="CCE"/>
-                        <description>The /etc/gshadow file should be owned by the appropriate user.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20038"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20039" version="1">
-                  <metadata>
-                        <title>Verify group who owns 'gshadow' file</title>
-                        <reference ref_id="CCE-4064-2" source="CCE"/>
-                        <description>The /etc/gshadow file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20039"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20040" version="1">
-                  <metadata>
-                        <title>Verify user who owns 'passwd' file</title>
-                        <reference ref_id="CCE-3958-6" source="CCE"/>
-                        <description>The /etc/passwd file should be owned by the appropriate user.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20040"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20041" version="1">
-                  <metadata>
-                        <title>Verify group who owns 'passwd' file</title>
-                        <reference ref_id="CCE-3495-9" source="CCE"/>
-                        <description>The /etc/passwd file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20041"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20042" version="1">
-                  <metadata>
-                        <title>Verify permissions on 'shadow' file</title>
-                        <reference ref_id="CCE-4130-1" source="CCE"/>
-                        <description>File permissions for /etc/shadow should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20042"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20043" version="1">
-                  <metadata>
-                        <title>Verify permissions on 'group' file</title>
-                        <reference ref_id="CCE-3967-7" source="CCE"/>
-                        <description>File permissions for /etc/group should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20043"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20044" version="1">
-                  <metadata>
-                        <title>Verify permissions on 'gshadow' file</title>
-                        <reference ref_id="CCE-3932-1" source="CCE"/>
-                        <description>File permissions for /etc/gshadow should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20044"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20045" version="1">
-                  <metadata>
-                        <title>Verify permissions on 'passwd' file</title>
-                        <reference ref_id="CCE-3566-7" source="CCE"/>
-                        <description>File permissions for /etc/passwd should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20045"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20046" version="1">
-                  <metadata>
-                        <title>Verify that All World-Writable Directories Have Sticky Bits Set</title>
-                        <reference ref_id="CCE-3399-3" source="CCE"/>
-                        <description>The sticky bit should be set for all world-writable directories.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check all directories and make sure they are either not world writable or if they are they have the sticky bit set" test_ref="oval:org.open-scap.f14:tst:20046"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20047" version="1">
-                  <metadata>
-                        <title>Find Unauthorized World-Writable Files</title>
-                        <reference ref_id="CCE-3795-2" source="CCE"/>
-                        <description>The world-write permission should be disabled for all files.</description>
-                  </metadata>
-                  <criteria>
-                        <!-- Need a way to add exceptions to a list somehow -->
-                        <criterion comment="Check all files and make sure they are not world writable" test_ref="oval:org.open-scap.f14:tst:20047" negate="true"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20048" version="1">
-                  <metadata>
-                        <title>Find Unauthorized SGID System Executables</title>
-                        <reference ref_id="CCE-4178-0" source="CCE"/>
-                        <description>The sgid bit should be not set for all executable files.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check that there are no unexpected files with sgid bit set" test_ref="oval:org.open-scap.f14:tst:20048"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20049" version="1">
-                  <metadata>
-                        <title>Find Unauthorized SUID System Executables</title>
-                        <reference ref_id="CCE-3324-1" source="CCE"/>
-                        <description>The suid bit should be not set for all files.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check that there are no unexpected files with suid bit set" test_ref="oval:org.open-scap.f14:tst:20049"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20050" version="1">
-                  <metadata>
-                        <title>Find files unowned by a user</title>
-                        <reference ref_id="CCE-4223-4" source="CCE"/>
-                        <description>All files should be owned by a user</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check all files and make sure they are owned by a user" test_ref="oval:org.open-scap.f14:tst:20050"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20051" version="1">
-                  <metadata>
-                        <title>Find files unowned by a group</title>
-                        <reference ref_id="CCE-3573-3" source="CCE"/>
-                        <description>All files should be owned by a group</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check all files and make sure they are owned by a group" test_ref="oval:org.open-scap.f14:tst:20051"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20052" version="1">
-                  <metadata>
-                        <title>Find world writable directories not owned by a system account</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>All world writable directories should be owned by a system user</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check all directories are not world writable or owned by a user with uid less than 500" test_ref="oval:org.open-scap.f14:tst:20052"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20053" version="1">
-                  <metadata>
-                        <title>Set Daemon umask</title>
-                        <reference ref_id="CCE-4220-0" source="CCE"/>
-                        <description>The daemon umask should be set as appropriate</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20053"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20055" version="1">
-                  <metadata>
-                        <title>Disable Core Dumps</title>
-                        <reference ref_id="CCE-4225-9" source="CCE"/>
-                        <description>Core dumps for all users should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Are core dumps disabled" test_ref="oval:org.open-scap.f14:tst:20055"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20056" version="1">
-                  <metadata>
-                        <title>Disable Core Dumps for setuid programs</title>
-                        <reference ref_id="CCE-4247-3" source="CCE"/>
-                        <description>Core dumps for setuid programs should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Are core dumps for setuid programs disabled?" test_ref="oval:org.open-scap.f14:tst:20056"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20057" version="1">
-                  <metadata>
-                        <title>Enable ExecShield</title>
-                        <reference ref_id="CCE-4168-1" source="CCE"/>
-                        <description>ExecShield should be enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Is execshield enabled" test_ref="oval:org.open-scap.f14:tst:20057"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20058" version="1">
-                  <metadata>
-                        <title>Enable ExecShield randomized placement of virtual memory regions</title>
-                        <reference ref_id="CCE-4146-7" source="CCE"/>
-                        <description>ExecShield randomized placement of virtual memory regions should be enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check ExecShield randomized placement of virtual memory regions" test_ref="oval:org.open-scap.f14:tst:20058"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20060" version="1">
-                  <metadata>
-                        <title>Enable XD/NX processor support in the BIOS</title>
-                        <reference ref_id="CCE-4177-2" source="CCE"/>
-                        <description>The XD/NX processor feature should be enabled in the BIOS</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:20060"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20061" version="1">
-                  <metadata>
-                        <title>Restrict Root Logins to System Console</title>
-                        <reference ref_id="CCE-3820-8" source="CCE"/>
-                        <description>Logins through the specified virtual console interface should be enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20061"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20062" version="1">
-                  <metadata>
-                        <title>Restrict Root Logins to System Console</title>
-                        <reference ref_id="CCE-3485-0" source="CCE"/>
-                        <description>Logins through the specified virtual console device should be enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20062"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20063" version="1">
-                  <metadata>
-                        <title>Restrict Root Logins to System Console</title>
-                        <reference ref_id="CCE-4111-1" source="CCE"/>
-                        <description>Logins through the primary console device should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20063"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20064" version="1">
-                  <metadata>
-                        <title>Restrict Root Logins to System Console</title>
-                        <reference ref_id="CCE-4256-4" source="CCE"/>
-                        <description>Login prompts on serial ports should be disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20064"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20065" version="1">
-                  <metadata>
-                        <title>Limit su Access to the wheel group</title>
-                        <description>The wheel group should exist</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Does wheel group exist" test_ref="oval:org.open-scap.f14:tst:20065"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20066" version="1">
-                  <metadata>
-                        <title>Limit command Access to the Root Account</title>
-                        <description>Command access to the root account should be restricted to the wheel group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20066"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20067" version="1">
-                  <metadata>
-                        <title>Configure sudo to Improve Auditing of Root Access</title>
-                        <reference ref_id="CCE-4044-4" source="CCE"/>
-                        <description>Sudo privileges should be granted to the wheel group</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20067"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20068" version="1">
-                  <metadata>
-                        <title>Block Shell and Login Access for Non-Root System Accounts</title>
-                        <reference ref_id="CCE-3987-5" source="CCE"/>
-                        <description>Login access to non-root system accounts should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check /etc/passwd for /sbin/nologin on non root system accounts" test_ref="oval:org.open-scap.f14:tst:20068" negate="true"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20069" version="1">
-                  <metadata>
-                        <title>Verify that No Accounts Have Empty Password Fields</title>
-                        <reference ref_id="CCE-4238-2" source="CCE"/>
-                        <description>Login access to accounts without passwords should be disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20069"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200695" version="1">
-                  <metadata>
-                        <title>Verify that All Account Password Hashes are Shadowed</title>
-                        <reference ref_id="CCE-4238-2" source="CCE"/>
-                        <description>Check that passwords are shadowed</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:200695"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20070" version="1">
-                  <metadata>
-                        <title>Verify that No Non-Root Accounts Have UID 0</title>
-                        <reference ref_id="CCE-4009-7" source="CCE"/>
-                        <description>Anonymous root logins are disabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20070"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20071" version="1">
-                  <metadata>
-                        <title>Set Password Expiration Parameters</title>
-                        <reference ref_id="CCE-4154-1" source="CCE"/>
-                        <description>The password minimum length should be set appropriately</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20071"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20072" version="1">
-                  <metadata>
-                        <title>Set Password Expiration Parameters</title>
-                        <reference ref_id="CCE-4180-6" source="CCE"/>
-                        <description>The "minimum password age" policy should meet minimum requirements. </description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20072"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20073" version="1">
-                  <metadata>
-                        <title>Set Password Expiration Parameters</title>
-                        <reference ref_id="CCE-4092-3" source="CCE"/>
-                        <description>The "maximum password age" policy should meet minimum requirements. </description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20073"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20074" version="1">
-                  <metadata>
-                        <title>Set Password Expiration Parameters</title>
-                        <reference ref_id="CCE-4097-2" source="CCE"/>
-                        <description>The password warn age should be set appropriately</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20074"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20075" version="1">
-                  <metadata>
-                        <title>Remove Legacy + Entries from Password Files</title>
-                        <description>NIS file inclusions should be set appropriately in the /etc/shadow file</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20075"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20076" version="1">
-                  <metadata>
-                        <title>Remove Legacy + Entries from Password Files</title>
-                        <description>NIS file inclusions should be set appropriately in the /etc/group file</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20076"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20077" version="1">
-                  <metadata>
-                        <title>Remove Legacy + Entries from Password Files</title>
-                        <reference ref_id="CCE-4114-5" source="CCE"/>
-                        <description>NIS file inclusions should be set appropriately in the /etc/passwd file</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20077"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20078" version="1">
-                  <metadata>
-                        <title>Set Password Quality Requirements</title>
-                        <reference ref_id="CCE-3762-2" source="CCE"/>
-                        <description>The password strength should meet minimum requirements using pam_cracklib</description>
-                  </metadata>
-                  <criteria operator="AND" comment="Conditions for retry, minlen, dcredit, ucredit, ocredit, lcredit and difok are satisfied">
-                        <criterion comment="Test retry" test_ref="oval:org.open-scap.f14:tst:200781"/>
-                        <criterion comment="Test minlen" test_ref="oval:org.open-scap.f14:tst:200782"/>
-                        <criterion comment="Test dcredit" test_ref="oval:org.open-scap.f14:tst:200783"/>
-                        <criterion comment="Test ucredit" test_ref="oval:org.open-scap.f14:tst:200784"/>
-                        <criterion comment="Test ocredit" test_ref="oval:org.open-scap.f14:tst:200785"/>
-                        <criterion comment="Test lcredit" test_ref="oval:org.open-scap.f14:tst:200786"/>
-                        <criterion comment="Test difok" test_ref="oval:org.open-scap.f14:tst:200787"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20079" version="1">
-                  <metadata>
-                        <title>Set Password Quality Requirements</title>
-                        <reference ref_id="CCE-3762-2" source="CCE"/>
-                        <description>The password strength should meet minimum requirements using pam_passwdqc</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:20079"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20080" version="1">
-                  <metadata>
-                        <title>Set Lockouts for Failed Password Attempts</title>
-                        <reference ref_id="CCE-3410-8" source="CCE"/>
-                        <description>The "account lockout threshold" policy should meet minimum requirements.</description>
-                  </metadata>
-                  <criteria>
-                        <criteria comment="check that pam_tally2 authorization module is configured correctly" operator="OR">
-                            <criteria comment="unlock_time is not present">
-                                <criterion comment="check unlock_time is 0" test_ref="oval:org.open-scap.f14:tst:200800"/>
-                                <criteria comment="check that pam_tally2 authorization module is configured correctly" operator="OR">
-                                    <criterion comment="check system-auth pam_tally2 excluding unlock_time" test_ref="oval:org.open-scap.f14:tst:2008011"/>
-                                    <criterion comment="check system-auth pam_tally2 excluding unlock_time" test_ref="oval:org.open-scap.f14:tst:2008012"/>
-                                </criteria>
-                            </criteria>
-                            <criteria comment="unlock_time is present">
-                                <criterion comment="check unlock_time is not 0 (by checking for zero and negating)" test_ref="oval:org.open-scap.f14:tst:200800" negate="true"/>
-                                <criteria comment="check that pam_tally2 authorization module is configured correctly" operator="OR">
-                                    <criterion comment="check system-auth pam_tally2 including unlock_time" test_ref="oval:org.open-scap.f14:tst:2008011"/>
-                                    <criterion comment="check system-auth pam_tally2 including unlock_time" test_ref="oval:org.open-scap.f14:tst:2008012"/>
-                                    <criterion comment="check system-auth pam_tally2 including unlock_time" test_ref="oval:org.open-scap.f14:tst:2008013"/>
-                                </criteria>
-                            </criteria>
-                        </criteria>
-                        <criterion comment="check that pam_tally2 account module is configured correctly" test_ref="oval:org.open-scap.f14:tst:200803"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200805" version="1">
-                  <metadata>
-                        <title>Do not leak information on authorization failure</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Authorization failures should not alert attackers as to what went wrong.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub (use required instead of sufficient)" test_ref="oval:org.open-scap.f14:tst:200805"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200806" version="1">
-                  <metadata>
-                        <title>Do not log authorization failures and successes</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Remove pam_succeed_if module with quiet option and remove auth pam_deny line.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub (check that pam_succeed_if is not there with quiet option)" test_ref="oval:org.open-scap.f14:tst:2008061"/>
-                        <criterion comment="Unknown test stub (check that pam_deny is not there)" test_ref="oval:org.open-scap.f14:tst:2008062"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20081" version="1">
-                  <metadata>
-                        <title>Restrict Execution of userhelper to Console Users</title>
-                        <reference ref_id="CCE-4185-5" source="CCE"/>
-                        <description>The /usr/sbin/userhelper file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria operator="AND">
-                        <criterion comment="test group owner of /usr/sbin/userhelper file" test_ref="oval:org.open-scap.f14:tst:20081"/>
-                        <criterion comment="test group existence" test_ref="oval:org.open-scap.f14:tst:200811"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20082" version="1">
-                  <metadata>
-                        <title>Restrict Execution of userhelper to Console Users</title>
-                        <reference ref_id="CCE-3952-9" source="CCE"/>
-                        <description>File permissions for /usr/sbin/userhelper should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check permissions of /usr/sbin/userhelper file" test_ref="oval:org.open-scap.f14:tst:20082"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20083" version="1">
-                  <metadata>
-                        <title>Set Password hashing algorithm</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The password hashing algorithm should be set correctly.</description>
-                  </metadata>
-                  <criteria operator="ONE">
-                        <criteria>
-                              <criterion comment="check that desired hashing algorithm is MD5" test_ref="oval:org.open-scap.f14:tst:200831"/>
-                              <criterion comment="Make sure /etc/login.defs is set to use md5" test_ref="oval:org.open-scap.f14:tst:200832"/>
-                        </criteria>
-                        <criteria>
-                              <criterion comment="check that desired hashing algorithm is not MD5 (negate previous test)" test_ref="oval:org.open-scap.f14:tst:200831" negate="true"/>
-                              <criterion comment="Make sure /etc/login.defs is not set to use md5 (negate previous test)" test_ref="oval:org.open-scap.f14:tst:200832" negate="true"/>
-                              <criterion comment="Make sure /etc/login.defs is set to use ENCRYPT_METHOD" test_ref="oval:org.open-scap.f14:tst:200833"/>
-                              <criterion comment="Make sure /etc/pam.d/system-auth is set to use hashing algorithm" test_ref="oval:org.open-scap.f14:tst:200834"/>
-                              <criterion comment="Make sure /etc/libuser.conf is set to use hashing algorithm as crypt_style" test_ref="oval:org.open-scap.f14:tst:200835"/>
-                        </criteria>
-      		</criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20084" version="1">
-                  <metadata>
-                        <title>Limit password reuse</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The passwords to remember should be set correctly.</description>
-                  </metadata>
-                  <criteria operator="ONE">
-                        <criteria>
-                              <criterion test_ref="oval:org.open-scap.f14:tst:200841" comment="remember parameter is set to 0"/>
-                        </criteria>
-                        <criteria>
-                              <criterion test_ref="oval:org.open-scap.f14:tst:200841" comment="remember parameter is set to 0 (note this is negated)" negate="true"/>
-                              <criterion comment="check the /etc/pam.d/system-auth password module has a remember option set appropriately" test_ref="oval:org.open-scap.f14:tst:200842"/>
-                        </criteria>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20085" version="1">
-                  <metadata>
-                        <title>Ensure that No Dangerous Directories Exist in Root's Path</title>
-                        <reference ref_id="CCE-3301-9" source="CCE"/>
-                        <description>The PATH variable should be set correctly for user root</description>
-                  </metadata>
-                  <criteria operator="OR" negate="true" comment="(not OR) means PATH does not start with : or . AND PATH does not start with : or . AND PATH does not contain :: or :.:">
-                        <criterion comment="PATH starts with : or ." test_ref="oval:org.open-scap.f14:tst:200851"/>
-                        <criterion comment="PATH ends with : or ." test_ref="oval:org.open-scap.f14:tst:200852"/>
-                        <criterion comment="PATH contains :: or :.:" test_ref="oval:org.open-scap.f14:tst:200853"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:200855" version="1">
-                  <metadata>
-                        <title>Write permissions are disabled for group and other in all directories in Root's Path</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Check each directory in root's path and make use it does not grant write permission to group and other</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check that write permission to group and other in root's path is denied" test_ref="oval:org.open-scap.f14:tst:200855"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20086" version="1">
-                  <metadata>
-                        <title>Ensure that User Home Directories are not Group-Writable or World-Readable</title>
-                        <reference ref_id="CCE-4090-7" source="CCE"/>
-                        <description>File permissions should be set correctly for the home directories for all user accounts.</description>
-                  </metadata>
-                  <criteria comment="Both criterion are negated to get desired result">
-                        <criterion comment="Home directories are group writable" test_ref="oval:org.open-scap.f14:tst:200861"/>
-                        <criterion comment="Home directories are world readable" test_ref="oval:org.open-scap.f14:tst:200862"/> 
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20087" version="1">
-                  <metadata>
-                        <title>Ensure that Users Have Sensible Umask Values set for bash</title>
-                        <reference ref_id="CCE-3844-8" source="CCE"/>
-                        <description>The default umask for all users should be set correctly for the bash shell</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20087"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20088" version="1">
-                  <metadata>
-                        <title>Ensure that Users Have Sensible Umask Values set for csh</title>
-                        <reference ref_id="CCE-4227-5" source="CCE"/>
-                        <description>The default umask for all users should be set correctly for the csh shell</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20088"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20091" version="1">
-                  <metadata>
-                        <title>Check for existance of .netrc file</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>No user directory should contain file .netrc</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20092" version="1">
-                  <metadata>
-                        <title>Set Boot Loader Password</title>
-                        <reference ref_id="CCE-4144-2" source="CCE"/>
-                        <description>The /etc/grub.conf file should be owned by the appropriate user.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20092"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20093" version="1">
-                  <metadata>
-                        <title>Set Boot Loader Password</title>
-                        <reference ref_id="CCE-4197-0" source="CCE"/>
-                        <description>The /etc/grub.conf file should be owned by the appropriate group.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20093"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20094" version="1">
-                  <metadata>
-                        <title>Set Boot Loader Password</title>
-                        <reference ref_id="CCE-3923-0" source="CCE"/>
-                        <description>File permissions for /etc/grub.conf should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20094"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20095" version="1">
-                  <metadata>
-                        <title>Set Boot Loader Password</title>
-                        <reference ref_id="CCE-3818-2" source="CCE"/>
-                        <description>The grub boot loader should have password protection enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20095"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20096" version="1">
-                  <metadata>
-                        <title>Require Authentication for Single-User Mode</title>
-                        <reference ref_id="CCE-4241-6" source="CCE"/>
-                        <description>The requirement for a password to boot into single-user mode should be configured correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20096"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20097" version="1">
-                  <metadata>
-                        <title>Disable Interactive Boot</title>
-                        <reference ref_id="CCE-4245-7" source="CCE"/>
-                        <description>The ability for users to perform interactive startups should be disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20097"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20098" version="1">
-                  <metadata>
-                        <title>Implement Inactivity Time-out for Login Shells</title>
-                        <reference ref_id="CCE-3689-7" source="CCE"/>
-                        <description>The idle time-out value for the default /bin/tcsh shell should meet the minimum requirements.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20098"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20099" version="1">
-                  <metadata>
-                        <title>Implement Inactivity Time-out for Login Shells</title>
-                        <reference ref_id="CCE-3707-7" source="CCE"/>
-                        <description>The idle time-out value for the default /bin/bash shell should meet the minimum requirements.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:20099"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20100" version="1">
-                  <metadata>
-                        <title>Configure GUI Screen Locking</title>
-                        <reference ref_id="CCE-3315-9" source="CCE"/>
-                        <description>The allowed period of inactivity gnome desktop lockout should be configured correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of idle_delay in GCONF" test_ref="oval:org.open-scap.f14:tst:20100"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:201005" version="1">
-                  <metadata>
-                        <title>Implement idle activation of screen saver</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Idle activation of the screen saver should be enabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of idle_activation_enabled in GCONF" test_ref="oval:org.open-scap.f14:tst:201005"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:201006" version="1">
-                  <metadata>
-                        <title>Implement idle activation of screen lock</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Idle activation of the screen lock should be enabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="check value of lock_enabled in GCONF" test_ref="oval:org.open-scap.f14:tst:201006"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:201007" version="1">
-                  <metadata>
-                        <title>Implement blank screen saver</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The screen saver should be blank.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:201007"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20101" version="1">
-                  <metadata>
-                        <title>Configure GUI Screen Locking</title>
-                        <reference ref_id="CCE-3910-7" source="CCE"/>
-                        <description>The vlock package should be installed</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20101"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20102" version="1">
-                  <metadata>
-                        <title>Modify the System Login Banner</title>
-                        <reference ref_id="CCE-4060-0" source="CCE"/>
-                        <description>The system login banner text should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="/etc/issue is set appropriately" test_ref="oval:org.open-scap.f14:tst:20102"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20103" version="1">
-                  <metadata>
-                        <title>Implement a GUI Warning Banner</title>
-                        <reference ref_id="CCE-4188-9" source="CCE"/>
-                        <description>The direct gnome login warning banner should be set correctly.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Check that the GConf setting for the login banner is set correctly" test_ref="oval:org.open-scap.f14:tst:20103"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:201035" version="1">
-                  <metadata>
-                        <title>Ensure SELinux is Properly Enabled</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Check output of /usr/sbin/sestatus.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20104" version="1">
-                  <metadata>
-                        <title>Enable SELinux</title>
-                        <reference ref_id="CCE-3977-6" source="CCE"/>
-                        <description>SELinux should be enabled</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20104"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20105" version="1">
-                  <metadata>
-                        <title>Enable SELinux enforcing</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>SELinux should be enforcing in the bootloader</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20105"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20106" version="1">
-                  <metadata>
-                        <title>Enable SELinux state</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>The SELinux state should be set appropriately.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20106"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20107" version="1">
-                  <metadata>
-                        <title>Enable SELinux</title>
-                        <reference ref_id="CCE-3624-4" source="CCE"/>
-                        <description>The SELinux policy should be set appropriately.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion test_ref="oval:org.open-scap.f14:tst:20107"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20108" version="1">
-                  <metadata>
-                        <title>Disable and Remove SETroubleshoot if Possible</title>
-                        <reference ref_id="CCE-4148-3" source="CCE"/>
-                        <description>The setroubleshoot package should be uninstalled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20108"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20109" version="1">
-                  <metadata>
-                        <title>Disable and Remove SETroubleshoot if Possible</title>
-                        <reference ref_id="CCE-4254-9" source="CCE"/>
-                        <description>The setroubleshoot service should be disabled.</description>
-                  </metadata>
-                  <criteria operator="OR" comment="The setroubleshoot package should be uninstalled or conditions are met">
-                        <extend_definition definition_ref="oval:org.open-scap.f14:def:20108" comment="setroubleshoot is not installed"/>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20109"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20110" version="1">
-                  <metadata>
-                        <title>Disable MCS Translation Service (mcstrans) if Possible</title>
-                        <reference ref_id="CCE-3668-1" source="CCE"/>
-                        <description>The mcstrans service should be disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20110"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:201115" version="1">
-                  <metadata>
-                        <title>Check for Unconfined Daemons</title>
-                        <reference ref_id="TBD" source="CCE"/>
-                        <description>Check for device ﬁle that is not labeled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Unknown test stub" test_ref="oval:org.open-scap.f14:tst:22"/>
-                  </criteria>
-            </definition>
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20111" version="1">
-                  <metadata>
-                        <title>Restorecon Service (restorecond)</title>
-                        <reference ref_id="CCE-4129-3" source="CCE"/>
-                        <description>The restorecond service should be disabled.</description>
-                  </metadata>
-                  <criteria>
-                        <criterion comment="Conditions are satisfied" test_ref="oval:org.open-scap.f14:tst:20111"/>
-                  </criteria>
-            </definition>
-
-	    <!-- BEGIN -->
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20112" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts Only</title>
-                        <reference ref_id="CCE-4151-7" source="CCE"/>
-                        <description>The default setting for sending ICMP redirects should be disabled for network interfaces.</description>
-			<tested_by name="dkopecek" time="1282130094"/>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201120"/>
-		    <criteria operator="OR">
-                        <criterion test_ref="oval:org.open-scap.f14:tst:201121" negate="true"/>
-			<criterion test_ref="oval:org.open-scap.f14:tst:201122"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-	    <!-- ^^^ ok ^^^ -->
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20113" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts Only</title>
-                        <reference ref_id="CCE-4155-8" source="CCE"/>
-                        <description>Sending ICMP redirects should be disabled for all interfaces.</description>
-			<tested_by name="dkopecek" time="1282130094"/>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201130"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201131" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201132"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20114" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts Only</title>
-                        <reference ref_id="CCE-3561-8" source="CCE"/>
-                        <description>IP forwarding should be disabled.</description>
-			<tested_by name="dkopecek" time="1282130094"/>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201140"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201141" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201142"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20115" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts and Routers</title>
-                        <reference ref_id="CCE-4236-6" source="CCE"/>
-                        <description>Accepting source routed packets should be enabled or disabled for all interfaces as appropriate.</description>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201150"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201151" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201152"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20116" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts and Routers</title>
-                        <reference ref_id="CCE-4217-6" source="CCE"/>
-                        <description>Accepting ICMP redirects should be enabled or disabled for all interfaces as appropriate.</description>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201160"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201161" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201162"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20117" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts and Routers</title>
-                        <reference ref_id="CCE-3472-8" source="CCE"/>
-                        <description>Accepting "secure" ICMP redirects (those from gateways listed in the default gateways list) should be enabled or disabled for all interfaces as appropriate.</description>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201170"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201171" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201172"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20118" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts and Routers</title>
-                        <reference ref_id="CCE-4320-8" source="CCE"/>
-                        <description>Logging of "martian" packets (those with impossible addresses) should be enabled or disabled for all interfaces as appropriate.</description>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201180"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201181" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201182"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20119" version="1">
-                  <metadata>
-                        <title>Network Parameters for Hosts and Routers</title>
-                        <reference ref_id="CCE-4091-5" source="CCE"/>
-                        <description>The default setting for accepting source routed packets should be enabled or disabled for network interfaces as appropriate.</description>
-                  </metadata>
-                  <criteria operator="AND">
-		    <criterion test_ref="oval:org.open-scap.f14:tst:201190"/>
-		    <criteria operator="OR">
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201191" negate="true"/>
-		      <criterion test_ref="oval:org.open-scap.f14:tst:201192"/>
-		    </criteria>
-                  </criteria>
-            </definition>
-
-            <definition class="compliance" id="oval:org.open-scap.f14:def:20120" version="1">
-                  <metadata>
-                        <t