diff --git a/ckanext/scheming/fanstatic/scheming-upload.js b/ckanext/scheming/fanstatic/scheming-upload.js new file mode 100644 index 00000000..7664c017 --- /dev/null +++ b/ckanext/scheming/fanstatic/scheming-upload.js @@ -0,0 +1,8 @@ +$(document).ready(function(){ + setTimeout(function(){ + $( "div[data-module-field_upload|='rtti_upload_doc']>div.form-group>label" ).text( $("div[data-module-field_upload|='rtti_upload_doc']" ).attr("data-module-upload_label") ); + $( "div[data-module-field_upload|='srti_upload_doc']>div.form-group>label" ).text( $("div[data-module-field_upload|='srti_upload_doc']" ).attr("data-module-upload_label") ); + $( "div[data-module-field_upload|='sstp_upload_doc']>div.form-group>label" ).text( $("div[data-module-field_upload|='sstp_upload_doc']" ).attr("data-module-upload_label") ); + $( "div[data-module-field_upload|='image_upload']>div.form-group>label" ).text( $("div[data-module-field_upload|='image_upload']" ).attr("data-module-upload_label") ); + },1000); + }); \ No newline at end of file diff --git a/ckanext/scheming/plugins.py b/ckanext/scheming/plugins.py index 78c79d37..c86a2e46 100644 --- a/ckanext/scheming/plugins.py +++ b/ckanext/scheming/plugins.py @@ -156,6 +156,7 @@ def update_config(self, config): self._store_instance(self) self._add_template_directory(config) self._load_presets(config) + t.add_resource('fanstatic', 'scheming') self._is_fallback = asbool(config.get(self.FALLBACK_OPTION, False)) @@ -166,6 +167,7 @@ def update_config(self, config): ) self._expanded_schemas = _expand_schemas(self._schemas) + def is_fallback(self): return self._is_fallback diff --git a/ckanext/scheming/templates/base.html b/ckanext/scheming/templates/base.html new file mode 100644 index 00000000..1d55fc0d --- /dev/null +++ b/ckanext/scheming/templates/base.html @@ -0,0 +1,7 @@ +{% ckan_extends %} + +{% block styles %} + {{ super() }} + + {% resource 'scheming/scheming-upload.js' %} +{% endblock %} \ No newline at end of file diff --git a/ckanext/scheming/templates/scheming/form_snippets/doc_upload.html b/ckanext/scheming/templates/scheming/form_snippets/doc_upload.html index 3951c004..b6cf3708 100644 --- a/ckanext/scheming/templates/scheming/form_snippets/doc_upload.html +++ b/ckanext/scheming/templates/scheming/form_snippets/doc_upload.html @@ -1,13 +1,61 @@ {% import 'macros/form.html' as form %} -{%- set is_upload = (data.url_type == 'upload') -%} -{{ form.image_upload( +{% macro doc_upload(data, errors, field_url='image_url', field_upload='image_upload', field_clear='clear_upload', + is_url=false, is_upload=false, is_upload_enabled=false, placeholder=false, + url_label='', upload_label='', field_name='image_url') %} + {% set placeholder = placeholder if placeholder else false %} + {% set url_label = url_label or _('Image URL') %} + {% set upload_label = upload_label or '' %} + {% set previous_upload = data['previous_upload'] %} + + {% if is_upload_enabled %} + + +
+ {% endif %} + + + {{ form.input(field_url, label=url_label, id='field-image-url', type='url', placeholder=placeholder, value=data.get(field_url), error=errors.get(field_url), classes=['control-full']) }} + + + {% if is_upload_enabled %} + {{ form.input(field_upload, label=upload_label, id='field-image-upload', type='file', placeholder='', value='', error='', classes=['control-full']) }} + {% if is_upload %} + {{ form.checkbox(field_clear, label=_('Clear Upload'), id='field-clear-upload', value='true', error='', classes=['control-full']) }} + {% endif %} + {% endif %} + + {% if is_upload_enabled %}
{% endif %} + + {% endmacro %} + + +{% if 'rtti_doc_document_upload' in data and field.field_name == 'rtti_doc_document_upload' %} + {%- set is_upload = (data.rtti_doc_document_upload != '') -%} +{% endif %} +{% if 'srti_doc_document_upload' in data and field.field_name == 'srti_doc_document_upload' %} + {%- set is_upload = (data.srti_doc_document_upload != '') -%} +{% endif %} +{% if 'sstp_doc_document_upload' in data and field.field_name == 'sstp_doc_document_upload' %} + {%- set is_upload = (data.sstp_doc_document_upload != '') -%} +{% endif %} + +{{ doc_upload( data, errors, field_url=field.field_name, field_upload=field.upload_field, field_clear=field.upload_clear, - is_upload_enabled=h.uploads_enabled(), + is_upload_enabled=true, is_url=false, is_upload=is_upload, upload_label=h.scheming_language_text(field.upload_label), @@ -15,5 +63,6 @@ placeholder=field.form_placeholder ) }} -{# image_upload macro doesn't support call #} +{# doc_upload macro doesn't support call #} {%- snippet 'scheming/form_snippets/help_text.html', field=field -%} + diff --git a/venv/.Python b/venv/.Python new file mode 120000 index 00000000..cc24a1e9 --- /dev/null +++ b/venv/.Python @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/Python \ No newline at end of file diff --git a/venv/bin/activate b/venv/bin/activate new file mode 100644 index 00000000..0f738249 --- /dev/null +++ b/venv/bin/activate @@ -0,0 +1,78 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + unset -f pydoc >/dev/null 2>&1 + + # reset old environment variables + # ! [ -z ${VAR+_} ] returns true if VAR is declared at all + if ! [ -z "${_OLD_VIRTUAL_PATH+_}" ] ; then + PATH="$_OLD_VIRTUAL_PATH" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if ! [ -z "${_OLD_VIRTUAL_PYTHONHOME+_}" ] ; then + PYTHONHOME="$_OLD_VIRTUAL_PYTHONHOME" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then + hash -r 2>/dev/null + fi + + if ! [ -z "${_OLD_VIRTUAL_PS1+_}" ] ; then + PS1="$_OLD_VIRTUAL_PS1" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + if [ ! "${1-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/Users/bart/Projects/ckan/ckanext-scheming/venv" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +if ! [ -z "${PYTHONHOME+_}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="$PYTHONHOME" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1-}" + if [ "x" != x ] ; then + PS1="${PS1-}" + else + PS1="(`basename \"$VIRTUAL_ENV\"`) ${PS1-}" + fi + export PS1 +fi + +# Make sure to unalias pydoc if it's already there +alias pydoc 2>/dev/null >/dev/null && unalias pydoc || true + +pydoc () { + python -m pydoc "$@" +} + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH-}" ] || [ -n "${ZSH_VERSION-}" ] ; then + hash -r 2>/dev/null +fi diff --git a/venv/bin/activate.csh b/venv/bin/activate.csh new file mode 100644 index 00000000..bf526cb8 --- /dev/null +++ b/venv/bin/activate.csh @@ -0,0 +1,42 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . + +set newline='\ +' + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH:q" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT:q" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate && unalias pydoc' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/Users/bart/Projects/ckan/ckanext-scheming/venv" + +set _OLD_VIRTUAL_PATH="$PATH:q" +setenv PATH "$VIRTUAL_ENV:q/bin:$PATH:q" + + + +if ("" != "") then + set env_name = "" +else + set env_name = "$VIRTUAL_ENV:t:q" +endif + +# Could be in a non-interactive environment, +# in which case, $prompt is undefined and we wouldn't +# care about the prompt anyway. +if ( $?prompt ) then + set _OLD_VIRTUAL_PROMPT="$prompt:q" +if ( "$prompt:q" =~ *"$newline:q"* ) then + : +else + set prompt = "[$env_name:q] $prompt:q" +endif +endif + +unset env_name + +alias pydoc python -m pydoc + +rehash diff --git a/venv/bin/activate.fish b/venv/bin/activate.fish new file mode 100644 index 00000000..10f3d817 --- /dev/null +++ b/venv/bin/activate.fish @@ -0,0 +1,101 @@ +# This file must be used using `source bin/activate.fish` *within a running fish ( http://fishshell.com ) session*. +# Do not run it directly. + +function _bashify_path -d "Converts a fish path to something bash can recognize" + set fishy_path $argv + set bashy_path $fishy_path[1] + for path_part in $fishy_path[2..-1] + set bashy_path "$bashy_path:$path_part" + end + echo $bashy_path +end + +function _fishify_path -d "Converts a bash path to something fish can recognize" + echo $argv | tr ':' '\n' +end + +function deactivate -d 'Exit virtualenv mode and return to the normal environment.' + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + # https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling + if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 + set -gx PATH (_fishify_path $_OLD_VIRTUAL_PATH) + else + set -gx PATH $_OLD_VIRTUAL_PATH + end + set -e _OLD_VIRTUAL_PATH + end + + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + # Set an empty local `$fish_function_path` to allow the removal of `fish_prompt` using `functions -e`. + set -l fish_function_path + + # Erase virtualenv's `fish_prompt` and restore the original. + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + set -e _OLD_FISH_PROMPT_OVERRIDE + end + + set -e VIRTUAL_ENV + + if test "$argv[1]" != 'nondestructive' + # Self-destruct! + functions -e pydoc + functions -e deactivate + functions -e _bashify_path + functions -e _fishify_path + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/Users/bart/Projects/ckan/ckanext-scheming/venv" + +# https://github.com/fish-shell/fish-shell/issues/436 altered PATH handling +if test (echo $FISH_VERSION | tr "." "\n")[1] -lt 3 + set -gx _OLD_VIRTUAL_PATH (_bashify_path $PATH) +else + set -gx _OLD_VIRTUAL_PATH $PATH +end +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset `$PYTHONHOME` if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +function pydoc + python -m pydoc $argv +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # Copy the current `fish_prompt` function as `_old_fish_prompt`. + functions -c fish_prompt _old_fish_prompt + + function fish_prompt + # Save the current $status, for fish_prompts that display it. + set -l old_status $status + + # Prompt override provided? + # If not, just prepend the environment name. + if test -n "" + printf '%s%s' "" (set_color normal) + else + printf '%s(%s) ' (set_color normal) (basename "$VIRTUAL_ENV") + end + + # Restore the original $status + echo "exit $old_status" | source + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" +end diff --git a/venv/bin/activate.ps1 b/venv/bin/activate.ps1 new file mode 100644 index 00000000..6d8ae2aa --- /dev/null +++ b/venv/bin/activate.ps1 @@ -0,0 +1,60 @@ +# This file must be dot sourced from PoSh; you cannot run it directly. Do this: . ./activate.ps1 + +$script:THIS_PATH = $myinvocation.mycommand.path +$script:BASE_DIR = split-path (resolve-path "$THIS_PATH/..") -Parent + +function global:deactivate([switch] $NonDestructive) +{ + if (test-path variable:_OLD_VIRTUAL_PATH) + { + $env:PATH = $variable:_OLD_VIRTUAL_PATH + remove-variable "_OLD_VIRTUAL_PATH" -scope global + } + + if (test-path function:_old_virtual_prompt) + { + $function:prompt = $function:_old_virtual_prompt + remove-item function:\_old_virtual_prompt + } + + if ($env:VIRTUAL_ENV) + { + $old_env = split-path $env:VIRTUAL_ENV -leaf + remove-item env:VIRTUAL_ENV -erroraction silentlycontinue + } + + if (!$NonDestructive) + { + # Self destruct! + remove-item function:deactivate + remove-item function:pydoc + } +} + +function global:pydoc +{ + python -m pydoc $args +} + +# unset irrelevant variables +deactivate -nondestructive + +$VIRTUAL_ENV = $BASE_DIR +$env:VIRTUAL_ENV = $VIRTUAL_ENV + +$global:_OLD_VIRTUAL_PATH = $env:PATH +$env:PATH = "$env:VIRTUAL_ENV/bin:" + $env:PATH +if (!$env:VIRTUAL_ENV_DISABLE_PROMPT) +{ + function global:_old_virtual_prompt + { + "" + } + $function:_old_virtual_prompt = $function:prompt + function global:prompt + { + # Add a prefix to the current prompt, but don't discard it. + write-host "($( split-path $env:VIRTUAL_ENV -leaf )) " -nonewline + & $function:_old_virtual_prompt + } +} diff --git a/venv/bin/activate_this.py b/venv/bin/activate_this.py new file mode 100644 index 00000000..59b5d724 --- /dev/null +++ b/venv/bin/activate_this.py @@ -0,0 +1,46 @@ +"""Activate virtualenv for current interpreter: + +Use exec(open(this_file).read(), {'__file__': this_file}). + +This can be used when you must use an existing Python interpreter, not the virtualenv bin/python. +""" +import os +import site +import sys + +try: + __file__ +except NameError: + raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))") + +# prepend bin to PATH (this file is inside the bin directory) +bin_dir = os.path.dirname(os.path.abspath(__file__)) +os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep)) + +base = os.path.dirname(bin_dir) + +# virtual env is right above bin directory +os.environ["VIRTUAL_ENV"] = base + +# add the virtual environments site-package to the host python import mechanism +IS_PYPY = hasattr(sys, "pypy_version_info") +IS_JYTHON = sys.platform.startswith("java") +if IS_JYTHON: + site_packages = os.path.join(base, "Lib", "site-packages") +elif IS_PYPY: + site_packages = os.path.join(base, "site-packages") +else: + IS_WIN = sys.platform == "win32" + if IS_WIN: + site_packages = os.path.join(base, "Lib", "site-packages") + else: + site_packages = os.path.join(base, "lib", "python{}".format(sys.version[:3]), "site-packages") + +prev = set(sys.path) +site.addsitedir(site_packages) +sys.real_prefix = sys.prefix +sys.prefix = base + +# Move the added items to the front of the path, in place +new = list(sys.path) +sys.path[:] = [i for i in new if i not in prev] + [i for i in new if i in prev] diff --git a/venv/bin/chardetect b/venv/bin/chardetect new file mode 100755 index 00000000..e22885d6 --- /dev/null +++ b/venv/bin/chardetect @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from chardet.cli.chardetect import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/ckan-admin b/venv/bin/ckan-admin new file mode 100755 index 00000000..7188460c --- /dev/null +++ b/venv/bin/ckan-admin @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from bin.ckan_admin import Command + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(Command()) diff --git a/venv/bin/ckanapi b/venv/bin/ckanapi new file mode 100755 index 00000000..05c33333 --- /dev/null +++ b/venv/bin/ckanapi @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from ckanapi.cli.main import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/easy_install b/venv/bin/easy_install new file mode 100755 index 00000000..665e17ae --- /dev/null +++ b/venv/bin/easy_install @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/easy_install-2.7 b/venv/bin/easy_install-2.7 new file mode 100755 index 00000000..665e17ae --- /dev/null +++ b/venv/bin/easy_install-2.7 @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from setuptools.command.easy_install import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/pip b/venv/bin/pip new file mode 100755 index 00000000..b32c7886 --- /dev/null +++ b/venv/bin/pip @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/pip2 b/venv/bin/pip2 new file mode 100755 index 00000000..b32c7886 --- /dev/null +++ b/venv/bin/pip2 @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/pip2.7 b/venv/bin/pip2.7 new file mode 100755 index 00000000..b32c7886 --- /dev/null +++ b/venv/bin/pip2.7 @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from pip._internal import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/python b/venv/bin/python new file mode 100755 index 00000000..542eddcc Binary files /dev/null and b/venv/bin/python differ diff --git a/venv/bin/python-config b/venv/bin/python-config new file mode 100755 index 00000000..83ccf41d --- /dev/null +++ b/venv/bin/python-config @@ -0,0 +1,78 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python + +import sys +import getopt +import sysconfig + +valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags', + 'ldflags', 'help'] + +if sys.version_info >= (3, 2): + valid_opts.insert(-1, 'extension-suffix') + valid_opts.append('abiflags') +if sys.version_info >= (3, 3): + valid_opts.append('configdir') + + +def exit_with_usage(code=1): + sys.stderr.write("Usage: {0} [{1}]\n".format( + sys.argv[0], '|'.join('--'+opt for opt in valid_opts))) + sys.exit(code) + +try: + opts, args = getopt.getopt(sys.argv[1:], '', valid_opts) +except getopt.error: + exit_with_usage() + +if not opts: + exit_with_usage() + +pyver = sysconfig.get_config_var('VERSION') +getvar = sysconfig.get_config_var + +opt_flags = [flag for (flag, val) in opts] + +if '--help' in opt_flags: + exit_with_usage(code=0) + +for opt in opt_flags: + if opt == '--prefix': + print(sysconfig.get_config_var('prefix')) + + elif opt == '--exec-prefix': + print(sysconfig.get_config_var('exec_prefix')) + + elif opt in ('--includes', '--cflags'): + flags = ['-I' + sysconfig.get_path('include'), + '-I' + sysconfig.get_path('platinclude')] + if opt == '--cflags': + flags.extend(getvar('CFLAGS').split()) + print(' '.join(flags)) + + elif opt in ('--libs', '--ldflags'): + abiflags = getattr(sys, 'abiflags', '') + libs = ['-lpython' + pyver + abiflags] + libs += getvar('LIBS').split() + libs += getvar('SYSLIBS').split() + # add the prefix/lib/pythonX.Y/config dir, but only if there is no + # shared library in prefix/lib/. + if opt == '--ldflags': + if not getvar('Py_ENABLE_SHARED'): + libs.insert(0, '-L' + getvar('LIBPL')) + if not getvar('PYTHONFRAMEWORK'): + libs.extend(getvar('LINKFORSHARED').split()) + print(' '.join(libs)) + + elif opt == '--extension-suffix': + ext_suffix = sysconfig.get_config_var('EXT_SUFFIX') + if ext_suffix is None: + ext_suffix = sysconfig.get_config_var('SO') + print(ext_suffix) + + elif opt == '--abiflags': + if not getattr(sys, 'abiflags', None): + exit_with_usage() + print(sys.abiflags) + + elif opt == '--configdir': + print(sysconfig.get_config_var('LIBPL')) diff --git a/venv/bin/python2 b/venv/bin/python2 new file mode 120000 index 00000000..d8654aa0 --- /dev/null +++ b/venv/bin/python2 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/venv/bin/python2.7 b/venv/bin/python2.7 new file mode 120000 index 00000000..d8654aa0 --- /dev/null +++ b/venv/bin/python2.7 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/venv/bin/slugify b/venv/bin/slugify new file mode 100755 index 00000000..e7f14f96 --- /dev/null +++ b/venv/bin/slugify @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from slugify.slugify import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/bin/wheel b/venv/bin/wheel new file mode 100755 index 00000000..d2c606df --- /dev/null +++ b/venv/bin/wheel @@ -0,0 +1,10 @@ +#!/Users/bart/Projects/ckan/ckanext-scheming/venv/bin/python +# -*- coding: utf-8 -*- +import re +import sys + +from wheel.cli import main + +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/venv/lib/python2.7/LICENSE.txt b/venv/lib/python2.7/LICENSE.txt new file mode 120000 index 00000000..1a3e1185 --- /dev/null +++ b/venv/lib/python2.7/LICENSE.txt @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/LICENSE.txt \ No newline at end of file diff --git a/venv/lib/python2.7/UserDict.py b/venv/lib/python2.7/UserDict.py new file mode 120000 index 00000000..b735f026 --- /dev/null +++ b/venv/lib/python2.7/UserDict.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py \ No newline at end of file diff --git a/venv/lib/python2.7/_abcoll.py b/venv/lib/python2.7/_abcoll.py new file mode 120000 index 00000000..4a595bc9 --- /dev/null +++ b/venv/lib/python2.7/_abcoll.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py \ No newline at end of file diff --git a/venv/lib/python2.7/_weakrefset.py b/venv/lib/python2.7/_weakrefset.py new file mode 120000 index 00000000..b8b09b7d --- /dev/null +++ b/venv/lib/python2.7/_weakrefset.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py \ No newline at end of file diff --git a/venv/lib/python2.7/abc.py b/venv/lib/python2.7/abc.py new file mode 120000 index 00000000..87956e58 --- /dev/null +++ b/venv/lib/python2.7/abc.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py \ No newline at end of file diff --git a/venv/lib/python2.7/codecs.py b/venv/lib/python2.7/codecs.py new file mode 120000 index 00000000..b18c8d66 --- /dev/null +++ b/venv/lib/python2.7/codecs.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py \ No newline at end of file diff --git a/venv/lib/python2.7/config b/venv/lib/python2.7/config new file mode 120000 index 00000000..88ddfa15 --- /dev/null +++ b/venv/lib/python2.7/config @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config \ No newline at end of file diff --git a/venv/lib/python2.7/copy_reg.py b/venv/lib/python2.7/copy_reg.py new file mode 120000 index 00000000..8d0265cb --- /dev/null +++ b/venv/lib/python2.7/copy_reg.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py \ No newline at end of file diff --git a/venv/lib/python2.7/distutils/__init__.py b/venv/lib/python2.7/distutils/__init__.py new file mode 100644 index 00000000..b9b0f24f --- /dev/null +++ b/venv/lib/python2.7/distutils/__init__.py @@ -0,0 +1,134 @@ +import os +import sys +import warnings + +# opcode is not a virtualenv module, so we can use it to find the stdlib +# Important! To work on pypy, this must be a module that resides in the +# lib-python/modified-x.y.z directory +import opcode + +dirname = os.path.dirname + +distutils_path = os.path.join(os.path.dirname(opcode.__file__), "distutils") +if os.path.normpath(distutils_path) == os.path.dirname(os.path.normpath(__file__)): + warnings.warn("The virtualenv distutils package at %s appears to be in the same location as the system distutils?") +else: + __path__.insert(0, distutils_path) # noqa: F821 + if sys.version_info < (3, 4): + import imp + + real_distutils = imp.load_module("_virtualenv_distutils", None, distutils_path, ("", "", imp.PKG_DIRECTORY)) + else: + import importlib.machinery + + distutils_path = os.path.join(distutils_path, "__init__.py") + loader = importlib.machinery.SourceFileLoader("_virtualenv_distutils", distutils_path) + if sys.version_info < (3, 5): + import types + + real_distutils = types.ModuleType(loader.name) + else: + import importlib.util + + spec = importlib.util.spec_from_loader(loader.name, loader) + real_distutils = importlib.util.module_from_spec(spec) + loader.exec_module(real_distutils) + + # Copy the relevant attributes + try: + __revision__ = real_distutils.__revision__ + except AttributeError: + pass + __version__ = real_distutils.__version__ + +from distutils import dist, sysconfig # isort:skip + +try: + basestring +except NameError: + basestring = str + +# patch build_ext (distutils doesn't know how to get the libs directory +# path on windows - it hardcodes the paths around the patched sys.prefix) + +if sys.platform == "win32": + from distutils.command.build_ext import build_ext as old_build_ext + + class build_ext(old_build_ext): + def finalize_options(self): + if self.library_dirs is None: + self.library_dirs = [] + elif isinstance(self.library_dirs, basestring): + self.library_dirs = self.library_dirs.split(os.pathsep) + + self.library_dirs.insert(0, os.path.join(sys.real_prefix, "Libs")) + old_build_ext.finalize_options(self) + + from distutils.command import build_ext as build_ext_module + + build_ext_module.build_ext = build_ext + +# distutils.dist patches: + +old_find_config_files = dist.Distribution.find_config_files + + +def find_config_files(self): + found = old_find_config_files(self) + if os.name == "posix": + user_filename = ".pydistutils.cfg" + else: + user_filename = "pydistutils.cfg" + user_filename = os.path.join(sys.prefix, user_filename) + if os.path.isfile(user_filename): + for item in list(found): + if item.endswith("pydistutils.cfg"): + found.remove(item) + found.append(user_filename) + return found + + +dist.Distribution.find_config_files = find_config_files + +# distutils.sysconfig patches: + +old_get_python_inc = sysconfig.get_python_inc + + +def sysconfig_get_python_inc(plat_specific=0, prefix=None): + if prefix is None: + prefix = sys.real_prefix + return old_get_python_inc(plat_specific, prefix) + + +sysconfig_get_python_inc.__doc__ = old_get_python_inc.__doc__ +sysconfig.get_python_inc = sysconfig_get_python_inc + +old_get_python_lib = sysconfig.get_python_lib + + +def sysconfig_get_python_lib(plat_specific=0, standard_lib=0, prefix=None): + if standard_lib and prefix is None: + prefix = sys.real_prefix + return old_get_python_lib(plat_specific, standard_lib, prefix) + + +sysconfig_get_python_lib.__doc__ = old_get_python_lib.__doc__ +sysconfig.get_python_lib = sysconfig_get_python_lib + +old_get_config_vars = sysconfig.get_config_vars + + +def sysconfig_get_config_vars(*args): + real_vars = old_get_config_vars(*args) + if sys.platform == "win32": + lib_dir = os.path.join(sys.real_prefix, "libs") + if isinstance(real_vars, dict) and "LIBDIR" not in real_vars: + real_vars["LIBDIR"] = lib_dir # asked for all + elif isinstance(real_vars, list) and "LIBDIR" in args: + real_vars = real_vars + [lib_dir] # asked for list + return real_vars + + +sysconfig_get_config_vars.__doc__ = old_get_config_vars.__doc__ +sysconfig.get_config_vars = sysconfig_get_config_vars diff --git a/venv/lib/python2.7/distutils/distutils.cfg b/venv/lib/python2.7/distutils/distutils.cfg new file mode 100644 index 00000000..1af230ec --- /dev/null +++ b/venv/lib/python2.7/distutils/distutils.cfg @@ -0,0 +1,6 @@ +# This is a config file local to this virtualenv installation +# You may include options that will be used by all distutils commands, +# and by easy_install. For instance: +# +# [easy_install] +# find_links = http://mylocalsite diff --git a/venv/lib/python2.7/encodings b/venv/lib/python2.7/encodings new file mode 120000 index 00000000..8732f85c --- /dev/null +++ b/venv/lib/python2.7/encodings @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings \ No newline at end of file diff --git a/venv/lib/python2.7/fnmatch.py b/venv/lib/python2.7/fnmatch.py new file mode 120000 index 00000000..49b6bc07 --- /dev/null +++ b/venv/lib/python2.7/fnmatch.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py \ No newline at end of file diff --git a/venv/lib/python2.7/genericpath.py b/venv/lib/python2.7/genericpath.py new file mode 120000 index 00000000..7843bce5 --- /dev/null +++ b/venv/lib/python2.7/genericpath.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py \ No newline at end of file diff --git a/venv/lib/python2.7/lib-dynload b/venv/lib/python2.7/lib-dynload new file mode 120000 index 00000000..24c555ed --- /dev/null +++ b/venv/lib/python2.7/lib-dynload @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload \ No newline at end of file diff --git a/venv/lib/python2.7/linecache.py b/venv/lib/python2.7/linecache.py new file mode 120000 index 00000000..1f79a61c --- /dev/null +++ b/venv/lib/python2.7/linecache.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py \ No newline at end of file diff --git a/venv/lib/python2.7/locale.py b/venv/lib/python2.7/locale.py new file mode 120000 index 00000000..cc8a5a7d --- /dev/null +++ b/venv/lib/python2.7/locale.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py \ No newline at end of file diff --git a/venv/lib/python2.7/no-global-site-packages.txt b/venv/lib/python2.7/no-global-site-packages.txt new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python2.7/ntpath.py b/venv/lib/python2.7/ntpath.py new file mode 120000 index 00000000..af0bbe70 --- /dev/null +++ b/venv/lib/python2.7/ntpath.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ntpath.py \ No newline at end of file diff --git a/venv/lib/python2.7/orig-prefix.txt b/venv/lib/python2.7/orig-prefix.txt new file mode 100644 index 00000000..2a451201 --- /dev/null +++ b/venv/lib/python2.7/orig-prefix.txt @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7 \ No newline at end of file diff --git a/venv/lib/python2.7/os.py b/venv/lib/python2.7/os.py new file mode 120000 index 00000000..04db9282 --- /dev/null +++ b/venv/lib/python2.7/os.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py \ No newline at end of file diff --git a/venv/lib/python2.7/posixpath.py b/venv/lib/python2.7/posixpath.py new file mode 120000 index 00000000..cc89aa2f --- /dev/null +++ b/venv/lib/python2.7/posixpath.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py \ No newline at end of file diff --git a/venv/lib/python2.7/re.py b/venv/lib/python2.7/re.py new file mode 120000 index 00000000..b1a8e651 --- /dev/null +++ b/venv/lib/python2.7/re.py @@ -0,0 +1 @@ +/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py \ No newline at end of file diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/INSTALLER b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/LICENSE.rst b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/LICENSE.rst new file mode 100644 index 00000000..c37cae49 --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/LICENSE.rst @@ -0,0 +1,28 @@ +Copyright 2007 Pallets + +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. + +3. Neither the name of the copyright holder nor the names of its + 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. diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/METADATA b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/METADATA new file mode 100644 index 00000000..6341603c --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/METADATA @@ -0,0 +1,128 @@ +Metadata-Version: 2.1 +Name: Werkzeug +Version: 0.16.0 +Summary: The comprehensive WSGI web application library. +Home-page: https://palletsprojects.com/p/werkzeug/ +Author: Armin Ronacher +Author-email: armin.ronacher@active-4.com +Maintainer: Pallets +Maintainer-email: contact@palletsprojects.com +License: BSD-3-Clause +Project-URL: Documentation, https://werkzeug.palletsprojects.com/ +Project-URL: Code, https://github.com/pallets/werkzeug +Project-URL: Issue tracker, https://github.com/pallets/werkzeug/issues +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 +Classifier: Programming Language :: Python :: Implementation :: CPython +Classifier: Programming Language :: Python :: Implementation :: PyPy +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* +Provides-Extra: dev +Requires-Dist: pytest ; extra == 'dev' +Requires-Dist: coverage ; extra == 'dev' +Requires-Dist: tox ; extra == 'dev' +Requires-Dist: sphinx ; extra == 'dev' +Requires-Dist: pallets-sphinx-themes ; extra == 'dev' +Requires-Dist: sphinx-issues ; extra == 'dev' +Provides-Extra: termcolor +Requires-Dist: termcolor ; extra == 'termcolor' +Provides-Extra: watchdog +Requires-Dist: watchdog ; extra == 'watchdog' + +Werkzeug +======== + +*werkzeug* German noun: "tool". Etymology: *werk* ("work"), *zeug* ("stuff") + +Werkzeug is a comprehensive `WSGI`_ web application library. It began as +a simple collection of various utilities for WSGI applications and has +become one of the most advanced WSGI utility libraries. + +It includes: + +- An interactive debugger that allows inspecting stack traces and + source code in the browser with an interactive interpreter for any + frame in the stack. +- A full-featured request object with objects to interact with + headers, query args, form data, files, and cookies. +- A response object that can wrap other WSGI applications and handle + streaming data. +- A routing system for matching URLs to endpoints and generating URLs + for endpoints, with an extensible system for capturing variables + from URLs. +- HTTP utilities to handle entity tags, cache control, dates, user + agents, cookies, files, and more. +- A threaded WSGI server for use while developing applications + locally. +- A test client for simulating HTTP requests during testing without + requiring running a server. + +Werkzeug is Unicode aware and doesn't enforce any dependencies. It is up +to the developer to choose a template engine, database adapter, and even +how to handle requests. It can be used to build all sorts of end user +applications such as blogs, wikis, or bulletin boards. + +`Flask`_ wraps Werkzeug, using it to handle the details of WSGI while +providing more structure and patterns for defining powerful +applications. + + +Installing +---------- + +Install and update using `pip`_: + +.. code-block:: text + + pip install -U Werkzeug + + +A Simple Example +---------------- + +.. code-block:: python + + from werkzeug.wrappers import Request, Response + + @Request.application + def application(request): + return Response('Hello, World!') + + if __name__ == '__main__': + from werkzeug.serving import run_simple + run_simple('localhost', 4000, application) + + +Links +----- + +- Website: https://palletsprojects.com/p/werkzeug/ +- Documentation: https://werkzeug.palletsprojects.com/ +- Releases: https://pypi.org/project/Werkzeug/ +- Code: https://github.com/pallets/werkzeug +- Issue tracker: https://github.com/pallets/werkzeug/issues +- Test status: https://dev.azure.com/pallets/werkzeug/_build +- Official chat: https://discord.gg/t6rrQZH + +.. _WSGI: https://wsgi.readthedocs.io/en/latest/ +.. _Flask: https://www.palletsprojects.com/p/flask/ +.. _pip: https://pip.pypa.io/en/stable/quickstart/ + + diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/RECORD b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/RECORD new file mode 100644 index 00000000..8de94dc8 --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/RECORD @@ -0,0 +1,119 @@ +Werkzeug-0.16.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +Werkzeug-0.16.0.dist-info/LICENSE.rst,sha256=O0nc7kEF6ze6wQ-vG-JgQI_oXSUrjp3y4JefweCUQ3s,1475 +Werkzeug-0.16.0.dist-info/METADATA,sha256=BH9_q8z1IK2FbYDS7tSWLsd07z7GDReBgRumclV7T08,4712 +Werkzeug-0.16.0.dist-info/RECORD,, +Werkzeug-0.16.0.dist-info/WHEEL,sha256=8zNYZbwQSXoB9IfXOjPfeNwvAsALAjffgk27FqvCWbo,110 +Werkzeug-0.16.0.dist-info/top_level.txt,sha256=QRyj2VjwJoQkrwjwFIOlB8Xg3r9un0NtqVHQF-15xaw,9 +werkzeug/__init__.py,sha256=tTlHx8lI6FpqB_X9x_zICTy3Rgikur6yIUJr8AE2XTs,7141 +werkzeug/__init__.pyc,, +werkzeug/_compat.py,sha256=oBEVVrJT4sqYdIZbUWmgV9T9w257RhTSDBlTjh0Zbb0,6431 +werkzeug/_compat.pyc,, +werkzeug/_internal.py,sha256=Wx7cpTRWqeBd0LAqobo0lCO4pNUW4oav6XKf7Taumgk,14590 +werkzeug/_internal.pyc,, +werkzeug/_reloader.py,sha256=I3mg3oRQ0lLzl06oEoVopN3bN7CtINuuUQdqDcmTnEs,11531 +werkzeug/_reloader.pyc,, +werkzeug/contrib/__init__.py,sha256=EvNyiiCF49j5P0fZYJ3ZGe82ofXdSBvUNqWFwwBMibQ,553 +werkzeug/contrib/__init__.pyc,, +werkzeug/contrib/atom.py,sha256=KpPJcTfzNW1J0VNQckCbVtVGBe3V8s451tOUya4qByI,15415 +werkzeug/contrib/atom.pyc,, +werkzeug/contrib/cache.py,sha256=AEh5UIw-Ui7sHZnlpvrD7ueOKUhCaAD55FXiPtXbbRs,32115 +werkzeug/contrib/cache.pyc,, +werkzeug/contrib/fixers.py,sha256=peEtAiIWYT5bh00EWEPOGKzGZXivOzVhhzKPvvzk1RM,9193 +werkzeug/contrib/fixers.pyc,, +werkzeug/contrib/iterio.py,sha256=KKHa_8aCF_uhoeQVyPGUwrivuB6y6nNdXYo2D2vzOA8,10928 +werkzeug/contrib/iterio.pyc,, +werkzeug/contrib/lint.py,sha256=NdIxP0E2kVt1xDIxoaIz3Rcl8ZdgmHaFbGTOaybGpN4,296 +werkzeug/contrib/lint.pyc,, +werkzeug/contrib/profiler.py,sha256=k_oMLU-AtsVvQ9TxNdermY6FuzSTYr-WE-ZmWb_DMyU,1229 +werkzeug/contrib/profiler.pyc,, +werkzeug/contrib/securecookie.py,sha256=xbtElskGmtbiApgOJ5WhGgqGDs_68_PcWzqDIAY_QZY,13076 +werkzeug/contrib/securecookie.pyc,, +werkzeug/contrib/sessions.py,sha256=CkJ4IWvNqIaZCP83FMKYFszKL7E6Y1m6YEii7RaTYWs,13040 +werkzeug/contrib/sessions.pyc,, +werkzeug/contrib/wrappers.py,sha256=ZmNk0wpzD66yomPnQxapndZQs4c0kNJaRzqI-BVxeQk,13199 +werkzeug/contrib/wrappers.pyc,, +werkzeug/datastructures.py,sha256=yVH4r-XD8CjOo18tDGVJYiAfezng6pK9hWzzLFy5a94,91761 +werkzeug/datastructures.pyc,, +werkzeug/debug/__init__.py,sha256=Bo3HvgTNY4NQ_2jROTSk3r1ScZcT_g_4EnuHTjKyrKM,18275 +werkzeug/debug/__init__.pyc,, +werkzeug/debug/console.py,sha256=HoBL21bbcmtiCLqiLDJLZi1LYnWMZxjoXYH5WaZB1XY,5469 +werkzeug/debug/console.pyc,, +werkzeug/debug/repr.py,sha256=lIwuhbyrMwVe3P_cFqNyqzHL7P93TLKod7lw9clydEw,9621 +werkzeug/debug/repr.pyc,, +werkzeug/debug/shared/FONT_LICENSE,sha256=LwAVEI1oYnvXiNMT9SnCH_TaLCxCpeHziDrMg0gPkAI,4673 +werkzeug/debug/shared/console.png,sha256=bxax6RXXlvOij_KeqvSNX0ojJf83YbnZ7my-3Gx9w2A,507 +werkzeug/debug/shared/debugger.js,sha256=rOhqZMRfpZnnu6_XCGn6wMWPhtfwRAcyZKksdIxPJas,6400 +werkzeug/debug/shared/jquery.js,sha256=CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo,88145 +werkzeug/debug/shared/less.png,sha256=-4-kNRaXJSONVLahrQKUxMwXGm9R4OnZ9SxDGpHlIR4,191 +werkzeug/debug/shared/more.png,sha256=GngN7CioHQoV58rH6ojnkYi8c_qED2Aka5FO5UXrReY,200 +werkzeug/debug/shared/source.png,sha256=RoGcBTE4CyCB85GBuDGTFlAnUqxwTBiIfDqW15EpnUQ,818 +werkzeug/debug/shared/style.css,sha256=gZ9uhmb5zj3XLuT9RvnMp6jMINgQ-VVBCp-2AZbG3YQ,6604 +werkzeug/debug/shared/ubuntu.ttf,sha256=1eaHFyepmy4FyDvjLVzpITrGEBu_CZYY94jE0nED1c0,70220 +werkzeug/debug/tbtools.py,sha256=SkAAA4KKfwsXJinUbf-AEP4GqONTsR4uU7WPUloXcSE,20318 +werkzeug/debug/tbtools.pyc,, +werkzeug/exceptions.py,sha256=7wl3ufZZU23sASp0ciPe8GJssGND9DX6sDbjxvPuGYU,23437 +werkzeug/exceptions.pyc,, +werkzeug/filesystem.py,sha256=HzKl-j0Hd8Jl66j778UbPTAYNnY6vUZgYLlBZ0e7uw0,2101 +werkzeug/filesystem.pyc,, +werkzeug/formparser.py,sha256=Sto0jZid9im9ZVIf56vilCdyX-arK33wSftkYsLCnzo,21788 +werkzeug/formparser.pyc,, +werkzeug/http.py,sha256=L6r2ehiorjOtsXITW-01zJsvtVa8Emkpkftu9di_cSk,41628 +werkzeug/http.pyc,, +werkzeug/local.py,sha256=USVEcgIg-oCiUJFPIecFIW9jkIejfw4Fjf1u5yN-Np4,14456 +werkzeug/local.pyc,, +werkzeug/middleware/__init__.py,sha256=f1SFZo67IlW4k1uqKzNHxYQlsakUS-D6KK_j0e3jjwQ,549 +werkzeug/middleware/__init__.pyc,, +werkzeug/middleware/dispatcher.py,sha256=_-KoMzHtcISHS7ouWKAOraqlCLprdh83YOAn_8DjLp8,2240 +werkzeug/middleware/dispatcher.pyc,, +werkzeug/middleware/http_proxy.py,sha256=lRjTdMmghHiZuZrS7_UJ3gZc-vlFizhBbFZ-XZPLwIA,7117 +werkzeug/middleware/http_proxy.pyc,, +werkzeug/middleware/lint.py,sha256=ItTwuWJnflF8xMT1uqU_Ty1ryhux-CjeUfskqaUpxsw,12967 +werkzeug/middleware/lint.pyc,, +werkzeug/middleware/profiler.py,sha256=8B_s23d6BGrU_q54gJsm6kcCbOJbTSqrXCsioHON0Xs,4471 +werkzeug/middleware/profiler.pyc,, +werkzeug/middleware/proxy_fix.py,sha256=1hi6AJH-J2uh2hMm1g0u7XfjRiTOoUeIOOmwWZ2n9t0,8670 +werkzeug/middleware/proxy_fix.pyc,, +werkzeug/middleware/shared_data.py,sha256=WtSphPrsUdpEk4E-_09CAILhfOBJ1YtcX1LrxcQfIzw,8224 +werkzeug/middleware/shared_data.pyc,, +werkzeug/posixemulation.py,sha256=gSSiv1SCmOyzOM_nq1ZaZCtxP__C5MeDJl_4yXJmi4Q,3541 +werkzeug/posixemulation.pyc,, +werkzeug/routing.py,sha256=BSgjrYNwj2j5dAHQtK4INEp2TOf4OJP8hBncYSRO2ps,73410 +werkzeug/routing.pyc,, +werkzeug/security.py,sha256=81149MplFq7-hD4RK4sKp9kzXXejjV9D4lWBzaRyeQ8,8106 +werkzeug/security.pyc,, +werkzeug/serving.py,sha256=qqdsTMILMt_B8ffBtROWK3RRpZeyTkQ9g-jhtpJodrY,36607 +werkzeug/serving.pyc,, +werkzeug/test.py,sha256=Cnb5xa3vLDL0hzFCH1fkG_YRpndViGQgCh4D744iSQk,40645 +werkzeug/test.pyc,, +werkzeug/testapp.py,sha256=bHekqMsqRfVxwgFbvOMem-DYa_sdB7R47yUXpt1RUTo,9329 +werkzeug/testapp.pyc,, +werkzeug/urls.py,sha256=hWZMk4ABiJmQPP_B5rRibWTp9gOyNLQpTqq6cmQAfeE,39322 +werkzeug/urls.pyc,, +werkzeug/useragents.py,sha256=0A_Ip74edPv_hy6CouBTpGumi2uyOci01COuzYFOm3U,5622 +werkzeug/useragents.pyc,, +werkzeug/utils.py,sha256=KxCOHhsox7tAVe0m-ZyOGPoCaIbBIy7TxhocaUEHrd4,25050 +werkzeug/utils.pyc,, +werkzeug/wrappers/__init__.py,sha256=S4VioKAmF_av9Ec9zQvG71X1EOkYfPx1TYck9jyDiyY,1384 +werkzeug/wrappers/__init__.pyc,, +werkzeug/wrappers/accept.py,sha256=TIvjUc0g73fhTWX54wg_D9NNzKvpnG1X8u1w26tK1o8,1760 +werkzeug/wrappers/accept.pyc,, +werkzeug/wrappers/auth.py,sha256=Pmn6iaGHBrUyHbJpW0lZhO_q9RVoAa5QalaTqcavdAI,1158 +werkzeug/wrappers/auth.pyc,, +werkzeug/wrappers/base_request.py,sha256=aknREwqVT7WJUxm4weUGdBj90H6rDR3DvsIvmYhaC8A,26943 +werkzeug/wrappers/base_request.pyc,, +werkzeug/wrappers/base_response.py,sha256=ZA1XlxtsbvG4SpbdOEMT5--z7aZM0w6C5y33W8wOXa4,27906 +werkzeug/wrappers/base_response.pyc,, +werkzeug/wrappers/common_descriptors.py,sha256=OJ8jOwMun4L-BxCuFPkK1vaefx_-Y5IndVXvvn_ems4,12089 +werkzeug/wrappers/common_descriptors.pyc,, +werkzeug/wrappers/etag.py,sha256=TwMO1fvluXbBqnFTj2DvrCNa3mYhbHYe1UZAVzfXvuU,12533 +werkzeug/wrappers/etag.pyc,, +werkzeug/wrappers/json.py,sha256=HvK_A4NpO0sLqgb10sTJcoZydYOwyNiPCJPV7SVgcgE,4343 +werkzeug/wrappers/json.pyc,, +werkzeug/wrappers/request.py,sha256=qPo2zmmBv4HxboywtWZb2pJL8OPXo07BUXBKw2j9Fi8,1338 +werkzeug/wrappers/request.pyc,, +werkzeug/wrappers/response.py,sha256=vDZFEGzDOG0jjmS0uVVjeT3hqRt1hFaf15npnx7RD28,2329 +werkzeug/wrappers/response.pyc,, +werkzeug/wrappers/user_agent.py,sha256=YJb-vr12cujG7sQMG9V89VsJa-03SWSenhg1W4cT0EY,435 +werkzeug/wrappers/user_agent.pyc,, +werkzeug/wsgi.py,sha256=iXOR9l1fDd2IgqeTRQZPR6LnBBBx7Xsy97_i2n5HPUo,34666 +werkzeug/wsgi.pyc,, diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/WHEEL b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/WHEEL new file mode 100644 index 00000000..8b701e93 --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.33.6) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/top_level.txt b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/top_level.txt new file mode 100644 index 00000000..6fe8da84 --- /dev/null +++ b/venv/lib/python2.7/site-packages/Werkzeug-0.16.0.dist-info/top_level.txt @@ -0,0 +1 @@ +werkzeug diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/DESCRIPTION.rst b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/DESCRIPTION.rst new file mode 100644 index 00000000..0b0953d8 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/DESCRIPTION.rst @@ -0,0 +1,50 @@ +Certifi: Python SSL Certificates +================================ + +`Certifi`_ is a carefully curated collection of Root Certificates for +validating the trustworthiness of SSL certificates while verifying the identity +of TLS hosts. It has been extracted from the `Requests`_ project. + +Installation +------------ + +``certifi`` is available on PyPI. Simply install it with ``pip``:: + + $ pip install certifi + +Usage +----- + +To reference the installed certificate authority (CA) bundle, you can use the +built-in function:: + + >>> import certifi + + >>> certifi.where() + '/usr/local/lib/python2.7/site-packages/certifi/cacert.pem' + +Or from the command line:: + + $ python -m certifi + /usr/local/lib/python2.7/site-packages/certifi/cacert.pem + +Enjoy! + +1024-bit Root Certificates +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Browsers and certificate authorities have concluded that 1024-bit keys are +unacceptably weak for certificates, particularly root certificates. For this +reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its +bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key) +certificate from the same CA. Because Mozilla removed these certificates from +its bundle, ``certifi`` removed them as well. + +In previous versions, ``certifi`` provided the ``certifi.old_where()`` function +to intentionally re-add the 1024-bit roots back into your bundle. This was not +recommended in production and therefore was removed at the end of 2018. + +.. _`Certifi`: https://certifi.io/en/latest/ +.. _`Requests`: http://docs.python-requests.org/en/latest/ + + diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/INSTALLER b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/METADATA b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/METADATA new file mode 100644 index 00000000..6ecc70c0 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/METADATA @@ -0,0 +1,74 @@ +Metadata-Version: 2.0 +Name: certifi +Version: 2019.9.11 +Summary: Python package for providing Mozilla's CA Bundle. +Home-page: https://certifi.io/ +Author: Kenneth Reitz +Author-email: me@kennethreitz.com +License: MPL-2.0 +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) +Classifier: Natural Language :: English +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Programming Language :: Python :: 3.7 + +Certifi: Python SSL Certificates +================================ + +`Certifi`_ is a carefully curated collection of Root Certificates for +validating the trustworthiness of SSL certificates while verifying the identity +of TLS hosts. It has been extracted from the `Requests`_ project. + +Installation +------------ + +``certifi`` is available on PyPI. Simply install it with ``pip``:: + + $ pip install certifi + +Usage +----- + +To reference the installed certificate authority (CA) bundle, you can use the +built-in function:: + + >>> import certifi + + >>> certifi.where() + '/usr/local/lib/python2.7/site-packages/certifi/cacert.pem' + +Or from the command line:: + + $ python -m certifi + /usr/local/lib/python2.7/site-packages/certifi/cacert.pem + +Enjoy! + +1024-bit Root Certificates +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Browsers and certificate authorities have concluded that 1024-bit keys are +unacceptably weak for certificates, particularly root certificates. For this +reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its +bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key) +certificate from the same CA. Because Mozilla removed these certificates from +its bundle, ``certifi`` removed them as well. + +In previous versions, ``certifi`` provided the ``certifi.old_where()`` function +to intentionally re-add the 1024-bit roots back into your bundle. This was not +recommended in production and therefore was removed at the end of 2018. + +.. _`Certifi`: https://certifi.io/en/latest/ +.. _`Requests`: http://docs.python-requests.org/en/latest/ + + diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/RECORD b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/RECORD new file mode 100644 index 00000000..0b727d4d --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/RECORD @@ -0,0 +1,14 @@ +certifi-2019.9.11.dist-info/DESCRIPTION.rst,sha256=aLNHONztn2ZiBpSTivVFy6EDIWmuNYSsEQwx4NWbvB4,1580 +certifi-2019.9.11.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +certifi-2019.9.11.dist-info/METADATA,sha256=M0Gen7rhgJKIvggZuENXqcZexg74gXdjGC679bMeoDw,2522 +certifi-2019.9.11.dist-info/RECORD,, +certifi-2019.9.11.dist-info/WHEEL,sha256=5wvfB7GvgZAbKBSE9uX9Zbi6LCL-_KgezgHblXhCRnM,113 +certifi-2019.9.11.dist-info/metadata.json,sha256=NppG2TtVr6va5nwyG9pxGhktdvudS-IfpTkaQaWKlBE,1022 +certifi-2019.9.11.dist-info/top_level.txt,sha256=KMu4vUCfsjLrkPbSNdgdekS-pVJzBAJFO__nI8NF6-U,8 +certifi/__init__.py,sha256=WFoavXHhpX-BZ5kbvyinZTbhLsqPJypLKIZu29nUsQg,52 +certifi/__init__.pyc,, +certifi/__main__.py,sha256=FiOYt1Fltst7wk9DRa6GCoBr8qBUxlNQu_MKJf04E6s,41 +certifi/__main__.pyc,, +certifi/cacert.pem,sha256=cVC1b0T-OcQzgdcRql2yMxT7O08O6pcJHnuO9nbLLn0,278533 +certifi/core.py,sha256=EuFc2BsToG5O1-qsx4BSjQ1r1-7WRtH87b1WflZOWhI,218 +certifi/core.pyc,, diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/WHEEL b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/WHEEL new file mode 100644 index 00000000..7bf9daa1 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.30.0.a0) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/metadata.json b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/metadata.json new file mode 100644 index 00000000..7f155f55 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/metadata.json @@ -0,0 +1 @@ +{"classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"], "extensions": {"python.details": {"contacts": [{"email": "me@kennethreitz.com", "name": "Kenneth Reitz", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://certifi.io/"}}}, "generator": "bdist_wheel (0.30.0.a0)", "license": "MPL-2.0", "metadata_version": "2.0", "name": "certifi", "summary": "Python package for providing Mozilla's CA Bundle.", "version": "2019.9.11"} \ No newline at end of file diff --git a/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/top_level.txt b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/top_level.txt new file mode 100644 index 00000000..963eac53 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi-2019.9.11.dist-info/top_level.txt @@ -0,0 +1 @@ +certifi diff --git a/venv/lib/python2.7/site-packages/certifi/__init__.py b/venv/lib/python2.7/site-packages/certifi/__init__.py new file mode 100644 index 00000000..8e358e4c --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import where + +__version__ = "2019.09.11" diff --git a/venv/lib/python2.7/site-packages/certifi/__main__.py b/venv/lib/python2.7/site-packages/certifi/__main__.py new file mode 100644 index 00000000..5f1da0dd --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi/__main__.py @@ -0,0 +1,2 @@ +from certifi import where +print(where()) diff --git a/venv/lib/python2.7/site-packages/certifi/cacert.pem b/venv/lib/python2.7/site-packages/certifi/cacert.pem new file mode 100644 index 00000000..70fa91f6 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi/cacert.pem @@ -0,0 +1,4558 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Label: "GlobalSign Root CA - R2" +# Serial: 4835703278459682885658125 +# MD5 Fingerprint: 94:14:77:7e:3e:5e:fd:8f:30:bd:41:b0:cf:e7:d0:30 +# SHA1 Fingerprint: 75:e0:ab:b6:13:85:12:27:1c:04:f8:5f:dd:de:38:e4:b7:24:2e:fe +# SHA256 Fingerprint: ca:42:dd:41:74:5f:d0:b8:1e:b9:02:36:2c:f9:d8:bf:71:9d:a1:bd:1b:1e:fc:94:6f:5b:4c:99:f4:2c:1b:9e +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 +MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL +v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 +eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq +tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd +C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa +zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB +mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH +V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n +bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG +3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs +J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO +291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS +ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd +AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +# Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 1999 VeriSign, Inc. - For authorized use only +# Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G3 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 1999 VeriSign, Inc. - For authorized use only +# Label: "Verisign Class 3 Public Primary Certification Authority - G3" +# Serial: 206684696279472310254277870180966723415 +# MD5 Fingerprint: cd:68:b6:a7:c7:c4:ce:75:e0:1d:4f:57:44:61:92:09 +# SHA1 Fingerprint: 13:2d:0d:45:53:4b:69:97:cd:b2:d5:c3:39:e2:55:76:60:9b:5c:c6 +# SHA256 Fingerprint: eb:04:cf:5e:b1:f3:9a:fa:76:2f:2b:b1:20:f2:96:cb:a5:20:c1:b9:7d:b1:58:95:65:b8:1c:b9:a1:7b:72:44 +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl +cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu +LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT +aWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD +VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT +aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ +bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu +IENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMu6nFL8eB8aHm8b +N3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1EUGO+i2t +KmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGu +kxUccLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBm +CC+Vk7+qRy+oRpfwEuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJ +Xwzw3sJ2zq/3avL6QaaiMxTJ5Xpj055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWu +imi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAERSWwauSCPc/L8my/uRan2Te +2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5fj267Cz3qWhMe +DGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC +/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565p +F4ErWjfJXir0xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGt +TxzhT5yvDwyd93gN2PQ1VoDat20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=AddTrust External CA Root O=AddTrust AB OU=AddTrust External TTP Network +# Subject: CN=AddTrust External CA Root O=AddTrust AB OU=AddTrust External TTP Network +# Label: "AddTrust External Root" +# Serial: 1 +# MD5 Fingerprint: 1d:35:54:04:85:78:b0:3f:42:42:4d:bf:20:73:0a:3f +# SHA1 Fingerprint: 02:fa:f3:e2:91:43:54:68:60:78:57:69:4d:f5:e4:5b:68:85:18:68 +# SHA256 Fingerprint: 68:7f:a4:51:38:22:78:ff:f0:c8:b1:1f:8d:43:d5:76:67:1c:6e:b2:bc:ea:b4:13:fb:83:d9:65:d0:6d:2f:f2 +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU +MBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFs +IFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290 +MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowbzELMAkGA1UEBhMCU0Ux +FDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRUcnVzdCBFeHRlcm5h +bCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0EgUm9v +dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvt +H7xsD821+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9 +uMq/NzgtHj6RQa1wVsfwTz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzX +mk6vBbOmcZSccbNQYArHE504B4YCqOmoaSYYkKtMsE8jqzpPhNjfzp/haW+710LX +a0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy2xSoRcRdKn23tNbE7qzN +E0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv77+ldU9U0 +WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYD +VR0PBAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0 +Jvf6xCZU7wO94CTLVBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRU +cnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsx +IjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3SCAQEwDQYJKoZIhvcN +AQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZlj7DYd7usQWxH +YINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 +6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC +Nr4TDea9Y355e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEX +c4g/VhsxOBi0cQ+azcgOno4uG+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5a +mnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Global CA O=GeoTrust Inc. +# Subject: CN=GeoTrust Global CA O=GeoTrust Inc. +# Label: "GeoTrust Global CA" +# Serial: 144470 +# MD5 Fingerprint: f7:75:ab:29:fb:51:4e:b7:77:5e:ff:05:3c:99:8e:f5 +# SHA1 Fingerprint: de:28:f4:a4:ff:e5:b9:2f:a3:c5:03:d1:a3:49:a7:f9:96:2a:82:12 +# SHA256 Fingerprint: ff:85:6a:2d:25:1d:cd:88:d3:66:56:f4:50:12:67:98:cf:ab:aa:de:40:79:9c:72:2d:e4:d2:b5:db:36:a7:3a +-----BEGIN CERTIFICATE----- +MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i +YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG +EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg +R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 +9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq +fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv +iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU +1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ +bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW +MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA +ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l +uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn +Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS +tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF +PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un +hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV +5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Universal CA O=GeoTrust Inc. +# Subject: CN=GeoTrust Universal CA O=GeoTrust Inc. +# Label: "GeoTrust Universal CA" +# Serial: 1 +# MD5 Fingerprint: 92:65:58:8b:a2:1a:31:72:73:68:5c:b4:a5:7a:07:48 +# SHA1 Fingerprint: e6:21:f3:35:43:79:05:9a:4b:68:30:9d:8a:2f:74:22:15:87:ec:79 +# SHA256 Fingerprint: a0:45:9b:9f:63:b2:25:59:f5:fa:5d:4c:6d:b3:f9:f7:2f:f1:93:42:03:35:78:f0:73:bf:1d:1b:46:cb:b9:12 +-----BEGIN CERTIFICATE----- +MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEW +MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVy +c2FsIENBMB4XDTA0MDMwNDA1MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UE +BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xHjAcBgNVBAMTFUdlb1RydXN0 +IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKYV +VaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9tJPi8 +cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTT +QjOgNB0eRXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFh +F7em6fgemdtzbvQKoiFs7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2v +c7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d8Lsrlh/eezJS/R27tQahsiFepdaVaH/w +mZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7VqnJNk22CDtucvc+081xd +VHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3CgaRr0BHdCX +teGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZ +f9hBZ3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfRe +Bi9Fi1jUIxaS5BZuKGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+ +nhutxx9z3SxPGWX9f5NAEC7S8O08ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB +/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0XG0D08DYj3rWMB8GA1UdIwQY +MBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG +9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc +aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fX +IwjhmF7DWgh2qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzyn +ANXH/KttgCJwpQzgXQQpAvvLoJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0z +uzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsKxr2EoyNB3tZ3b4XUhRxQ4K5RirqN +Pnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxFKyDuSN/n3QmOGKja +QI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2DFKW +koRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9 +ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt +DF4JbAiXfKM9fJP/P6EUp8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/Sfuvm +bJxPgWp6ZKy7PtXny3YuxadIwVyQD8vIP/rmMuGNG2+k5o7Y+SlIis5z/iw= +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Universal CA 2 O=GeoTrust Inc. +# Subject: CN=GeoTrust Universal CA 2 O=GeoTrust Inc. +# Label: "GeoTrust Universal CA 2" +# Serial: 1 +# MD5 Fingerprint: 34:fc:b8:d0:36:db:9e:14:b3:c2:f2:db:8f:e4:94:c7 +# SHA1 Fingerprint: 37:9a:19:7b:41:85:45:35:0c:a6:03:69:f3:3c:2e:af:47:4f:20:79 +# SHA256 Fingerprint: a0:23:4f:3b:c8:52:7c:a5:62:8e:ec:81:ad:5d:69:89:5d:a5:68:0d:c9:1d:1c:b8:47:7f:33:f8:78:b9:5b:0b +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEW +MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVy +c2FsIENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYD +VQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1 +c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0DE81 +WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUG +FF+3Qs17j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdq +XbboW0W63MOhBW9Wjo8QJqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxL +se4YuU6W3Nx2/zu+z18DwPw76L5GG//aQMJS9/7jOvdqdzXQ2o3rXhhqMcceujwb +KNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2WP0+GfPtDCapkzj4T8Fd +IgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP20gaXT73 +y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRt +hAAnZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgoc +QIgfksILAAX/8sgCSqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4 +Lt1ZrtmhN79UNdxzMk+MBB4zsslG8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAfBgNV +HSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8EBAMCAYYwDQYJ +KoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z +dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQ +L1EuxBRa3ugZ4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgr +Fg5fNuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSo +ag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpqA1Ihn0CoZ1Dy81of398j9tx4TuaY +T1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpgY+RdM4kX2TGq2tbz +GDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiPpm8m +1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJV +OCiNUW7dFGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH +6aLcr34YEoP9VhdBLtUpgn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwX +QMAJKOSLakhT2+zNVVXxxvjpoixMptEmX36vWkzaH6byHCx+rgIW0lbQL1dTR+iS +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root Certification Authority O=QuoVadis Limited OU=Root Certification Authority +# Subject: CN=QuoVadis Root Certification Authority O=QuoVadis Limited OU=Root Certification Authority +# Label: "QuoVadis Root CA" +# Serial: 985026699 +# MD5 Fingerprint: 27:de:36:fe:72:b7:00:03:00:9d:f4:f0:1e:6c:04:24 +# SHA1 Fingerprint: de:3f:40:bd:50:93:d3:9b:6c:60:f6:da:bc:07:62:01:00:89:76:c9 +# SHA256 Fingerprint: a4:5e:de:3b:bb:f0:9c:8a:e1:5c:72:ef:c0:72:68:d6:93:a2:1c:99:6f:d5:1e:67:ca:07:94:60:fd:6d:88:73 +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 +aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz +MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw +IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR +dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp +li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D +rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ +WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug +F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU +xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC +Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv +dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw +ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl +IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh +c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy +ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI +KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T +KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq +y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p +dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD +VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL +MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk +fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 +7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R +cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y +mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW +xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK +SnQ2+Q== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 +# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 +# Label: "Security Communication Root CA" +# Serial: 0 +# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a +# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 +# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- + +# Issuer: CN=Sonera Class2 CA O=Sonera +# Subject: CN=Sonera Class2 CA O=Sonera +# Label: "Sonera Class 2 Root CA" +# Serial: 29 +# MD5 Fingerprint: a3:ec:75:0f:2e:88:df:fa:48:01:4e:0b:5c:48:6f:fb +# SHA1 Fingerprint: 37:f7:6d:e6:07:7c:90:c5:b1:3e:93:1a:b7:41:10:b4:f2:e4:9a:27 +# SHA256 Fingerprint: 79:08:b4:03:14:c1:38:10:0b:51:8d:07:35:80:7f:fb:fc:f8:51:8a:00:95:33:71:05:ba:38:6b:15:3d:d9:27 +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP +MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx +MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV +BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o +Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt +5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s +3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej +vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu +8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw +DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG +MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil +zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ +3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD +FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 +Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 +ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: O=Government Root Certification Authority +# Subject: O=Government Root Certification Authority +# Label: "Taiwan GRCA" +# Serial: 42023070807708724159991140556527066870 +# MD5 Fingerprint: 37:85:44:53:32:45:1f:20:f0:f3:95:e1:25:c4:43:4e +# SHA1 Fingerprint: f4:8b:11:bf:de:ab:be:94:54:20:71:e6:41:de:6b:be:88:2b:40:b9 +# SHA256 Fingerprint: 76:00:29:5e:ef:e8:5b:9e:1f:d6:24:db:76:06:2a:aa:ae:59:81:8a:54:d2:77:4c:d4:c0:b2:c0:11:31:e1:b3 +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/ +MQswCQYDVQQGEwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5MB4XDTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1ow +PzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dvdmVybm1lbnQgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +AJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qNw8XR +IePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1q +gQdW8or5BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKy +yhwOeYHWtXBiCAEuTk8O1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAts +F/tnyMKtsc2AtJfcdgEWFelq16TheEfOhtX7MfP6Mb40qij7cEwdScevLJ1tZqa2 +jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wovJ5pGfaENda1UhhXcSTvx +ls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7Q3hub/FC +VGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHK +YS1tB6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoH +EgKXTiCQ8P8NHuJBO9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThN +Xo+EHWbNxWCWtFJaBYmOlXqYwZE8lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1Ud +DgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNVHRMEBTADAQH/MDkGBGcqBwAE +MTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg209yewDL7MTqK +UWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ +TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyf +qzvS/3WXy6TjZwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaK +ZEk9GhiHkASfQlK3T8v+R0F2Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFE +JPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlUD7gsL0u8qV1bYH+Mh6XgUmMqvtg7 +hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6QzDxARvBMB1uUO07+1 +EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+HbkZ6Mm +nD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WX +udpVBrkk7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44Vbnz +ssQwmSNOXfJIoRIM3BKQCZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDe +LMDDav7v3Aun+kbfYNucpllQdSNpc5Oy+fwC00fmcc4QAu4njIT/rEUNE1yDMuAl +pYYsfPQS +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Subject: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Label: "DST Root CA X3" +# Serial: 91299735575339953335919266965803778155 +# MD5 Fingerprint: 41:03:52:dc:0f:f7:50:1b:16:f0:02:8e:ba:6f:45:c5 +# SHA1 Fingerprint: da:c9:02:4f:54:d8:f6:df:94:93:5f:b1:73:26:38:ca:6a:d7:7c:13 +# SHA256 Fingerprint: 06:87:26:03:31:a7:24:03:d9:09:f1:05:e6:9b:cf:0d:32:e1:bd:24:93:ff:c6:d9:20:6d:11:bc:d6:77:07:39 +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ +MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT +DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow +PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD +Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O +rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq +OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b +xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw +7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD +aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG +SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 +ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr +AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz +R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 +JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo +Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV +BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln +biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF +MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT +d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 +76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ +bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c +6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE +emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd +MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt +MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y +MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y +FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi +aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM +gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB +qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 +lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn +8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov +L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 +45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO +UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 +O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC +bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv +GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a +77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC +hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 +92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp +Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w +ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt +Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE +BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu +IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow +RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY +U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv +Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br +YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF +nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH +6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt +eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ +c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ +MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH +HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf +jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 +5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB +rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU +F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c +wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB +AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp +WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 +xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ +2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ +IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 +aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X +em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR +dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ +OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ +hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy +tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Primary Certification Authority O=GeoTrust Inc. +# Subject: CN=GeoTrust Primary Certification Authority O=GeoTrust Inc. +# Label: "GeoTrust Primary Certification Authority" +# Serial: 32798226551256963324313806436981982369 +# MD5 Fingerprint: 02:26:c3:01:5e:08:30:37:43:a9:d0:7d:cf:37:e6:bf +# SHA1 Fingerprint: 32:3c:11:8e:1b:f7:b8:b6:52:54:e2:e2:10:0d:d6:02:90:37:f0:96 +# SHA256 Fingerprint: 37:d5:10:06:c5:12:ea:ab:62:64:21:f1:ec:8c:92:01:3f:c5:f8:2a:e9:8e:e5:33:eb:46:19:b8:de:b4:d0:6c +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBY +MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMo +R2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEx +MjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQK +Ew1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9 +AWbK7hWNb6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjA +ZIVcFU2Ix7e64HXprQU9nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE0 +7e9GceBrAqg1cmuXm2bgyxx5X9gaBGgeRwLmnWDiNpcB3841kt++Z8dtd1k7j53W +kBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGttm/81w7a4DSwDRp35+MI +mO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJ +KoZIhvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ1 +6CePbJC/kRYkRj5KTs4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl +4b7UVXGYNTq+k+qurUKykG/g/CFNNWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6K +oKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHaFloxt/m0cYASSJlyc1pZU8Fj +UjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG1riR/aYNKxoU +AT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= +-----END CERTIFICATE----- + +# Issuer: CN=thawte Primary Root CA O=thawte, Inc. OU=Certification Services Division/(c) 2006 thawte, Inc. - For authorized use only +# Subject: CN=thawte Primary Root CA O=thawte, Inc. OU=Certification Services Division/(c) 2006 thawte, Inc. - For authorized use only +# Label: "thawte Primary Root CA" +# Serial: 69529181992039203566298953787712940909 +# MD5 Fingerprint: 8c:ca:dc:0b:22:ce:f5:be:72:ac:41:1a:11:a8:d8:12 +# SHA1 Fingerprint: 91:c6:d6:ee:3e:8a:c8:63:84:e5:48:c2:99:29:5c:75:6c:81:7b:81 +# SHA256 Fingerprint: 8d:72:2f:81:a9:c1:13:c0:79:1d:f1:36:a2:96:6d:b2:6c:95:0a:97:1d:b4:6b:41:99:f4:ea:54:b7:8b:fb:9f +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCB +qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf +Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw +MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV +BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3MDAwMDAwWhcNMzYw +NzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5j +LjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYG +A1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsoPD7gFnUnMekz52hWXMJEEUMDSxuaPFs +W0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ1CRfBsDMRJSUjQJib+ta +3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGcq/gcfomk +6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6 +Sk/KaAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94J +NqR32HuHUETVPm4pafs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XP +r87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUFAAOCAQEAeRHAS7ORtvzw6WfU +DW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeEuzLlQRHAd9mz +YJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX +xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2 +/qxAeeWsEG89jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/ +LHbTY5xZ3Y+m4Q6gLkH3LpVHz7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7 +jVaMaA== +-----END CERTIFICATE----- + +# Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G5 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2006 VeriSign, Inc. - For authorized use only +# Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G5 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2006 VeriSign, Inc. - For authorized use only +# Label: "VeriSign Class 3 Public Primary Certification Authority - G5" +# Serial: 33037644167568058970164719475676101450 +# MD5 Fingerprint: cb:17:e4:31:67:3e:e2:09:fe:45:57:93:f3:0a:fa:1c +# SHA1 Fingerprint: 4e:b6:d5:78:49:9b:1c:cf:5f:58:1e:ad:56:be:3d:9b:67:44:a5:e5 +# SHA256 Fingerprint: 9a:cf:ab:7e:43:c8:d8:80:d0:6b:26:2a:94:de:ee:e4:b4:65:99:89:c3:d0:ca:f1:9b:af:64:05:e4:1a:b7:df +-----BEGIN CERTIFICATE----- +MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCB +yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL +ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp +U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW +ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW +ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp +U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y +aXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1 +nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbex +t0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIz +SdhDY2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQG +BO+QueQA5N06tRn/Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+ +rCpSx4/VBEnkjWNHiDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/ +NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8E +BAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAH +BgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy +aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKv +MzEzMA0GCSqGSIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzE +p6B4Eq1iDkVwZMXnl2YtmAl+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y +5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKEKQsTb47bDN0lAtukixlE0kF6BWlK +WE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiCKm0oHw0LxOXnGiYZ +4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vEZV8N +hnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Subject: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Label: "Network Solutions Certificate Authority" +# Serial: 116697915152937497490437556386812487904 +# MD5 Fingerprint: d3:f3:a6:16:c0:fa:6b:1d:59:b1:2d:96:4d:0e:11:2e +# SHA1 Fingerprint: 74:f8:a3:c3:ef:e7:b3:90:06:4b:83:90:3c:21:64:60:20:e5:df:ce +# SHA256 Fingerprint: 15:f0:ba:00:a3:ac:7a:f3:ac:88:4c:07:2b:10:11:a0:77:bd:77:c0:97:f4:01:64:b2:f8:59:8a:bd:83:86:0c +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi +MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV +UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO +ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz +c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP +OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl +mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF +BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 +qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw +gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu +bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp +dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 +6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ +h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH +/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN +pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GA CA O=WISeKey OU=Copyright (c) 2005/OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GA CA O=WISeKey OU=Copyright (c) 2005/OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GA CA" +# Serial: 86718877871133159090080555911823548314 +# MD5 Fingerprint: bc:6c:51:33:a7:e9:d3:66:63:54:15:72:1b:21:92:93 +# SHA1 Fingerprint: 59:22:a1:e1:5a:ea:16:35:21:f8:98:39:6a:46:46:b0:44:1b:0f:a9 +# SHA256 Fingerprint: 41:c9:23:86:6a:b4:ca:d6:b7:ad:57:80:81:58:2e:02:07:97:a6:cb:df:4f:ff:78:ce:83:96:b3:89:37:d7:f5 +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB +ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly +aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl +ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w +NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G +A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD +VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX +SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR +VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 +w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF +mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg +4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 +4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw +EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx +SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 +ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 +vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi +Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ +/L7fCg0= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: CN=Cybertrust Global Root O=Cybertrust, Inc +# Subject: CN=Cybertrust Global Root O=Cybertrust, Inc +# Label: "Cybertrust Global Root" +# Serial: 4835703278459682877484360 +# MD5 Fingerprint: 72:e4:4a:87:e3:69:40:80:77:ea:bc:e3:f4:ff:f0:e1 +# SHA1 Fingerprint: 5f:43:e5:b1:bf:f8:78:8c:ac:1c:c7:ca:4a:9a:c6:22:2b:cc:34:c6 +# SHA256 Fingerprint: 96:0a:df:00:63:e9:63:56:75:0c:29:65:dd:0a:08:67:da:0b:9c:bd:6e:77:71:4a:ea:fb:23:49:ab:39:3d:a3 +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Primary Certification Authority - G3 O=GeoTrust Inc. OU=(c) 2008 GeoTrust Inc. - For authorized use only +# Subject: CN=GeoTrust Primary Certification Authority - G3 O=GeoTrust Inc. OU=(c) 2008 GeoTrust Inc. - For authorized use only +# Label: "GeoTrust Primary Certification Authority - G3" +# Serial: 28809105769928564313984085209975885599 +# MD5 Fingerprint: b5:e8:34:36:c9:10:44:58:48:70:6d:2e:83:d4:b8:05 +# SHA1 Fingerprint: 03:9e:ed:b8:0b:e7:a0:3c:69:53:89:3b:20:d2:d9:32:3a:4c:2a:fd +# SHA256 Fingerprint: b4:78:b8:12:25:0d:f8:78:63:5c:2a:a7:ec:7d:15:5e:aa:62:5e:e8:29:16:e2:cd:29:43:61:88:6c:d1:fb:d4 +-----BEGIN CERTIFICATE----- +MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB +mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT +MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s +eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv +cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ +BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg +MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0 +BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg +LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz ++uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm +hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn +5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W +JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL +DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC +huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw +HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB +AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB +zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN +kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD +AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH +SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G +spki4cErx5z481+oghLrGREt +-----END CERTIFICATE----- + +# Issuer: CN=thawte Primary Root CA - G2 O=thawte, Inc. OU=(c) 2007 thawte, Inc. - For authorized use only +# Subject: CN=thawte Primary Root CA - G2 O=thawte, Inc. OU=(c) 2007 thawte, Inc. - For authorized use only +# Label: "thawte Primary Root CA - G2" +# Serial: 71758320672825410020661621085256472406 +# MD5 Fingerprint: 74:9d:ea:60:24:c4:fd:22:53:3e:cc:3a:72:d9:29:4f +# SHA1 Fingerprint: aa:db:bc:22:23:8f:c4:01:a1:27:bb:38:dd:f4:1d:db:08:9e:f0:12 +# SHA256 Fingerprint: a4:31:0d:50:af:18:a6:44:71:90:37:2a:86:af:af:8b:95:1f:fb:43:1d:83:7f:1e:56:88:b4:59:71:ed:15:57 +-----BEGIN CERTIFICATE----- +MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMp +IDIwMDcgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAi +BgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMjAeFw0wNzExMDUwMDAw +MDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh +d3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBGb3Ig +YXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9v +dCBDQSAtIEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/ +BebfowJPDQfGAFG6DAJSLSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6 +papu+7qzcMBniKI11KOasf2twu8x+qi58/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUmtgAMADna3+FGO6Lts6K +DPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUNG4k8VIZ3 +KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41ox +XZ3Krr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== +-----END CERTIFICATE----- + +# Issuer: CN=thawte Primary Root CA - G3 O=thawte, Inc. OU=Certification Services Division/(c) 2008 thawte, Inc. - For authorized use only +# Subject: CN=thawte Primary Root CA - G3 O=thawte, Inc. OU=Certification Services Division/(c) 2008 thawte, Inc. - For authorized use only +# Label: "thawte Primary Root CA - G3" +# Serial: 127614157056681299805556476275995414779 +# MD5 Fingerprint: fb:1b:5d:43:8a:94:cd:44:c6:76:f2:43:4b:47:e7:31 +# SHA1 Fingerprint: f1:8b:53:8d:1b:e9:03:b6:a6:f0:56:43:5b:17:15:89:ca:f3:6b:f2 +# SHA256 Fingerprint: 4b:03:f4:58:07:ad:70:f2:1b:fc:2c:ae:71:c9:fd:e4:60:4c:06:4c:f5:ff:b6:86:ba:e5:db:aa:d7:fd:d3:4c +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCB +rjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf +Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw +MDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNV +BAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0wODA0MDIwMDAwMDBa +Fw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3Rl +LCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9u +MTgwNgYDVQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXpl +ZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEcz +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsr8nLPvb2FvdeHsbnndm +gcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2AtP0LMqmsywCPLLEHd5N/8 +YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC+BsUa0Lf +b1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS9 +9irY7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2S +zhkGcuYMXDhpxwTWvGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUk +OQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV +HQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJKoZIhvcNAQELBQADggEBABpA +2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweKA3rD6z8KLFIW +oCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu +t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7c +KUGRIjxpp7sC8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fM +m7v/OeZWYdMKp8RcTGB7BXcmer/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZu +MdRAGmI0Nj81Aa6sY6A= +-----END CERTIFICATE----- + +# Issuer: CN=GeoTrust Primary Certification Authority - G2 O=GeoTrust Inc. OU=(c) 2007 GeoTrust Inc. - For authorized use only +# Subject: CN=GeoTrust Primary Certification Authority - G2 O=GeoTrust Inc. OU=(c) 2007 GeoTrust Inc. - For authorized use only +# Label: "GeoTrust Primary Certification Authority - G2" +# Serial: 80682863203381065782177908751794619243 +# MD5 Fingerprint: 01:5e:d8:6b:bd:6f:3d:8e:a1:31:f8:12:e0:98:73:6a +# SHA1 Fingerprint: 8d:17:84:d5:37:f3:03:7d:ec:70:fe:57:8b:51:9a:99:e6:10:d7:b0 +# SHA256 Fingerprint: 5e:db:7a:c4:3b:82:a0:6a:87:61:e8:d7:be:49:79:eb:f2:61:1f:7d:d7:9b:f9:1c:1c:6b:56:6a:21:9e:d7:66 +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL +MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj +KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 +MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw +NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV +BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH +MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL +So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal +tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG +CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT +qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz +rD6ogRLQy7rQkgu2npaqBA+K +-----END CERTIFICATE----- + +# Issuer: CN=VeriSign Universal Root Certification Authority O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2008 VeriSign, Inc. - For authorized use only +# Subject: CN=VeriSign Universal Root Certification Authority O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2008 VeriSign, Inc. - For authorized use only +# Label: "VeriSign Universal Root Certification Authority" +# Serial: 85209574734084581917763752644031726877 +# MD5 Fingerprint: 8e:ad:b5:01:aa:4d:81:e4:8c:1d:d1:e1:14:00:95:19 +# SHA1 Fingerprint: 36:79:ca:35:66:87:72:30:4d:30:a5:fb:87:3b:0f:a7:7b:b7:0d:54 +# SHA256 Fingerprint: 23:99:56:11:27:a5:71:25:de:8c:ef:ea:61:0d:df:2f:a0:78:b5:c8:06:7f:4e:82:82:90:bf:b8:60:e8:4b:3c +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB +vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL +ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp +U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W +ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX +MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 +IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y +IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh +bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF +9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH +H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H +LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN +/BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT +rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud +EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw +WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs +exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 +sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ +seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz +4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ +BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR +lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 +7M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- + +# Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G4 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2007 VeriSign, Inc. - For authorized use only +# Subject: CN=VeriSign Class 3 Public Primary Certification Authority - G4 O=VeriSign, Inc. OU=VeriSign Trust Network/(c) 2007 VeriSign, Inc. - For authorized use only +# Label: "VeriSign Class 3 Public Primary Certification Authority - G4" +# Serial: 63143484348153506665311985501458640051 +# MD5 Fingerprint: 3a:52:e1:e7:fd:6f:3a:e3:6f:f3:6f:99:1b:f9:22:41 +# SHA1 Fingerprint: 22:d5:d8:df:8f:02:31:d1:8d:f7:9d:b7:cf:8a:2d:64:c9:3f:6c:3a +# SHA256 Fingerprint: 69:dd:d7:ea:90:bb:57:c9:3e:13:5d:c8:5e:a6:fc:d5:48:0b:60:32:39:bd:c4:54:fc:75:8b:2a:26:cf:7f:79 +-----BEGIN CERTIFICATE----- +MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW +ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2ln +biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp +U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y +aXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjELMAkG +A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp +U2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwg +SW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2ln +biBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8Utpkmw4tXNherJI9/gHm +GUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGzrl0Bp3ve +fLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJ +aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYj +aHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMW +kf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMDA2gAMGUCMGYhDBgmYFo4e1ZC +4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIxAJw9SDkjOVga +FRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden Root CA - G2 O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden Root CA - G2 O=Staat der Nederlanden +# Label: "Staat der Nederlanden Root CA - G2" +# Serial: 10000012 +# MD5 Fingerprint: 7c:a5:0f:f8:5b:9a:7d:6d:30:ae:54:5a:e3:42:a2:8a +# SHA1 Fingerprint: 59:af:82:79:91:86:c7:b4:75:07:cb:cf:03:57:46:eb:04:dd:b7:16 +# SHA256 Fingerprint: 66:8c:83:94:7d:a6:3b:72:4b:ec:e1:74:3c:31:a0:e6:ae:d0:db:8e:c5:b3:1b:e3:77:bb:78:4f:91:b6:71:6f +-----BEGIN CERTIFICATE----- +MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oX +DTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl +ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv +b3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ5291 +qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8Sp +uOUfiUtnvWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPU +Z5uW6M7XxgpT0GtJlvOjCwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvE +pMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiile7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp +5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCROME4HYYEhLoaJXhena/M +UGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpICT0ugpTN +GmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy +5V6548r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv +6q012iDTiIJh8BIitrzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEK +eN5KzlW/HdXZt1bv8Hb/C3m1r737qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6 +B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMBAAGjgZcwgZQwDwYDVR0TAQH/ +BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcCARYxaHR0cDov +L3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqG +SIb3DQEBCwUAA4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLyS +CZa59sCrI2AGeYwRTlHSeYAz+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen +5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwjf/ST7ZwaUb7dRUG/kSS0H4zpX897 +IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaNkqbG9AclVMwWVxJK +gnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfkCpYL ++63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxL +vJxxcypFURmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkm +bEgeqmiSBeGCc1qb3AdbCG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvk +N1trSt8sV4pAWja63XVECDdCcAz+3F4hoKOKwJCcaNpQ5kUQR3i2TtJlycM33+FC +Y7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoVIPVVYpbtbZNQvOSqeK3Z +ywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm66+KAQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Label: "Hongkong Post Root CA 1" +# Serial: 1000 +# MD5 Fingerprint: a8:0d:6f:39:78:b9:43:6d:77:42:6d:98:5a:cc:23:ca +# SHA1 Fingerprint: d6:da:a8:20:8d:09:d2:15:4d:24:b5:2f:cb:34:6e:b2:58:b2:8a:58 +# SHA256 Fingerprint: f9:e6:7d:33:6c:51:00:2a:c0:54:c6:32:02:2d:66:dd:a2:e7:e3:ff:f1:0a:d0:61:ed:31:d8:bb:b4:10:cf:b2 +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx +FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg +Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG +A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr +b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ +jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn +PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh +ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 +nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h +q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED +MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC +mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 +7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB +oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs +EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO +fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi +AmvZWg== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 6047274297262753887 +# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 +# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa +# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 +MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 +ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD +VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j +b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq +scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO +xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H +LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX +uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD +yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ +JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q +rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN +BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L +hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB +QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ +HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu +Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg +QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB +BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA +A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb +laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 +awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo +JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw +LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT +VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk +LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb +UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ +QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ +naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls +QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- + +# Issuer: CN=Chambers of Commerce Root - 2008 O=AC Camerfirma S.A. +# Subject: CN=Chambers of Commerce Root - 2008 O=AC Camerfirma S.A. +# Label: "Chambers of Commerce Root - 2008" +# Serial: 11806822484801597146 +# MD5 Fingerprint: 5e:80:9e:84:5a:0e:65:0b:17:02:f3:55:18:2a:3e:d7 +# SHA1 Fingerprint: 78:6a:74:ac:76:ab:14:7f:9c:6a:30:50:ba:9e:a8:7e:fe:9a:ce:3c +# SHA256 Fingerprint: 06:3e:4a:fa:c4:91:df:d3:32:f3:08:9b:85:42:e9:46:17:d8:93:d7:fe:94:4e:10:a7:93:7e:e2:9d:96:93:c0 +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz +IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz +MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj +dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw +EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp +MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G +CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 +28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq +VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q +DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR +5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL +ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a +Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl +UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s ++12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 +Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx +hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV +HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 ++HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN +YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t +L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy +ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt +IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV +HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w +DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW +PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF +5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 +glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH +FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 +pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD +xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG +tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq +jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De +fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ +d0jQ +-----END CERTIFICATE----- + +# Issuer: CN=Global Chambersign Root - 2008 O=AC Camerfirma S.A. +# Subject: CN=Global Chambersign Root - 2008 O=AC Camerfirma S.A. +# Label: "Global Chambersign Root - 2008" +# Serial: 14541511773111788494 +# MD5 Fingerprint: 9e:80:ff:78:01:0c:2e:c1:36:bd:fe:96:90:6e:08:f3 +# SHA1 Fingerprint: 4a:bd:ee:ec:95:0d:35:9c:89:ae:c7:52:a1:2c:5b:29:f6:d6:aa:0c +# SHA256 Fingerprint: 13:63:35:43:93:34:a7:69:80:16:a0:d3:24:de:72:28:4e:07:9d:7b:52:20:bb:8f:bd:74:78:16:ee:be:ba:ca +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD +VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 +IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 +MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx +MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy +cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG +A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl +BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI +hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed +KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 +G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 +zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 +ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG +HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 +Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V +yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e +beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r +6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog +zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW +BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr +ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp +ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk +cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt +YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC +CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow +KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI +hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ +UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz +X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x +fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz +a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd +Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd +SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O +AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso +M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge +v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2011" +# Serial: 0 +# MD5 Fingerprint: 73:9f:4c:4b:73:5b:79:e9:fa:ba:1c:ef:6e:cb:d5:c9 +# SHA1 Fingerprint: fe:45:65:9b:79:03:5b:98:a1:61:b5:51:2e:ac:da:58:09:48:22:4d +# SHA256 Fingerprint: bc:10:4f:15:a4:8b:e7:09:dc:a5:42:a7:e1:d4:b9:df:6f:05:45:27:e8:02:ea:a9:2d:59:54:44:25:8a:fe:71 +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix +RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p +YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw +NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK +EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl +cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz +dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ +fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns +bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD +75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP +FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV +HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp +5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu +b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA +A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p +6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 +dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys +Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI +l7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: O=Trustis Limited OU=Trustis FPS Root CA +# Subject: O=Trustis Limited OU=Trustis FPS Root CA +# Label: "Trustis FPS Root CA" +# Serial: 36053640375399034304724988975563710553 +# MD5 Fingerprint: 30:c9:e7:1e:6b:e6:14:eb:65:b2:16:69:20:31:67:4d +# SHA1 Fingerprint: 3b:c0:38:0b:33:c3:f6:a6:0c:86:15:22:93:d9:df:f5:4b:81:c0:04 +# SHA256 Fingerprint: c1:b4:82:99:ab:a5:20:8f:e9:63:0a:ce:55:ca:68:a0:3e:da:5a:51:9c:88:02:a0:d3:a6:73:be:8f:8e:55:7d +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBF +MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQL +ExNUcnVzdGlzIEZQUyBSb290IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTEx +MzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1RydXN0aXMgTGltaXRlZDEc +MBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQRUN+ +AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihH +iTHcDnlkH5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjj +vSkCqPoc4Vu5g6hBSLwacY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA +0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zto3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlB +OrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEAAaNTMFEwDwYDVR0TAQH/ +BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAdBgNVHQ4E +FgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01 +GX2cGE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmW +zaD+vkAMXBJV+JOCyinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP4 +1BIy+Q7DsdwyhEQsb8tGD+pmQQ9P8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZE +f1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHVl/9D7S3B2l0pKoU/rGXuhg8F +jZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYliB6XzCGcKQEN +ZetX2fNXlrtIzYE= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=EE Certification Centre Root CA O=AS Sertifitseerimiskeskus +# Subject: CN=EE Certification Centre Root CA O=AS Sertifitseerimiskeskus +# Label: "EE Certification Centre Root CA" +# Serial: 112324828676200291871926431888494945866 +# MD5 Fingerprint: 43:5e:88:d4:7d:1a:4a:7e:fd:84:2e:52:eb:01:d4:6f +# SHA1 Fingerprint: c9:a8:b9:e7:55:80:5e:58:e3:53:77:a7:25:eb:af:c3:7b:27:cc:d7 +# SHA256 Fingerprint: 3e:84:ba:43:42:90:85:16:e7:75:73:c0:99:2f:09:79:ca:08:4e:46:85:68:1f:f1:95:cc:ba:8a:22:9b:8a:76 +-----BEGIN CERTIFICATE----- +MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1 +MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1 +czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYG +CSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIwMTAxMDMwMTAxMDMwWhgPMjAzMDEy +MTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNl +ZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRyZSBS +b290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUy +euuOF0+W2Ap7kaJjbMeMTC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvO +bntl8jixwKIy72KyaOBhU8E2lf/slLo2rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIw +WFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw93X2PaRka9ZP585ArQ/d +MtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtNP2MbRMNE +1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/ +zQas8fElyalL1BSZMEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYB +BQUHAwMGCCsGAQUFBwMEBggrBgEFBQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEF +BQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+RjxY6hUFaTlrg4wCQiZrxTFGGV +v9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqMlIpPnTX/dqQG +E5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u +uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIW +iAYLtqZLICjU3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/v +GVCJYMzpJJUPwssd8m92kMfMdcGWxZ0= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Subject: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Label: "E-Tugra Certification Authority" +# Serial: 7667447206703254355 +# MD5 Fingerprint: b8:a1:03:63:b0:bd:21:71:70:8a:6f:13:3a:bb:79:49 +# SHA1 Fingerprint: 51:c6:e7:08:49:06:6e:f3:92:d4:5c:a0:0d:6d:a3:62:8f:c3:52:39 +# SHA256 Fingerprint: b0:bf:d5:2b:b0:d7:d9:bd:92:bf:5d:4d:c1:3d:a2:55:c0:2c:54:2f:37:83:65:ea:89:39:11:f5:5e:55:f2:3c +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV +BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC +aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV +BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 +Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz +MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ +BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp +em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY +B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH +D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF +Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo +q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D +k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH +fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut +dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM +ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 +zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX +U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 +Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 +XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF +Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR +HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY +GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c +77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 ++GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK +vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 +FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl +yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P +AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD +y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d +NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 14367148294922964480859022125800977897474 +# MD5 Fingerprint: 20:f0:27:68:d1:7e:a0:9d:0e:e6:2a:ca:df:5c:89:8e +# SHA1 Fingerprint: 69:69:56:2e:40:80:f4:24:a1:e7:19:9f:14:ba:f3:ee:58:ab:6a:bb +# SHA256 Fingerprint: be:c9:49:11:c2:95:56:76:db:6c:0a:55:09:86:d7:6e:3b:a0:05:66:7c:44:2c:97:62:b4:fb:b7:73:de:22:8c +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ +FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F +uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX +kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs +ewv4n4Q= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden Root CA - G3 O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden Root CA - G3 O=Staat der Nederlanden +# Label: "Staat der Nederlanden Root CA - G3" +# Serial: 10003001 +# MD5 Fingerprint: 0b:46:67:07:db:10:2f:19:8c:35:50:60:d1:0b:f4:37 +# SHA1 Fingerprint: d8:eb:6b:41:51:92:59:e0:f3:e7:85:00:c0:3d:b6:88:97:c9:ee:fc +# SHA256 Fingerprint: 3c:4f:b0:b9:5a:b8:b3:00:32:f4:32:b8:6f:53:5f:e1:72:c1:85:d0:fd:39:86:58:37:cf:36:18:7f:a6:f4:28 +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloX +DTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl +ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv +b3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4yolQP +cPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WW +IkYFsO2tx1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqX +xz8ecAgwoNzFs21v0IJyEavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFy +KJLZWyNtZrVtB0LrpjPOktvA9mxjeM3KTj215VKb8b475lRgsGYeCasH/lSJEULR +9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUurmkVLoR9BvUhTFXFkC4az +5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU51nus6+N8 +6U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7 +Ngzp07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHP +bMk7ccHViLVlvMDoFxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXt +BznaqB16nzaeErAMZRKQFWDZJkBE41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTt +XUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleuyjWcLhL75Lpd +INyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD +U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwp +LiniyMMB8jPqKqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8 +Ipf3YF3qKS9Ysr1YvY2WTxB1v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixp +gZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA8KCWAg8zxXHzniN9lLf9OtMJgwYh +/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b8KKaa8MFSu1BYBQw +0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0rmj1A +fsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq +4BZ+Extq1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR +1VmiiXTTn74eS9fGbbeIJG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/ +QFH1T/U67cjF68IeHRaVesd+QnGTbksVtzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM +94B7IWcnMFk= +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Label: "Staat der Nederlanden EV Root CA" +# Serial: 10000013 +# MD5 Fingerprint: fc:06:af:7b:e8:1a:f1:9a:b4:e8:d2:70:1f:c0:f5:ba +# SHA1 Fingerprint: 76:e2:7e:c1:4f:db:82:c1:c0:a6:75:b5:05:be:3d:29:b4:ed:db:bb +# SHA256 Fingerprint: 4d:24:91:41:4c:fe:95:67:46:ec:4c:ef:a6:cf:6f:72:e2:8a:13:29:43:2f:9d:8a:90:7a:c4:cb:5d:ad:c1:5a +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=LuxTrust Global Root 2 O=LuxTrust S.A. +# Subject: CN=LuxTrust Global Root 2 O=LuxTrust S.A. +# Label: "LuxTrust Global Root 2" +# Serial: 59914338225734147123941058376788110305822489521 +# MD5 Fingerprint: b2:e1:09:00:61:af:f7:f1:91:6f:c4:ad:8d:5e:3b:7c +# SHA1 Fingerprint: 1e:0e:56:19:0a:d1:8b:25:98:b2:04:44:ff:66:8a:04:17:99:5f:3f +# SHA256 Fingerprint: 54:45:5f:71:29:c2:0b:14:47:c4:18:f9:97:16:8f:24:c5:8f:c5:02:3b:f5:da:5b:e2:eb:6e:1d:d8:90:2e:d5 +-----BEGIN CERTIFICATE----- +MIIFwzCCA6ugAwIBAgIUCn6m30tEntpqJIWe5rgV0xZ/u7EwDQYJKoZIhvcNAQEL +BQAwRjELMAkGA1UEBhMCTFUxFjAUBgNVBAoMDUx1eFRydXN0IFMuQS4xHzAdBgNV +BAMMFkx1eFRydXN0IEdsb2JhbCBSb290IDIwHhcNMTUwMzA1MTMyMTU3WhcNMzUw +MzA1MTMyMTU3WjBGMQswCQYDVQQGEwJMVTEWMBQGA1UECgwNTHV4VHJ1c3QgUy5B +LjEfMB0GA1UEAwwWTHV4VHJ1c3QgR2xvYmFsIFJvb3QgMjCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBANeFl78RmOnwYoNMPIf5U2o3C/IPPIfOb9wmKb3F +ibrJgz337spbxm1Jc7TJRqMbNBM/wYlFV/TZsfs2ZUv7COJIcRHIbjuend+JZTem +hfY7RBi2xjcwYkSSl2l9QjAk5A0MiWtj3sXh306pFGxT4GHO9hcvHTy95iJMHZP1 +EMShduxq3sVs35a0VkBCwGKSMKEtFZSg0iAGCW5qbeXrt77U8PEVfIvmTroTzEsn +Xpk8F12PgX8zPU/TPxvsXD/wPEx1bvKm1Z3aLQdjAsZy6ZS8TEmVT4hSyNvoaYL4 +zDRbIvCGp4m9SAptZoFtyMhk+wHh9OHe2Z7d21vUKpkmFRseTJIpgp7VkoGSQXAZ +96Tlk0u8d2cx3Rz9MXANF5kM+Qw5GSoXtTBxVdUPrljhPS80m8+f9niFwpN6cj5m +j5wWEWCPnolvZ77gR1o7DJpni89Gxq44o/KnvObWhWszJHAiS8sIm7vI+AIpHb4g +DEa/a4ebsypmQjVGbKq6rfmYe+lQVRQxv7HaLe2ArWgk+2mr2HETMOZns4dA/Yl+ +8kPREd8vZS9kzl8UubG/Mb2HeFpZZYiq/FkySIbWTLkpS5XTdvN3JW1CHDiDTf2j +X5t/Lax5Gw5CMZdjpPuKadUiDTSQMC6otOBttpSsvItO13D8xTiOZCXhTTmQzsmH +hFhxAgMBAAGjgagwgaUwDwYDVR0TAQH/BAUwAwEB/zBCBgNVHSAEOzA5MDcGByuB +KwEBAQowLDAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5Lmx1eHRydXN0 +Lmx1MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBT/GCh2+UgFLKGu8SsbK7JT ++Et8szAdBgNVHQ4EFgQU/xgodvlIBSyhrvErGyuyU/hLfLMwDQYJKoZIhvcNAQEL +BQADggIBAGoZFO1uecEsh9QNcH7X9njJCwROxLHOk3D+sFTAMs2ZMGQXvw/l4jP9 +BzZAcg4atmpZ1gDlaCDdLnINH2pkMSCEfUmmWjfrRcmF9dTHF5kH5ptV5AzoqbTO +jFu1EVzPig4N1qx3gf4ynCSecs5U89BvolbW7MM3LGVYvlcAGvI1+ut7MV3CwRI9 +loGIlonBWVx65n9wNOeD4rHh4bhY79SV5GCc8JaXcozrhAIuZY+kt9J/Z93I055c +qqmkoCUUBpvsT34tC38ddfEz2O3OuHVtPlu5mB0xDVbYQw8wkbIEa91WvpWAVWe+ +2M2D2RjuLg+GLZKecBPs3lHJQ3gCpU3I+V/EkVhGFndadKpAvAefMLmx9xIX3eP/ +JEAdemrRTxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKre +zrnK+T+Tb/mjuuqlPpmt/f97mfVl7vBZKGfXkJWkE4SphMHozs51k2MavDzq1WQf +LSoSOcbDWjLtR5EWDrw4wVDej8oqkDQc7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+ +x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31IiyBMz2TWuJdGsE7RKlY6 +oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-1" +# Serial: 15752444095811006489 +# MD5 Fingerprint: 6e:85:f1:dc:1a:00:d3:22:d5:b2:b2:ac:6b:37:05:45 +# SHA1 Fingerprint: ff:bd:cd:e7:82:c8:43:5e:3c:6f:26:86:5c:ca:a8:3a:45:5b:c3:0a +# SHA256 Fingerprint: d4:0e:9c:86:cd:8f:e4:68:c1:77:69:59:f4:9e:a7:74:fa:54:86:84:b6:c4:06:f3:90:92:61:f4:dc:e2:57:5c +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29y +IFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkxMjMxMTcyMzE2WjCB +pDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFuYW1h +IENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUG +A1UECwweVHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZU +cnVzdENvciBSb290Q2VydCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAv463leLCJhJrMxnHQFgKq1mqjQCj/IDHUHuO1CAmujIS2CNUSSUQIpid +RtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4pQa81QBeCQryJ3pS/C3V +seq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0JEsq1pme +9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CV +EY4hgLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorW +hnAbJN7+KIor0Gqw/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/ +DeOxCbeKyKsZn3MzUOcwHwYDVR0jBBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD +ggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5mDo4Nvu7Zp5I +/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf +ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZ +yonnMlo2HD6CqFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djts +L1Ac59v2Z3kf9YKVmgenFK+P3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdN +zl/HHk484IkzlQsPpTLWPFp5LBk= +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-2" +# Serial: 2711694510199101698 +# MD5 Fingerprint: a2:e1:f8:18:0b:ba:45:d5:c7:41:2a:bb:37:52:45:64 +# SHA1 Fingerprint: b8:be:6d:cb:56:f1:55:b9:63:d4:12:ca:4e:06:34:c7:94:b2:1c:c0 +# SHA256 Fingerprint: 07:53:e9:40:37:8c:1b:d5:e3:83:6e:39:5d:ae:a5:cb:83:9e:50:46:f1:bd:0e:ae:19:51:cf:10:fe:c7:c9:65 +-----BEGIN CERTIFICATE----- +MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEfMB0GA1UEAwwWVHJ1c3RDb3Ig +Um9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEyMzExNzI2MzlaMIGk +MQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEg +Q2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYD +VQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRy +dXN0Q29yIFJvb3RDZXJ0IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCnIG7CKqJiJJWQdsg4foDSq8GbZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+ +QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9NkRvRUqdw6VC0xK5mC8tkq +1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1oYxOdqHp +2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nK +DOObXUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hape +az6LMvYHL1cEksr1/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF +3wP+TfSvPd9cW436cOGlfifHhi5qjxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88 +oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQPeSghYA2FFn3XVDjxklb9tTNM +g9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+CtgrKAmrhQhJ8Z3 +mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh +8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAd +BgNVHQ4EFgQU2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6U +nrybPZx9mCAZ5YwwYrIwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYw +DQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/hOsh80QA9z+LqBrWyOrsGS2h60COX +dKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnpkpfbsEZC89NiqpX+ +MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv2wnL +/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RX +CI/hOWB3S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYa +ZH9bDTMJBzN7Bj8RpFxwPIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW +2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dvDDqPys/cA8GiCcjl/YBeyGBCARsaU1q7 +N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYURpFHmygk71dSTlxCnKr3 +Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANExdqtvArB +As8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp +5KeXRKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu +1uwJ +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor ECA-1" +# Serial: 9548242946988625984 +# MD5 Fingerprint: 27:92:23:1d:0a:f5:40:7c:e9:e6:6b:9d:d8:f5:e7:6c +# SHA1 Fingerprint: 58:d1:df:95:95:67:6b:63:c0:f0:5b:1c:17:4d:8b:84:0b:c8:78:bd +# SHA256 Fingerprint: 5a:88:5d:b1:9c:01:d9:12:c5:75:93:88:93:8c:af:bb:df:03:1a:b2:d4:8e:91:ee:15:58:9b:42:97:1d:03:9c +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxFzAVBgNVBAMMDlRydXN0Q29y +IEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3MjgwN1owgZwxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3Ig +RUNBLTEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb +3w9U73NjKYKtR8aja+3+XzP4Q1HpGjORMRegdMTUpwHmspI+ap3tDvl0mEDTPwOA +BoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23xFUfJ3zSCNV2HykVh0A5 +3ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmcp0yJF4Ou +owReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/ +wZ0+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZF +ZtS6mFjBAgMBAAGjYzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAf +BgNVHSMEGDAWgBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAQEABT41XBVwm8nHc2Fv +civUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u/ukZMjgDfxT2 +AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F +hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50 +soIipX1TH0XsJ5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BI +WJZpTdwHjFGTot+fDz2LYLSCjaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1Wi +tJ/X5g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 146587175971765017618439757810265552097 +# MD5 Fingerprint: 82:1a:ef:d4:d2:4a:f2:9f:e2:3d:97:06:14:70:72:85 +# SHA1 Fingerprint: e1:c9:50:e6:ef:22:f8:4c:56:45:72:8b:92:20:60:d7:d5:a7:a3:e8 +# SHA256 Fingerprint: 2a:57:54:71:e3:13:40:bc:21:58:1c:bd:2c:f1:3e:15:84:63:20:3e:ce:94:bc:f9:d3:cc:19:6b:f0:9a:54:72 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaM +f/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vX +mX7wCl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7 +zUjwTcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0P +fyblqAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtc +vfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4 +Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUsp +zBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOO +Rc92wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYW +k70paDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+ +DVrNVjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgF +lQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBADiW +Cu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 +d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6Z +XPYfcX3v73svfuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZR +gyFmxhE+885H7pwoHyXa/6xmld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3 +d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9bgsiG1eGZbYwE8na6SfZu6W0eX6Dv +J4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq4BjFbkerQUIpm/Zg +DdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWErtXvM ++SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyy +F62ARPBopY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9 +SQ98POyDGCBDTtWTurQ0sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdws +E3PYJ/HQcu51OyLemGhmW/HGY0dVHLqlCFF1pkgl +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 146587176055767053814479386953112547951 +# MD5 Fingerprint: 44:ed:9a:0e:a4:09:3b:00:f2:ae:4c:a3:c6:61:b0:8b +# SHA1 Fingerprint: d2:73:96:2a:2a:5e:39:9f:73:3f:e1:c7:1e:64:3f:03:38:34:fc:4d +# SHA256 Fingerprint: c4:5d:7b:b0:8e:6d:67:e6:2e:42:35:11:0b:56:4e:5f:78:fd:92:ef:05:8c:84:0a:ea:4e:64:55:d7:58:5c:60 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3Lv +CvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3Kg +GjSY6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9Bu +XvAuMC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOd +re7kRXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXu +PuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1 +mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K +8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqj +x5RWIr9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsR +nTKaG73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0 +kzCqgc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9Ok +twIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBALZp +8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT +vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiT +z9D2PGcDFWEJ+YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiA +pJiS4wGWAqoC7o87xdFtCjMwc3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvb +pxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3DaWsYDQvTtN6LwG1BUSw7YhN4ZKJmB +R64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5rn/WkhLx3+WuXrD5R +RaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56GtmwfuNmsk +0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC +5AwiWVIQ7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiF +izoHCBy69Y9Vmhh1fuXsgWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLn +yOd/xCxgXS/Dr55FBcOEArf9LAhST4Ldo/DUhgkC +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 146587176140553309517047991083707763997 +# MD5 Fingerprint: 1a:79:5b:6b:04:52:9c:5d:c7:74:33:1b:25:9a:f9:25 +# SHA1 Fingerprint: 30:d4:24:6f:07:ff:db:91:89:8a:0b:e9:49:66:11:eb:8c:5e:46:e5 +# SHA256 Fingerprint: 15:d5:b8:77:46:19:ea:7d:54:ce:1c:a6:d0:b0:c4:03:e0:37:a9:17:f1:31:e8:a0:4e:1e:6b:7a:71:ba:bc:e5 +-----BEGIN CERTIFICATE----- +MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout +736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2A +DDL24CejQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFuk +fCPAlaUs3L6JbyO5o91lAFJekazInXJ0glMLfalAvWhgxeG4VDvBNhcl2MG9AjEA +njWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOaKaqW04MjyaR7YbPMAuhd +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 146587176229350439916519468929765261721 +# MD5 Fingerprint: 5d:b6:6a:c4:60:17:24:6a:1a:99:a8:4b:ee:5e:b4:26 +# SHA1 Fingerprint: 2a:1d:60:27:d9:4a:b1:0a:1c:4d:91:5c:cd:33:a0:cb:3e:2d:54:cb +# SHA256 Fingerprint: 71:cc:a5:39:1f:9e:79:4b:04:80:25:30:b3:63:e1:21:da:8a:30:43:bb:26:66:2f:ea:4d:ca:7f:c9:51:a4:bd +-----BEGIN CERTIFICATE----- +MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzu +hXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/l +xKvRHYqjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0 +CMRw3J5QdCHojXohw0+WbhXRIjVhLfoIN+4Zba3bssx9BzT1YBkstTTZbyACMANx +sbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11xzPKwTdb+mciUqXWi4w== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQEL +BQAwbzELMAkGA1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJ +SG9uZyBLb25nMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25n +a29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2MDMwMjI5NDZaFw00MjA2MDMwMjI5 +NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtvbmcxEjAQBgNVBAcT +CUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMXSG9u +Z2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCziNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFO +dem1p+/l6TWZ5Mwc50tfjTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mI +VoBc+L0sPOFMV4i707mV78vH9toxdCim5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV +9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOesL4jpNrcyCse2m5FHomY +2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj0mRiikKY +vLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+Tt +bNe/JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZb +x39ri1UbSsUgYT2uy1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+ +l2oBlKN8W4UdKjk60FSh0Tlxnf0h+bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YK +TE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsGxVd7GYYKecsAyVKvQv83j+Gj +Hno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwIDAQABo2MwYTAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e +i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEw +DQYJKoZIhvcNAQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG +7BJ8dNVI0lkUmcDrudHr9EgwW62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCk +MpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWldy8joRTnU+kLBEUx3XZL7av9YROXr +gZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov+BS5gLNdTaqX4fnk +GMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDceqFS +3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJm +Ozj/2ZQw9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+ +l6mc1X5VTMbeRRAc6uk7nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6c +JfTzPV4e0hz5sy229zdcxsshTrD3mUcYhcErulWuBurQB7Lcq9CClnXO0lD+mefP +L5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB60PZ2Pierc+xYw5F9KBa +LJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fqdBb9HxEG +mpv0 +-----END CERTIFICATE----- diff --git a/venv/lib/python2.7/site-packages/certifi/core.py b/venv/lib/python2.7/site-packages/certifi/core.py new file mode 100644 index 00000000..7271acf4 --- /dev/null +++ b/venv/lib/python2.7/site-packages/certifi/core.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem. +""" +import os + + +def where(): + f = os.path.dirname(__file__) + + return os.path.join(f, 'cacert.pem') diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst new file mode 100644 index 00000000..c0f044d8 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst @@ -0,0 +1,70 @@ +Chardet: The Universal Character Encoding Detector +-------------------------------------------------- + +.. image:: https://img.shields.io/travis/chardet/chardet/stable.svg + :alt: Build status + :target: https://travis-ci.org/chardet/chardet + +.. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg + :target: https://coveralls.io/r/chardet/chardet + +.. image:: https://img.shields.io/pypi/v/chardet.svg + :target: https://warehouse.python.org/project/chardet/ + :alt: Latest version on PyPI + +.. image:: https://img.shields.io/pypi/l/chardet.svg + :alt: License + + +Detects + - ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants) + - Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese) + - EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese) + - EUC-KR, ISO-2022-KR (Korean) + - KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic) + - ISO-8859-5, windows-1251 (Bulgarian) + - ISO-8859-1, windows-1252 (Western European languages) + - ISO-8859-7, windows-1253 (Greek) + - ISO-8859-8, windows-1255 (Visual and Logical Hebrew) + - TIS-620 (Thai) + +.. note:: + Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily + disabled until we can retrain the models. + +Requires Python 2.6, 2.7, or 3.3+. + +Installation +------------ + +Install from `PyPI `_:: + + pip install chardet + +Documentation +------------- + +For users, docs are now available at https://chardet.readthedocs.io/. + +Command-line Tool +----------------- + +chardet comes with a command-line script which reports on the encodings of one +or more files:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +About +----- + +This is a continuation of Mark Pilgrim's excellent chardet. Previously, two +versions needed to be maintained: one that supported python 2.x and one that +supported python 3.x. We've recently merged with `Ian Cordasco `_'s +`charade `_ fork, so now we have one +coherent version that works for Python 2.6+. + +:maintainer: Dan Blanchard + + diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/INSTALLER b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/METADATA b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/METADATA new file mode 100644 index 00000000..1427867a --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/METADATA @@ -0,0 +1,96 @@ +Metadata-Version: 2.0 +Name: chardet +Version: 3.0.4 +Summary: Universal encoding detector for Python 2 and 3 +Home-page: https://github.com/chardet/chardet +Author: Daniel Blanchard +Author-email: dan.blanchard@gmail.com +License: LGPL +Keywords: encoding,i18n,xml +Platform: UNKNOWN +Classifier: Development Status :: 4 - Beta +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3.3 +Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 +Classifier: Programming Language :: Python :: 3.6 +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: Text Processing :: Linguistic + +Chardet: The Universal Character Encoding Detector +-------------------------------------------------- + +.. image:: https://img.shields.io/travis/chardet/chardet/stable.svg + :alt: Build status + :target: https://travis-ci.org/chardet/chardet + +.. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg + :target: https://coveralls.io/r/chardet/chardet + +.. image:: https://img.shields.io/pypi/v/chardet.svg + :target: https://warehouse.python.org/project/chardet/ + :alt: Latest version on PyPI + +.. image:: https://img.shields.io/pypi/l/chardet.svg + :alt: License + + +Detects + - ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants) + - Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese) + - EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese) + - EUC-KR, ISO-2022-KR (Korean) + - KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic) + - ISO-8859-5, windows-1251 (Bulgarian) + - ISO-8859-1, windows-1252 (Western European languages) + - ISO-8859-7, windows-1253 (Greek) + - ISO-8859-8, windows-1255 (Visual and Logical Hebrew) + - TIS-620 (Thai) + +.. note:: + Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily + disabled until we can retrain the models. + +Requires Python 2.6, 2.7, or 3.3+. + +Installation +------------ + +Install from `PyPI `_:: + + pip install chardet + +Documentation +------------- + +For users, docs are now available at https://chardet.readthedocs.io/. + +Command-line Tool +----------------- + +chardet comes with a command-line script which reports on the encodings of one +or more files:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +About +----- + +This is a continuation of Mark Pilgrim's excellent chardet. Previously, two +versions needed to be maintained: one that supported python 2.x and one that +supported python 3.x. We've recently merged with `Ian Cordasco `_'s +`charade `_ fork, so now we have one +coherent version that works for Python 2.6+. + +:maintainer: Dan Blanchard + + diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/RECORD b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/RECORD new file mode 100644 index 00000000..43e262c7 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/RECORD @@ -0,0 +1,91 @@ +../../../bin/chardetect,sha256=rnpVwVV4PWwwKBPlf-mgcy4FvLp8PnvU47OIS_nrV60,266 +chardet-3.0.4.dist-info/DESCRIPTION.rst,sha256=PQ4sBsMyKFZkjC6QpmbpLn0UtCNyeb-ZqvCGEgyZMGk,2174 +chardet-3.0.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +chardet-3.0.4.dist-info/METADATA,sha256=RV_2I4B1Z586DL8oVO5Kp7X5bUdQ5EuKAvNoAEF8wSw,3239 +chardet-3.0.4.dist-info/RECORD,, +chardet-3.0.4.dist-info/WHEEL,sha256=o2k-Qa-RMNIJmUdIc7KU6VWR_ErNRbWNlxDIpl7lm34,110 +chardet-3.0.4.dist-info/entry_points.txt,sha256=fAMmhu5eJ-zAJ-smfqQwRClQ3-nozOCmvJ6-E8lgGJo,60 +chardet-3.0.4.dist-info/metadata.json,sha256=0htbRM18ujyGZDdfowgAqj6Hq2eQtwzwyhaEveKntgo,1375 +chardet-3.0.4.dist-info/top_level.txt,sha256=AowzBbZy4x8EirABDdJSLJZMkJ_53iIag8xfKR6D7kI,8 +chardet/__init__.py,sha256=YsP5wQlsHJ2auF1RZJfypiSrCA7_bQiRm3ES_NI76-Y,1559 +chardet/__init__.pyc,, +chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +chardet/big5freq.pyc,, +chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +chardet/big5prober.pyc,, +chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +chardet/chardistribution.pyc,, +chardet/charsetgroupprober.py,sha256=6bDu8YIiRuScX4ca9Igb0U69TA2PGXXDej6Cc4_9kO4,3787 +chardet/charsetgroupprober.pyc,, +chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +chardet/charsetprober.pyc,, +chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +chardet/cli/__init__.pyc,, +chardet/cli/chardetect.py,sha256=YBO8L4mXo0WR6_-Fjh_8QxPBoEBNqB9oNxNrdc54AQs,2738 +chardet/cli/chardetect.pyc,, +chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +chardet/codingstatemachine.pyc,, +chardet/compat.py,sha256=PKTzHkSbtbHDqS9PyujMbX74q1a8mMpeQTDVsQhZMRw,1134 +chardet/compat.pyc,, +chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +chardet/cp949prober.pyc,, +chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +chardet/enums.pyc,, +chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +chardet/escprober.pyc,, +chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +chardet/escsm.pyc,, +chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +chardet/eucjpprober.pyc,, +chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +chardet/euckrfreq.pyc,, +chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +chardet/euckrprober.pyc,, +chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +chardet/euctwfreq.pyc,, +chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +chardet/euctwprober.pyc,, +chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +chardet/gb2312freq.pyc,, +chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +chardet/gb2312prober.pyc,, +chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +chardet/hebrewprober.pyc,, +chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +chardet/jisfreq.pyc,, +chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +chardet/jpcntx.pyc,, +chardet/langbulgarianmodel.py,sha256=1HqQS9Pbtnj1xQgxitJMvw8X6kKr5OockNCZWfEQrPE,12839 +chardet/langbulgarianmodel.pyc,, +chardet/langcyrillicmodel.py,sha256=LODajvsetH87yYDDQKA2CULXUH87tI223dhfjh9Zx9c,17948 +chardet/langcyrillicmodel.pyc,, +chardet/langgreekmodel.py,sha256=8YAW7bU8YwSJap0kIJSbPMw1BEqzGjWzqcqf0WgUKAA,12688 +chardet/langgreekmodel.pyc,, +chardet/langhebrewmodel.py,sha256=JSnqmE5E62tDLTPTvLpQsg5gOMO4PbdWRvV7Avkc0HA,11345 +chardet/langhebrewmodel.pyc,, +chardet/langhungarianmodel.py,sha256=RhapYSG5l0ZaO-VV4Fan5sW0WRGQqhwBM61yx3yxyOA,12592 +chardet/langhungarianmodel.pyc,, +chardet/langthaimodel.py,sha256=8l0173Gu_W6G8mxmQOTEF4ls2YdE7FxWf3QkSxEGXJQ,11290 +chardet/langthaimodel.pyc,, +chardet/langturkishmodel.py,sha256=W22eRNJsqI6uWAfwXSKVWWnCerYqrI8dZQTm_M0lRFk,11102 +chardet/langturkishmodel.pyc,, +chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +chardet/latin1prober.pyc,, +chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +chardet/mbcharsetprober.pyc,, +chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +chardet/mbcsgroupprober.pyc,, +chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +chardet/mbcssm.pyc,, +chardet/sbcharsetprober.py,sha256=LDSpCldDCFlYwUkGkwD2oFxLlPWIWXT09akH_2PiY74,5657 +chardet/sbcharsetprober.pyc,, +chardet/sbcsgroupprober.py,sha256=1IprcCB_k1qfmnxGC6MBbxELlKqD3scW6S8YIwdeyXA,3546 +chardet/sbcsgroupprober.pyc,, +chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +chardet/sjisprober.pyc,, +chardet/universaldetector.py,sha256=qL0174lSZE442eB21nnktT9_VcAye07laFWUeUrjttY,12485 +chardet/universaldetector.pyc,, +chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +chardet/utf8prober.pyc,, +chardet/version.py,sha256=sp3B08mrDXB-pf3K9fqJ_zeDHOCLC8RrngQyDFap_7g,242 +chardet/version.pyc,, diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/WHEEL b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/WHEEL new file mode 100644 index 00000000..8b6dd1b5 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/WHEEL @@ -0,0 +1,6 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.29.0) +Root-Is-Purelib: true +Tag: py2-none-any +Tag: py3-none-any + diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt new file mode 100644 index 00000000..a884269e --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +chardetect = chardet.cli.chardetect:main + diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/metadata.json b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/metadata.json new file mode 100644 index 00000000..8cdf0256 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/metadata.json @@ -0,0 +1 @@ +{"classifiers": ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Linguistic"], "extensions": {"python.commands": {"wrap_console": {"chardetect": "chardet.cli.chardetect:main"}}, "python.details": {"contacts": [{"email": "dan.blanchard@gmail.com", "name": "Daniel Blanchard", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/chardet/chardet"}}, "python.exports": {"console_scripts": {"chardetect": "chardet.cli.chardetect:main"}}}, "generator": "bdist_wheel (0.29.0)", "keywords": ["encoding", "i18n", "xml"], "license": "LGPL", "metadata_version": "2.0", "name": "chardet", "summary": "Universal encoding detector for Python 2 and 3", "test_requires": [{"requires": ["hypothesis", "pytest"]}], "version": "3.0.4"} \ No newline at end of file diff --git a/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/top_level.txt b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/top_level.txt new file mode 100644 index 00000000..79236f25 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet-3.0.4.dist-info/top_level.txt @@ -0,0 +1 @@ +chardet diff --git a/venv/lib/python2.7/site-packages/chardet/__init__.py b/venv/lib/python2.7/site-packages/chardet/__init__.py new file mode 100644 index 00000000..0f9f820e --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/__init__.py @@ -0,0 +1,39 @@ +######################## BEGIN LICENSE BLOCK ######################## +# 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 +######################### END LICENSE BLOCK ######################### + + +from .compat import PY2, PY3 +from .universaldetector import UniversalDetector +from .version import __version__, VERSION + + +def detect(byte_str): + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{0}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + detector = UniversalDetector() + detector.feed(byte_str) + return detector.close() diff --git a/venv/lib/python2.7/site-packages/chardet/big5freq.py b/venv/lib/python2.7/site-packages/chardet/big5freq.py new file mode 100644 index 00000000..38f32517 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/big5freq.py @@ -0,0 +1,386 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# Big5 frequency table +# by Taiwan's Mandarin Promotion Council +# +# +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Ideal Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +BIG5_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +#Char to FreqOrder table +BIG5_TABLE_SIZE = 5376 + +BIG5_CHAR_TO_FREQ_ORDER = ( + 1,1801,1506, 255,1431, 198, 9, 82, 6,5008, 177, 202,3681,1256,2821, 110, # 16 +3814, 33,3274, 261, 76, 44,2114, 16,2946,2187,1176, 659,3971, 26,3451,2653, # 32 +1198,3972,3350,4202, 410,2215, 302, 590, 361,1964, 8, 204, 58,4510,5009,1932, # 48 + 63,5010,5011, 317,1614, 75, 222, 159,4203,2417,1480,5012,3555,3091, 224,2822, # 64 +3682, 3, 10,3973,1471, 29,2787,1135,2866,1940, 873, 130,3275,1123, 312,5013, # 80 +4511,2052, 507, 252, 682,5014, 142,1915, 124, 206,2947, 34,3556,3204, 64, 604, # 96 +5015,2501,1977,1978, 155,1991, 645, 641,1606,5016,3452, 337, 72, 406,5017, 80, # 112 + 630, 238,3205,1509, 263, 939,1092,2654, 756,1440,1094,3453, 449, 69,2987, 591, # 128 + 179,2096, 471, 115,2035,1844, 60, 50,2988, 134, 806,1869, 734,2036,3454, 180, # 144 + 995,1607, 156, 537,2907, 688,5018, 319,1305, 779,2145, 514,2379, 298,4512, 359, # 160 +2502, 90,2716,1338, 663, 11, 906,1099,2553, 20,2441, 182, 532,1716,5019, 732, # 176 +1376,4204,1311,1420,3206, 25,2317,1056, 113, 399, 382,1950, 242,3455,2474, 529, # 192 +3276, 475,1447,3683,5020, 117, 21, 656, 810,1297,2300,2334,3557,5021, 126,4205, # 208 + 706, 456, 150, 613,4513, 71,1118,2037,4206, 145,3092, 85, 835, 486,2115,1246, # 224 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,5022,2128,2359, 347,3815, 221, # 240 +3558,3135,5023,1956,1153,4207, 83, 296,1199,3093, 192, 624, 93,5024, 822,1898, # 256 +2823,3136, 795,2065, 991,1554,1542,1592, 27, 43,2867, 859, 139,1456, 860,4514, # 272 + 437, 712,3974, 164,2397,3137, 695, 211,3037,2097, 195,3975,1608,3559,3560,3684, # 288 +3976, 234, 811,2989,2098,3977,2233,1441,3561,1615,2380, 668,2077,1638, 305, 228, # 304 +1664,4515, 467, 415,5025, 262,2099,1593, 239, 108, 300, 200,1033, 512,1247,2078, # 320 +5026,5027,2176,3207,3685,2682, 593, 845,1062,3277, 88,1723,2038,3978,1951, 212, # 336 + 266, 152, 149, 468,1899,4208,4516, 77, 187,5028,3038, 37, 5,2990,5029,3979, # 352 +5030,5031, 39,2524,4517,2908,3208,2079, 55, 148, 74,4518, 545, 483,1474,1029, # 368 +1665, 217,1870,1531,3138,1104,2655,4209, 24, 172,3562, 900,3980,3563,3564,4519, # 384 + 32,1408,2824,1312, 329, 487,2360,2251,2717, 784,2683, 4,3039,3351,1427,1789, # 400 + 188, 109, 499,5032,3686,1717,1790, 888,1217,3040,4520,5033,3565,5034,3352,1520, # 416 +3687,3981, 196,1034, 775,5035,5036, 929,1816, 249, 439, 38,5037,1063,5038, 794, # 432 +3982,1435,2301, 46, 178,3278,2066,5039,2381,5040, 214,1709,4521, 804, 35, 707, # 448 + 324,3688,1601,2554, 140, 459,4210,5041,5042,1365, 839, 272, 978,2262,2580,3456, # 464 +2129,1363,3689,1423, 697, 100,3094, 48, 70,1231, 495,3139,2196,5043,1294,5044, # 480 +2080, 462, 586,1042,3279, 853, 256, 988, 185,2382,3457,1698, 434,1084,5045,3458, # 496 + 314,2625,2788,4522,2335,2336, 569,2285, 637,1817,2525, 757,1162,1879,1616,3459, # 512 + 287,1577,2116, 768,4523,1671,2868,3566,2526,1321,3816, 909,2418,5046,4211, 933, # 528 +3817,4212,2053,2361,1222,4524, 765,2419,1322, 786,4525,5047,1920,1462,1677,2909, # 544 +1699,5048,4526,1424,2442,3140,3690,2600,3353,1775,1941,3460,3983,4213, 309,1369, # 560 +1130,2825, 364,2234,1653,1299,3984,3567,3985,3986,2656, 525,1085,3041, 902,2001, # 576 +1475, 964,4527, 421,1845,1415,1057,2286, 940,1364,3141, 376,4528,4529,1381, 7, # 592 +2527, 983,2383, 336,1710,2684,1846, 321,3461, 559,1131,3042,2752,1809,1132,1313, # 608 + 265,1481,1858,5049, 352,1203,2826,3280, 167,1089, 420,2827, 776, 792,1724,3568, # 624 +4214,2443,3281,5050,4215,5051, 446, 229, 333,2753, 901,3818,1200,1557,4530,2657, # 640 +1921, 395,2754,2685,3819,4216,1836, 125, 916,3209,2626,4531,5052,5053,3820,5054, # 656 +5055,5056,4532,3142,3691,1133,2555,1757,3462,1510,2318,1409,3569,5057,2146, 438, # 672 +2601,2910,2384,3354,1068, 958,3043, 461, 311,2869,2686,4217,1916,3210,4218,1979, # 688 + 383, 750,2755,2627,4219, 274, 539, 385,1278,1442,5058,1154,1965, 384, 561, 210, # 704 + 98,1295,2556,3570,5059,1711,2420,1482,3463,3987,2911,1257, 129,5060,3821, 642, # 720 + 523,2789,2790,2658,5061, 141,2235,1333, 68, 176, 441, 876, 907,4220, 603,2602, # 736 + 710, 171,3464, 404, 549, 18,3143,2398,1410,3692,1666,5062,3571,4533,2912,4534, # 752 +5063,2991, 368,5064, 146, 366, 99, 871,3693,1543, 748, 807,1586,1185, 22,2263, # 768 + 379,3822,3211,5065,3212, 505,1942,2628,1992,1382,2319,5066, 380,2362, 218, 702, # 784 +1818,1248,3465,3044,3572,3355,3282,5067,2992,3694, 930,3283,3823,5068, 59,5069, # 800 + 585, 601,4221, 497,3466,1112,1314,4535,1802,5070,1223,1472,2177,5071, 749,1837, # 816 + 690,1900,3824,1773,3988,1476, 429,1043,1791,2236,2117, 917,4222, 447,1086,1629, # 832 +5072, 556,5073,5074,2021,1654, 844,1090, 105, 550, 966,1758,2828,1008,1783, 686, # 848 +1095,5075,2287, 793,1602,5076,3573,2603,4536,4223,2948,2302,4537,3825, 980,2503, # 864 + 544, 353, 527,4538, 908,2687,2913,5077, 381,2629,1943,1348,5078,1341,1252, 560, # 880 +3095,5079,3467,2870,5080,2054, 973, 886,2081, 143,4539,5081,5082, 157,3989, 496, # 896 +4224, 57, 840, 540,2039,4540,4541,3468,2118,1445, 970,2264,1748,1966,2082,4225, # 912 +3144,1234,1776,3284,2829,3695, 773,1206,2130,1066,2040,1326,3990,1738,1725,4226, # 928 + 279,3145, 51,1544,2604, 423,1578,2131,2067, 173,4542,1880,5083,5084,1583, 264, # 944 + 610,3696,4543,2444, 280, 154,5085,5086,5087,1739, 338,1282,3096, 693,2871,1411, # 960 +1074,3826,2445,5088,4544,5089,5090,1240, 952,2399,5091,2914,1538,2688, 685,1483, # 976 +4227,2475,1436, 953,4228,2055,4545, 671,2400, 79,4229,2446,3285, 608, 567,2689, # 992 +3469,4230,4231,1691, 393,1261,1792,2401,5092,4546,5093,5094,5095,5096,1383,1672, # 1008 +3827,3213,1464, 522,1119, 661,1150, 216, 675,4547,3991,1432,3574, 609,4548,2690, # 1024 +2402,5097,5098,5099,4232,3045, 0,5100,2476, 315, 231,2447, 301,3356,4549,2385, # 1040 +5101, 233,4233,3697,1819,4550,4551,5102, 96,1777,1315,2083,5103, 257,5104,1810, # 1056 +3698,2718,1139,1820,4234,2022,1124,2164,2791,1778,2659,5105,3097, 363,1655,3214, # 1072 +5106,2993,5107,5108,5109,3992,1567,3993, 718, 103,3215, 849,1443, 341,3357,2949, # 1088 +1484,5110,1712, 127, 67, 339,4235,2403, 679,1412, 821,5111,5112, 834, 738, 351, # 1104 +2994,2147, 846, 235,1497,1881, 418,1993,3828,2719, 186,1100,2148,2756,3575,1545, # 1120 +1355,2950,2872,1377, 583,3994,4236,2581,2995,5113,1298,3699,1078,2557,3700,2363, # 1136 + 78,3829,3830, 267,1289,2100,2002,1594,4237, 348, 369,1274,2197,2178,1838,4552, # 1152 +1821,2830,3701,2757,2288,2003,4553,2951,2758, 144,3358, 882,4554,3995,2759,3470, # 1168 +4555,2915,5114,4238,1726, 320,5115,3996,3046, 788,2996,5116,2831,1774,1327,2873, # 1184 +3997,2832,5117,1306,4556,2004,1700,3831,3576,2364,2660, 787,2023, 506, 824,3702, # 1200 + 534, 323,4557,1044,3359,2024,1901, 946,3471,5118,1779,1500,1678,5119,1882,4558, # 1216 + 165, 243,4559,3703,2528, 123, 683,4239, 764,4560, 36,3998,1793, 589,2916, 816, # 1232 + 626,1667,3047,2237,1639,1555,1622,3832,3999,5120,4000,2874,1370,1228,1933, 891, # 1248 +2084,2917, 304,4240,5121, 292,2997,2720,3577, 691,2101,4241,1115,4561, 118, 662, # 1264 +5122, 611,1156, 854,2386,1316,2875, 2, 386, 515,2918,5123,5124,3286, 868,2238, # 1280 +1486, 855,2661, 785,2216,3048,5125,1040,3216,3578,5126,3146, 448,5127,1525,5128, # 1296 +2165,4562,5129,3833,5130,4242,2833,3579,3147, 503, 818,4001,3148,1568, 814, 676, # 1312 +1444, 306,1749,5131,3834,1416,1030, 197,1428, 805,2834,1501,4563,5132,5133,5134, # 1328 +1994,5135,4564,5136,5137,2198, 13,2792,3704,2998,3149,1229,1917,5138,3835,2132, # 1344 +5139,4243,4565,2404,3580,5140,2217,1511,1727,1120,5141,5142, 646,3836,2448, 307, # 1360 +5143,5144,1595,3217,5145,5146,5147,3705,1113,1356,4002,1465,2529,2530,5148, 519, # 1376 +5149, 128,2133, 92,2289,1980,5150,4003,1512, 342,3150,2199,5151,2793,2218,1981, # 1392 +3360,4244, 290,1656,1317, 789, 827,2365,5152,3837,4566, 562, 581,4004,5153, 401, # 1408 +4567,2252, 94,4568,5154,1399,2794,5155,1463,2025,4569,3218,1944,5156, 828,1105, # 1424 +4245,1262,1394,5157,4246, 605,4570,5158,1784,2876,5159,2835, 819,2102, 578,2200, # 1440 +2952,5160,1502, 436,3287,4247,3288,2836,4005,2919,3472,3473,5161,2721,2320,5162, # 1456 +5163,2337,2068, 23,4571, 193, 826,3838,2103, 699,1630,4248,3098, 390,1794,1064, # 1472 +3581,5164,1579,3099,3100,1400,5165,4249,1839,1640,2877,5166,4572,4573, 137,4250, # 1488 + 598,3101,1967, 780, 104, 974,2953,5167, 278, 899, 253, 402, 572, 504, 493,1339, # 1504 +5168,4006,1275,4574,2582,2558,5169,3706,3049,3102,2253, 565,1334,2722, 863, 41, # 1520 +5170,5171,4575,5172,1657,2338, 19, 463,2760,4251, 606,5173,2999,3289,1087,2085, # 1536 +1323,2662,3000,5174,1631,1623,1750,4252,2691,5175,2878, 791,2723,2663,2339, 232, # 1552 +2421,5176,3001,1498,5177,2664,2630, 755,1366,3707,3290,3151,2026,1609, 119,1918, # 1568 +3474, 862,1026,4253,5178,4007,3839,4576,4008,4577,2265,1952,2477,5179,1125, 817, # 1584 +4254,4255,4009,1513,1766,2041,1487,4256,3050,3291,2837,3840,3152,5180,5181,1507, # 1600 +5182,2692, 733, 40,1632,1106,2879, 345,4257, 841,2531, 230,4578,3002,1847,3292, # 1616 +3475,5183,1263, 986,3476,5184, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562, # 1632 +4010,4011,2954, 967,2761,2665,1349, 592,2134,1692,3361,3003,1995,4258,1679,4012, # 1648 +1902,2188,5185, 739,3708,2724,1296,1290,5186,4259,2201,2202,1922,1563,2605,2559, # 1664 +1871,2762,3004,5187, 435,5188, 343,1108, 596, 17,1751,4579,2239,3477,3709,5189, # 1680 +4580, 294,3582,2955,1693, 477, 979, 281,2042,3583, 643,2043,3710,2631,2795,2266, # 1696 +1031,2340,2135,2303,3584,4581, 367,1249,2560,5190,3585,5191,4582,1283,3362,2005, # 1712 + 240,1762,3363,4583,4584, 836,1069,3153, 474,5192,2149,2532, 268,3586,5193,3219, # 1728 +1521,1284,5194,1658,1546,4260,5195,3587,3588,5196,4261,3364,2693,1685,4262, 961, # 1744 +1673,2632, 190,2006,2203,3841,4585,4586,5197, 570,2504,3711,1490,5198,4587,2633, # 1760 +3293,1957,4588, 584,1514, 396,1045,1945,5199,4589,1968,2449,5200,5201,4590,4013, # 1776 + 619,5202,3154,3294, 215,2007,2796,2561,3220,4591,3221,4592, 763,4263,3842,4593, # 1792 +5203,5204,1958,1767,2956,3365,3712,1174, 452,1477,4594,3366,3155,5205,2838,1253, # 1808 +2387,2189,1091,2290,4264, 492,5206, 638,1169,1825,2136,1752,4014, 648, 926,1021, # 1824 +1324,4595, 520,4596, 997, 847,1007, 892,4597,3843,2267,1872,3713,2405,1785,4598, # 1840 +1953,2957,3103,3222,1728,4265,2044,3714,4599,2008,1701,3156,1551, 30,2268,4266, # 1856 +5207,2027,4600,3589,5208, 501,5209,4267, 594,3478,2166,1822,3590,3479,3591,3223, # 1872 + 829,2839,4268,5210,1680,3157,1225,4269,5211,3295,4601,4270,3158,2341,5212,4602, # 1888 +4271,5213,4015,4016,5214,1848,2388,2606,3367,5215,4603, 374,4017, 652,4272,4273, # 1904 + 375,1140, 798,5216,5217,5218,2366,4604,2269, 546,1659, 138,3051,2450,4605,5219, # 1920 +2254, 612,1849, 910, 796,3844,1740,1371, 825,3845,3846,5220,2920,2562,5221, 692, # 1936 + 444,3052,2634, 801,4606,4274,5222,1491, 244,1053,3053,4275,4276, 340,5223,4018, # 1952 +1041,3005, 293,1168, 87,1357,5224,1539, 959,5225,2240, 721, 694,4277,3847, 219, # 1968 +1478, 644,1417,3368,2666,1413,1401,1335,1389,4019,5226,5227,3006,2367,3159,1826, # 1984 + 730,1515, 184,2840, 66,4607,5228,1660,2958, 246,3369, 378,1457, 226,3480, 975, # 2000 +4020,2959,1264,3592, 674, 696,5229, 163,5230,1141,2422,2167, 713,3593,3370,4608, # 2016 +4021,5231,5232,1186, 15,5233,1079,1070,5234,1522,3224,3594, 276,1050,2725, 758, # 2032 +1126, 653,2960,3296,5235,2342, 889,3595,4022,3104,3007, 903,1250,4609,4023,3481, # 2048 +3596,1342,1681,1718, 766,3297, 286, 89,2961,3715,5236,1713,5237,2607,3371,3008, # 2064 +5238,2962,2219,3225,2880,5239,4610,2505,2533, 181, 387,1075,4024, 731,2190,3372, # 2080 +5240,3298, 310, 313,3482,2304, 770,4278, 54,3054, 189,4611,3105,3848,4025,5241, # 2096 +1230,1617,1850, 355,3597,4279,4612,3373, 111,4280,3716,1350,3160,3483,3055,4281, # 2112 +2150,3299,3598,5242,2797,4026,4027,3009, 722,2009,5243,1071, 247,1207,2343,2478, # 2128 +1378,4613,2010, 864,1437,1214,4614, 373,3849,1142,2220, 667,4615, 442,2763,2563, # 2144 +3850,4028,1969,4282,3300,1840, 837, 170,1107, 934,1336,1883,5244,5245,2119,4283, # 2160 +2841, 743,1569,5246,4616,4284, 582,2389,1418,3484,5247,1803,5248, 357,1395,1729, # 2176 +3717,3301,2423,1564,2241,5249,3106,3851,1633,4617,1114,2086,4285,1532,5250, 482, # 2192 +2451,4618,5251,5252,1492, 833,1466,5253,2726,3599,1641,2842,5254,1526,1272,3718, # 2208 +4286,1686,1795, 416,2564,1903,1954,1804,5255,3852,2798,3853,1159,2321,5256,2881, # 2224 +4619,1610,1584,3056,2424,2764, 443,3302,1163,3161,5257,5258,4029,5259,4287,2506, # 2240 +3057,4620,4030,3162,2104,1647,3600,2011,1873,4288,5260,4289, 431,3485,5261, 250, # 2256 + 97, 81,4290,5262,1648,1851,1558, 160, 848,5263, 866, 740,1694,5264,2204,2843, # 2272 +3226,4291,4621,3719,1687, 950,2479, 426, 469,3227,3720,3721,4031,5265,5266,1188, # 2288 + 424,1996, 861,3601,4292,3854,2205,2694, 168,1235,3602,4293,5267,2087,1674,4622, # 2304 +3374,3303, 220,2565,1009,5268,3855, 670,3010, 332,1208, 717,5269,5270,3603,2452, # 2320 +4032,3375,5271, 513,5272,1209,2882,3376,3163,4623,1080,5273,5274,5275,5276,2534, # 2336 +3722,3604, 815,1587,4033,4034,5277,3605,3486,3856,1254,4624,1328,3058,1390,4035, # 2352 +1741,4036,3857,4037,5278, 236,3858,2453,3304,5279,5280,3723,3859,1273,3860,4625, # 2368 +5281, 308,5282,4626, 245,4627,1852,2480,1307,2583, 430, 715,2137,2454,5283, 270, # 2384 + 199,2883,4038,5284,3606,2727,1753, 761,1754, 725,1661,1841,4628,3487,3724,5285, # 2400 +5286, 587, 14,3305, 227,2608, 326, 480,2270, 943,2765,3607, 291, 650,1884,5287, # 2416 +1702,1226, 102,1547, 62,3488, 904,4629,3489,1164,4294,5288,5289,1224,1548,2766, # 2432 + 391, 498,1493,5290,1386,1419,5291,2056,1177,4630, 813, 880,1081,2368, 566,1145, # 2448 +4631,2291,1001,1035,2566,2609,2242, 394,1286,5292,5293,2069,5294, 86,1494,1730, # 2464 +4039, 491,1588, 745, 897,2963, 843,3377,4040,2767,2884,3306,1768, 998,2221,2070, # 2480 + 397,1827,1195,1970,3725,3011,3378, 284,5295,3861,2507,2138,2120,1904,5296,4041, # 2496 +2151,4042,4295,1036,3490,1905, 114,2567,4296, 209,1527,5297,5298,2964,2844,2635, # 2512 +2390,2728,3164, 812,2568,5299,3307,5300,1559, 737,1885,3726,1210, 885, 28,2695, # 2528 +3608,3862,5301,4297,1004,1780,4632,5302, 346,1982,2222,2696,4633,3863,1742, 797, # 2544 +1642,4043,1934,1072,1384,2152, 896,4044,3308,3727,3228,2885,3609,5303,2569,1959, # 2560 +4634,2455,1786,5304,5305,5306,4045,4298,1005,1308,3728,4299,2729,4635,4636,1528, # 2576 +2610, 161,1178,4300,1983, 987,4637,1101,4301, 631,4046,1157,3229,2425,1343,1241, # 2592 +1016,2243,2570, 372, 877,2344,2508,1160, 555,1935, 911,4047,5307, 466,1170, 169, # 2608 +1051,2921,2697,3729,2481,3012,1182,2012,2571,1251,2636,5308, 992,2345,3491,1540, # 2624 +2730,1201,2071,2406,1997,2482,5309,4638, 528,1923,2191,1503,1874,1570,2369,3379, # 2640 +3309,5310, 557,1073,5311,1828,3492,2088,2271,3165,3059,3107, 767,3108,2799,4639, # 2656 +1006,4302,4640,2346,1267,2179,3730,3230, 778,4048,3231,2731,1597,2667,5312,4641, # 2672 +5313,3493,5314,5315,5316,3310,2698,1433,3311, 131, 95,1504,4049, 723,4303,3166, # 2688 +1842,3610,2768,2192,4050,2028,2105,3731,5317,3013,4051,1218,5318,3380,3232,4052, # 2704 +4304,2584, 248,1634,3864, 912,5319,2845,3732,3060,3865, 654, 53,5320,3014,5321, # 2720 +1688,4642, 777,3494,1032,4053,1425,5322, 191, 820,2121,2846, 971,4643, 931,3233, # 2736 + 135, 664, 783,3866,1998, 772,2922,1936,4054,3867,4644,2923,3234, 282,2732, 640, # 2752 +1372,3495,1127, 922, 325,3381,5323,5324, 711,2045,5325,5326,4055,2223,2800,1937, # 2768 +4056,3382,2224,2255,3868,2305,5327,4645,3869,1258,3312,4057,3235,2139,2965,4058, # 2784 +4059,5328,2225, 258,3236,4646, 101,1227,5329,3313,1755,5330,1391,3314,5331,2924, # 2800 +2057, 893,5332,5333,5334,1402,4305,2347,5335,5336,3237,3611,5337,5338, 878,1325, # 2816 +1781,2801,4647, 259,1385,2585, 744,1183,2272,4648,5339,4060,2509,5340, 684,1024, # 2832 +4306,5341, 472,3612,3496,1165,3315,4061,4062, 322,2153, 881, 455,1695,1152,1340, # 2848 + 660, 554,2154,4649,1058,4650,4307, 830,1065,3383,4063,4651,1924,5342,1703,1919, # 2864 +5343, 932,2273, 122,5344,4652, 947, 677,5345,3870,2637, 297,1906,1925,2274,4653, # 2880 +2322,3316,5346,5347,4308,5348,4309, 84,4310, 112, 989,5349, 547,1059,4064, 701, # 2896 +3613,1019,5350,4311,5351,3497, 942, 639, 457,2306,2456, 993,2966, 407, 851, 494, # 2912 +4654,3384, 927,5352,1237,5353,2426,3385, 573,4312, 680, 921,2925,1279,1875, 285, # 2928 + 790,1448,1984, 719,2168,5354,5355,4655,4065,4066,1649,5356,1541, 563,5357,1077, # 2944 +5358,3386,3061,3498, 511,3015,4067,4068,3733,4069,1268,2572,3387,3238,4656,4657, # 2960 +5359, 535,1048,1276,1189,2926,2029,3167,1438,1373,2847,2967,1134,2013,5360,4313, # 2976 +1238,2586,3109,1259,5361, 700,5362,2968,3168,3734,4314,5363,4315,1146,1876,1907, # 2992 +4658,2611,4070, 781,2427, 132,1589, 203, 147, 273,2802,2407, 898,1787,2155,4071, # 3008 +4072,5364,3871,2803,5365,5366,4659,4660,5367,3239,5368,1635,3872, 965,5369,1805, # 3024 +2699,1516,3614,1121,1082,1329,3317,4073,1449,3873, 65,1128,2848,2927,2769,1590, # 3040 +3874,5370,5371, 12,2668, 45, 976,2587,3169,4661, 517,2535,1013,1037,3240,5372, # 3056 +3875,2849,5373,3876,5374,3499,5375,2612, 614,1999,2323,3877,3110,2733,2638,5376, # 3072 +2588,4316, 599,1269,5377,1811,3735,5378,2700,3111, 759,1060, 489,1806,3388,3318, # 3088 +1358,5379,5380,2391,1387,1215,2639,2256, 490,5381,5382,4317,1759,2392,2348,5383, # 3104 +4662,3878,1908,4074,2640,1807,3241,4663,3500,3319,2770,2349, 874,5384,5385,3501, # 3120 +3736,1859, 91,2928,3737,3062,3879,4664,5386,3170,4075,2669,5387,3502,1202,1403, # 3136 +3880,2969,2536,1517,2510,4665,3503,2511,5388,4666,5389,2701,1886,1495,1731,4076, # 3152 +2370,4667,5390,2030,5391,5392,4077,2702,1216, 237,2589,4318,2324,4078,3881,4668, # 3168 +4669,2703,3615,3504, 445,4670,5393,5394,5395,5396,2771, 61,4079,3738,1823,4080, # 3184 +5397, 687,2046, 935, 925, 405,2670, 703,1096,1860,2734,4671,4081,1877,1367,2704, # 3200 +3389, 918,2106,1782,2483, 334,3320,1611,1093,4672, 564,3171,3505,3739,3390, 945, # 3216 +2641,2058,4673,5398,1926, 872,4319,5399,3506,2705,3112, 349,4320,3740,4082,4674, # 3232 +3882,4321,3741,2156,4083,4675,4676,4322,4677,2408,2047, 782,4084, 400, 251,4323, # 3248 +1624,5400,5401, 277,3742, 299,1265, 476,1191,3883,2122,4324,4325,1109, 205,5402, # 3264 +2590,1000,2157,3616,1861,5403,5404,5405,4678,5406,4679,2573, 107,2484,2158,4085, # 3280 +3507,3172,5407,1533, 541,1301, 158, 753,4326,2886,3617,5408,1696, 370,1088,4327, # 3296 +4680,3618, 579, 327, 440, 162,2244, 269,1938,1374,3508, 968,3063, 56,1396,3113, # 3312 +2107,3321,3391,5409,1927,2159,4681,3016,5410,3619,5411,5412,3743,4682,2485,5413, # 3328 +2804,5414,1650,4683,5415,2613,5416,5417,4086,2671,3392,1149,3393,4087,3884,4088, # 3344 +5418,1076, 49,5419, 951,3242,3322,3323, 450,2850, 920,5420,1812,2805,2371,4328, # 3360 +1909,1138,2372,3885,3509,5421,3243,4684,1910,1147,1518,2428,4685,3886,5422,4686, # 3376 +2393,2614, 260,1796,3244,5423,5424,3887,3324, 708,5425,3620,1704,5426,3621,1351, # 3392 +1618,3394,3017,1887, 944,4329,3395,4330,3064,3396,4331,5427,3744, 422, 413,1714, # 3408 +3325, 500,2059,2350,4332,2486,5428,1344,1911, 954,5429,1668,5430,5431,4089,2409, # 3424 +4333,3622,3888,4334,5432,2307,1318,2512,3114, 133,3115,2887,4687, 629, 31,2851, # 3440 +2706,3889,4688, 850, 949,4689,4090,2970,1732,2089,4335,1496,1853,5433,4091, 620, # 3456 +3245, 981,1242,3745,3397,1619,3746,1643,3326,2140,2457,1971,1719,3510,2169,5434, # 3472 +3246,5435,5436,3398,1829,5437,1277,4690,1565,2048,5438,1636,3623,3116,5439, 869, # 3488 +2852, 655,3890,3891,3117,4092,3018,3892,1310,3624,4691,5440,5441,5442,1733, 558, # 3504 +4692,3747, 335,1549,3065,1756,4336,3748,1946,3511,1830,1291,1192, 470,2735,2108, # 3520 +2806, 913,1054,4093,5443,1027,5444,3066,4094,4693, 982,2672,3399,3173,3512,3247, # 3536 +3248,1947,2807,5445, 571,4694,5446,1831,5447,3625,2591,1523,2429,5448,2090, 984, # 3552 +4695,3749,1960,5449,3750, 852, 923,2808,3513,3751, 969,1519, 999,2049,2325,1705, # 3568 +5450,3118, 615,1662, 151, 597,4095,2410,2326,1049, 275,4696,3752,4337, 568,3753, # 3584 +3626,2487,4338,3754,5451,2430,2275, 409,3249,5452,1566,2888,3514,1002, 769,2853, # 3600 + 194,2091,3174,3755,2226,3327,4339, 628,1505,5453,5454,1763,2180,3019,4096, 521, # 3616 +1161,2592,1788,2206,2411,4697,4097,1625,4340,4341, 412, 42,3119, 464,5455,2642, # 3632 +4698,3400,1760,1571,2889,3515,2537,1219,2207,3893,2643,2141,2373,4699,4700,3328, # 3648 +1651,3401,3627,5456,5457,3628,2488,3516,5458,3756,5459,5460,2276,2092, 460,5461, # 3664 +4701,5462,3020, 962, 588,3629, 289,3250,2644,1116, 52,5463,3067,1797,5464,5465, # 3680 +5466,1467,5467,1598,1143,3757,4342,1985,1734,1067,4702,1280,3402, 465,4703,1572, # 3696 + 510,5468,1928,2245,1813,1644,3630,5469,4704,3758,5470,5471,2673,1573,1534,5472, # 3712 +5473, 536,1808,1761,3517,3894,3175,2645,5474,5475,5476,4705,3518,2929,1912,2809, # 3728 +5477,3329,1122, 377,3251,5478, 360,5479,5480,4343,1529, 551,5481,2060,3759,1769, # 3744 +2431,5482,2930,4344,3330,3120,2327,2109,2031,4706,1404, 136,1468,1479, 672,1171, # 3760 +3252,2308, 271,3176,5483,2772,5484,2050, 678,2736, 865,1948,4707,5485,2014,4098, # 3776 +2971,5486,2737,2227,1397,3068,3760,4708,4709,1735,2931,3403,3631,5487,3895, 509, # 3792 +2854,2458,2890,3896,5488,5489,3177,3178,4710,4345,2538,4711,2309,1166,1010, 552, # 3808 + 681,1888,5490,5491,2972,2973,4099,1287,1596,1862,3179, 358, 453, 736, 175, 478, # 3824 +1117, 905,1167,1097,5492,1854,1530,5493,1706,5494,2181,3519,2292,3761,3520,3632, # 3840 +4346,2093,4347,5495,3404,1193,2489,4348,1458,2193,2208,1863,1889,1421,3331,2932, # 3856 +3069,2182,3521, 595,2123,5496,4100,5497,5498,4349,1707,2646, 223,3762,1359, 751, # 3872 +3121, 183,3522,5499,2810,3021, 419,2374, 633, 704,3897,2394, 241,5500,5501,5502, # 3888 + 838,3022,3763,2277,2773,2459,3898,1939,2051,4101,1309,3122,2246,1181,5503,1136, # 3904 +2209,3899,2375,1446,4350,2310,4712,5504,5505,4351,1055,2615, 484,3764,5506,4102, # 3920 + 625,4352,2278,3405,1499,4353,4103,5507,4104,4354,3253,2279,2280,3523,5508,5509, # 3936 +2774, 808,2616,3765,3406,4105,4355,3123,2539, 526,3407,3900,4356, 955,5510,1620, # 3952 +4357,2647,2432,5511,1429,3766,1669,1832, 994, 928,5512,3633,1260,5513,5514,5515, # 3968 +1949,2293, 741,2933,1626,4358,2738,2460, 867,1184, 362,3408,1392,5516,5517,4106, # 3984 +4359,1770,1736,3254,2934,4713,4714,1929,2707,1459,1158,5518,3070,3409,2891,1292, # 4000 +1930,2513,2855,3767,1986,1187,2072,2015,2617,4360,5519,2574,2514,2170,3768,2490, # 4016 +3332,5520,3769,4715,5521,5522, 666,1003,3023,1022,3634,4361,5523,4716,1814,2257, # 4032 + 574,3901,1603, 295,1535, 705,3902,4362, 283, 858, 417,5524,5525,3255,4717,4718, # 4048 +3071,1220,1890,1046,2281,2461,4107,1393,1599, 689,2575, 388,4363,5526,2491, 802, # 4064 +5527,2811,3903,2061,1405,2258,5528,4719,3904,2110,1052,1345,3256,1585,5529, 809, # 4080 +5530,5531,5532, 575,2739,3524, 956,1552,1469,1144,2328,5533,2329,1560,2462,3635, # 4096 +3257,4108, 616,2210,4364,3180,2183,2294,5534,1833,5535,3525,4720,5536,1319,3770, # 4112 +3771,1211,3636,1023,3258,1293,2812,5537,5538,5539,3905, 607,2311,3906, 762,2892, # 4128 +1439,4365,1360,4721,1485,3072,5540,4722,1038,4366,1450,2062,2648,4367,1379,4723, # 4144 +2593,5541,5542,4368,1352,1414,2330,2935,1172,5543,5544,3907,3908,4724,1798,1451, # 4160 +5545,5546,5547,5548,2936,4109,4110,2492,2351, 411,4111,4112,3637,3333,3124,4725, # 4176 +1561,2674,1452,4113,1375,5549,5550, 47,2974, 316,5551,1406,1591,2937,3181,5552, # 4192 +1025,2142,3125,3182, 354,2740, 884,2228,4369,2412, 508,3772, 726,3638, 996,2433, # 4208 +3639, 729,5553, 392,2194,1453,4114,4726,3773,5554,5555,2463,3640,2618,1675,2813, # 4224 + 919,2352,2975,2353,1270,4727,4115, 73,5556,5557, 647,5558,3259,2856,2259,1550, # 4240 +1346,3024,5559,1332, 883,3526,5560,5561,5562,5563,3334,2775,5564,1212, 831,1347, # 4256 +4370,4728,2331,3909,1864,3073, 720,3910,4729,4730,3911,5565,4371,5566,5567,4731, # 4272 +5568,5569,1799,4732,3774,2619,4733,3641,1645,2376,4734,5570,2938, 669,2211,2675, # 4288 +2434,5571,2893,5572,5573,1028,3260,5574,4372,2413,5575,2260,1353,5576,5577,4735, # 4304 +3183, 518,5578,4116,5579,4373,1961,5580,2143,4374,5581,5582,3025,2354,2355,3912, # 4320 + 516,1834,1454,4117,2708,4375,4736,2229,2620,1972,1129,3642,5583,2776,5584,2976, # 4336 +1422, 577,1470,3026,1524,3410,5585,5586, 432,4376,3074,3527,5587,2594,1455,2515, # 4352 +2230,1973,1175,5588,1020,2741,4118,3528,4737,5589,2742,5590,1743,1361,3075,3529, # 4368 +2649,4119,4377,4738,2295, 895, 924,4378,2171, 331,2247,3076, 166,1627,3077,1098, # 4384 +5591,1232,2894,2231,3411,4739, 657, 403,1196,2377, 542,3775,3412,1600,4379,3530, # 4400 +5592,4740,2777,3261, 576, 530,1362,4741,4742,2540,2676,3776,4120,5593, 842,3913, # 4416 +5594,2814,2032,1014,4121, 213,2709,3413, 665, 621,4380,5595,3777,2939,2435,5596, # 4432 +2436,3335,3643,3414,4743,4381,2541,4382,4744,3644,1682,4383,3531,1380,5597, 724, # 4448 +2282, 600,1670,5598,1337,1233,4745,3126,2248,5599,1621,4746,5600, 651,4384,5601, # 4464 +1612,4385,2621,5602,2857,5603,2743,2312,3078,5604, 716,2464,3079, 174,1255,2710, # 4480 +4122,3645, 548,1320,1398, 728,4123,1574,5605,1891,1197,3080,4124,5606,3081,3082, # 4496 +3778,3646,3779, 747,5607, 635,4386,4747,5608,5609,5610,4387,5611,5612,4748,5613, # 4512 +3415,4749,2437, 451,5614,3780,2542,2073,4388,2744,4389,4125,5615,1764,4750,5616, # 4528 +4390, 350,4751,2283,2395,2493,5617,4391,4126,2249,1434,4127, 488,4752, 458,4392, # 4544 +4128,3781, 771,1330,2396,3914,2576,3184,2160,2414,1553,2677,3185,4393,5618,2494, # 4560 +2895,2622,1720,2711,4394,3416,4753,5619,2543,4395,5620,3262,4396,2778,5621,2016, # 4576 +2745,5622,1155,1017,3782,3915,5623,3336,2313, 201,1865,4397,1430,5624,4129,5625, # 4592 +5626,5627,5628,5629,4398,1604,5630, 414,1866, 371,2595,4754,4755,3532,2017,3127, # 4608 +4756,1708, 960,4399, 887, 389,2172,1536,1663,1721,5631,2232,4130,2356,2940,1580, # 4624 +5632,5633,1744,4757,2544,4758,4759,5634,4760,5635,2074,5636,4761,3647,3417,2896, # 4640 +4400,5637,4401,2650,3418,2815, 673,2712,2465, 709,3533,4131,3648,4402,5638,1148, # 4656 + 502, 634,5639,5640,1204,4762,3649,1575,4763,2623,3783,5641,3784,3128, 948,3263, # 4672 + 121,1745,3916,1110,5642,4403,3083,2516,3027,4132,3785,1151,1771,3917,1488,4133, # 4688 +1987,5643,2438,3534,5644,5645,2094,5646,4404,3918,1213,1407,2816, 531,2746,2545, # 4704 +3264,1011,1537,4764,2779,4405,3129,1061,5647,3786,3787,1867,2897,5648,2018, 120, # 4720 +4406,4407,2063,3650,3265,2314,3919,2678,3419,1955,4765,4134,5649,3535,1047,2713, # 4736 +1266,5650,1368,4766,2858, 649,3420,3920,2546,2747,1102,2859,2679,5651,5652,2000, # 4752 +5653,1111,3651,2977,5654,2495,3921,3652,2817,1855,3421,3788,5655,5656,3422,2415, # 4768 +2898,3337,3266,3653,5657,2577,5658,3654,2818,4135,1460, 856,5659,3655,5660,2899, # 4784 +2978,5661,2900,3922,5662,4408, 632,2517, 875,3923,1697,3924,2296,5663,5664,4767, # 4800 +3028,1239, 580,4768,4409,5665, 914, 936,2075,1190,4136,1039,2124,5666,5667,5668, # 4816 +5669,3423,1473,5670,1354,4410,3925,4769,2173,3084,4137, 915,3338,4411,4412,3339, # 4832 +1605,1835,5671,2748, 398,3656,4413,3926,4138, 328,1913,2860,4139,3927,1331,4414, # 4848 +3029, 937,4415,5672,3657,4140,4141,3424,2161,4770,3425, 524, 742, 538,3085,1012, # 4864 +5673,5674,3928,2466,5675, 658,1103, 225,3929,5676,5677,4771,5678,4772,5679,3267, # 4880 +1243,5680,4142, 963,2250,4773,5681,2714,3658,3186,5682,5683,2596,2332,5684,4774, # 4896 +5685,5686,5687,3536, 957,3426,2547,2033,1931,2941,2467, 870,2019,3659,1746,2780, # 4912 +2781,2439,2468,5688,3930,5689,3789,3130,3790,3537,3427,3791,5690,1179,3086,5691, # 4928 +3187,2378,4416,3792,2548,3188,3131,2749,4143,5692,3428,1556,2549,2297, 977,2901, # 4944 +2034,4144,1205,3429,5693,1765,3430,3189,2125,1271, 714,1689,4775,3538,5694,2333, # 4960 +3931, 533,4417,3660,2184, 617,5695,2469,3340,3539,2315,5696,5697,3190,5698,5699, # 4976 +3932,1988, 618, 427,2651,3540,3431,5700,5701,1244,1690,5702,2819,4418,4776,5703, # 4992 +3541,4777,5704,2284,1576, 473,3661,4419,3432, 972,5705,3662,5706,3087,5707,5708, # 5008 +4778,4779,5709,3793,4145,4146,5710, 153,4780, 356,5711,1892,2902,4420,2144, 408, # 5024 + 803,2357,5712,3933,5713,4421,1646,2578,2518,4781,4782,3934,5714,3935,4422,5715, # 5040 +2416,3433, 752,5716,5717,1962,3341,2979,5718, 746,3030,2470,4783,4423,3794, 698, # 5056 +4784,1893,4424,3663,2550,4785,3664,3936,5719,3191,3434,5720,1824,1302,4147,2715, # 5072 +3937,1974,4425,5721,4426,3192, 823,1303,1288,1236,2861,3542,4148,3435, 774,3938, # 5088 +5722,1581,4786,1304,2862,3939,4787,5723,2440,2162,1083,3268,4427,4149,4428, 344, # 5104 +1173, 288,2316, 454,1683,5724,5725,1461,4788,4150,2597,5726,5727,4789, 985, 894, # 5120 +5728,3436,3193,5729,1914,2942,3795,1989,5730,2111,1975,5731,4151,5732,2579,1194, # 5136 + 425,5733,4790,3194,1245,3796,4429,5734,5735,2863,5736, 636,4791,1856,3940, 760, # 5152 +1800,5737,4430,2212,1508,4792,4152,1894,1684,2298,5738,5739,4793,4431,4432,2213, # 5168 + 479,5740,5741, 832,5742,4153,2496,5743,2980,2497,3797, 990,3132, 627,1815,2652, # 5184 +4433,1582,4434,2126,2112,3543,4794,5744, 799,4435,3195,5745,4795,2113,1737,3031, # 5200 +1018, 543, 754,4436,3342,1676,4796,4797,4154,4798,1489,5746,3544,5747,2624,2903, # 5216 +4155,5748,5749,2981,5750,5751,5752,5753,3196,4799,4800,2185,1722,5754,3269,3270, # 5232 +1843,3665,1715, 481, 365,1976,1857,5755,5756,1963,2498,4801,5757,2127,3666,3271, # 5248 + 433,1895,2064,2076,5758, 602,2750,5759,5760,5761,5762,5763,3032,1628,3437,5764, # 5264 +3197,4802,4156,2904,4803,2519,5765,2551,2782,5766,5767,5768,3343,4804,2905,5769, # 5280 +4805,5770,2864,4806,4807,1221,2982,4157,2520,5771,5772,5773,1868,1990,5774,5775, # 5296 +5776,1896,5777,5778,4808,1897,4158, 318,5779,2095,4159,4437,5780,5781, 485,5782, # 5312 + 938,3941, 553,2680, 116,5783,3942,3667,5784,3545,2681,2783,3438,3344,2820,5785, # 5328 +3668,2943,4160,1747,2944,2983,5786,5787, 207,5788,4809,5789,4810,2521,5790,3033, # 5344 + 890,3669,3943,5791,1878,3798,3439,5792,2186,2358,3440,1652,5793,5794,5795, 941, # 5360 +2299, 208,3546,4161,2020, 330,4438,3944,2906,2499,3799,4439,4811,5796,5797,5798, # 5376 +) + diff --git a/venv/lib/python2.7/site-packages/chardet/big5prober.py b/venv/lib/python2.7/site-packages/chardet/big5prober.py new file mode 100644 index 00000000..98f99701 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/big5prober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import BIG5_SM_MODEL + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + super(Big5Prober, self).__init__() + self.coding_sm = CodingStateMachine(BIG5_SM_MODEL) + self.distribution_analyzer = Big5DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "Big5" + + @property + def language(self): + return "Chinese" diff --git a/venv/lib/python2.7/site-packages/chardet/chardistribution.py b/venv/lib/python2.7/site-packages/chardet/chardistribution.py new file mode 100644 index 00000000..c0395f4a --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/chardistribution.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .euctwfreq import (EUCTW_CHAR_TO_FREQ_ORDER, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKR_CHAR_TO_FREQ_ORDER, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312_CHAR_TO_FREQ_ORDER, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (BIG5_CHAR_TO_FREQ_ORDER, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JIS_CHAR_TO_FREQ_ORDER, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) + + +class CharDistributionAnalysis(object): + ENOUGH_DATA_THRESHOLD = 1024 + SURE_YES = 0.99 + SURE_NO = 0.01 + MINIMUM_DATA_THRESHOLD = 3 + + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._char_to_freq_order = None + self._table_size = None # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self.typical_distribution_ratio = None + self._done = None + self._total_chars = None + self._freq_chars = None + self.reset() + + def reset(self): + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + self._total_chars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._freq_chars = 0 + + def feed(self, char, char_len): + """feed a character with known length""" + if char_len == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(char) + else: + order = -1 + if order >= 0: + self._total_chars += 1 + # order is valid + if order < self._table_size: + if 512 > self._char_to_freq_order[order]: + self._freq_chars += 1 + + def get_confidence(self): + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._total_chars <= 0 or self._freq_chars <= self.MINIMUM_DATA_THRESHOLD: + return self.SURE_NO + + if self._total_chars != self._freq_chars: + r = (self._freq_chars / ((self._total_chars - self._freq_chars) + * self.typical_distribution_ratio)) + if r < self.SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return self.SURE_YES + + def got_enough_data(self): + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._total_chars > self.ENOUGH_DATA_THRESHOLD + + def get_order(self, byte_str): + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCTWDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCTW_CHAR_TO_FREQ_ORDER + self._table_size = EUCTW_TABLE_SIZE + self.typical_distribution_ratio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + byte_str[1] - 0xA1 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCKRDistributionAnalysis, self).__init__() + self._char_to_freq_order = EUCKR_CHAR_TO_FREQ_ORDER + self._table_size = EUCKR_TABLE_SIZE + self.typical_distribution_ratio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = byte_str[0] + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + byte_str[1] - 0xA1 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(GB2312DistributionAnalysis, self).__init__() + self._char_to_freq_order = GB2312_CHAR_TO_FREQ_ORDER + self._table_size = GB2312_TABLE_SIZE + self.typical_distribution_ratio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(Big5DistributionAnalysis, self).__init__() + self._char_to_freq_order = BIG5_CHAR_TO_FREQ_ORDER + self._table_size = BIG5_TABLE_SIZE + self.typical_distribution_ratio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(SJISDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = byte_str[0], byte_str[1] + if (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (first_char <= 0xEF): + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + super(EUCJPDistributionAnalysis, self).__init__() + self._char_to_freq_order = JIS_CHAR_TO_FREQ_ORDER + self._table_size = JIS_TABLE_SIZE + self.typical_distribution_ratio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, byte_str): + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = byte_str[0] + if char >= 0xA0: + return 94 * (char - 0xA1) + byte_str[1] - 0xa1 + else: + return -1 diff --git a/venv/lib/python2.7/site-packages/chardet/charsetgroupprober.py b/venv/lib/python2.7/site-packages/chardet/charsetgroupprober.py new file mode 100644 index 00000000..8b3738ef --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/charsetgroupprober.py @@ -0,0 +1,106 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self, lang_filter=None): + super(CharSetGroupProber, self).__init__(lang_filter=lang_filter) + self._active_num = 0 + self.probers = [] + self._best_guess_prober = None + + def reset(self): + super(CharSetGroupProber, self).reset() + self._active_num = 0 + for prober in self.probers: + if prober: + prober.reset() + prober.active = True + self._active_num += 1 + self._best_guess_prober = None + + @property + def charset_name(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.charset_name + + @property + def language(self): + if not self._best_guess_prober: + self.get_confidence() + if not self._best_guess_prober: + return None + return self._best_guess_prober.language + + def feed(self, byte_str): + for prober in self.probers: + if not prober: + continue + if not prober.active: + continue + state = prober.feed(byte_str) + if not state: + continue + if state == ProbingState.FOUND_IT: + self._best_guess_prober = prober + return self.state + elif state == ProbingState.NOT_ME: + prober.active = False + self._active_num -= 1 + if self._active_num <= 0: + self._state = ProbingState.NOT_ME + return self.state + return self.state + + def get_confidence(self): + state = self.state + if state == ProbingState.FOUND_IT: + return 0.99 + elif state == ProbingState.NOT_ME: + return 0.01 + best_conf = 0.0 + self._best_guess_prober = None + for prober in self.probers: + if not prober: + continue + if not prober.active: + self.logger.debug('%s not active', prober.charset_name) + continue + conf = prober.get_confidence() + self.logger.debug('%s %s confidence = %s', prober.charset_name, prober.language, conf) + if best_conf < conf: + best_conf = conf + self._best_guess_prober = prober + if not self._best_guess_prober: + return 0.0 + return best_conf diff --git a/venv/lib/python2.7/site-packages/chardet/charsetprober.py b/venv/lib/python2.7/site-packages/chardet/charsetprober.py new file mode 100644 index 00000000..eac4e598 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/charsetprober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# 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 +######################### END LICENSE BLOCK ######################### + +import logging +import re + +from .enums import ProbingState + + +class CharSetProber(object): + + SHORTCUT_THRESHOLD = 0.95 + + def __init__(self, lang_filter=None): + self._state = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + + def reset(self): + self._state = ProbingState.DETECTING + + @property + def charset_name(self): + return None + + def feed(self, buf): + pass + + @property + def state(self): + return self._state + + def get_confidence(self): + return 0.0 + + @staticmethod + def filter_high_byte_only(buf): + buf = re.sub(b'([\x00-\x7F])+', b' ', buf) + return buf + + @staticmethod + def filter_international_words(buf): + """ + We define three types of bytes: + alphabet: english alphabets [a-zA-Z] + international: international characters [\x80-\xFF] + marker: everything else [^a-zA-Z\x80-\xFF] + + The input buffer can be thought to contain a series of words delimited + by markers. This function works to filter all words that contain at + least one international character. All contiguous sequences of markers + are replaced by a single space ascii character. + + This filter applies to all scripts which do not use English characters. + """ + filtered = bytearray() + + # This regex expression filters out only words that have at-least one + # international character. The word may include one marker character at + # the end. + words = re.findall(b'[a-zA-Z]*[\x80-\xFF]+[a-zA-Z]*[^a-zA-Z\x80-\xFF]?', + buf) + + for word in words: + filtered.extend(word[:-1]) + + # If the last character in the word is a marker, replace it with a + # space as markers shouldn't affect our analysis (they are used + # similarly across all languages and may thus have similar + # frequencies). + last_char = word[-1:] + if not last_char.isalpha() and last_char < b'\x80': + last_char = b' ' + filtered.extend(last_char) + + return filtered + + @staticmethod + def filter_with_english_letters(buf): + """ + Returns a copy of ``buf`` that retains only the sequences of English + alphabet and high byte characters that are not between <> characters. + Also retains English alphabet and high byte characters immediately + before occurrences of >. + + This filter can be applied to all scripts which contain both English + characters and extended ASCII characters, but is currently only used by + ``Latin1Prober``. + """ + filtered = bytearray() + in_tag = False + prev = 0 + + for curr in range(len(buf)): + # Slice here to get bytes instead of an int with Python 3 + buf_char = buf[curr:curr + 1] + # Check if we're coming out of or entering an HTML tag + if buf_char == b'>': + in_tag = False + elif buf_char == b'<': + in_tag = True + + # If current character is not extended-ASCII and not alphabetic... + if buf_char < b'\x80' and not buf_char.isalpha(): + # ...and we're not in a tag + if curr > prev and not in_tag: + # Keep everything after last non-extended-ASCII, + # non-alphabetic character + filtered.extend(buf[prev:curr]) + # Output a space to delimit stretch we kept + filtered.extend(b' ') + prev = curr + 1 + + # If we're not in a tag... + if not in_tag: + # Keep everything after last non-extended-ASCII, non-alphabetic + # character + filtered.extend(buf[prev:]) + + return filtered diff --git a/venv/lib/python2.7/site-packages/chardet/cli/__init__.py b/venv/lib/python2.7/site-packages/chardet/cli/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/cli/__init__.py @@ -0,0 +1 @@ + diff --git a/venv/lib/python2.7/site-packages/chardet/cli/chardetect.py b/venv/lib/python2.7/site-packages/chardet/cli/chardetect.py new file mode 100644 index 00000000..f0a4cc5d --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/cli/chardetect.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python +""" +Script which takes one or more file paths and reports on their detected +encodings + +Example:: + + % chardetect somefile someotherfile + somefile: windows-1252 with confidence 0.5 + someotherfile: ascii with confidence 1.0 + +If no paths are provided, it takes its input from stdin. + +""" + +from __future__ import absolute_import, print_function, unicode_literals + +import argparse +import sys + +from chardet import __version__ +from chardet.compat import PY2 +from chardet.universaldetector import UniversalDetector + + +def description_of(lines, name='stdin'): + """ + Return a string describing the probable encoding of a file or + list of strings. + + :param lines: The lines to get the encoding of. + :type lines: Iterable of bytes + :param name: Name of file or collection of lines + :type name: str + """ + u = UniversalDetector() + for line in lines: + line = bytearray(line) + u.feed(line) + # shortcut out of the loop to save reading further - particularly useful if we read a BOM. + if u.done: + break + u.close() + result = u.result + if PY2: + name = name.decode(sys.getfilesystemencoding(), 'ignore') + if result['encoding']: + return '{0}: {1} with confidence {2}'.format(name, result['encoding'], + result['confidence']) + else: + return '{0}: no result'.format(name) + + +def main(argv=None): + """ + Handles command line arguments and gets things started. + + :param argv: List of arguments, as if specified on the command-line. + If None, ``sys.argv[1:]`` is used instead. + :type argv: list of str + """ + # Get command line arguments + parser = argparse.ArgumentParser( + description="Takes one or more file paths and reports their detected \ + encodings") + parser.add_argument('input', + help='File whose encoding we would like to determine. \ + (default: stdin)', + type=argparse.FileType('rb'), nargs='*', + default=[sys.stdin if PY2 else sys.stdin.buffer]) + parser.add_argument('--version', action='version', + version='%(prog)s {0}'.format(__version__)) + args = parser.parse_args(argv) + + for f in args.input: + if f.isatty(): + print("You are running chardetect interactively. Press " + + "CTRL-D twice at the start of a blank line to signal the " + + "end of your input. If you want help, run chardetect " + + "--help\n", file=sys.stderr) + print(description_of(f, f.name)) + + +if __name__ == '__main__': + main() diff --git a/venv/lib/python2.7/site-packages/chardet/codingstatemachine.py b/venv/lib/python2.7/site-packages/chardet/codingstatemachine.py new file mode 100644 index 00000000..68fba44f --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/codingstatemachine.py @@ -0,0 +1,88 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +import logging + +from .enums import MachineState + + +class CodingStateMachine(object): + """ + A state machine to verify a byte sequence for a particular encoding. For + each byte the detector receives, it will feed that byte to every active + state machine available, one byte at a time. The state machine changes its + state based on its previous state and the byte it receives. There are 3 + states in a state machine that are of interest to an auto-detector: + + START state: This is the state to start with, or a legal byte sequence + (i.e. a valid code point) for character has been identified. + + ME state: This indicates that the state machine identified a byte sequence + that is specific to the charset it is designed for and that + there is no other possible encoding which can contain this byte + sequence. This will to lead to an immediate positive answer for + the detector. + + ERROR state: This indicates the state machine identified an illegal byte + sequence for that encoding. This will lead to an immediate + negative answer for this encoding. Detector will exclude this + encoding from consideration from here on. + """ + def __init__(self, sm): + self._model = sm + self._curr_byte_pos = 0 + self._curr_char_len = 0 + self._curr_state = None + self.logger = logging.getLogger(__name__) + self.reset() + + def reset(self): + self._curr_state = MachineState.START + + def next_state(self, c): + # for each byte we get its class + # if it is first byte, we also get byte length + byte_class = self._model['class_table'][c] + if self._curr_state == MachineState.START: + self._curr_byte_pos = 0 + self._curr_char_len = self._model['char_len_table'][byte_class] + # from byte's class and state_table, we get its next state + curr_state = (self._curr_state * self._model['class_factor'] + + byte_class) + self._curr_state = self._model['state_table'][curr_state] + self._curr_byte_pos += 1 + return self._curr_state + + def get_current_charlen(self): + return self._curr_char_len + + def get_coding_state_machine(self): + return self._model['name'] + + @property + def language(self): + return self._model['language'] diff --git a/venv/lib/python2.7/site-packages/chardet/compat.py b/venv/lib/python2.7/site-packages/chardet/compat.py new file mode 100644 index 00000000..ddd74687 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/compat.py @@ -0,0 +1,34 @@ +######################## BEGIN LICENSE BLOCK ######################## +# Contributor(s): +# Dan Blanchard +# Ian Cordasco +# +# 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 +######################### END LICENSE BLOCK ######################### + +import sys + + +if sys.version_info < (3, 0): + PY2 = True + PY3 = False + base_str = (str, unicode) + text_type = unicode +else: + PY2 = False + PY3 = True + base_str = (bytes, str) + text_type = str diff --git a/venv/lib/python2.7/site-packages/chardet/cp949prober.py b/venv/lib/python2.7/site-packages/chardet/cp949prober.py new file mode 100644 index 00000000..efd793ab --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/cp949prober.py @@ -0,0 +1,49 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .chardistribution import EUCKRDistributionAnalysis +from .codingstatemachine import CodingStateMachine +from .mbcharsetprober import MultiByteCharSetProber +from .mbcssm import CP949_SM_MODEL + + +class CP949Prober(MultiByteCharSetProber): + def __init__(self): + super(CP949Prober, self).__init__() + self.coding_sm = CodingStateMachine(CP949_SM_MODEL) + # NOTE: CP949 is a superset of EUC-KR, so the distribution should be + # not different. + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "CP949" + + @property + def language(self): + return "Korean" diff --git a/venv/lib/python2.7/site-packages/chardet/enums.py b/venv/lib/python2.7/site-packages/chardet/enums.py new file mode 100644 index 00000000..04512072 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/enums.py @@ -0,0 +1,76 @@ +""" +All of the Enums that are used throughout the chardet package. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + + +class InputState(object): + """ + This enum represents the different states a universal detector can be in. + """ + PURE_ASCII = 0 + ESC_ASCII = 1 + HIGH_BYTE = 2 + + +class LanguageFilter(object): + """ + This enum represents the different language filters we can apply to a + ``UniversalDetector``. + """ + CHINESE_SIMPLIFIED = 0x01 + CHINESE_TRADITIONAL = 0x02 + JAPANESE = 0x04 + KOREAN = 0x08 + NON_CJK = 0x10 + ALL = 0x1F + CHINESE = CHINESE_SIMPLIFIED | CHINESE_TRADITIONAL + CJK = CHINESE | JAPANESE | KOREAN + + +class ProbingState(object): + """ + This enum represents the different states a prober can be in. + """ + DETECTING = 0 + FOUND_IT = 1 + NOT_ME = 2 + + +class MachineState(object): + """ + This enum represents the different states a state machine can be in. + """ + START = 0 + ERROR = 1 + ITS_ME = 2 + + +class SequenceLikelihood(object): + """ + This enum represents the likelihood of a character following the previous one. + """ + NEGATIVE = 0 + UNLIKELY = 1 + LIKELY = 2 + POSITIVE = 3 + + @classmethod + def get_num_categories(cls): + """:returns: The number of likelihood categories in the enum.""" + return 4 + + +class CharacterCategory(object): + """ + This enum represents the different categories language models for + ``SingleByteCharsetProber`` put characters into. + + Anything less than CONTROL is considered a letter. + """ + UNDEFINED = 255 + LINE_BREAK = 254 + SYMBOL = 253 + DIGIT = 252 + CONTROL = 251 diff --git a/venv/lib/python2.7/site-packages/chardet/escprober.py b/venv/lib/python2.7/site-packages/chardet/escprober.py new file mode 100644 index 00000000..c70493f2 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/escprober.py @@ -0,0 +1,101 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .enums import LanguageFilter, ProbingState, MachineState +from .escsm import (HZ_SM_MODEL, ISO2022CN_SM_MODEL, ISO2022JP_SM_MODEL, + ISO2022KR_SM_MODEL) + + +class EscCharSetProber(CharSetProber): + """ + This CharSetProber uses a "code scheme" approach for detecting encodings, + whereby easily recognizable escape or shift sequences are relied on to + identify these encodings. + """ + + def __init__(self, lang_filter=None): + super(EscCharSetProber, self).__init__(lang_filter=lang_filter) + self.coding_sm = [] + if self.lang_filter & LanguageFilter.CHINESE_SIMPLIFIED: + self.coding_sm.append(CodingStateMachine(HZ_SM_MODEL)) + self.coding_sm.append(CodingStateMachine(ISO2022CN_SM_MODEL)) + if self.lang_filter & LanguageFilter.JAPANESE: + self.coding_sm.append(CodingStateMachine(ISO2022JP_SM_MODEL)) + if self.lang_filter & LanguageFilter.KOREAN: + self.coding_sm.append(CodingStateMachine(ISO2022KR_SM_MODEL)) + self.active_sm_count = None + self._detected_charset = None + self._detected_language = None + self._state = None + self.reset() + + def reset(self): + super(EscCharSetProber, self).reset() + for coding_sm in self.coding_sm: + if not coding_sm: + continue + coding_sm.active = True + coding_sm.reset() + self.active_sm_count = len(self.coding_sm) + self._detected_charset = None + self._detected_language = None + + @property + def charset_name(self): + return self._detected_charset + + @property + def language(self): + return self._detected_language + + def get_confidence(self): + if self._detected_charset: + return 0.99 + else: + return 0.00 + + def feed(self, byte_str): + for c in byte_str: + for coding_sm in self.coding_sm: + if not coding_sm or not coding_sm.active: + continue + coding_state = coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + coding_sm.active = False + self.active_sm_count -= 1 + if self.active_sm_count <= 0: + self._state = ProbingState.NOT_ME + return self.state + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + self._detected_charset = coding_sm.get_coding_state_machine() + self._detected_language = coding_sm.language + return self.state + + return self.state diff --git a/venv/lib/python2.7/site-packages/chardet/escsm.py b/venv/lib/python2.7/site-packages/chardet/escsm.py new file mode 100644 index 00000000..0069523a --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/escsm.py @@ -0,0 +1,246 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +HZ_CLS = ( +1,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,0,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,4,0,5,2,0, # 78 - 7f +1,1,1,1,1,1,1,1, # 80 - 87 +1,1,1,1,1,1,1,1, # 88 - 8f +1,1,1,1,1,1,1,1, # 90 - 97 +1,1,1,1,1,1,1,1, # 98 - 9f +1,1,1,1,1,1,1,1, # a0 - a7 +1,1,1,1,1,1,1,1, # a8 - af +1,1,1,1,1,1,1,1, # b0 - b7 +1,1,1,1,1,1,1,1, # b8 - bf +1,1,1,1,1,1,1,1, # c0 - c7 +1,1,1,1,1,1,1,1, # c8 - cf +1,1,1,1,1,1,1,1, # d0 - d7 +1,1,1,1,1,1,1,1, # d8 - df +1,1,1,1,1,1,1,1, # e0 - e7 +1,1,1,1,1,1,1,1, # e8 - ef +1,1,1,1,1,1,1,1, # f0 - f7 +1,1,1,1,1,1,1,1, # f8 - ff +) + +HZ_ST = ( +MachineState.START,MachineState.ERROR, 3,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START, 4,MachineState.ERROR,# 10-17 + 5,MachineState.ERROR, 6,MachineState.ERROR, 5, 5, 4,MachineState.ERROR,# 18-1f + 4,MachineState.ERROR, 4, 4, 4,MachineState.ERROR, 4,MachineState.ERROR,# 20-27 + 4,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 28-2f +) + +HZ_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +HZ_SM_MODEL = {'class_table': HZ_CLS, + 'class_factor': 6, + 'state_table': HZ_ST, + 'char_len_table': HZ_CHAR_LEN_TABLE, + 'name': "HZ-GB-2312", + 'language': 'Chinese'} + +ISO2022CN_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,3,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,4,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022CN_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 20-27 + 5, 6,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,# 38-3f +) + +ISO2022CN_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CN_SM_MODEL = {'class_table': ISO2022CN_CLS, + 'class_factor': 9, + 'state_table': ISO2022CN_ST, + 'char_len_table': ISO2022CN_CHAR_LEN_TABLE, + 'name': "ISO-2022-CN", + 'language': 'Chinese'} + +ISO2022JP_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,2,2, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,7,0,0,0, # 20 - 27 +3,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +6,0,4,0,8,0,0,0, # 40 - 47 +0,9,5,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022JP_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 00-07 +MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 08-0f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 10-17 +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 20-27 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 6,MachineState.ITS_ME,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,# 28-2f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,# 30-37 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 38-3f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.START,# 40-47 +) + +ISO2022JP_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JP_SM_MODEL = {'class_table': ISO2022JP_CLS, + 'class_factor': 10, + 'state_table': ISO2022JP_ST, + 'char_len_table': ISO2022JP_CHAR_LEN_TABLE, + 'name': "ISO-2022-JP", + 'language': 'Japanese'} + +ISO2022KR_CLS = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,3,0,0,0, # 20 - 27 +0,4,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,5,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022KR_ST = ( +MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,# 00-07 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,# 08-0f +MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 4,MachineState.ERROR,MachineState.ERROR,# 10-17 +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,# 18-1f +MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.START,MachineState.START,MachineState.START,MachineState.START,# 20-27 +) + +ISO2022KR_CHAR_LEN_TABLE = (0, 0, 0, 0, 0, 0) + +ISO2022KR_SM_MODEL = {'class_table': ISO2022KR_CLS, + 'class_factor': 6, + 'state_table': ISO2022KR_ST, + 'char_len_table': ISO2022KR_CHAR_LEN_TABLE, + 'name': "ISO-2022-KR", + 'language': 'Korean'} + + diff --git a/venv/lib/python2.7/site-packages/chardet/eucjpprober.py b/venv/lib/python2.7/site-packages/chardet/eucjpprober.py new file mode 100644 index 00000000..20ce8f7d --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/eucjpprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .enums import ProbingState, MachineState +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCJPDistributionAnalysis +from .jpcntx import EUCJPContextAnalysis +from .mbcssm import EUCJP_SM_MODEL + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self): + super(EUCJPProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCJP_SM_MODEL) + self.distribution_analyzer = EUCJPDistributionAnalysis() + self.context_analyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self): + super(EUCJPProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return "EUC-JP" + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + # PY3K: byte_str is a byte array, so byte_str[i] is an int, not a byte + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char, char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/venv/lib/python2.7/site-packages/chardet/euckrfreq.py b/venv/lib/python2.7/site-packages/chardet/euckrfreq.py new file mode 100644 index 00000000..b68078cb --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/euckrfreq.py @@ -0,0 +1,195 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology + +# 128 --> 0.79 +# 256 --> 0.92 +# 512 --> 0.986 +# 1024 --> 0.99944 +# 2048 --> 0.99999 +# +# Idea Distribution Ratio = 0.98653 / (1-0.98653) = 73.24 +# Random Distribution Ration = 512 / (2350-512) = 0.279. +# +# Typical Distribution Ratio + +EUCKR_TYPICAL_DISTRIBUTION_RATIO = 6.0 + +EUCKR_TABLE_SIZE = 2352 + +# Char to FreqOrder table , +EUCKR_CHAR_TO_FREQ_ORDER = ( + 13, 130, 120,1396, 481,1719,1720, 328, 609, 212,1721, 707, 400, 299,1722, 87, +1397,1723, 104, 536,1117,1203,1724,1267, 685,1268, 508,1725,1726,1727,1728,1398, +1399,1729,1730,1731, 141, 621, 326,1057, 368,1732, 267, 488, 20,1733,1269,1734, + 945,1400,1735, 47, 904,1270,1736,1737, 773, 248,1738, 409, 313, 786, 429,1739, + 116, 987, 813,1401, 683, 75,1204, 145,1740,1741,1742,1743, 16, 847, 667, 622, + 708,1744,1745,1746, 966, 787, 304, 129,1747, 60, 820, 123, 676,1748,1749,1750, +1751, 617,1752, 626,1753,1754,1755,1756, 653,1757,1758,1759,1760,1761,1762, 856, + 344,1763,1764,1765,1766, 89, 401, 418, 806, 905, 848,1767,1768,1769, 946,1205, + 709,1770,1118,1771, 241,1772,1773,1774,1271,1775, 569,1776, 999,1777,1778,1779, +1780, 337, 751,1058, 28, 628, 254,1781, 177, 906, 270, 349, 891,1079,1782, 19, +1783, 379,1784, 315,1785, 629, 754,1402, 559,1786, 636, 203,1206,1787, 710, 567, +1788, 935, 814,1789,1790,1207, 766, 528,1791,1792,1208,1793,1794,1795,1796,1797, +1403,1798,1799, 533,1059,1404,1405,1156,1406, 936, 884,1080,1800, 351,1801,1802, +1803,1804,1805, 801,1806,1807,1808,1119,1809,1157, 714, 474,1407,1810, 298, 899, + 885,1811,1120, 802,1158,1812, 892,1813,1814,1408, 659,1815,1816,1121,1817,1818, +1819,1820,1821,1822, 319,1823, 594, 545,1824, 815, 937,1209,1825,1826, 573,1409, +1022,1827,1210,1828,1829,1830,1831,1832,1833, 556, 722, 807,1122,1060,1834, 697, +1835, 900, 557, 715,1836,1410, 540,1411, 752,1159, 294, 597,1211, 976, 803, 770, +1412,1837,1838, 39, 794,1413, 358,1839, 371, 925,1840, 453, 661, 788, 531, 723, + 544,1023,1081, 869, 91,1841, 392, 430, 790, 602,1414, 677,1082, 457,1415,1416, +1842,1843, 475, 327,1024,1417, 795, 121,1844, 733, 403,1418,1845,1846,1847, 300, + 119, 711,1212, 627,1848,1272, 207,1849,1850, 796,1213, 382,1851, 519,1852,1083, + 893,1853,1854,1855, 367, 809, 487, 671,1856, 663,1857,1858, 956, 471, 306, 857, +1859,1860,1160,1084,1861,1862,1863,1864,1865,1061,1866,1867,1868,1869,1870,1871, + 282, 96, 574,1872, 502,1085,1873,1214,1874, 907,1875,1876, 827, 977,1419,1420, +1421, 268,1877,1422,1878,1879,1880, 308,1881, 2, 537,1882,1883,1215,1884,1885, + 127, 791,1886,1273,1423,1887, 34, 336, 404, 643,1888, 571, 654, 894, 840,1889, + 0, 886,1274, 122, 575, 260, 908, 938,1890,1275, 410, 316,1891,1892, 100,1893, +1894,1123, 48,1161,1124,1025,1895, 633, 901,1276,1896,1897, 115, 816,1898, 317, +1899, 694,1900, 909, 734,1424, 572, 866,1425, 691, 85, 524,1010, 543, 394, 841, +1901,1902,1903,1026,1904,1905,1906,1907,1908,1909, 30, 451, 651, 988, 310,1910, +1911,1426, 810,1216, 93,1912,1913,1277,1217,1914, 858, 759, 45, 58, 181, 610, + 269,1915,1916, 131,1062, 551, 443,1000, 821,1427, 957, 895,1086,1917,1918, 375, +1919, 359,1920, 687,1921, 822,1922, 293,1923,1924, 40, 662, 118, 692, 29, 939, + 887, 640, 482, 174,1925, 69,1162, 728,1428, 910,1926,1278,1218,1279, 386, 870, + 217, 854,1163, 823,1927,1928,1929,1930, 834,1931, 78,1932, 859,1933,1063,1934, +1935,1936,1937, 438,1164, 208, 595,1938,1939,1940,1941,1219,1125,1942, 280, 888, +1429,1430,1220,1431,1943,1944,1945,1946,1947,1280, 150, 510,1432,1948,1949,1950, +1951,1952,1953,1954,1011,1087,1955,1433,1043,1956, 881,1957, 614, 958,1064,1065, +1221,1958, 638,1001, 860, 967, 896,1434, 989, 492, 553,1281,1165,1959,1282,1002, +1283,1222,1960,1961,1962,1963, 36, 383, 228, 753, 247, 454,1964, 876, 678,1965, +1966,1284, 126, 464, 490, 835, 136, 672, 529, 940,1088,1435, 473,1967,1968, 467, + 50, 390, 227, 587, 279, 378, 598, 792, 968, 240, 151, 160, 849, 882,1126,1285, + 639,1044, 133, 140, 288, 360, 811, 563,1027, 561, 142, 523,1969,1970,1971, 7, + 103, 296, 439, 407, 506, 634, 990,1972,1973,1974,1975, 645,1976,1977,1978,1979, +1980,1981, 236,1982,1436,1983,1984,1089, 192, 828, 618, 518,1166, 333,1127,1985, + 818,1223,1986,1987,1988,1989,1990,1991,1992,1993, 342,1128,1286, 746, 842,1994, +1995, 560, 223,1287, 98, 8, 189, 650, 978,1288,1996,1437,1997, 17, 345, 250, + 423, 277, 234, 512, 226, 97, 289, 42, 167,1998, 201,1999,2000, 843, 836, 824, + 532, 338, 783,1090, 182, 576, 436,1438,1439, 527, 500,2001, 947, 889,2002,2003, +2004,2005, 262, 600, 314, 447,2006, 547,2007, 693, 738,1129,2008, 71,1440, 745, + 619, 688,2009, 829,2010,2011, 147,2012, 33, 948,2013,2014, 74, 224,2015, 61, + 191, 918, 399, 637,2016,1028,1130, 257, 902,2017,2018,2019,2020,2021,2022,2023, +2024,2025,2026, 837,2027,2028,2029,2030, 179, 874, 591, 52, 724, 246,2031,2032, +2033,2034,1167, 969,2035,1289, 630, 605, 911,1091,1168,2036,2037,2038,1441, 912, +2039, 623,2040,2041, 253,1169,1290,2042,1442, 146, 620, 611, 577, 433,2043,1224, + 719,1170, 959, 440, 437, 534, 84, 388, 480,1131, 159, 220, 198, 679,2044,1012, + 819,1066,1443, 113,1225, 194, 318,1003,1029,2045,2046,2047,2048,1067,2049,2050, +2051,2052,2053, 59, 913, 112,2054, 632,2055, 455, 144, 739,1291,2056, 273, 681, + 499,2057, 448,2058,2059, 760,2060,2061, 970, 384, 169, 245,1132,2062,2063, 414, +1444,2064,2065, 41, 235,2066, 157, 252, 877, 568, 919, 789, 580,2067, 725,2068, +2069,1292,2070,2071,1445,2072,1446,2073,2074, 55, 588, 66,1447, 271,1092,2075, +1226,2076, 960,1013, 372,2077,2078,2079,2080,2081,1293,2082,2083,2084,2085, 850, +2086,2087,2088,2089,2090, 186,2091,1068, 180,2092,2093,2094, 109,1227, 522, 606, +2095, 867,1448,1093, 991,1171, 926, 353,1133,2096, 581,2097,2098,2099,1294,1449, +1450,2100, 596,1172,1014,1228,2101,1451,1295,1173,1229,2102,2103,1296,1134,1452, + 949,1135,2104,2105,1094,1453,1454,1455,2106,1095,2107,2108,2109,2110,2111,2112, +2113,2114,2115,2116,2117, 804,2118,2119,1230,1231, 805,1456, 405,1136,2120,2121, +2122,2123,2124, 720, 701,1297, 992,1457, 927,1004,2125,2126,2127,2128,2129,2130, + 22, 417,2131, 303,2132, 385,2133, 971, 520, 513,2134,1174, 73,1096, 231, 274, + 962,1458, 673,2135,1459,2136, 152,1137,2137,2138,2139,2140,1005,1138,1460,1139, +2141,2142,2143,2144, 11, 374, 844,2145, 154,1232, 46,1461,2146, 838, 830, 721, +1233, 106,2147, 90, 428, 462, 578, 566,1175, 352,2148,2149, 538,1234, 124,1298, +2150,1462, 761, 565,2151, 686,2152, 649,2153, 72, 173,2154, 460, 415,2155,1463, +2156,1235, 305,2157,2158,2159,2160,2161,2162, 579,2163,2164,2165,2166,2167, 747, +2168,2169,2170,2171,1464, 669,2172,2173,2174,2175,2176,1465,2177, 23, 530, 285, +2178, 335, 729,2179, 397,2180,2181,2182,1030,2183,2184, 698,2185,2186, 325,2187, +2188, 369,2189, 799,1097,1015, 348,2190,1069, 680,2191, 851,1466,2192,2193, 10, +2194, 613, 424,2195, 979, 108, 449, 589, 27, 172, 81,1031, 80, 774, 281, 350, +1032, 525, 301, 582,1176,2196, 674,1045,2197,2198,1467, 730, 762,2199,2200,2201, +2202,1468,2203, 993,2204,2205, 266,1070, 963,1140,2206,2207,2208, 664,1098, 972, +2209,2210,2211,1177,1469,1470, 871,2212,2213,2214,2215,2216,1471,2217,2218,2219, +2220,2221,2222,2223,2224,2225,2226,2227,1472,1236,2228,2229,2230,2231,2232,2233, +2234,2235,1299,2236,2237, 200,2238, 477, 373,2239,2240, 731, 825, 777,2241,2242, +2243, 521, 486, 548,2244,2245,2246,1473,1300, 53, 549, 137, 875, 76, 158,2247, +1301,1474, 469, 396,1016, 278, 712,2248, 321, 442, 503, 767, 744, 941,1237,1178, +1475,2249, 82, 178,1141,1179, 973,2250,1302,2251, 297,2252,2253, 570,2254,2255, +2256, 18, 450, 206,2257, 290, 292,1142,2258, 511, 162, 99, 346, 164, 735,2259, +1476,1477, 4, 554, 343, 798,1099,2260,1100,2261, 43, 171,1303, 139, 215,2262, +2263, 717, 775,2264,1033, 322, 216,2265, 831,2266, 149,2267,1304,2268,2269, 702, +1238, 135, 845, 347, 309,2270, 484,2271, 878, 655, 238,1006,1478,2272, 67,2273, + 295,2274,2275, 461,2276, 478, 942, 412,2277,1034,2278,2279,2280, 265,2281, 541, +2282,2283,2284,2285,2286, 70, 852,1071,2287,2288,2289,2290, 21, 56, 509, 117, + 432,2291,2292, 331, 980, 552,1101, 148, 284, 105, 393,1180,1239, 755,2293, 187, +2294,1046,1479,2295, 340,2296, 63,1047, 230,2297,2298,1305, 763,1306, 101, 800, + 808, 494,2299,2300,2301, 903,2302, 37,1072, 14, 5,2303, 79, 675,2304, 312, +2305,2306,2307,2308,2309,1480, 6,1307,2310,2311,2312, 1, 470, 35, 24, 229, +2313, 695, 210, 86, 778, 15, 784, 592, 779, 32, 77, 855, 964,2314, 259,2315, + 501, 380,2316,2317, 83, 981, 153, 689,1308,1481,1482,1483,2318,2319, 716,1484, +2320,2321,2322,2323,2324,2325,1485,2326,2327, 128, 57, 68, 261,1048, 211, 170, +1240, 31,2328, 51, 435, 742,2329,2330,2331, 635,2332, 264, 456,2333,2334,2335, + 425,2336,1486, 143, 507, 263, 943,2337, 363, 920,1487, 256,1488,1102, 243, 601, +1489,2338,2339,2340,2341,2342,2343,2344, 861,2345,2346,2347,2348,2349,2350, 395, +2351,1490,1491, 62, 535, 166, 225,2352,2353, 668, 419,1241, 138, 604, 928,2354, +1181,2355,1492,1493,2356,2357,2358,1143,2359, 696,2360, 387, 307,1309, 682, 476, +2361,2362, 332, 12, 222, 156,2363, 232,2364, 641, 276, 656, 517,1494,1495,1035, + 416, 736,1496,2365,1017, 586,2366,2367,2368,1497,2369, 242,2370,2371,2372,1498, +2373, 965, 713,2374,2375,2376,2377, 740, 982,1499, 944,1500,1007,2378,2379,1310, +1501,2380,2381,2382, 785, 329,2383,2384,1502,2385,2386,2387, 932,2388,1503,2389, +2390,2391,2392,1242,2393,2394,2395,2396,2397, 994, 950,2398,2399,2400,2401,1504, +1311,2402,2403,2404,2405,1049, 749,2406,2407, 853, 718,1144,1312,2408,1182,1505, +2409,2410, 255, 516, 479, 564, 550, 214,1506,1507,1313, 413, 239, 444, 339,1145, +1036,1508,1509,1314,1037,1510,1315,2411,1511,2412,2413,2414, 176, 703, 497, 624, + 593, 921, 302,2415, 341, 165,1103,1512,2416,1513,2417,2418,2419, 376,2420, 700, +2421,2422,2423, 258, 768,1316,2424,1183,2425, 995, 608,2426,2427,2428,2429, 221, +2430,2431,2432,2433,2434,2435,2436,2437, 195, 323, 726, 188, 897, 983,1317, 377, + 644,1050, 879,2438, 452,2439,2440,2441,2442,2443,2444, 914,2445,2446,2447,2448, + 915, 489,2449,1514,1184,2450,2451, 515, 64, 427, 495,2452, 583,2453, 483, 485, +1038, 562, 213,1515, 748, 666,2454,2455,2456,2457, 334,2458, 780, 996,1008, 705, +1243,2459,2460,2461,2462,2463, 114,2464, 493,1146, 366, 163,1516, 961,1104,2465, + 291,2466,1318,1105,2467,1517, 365,2468, 355, 951,1244,2469,1319,2470, 631,2471, +2472, 218,1320, 364, 320, 756,1518,1519,1321,1520,1322,2473,2474,2475,2476, 997, +2477,2478,2479,2480, 665,1185,2481, 916,1521,2482,2483,2484, 584, 684,2485,2486, + 797,2487,1051,1186,2488,2489,2490,1522,2491,2492, 370,2493,1039,1187, 65,2494, + 434, 205, 463,1188,2495, 125, 812, 391, 402, 826, 699, 286, 398, 155, 781, 771, + 585,2496, 590, 505,1073,2497, 599, 244, 219, 917,1018, 952, 646,1523,2498,1323, +2499,2500, 49, 984, 354, 741,2501, 625,2502,1324,2503,1019, 190, 357, 757, 491, + 95, 782, 868,2504,2505,2506,2507,2508,2509, 134,1524,1074, 422,1525, 898,2510, + 161,2511,2512,2513,2514, 769,2515,1526,2516,2517, 411,1325,2518, 472,1527,2519, +2520,2521,2522,2523,2524, 985,2525,2526,2527,2528,2529,2530, 764,2531,1245,2532, +2533, 25, 204, 311,2534, 496,2535,1052,2536,2537,2538,2539,2540,2541,2542, 199, + 704, 504, 468, 758, 657,1528, 196, 44, 839,1246, 272, 750,2543, 765, 862,2544, +2545,1326,2546, 132, 615, 933,2547, 732,2548,2549,2550,1189,1529,2551, 283,1247, +1053, 607, 929,2552,2553,2554, 930, 183, 872, 616,1040,1147,2555,1148,1020, 441, + 249,1075,2556,2557,2558, 466, 743,2559,2560,2561, 92, 514, 426, 420, 526,2562, +2563,2564,2565,2566,2567,2568, 185,2569,2570,2571,2572, 776,1530, 658,2573, 362, +2574, 361, 922,1076, 793,2575,2576,2577,2578,2579,2580,1531, 251,2581,2582,2583, +2584,1532, 54, 612, 237,1327,2585,2586, 275, 408, 647, 111,2587,1533,1106, 465, + 3, 458, 9, 38,2588, 107, 110, 890, 209, 26, 737, 498,2589,1534,2590, 431, + 202, 88,1535, 356, 287,1107, 660,1149,2591, 381,1536, 986,1150, 445,1248,1151, + 974,2592,2593, 846,2594, 446, 953, 184,1249,1250, 727,2595, 923, 193, 883,2596, +2597,2598, 102, 324, 539, 817,2599, 421,1041,2600, 832,2601, 94, 175, 197, 406, +2602, 459,2603,2604,2605,2606,2607, 330, 555,2608,2609,2610, 706,1108, 389,2611, +2612,2613,2614, 233,2615, 833, 558, 931, 954,1251,2616,2617,1537, 546,2618,2619, +1009,2620,2621,2622,1538, 690,1328,2623, 955,2624,1539,2625,2626, 772,2627,2628, +2629,2630,2631, 924, 648, 863, 603,2632,2633, 934,1540, 864, 865,2634, 642,1042, + 670,1190,2635,2636,2637,2638, 168,2639, 652, 873, 542,1054,1541,2640,2641,2642, # 512, 256 +) + diff --git a/venv/lib/python2.7/site-packages/chardet/euckrprober.py b/venv/lib/python2.7/site-packages/chardet/euckrprober.py new file mode 100644 index 00000000..345a060d --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/euckrprober.py @@ -0,0 +1,47 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKR_SM_MODEL + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + super(EUCKRProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCKR_SM_MODEL) + self.distribution_analyzer = EUCKRDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-KR" + + @property + def language(self): + return "Korean" diff --git a/venv/lib/python2.7/site-packages/chardet/euctwfreq.py b/venv/lib/python2.7/site-packages/chardet/euctwfreq.py new file mode 100644 index 00000000..ed7a995a --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/euctwfreq.py @@ -0,0 +1,387 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# EUCTW frequency table +# Converted from big5 work +# by Taiwan's Mandarin Promotion Council +# + +# 128 --> 0.42261 +# 256 --> 0.57851 +# 512 --> 0.74851 +# 1024 --> 0.89384 +# 2048 --> 0.97583 +# +# Idea Distribution Ratio = 0.74851/(1-0.74851) =2.98 +# Random Distribution Ration = 512/(5401-512)=0.105 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher than RDR + +EUCTW_TYPICAL_DISTRIBUTION_RATIO = 0.75 + +# Char to FreqOrder table , +EUCTW_TABLE_SIZE = 5376 + +EUCTW_CHAR_TO_FREQ_ORDER = ( + 1,1800,1506, 255,1431, 198, 9, 82, 6,7310, 177, 202,3615,1256,2808, 110, # 2742 +3735, 33,3241, 261, 76, 44,2113, 16,2931,2184,1176, 659,3868, 26,3404,2643, # 2758 +1198,3869,3313,4060, 410,2211, 302, 590, 361,1963, 8, 204, 58,4296,7311,1931, # 2774 + 63,7312,7313, 317,1614, 75, 222, 159,4061,2412,1480,7314,3500,3068, 224,2809, # 2790 +3616, 3, 10,3870,1471, 29,2774,1135,2852,1939, 873, 130,3242,1123, 312,7315, # 2806 +4297,2051, 507, 252, 682,7316, 142,1914, 124, 206,2932, 34,3501,3173, 64, 604, # 2822 +7317,2494,1976,1977, 155,1990, 645, 641,1606,7318,3405, 337, 72, 406,7319, 80, # 2838 + 630, 238,3174,1509, 263, 939,1092,2644, 756,1440,1094,3406, 449, 69,2969, 591, # 2854 + 179,2095, 471, 115,2034,1843, 60, 50,2970, 134, 806,1868, 734,2035,3407, 180, # 2870 + 995,1607, 156, 537,2893, 688,7320, 319,1305, 779,2144, 514,2374, 298,4298, 359, # 2886 +2495, 90,2707,1338, 663, 11, 906,1099,2545, 20,2436, 182, 532,1716,7321, 732, # 2902 +1376,4062,1311,1420,3175, 25,2312,1056, 113, 399, 382,1949, 242,3408,2467, 529, # 2918 +3243, 475,1447,3617,7322, 117, 21, 656, 810,1297,2295,2329,3502,7323, 126,4063, # 2934 + 706, 456, 150, 613,4299, 71,1118,2036,4064, 145,3069, 85, 835, 486,2114,1246, # 2950 +1426, 428, 727,1285,1015, 800, 106, 623, 303,1281,7324,2127,2354, 347,3736, 221, # 2966 +3503,3110,7325,1955,1153,4065, 83, 296,1199,3070, 192, 624, 93,7326, 822,1897, # 2982 +2810,3111, 795,2064, 991,1554,1542,1592, 27, 43,2853, 859, 139,1456, 860,4300, # 2998 + 437, 712,3871, 164,2392,3112, 695, 211,3017,2096, 195,3872,1608,3504,3505,3618, # 3014 +3873, 234, 811,2971,2097,3874,2229,1441,3506,1615,2375, 668,2076,1638, 305, 228, # 3030 +1664,4301, 467, 415,7327, 262,2098,1593, 239, 108, 300, 200,1033, 512,1247,2077, # 3046 +7328,7329,2173,3176,3619,2673, 593, 845,1062,3244, 88,1723,2037,3875,1950, 212, # 3062 + 266, 152, 149, 468,1898,4066,4302, 77, 187,7330,3018, 37, 5,2972,7331,3876, # 3078 +7332,7333, 39,2517,4303,2894,3177,2078, 55, 148, 74,4304, 545, 483,1474,1029, # 3094 +1665, 217,1869,1531,3113,1104,2645,4067, 24, 172,3507, 900,3877,3508,3509,4305, # 3110 + 32,1408,2811,1312, 329, 487,2355,2247,2708, 784,2674, 4,3019,3314,1427,1788, # 3126 + 188, 109, 499,7334,3620,1717,1789, 888,1217,3020,4306,7335,3510,7336,3315,1520, # 3142 +3621,3878, 196,1034, 775,7337,7338, 929,1815, 249, 439, 38,7339,1063,7340, 794, # 3158 +3879,1435,2296, 46, 178,3245,2065,7341,2376,7342, 214,1709,4307, 804, 35, 707, # 3174 + 324,3622,1601,2546, 140, 459,4068,7343,7344,1365, 839, 272, 978,2257,2572,3409, # 3190 +2128,1363,3623,1423, 697, 100,3071, 48, 70,1231, 495,3114,2193,7345,1294,7346, # 3206 +2079, 462, 586,1042,3246, 853, 256, 988, 185,2377,3410,1698, 434,1084,7347,3411, # 3222 + 314,2615,2775,4308,2330,2331, 569,2280, 637,1816,2518, 757,1162,1878,1616,3412, # 3238 + 287,1577,2115, 768,4309,1671,2854,3511,2519,1321,3737, 909,2413,7348,4069, 933, # 3254 +3738,7349,2052,2356,1222,4310, 765,2414,1322, 786,4311,7350,1919,1462,1677,2895, # 3270 +1699,7351,4312,1424,2437,3115,3624,2590,3316,1774,1940,3413,3880,4070, 309,1369, # 3286 +1130,2812, 364,2230,1653,1299,3881,3512,3882,3883,2646, 525,1085,3021, 902,2000, # 3302 +1475, 964,4313, 421,1844,1415,1057,2281, 940,1364,3116, 376,4314,4315,1381, 7, # 3318 +2520, 983,2378, 336,1710,2675,1845, 321,3414, 559,1131,3022,2742,1808,1132,1313, # 3334 + 265,1481,1857,7352, 352,1203,2813,3247, 167,1089, 420,2814, 776, 792,1724,3513, # 3350 +4071,2438,3248,7353,4072,7354, 446, 229, 333,2743, 901,3739,1200,1557,4316,2647, # 3366 +1920, 395,2744,2676,3740,4073,1835, 125, 916,3178,2616,4317,7355,7356,3741,7357, # 3382 +7358,7359,4318,3117,3625,1133,2547,1757,3415,1510,2313,1409,3514,7360,2145, 438, # 3398 +2591,2896,2379,3317,1068, 958,3023, 461, 311,2855,2677,4074,1915,3179,4075,1978, # 3414 + 383, 750,2745,2617,4076, 274, 539, 385,1278,1442,7361,1154,1964, 384, 561, 210, # 3430 + 98,1295,2548,3515,7362,1711,2415,1482,3416,3884,2897,1257, 129,7363,3742, 642, # 3446 + 523,2776,2777,2648,7364, 141,2231,1333, 68, 176, 441, 876, 907,4077, 603,2592, # 3462 + 710, 171,3417, 404, 549, 18,3118,2393,1410,3626,1666,7365,3516,4319,2898,4320, # 3478 +7366,2973, 368,7367, 146, 366, 99, 871,3627,1543, 748, 807,1586,1185, 22,2258, # 3494 + 379,3743,3180,7368,3181, 505,1941,2618,1991,1382,2314,7369, 380,2357, 218, 702, # 3510 +1817,1248,3418,3024,3517,3318,3249,7370,2974,3628, 930,3250,3744,7371, 59,7372, # 3526 + 585, 601,4078, 497,3419,1112,1314,4321,1801,7373,1223,1472,2174,7374, 749,1836, # 3542 + 690,1899,3745,1772,3885,1476, 429,1043,1790,2232,2116, 917,4079, 447,1086,1629, # 3558 +7375, 556,7376,7377,2020,1654, 844,1090, 105, 550, 966,1758,2815,1008,1782, 686, # 3574 +1095,7378,2282, 793,1602,7379,3518,2593,4322,4080,2933,2297,4323,3746, 980,2496, # 3590 + 544, 353, 527,4324, 908,2678,2899,7380, 381,2619,1942,1348,7381,1341,1252, 560, # 3606 +3072,7382,3420,2856,7383,2053, 973, 886,2080, 143,4325,7384,7385, 157,3886, 496, # 3622 +4081, 57, 840, 540,2038,4326,4327,3421,2117,1445, 970,2259,1748,1965,2081,4082, # 3638 +3119,1234,1775,3251,2816,3629, 773,1206,2129,1066,2039,1326,3887,1738,1725,4083, # 3654 + 279,3120, 51,1544,2594, 423,1578,2130,2066, 173,4328,1879,7386,7387,1583, 264, # 3670 + 610,3630,4329,2439, 280, 154,7388,7389,7390,1739, 338,1282,3073, 693,2857,1411, # 3686 +1074,3747,2440,7391,4330,7392,7393,1240, 952,2394,7394,2900,1538,2679, 685,1483, # 3702 +4084,2468,1436, 953,4085,2054,4331, 671,2395, 79,4086,2441,3252, 608, 567,2680, # 3718 +3422,4087,4088,1691, 393,1261,1791,2396,7395,4332,7396,7397,7398,7399,1383,1672, # 3734 +3748,3182,1464, 522,1119, 661,1150, 216, 675,4333,3888,1432,3519, 609,4334,2681, # 3750 +2397,7400,7401,7402,4089,3025, 0,7403,2469, 315, 231,2442, 301,3319,4335,2380, # 3766 +7404, 233,4090,3631,1818,4336,4337,7405, 96,1776,1315,2082,7406, 257,7407,1809, # 3782 +3632,2709,1139,1819,4091,2021,1124,2163,2778,1777,2649,7408,3074, 363,1655,3183, # 3798 +7409,2975,7410,7411,7412,3889,1567,3890, 718, 103,3184, 849,1443, 341,3320,2934, # 3814 +1484,7413,1712, 127, 67, 339,4092,2398, 679,1412, 821,7414,7415, 834, 738, 351, # 3830 +2976,2146, 846, 235,1497,1880, 418,1992,3749,2710, 186,1100,2147,2746,3520,1545, # 3846 +1355,2935,2858,1377, 583,3891,4093,2573,2977,7416,1298,3633,1078,2549,3634,2358, # 3862 + 78,3750,3751, 267,1289,2099,2001,1594,4094, 348, 369,1274,2194,2175,1837,4338, # 3878 +1820,2817,3635,2747,2283,2002,4339,2936,2748, 144,3321, 882,4340,3892,2749,3423, # 3894 +4341,2901,7417,4095,1726, 320,7418,3893,3026, 788,2978,7419,2818,1773,1327,2859, # 3910 +3894,2819,7420,1306,4342,2003,1700,3752,3521,2359,2650, 787,2022, 506, 824,3636, # 3926 + 534, 323,4343,1044,3322,2023,1900, 946,3424,7421,1778,1500,1678,7422,1881,4344, # 3942 + 165, 243,4345,3637,2521, 123, 683,4096, 764,4346, 36,3895,1792, 589,2902, 816, # 3958 + 626,1667,3027,2233,1639,1555,1622,3753,3896,7423,3897,2860,1370,1228,1932, 891, # 3974 +2083,2903, 304,4097,7424, 292,2979,2711,3522, 691,2100,4098,1115,4347, 118, 662, # 3990 +7425, 611,1156, 854,2381,1316,2861, 2, 386, 515,2904,7426,7427,3253, 868,2234, # 4006 +1486, 855,2651, 785,2212,3028,7428,1040,3185,3523,7429,3121, 448,7430,1525,7431, # 4022 +2164,4348,7432,3754,7433,4099,2820,3524,3122, 503, 818,3898,3123,1568, 814, 676, # 4038 +1444, 306,1749,7434,3755,1416,1030, 197,1428, 805,2821,1501,4349,7435,7436,7437, # 4054 +1993,7438,4350,7439,7440,2195, 13,2779,3638,2980,3124,1229,1916,7441,3756,2131, # 4070 +7442,4100,4351,2399,3525,7443,2213,1511,1727,1120,7444,7445, 646,3757,2443, 307, # 4086 +7446,7447,1595,3186,7448,7449,7450,3639,1113,1356,3899,1465,2522,2523,7451, 519, # 4102 +7452, 128,2132, 92,2284,1979,7453,3900,1512, 342,3125,2196,7454,2780,2214,1980, # 4118 +3323,7455, 290,1656,1317, 789, 827,2360,7456,3758,4352, 562, 581,3901,7457, 401, # 4134 +4353,2248, 94,4354,1399,2781,7458,1463,2024,4355,3187,1943,7459, 828,1105,4101, # 4150 +1262,1394,7460,4102, 605,4356,7461,1783,2862,7462,2822, 819,2101, 578,2197,2937, # 4166 +7463,1502, 436,3254,4103,3255,2823,3902,2905,3425,3426,7464,2712,2315,7465,7466, # 4182 +2332,2067, 23,4357, 193, 826,3759,2102, 699,1630,4104,3075, 390,1793,1064,3526, # 4198 +7467,1579,3076,3077,1400,7468,4105,1838,1640,2863,7469,4358,4359, 137,4106, 598, # 4214 +3078,1966, 780, 104, 974,2938,7470, 278, 899, 253, 402, 572, 504, 493,1339,7471, # 4230 +3903,1275,4360,2574,2550,7472,3640,3029,3079,2249, 565,1334,2713, 863, 41,7473, # 4246 +7474,4361,7475,1657,2333, 19, 463,2750,4107, 606,7476,2981,3256,1087,2084,1323, # 4262 +2652,2982,7477,1631,1623,1750,4108,2682,7478,2864, 791,2714,2653,2334, 232,2416, # 4278 +7479,2983,1498,7480,2654,2620, 755,1366,3641,3257,3126,2025,1609, 119,1917,3427, # 4294 + 862,1026,4109,7481,3904,3760,4362,3905,4363,2260,1951,2470,7482,1125, 817,4110, # 4310 +4111,3906,1513,1766,2040,1487,4112,3030,3258,2824,3761,3127,7483,7484,1507,7485, # 4326 +2683, 733, 40,1632,1106,2865, 345,4113, 841,2524, 230,4364,2984,1846,3259,3428, # 4342 +7486,1263, 986,3429,7487, 735, 879, 254,1137, 857, 622,1300,1180,1388,1562,3907, # 4358 +3908,2939, 967,2751,2655,1349, 592,2133,1692,3324,2985,1994,4114,1679,3909,1901, # 4374 +2185,7488, 739,3642,2715,1296,1290,7489,4115,2198,2199,1921,1563,2595,2551,1870, # 4390 +2752,2986,7490, 435,7491, 343,1108, 596, 17,1751,4365,2235,3430,3643,7492,4366, # 4406 + 294,3527,2940,1693, 477, 979, 281,2041,3528, 643,2042,3644,2621,2782,2261,1031, # 4422 +2335,2134,2298,3529,4367, 367,1249,2552,7493,3530,7494,4368,1283,3325,2004, 240, # 4438 +1762,3326,4369,4370, 836,1069,3128, 474,7495,2148,2525, 268,3531,7496,3188,1521, # 4454 +1284,7497,1658,1546,4116,7498,3532,3533,7499,4117,3327,2684,1685,4118, 961,1673, # 4470 +2622, 190,2005,2200,3762,4371,4372,7500, 570,2497,3645,1490,7501,4373,2623,3260, # 4486 +1956,4374, 584,1514, 396,1045,1944,7502,4375,1967,2444,7503,7504,4376,3910, 619, # 4502 +7505,3129,3261, 215,2006,2783,2553,3189,4377,3190,4378, 763,4119,3763,4379,7506, # 4518 +7507,1957,1767,2941,3328,3646,1174, 452,1477,4380,3329,3130,7508,2825,1253,2382, # 4534 +2186,1091,2285,4120, 492,7509, 638,1169,1824,2135,1752,3911, 648, 926,1021,1324, # 4550 +4381, 520,4382, 997, 847,1007, 892,4383,3764,2262,1871,3647,7510,2400,1784,4384, # 4566 +1952,2942,3080,3191,1728,4121,2043,3648,4385,2007,1701,3131,1551, 30,2263,4122, # 4582 +7511,2026,4386,3534,7512, 501,7513,4123, 594,3431,2165,1821,3535,3432,3536,3192, # 4598 + 829,2826,4124,7514,1680,3132,1225,4125,7515,3262,4387,4126,3133,2336,7516,4388, # 4614 +4127,7517,3912,3913,7518,1847,2383,2596,3330,7519,4389, 374,3914, 652,4128,4129, # 4630 + 375,1140, 798,7520,7521,7522,2361,4390,2264, 546,1659, 138,3031,2445,4391,7523, # 4646 +2250, 612,1848, 910, 796,3765,1740,1371, 825,3766,3767,7524,2906,2554,7525, 692, # 4662 + 444,3032,2624, 801,4392,4130,7526,1491, 244,1053,3033,4131,4132, 340,7527,3915, # 4678 +1041,2987, 293,1168, 87,1357,7528,1539, 959,7529,2236, 721, 694,4133,3768, 219, # 4694 +1478, 644,1417,3331,2656,1413,1401,1335,1389,3916,7530,7531,2988,2362,3134,1825, # 4710 + 730,1515, 184,2827, 66,4393,7532,1660,2943, 246,3332, 378,1457, 226,3433, 975, # 4726 +3917,2944,1264,3537, 674, 696,7533, 163,7534,1141,2417,2166, 713,3538,3333,4394, # 4742 +3918,7535,7536,1186, 15,7537,1079,1070,7538,1522,3193,3539, 276,1050,2716, 758, # 4758 +1126, 653,2945,3263,7539,2337, 889,3540,3919,3081,2989, 903,1250,4395,3920,3434, # 4774 +3541,1342,1681,1718, 766,3264, 286, 89,2946,3649,7540,1713,7541,2597,3334,2990, # 4790 +7542,2947,2215,3194,2866,7543,4396,2498,2526, 181, 387,1075,3921, 731,2187,3335, # 4806 +7544,3265, 310, 313,3435,2299, 770,4134, 54,3034, 189,4397,3082,3769,3922,7545, # 4822 +1230,1617,1849, 355,3542,4135,4398,3336, 111,4136,3650,1350,3135,3436,3035,4137, # 4838 +2149,3266,3543,7546,2784,3923,3924,2991, 722,2008,7547,1071, 247,1207,2338,2471, # 4854 +1378,4399,2009, 864,1437,1214,4400, 373,3770,1142,2216, 667,4401, 442,2753,2555, # 4870 +3771,3925,1968,4138,3267,1839, 837, 170,1107, 934,1336,1882,7548,7549,2118,4139, # 4886 +2828, 743,1569,7550,4402,4140, 582,2384,1418,3437,7551,1802,7552, 357,1395,1729, # 4902 +3651,3268,2418,1564,2237,7553,3083,3772,1633,4403,1114,2085,4141,1532,7554, 482, # 4918 +2446,4404,7555,7556,1492, 833,1466,7557,2717,3544,1641,2829,7558,1526,1272,3652, # 4934 +4142,1686,1794, 416,2556,1902,1953,1803,7559,3773,2785,3774,1159,2316,7560,2867, # 4950 +4405,1610,1584,3036,2419,2754, 443,3269,1163,3136,7561,7562,3926,7563,4143,2499, # 4966 +3037,4406,3927,3137,2103,1647,3545,2010,1872,4144,7564,4145, 431,3438,7565, 250, # 4982 + 97, 81,4146,7566,1648,1850,1558, 160, 848,7567, 866, 740,1694,7568,2201,2830, # 4998 +3195,4147,4407,3653,1687, 950,2472, 426, 469,3196,3654,3655,3928,7569,7570,1188, # 5014 + 424,1995, 861,3546,4148,3775,2202,2685, 168,1235,3547,4149,7571,2086,1674,4408, # 5030 +3337,3270, 220,2557,1009,7572,3776, 670,2992, 332,1208, 717,7573,7574,3548,2447, # 5046 +3929,3338,7575, 513,7576,1209,2868,3339,3138,4409,1080,7577,7578,7579,7580,2527, # 5062 +3656,3549, 815,1587,3930,3931,7581,3550,3439,3777,1254,4410,1328,3038,1390,3932, # 5078 +1741,3933,3778,3934,7582, 236,3779,2448,3271,7583,7584,3657,3780,1273,3781,4411, # 5094 +7585, 308,7586,4412, 245,4413,1851,2473,1307,2575, 430, 715,2136,2449,7587, 270, # 5110 + 199,2869,3935,7588,3551,2718,1753, 761,1754, 725,1661,1840,4414,3440,3658,7589, # 5126 +7590, 587, 14,3272, 227,2598, 326, 480,2265, 943,2755,3552, 291, 650,1883,7591, # 5142 +1702,1226, 102,1547, 62,3441, 904,4415,3442,1164,4150,7592,7593,1224,1548,2756, # 5158 + 391, 498,1493,7594,1386,1419,7595,2055,1177,4416, 813, 880,1081,2363, 566,1145, # 5174 +4417,2286,1001,1035,2558,2599,2238, 394,1286,7596,7597,2068,7598, 86,1494,1730, # 5190 +3936, 491,1588, 745, 897,2948, 843,3340,3937,2757,2870,3273,1768, 998,2217,2069, # 5206 + 397,1826,1195,1969,3659,2993,3341, 284,7599,3782,2500,2137,2119,1903,7600,3938, # 5222 +2150,3939,4151,1036,3443,1904, 114,2559,4152, 209,1527,7601,7602,2949,2831,2625, # 5238 +2385,2719,3139, 812,2560,7603,3274,7604,1559, 737,1884,3660,1210, 885, 28,2686, # 5254 +3553,3783,7605,4153,1004,1779,4418,7606, 346,1981,2218,2687,4419,3784,1742, 797, # 5270 +1642,3940,1933,1072,1384,2151, 896,3941,3275,3661,3197,2871,3554,7607,2561,1958, # 5286 +4420,2450,1785,7608,7609,7610,3942,4154,1005,1308,3662,4155,2720,4421,4422,1528, # 5302 +2600, 161,1178,4156,1982, 987,4423,1101,4157, 631,3943,1157,3198,2420,1343,1241, # 5318 +1016,2239,2562, 372, 877,2339,2501,1160, 555,1934, 911,3944,7611, 466,1170, 169, # 5334 +1051,2907,2688,3663,2474,2994,1182,2011,2563,1251,2626,7612, 992,2340,3444,1540, # 5350 +2721,1201,2070,2401,1996,2475,7613,4424, 528,1922,2188,1503,1873,1570,2364,3342, # 5366 +3276,7614, 557,1073,7615,1827,3445,2087,2266,3140,3039,3084, 767,3085,2786,4425, # 5382 +1006,4158,4426,2341,1267,2176,3664,3199, 778,3945,3200,2722,1597,2657,7616,4427, # 5398 +7617,3446,7618,7619,7620,3277,2689,1433,3278, 131, 95,1504,3946, 723,4159,3141, # 5414 +1841,3555,2758,2189,3947,2027,2104,3665,7621,2995,3948,1218,7622,3343,3201,3949, # 5430 +4160,2576, 248,1634,3785, 912,7623,2832,3666,3040,3786, 654, 53,7624,2996,7625, # 5446 +1688,4428, 777,3447,1032,3950,1425,7626, 191, 820,2120,2833, 971,4429, 931,3202, # 5462 + 135, 664, 783,3787,1997, 772,2908,1935,3951,3788,4430,2909,3203, 282,2723, 640, # 5478 +1372,3448,1127, 922, 325,3344,7627,7628, 711,2044,7629,7630,3952,2219,2787,1936, # 5494 +3953,3345,2220,2251,3789,2300,7631,4431,3790,1258,3279,3954,3204,2138,2950,3955, # 5510 +3956,7632,2221, 258,3205,4432, 101,1227,7633,3280,1755,7634,1391,3281,7635,2910, # 5526 +2056, 893,7636,7637,7638,1402,4161,2342,7639,7640,3206,3556,7641,7642, 878,1325, # 5542 +1780,2788,4433, 259,1385,2577, 744,1183,2267,4434,7643,3957,2502,7644, 684,1024, # 5558 +4162,7645, 472,3557,3449,1165,3282,3958,3959, 322,2152, 881, 455,1695,1152,1340, # 5574 + 660, 554,2153,4435,1058,4436,4163, 830,1065,3346,3960,4437,1923,7646,1703,1918, # 5590 +7647, 932,2268, 122,7648,4438, 947, 677,7649,3791,2627, 297,1905,1924,2269,4439, # 5606 +2317,3283,7650,7651,4164,7652,4165, 84,4166, 112, 989,7653, 547,1059,3961, 701, # 5622 +3558,1019,7654,4167,7655,3450, 942, 639, 457,2301,2451, 993,2951, 407, 851, 494, # 5638 +4440,3347, 927,7656,1237,7657,2421,3348, 573,4168, 680, 921,2911,1279,1874, 285, # 5654 + 790,1448,1983, 719,2167,7658,7659,4441,3962,3963,1649,7660,1541, 563,7661,1077, # 5670 +7662,3349,3041,3451, 511,2997,3964,3965,3667,3966,1268,2564,3350,3207,4442,4443, # 5686 +7663, 535,1048,1276,1189,2912,2028,3142,1438,1373,2834,2952,1134,2012,7664,4169, # 5702 +1238,2578,3086,1259,7665, 700,7666,2953,3143,3668,4170,7667,4171,1146,1875,1906, # 5718 +4444,2601,3967, 781,2422, 132,1589, 203, 147, 273,2789,2402, 898,1786,2154,3968, # 5734 +3969,7668,3792,2790,7669,7670,4445,4446,7671,3208,7672,1635,3793, 965,7673,1804, # 5750 +2690,1516,3559,1121,1082,1329,3284,3970,1449,3794, 65,1128,2835,2913,2759,1590, # 5766 +3795,7674,7675, 12,2658, 45, 976,2579,3144,4447, 517,2528,1013,1037,3209,7676, # 5782 +3796,2836,7677,3797,7678,3452,7679,2602, 614,1998,2318,3798,3087,2724,2628,7680, # 5798 +2580,4172, 599,1269,7681,1810,3669,7682,2691,3088, 759,1060, 489,1805,3351,3285, # 5814 +1358,7683,7684,2386,1387,1215,2629,2252, 490,7685,7686,4173,1759,2387,2343,7687, # 5830 +4448,3799,1907,3971,2630,1806,3210,4449,3453,3286,2760,2344, 874,7688,7689,3454, # 5846 +3670,1858, 91,2914,3671,3042,3800,4450,7690,3145,3972,2659,7691,3455,1202,1403, # 5862 +3801,2954,2529,1517,2503,4451,3456,2504,7692,4452,7693,2692,1885,1495,1731,3973, # 5878 +2365,4453,7694,2029,7695,7696,3974,2693,1216, 237,2581,4174,2319,3975,3802,4454, # 5894 +4455,2694,3560,3457, 445,4456,7697,7698,7699,7700,2761, 61,3976,3672,1822,3977, # 5910 +7701, 687,2045, 935, 925, 405,2660, 703,1096,1859,2725,4457,3978,1876,1367,2695, # 5926 +3352, 918,2105,1781,2476, 334,3287,1611,1093,4458, 564,3146,3458,3673,3353, 945, # 5942 +2631,2057,4459,7702,1925, 872,4175,7703,3459,2696,3089, 349,4176,3674,3979,4460, # 5958 +3803,4177,3675,2155,3980,4461,4462,4178,4463,2403,2046, 782,3981, 400, 251,4179, # 5974 +1624,7704,7705, 277,3676, 299,1265, 476,1191,3804,2121,4180,4181,1109, 205,7706, # 5990 +2582,1000,2156,3561,1860,7707,7708,7709,4464,7710,4465,2565, 107,2477,2157,3982, # 6006 +3460,3147,7711,1533, 541,1301, 158, 753,4182,2872,3562,7712,1696, 370,1088,4183, # 6022 +4466,3563, 579, 327, 440, 162,2240, 269,1937,1374,3461, 968,3043, 56,1396,3090, # 6038 +2106,3288,3354,7713,1926,2158,4467,2998,7714,3564,7715,7716,3677,4468,2478,7717, # 6054 +2791,7718,1650,4469,7719,2603,7720,7721,3983,2661,3355,1149,3356,3984,3805,3985, # 6070 +7722,1076, 49,7723, 951,3211,3289,3290, 450,2837, 920,7724,1811,2792,2366,4184, # 6086 +1908,1138,2367,3806,3462,7725,3212,4470,1909,1147,1518,2423,4471,3807,7726,4472, # 6102 +2388,2604, 260,1795,3213,7727,7728,3808,3291, 708,7729,3565,1704,7730,3566,1351, # 6118 +1618,3357,2999,1886, 944,4185,3358,4186,3044,3359,4187,7731,3678, 422, 413,1714, # 6134 +3292, 500,2058,2345,4188,2479,7732,1344,1910, 954,7733,1668,7734,7735,3986,2404, # 6150 +4189,3567,3809,4190,7736,2302,1318,2505,3091, 133,3092,2873,4473, 629, 31,2838, # 6166 +2697,3810,4474, 850, 949,4475,3987,2955,1732,2088,4191,1496,1852,7737,3988, 620, # 6182 +3214, 981,1242,3679,3360,1619,3680,1643,3293,2139,2452,1970,1719,3463,2168,7738, # 6198 +3215,7739,7740,3361,1828,7741,1277,4476,1565,2047,7742,1636,3568,3093,7743, 869, # 6214 +2839, 655,3811,3812,3094,3989,3000,3813,1310,3569,4477,7744,7745,7746,1733, 558, # 6230 +4478,3681, 335,1549,3045,1756,4192,3682,1945,3464,1829,1291,1192, 470,2726,2107, # 6246 +2793, 913,1054,3990,7747,1027,7748,3046,3991,4479, 982,2662,3362,3148,3465,3216, # 6262 +3217,1946,2794,7749, 571,4480,7750,1830,7751,3570,2583,1523,2424,7752,2089, 984, # 6278 +4481,3683,1959,7753,3684, 852, 923,2795,3466,3685, 969,1519, 999,2048,2320,1705, # 6294 +7754,3095, 615,1662, 151, 597,3992,2405,2321,1049, 275,4482,3686,4193, 568,3687, # 6310 +3571,2480,4194,3688,7755,2425,2270, 409,3218,7756,1566,2874,3467,1002, 769,2840, # 6326 + 194,2090,3149,3689,2222,3294,4195, 628,1505,7757,7758,1763,2177,3001,3993, 521, # 6342 +1161,2584,1787,2203,2406,4483,3994,1625,4196,4197, 412, 42,3096, 464,7759,2632, # 6358 +4484,3363,1760,1571,2875,3468,2530,1219,2204,3814,2633,2140,2368,4485,4486,3295, # 6374 +1651,3364,3572,7760,7761,3573,2481,3469,7762,3690,7763,7764,2271,2091, 460,7765, # 6390 +4487,7766,3002, 962, 588,3574, 289,3219,2634,1116, 52,7767,3047,1796,7768,7769, # 6406 +7770,1467,7771,1598,1143,3691,4198,1984,1734,1067,4488,1280,3365, 465,4489,1572, # 6422 + 510,7772,1927,2241,1812,1644,3575,7773,4490,3692,7774,7775,2663,1573,1534,7776, # 6438 +7777,4199, 536,1807,1761,3470,3815,3150,2635,7778,7779,7780,4491,3471,2915,1911, # 6454 +2796,7781,3296,1122, 377,3220,7782, 360,7783,7784,4200,1529, 551,7785,2059,3693, # 6470 +1769,2426,7786,2916,4201,3297,3097,2322,2108,2030,4492,1404, 136,1468,1479, 672, # 6486 +1171,3221,2303, 271,3151,7787,2762,7788,2049, 678,2727, 865,1947,4493,7789,2013, # 6502 +3995,2956,7790,2728,2223,1397,3048,3694,4494,4495,1735,2917,3366,3576,7791,3816, # 6518 + 509,2841,2453,2876,3817,7792,7793,3152,3153,4496,4202,2531,4497,2304,1166,1010, # 6534 + 552, 681,1887,7794,7795,2957,2958,3996,1287,1596,1861,3154, 358, 453, 736, 175, # 6550 + 478,1117, 905,1167,1097,7796,1853,1530,7797,1706,7798,2178,3472,2287,3695,3473, # 6566 +3577,4203,2092,4204,7799,3367,1193,2482,4205,1458,2190,2205,1862,1888,1421,3298, # 6582 +2918,3049,2179,3474, 595,2122,7800,3997,7801,7802,4206,1707,2636, 223,3696,1359, # 6598 + 751,3098, 183,3475,7803,2797,3003, 419,2369, 633, 704,3818,2389, 241,7804,7805, # 6614 +7806, 838,3004,3697,2272,2763,2454,3819,1938,2050,3998,1309,3099,2242,1181,7807, # 6630 +1136,2206,3820,2370,1446,4207,2305,4498,7808,7809,4208,1055,2605, 484,3698,7810, # 6646 +3999, 625,4209,2273,3368,1499,4210,4000,7811,4001,4211,3222,2274,2275,3476,7812, # 6662 +7813,2764, 808,2606,3699,3369,4002,4212,3100,2532, 526,3370,3821,4213, 955,7814, # 6678 +1620,4214,2637,2427,7815,1429,3700,1669,1831, 994, 928,7816,3578,1260,7817,7818, # 6694 +7819,1948,2288, 741,2919,1626,4215,2729,2455, 867,1184, 362,3371,1392,7820,7821, # 6710 +4003,4216,1770,1736,3223,2920,4499,4500,1928,2698,1459,1158,7822,3050,3372,2877, # 6726 +1292,1929,2506,2842,3701,1985,1187,2071,2014,2607,4217,7823,2566,2507,2169,3702, # 6742 +2483,3299,7824,3703,4501,7825,7826, 666,1003,3005,1022,3579,4218,7827,4502,1813, # 6758 +2253, 574,3822,1603, 295,1535, 705,3823,4219, 283, 858, 417,7828,7829,3224,4503, # 6774 +4504,3051,1220,1889,1046,2276,2456,4004,1393,1599, 689,2567, 388,4220,7830,2484, # 6790 + 802,7831,2798,3824,2060,1405,2254,7832,4505,3825,2109,1052,1345,3225,1585,7833, # 6806 + 809,7834,7835,7836, 575,2730,3477, 956,1552,1469,1144,2323,7837,2324,1560,2457, # 6822 +3580,3226,4005, 616,2207,3155,2180,2289,7838,1832,7839,3478,4506,7840,1319,3704, # 6838 +3705,1211,3581,1023,3227,1293,2799,7841,7842,7843,3826, 607,2306,3827, 762,2878, # 6854 +1439,4221,1360,7844,1485,3052,7845,4507,1038,4222,1450,2061,2638,4223,1379,4508, # 6870 +2585,7846,7847,4224,1352,1414,2325,2921,1172,7848,7849,3828,3829,7850,1797,1451, # 6886 +7851,7852,7853,7854,2922,4006,4007,2485,2346, 411,4008,4009,3582,3300,3101,4509, # 6902 +1561,2664,1452,4010,1375,7855,7856, 47,2959, 316,7857,1406,1591,2923,3156,7858, # 6918 +1025,2141,3102,3157, 354,2731, 884,2224,4225,2407, 508,3706, 726,3583, 996,2428, # 6934 +3584, 729,7859, 392,2191,1453,4011,4510,3707,7860,7861,2458,3585,2608,1675,2800, # 6950 + 919,2347,2960,2348,1270,4511,4012, 73,7862,7863, 647,7864,3228,2843,2255,1550, # 6966 +1346,3006,7865,1332, 883,3479,7866,7867,7868,7869,3301,2765,7870,1212, 831,1347, # 6982 +4226,4512,2326,3830,1863,3053, 720,3831,4513,4514,3832,7871,4227,7872,7873,4515, # 6998 +7874,7875,1798,4516,3708,2609,4517,3586,1645,2371,7876,7877,2924, 669,2208,2665, # 7014 +2429,7878,2879,7879,7880,1028,3229,7881,4228,2408,7882,2256,1353,7883,7884,4518, # 7030 +3158, 518,7885,4013,7886,4229,1960,7887,2142,4230,7888,7889,3007,2349,2350,3833, # 7046 + 516,1833,1454,4014,2699,4231,4519,2225,2610,1971,1129,3587,7890,2766,7891,2961, # 7062 +1422, 577,1470,3008,1524,3373,7892,7893, 432,4232,3054,3480,7894,2586,1455,2508, # 7078 +2226,1972,1175,7895,1020,2732,4015,3481,4520,7896,2733,7897,1743,1361,3055,3482, # 7094 +2639,4016,4233,4521,2290, 895, 924,4234,2170, 331,2243,3056, 166,1627,3057,1098, # 7110 +7898,1232,2880,2227,3374,4522, 657, 403,1196,2372, 542,3709,3375,1600,4235,3483, # 7126 +7899,4523,2767,3230, 576, 530,1362,7900,4524,2533,2666,3710,4017,7901, 842,3834, # 7142 +7902,2801,2031,1014,4018, 213,2700,3376, 665, 621,4236,7903,3711,2925,2430,7904, # 7158 +2431,3302,3588,3377,7905,4237,2534,4238,4525,3589,1682,4239,3484,1380,7906, 724, # 7174 +2277, 600,1670,7907,1337,1233,4526,3103,2244,7908,1621,4527,7909, 651,4240,7910, # 7190 +1612,4241,2611,7911,2844,7912,2734,2307,3058,7913, 716,2459,3059, 174,1255,2701, # 7206 +4019,3590, 548,1320,1398, 728,4020,1574,7914,1890,1197,3060,4021,7915,3061,3062, # 7222 +3712,3591,3713, 747,7916, 635,4242,4528,7917,7918,7919,4243,7920,7921,4529,7922, # 7238 +3378,4530,2432, 451,7923,3714,2535,2072,4244,2735,4245,4022,7924,1764,4531,7925, # 7254 +4246, 350,7926,2278,2390,2486,7927,4247,4023,2245,1434,4024, 488,4532, 458,4248, # 7270 +4025,3715, 771,1330,2391,3835,2568,3159,2159,2409,1553,2667,3160,4249,7928,2487, # 7286 +2881,2612,1720,2702,4250,3379,4533,7929,2536,4251,7930,3231,4252,2768,7931,2015, # 7302 +2736,7932,1155,1017,3716,3836,7933,3303,2308, 201,1864,4253,1430,7934,4026,7935, # 7318 +7936,7937,7938,7939,4254,1604,7940, 414,1865, 371,2587,4534,4535,3485,2016,3104, # 7334 +4536,1708, 960,4255, 887, 389,2171,1536,1663,1721,7941,2228,4027,2351,2926,1580, # 7350 +7942,7943,7944,1744,7945,2537,4537,4538,7946,4539,7947,2073,7948,7949,3592,3380, # 7366 +2882,4256,7950,4257,2640,3381,2802, 673,2703,2460, 709,3486,4028,3593,4258,7951, # 7382 +1148, 502, 634,7952,7953,1204,4540,3594,1575,4541,2613,3717,7954,3718,3105, 948, # 7398 +3232, 121,1745,3837,1110,7955,4259,3063,2509,3009,4029,3719,1151,1771,3838,1488, # 7414 +4030,1986,7956,2433,3487,7957,7958,2093,7959,4260,3839,1213,1407,2803, 531,2737, # 7430 +2538,3233,1011,1537,7960,2769,4261,3106,1061,7961,3720,3721,1866,2883,7962,2017, # 7446 + 120,4262,4263,2062,3595,3234,2309,3840,2668,3382,1954,4542,7963,7964,3488,1047, # 7462 +2704,1266,7965,1368,4543,2845, 649,3383,3841,2539,2738,1102,2846,2669,7966,7967, # 7478 +1999,7968,1111,3596,2962,7969,2488,3842,3597,2804,1854,3384,3722,7970,7971,3385, # 7494 +2410,2884,3304,3235,3598,7972,2569,7973,3599,2805,4031,1460, 856,7974,3600,7975, # 7510 +2885,2963,7976,2886,3843,7977,4264, 632,2510, 875,3844,1697,3845,2291,7978,7979, # 7526 +4544,3010,1239, 580,4545,4265,7980, 914, 936,2074,1190,4032,1039,2123,7981,7982, # 7542 +7983,3386,1473,7984,1354,4266,3846,7985,2172,3064,4033, 915,3305,4267,4268,3306, # 7558 +1605,1834,7986,2739, 398,3601,4269,3847,4034, 328,1912,2847,4035,3848,1331,4270, # 7574 +3011, 937,4271,7987,3602,4036,4037,3387,2160,4546,3388, 524, 742, 538,3065,1012, # 7590 +7988,7989,3849,2461,7990, 658,1103, 225,3850,7991,7992,4547,7993,4548,7994,3236, # 7606 +1243,7995,4038, 963,2246,4549,7996,2705,3603,3161,7997,7998,2588,2327,7999,4550, # 7622 +8000,8001,8002,3489,3307, 957,3389,2540,2032,1930,2927,2462, 870,2018,3604,1746, # 7638 +2770,2771,2434,2463,8003,3851,8004,3723,3107,3724,3490,3390,3725,8005,1179,3066, # 7654 +8006,3162,2373,4272,3726,2541,3163,3108,2740,4039,8007,3391,1556,2542,2292, 977, # 7670 +2887,2033,4040,1205,3392,8008,1765,3393,3164,2124,1271,1689, 714,4551,3491,8009, # 7686 +2328,3852, 533,4273,3605,2181, 617,8010,2464,3308,3492,2310,8011,8012,3165,8013, # 7702 +8014,3853,1987, 618, 427,2641,3493,3394,8015,8016,1244,1690,8017,2806,4274,4552, # 7718 +8018,3494,8019,8020,2279,1576, 473,3606,4275,3395, 972,8021,3607,8022,3067,8023, # 7734 +8024,4553,4554,8025,3727,4041,4042,8026, 153,4555, 356,8027,1891,2888,4276,2143, # 7750 + 408, 803,2352,8028,3854,8029,4277,1646,2570,2511,4556,4557,3855,8030,3856,4278, # 7766 +8031,2411,3396, 752,8032,8033,1961,2964,8034, 746,3012,2465,8035,4279,3728, 698, # 7782 +4558,1892,4280,3608,2543,4559,3609,3857,8036,3166,3397,8037,1823,1302,4043,2706, # 7798 +3858,1973,4281,8038,4282,3167, 823,1303,1288,1236,2848,3495,4044,3398, 774,3859, # 7814 +8039,1581,4560,1304,2849,3860,4561,8040,2435,2161,1083,3237,4283,4045,4284, 344, # 7830 +1173, 288,2311, 454,1683,8041,8042,1461,4562,4046,2589,8043,8044,4563, 985, 894, # 7846 +8045,3399,3168,8046,1913,2928,3729,1988,8047,2110,1974,8048,4047,8049,2571,1194, # 7862 + 425,8050,4564,3169,1245,3730,4285,8051,8052,2850,8053, 636,4565,1855,3861, 760, # 7878 +1799,8054,4286,2209,1508,4566,4048,1893,1684,2293,8055,8056,8057,4287,4288,2210, # 7894 + 479,8058,8059, 832,8060,4049,2489,8061,2965,2490,3731, 990,3109, 627,1814,2642, # 7910 +4289,1582,4290,2125,2111,3496,4567,8062, 799,4291,3170,8063,4568,2112,1737,3013, # 7926 +1018, 543, 754,4292,3309,1676,4569,4570,4050,8064,1489,8065,3497,8066,2614,2889, # 7942 +4051,8067,8068,2966,8069,8070,8071,8072,3171,4571,4572,2182,1722,8073,3238,3239, # 7958 +1842,3610,1715, 481, 365,1975,1856,8074,8075,1962,2491,4573,8076,2126,3611,3240, # 7974 + 433,1894,2063,2075,8077, 602,2741,8078,8079,8080,8081,8082,3014,1628,3400,8083, # 7990 +3172,4574,4052,2890,4575,2512,8084,2544,2772,8085,8086,8087,3310,4576,2891,8088, # 8006 +4577,8089,2851,4578,4579,1221,2967,4053,2513,8090,8091,8092,1867,1989,8093,8094, # 8022 +8095,1895,8096,8097,4580,1896,4054, 318,8098,2094,4055,4293,8099,8100, 485,8101, # 8038 + 938,3862, 553,2670, 116,8102,3863,3612,8103,3498,2671,2773,3401,3311,2807,8104, # 8054 +3613,2929,4056,1747,2930,2968,8105,8106, 207,8107,8108,2672,4581,2514,8109,3015, # 8070 + 890,3614,3864,8110,1877,3732,3402,8111,2183,2353,3403,1652,8112,8113,8114, 941, # 8086 +2294, 208,3499,4057,2019, 330,4294,3865,2892,2492,3733,4295,8115,8116,8117,8118, # 8102 +) + diff --git a/venv/lib/python2.7/site-packages/chardet/euctwprober.py b/venv/lib/python2.7/site-packages/chardet/euctwprober.py new file mode 100644 index 00000000..35669cc4 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/euctwprober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTW_SM_MODEL + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + super(EUCTWProber, self).__init__() + self.coding_sm = CodingStateMachine(EUCTW_SM_MODEL) + self.distribution_analyzer = EUCTWDistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "EUC-TW" + + @property + def language(self): + return "Taiwan" diff --git a/venv/lib/python2.7/site-packages/chardet/gb2312freq.py b/venv/lib/python2.7/site-packages/chardet/gb2312freq.py new file mode 100644 index 00000000..697837bd --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/gb2312freq.py @@ -0,0 +1,283 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# GB2312 most frequently used character table +# +# Char to FreqOrder table , from hz6763 + +# 512 --> 0.79 -- 0.79 +# 1024 --> 0.92 -- 0.13 +# 2048 --> 0.98 -- 0.06 +# 6768 --> 1.00 -- 0.02 +# +# Ideal Distribution Ratio = 0.79135/(1-0.79135) = 3.79 +# Random Distribution Ration = 512 / (3755 - 512) = 0.157 +# +# Typical Distribution Ratio about 25% of Ideal one, still much higher that RDR + +GB2312_TYPICAL_DISTRIBUTION_RATIO = 0.9 + +GB2312_TABLE_SIZE = 3760 + +GB2312_CHAR_TO_FREQ_ORDER = ( +1671, 749,1443,2364,3924,3807,2330,3921,1704,3463,2691,1511,1515, 572,3191,2205, +2361, 224,2558, 479,1711, 963,3162, 440,4060,1905,2966,2947,3580,2647,3961,3842, +2204, 869,4207, 970,2678,5626,2944,2956,1479,4048, 514,3595, 588,1346,2820,3409, + 249,4088,1746,1873,2047,1774, 581,1813, 358,1174,3590,1014,1561,4844,2245, 670, +1636,3112, 889,1286, 953, 556,2327,3060,1290,3141, 613, 185,3477,1367, 850,3820, +1715,2428,2642,2303,2732,3041,2562,2648,3566,3946,1349, 388,3098,2091,1360,3585, + 152,1687,1539, 738,1559, 59,1232,2925,2267,1388,1249,1741,1679,2960, 151,1566, +1125,1352,4271, 924,4296, 385,3166,4459, 310,1245,2850, 70,3285,2729,3534,3575, +2398,3298,3466,1960,2265, 217,3647, 864,1909,2084,4401,2773,1010,3269,5152, 853, +3051,3121,1244,4251,1895, 364,1499,1540,2313,1180,3655,2268, 562, 715,2417,3061, + 544, 336,3768,2380,1752,4075, 950, 280,2425,4382, 183,2759,3272, 333,4297,2155, +1688,2356,1444,1039,4540, 736,1177,3349,2443,2368,2144,2225, 565, 196,1482,3406, + 927,1335,4147, 692, 878,1311,1653,3911,3622,1378,4200,1840,2969,3149,2126,1816, +2534,1546,2393,2760, 737,2494, 13, 447, 245,2747, 38,2765,2129,2589,1079, 606, + 360, 471,3755,2890, 404, 848, 699,1785,1236, 370,2221,1023,3746,2074,2026,2023, +2388,1581,2119, 812,1141,3091,2536,1519, 804,2053, 406,1596,1090, 784, 548,4414, +1806,2264,2936,1100, 343,4114,5096, 622,3358, 743,3668,1510,1626,5020,3567,2513, +3195,4115,5627,2489,2991, 24,2065,2697,1087,2719, 48,1634, 315, 68, 985,2052, + 198,2239,1347,1107,1439, 597,2366,2172, 871,3307, 919,2487,2790,1867, 236,2570, +1413,3794, 906,3365,3381,1701,1982,1818,1524,2924,1205, 616,2586,2072,2004, 575, + 253,3099, 32,1365,1182, 197,1714,2454,1201, 554,3388,3224,2748, 756,2587, 250, +2567,1507,1517,3529,1922,2761,2337,3416,1961,1677,2452,2238,3153, 615, 911,1506, +1474,2495,1265,1906,2749,3756,3280,2161, 898,2714,1759,3450,2243,2444, 563, 26, +3286,2266,3769,3344,2707,3677, 611,1402, 531,1028,2871,4548,1375, 261,2948, 835, +1190,4134, 353, 840,2684,1900,3082,1435,2109,1207,1674, 329,1872,2781,4055,2686, +2104, 608,3318,2423,2957,2768,1108,3739,3512,3271,3985,2203,1771,3520,1418,2054, +1681,1153, 225,1627,2929, 162,2050,2511,3687,1954, 124,1859,2431,1684,3032,2894, + 585,4805,3969,2869,2704,2088,2032,2095,3656,2635,4362,2209, 256, 518,2042,2105, +3777,3657, 643,2298,1148,1779, 190, 989,3544, 414, 11,2135,2063,2979,1471, 403, +3678, 126, 770,1563, 671,2499,3216,2877, 600,1179, 307,2805,4937,1268,1297,2694, + 252,4032,1448,1494,1331,1394, 127,2256, 222,1647,1035,1481,3056,1915,1048, 873, +3651, 210, 33,1608,2516, 200,1520, 415, 102, 0,3389,1287, 817, 91,3299,2940, + 836,1814, 549,2197,1396,1669,2987,3582,2297,2848,4528,1070, 687, 20,1819, 121, +1552,1364,1461,1968,2617,3540,2824,2083, 177, 948,4938,2291, 110,4549,2066, 648, +3359,1755,2110,2114,4642,4845,1693,3937,3308,1257,1869,2123, 208,1804,3159,2992, +2531,2549,3361,2418,1350,2347,2800,2568,1291,2036,2680, 72, 842,1990, 212,1233, +1154,1586, 75,2027,3410,4900,1823,1337,2710,2676, 728,2810,1522,3026,4995, 157, + 755,1050,4022, 710, 785,1936,2194,2085,1406,2777,2400, 150,1250,4049,1206, 807, +1910, 534, 529,3309,1721,1660, 274, 39,2827, 661,2670,1578, 925,3248,3815,1094, +4278,4901,4252, 41,1150,3747,2572,2227,4501,3658,4902,3813,3357,3617,2884,2258, + 887, 538,4187,3199,1294,2439,3042,2329,2343,2497,1255, 107, 543,1527, 521,3478, +3568, 194,5062, 15, 961,3870,1241,1192,2664, 66,5215,3260,2111,1295,1127,2152, +3805,4135, 901,1164,1976, 398,1278, 530,1460, 748, 904,1054,1966,1426, 53,2909, + 509, 523,2279,1534, 536,1019, 239,1685, 460,2353, 673,1065,2401,3600,4298,2272, +1272,2363, 284,1753,3679,4064,1695, 81, 815,2677,2757,2731,1386, 859, 500,4221, +2190,2566, 757,1006,2519,2068,1166,1455, 337,2654,3203,1863,1682,1914,3025,1252, +1409,1366, 847, 714,2834,2038,3209, 964,2970,1901, 885,2553,1078,1756,3049, 301, +1572,3326, 688,2130,1996,2429,1805,1648,2930,3421,2750,3652,3088, 262,1158,1254, + 389,1641,1812, 526,1719, 923,2073,1073,1902, 468, 489,4625,1140, 857,2375,3070, +3319,2863, 380, 116,1328,2693,1161,2244, 273,1212,1884,2769,3011,1775,1142, 461, +3066,1200,2147,2212, 790, 702,2695,4222,1601,1058, 434,2338,5153,3640, 67,2360, +4099,2502, 618,3472,1329, 416,1132, 830,2782,1807,2653,3211,3510,1662, 192,2124, + 296,3979,1739,1611,3684, 23, 118, 324, 446,1239,1225, 293,2520,3814,3795,2535, +3116, 17,1074, 467,2692,2201, 387,2922, 45,1326,3055,1645,3659,2817, 958, 243, +1903,2320,1339,2825,1784,3289, 356, 576, 865,2315,2381,3377,3916,1088,3122,1713, +1655, 935, 628,4689,1034,1327, 441, 800, 720, 894,1979,2183,1528,5289,2702,1071, +4046,3572,2399,1571,3281, 79, 761,1103, 327, 134, 758,1899,1371,1615, 879, 442, + 215,2605,2579, 173,2048,2485,1057,2975,3317,1097,2253,3801,4263,1403,1650,2946, + 814,4968,3487,1548,2644,1567,1285, 2, 295,2636, 97, 946,3576, 832, 141,4257, +3273, 760,3821,3521,3156,2607, 949,1024,1733,1516,1803,1920,2125,2283,2665,3180, +1501,2064,3560,2171,1592, 803,3518,1416, 732,3897,4258,1363,1362,2458, 119,1427, + 602,1525,2608,1605,1639,3175, 694,3064, 10, 465, 76,2000,4846,4208, 444,3781, +1619,3353,2206,1273,3796, 740,2483, 320,1723,2377,3660,2619,1359,1137,1762,1724, +2345,2842,1850,1862, 912, 821,1866, 612,2625,1735,2573,3369,1093, 844, 89, 937, + 930,1424,3564,2413,2972,1004,3046,3019,2011, 711,3171,1452,4178, 428, 801,1943, + 432, 445,2811, 206,4136,1472, 730, 349, 73, 397,2802,2547, 998,1637,1167, 789, + 396,3217, 154,1218, 716,1120,1780,2819,4826,1931,3334,3762,2139,1215,2627, 552, +3664,3628,3232,1405,2383,3111,1356,2652,3577,3320,3101,1703, 640,1045,1370,1246, +4996, 371,1575,2436,1621,2210, 984,4033,1734,2638, 16,4529, 663,2755,3255,1451, +3917,2257,1253,1955,2234,1263,2951, 214,1229, 617, 485, 359,1831,1969, 473,2310, + 750,2058, 165, 80,2864,2419, 361,4344,2416,2479,1134, 796,3726,1266,2943, 860, +2715, 938, 390,2734,1313,1384, 248, 202, 877,1064,2854, 522,3907, 279,1602, 297, +2357, 395,3740, 137,2075, 944,4089,2584,1267,3802, 62,1533,2285, 178, 176, 780, +2440, 201,3707, 590, 478,1560,4354,2117,1075, 30, 74,4643,4004,1635,1441,2745, + 776,2596, 238,1077,1692,1912,2844, 605, 499,1742,3947, 241,3053, 980,1749, 936, +2640,4511,2582, 515,1543,2162,5322,2892,2993, 890,2148,1924, 665,1827,3581,1032, + 968,3163, 339,1044,1896, 270, 583,1791,1720,4367,1194,3488,3669, 43,2523,1657, + 163,2167, 290,1209,1622,3378, 550, 634,2508,2510, 695,2634,2384,2512,1476,1414, + 220,1469,2341,2138,2852,3183,2900,4939,2865,3502,1211,3680, 854,3227,1299,2976, +3172, 186,2998,1459, 443,1067,3251,1495, 321,1932,3054, 909, 753,1410,1828, 436, +2441,1119,1587,3164,2186,1258, 227, 231,1425,1890,3200,3942, 247, 959, 725,5254, +2741, 577,2158,2079, 929, 120, 174, 838,2813, 591,1115, 417,2024, 40,3240,1536, +1037, 291,4151,2354, 632,1298,2406,2500,3535,1825,1846,3451, 205,1171, 345,4238, + 18,1163, 811, 685,2208,1217, 425,1312,1508,1175,4308,2552,1033, 587,1381,3059, +2984,3482, 340,1316,4023,3972, 792,3176, 519, 777,4690, 918, 933,4130,2981,3741, + 90,3360,2911,2200,5184,4550, 609,3079,2030, 272,3379,2736, 363,3881,1130,1447, + 286, 779, 357,1169,3350,3137,1630,1220,2687,2391, 747,1277,3688,2618,2682,2601, +1156,3196,5290,4034,3102,1689,3596,3128, 874, 219,2783, 798, 508,1843,2461, 269, +1658,1776,1392,1913,2983,3287,2866,2159,2372, 829,4076, 46,4253,2873,1889,1894, + 915,1834,1631,2181,2318, 298, 664,2818,3555,2735, 954,3228,3117, 527,3511,2173, + 681,2712,3033,2247,2346,3467,1652, 155,2164,3382, 113,1994, 450, 899, 494, 994, +1237,2958,1875,2336,1926,3727, 545,1577,1550, 633,3473, 204,1305,3072,2410,1956, +2471, 707,2134, 841,2195,2196,2663,3843,1026,4940, 990,3252,4997, 368,1092, 437, +3212,3258,1933,1829, 675,2977,2893, 412, 943,3723,4644,3294,3283,2230,2373,5154, +2389,2241,2661,2323,1404,2524, 593, 787, 677,3008,1275,2059, 438,2709,2609,2240, +2269,2246,1446, 36,1568,1373,3892,1574,2301,1456,3962, 693,2276,5216,2035,1143, +2720,1919,1797,1811,2763,4137,2597,1830,1699,1488,1198,2090, 424,1694, 312,3634, +3390,4179,3335,2252,1214, 561,1059,3243,2295,2561, 975,5155,2321,2751,3772, 472, +1537,3282,3398,1047,2077,2348,2878,1323,3340,3076, 690,2906, 51, 369, 170,3541, +1060,2187,2688,3670,2541,1083,1683, 928,3918, 459, 109,4427, 599,3744,4286, 143, +2101,2730,2490, 82,1588,3036,2121, 281,1860, 477,4035,1238,2812,3020,2716,3312, +1530,2188,2055,1317, 843, 636,1808,1173,3495, 649, 181,1002, 147,3641,1159,2414, +3750,2289,2795, 813,3123,2610,1136,4368, 5,3391,4541,2174, 420, 429,1728, 754, +1228,2115,2219, 347,2223,2733, 735,1518,3003,2355,3134,1764,3948,3329,1888,2424, +1001,1234,1972,3321,3363,1672,1021,1450,1584, 226, 765, 655,2526,3404,3244,2302, +3665, 731, 594,2184, 319,1576, 621, 658,2656,4299,2099,3864,1279,2071,2598,2739, + 795,3086,3699,3908,1707,2352,2402,1382,3136,2475,1465,4847,3496,3865,1085,3004, +2591,1084, 213,2287,1963,3565,2250, 822, 793,4574,3187,1772,1789,3050, 595,1484, +1959,2770,1080,2650, 456, 422,2996, 940,3322,4328,4345,3092,2742, 965,2784, 739, +4124, 952,1358,2498,2949,2565, 332,2698,2378, 660,2260,2473,4194,3856,2919, 535, +1260,2651,1208,1428,1300,1949,1303,2942, 433,2455,2450,1251,1946, 614,1269, 641, +1306,1810,2737,3078,2912, 564,2365,1419,1415,1497,4460,2367,2185,1379,3005,1307, +3218,2175,1897,3063, 682,1157,4040,4005,1712,1160,1941,1399, 394, 402,2952,1573, +1151,2986,2404, 862, 299,2033,1489,3006, 346, 171,2886,3401,1726,2932, 168,2533, + 47,2507,1030,3735,1145,3370,1395,1318,1579,3609,4560,2857,4116,1457,2529,1965, + 504,1036,2690,2988,2405, 745,5871, 849,2397,2056,3081, 863,2359,3857,2096, 99, +1397,1769,2300,4428,1643,3455,1978,1757,3718,1440, 35,4879,3742,1296,4228,2280, + 160,5063,1599,2013, 166, 520,3479,1646,3345,3012, 490,1937,1545,1264,2182,2505, +1096,1188,1369,1436,2421,1667,2792,2460,1270,2122, 727,3167,2143, 806,1706,1012, +1800,3037, 960,2218,1882, 805, 139,2456,1139,1521, 851,1052,3093,3089, 342,2039, + 744,5097,1468,1502,1585,2087, 223, 939, 326,2140,2577, 892,2481,1623,4077, 982, +3708, 135,2131, 87,2503,3114,2326,1106, 876,1616, 547,2997,2831,2093,3441,4530, +4314, 9,3256,4229,4148, 659,1462,1986,1710,2046,2913,2231,4090,4880,5255,3392, +3274,1368,3689,4645,1477, 705,3384,3635,1068,1529,2941,1458,3782,1509, 100,1656, +2548, 718,2339, 408,1590,2780,3548,1838,4117,3719,1345,3530, 717,3442,2778,3220, +2898,1892,4590,3614,3371,2043,1998,1224,3483, 891, 635, 584,2559,3355, 733,1766, +1729,1172,3789,1891,2307, 781,2982,2271,1957,1580,5773,2633,2005,4195,3097,1535, +3213,1189,1934,5693,3262, 586,3118,1324,1598, 517,1564,2217,1868,1893,4445,3728, +2703,3139,1526,1787,1992,3882,2875,1549,1199,1056,2224,1904,2711,5098,4287, 338, +1993,3129,3489,2689,1809,2815,1997, 957,1855,3898,2550,3275,3057,1105,1319, 627, +1505,1911,1883,3526, 698,3629,3456,1833,1431, 746, 77,1261,2017,2296,1977,1885, + 125,1334,1600, 525,1798,1109,2222,1470,1945, 559,2236,1186,3443,2476,1929,1411, +2411,3135,1777,3372,2621,1841,1613,3229, 668,1430,1839,2643,2916, 195,1989,2671, +2358,1387, 629,3205,2293,5256,4439, 123,1310, 888,1879,4300,3021,3605,1003,1162, +3192,2910,2010, 140,2395,2859, 55,1082,2012,2901, 662, 419,2081,1438, 680,2774, +4654,3912,1620,1731,1625,5035,4065,2328, 512,1344, 802,5443,2163,2311,2537, 524, +3399, 98,1155,2103,1918,2606,3925,2816,1393,2465,1504,3773,2177,3963,1478,4346, + 180,1113,4655,3461,2028,1698, 833,2696,1235,1322,1594,4408,3623,3013,3225,2040, +3022, 541,2881, 607,3632,2029,1665,1219, 639,1385,1686,1099,2803,3231,1938,3188, +2858, 427, 676,2772,1168,2025, 454,3253,2486,3556, 230,1950, 580, 791,1991,1280, +1086,1974,2034, 630, 257,3338,2788,4903,1017, 86,4790, 966,2789,1995,1696,1131, + 259,3095,4188,1308, 179,1463,5257, 289,4107,1248, 42,3413,1725,2288, 896,1947, + 774,4474,4254, 604,3430,4264, 392,2514,2588, 452, 237,1408,3018, 988,4531,1970, +3034,3310, 540,2370,1562,1288,2990, 502,4765,1147, 4,1853,2708, 207, 294,2814, +4078,2902,2509, 684, 34,3105,3532,2551, 644, 709,2801,2344, 573,1727,3573,3557, +2021,1081,3100,4315,2100,3681, 199,2263,1837,2385, 146,3484,1195,2776,3949, 997, +1939,3973,1008,1091,1202,1962,1847,1149,4209,5444,1076, 493, 117,5400,2521, 972, +1490,2934,1796,4542,2374,1512,2933,2657, 413,2888,1135,2762,2314,2156,1355,2369, + 766,2007,2527,2170,3124,2491,2593,2632,4757,2437, 234,3125,3591,1898,1750,1376, +1942,3468,3138, 570,2127,2145,3276,4131, 962, 132,1445,4196, 19, 941,3624,3480, +3366,1973,1374,4461,3431,2629, 283,2415,2275, 808,2887,3620,2112,2563,1353,3610, + 955,1089,3103,1053, 96, 88,4097, 823,3808,1583, 399, 292,4091,3313, 421,1128, + 642,4006, 903,2539,1877,2082, 596, 29,4066,1790, 722,2157, 130, 995,1569, 769, +1485, 464, 513,2213, 288,1923,1101,2453,4316, 133, 486,2445, 50, 625, 487,2207, + 57, 423, 481,2962, 159,3729,1558, 491, 303, 482, 501, 240,2837, 112,3648,2392, +1783, 362, 8,3433,3422, 610,2793,3277,1390,1284,1654, 21,3823, 734, 367, 623, + 193, 287, 374,1009,1483, 816, 476, 313,2255,2340,1262,2150,2899,1146,2581, 782, +2116,1659,2018,1880, 255,3586,3314,1110,2867,2137,2564, 986,2767,5185,2006, 650, + 158, 926, 762, 881,3157,2717,2362,3587, 306,3690,3245,1542,3077,2427,1691,2478, +2118,2985,3490,2438, 539,2305, 983, 129,1754, 355,4201,2386, 827,2923, 104,1773, +2838,2771, 411,2905,3919, 376, 767, 122,1114, 828,2422,1817,3506, 266,3460,1007, +1609,4998, 945,2612,4429,2274, 726,1247,1964,2914,2199,2070,4002,4108, 657,3323, +1422, 579, 455,2764,4737,1222,2895,1670, 824,1223,1487,2525, 558, 861,3080, 598, +2659,2515,1967, 752,2583,2376,2214,4180, 977, 704,2464,4999,2622,4109,1210,2961, + 819,1541, 142,2284, 44, 418, 457,1126,3730,4347,4626,1644,1876,3671,1864, 302, +1063,5694, 624, 723,1984,3745,1314,1676,2488,1610,1449,3558,3569,2166,2098, 409, +1011,2325,3704,2306, 818,1732,1383,1824,1844,3757, 999,2705,3497,1216,1423,2683, +2426,2954,2501,2726,2229,1475,2554,5064,1971,1794,1666,2014,1343, 783, 724, 191, +2434,1354,2220,5065,1763,2752,2472,4152, 131, 175,2885,3434, 92,1466,4920,2616, +3871,3872,3866, 128,1551,1632, 669,1854,3682,4691,4125,1230, 188,2973,3290,1302, +1213, 560,3266, 917, 763,3909,3249,1760, 868,1958, 764,1782,2097, 145,2277,3774, +4462, 64,1491,3062, 971,2132,3606,2442, 221,1226,1617, 218, 323,1185,3207,3147, + 571, 619,1473,1005,1744,2281, 449,1887,2396,3685, 275, 375,3816,1743,3844,3731, + 845,1983,2350,4210,1377, 773, 967,3499,3052,3743,2725,4007,1697,1022,3943,1464, +3264,2855,2722,1952,1029,2839,2467, 84,4383,2215, 820,1391,2015,2448,3672, 377, +1948,2168, 797,2545,3536,2578,2645, 94,2874,1678, 405,1259,3071, 771, 546,1315, + 470,1243,3083, 895,2468, 981, 969,2037, 846,4181, 653,1276,2928, 14,2594, 557, +3007,2474, 156, 902,1338,1740,2574, 537,2518, 973,2282,2216,2433,1928, 138,2903, +1293,2631,1612, 646,3457, 839,2935, 111, 496,2191,2847, 589,3186, 149,3994,2060, +4031,2641,4067,3145,1870, 37,3597,2136,1025,2051,3009,3383,3549,1121,1016,3261, +1301, 251,2446,2599,2153, 872,3246, 637, 334,3705, 831, 884, 921,3065,3140,4092, +2198,1944, 246,2964, 108,2045,1152,1921,2308,1031, 203,3173,4170,1907,3890, 810, +1401,2003,1690, 506, 647,1242,2828,1761,1649,3208,2249,1589,3709,2931,5156,1708, + 498, 666,2613, 834,3817,1231, 184,2851,1124, 883,3197,2261,3710,1765,1553,2658, +1178,2639,2351, 93,1193, 942,2538,2141,4402, 235,1821, 870,1591,2192,1709,1871, +3341,1618,4126,2595,2334, 603, 651, 69, 701, 268,2662,3411,2555,1380,1606, 503, + 448, 254,2371,2646, 574,1187,2309,1770, 322,2235,1292,1801, 305, 566,1133, 229, +2067,2057, 706, 167, 483,2002,2672,3295,1820,3561,3067, 316, 378,2746,3452,1112, + 136,1981, 507,1651,2917,1117, 285,4591, 182,2580,3522,1304, 335,3303,1835,2504, +1795,1792,2248, 674,1018,2106,2449,1857,2292,2845, 976,3047,1781,2600,2727,1389, +1281, 52,3152, 153, 265,3950, 672,3485,3951,4463, 430,1183, 365, 278,2169, 27, +1407,1336,2304, 209,1340,1730,2202,1852,2403,2883, 979,1737,1062, 631,2829,2542, +3876,2592, 825,2086,2226,3048,3625, 352,1417,3724, 542, 991, 431,1351,3938,1861, +2294, 826,1361,2927,3142,3503,1738, 463,2462,2723, 582,1916,1595,2808, 400,3845, +3891,2868,3621,2254, 58,2492,1123, 910,2160,2614,1372,1603,1196,1072,3385,1700, +3267,1980, 696, 480,2430, 920, 799,1570,2920,1951,2041,4047,2540,1321,4223,2469, +3562,2228,1271,2602, 401,2833,3351,2575,5157, 907,2312,1256, 410, 263,3507,1582, + 996, 678,1849,2316,1480, 908,3545,2237, 703,2322, 667,1826,2849,1531,2604,2999, +2407,3146,2151,2630,1786,3711, 469,3542, 497,3899,2409, 858, 837,4446,3393,1274, + 786, 620,1845,2001,3311, 484, 308,3367,1204,1815,3691,2332,1532,2557,1842,2020, +2724,1927,2333,4440, 567, 22,1673,2728,4475,1987,1858,1144,1597, 101,1832,3601, + 12, 974,3783,4391, 951,1412, 1,3720, 453,4608,4041, 528,1041,1027,3230,2628, +1129, 875,1051,3291,1203,2262,1069,2860,2799,2149,2615,3278, 144,1758,3040, 31, + 475,1680, 366,2685,3184, 311,1642,4008,2466,5036,1593,1493,2809, 216,1420,1668, + 233, 304,2128,3284, 232,1429,1768,1040,2008,3407,2740,2967,2543, 242,2133, 778, +1565,2022,2620, 505,2189,2756,1098,2273, 372,1614, 708, 553,2846,2094,2278, 169, +3626,2835,4161, 228,2674,3165, 809,1454,1309, 466,1705,1095, 900,3423, 880,2667, +3751,5258,2317,3109,2571,4317,2766,1503,1342, 866,4447,1118, 63,2076, 314,1881, +1348,1061, 172, 978,3515,1747, 532, 511,3970, 6, 601, 905,2699,3300,1751, 276, +1467,3725,2668, 65,4239,2544,2779,2556,1604, 578,2451,1802, 992,2331,2624,1320, +3446, 713,1513,1013, 103,2786,2447,1661, 886,1702, 916, 654,3574,2031,1556, 751, +2178,2821,2179,1498,1538,2176, 271, 914,2251,2080,1325, 638,1953,2937,3877,2432, +2754, 95,3265,1716, 260,1227,4083, 775, 106,1357,3254, 426,1607, 555,2480, 772, +1985, 244,2546, 474, 495,1046,2611,1851,2061, 71,2089,1675,2590, 742,3758,2843, +3222,1433, 267,2180,2576,2826,2233,2092,3913,2435, 956,1745,3075, 856,2113,1116, + 451, 3,1988,2896,1398, 993,2463,1878,2049,1341,2718,2721,2870,2108, 712,2904, +4363,2753,2324, 277,2872,2349,2649, 384, 987, 435, 691,3000, 922, 164,3939, 652, +1500,1184,4153,2482,3373,2165,4848,2335,3775,3508,3154,2806,2830,1554,2102,1664, +2530,1434,2408, 893,1547,2623,3447,2832,2242,2532,3169,2856,3223,2078, 49,3770, +3469, 462, 318, 656,2259,3250,3069, 679,1629,2758, 344,1138,1104,3120,1836,1283, +3115,2154,1437,4448, 934, 759,1999, 794,2862,1038, 533,2560,1722,2342, 855,2626, +1197,1663,4476,3127, 85,4240,2528, 25,1111,1181,3673, 407,3470,4561,2679,2713, + 768,1925,2841,3986,1544,1165, 932, 373,1240,2146,1930,2673, 721,4766, 354,4333, + 391,2963, 187, 61,3364,1442,1102, 330,1940,1767, 341,3809,4118, 393,2496,2062, +2211, 105, 331, 300, 439, 913,1332, 626, 379,3304,1557, 328, 689,3952, 309,1555, + 931, 317,2517,3027, 325, 569, 686,2107,3084, 60,1042,1333,2794, 264,3177,4014, +1628, 258,3712, 7,4464,1176,1043,1778, 683, 114,1975, 78,1492, 383,1886, 510, + 386, 645,5291,2891,2069,3305,4138,3867,2939,2603,2493,1935,1066,1848,3588,1015, +1282,1289,4609, 697,1453,3044,2666,3611,1856,2412, 54, 719,1330, 568,3778,2459, +1748, 788, 492, 551,1191,1000, 488,3394,3763, 282,1799, 348,2016,1523,3155,2390, +1049, 382,2019,1788,1170, 729,2968,3523, 897,3926,2785,2938,3292, 350,2319,3238, +1718,1717,2655,3453,3143,4465, 161,2889,2980,2009,1421, 56,1908,1640,2387,2232, +1917,1874,2477,4921, 148, 83,3438, 592,4245,2882,1822,1055, 741, 115,1496,1624, + 381,1638,4592,1020, 516,3214, 458, 947,4575,1432, 211,1514,2926,1865,2142, 189, + 852,1221,1400,1486, 882,2299,4036, 351, 28,1122, 700,6479,6480,6481,6482,6483, #last 512 +) + diff --git a/venv/lib/python2.7/site-packages/chardet/gb2312prober.py b/venv/lib/python2.7/site-packages/chardet/gb2312prober.py new file mode 100644 index 00000000..8446d2dd --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/gb2312prober.py @@ -0,0 +1,46 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312_SM_MODEL + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + super(GB2312Prober, self).__init__() + self.coding_sm = CodingStateMachine(GB2312_SM_MODEL) + self.distribution_analyzer = GB2312DistributionAnalysis() + self.reset() + + @property + def charset_name(self): + return "GB2312" + + @property + def language(self): + return "Chinese" diff --git a/venv/lib/python2.7/site-packages/chardet/hebrewprober.py b/venv/lib/python2.7/site-packages/chardet/hebrewprober.py new file mode 100644 index 00000000..b0e1bf49 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/hebrewprober.py @@ -0,0 +1,292 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + +class HebrewProber(CharSetProber): + # windows-1255 / ISO-8859-8 code points of interest + FINAL_KAF = 0xea + NORMAL_KAF = 0xeb + FINAL_MEM = 0xed + NORMAL_MEM = 0xee + FINAL_NUN = 0xef + NORMAL_NUN = 0xf0 + FINAL_PE = 0xf3 + NORMAL_PE = 0xf4 + FINAL_TSADI = 0xf5 + NORMAL_TSADI = 0xf6 + + # Minimum Visual vs Logical final letter score difference. + # If the difference is below this, don't rely solely on the final letter score + # distance. + MIN_FINAL_CHAR_DISTANCE = 5 + + # Minimum Visual vs Logical model score difference. + # If the difference is below this, don't rely at all on the model score + # distance. + MIN_MODEL_DISTANCE = 0.01 + + VISUAL_HEBREW_NAME = "ISO-8859-8" + LOGICAL_HEBREW_NAME = "windows-1255" + + def __init__(self): + super(HebrewProber, self).__init__() + self._final_char_logical_score = None + self._final_char_visual_score = None + self._prev = None + self._before_prev = None + self._logical_prober = None + self._visual_prober = None + self.reset() + + def reset(self): + self._final_char_logical_score = 0 + self._final_char_visual_score = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._prev = ' ' + self._before_prev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._logical_prober = logicalProber + self._visual_prober = visualProber + + def is_final(self, c): + return c in [self.FINAL_KAF, self.FINAL_MEM, self.FINAL_NUN, + self.FINAL_PE, self.FINAL_TSADI] + + def is_non_final(self, c): + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return c in [self.NORMAL_KAF, self.NORMAL_MEM, + self.NORMAL_NUN, self.NORMAL_PE] + + def feed(self, byte_str): + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.state == ProbingState.NOT_ME: + # Both model probers say it's not them. No reason to continue. + return ProbingState.NOT_ME + + byte_str = self.filter_high_byte_only(byte_str) + + for cur in byte_str: + if cur == ' ': + # We stand on a space - a word just ended + if self._before_prev != ' ': + # next-to-last char was not a space so self._prev is not a + # 1 letter word + if self.is_final(self._prev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._final_char_logical_score += 1 + elif self.is_non_final(self._prev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._final_char_visual_score += 1 + else: + # Not standing on a space + if ((self._before_prev == ' ') and + (self.is_final(self._prev)) and (cur != ' ')): + # case (3) [-2:space][-1:final letter][cur:not space] + self._final_char_visual_score += 1 + self._before_prev = self._prev + self._prev = cur + + # Forever detecting, till the end or until both model probers return + # ProbingState.NOT_ME (handled above) + return ProbingState.DETECTING + + @property + def charset_name(self): + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._final_char_logical_score - self._final_char_visual_score + if finalsub >= self.MIN_FINAL_CHAR_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if finalsub <= -self.MIN_FINAL_CHAR_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = (self._logical_prober.get_confidence() + - self._visual_prober.get_confidence()) + if modelsub > self.MIN_MODEL_DISTANCE: + return self.LOGICAL_HEBREW_NAME + if modelsub < -self.MIN_MODEL_DISTANCE: + return self.VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return self.VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return self.LOGICAL_HEBREW_NAME + + @property + def language(self): + return 'Hebrew' + + @property + def state(self): + # Remain active as long as any of the model probers are active. + if (self._logical_prober.state == ProbingState.NOT_ME) and \ + (self._visual_prober.state == ProbingState.NOT_ME): + return ProbingState.NOT_ME + return ProbingState.DETECTING diff --git a/venv/lib/python2.7/site-packages/chardet/jisfreq.py b/venv/lib/python2.7/site-packages/chardet/jisfreq.py new file mode 100644 index 00000000..83fc082b --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/jisfreq.py @@ -0,0 +1,325 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# Sampling from about 20M text materials include literature and computer technology +# +# Japanese frequency table, applied to both S-JIS and EUC-JP +# They are sorted in order. + +# 128 --> 0.77094 +# 256 --> 0.85710 +# 512 --> 0.92635 +# 1024 --> 0.97130 +# 2048 --> 0.99431 +# +# Ideal Distribution Ratio = 0.92635 / (1-0.92635) = 12.58 +# Random Distribution Ration = 512 / (2965+62+83+86-512) = 0.191 +# +# Typical Distribution Ratio, 25% of IDR + +JIS_TYPICAL_DISTRIBUTION_RATIO = 3.0 + +# Char to FreqOrder table , +JIS_TABLE_SIZE = 4368 + +JIS_CHAR_TO_FREQ_ORDER = ( + 40, 1, 6, 182, 152, 180, 295,2127, 285, 381,3295,4304,3068,4606,3165,3510, # 16 +3511,1822,2785,4607,1193,2226,5070,4608, 171,2996,1247, 18, 179,5071, 856,1661, # 32 +1262,5072, 619, 127,3431,3512,3230,1899,1700, 232, 228,1294,1298, 284, 283,2041, # 48 +2042,1061,1062, 48, 49, 44, 45, 433, 434,1040,1041, 996, 787,2997,1255,4305, # 64 +2108,4609,1684,1648,5073,5074,5075,5076,5077,5078,3687,5079,4610,5080,3927,3928, # 80 +5081,3296,3432, 290,2285,1471,2187,5082,2580,2825,1303,2140,1739,1445,2691,3375, # 96 +1691,3297,4306,4307,4611, 452,3376,1182,2713,3688,3069,4308,5083,5084,5085,5086, # 112 +5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102, # 128 +5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,4097,5113,5114,5115,5116,5117, # 144 +5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133, # 160 +5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149, # 176 +5150,5151,5152,4612,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164, # 192 +5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,1472, 598, 618, 820,1205, # 208 +1309,1412,1858,1307,1692,5176,5177,5178,5179,5180,5181,5182,1142,1452,1234,1172, # 224 +1875,2043,2149,1793,1382,2973, 925,2404,1067,1241, 960,1377,2935,1491, 919,1217, # 240 +1865,2030,1406,1499,2749,4098,5183,5184,5185,5186,5187,5188,2561,4099,3117,1804, # 256 +2049,3689,4309,3513,1663,5189,3166,3118,3298,1587,1561,3433,5190,3119,1625,2998, # 272 +3299,4613,1766,3690,2786,4614,5191,5192,5193,5194,2161, 26,3377, 2,3929, 20, # 288 +3691, 47,4100, 50, 17, 16, 35, 268, 27, 243, 42, 155, 24, 154, 29, 184, # 304 + 4, 91, 14, 92, 53, 396, 33, 289, 9, 37, 64, 620, 21, 39, 321, 5, # 320 + 12, 11, 52, 13, 3, 208, 138, 0, 7, 60, 526, 141, 151,1069, 181, 275, # 336 +1591, 83, 132,1475, 126, 331, 829, 15, 69, 160, 59, 22, 157, 55,1079, 312, # 352 + 109, 38, 23, 25, 10, 19, 79,5195, 61, 382,1124, 8, 30,5196,5197,5198, # 368 +5199,5200,5201,5202,5203,5204,5205,5206, 89, 62, 74, 34,2416, 112, 139, 196, # 384 + 271, 149, 84, 607, 131, 765, 46, 88, 153, 683, 76, 874, 101, 258, 57, 80, # 400 + 32, 364, 121,1508, 169,1547, 68, 235, 145,2999, 41, 360,3027, 70, 63, 31, # 416 + 43, 259, 262,1383, 99, 533, 194, 66, 93, 846, 217, 192, 56, 106, 58, 565, # 432 + 280, 272, 311, 256, 146, 82, 308, 71, 100, 128, 214, 655, 110, 261, 104,1140, # 448 + 54, 51, 36, 87, 67,3070, 185,2618,2936,2020, 28,1066,2390,2059,5207,5208, # 464 +5209,5210,5211,5212,5213,5214,5215,5216,4615,5217,5218,5219,5220,5221,5222,5223, # 480 +5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,3514,5237,5238, # 496 +5239,5240,5241,5242,5243,5244,2297,2031,4616,4310,3692,5245,3071,5246,3598,5247, # 512 +4617,3231,3515,5248,4101,4311,4618,3808,4312,4102,5249,4103,4104,3599,5250,5251, # 528 +5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267, # 544 +5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283, # 560 +5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299, # 576 +5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315, # 592 +5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331, # 608 +5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347, # 624 +5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363, # 640 +5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379, # 656 +5380,5381, 363, 642,2787,2878,2788,2789,2316,3232,2317,3434,2011, 165,1942,3930, # 672 +3931,3932,3933,5382,4619,5383,4620,5384,5385,5386,5387,5388,5389,5390,5391,5392, # 688 +5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408, # 704 +5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424, # 720 +5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440, # 736 +5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456, # 752 +5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472, # 768 +5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, # 784 +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504, # 800 +5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520, # 816 +5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536, # 832 +5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552, # 848 +5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568, # 864 +5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584, # 880 +5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600, # 896 +5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616, # 912 +5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632, # 928 +5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648, # 944 +5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664, # 960 +5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680, # 976 +5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696, # 992 +5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712, # 1008 +5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728, # 1024 +5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744, # 1040 +5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760, # 1056 +5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776, # 1072 +5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792, # 1088 +5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808, # 1104 +5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824, # 1120 +5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840, # 1136 +5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856, # 1152 +5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872, # 1168 +5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888, # 1184 +5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904, # 1200 +5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920, # 1216 +5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936, # 1232 +5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952, # 1248 +5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968, # 1264 +5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984, # 1280 +5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000, # 1296 +6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016, # 1312 +6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032, # 1328 +6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048, # 1344 +6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064, # 1360 +6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080, # 1376 +6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096, # 1392 +6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112, # 1408 +6113,6114,2044,2060,4621, 997,1235, 473,1186,4622, 920,3378,6115,6116, 379,1108, # 1424 +4313,2657,2735,3934,6117,3809, 636,3233, 573,1026,3693,3435,2974,3300,2298,4105, # 1440 + 854,2937,2463, 393,2581,2417, 539, 752,1280,2750,2480, 140,1161, 440, 708,1569, # 1456 + 665,2497,1746,1291,1523,3000, 164,1603, 847,1331, 537,1997, 486, 508,1693,2418, # 1472 +1970,2227, 878,1220, 299,1030, 969, 652,2751, 624,1137,3301,2619, 65,3302,2045, # 1488 +1761,1859,3120,1930,3694,3516, 663,1767, 852, 835,3695, 269, 767,2826,2339,1305, # 1504 + 896,1150, 770,1616,6118, 506,1502,2075,1012,2519, 775,2520,2975,2340,2938,4314, # 1520 +3028,2086,1224,1943,2286,6119,3072,4315,2240,1273,1987,3935,1557, 175, 597, 985, # 1536 +3517,2419,2521,1416,3029, 585, 938,1931,1007,1052,1932,1685,6120,3379,4316,4623, # 1552 + 804, 599,3121,1333,2128,2539,1159,1554,2032,3810, 687,2033,2904, 952, 675,1467, # 1568 +3436,6121,2241,1096,1786,2440,1543,1924, 980,1813,2228, 781,2692,1879, 728,1918, # 1584 +3696,4624, 548,1950,4625,1809,1088,1356,3303,2522,1944, 502, 972, 373, 513,2827, # 1600 + 586,2377,2391,1003,1976,1631,6122,2464,1084, 648,1776,4626,2141, 324, 962,2012, # 1616 +2177,2076,1384, 742,2178,1448,1173,1810, 222, 102, 301, 445, 125,2420, 662,2498, # 1632 + 277, 200,1476,1165,1068, 224,2562,1378,1446, 450,1880, 659, 791, 582,4627,2939, # 1648 +3936,1516,1274, 555,2099,3697,1020,1389,1526,3380,1762,1723,1787,2229, 412,2114, # 1664 +1900,2392,3518, 512,2597, 427,1925,2341,3122,1653,1686,2465,2499, 697, 330, 273, # 1680 + 380,2162, 951, 832, 780, 991,1301,3073, 965,2270,3519, 668,2523,2636,1286, 535, # 1696 +1407, 518, 671, 957,2658,2378, 267, 611,2197,3030,6123, 248,2299, 967,1799,2356, # 1712 + 850,1418,3437,1876,1256,1480,2828,1718,6124,6125,1755,1664,2405,6126,4628,2879, # 1728 +2829, 499,2179, 676,4629, 557,2329,2214,2090, 325,3234, 464, 811,3001, 992,2342, # 1744 +2481,1232,1469, 303,2242, 466,1070,2163, 603,1777,2091,4630,2752,4631,2714, 322, # 1760 +2659,1964,1768, 481,2188,1463,2330,2857,3600,2092,3031,2421,4632,2318,2070,1849, # 1776 +2598,4633,1302,2254,1668,1701,2422,3811,2905,3032,3123,2046,4106,1763,1694,4634, # 1792 +1604, 943,1724,1454, 917, 868,2215,1169,2940, 552,1145,1800,1228,1823,1955, 316, # 1808 +1080,2510, 361,1807,2830,4107,2660,3381,1346,1423,1134,4108,6127, 541,1263,1229, # 1824 +1148,2540, 545, 465,1833,2880,3438,1901,3074,2482, 816,3937, 713,1788,2500, 122, # 1840 +1575, 195,1451,2501,1111,6128, 859, 374,1225,2243,2483,4317, 390,1033,3439,3075, # 1856 +2524,1687, 266, 793,1440,2599, 946, 779, 802, 507, 897,1081, 528,2189,1292, 711, # 1872 +1866,1725,1167,1640, 753, 398,2661,1053, 246, 348,4318, 137,1024,3440,1600,2077, # 1888 +2129, 825,4319, 698, 238, 521, 187,2300,1157,2423,1641,1605,1464,1610,1097,2541, # 1904 +1260,1436, 759,2255,1814,2150, 705,3235, 409,2563,3304, 561,3033,2005,2564, 726, # 1920 +1956,2343,3698,4109, 949,3812,3813,3520,1669, 653,1379,2525, 881,2198, 632,2256, # 1936 +1027, 778,1074, 733,1957, 514,1481,2466, 554,2180, 702,3938,1606,1017,1398,6129, # 1952 +1380,3521, 921, 993,1313, 594, 449,1489,1617,1166, 768,1426,1360, 495,1794,3601, # 1968 +1177,3602,1170,4320,2344, 476, 425,3167,4635,3168,1424, 401,2662,1171,3382,1998, # 1984 +1089,4110, 477,3169, 474,6130,1909, 596,2831,1842, 494, 693,1051,1028,1207,3076, # 2000 + 606,2115, 727,2790,1473,1115, 743,3522, 630, 805,1532,4321,2021, 366,1057, 838, # 2016 + 684,1114,2142,4322,2050,1492,1892,1808,2271,3814,2424,1971,1447,1373,3305,1090, # 2032 +1536,3939,3523,3306,1455,2199, 336, 369,2331,1035, 584,2393, 902, 718,2600,6131, # 2048 +2753, 463,2151,1149,1611,2467, 715,1308,3124,1268, 343,1413,3236,1517,1347,2663, # 2064 +2093,3940,2022,1131,1553,2100,2941,1427,3441,2942,1323,2484,6132,1980, 872,2368, # 2080 +2441,2943, 320,2369,2116,1082, 679,1933,3941,2791,3815, 625,1143,2023, 422,2200, # 2096 +3816,6133, 730,1695, 356,2257,1626,2301,2858,2637,1627,1778, 937, 883,2906,2693, # 2112 +3002,1769,1086, 400,1063,1325,3307,2792,4111,3077, 456,2345,1046, 747,6134,1524, # 2128 + 884,1094,3383,1474,2164,1059, 974,1688,2181,2258,1047, 345,1665,1187, 358, 875, # 2144 +3170, 305, 660,3524,2190,1334,1135,3171,1540,1649,2542,1527, 927, 968,2793, 885, # 2160 +1972,1850, 482, 500,2638,1218,1109,1085,2543,1654,2034, 876, 78,2287,1482,1277, # 2176 + 861,1675,1083,1779, 724,2754, 454, 397,1132,1612,2332, 893, 672,1237, 257,2259, # 2192 +2370, 135,3384, 337,2244, 547, 352, 340, 709,2485,1400, 788,1138,2511, 540, 772, # 2208 +1682,2260,2272,2544,2013,1843,1902,4636,1999,1562,2288,4637,2201,1403,1533, 407, # 2224 + 576,3308,1254,2071, 978,3385, 170, 136,1201,3125,2664,3172,2394, 213, 912, 873, # 2240 +3603,1713,2202, 699,3604,3699, 813,3442, 493, 531,1054, 468,2907,1483, 304, 281, # 2256 +4112,1726,1252,2094, 339,2319,2130,2639, 756,1563,2944, 748, 571,2976,1588,2425, # 2272 +2715,1851,1460,2426,1528,1392,1973,3237, 288,3309, 685,3386, 296, 892,2716,2216, # 2288 +1570,2245, 722,1747,2217, 905,3238,1103,6135,1893,1441,1965, 251,1805,2371,3700, # 2304 +2601,1919,1078, 75,2182,1509,1592,1270,2640,4638,2152,6136,3310,3817, 524, 706, # 2320 +1075, 292,3818,1756,2602, 317, 98,3173,3605,3525,1844,2218,3819,2502, 814, 567, # 2336 + 385,2908,1534,6137, 534,1642,3239, 797,6138,1670,1529, 953,4323, 188,1071, 538, # 2352 + 178, 729,3240,2109,1226,1374,2000,2357,2977, 731,2468,1116,2014,2051,6139,1261, # 2368 +1593, 803,2859,2736,3443, 556, 682, 823,1541,6140,1369,2289,1706,2794, 845, 462, # 2384 +2603,2665,1361, 387, 162,2358,1740, 739,1770,1720,1304,1401,3241,1049, 627,1571, # 2400 +2427,3526,1877,3942,1852,1500, 431,1910,1503, 677, 297,2795, 286,1433,1038,1198, # 2416 +2290,1133,1596,4113,4639,2469,1510,1484,3943,6141,2442, 108, 712,4640,2372, 866, # 2432 +3701,2755,3242,1348, 834,1945,1408,3527,2395,3243,1811, 824, 994,1179,2110,1548, # 2448 +1453, 790,3003, 690,4324,4325,2832,2909,3820,1860,3821, 225,1748, 310, 346,1780, # 2464 +2470, 821,1993,2717,2796, 828, 877,3528,2860,2471,1702,2165,2910,2486,1789, 453, # 2480 + 359,2291,1676, 73,1164,1461,1127,3311, 421, 604, 314,1037, 589, 116,2487, 737, # 2496 + 837,1180, 111, 244, 735,6142,2261,1861,1362, 986, 523, 418, 581,2666,3822, 103, # 2512 + 855, 503,1414,1867,2488,1091, 657,1597, 979, 605,1316,4641,1021,2443,2078,2001, # 2528 +1209, 96, 587,2166,1032, 260,1072,2153, 173, 94, 226,3244, 819,2006,4642,4114, # 2544 +2203, 231,1744, 782, 97,2667, 786,3387, 887, 391, 442,2219,4326,1425,6143,2694, # 2560 + 633,1544,1202, 483,2015, 592,2052,1958,2472,1655, 419, 129,4327,3444,3312,1714, # 2576 +1257,3078,4328,1518,1098, 865,1310,1019,1885,1512,1734, 469,2444, 148, 773, 436, # 2592 +1815,1868,1128,1055,4329,1245,2756,3445,2154,1934,1039,4643, 579,1238, 932,2320, # 2608 + 353, 205, 801, 115,2428, 944,2321,1881, 399,2565,1211, 678, 766,3944, 335,2101, # 2624 +1459,1781,1402,3945,2737,2131,1010, 844, 981,1326,1013, 550,1816,1545,2620,1335, # 2640 +1008, 371,2881, 936,1419,1613,3529,1456,1395,2273,1834,2604,1317,2738,2503, 416, # 2656 +1643,4330, 806,1126, 229, 591,3946,1314,1981,1576,1837,1666, 347,1790, 977,3313, # 2672 + 764,2861,1853, 688,2429,1920,1462, 77, 595, 415,2002,3034, 798,1192,4115,6144, # 2688 +2978,4331,3035,2695,2582,2072,2566, 430,2430,1727, 842,1396,3947,3702, 613, 377, # 2704 + 278, 236,1417,3388,3314,3174, 757,1869, 107,3530,6145,1194, 623,2262, 207,1253, # 2720 +2167,3446,3948, 492,1117,1935, 536,1838,2757,1246,4332, 696,2095,2406,1393,1572, # 2736 +3175,1782, 583, 190, 253,1390,2230, 830,3126,3389, 934,3245,1703,1749,2979,1870, # 2752 +2545,1656,2204, 869,2346,4116,3176,1817, 496,1764,4644, 942,1504, 404,1903,1122, # 2768 +1580,3606,2945,1022, 515, 372,1735, 955,2431,3036,6146,2797,1110,2302,2798, 617, # 2784 +6147, 441, 762,1771,3447,3607,3608,1904, 840,3037, 86, 939,1385, 572,1370,2445, # 2800 +1336, 114,3703, 898, 294, 203,3315, 703,1583,2274, 429, 961,4333,1854,1951,3390, # 2816 +2373,3704,4334,1318,1381, 966,1911,2322,1006,1155, 309, 989, 458,2718,1795,1372, # 2832 +1203, 252,1689,1363,3177, 517,1936, 168,1490, 562, 193,3823,1042,4117,1835, 551, # 2848 + 470,4645, 395, 489,3448,1871,1465,2583,2641, 417,1493, 279,1295, 511,1236,1119, # 2864 + 72,1231,1982,1812,3004, 871,1564, 984,3449,1667,2696,2096,4646,2347,2833,1673, # 2880 +3609, 695,3246,2668, 807,1183,4647, 890, 388,2333,1801,1457,2911,1765,1477,1031, # 2896 +3316,3317,1278,3391,2799,2292,2526, 163,3450,4335,2669,1404,1802,6148,2323,2407, # 2912 +1584,1728,1494,1824,1269, 298, 909,3318,1034,1632, 375, 776,1683,2061, 291, 210, # 2928 +1123, 809,1249,1002,2642,3038, 206,1011,2132, 144, 975, 882,1565, 342, 667, 754, # 2944 +1442,2143,1299,2303,2062, 447, 626,2205,1221,2739,2912,1144,1214,2206,2584, 760, # 2960 +1715, 614, 950,1281,2670,2621, 810, 577,1287,2546,4648, 242,2168, 250,2643, 691, # 2976 + 123,2644, 647, 313,1029, 689,1357,2946,1650, 216, 771,1339,1306, 808,2063, 549, # 2992 + 913,1371,2913,2914,6149,1466,1092,1174,1196,1311,2605,2396,1783,1796,3079, 406, # 3008 +2671,2117,3949,4649, 487,1825,2220,6150,2915, 448,2348,1073,6151,2397,1707, 130, # 3024 + 900,1598, 329, 176,1959,2527,1620,6152,2275,4336,3319,1983,2191,3705,3610,2155, # 3040 +3706,1912,1513,1614,6153,1988, 646, 392,2304,1589,3320,3039,1826,1239,1352,1340, # 3056 +2916, 505,2567,1709,1437,2408,2547, 906,6154,2672, 384,1458,1594,1100,1329, 710, # 3072 + 423,3531,2064,2231,2622,1989,2673,1087,1882, 333, 841,3005,1296,2882,2379, 580, # 3088 +1937,1827,1293,2585, 601, 574, 249,1772,4118,2079,1120, 645, 901,1176,1690, 795, # 3104 +2207, 478,1434, 516,1190,1530, 761,2080, 930,1264, 355, 435,1552, 644,1791, 987, # 3120 + 220,1364,1163,1121,1538, 306,2169,1327,1222, 546,2645, 218, 241, 610,1704,3321, # 3136 +1984,1839,1966,2528, 451,6155,2586,3707,2568, 907,3178, 254,2947, 186,1845,4650, # 3152 + 745, 432,1757, 428,1633, 888,2246,2221,2489,3611,2118,1258,1265, 956,3127,1784, # 3168 +4337,2490, 319, 510, 119, 457,3612, 274,2035,2007,4651,1409,3128, 970,2758, 590, # 3184 +2800, 661,2247,4652,2008,3950,1420,1549,3080,3322,3951,1651,1375,2111, 485,2491, # 3200 +1429,1156,6156,2548,2183,1495, 831,1840,2529,2446, 501,1657, 307,1894,3247,1341, # 3216 + 666, 899,2156,1539,2549,1559, 886, 349,2208,3081,2305,1736,3824,2170,2759,1014, # 3232 +1913,1386, 542,1397,2948, 490, 368, 716, 362, 159, 282,2569,1129,1658,1288,1750, # 3248 +2674, 276, 649,2016, 751,1496, 658,1818,1284,1862,2209,2087,2512,3451, 622,2834, # 3264 + 376, 117,1060,2053,1208,1721,1101,1443, 247,1250,3179,1792,3952,2760,2398,3953, # 3280 +6157,2144,3708, 446,2432,1151,2570,3452,2447,2761,2835,1210,2448,3082, 424,2222, # 3296 +1251,2449,2119,2836, 504,1581,4338, 602, 817, 857,3825,2349,2306, 357,3826,1470, # 3312 +1883,2883, 255, 958, 929,2917,3248, 302,4653,1050,1271,1751,2307,1952,1430,2697, # 3328 +2719,2359, 354,3180, 777, 158,2036,4339,1659,4340,4654,2308,2949,2248,1146,2232, # 3344 +3532,2720,1696,2623,3827,6158,3129,1550,2698,1485,1297,1428, 637, 931,2721,2145, # 3360 + 914,2550,2587, 81,2450, 612, 827,2646,1242,4655,1118,2884, 472,1855,3181,3533, # 3376 +3534, 569,1353,2699,1244,1758,2588,4119,2009,2762,2171,3709,1312,1531,6159,1152, # 3392 +1938, 134,1830, 471,3710,2276,1112,1535,3323,3453,3535, 982,1337,2950, 488, 826, # 3408 + 674,1058,1628,4120,2017, 522,2399, 211, 568,1367,3454, 350, 293,1872,1139,3249, # 3424 +1399,1946,3006,1300,2360,3324, 588, 736,6160,2606, 744, 669,3536,3828,6161,1358, # 3440 + 199, 723, 848, 933, 851,1939,1505,1514,1338,1618,1831,4656,1634,3613, 443,2740, # 3456 +3829, 717,1947, 491,1914,6162,2551,1542,4121,1025,6163,1099,1223, 198,3040,2722, # 3472 + 370, 410,1905,2589, 998,1248,3182,2380, 519,1449,4122,1710, 947, 928,1153,4341, # 3488 +2277, 344,2624,1511, 615, 105, 161,1212,1076,1960,3130,2054,1926,1175,1906,2473, # 3504 + 414,1873,2801,6164,2309, 315,1319,3325, 318,2018,2146,2157, 963, 631, 223,4342, # 3520 +4343,2675, 479,3711,1197,2625,3712,2676,2361,6165,4344,4123,6166,2451,3183,1886, # 3536 +2184,1674,1330,1711,1635,1506, 799, 219,3250,3083,3954,1677,3713,3326,2081,3614, # 3552 +1652,2073,4657,1147,3041,1752, 643,1961, 147,1974,3955,6167,1716,2037, 918,3007, # 3568 +1994, 120,1537, 118, 609,3184,4345, 740,3455,1219, 332,1615,3830,6168,1621,2980, # 3584 +1582, 783, 212, 553,2350,3714,1349,2433,2082,4124, 889,6169,2310,1275,1410, 973, # 3600 + 166,1320,3456,1797,1215,3185,2885,1846,2590,2763,4658, 629, 822,3008, 763, 940, # 3616 +1990,2862, 439,2409,1566,1240,1622, 926,1282,1907,2764, 654,2210,1607, 327,1130, # 3632 +3956,1678,1623,6170,2434,2192, 686, 608,3831,3715, 903,3957,3042,6171,2741,1522, # 3648 +1915,1105,1555,2552,1359, 323,3251,4346,3457, 738,1354,2553,2311,2334,1828,2003, # 3664 +3832,1753,2351,1227,6172,1887,4125,1478,6173,2410,1874,1712,1847, 520,1204,2607, # 3680 + 264,4659, 836,2677,2102, 600,4660,3833,2278,3084,6174,4347,3615,1342, 640, 532, # 3696 + 543,2608,1888,2400,2591,1009,4348,1497, 341,1737,3616,2723,1394, 529,3252,1321, # 3712 + 983,4661,1515,2120, 971,2592, 924, 287,1662,3186,4349,2700,4350,1519, 908,1948, # 3728 +2452, 156, 796,1629,1486,2223,2055, 694,4126,1259,1036,3392,1213,2249,2742,1889, # 3744 +1230,3958,1015, 910, 408, 559,3617,4662, 746, 725, 935,4663,3959,3009,1289, 563, # 3760 + 867,4664,3960,1567,2981,2038,2626, 988,2263,2381,4351, 143,2374, 704,1895,6175, # 3776 +1188,3716,2088, 673,3085,2362,4352, 484,1608,1921,2765,2918, 215, 904,3618,3537, # 3792 + 894, 509, 976,3043,2701,3961,4353,2837,2982, 498,6176,6177,1102,3538,1332,3393, # 3808 +1487,1636,1637, 233, 245,3962, 383, 650, 995,3044, 460,1520,1206,2352, 749,3327, # 3824 + 530, 700, 389,1438,1560,1773,3963,2264, 719,2951,2724,3834, 870,1832,1644,1000, # 3840 + 839,2474,3717, 197,1630,3394, 365,2886,3964,1285,2133, 734, 922, 818,1106, 732, # 3856 + 480,2083,1774,3458, 923,2279,1350, 221,3086, 85,2233,2234,3835,1585,3010,2147, # 3872 +1387,1705,2382,1619,2475, 133, 239,2802,1991,1016,2084,2383, 411,2838,1113, 651, # 3888 +1985,1160,3328, 990,1863,3087,1048,1276,2647, 265,2627,1599,3253,2056, 150, 638, # 3904 +2019, 656, 853, 326,1479, 680,1439,4354,1001,1759, 413,3459,3395,2492,1431, 459, # 3920 +4355,1125,3329,2265,1953,1450,2065,2863, 849, 351,2678,3131,3254,3255,1104,1577, # 3936 + 227,1351,1645,2453,2193,1421,2887, 812,2121, 634, 95,2435, 201,2312,4665,1646, # 3952 +1671,2743,1601,2554,2702,2648,2280,1315,1366,2089,3132,1573,3718,3965,1729,1189, # 3968 + 328,2679,1077,1940,1136, 558,1283, 964,1195, 621,2074,1199,1743,3460,3619,1896, # 3984 +1916,1890,3836,2952,1154,2112,1064, 862, 378,3011,2066,2113,2803,1568,2839,6178, # 4000 +3088,2919,1941,1660,2004,1992,2194, 142, 707,1590,1708,1624,1922,1023,1836,1233, # 4016 +1004,2313, 789, 741,3620,6179,1609,2411,1200,4127,3719,3720,4666,2057,3721, 593, # 4032 +2840, 367,2920,1878,6180,3461,1521, 628,1168, 692,2211,2649, 300, 720,2067,2571, # 4048 +2953,3396, 959,2504,3966,3539,3462,1977, 701,6181, 954,1043, 800, 681, 183,3722, # 4064 +1803,1730,3540,4128,2103, 815,2314, 174, 467, 230,2454,1093,2134, 755,3541,3397, # 4080 +1141,1162,6182,1738,2039, 270,3256,2513,1005,1647,2185,3837, 858,1679,1897,1719, # 4096 +2954,2324,1806, 402, 670, 167,4129,1498,2158,2104, 750,6183, 915, 189,1680,1551, # 4112 + 455,4356,1501,2455, 405,1095,2955, 338,1586,1266,1819, 570, 641,1324, 237,1556, # 4128 +2650,1388,3723,6184,1368,2384,1343,1978,3089,2436, 879,3724, 792,1191, 758,3012, # 4144 +1411,2135,1322,4357, 240,4667,1848,3725,1574,6185, 420,3045,1546,1391, 714,4358, # 4160 +1967, 941,1864, 863, 664, 426, 560,1731,2680,1785,2864,1949,2363, 403,3330,1415, # 4176 +1279,2136,1697,2335, 204, 721,2097,3838, 90,6186,2085,2505, 191,3967, 124,2148, # 4192 +1376,1798,1178,1107,1898,1405, 860,4359,1243,1272,2375,2983,1558,2456,1638, 113, # 4208 +3621, 578,1923,2609, 880, 386,4130, 784,2186,2266,1422,2956,2172,1722, 497, 263, # 4224 +2514,1267,2412,2610, 177,2703,3542, 774,1927,1344, 616,1432,1595,1018, 172,4360, # 4240 +2325, 911,4361, 438,1468,3622, 794,3968,2024,2173,1681,1829,2957, 945, 895,3090, # 4256 + 575,2212,2476, 475,2401,2681, 785,2744,1745,2293,2555,1975,3133,2865, 394,4668, # 4272 +3839, 635,4131, 639, 202,1507,2195,2766,1345,1435,2572,3726,1908,1184,1181,2457, # 4288 +3727,3134,4362, 843,2611, 437, 916,4669, 234, 769,1884,3046,3047,3623, 833,6187, # 4304 +1639,2250,2402,1355,1185,2010,2047, 999, 525,1732,1290,1488,2612, 948,1578,3728, # 4320 +2413,2477,1216,2725,2159, 334,3840,1328,3624,2921,1525,4132, 564,1056, 891,4363, # 4336 +1444,1698,2385,2251,3729,1365,2281,2235,1717,6188, 864,3841,2515, 444, 527,2767, # 4352 +2922,3625, 544, 461,6189, 566, 209,2437,3398,2098,1065,2068,3331,3626,3257,2137, # 4368 #last 512 +) + + diff --git a/venv/lib/python2.7/site-packages/chardet/jpcntx.py b/venv/lib/python2.7/site-packages/chardet/jpcntx.py new file mode 100644 index 00000000..20044e4b --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/jpcntx.py @@ -0,0 +1,233 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1), +(2,4,0,4,0,3,0,4,0,3,4,4,4,2,4,3,3,4,3,2,3,3,4,2,3,3,3,2,4,1,4,3,3,1,5,4,3,4,3,4,3,5,3,0,3,5,4,2,0,3,1,0,3,3,0,3,3,0,1,1,0,4,3,0,3,3,0,4,0,2,0,3,5,5,5,5,4,0,4,1,0,3,4), +(0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2), +(0,4,0,5,0,5,0,4,0,4,5,4,4,3,5,3,5,1,5,3,4,3,4,4,3,4,3,3,4,3,5,4,4,3,5,5,3,5,5,5,3,5,5,3,4,5,5,3,1,3,2,0,3,4,0,4,2,0,4,2,1,5,3,2,3,5,0,4,0,2,0,5,4,4,5,4,5,0,4,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,4,0,3,0,3,0,4,5,4,3,3,3,3,4,3,5,4,4,3,5,4,4,3,4,3,4,4,4,4,5,3,4,4,3,4,5,5,4,5,5,1,4,5,4,3,0,3,3,1,3,3,0,4,4,0,3,3,1,5,3,3,3,5,0,4,0,3,0,4,4,3,4,3,3,0,4,1,1,3,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,4,0,3,0,3,0,4,0,3,4,4,3,2,2,1,2,1,3,1,3,3,3,3,3,4,3,1,3,3,5,3,3,0,4,3,0,5,4,3,3,5,4,4,3,4,4,5,0,1,2,0,1,2,0,2,2,0,1,0,0,5,2,2,1,4,0,3,0,1,0,4,4,3,5,4,3,0,2,1,0,4,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,5,0,4,0,2,1,4,4,2,4,1,4,2,4,2,4,3,3,3,4,3,3,3,3,1,4,2,3,3,3,1,4,4,1,1,1,4,3,3,2,0,2,4,3,2,0,3,3,0,3,1,1,0,0,0,3,3,0,4,2,2,3,4,0,4,0,3,0,4,4,5,3,4,4,0,3,0,0,1,4), +(1,4,0,4,0,4,0,4,0,3,5,4,4,3,4,3,5,4,3,3,4,3,5,4,4,4,4,3,4,2,4,3,3,1,5,4,3,2,4,5,4,5,5,4,4,5,4,4,0,3,2,2,3,3,0,4,3,1,3,2,1,4,3,3,4,5,0,3,0,2,0,4,5,5,4,5,4,0,4,0,0,5,4), +(0,5,0,5,0,4,0,3,0,4,4,3,4,3,3,3,4,0,4,4,4,3,4,3,4,3,3,1,4,2,4,3,4,0,5,4,1,4,5,4,4,5,3,2,4,3,4,3,2,4,1,3,3,3,2,3,2,0,4,3,3,4,3,3,3,4,0,4,0,3,0,4,5,4,4,4,3,0,4,1,0,1,3), +(0,3,1,4,0,3,0,2,0,3,4,4,3,1,4,2,3,3,4,3,4,3,4,3,4,4,3,2,3,1,5,4,4,1,4,4,3,5,4,4,3,5,5,4,3,4,4,3,1,2,3,1,2,2,0,3,2,0,3,1,0,5,3,3,3,4,3,3,3,3,4,4,4,4,5,4,2,0,3,3,2,4,3), +(0,2,0,3,0,1,0,1,0,0,3,2,0,0,2,0,1,0,2,1,3,3,3,1,2,3,1,0,1,0,4,2,1,1,3,3,0,4,3,3,1,4,3,3,0,3,3,2,0,0,0,0,1,0,0,2,0,0,0,0,0,4,1,0,2,3,2,2,2,1,3,3,3,4,4,3,2,0,3,1,0,3,3), +(0,4,0,4,0,3,0,3,0,4,4,4,3,3,3,3,3,3,4,3,4,2,4,3,4,3,3,2,4,3,4,5,4,1,4,5,3,5,4,5,3,5,4,0,3,5,5,3,1,3,3,2,2,3,0,3,4,1,3,3,2,4,3,3,3,4,0,4,0,3,0,4,5,4,4,5,3,0,4,1,0,3,4), +(0,2,0,3,0,3,0,0,0,2,2,2,1,0,1,0,0,0,3,0,3,0,3,0,1,3,1,0,3,1,3,3,3,1,3,3,3,0,1,3,1,3,4,0,0,3,1,1,0,3,2,0,0,0,0,1,3,0,1,0,0,3,3,2,0,3,0,0,0,0,0,3,4,3,4,3,3,0,3,0,0,2,3), +(2,3,0,3,0,2,0,1,0,3,3,4,3,1,3,1,1,1,3,1,4,3,4,3,3,3,0,0,3,1,5,4,3,1,4,3,2,5,5,4,4,4,4,3,3,4,4,4,0,2,1,1,3,2,0,1,2,0,0,1,0,4,1,3,3,3,0,3,0,1,0,4,4,4,5,5,3,0,2,0,0,4,4), +(0,2,0,1,0,3,1,3,0,2,3,3,3,0,3,1,0,0,3,0,3,2,3,1,3,2,1,1,0,0,4,2,1,0,2,3,1,4,3,2,0,4,4,3,1,3,1,3,0,1,0,0,1,0,0,0,1,0,0,0,0,4,1,1,1,2,0,3,0,0,0,3,4,2,4,3,2,0,1,0,0,3,3), +(0,1,0,4,0,5,0,4,0,2,4,4,2,3,3,2,3,3,5,3,3,3,4,3,4,2,3,0,4,3,3,3,4,1,4,3,2,1,5,5,3,4,5,1,3,5,4,2,0,3,3,0,1,3,0,4,2,0,1,3,1,4,3,3,3,3,0,3,0,1,0,3,4,4,4,5,5,0,3,0,1,4,5), +(0,2,0,3,0,3,0,0,0,2,3,1,3,0,4,0,1,1,3,0,3,4,3,2,3,1,0,3,3,2,3,1,3,0,2,3,0,2,1,4,1,2,2,0,0,3,3,0,0,2,0,0,0,1,0,0,0,0,2,2,0,3,2,1,3,3,0,2,0,2,0,0,3,3,1,2,4,0,3,0,2,2,3), +(2,4,0,5,0,4,0,4,0,2,4,4,4,3,4,3,3,3,1,2,4,3,4,3,4,4,5,0,3,3,3,3,2,0,4,3,1,4,3,4,1,4,4,3,3,4,4,3,1,2,3,0,4,2,0,4,1,0,3,3,0,4,3,3,3,4,0,4,0,2,0,3,5,3,4,5,2,0,3,0,0,4,5), +(0,3,0,4,0,1,0,1,0,1,3,2,2,1,3,0,3,0,2,0,2,0,3,0,2,0,0,0,1,0,1,1,0,0,3,1,0,0,0,4,0,3,1,0,2,1,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,2,2,3,1,0,3,0,0,0,1,4,4,4,3,0,0,4,0,0,1,4), +(1,4,1,5,0,3,0,3,0,4,5,4,4,3,5,3,3,4,4,3,4,1,3,3,3,3,2,1,4,1,5,4,3,1,4,4,3,5,4,4,3,5,4,3,3,4,4,4,0,3,3,1,2,3,0,3,1,0,3,3,0,5,4,4,4,4,4,4,3,3,5,4,4,3,3,5,4,0,3,2,0,4,4), +(0,2,0,3,0,1,0,0,0,1,3,3,3,2,4,1,3,0,3,1,3,0,2,2,1,1,0,0,2,0,4,3,1,0,4,3,0,4,4,4,1,4,3,1,1,3,3,1,0,2,0,0,1,3,0,0,0,0,2,0,0,4,3,2,4,3,5,4,3,3,3,4,3,3,4,3,3,0,2,1,0,3,3), +(0,2,0,4,0,3,0,2,0,2,5,5,3,4,4,4,4,1,4,3,3,0,4,3,4,3,1,3,3,2,4,3,0,3,4,3,0,3,4,4,2,4,4,0,4,5,3,3,2,2,1,1,1,2,0,1,5,0,3,3,2,4,3,3,3,4,0,3,0,2,0,4,4,3,5,5,0,0,3,0,2,3,3), +(0,3,0,4,0,3,0,1,0,3,4,3,3,1,3,3,3,0,3,1,3,0,4,3,3,1,1,0,3,0,3,3,0,0,4,4,0,1,5,4,3,3,5,0,3,3,4,3,0,2,0,1,1,1,0,1,3,0,1,2,1,3,3,2,3,3,0,3,0,1,0,1,3,3,4,4,1,0,1,2,2,1,3), +(0,1,0,4,0,4,0,3,0,1,3,3,3,2,3,1,1,0,3,0,3,3,4,3,2,4,2,0,1,0,4,3,2,0,4,3,0,5,3,3,2,4,4,4,3,3,3,4,0,1,3,0,0,1,0,0,1,0,0,0,0,4,2,3,3,3,0,3,0,0,0,4,4,4,5,3,2,0,3,3,0,3,5), +(0,2,0,3,0,0,0,3,0,1,3,0,2,0,0,0,1,0,3,1,1,3,3,0,0,3,0,0,3,0,2,3,1,0,3,1,0,3,3,2,0,4,2,2,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,1,0,1,0,0,0,1,3,1,2,0,0,0,1,0,0,1,4), +(0,3,0,3,0,5,0,1,0,2,4,3,1,3,3,2,1,1,5,2,1,0,5,1,2,0,0,0,3,3,2,2,3,2,4,3,0,0,3,3,1,3,3,0,2,5,3,4,0,3,3,0,1,2,0,2,2,0,3,2,0,2,2,3,3,3,0,2,0,1,0,3,4,4,2,5,4,0,3,0,0,3,5), +(0,3,0,3,0,3,0,1,0,3,3,3,3,0,3,0,2,0,2,1,1,0,2,0,1,0,0,0,2,1,0,0,1,0,3,2,0,0,3,3,1,2,3,1,0,3,3,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,3,1,2,3,0,3,0,1,0,3,2,1,0,4,3,0,1,1,0,3,3), +(0,4,0,5,0,3,0,3,0,4,5,5,4,3,5,3,4,3,5,3,3,2,5,3,4,4,4,3,4,3,4,5,5,3,4,4,3,4,4,5,4,4,4,3,4,5,5,4,2,3,4,2,3,4,0,3,3,1,4,3,2,4,3,3,5,5,0,3,0,3,0,5,5,5,5,4,4,0,4,0,1,4,4), +(0,4,0,4,0,3,0,3,0,3,5,4,4,2,3,2,5,1,3,2,5,1,4,2,3,2,3,3,4,3,3,3,3,2,5,4,1,3,3,5,3,4,4,0,4,4,3,1,1,3,1,0,2,3,0,2,3,0,3,0,0,4,3,1,3,4,0,3,0,2,0,4,4,4,3,4,5,0,4,0,0,3,4), +(0,3,0,3,0,3,1,2,0,3,4,4,3,3,3,0,2,2,4,3,3,1,3,3,3,1,1,0,3,1,4,3,2,3,4,4,2,4,4,4,3,4,4,3,2,4,4,3,1,3,3,1,3,3,0,4,1,0,2,2,1,4,3,2,3,3,5,4,3,3,5,4,4,3,3,0,4,0,3,2,2,4,4), +(0,2,0,1,0,0,0,0,0,1,2,1,3,0,0,0,0,0,2,0,1,2,1,0,0,1,0,0,0,0,3,0,0,1,0,1,1,3,1,0,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,2,2,0,3,4,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1), +(0,1,0,0,0,1,0,0,0,0,4,0,4,1,4,0,3,0,4,0,3,0,4,0,3,0,3,0,4,1,5,1,4,0,0,3,0,5,0,5,2,0,1,0,0,0,2,1,4,0,1,3,0,0,3,0,0,3,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0), +(1,4,0,5,0,3,0,2,0,3,5,4,4,3,4,3,5,3,4,3,3,0,4,3,3,3,3,3,3,2,4,4,3,1,3,4,4,5,4,4,3,4,4,1,3,5,4,3,3,3,1,2,2,3,3,1,3,1,3,3,3,5,3,3,4,5,0,3,0,3,0,3,4,3,4,4,3,0,3,0,2,4,3), +(0,1,0,4,0,0,0,0,0,1,4,0,4,1,4,2,4,0,3,0,1,0,1,0,0,0,0,0,2,0,3,1,1,1,0,3,0,0,0,1,2,1,0,0,1,1,1,1,0,1,0,0,0,1,0,0,3,0,0,0,0,3,2,0,2,2,0,1,0,0,0,2,3,2,3,3,0,0,0,0,2,1,0), +(0,5,1,5,0,3,0,3,0,5,4,4,5,1,5,3,3,0,4,3,4,3,5,3,4,3,3,2,4,3,4,3,3,0,3,3,1,4,4,3,4,4,4,3,4,5,5,3,2,3,1,1,3,3,1,3,1,1,3,3,2,4,5,3,3,5,0,4,0,3,0,4,4,3,5,3,3,0,3,4,0,4,3), +(0,5,0,5,0,3,0,2,0,4,4,3,5,2,4,3,3,3,4,4,4,3,5,3,5,3,3,1,4,0,4,3,3,0,3,3,0,4,4,4,4,5,4,3,3,5,5,3,2,3,1,2,3,2,0,1,0,0,3,2,2,4,4,3,1,5,0,4,0,3,0,4,3,1,3,2,1,0,3,3,0,3,3), +(0,4,0,5,0,5,0,4,0,4,5,5,5,3,4,3,3,2,5,4,4,3,5,3,5,3,4,0,4,3,4,4,3,2,4,4,3,4,5,4,4,5,5,0,3,5,5,4,1,3,3,2,3,3,1,3,1,0,4,3,1,4,4,3,4,5,0,4,0,2,0,4,3,4,4,3,3,0,4,0,0,5,5), +(0,4,0,4,0,5,0,1,1,3,3,4,4,3,4,1,3,0,5,1,3,0,3,1,3,1,1,0,3,0,3,3,4,0,4,3,0,4,4,4,3,4,4,0,3,5,4,1,0,3,0,0,2,3,0,3,1,0,3,1,0,3,2,1,3,5,0,3,0,1,0,3,2,3,3,4,4,0,2,2,0,4,4), +(2,4,0,5,0,4,0,3,0,4,5,5,4,3,5,3,5,3,5,3,5,2,5,3,4,3,3,4,3,4,5,3,2,1,5,4,3,2,3,4,5,3,4,1,2,5,4,3,0,3,3,0,3,2,0,2,3,0,4,1,0,3,4,3,3,5,0,3,0,1,0,4,5,5,5,4,3,0,4,2,0,3,5), +(0,5,0,4,0,4,0,2,0,5,4,3,4,3,4,3,3,3,4,3,4,2,5,3,5,3,4,1,4,3,4,4,4,0,3,5,0,4,4,4,4,5,3,1,3,4,5,3,3,3,3,3,3,3,0,2,2,0,3,3,2,4,3,3,3,5,3,4,1,3,3,5,3,2,0,0,0,0,4,3,1,3,3), +(0,1,0,3,0,3,0,1,0,1,3,3,3,2,3,3,3,0,3,0,0,0,3,1,3,0,0,0,2,2,2,3,0,0,3,2,0,1,2,4,1,3,3,0,0,3,3,3,0,1,0,0,2,1,0,0,3,0,3,1,0,3,0,0,1,3,0,2,0,1,0,3,3,1,3,3,0,0,1,1,0,3,3), +(0,2,0,3,0,2,1,4,0,2,2,3,1,1,3,1,1,0,2,0,3,1,2,3,1,3,0,0,1,0,4,3,2,3,3,3,1,4,2,3,3,3,3,1,0,3,1,4,0,1,1,0,1,2,0,1,1,0,1,1,0,3,1,3,2,2,0,1,0,0,0,2,3,3,3,1,0,0,0,0,0,2,3), +(0,5,0,4,0,5,0,2,0,4,5,5,3,3,4,3,3,1,5,4,4,2,4,4,4,3,4,2,4,3,5,5,4,3,3,4,3,3,5,5,4,5,5,1,3,4,5,3,1,4,3,1,3,3,0,3,3,1,4,3,1,4,5,3,3,5,0,4,0,3,0,5,3,3,1,4,3,0,4,0,1,5,3), +(0,5,0,5,0,4,0,2,0,4,4,3,4,3,3,3,3,3,5,4,4,4,4,4,4,5,3,3,5,2,4,4,4,3,4,4,3,3,4,4,5,5,3,3,4,3,4,3,3,4,3,3,3,3,1,2,2,1,4,3,3,5,4,4,3,4,0,4,0,3,0,4,4,4,4,4,1,0,4,2,0,2,4), +(0,4,0,4,0,3,0,1,0,3,5,2,3,0,3,0,2,1,4,2,3,3,4,1,4,3,3,2,4,1,3,3,3,0,3,3,0,0,3,3,3,5,3,3,3,3,3,2,0,2,0,0,2,0,0,2,0,0,1,0,0,3,1,2,2,3,0,3,0,2,0,4,4,3,3,4,1,0,3,0,0,2,4), +(0,0,0,4,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,3,1,3,0,3,2,0,0,0,1,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0,2), +(0,2,1,3,0,2,0,2,0,3,3,3,3,1,3,1,3,3,3,3,3,3,4,2,2,1,2,1,4,0,4,3,1,3,3,3,2,4,3,5,4,3,3,3,3,3,3,3,0,1,3,0,2,0,0,1,0,0,1,0,0,4,2,0,2,3,0,3,3,0,3,3,4,2,3,1,4,0,1,2,0,2,3), +(0,3,0,3,0,1,0,3,0,2,3,3,3,0,3,1,2,0,3,3,2,3,3,2,3,2,3,1,3,0,4,3,2,0,3,3,1,4,3,3,2,3,4,3,1,3,3,1,1,0,1,1,0,1,0,1,0,1,0,0,0,4,1,1,0,3,0,3,1,0,2,3,3,3,3,3,1,0,0,2,0,3,3), +(0,0,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,0,0,0,0,0,0,0,0,3), +(0,2,0,3,1,3,0,3,0,2,3,3,3,1,3,1,3,1,3,1,3,3,3,1,3,0,2,3,1,1,4,3,3,2,3,3,1,2,2,4,1,3,3,0,1,4,2,3,0,1,3,0,3,0,0,1,3,0,2,0,0,3,3,2,1,3,0,3,0,2,0,3,4,4,4,3,1,0,3,0,0,3,3), +(0,2,0,1,0,2,0,0,0,1,3,2,2,1,3,0,1,1,3,0,3,2,3,1,2,0,2,0,1,1,3,3,3,0,3,3,1,1,2,3,2,3,3,1,2,3,2,0,0,1,0,0,0,0,0,0,3,0,1,0,0,2,1,2,1,3,0,3,0,0,0,3,4,4,4,3,2,0,2,0,0,2,4), +(0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,3), +(0,3,0,3,0,2,0,3,0,3,3,3,2,3,2,2,2,0,3,1,3,3,3,2,3,3,0,0,3,0,3,2,2,0,2,3,1,4,3,4,3,3,2,3,1,5,4,4,0,3,1,2,1,3,0,3,1,1,2,0,2,3,1,3,1,3,0,3,0,1,0,3,3,4,4,2,1,0,2,1,0,2,4), +(0,1,0,3,0,1,0,2,0,1,4,2,5,1,4,0,2,0,2,1,3,1,4,0,2,1,0,0,2,1,4,1,1,0,3,3,0,5,1,3,2,3,3,1,0,3,2,3,0,1,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,3,0,2,0,1,0,3,3,3,4,3,3,0,0,0,0,2,3), +(0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,3), +(0,1,0,3,0,4,0,3,0,2,4,3,1,0,3,2,2,1,3,1,2,2,3,1,1,1,2,1,3,0,1,2,0,1,3,2,1,3,0,5,5,1,0,0,1,3,2,1,0,3,0,0,1,0,0,0,0,0,3,4,0,1,1,1,3,2,0,2,0,1,0,2,3,3,1,2,3,0,1,0,1,0,4), +(0,0,0,1,0,3,0,3,0,2,2,1,0,0,4,0,3,0,3,1,3,0,3,0,3,0,1,0,3,0,3,1,3,0,3,3,0,0,1,2,1,1,1,0,1,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2,2,1,2,0,0,2,0,0,0,0,2,3,3,3,3,0,0,0,0,1,4), +(0,0,0,3,0,3,0,0,0,0,3,1,1,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,3,0,2,0,2,3,0,0,2,2,3,1,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,2,3), +(2,4,0,5,0,5,0,4,0,3,4,3,3,3,4,3,3,3,4,3,4,4,5,4,5,5,5,2,3,0,5,5,4,1,5,4,3,1,5,4,3,4,4,3,3,4,3,3,0,3,2,0,2,3,0,3,0,0,3,3,0,5,3,2,3,3,0,3,0,3,0,3,4,5,4,5,3,0,4,3,0,3,4), +(0,3,0,3,0,3,0,3,0,3,3,4,3,2,3,2,3,0,4,3,3,3,3,3,3,3,3,0,3,2,4,3,3,1,3,4,3,4,4,4,3,4,4,3,2,4,4,1,0,2,0,0,1,1,0,2,0,0,3,1,0,5,3,2,1,3,0,3,0,1,2,4,3,2,4,3,3,0,3,2,0,4,4), +(0,3,0,3,0,1,0,0,0,1,4,3,3,2,3,1,3,1,4,2,3,2,4,2,3,4,3,0,2,2,3,3,3,0,3,3,3,0,3,4,1,3,3,0,3,4,3,3,0,1,1,0,1,0,0,0,4,0,3,0,0,3,1,2,1,3,0,4,0,1,0,4,3,3,4,3,3,0,2,0,0,3,3), +(0,3,0,4,0,1,0,3,0,3,4,3,3,0,3,3,3,1,3,1,3,3,4,3,3,3,0,0,3,1,5,3,3,1,3,3,2,5,4,3,3,4,5,3,2,5,3,4,0,1,0,0,0,0,0,2,0,0,1,1,0,4,2,2,1,3,0,3,0,2,0,4,4,3,5,3,2,0,1,1,0,3,4), +(0,5,0,4,0,5,0,2,0,4,4,3,3,2,3,3,3,1,4,3,4,1,5,3,4,3,4,0,4,2,4,3,4,1,5,4,0,4,4,4,4,5,4,1,3,5,4,2,1,4,1,1,3,2,0,3,1,0,3,2,1,4,3,3,3,4,0,4,0,3,0,4,4,4,3,3,3,0,4,2,0,3,4), +(1,4,0,4,0,3,0,1,0,3,3,3,1,1,3,3,2,2,3,3,1,0,3,2,2,1,2,0,3,1,2,1,2,0,3,2,0,2,2,3,3,4,3,0,3,3,1,2,0,1,1,3,1,2,0,0,3,0,1,1,0,3,2,2,3,3,0,3,0,0,0,2,3,3,4,3,3,0,1,0,0,1,4), +(0,4,0,4,0,4,0,0,0,3,4,4,3,1,4,2,3,2,3,3,3,1,4,3,4,0,3,0,4,2,3,3,2,2,5,4,2,1,3,4,3,4,3,1,3,3,4,2,0,2,1,0,3,3,0,0,2,0,3,1,0,4,4,3,4,3,0,4,0,1,0,2,4,4,4,4,4,0,3,2,0,3,3), +(0,0,0,1,0,4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2), +(0,2,0,3,0,4,0,4,0,1,3,3,3,0,4,0,2,1,2,1,1,1,2,0,3,1,1,0,1,0,3,1,0,0,3,3,2,0,1,1,0,0,0,0,0,1,0,2,0,2,2,0,3,1,0,0,1,0,1,1,0,1,2,0,3,0,0,0,0,1,0,0,3,3,4,3,1,0,1,0,3,0,2), +(0,0,0,3,0,5,0,0,0,0,1,0,2,0,3,1,0,1,3,0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,4,0,0,0,2,3,0,1,4,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,3), +(0,2,0,5,0,5,0,1,0,2,4,3,3,2,5,1,3,2,3,3,3,0,4,1,2,0,3,0,4,0,2,2,1,1,5,3,0,0,1,4,2,3,2,0,3,3,3,2,0,2,4,1,1,2,0,1,1,0,3,1,0,1,3,1,2,3,0,2,0,0,0,1,3,5,4,4,4,0,3,0,0,1,3), +(0,4,0,5,0,4,0,4,0,4,5,4,3,3,4,3,3,3,4,3,4,4,5,3,4,5,4,2,4,2,3,4,3,1,4,4,1,3,5,4,4,5,5,4,4,5,5,5,2,3,3,1,4,3,1,3,3,0,3,3,1,4,3,4,4,4,0,3,0,4,0,3,3,4,4,5,0,0,4,3,0,4,5), +(0,4,0,4,0,3,0,3,0,3,4,4,4,3,3,2,4,3,4,3,4,3,5,3,4,3,2,1,4,2,4,4,3,1,3,4,2,4,5,5,3,4,5,4,1,5,4,3,0,3,2,2,3,2,1,3,1,0,3,3,3,5,3,3,3,5,4,4,2,3,3,4,3,3,3,2,1,0,3,2,1,4,3), +(0,4,0,5,0,4,0,3,0,3,5,5,3,2,4,3,4,0,5,4,4,1,4,4,4,3,3,3,4,3,5,5,2,3,3,4,1,2,5,5,3,5,5,2,3,5,5,4,0,3,2,0,3,3,1,1,5,1,4,1,0,4,3,2,3,5,0,4,0,3,0,5,4,3,4,3,0,0,4,1,0,4,4), +(1,3,0,4,0,2,0,2,0,2,5,5,3,3,3,3,3,0,4,2,3,4,4,4,3,4,0,0,3,4,5,4,3,3,3,3,2,5,5,4,5,5,5,4,3,5,5,5,1,3,1,0,1,0,0,3,2,0,4,2,0,5,2,3,2,4,1,3,0,3,0,4,5,4,5,4,3,0,4,2,0,5,4), +(0,3,0,4,0,5,0,3,0,3,4,4,3,2,3,2,3,3,3,3,3,2,4,3,3,2,2,0,3,3,3,3,3,1,3,3,3,0,4,4,3,4,4,1,1,4,4,2,0,3,1,0,1,1,0,4,1,0,2,3,1,3,3,1,3,4,0,3,0,1,0,3,1,3,0,0,1,0,2,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,3,0,2,0,3,0,1,5,4,3,3,3,1,4,2,1,2,3,4,4,2,4,4,5,0,3,1,4,3,4,0,4,3,3,3,2,3,2,5,3,4,3,2,2,3,0,0,3,0,2,1,0,1,2,0,0,0,0,2,1,1,3,1,0,2,0,4,0,3,4,4,4,5,2,0,2,0,0,1,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,4,2,1,1,0,1,0,3,2,0,0,3,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,2,0,0,0,1,4,0,4,2,1,0,0,0,0,0,1), +(0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,3,1,0,0,0,2,0,2,1,0,0,1,2,1,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,2), +(0,4,0,4,0,4,0,3,0,4,4,3,4,2,4,3,2,0,4,4,4,3,5,3,5,3,3,2,4,2,4,3,4,3,1,4,0,2,3,4,4,4,3,3,3,4,4,4,3,4,1,3,4,3,2,1,2,1,3,3,3,4,4,3,3,5,0,4,0,3,0,4,3,3,3,2,1,0,3,0,0,3,3), +(0,4,0,3,0,3,0,3,0,3,5,5,3,3,3,3,4,3,4,3,3,3,4,4,4,3,3,3,3,4,3,5,3,3,1,3,2,4,5,5,5,5,4,3,4,5,5,3,2,2,3,3,3,3,2,3,3,1,2,3,2,4,3,3,3,4,0,4,0,2,0,4,3,2,2,1,2,0,3,0,0,4,1), +) + +class JapaneseContextAnalysis(object): + NUM_OF_CATEGORY = 6 + DONT_KNOW = -1 + ENOUGH_REL_THRESHOLD = 100 + MAX_REL_THRESHOLD = 1000 + MINIMUM_DATA_THRESHOLD = 4 + + def __init__(self): + self._total_rel = None + self._rel_sample = None + self._need_to_skip_char_num = None + self._last_char_order = None + self._done = None + self.reset() + + def reset(self): + self._total_rel = 0 # total sequence received + # category counters, each integer counts sequence in its category + self._rel_sample = [0] * self.NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._need_to_skip_char_num = 0 + self._last_char_order = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._done = False + + def feed(self, byte_str, num_bytes): + if self._done: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._need_to_skip_char_num + while i < num_bytes: + order, char_len = self.get_order(byte_str[i:i + 2]) + i += char_len + if i > num_bytes: + self._need_to_skip_char_num = i - num_bytes + self._last_char_order = -1 + else: + if (order != -1) and (self._last_char_order != -1): + self._total_rel += 1 + if self._total_rel > self.MAX_REL_THRESHOLD: + self._done = True + break + self._rel_sample[jp2CharContext[self._last_char_order][order]] += 1 + self._last_char_order = order + + def got_enough_data(self): + return self._total_rel > self.ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # This is just one way to calculate confidence. It works well for me. + if self._total_rel > self.MINIMUM_DATA_THRESHOLD: + return (self._total_rel - self._rel_sample[0]) / self._total_rel + else: + return self.DONT_KNOW + + def get_order(self, byte_str): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def __init__(self): + super(SJISContextAnalysis, self).__init__() + self._charset_name = "SHIFT_JIS" + + @property + def charset_name(self): + return self._charset_name + + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC): + char_len = 2 + if (first_char == 0x87) or (0xFA <= first_char <= 0xFC): + self._charset_name = "CP932" + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, char_len + + return -1, char_len + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, byte_str): + if not byte_str: + return -1, 1 + # find out current char's byte length + first_char = byte_str[0] + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + char_len = 2 + elif first_char == 0x8F: + char_len = 3 + else: + char_len = 1 + + # return its order if it is hiragana + if len(byte_str) > 1: + second_char = byte_str[1] + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, char_len + + return -1, char_len + + diff --git a/venv/lib/python2.7/site-packages/chardet/langbulgarianmodel.py b/venv/lib/python2.7/site-packages/chardet/langbulgarianmodel.py new file mode 100644 index 00000000..2aa4fb2e --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langbulgarianmodel.py @@ -0,0 +1,228 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +# this table is modified base on win1251BulgarianCharToOrderMap, so +# only number <64 is sure valid + +Latin5_BulgarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 +110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 +253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 +116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 +194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209, # 80 +210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225, # 90 + 81,226,227,228,229,230,105,231,232,233,234,235,236, 45,237,238, # a0 + 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # b0 + 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,239, 67,240, 60, 56, # c0 + 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # d0 + 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,241, 42, 16, # e0 + 62,242,243,244, 58,245, 98,246,247,248,249,250,251, 91,252,253, # f0 +) + +win1251BulgarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 +110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 +253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 +116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 +206,207,208,209,210,211,212,213,120,214,215,216,217,218,219,220, # 80 +221, 78, 64, 83,121, 98,117,105,222,223,224,225,226,227,228,229, # 90 + 88,230,231,232,233,122, 89,106,234,235,236,237,238, 45,239,240, # a0 + 73, 80,118,114,241,242,243,244,245, 62, 58,246,247,248,249,250, # b0 + 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # c0 + 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,251, 67,252, 60, 56, # d0 + 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # e0 + 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,253, 42, 16, # f0 +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 96.9392% +# first 1024 sequences:3.0618% +# rest sequences: 0.2992% +# negative sequences: 0.0020% +BulgarianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,2,2,1,2,2, +3,1,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,0,1, +0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,3,3,0,3,1,0, +0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,2,2,1,3,3,3,3,2,2,2,1,1,2,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,2,3,2,2,3,3,1,1,2,3,3,2,3,3,3,3,2,1,2,0,2,0,3,0,0, +0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,1,3,3,3,3,3,2,3,2,3,3,3,3,3,2,3,3,1,3,0,3,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,1,3,3,2,3,3,3,1,3,3,2,3,2,2,2,0,0,2,0,2,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,3,3,1,2,2,3,2,1,1,2,0,2,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,2,3,3,1,2,3,2,2,2,3,3,3,3,3,2,2,3,1,2,0,2,1,2,0,0, +0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,1,3,3,3,3,3,2,3,3,3,2,3,3,2,3,2,2,2,3,1,2,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,2,1,3,1,3,2,2,3,0,0,1,0,1,0,1,0,0, +0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,2,2,3,2,2,3,1,2,1,1,1,2,3,1,3,1,2,2,0,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,1,3,2,2,3,3,1,2,3,1,1,3,3,3,3,1,2,2,1,1,1,0,2,0,2,0,1, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,2,2,3,3,3,2,2,1,1,2,0,2,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,0,1,2,1,3,3,2,3,3,3,3,3,2,3,2,1,0,3,1,2,1,2,1,2,3,2,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,1,2,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,1,3,3,2,3,3,2,2,2,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,0,3,3,3,3,3,2,1,1,2,1,3,3,0,3,1,1,1,1,3,2,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,1,1,3,1,3,3,2,3,2,2,2,3,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,3,2,2,3,2,1,1,1,1,1,3,1,3,1,1,0,0,0,1,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,2,0,3,2,0,3,0,2,0,0,2,1,3,1,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,2,1,1,1,1,2,1,1,2,1,1,1,2,2,1,2,1,1,1,0,1,1,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,2,1,3,1,1,2,1,3,2,1,1,0,1,2,3,2,1,1,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,2,2,1,0,1,0,0,1,0,0,0,2,1,0,3,0,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,2,3,2,3,3,1,3,2,1,1,1,2,1,1,2,1,3,0,1,0,0,0,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,2,2,3,3,2,3,2,2,2,3,1,2,2,1,1,2,1,1,2,2,0,1,1,0,1,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,3,1,0,2,2,1,3,2,1,0,0,2,0,2,0,1,0,0,0,0,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,1,2,0,2,3,1,2,3,2,0,1,3,1,2,1,1,1,0,0,1,0,0,2,2,2,3, +2,2,2,2,1,2,1,1,2,2,1,1,2,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,0,1, +3,3,3,3,3,2,1,2,2,1,2,0,2,0,1,0,1,2,1,2,1,1,0,0,0,1,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,2,3,3,1,1,3,1,0,3,2,1,0,0,0,1,2,0,2,0,1,0,0,0,1,0,1,2,1,2,2, +1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,2,1,1,1,0,0,0,0,0,1,1,0,0, +3,1,0,1,0,2,3,2,2,2,3,2,2,2,2,2,1,0,2,1,2,1,1,1,0,1,2,1,2,2,2,1, +1,1,2,2,2,2,1,2,1,1,0,1,2,1,2,2,2,1,1,1,0,1,1,1,1,2,0,1,0,0,0,0, +2,3,2,3,3,0,0,2,1,0,2,1,0,0,0,0,2,3,0,2,0,0,0,0,0,1,0,0,2,0,1,2, +2,1,2,1,2,2,1,1,1,2,1,1,1,0,1,2,2,1,1,1,1,1,0,1,1,1,0,0,1,2,0,0, +3,3,2,2,3,0,2,3,1,1,2,0,0,0,1,0,0,2,0,2,0,0,0,1,0,1,0,1,2,0,2,2, +1,1,1,1,2,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0, +2,3,2,3,3,0,0,3,0,1,1,0,1,0,0,0,2,2,1,2,0,0,0,0,0,0,0,0,2,0,1,2, +2,2,1,1,1,1,1,2,2,2,1,0,2,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0, +3,3,3,3,2,2,2,2,2,0,2,1,1,1,1,2,1,2,1,1,0,2,0,1,0,1,0,0,2,0,1,2, +1,1,1,1,1,1,1,2,2,1,1,0,2,0,1,0,2,0,0,1,1,1,0,0,2,0,0,0,1,1,0,0, +2,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,1,2,0,1,2, +2,2,2,1,1,2,1,1,2,2,2,1,2,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0, +2,3,3,3,3,0,2,2,0,2,1,0,0,0,1,1,1,2,0,2,0,0,0,3,0,0,0,0,2,0,2,2, +1,1,1,2,1,2,1,1,2,2,2,1,2,0,1,1,1,0,1,1,1,1,0,2,1,0,0,0,1,1,0,0, +2,3,3,3,3,0,2,1,0,0,2,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,2,0,1,2, +1,1,1,2,1,1,1,1,2,2,2,0,1,0,1,1,1,0,0,1,1,1,0,0,1,0,0,0,0,1,0,0, +3,3,2,2,3,0,1,0,1,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,1,0,2,2, +1,1,1,1,1,2,1,1,2,2,1,2,2,1,0,1,1,1,1,1,0,1,0,0,1,0,0,0,1,1,0,0, +3,1,0,1,0,2,2,2,2,3,2,1,1,1,2,3,0,0,1,0,2,1,1,0,1,1,1,1,2,1,1,1, +1,2,2,1,2,1,2,2,1,1,0,1,2,1,2,2,1,1,1,0,0,1,1,1,2,1,0,1,0,0,0,0, +2,1,0,1,0,3,1,2,2,2,2,1,2,2,1,1,1,0,2,1,2,2,1,1,2,1,1,0,2,1,1,1, +1,2,2,2,2,2,2,2,1,2,0,1,1,0,2,1,1,1,1,1,0,0,1,1,1,1,0,1,0,0,0,0, +2,1,1,1,1,2,2,2,2,1,2,2,2,1,2,2,1,1,2,1,2,3,2,2,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,3,2,0,1,2,0,1,2,1,1,0,1,0,1,2,1,2,0,0,0,1,1,0,0,0,1,0,0,2, +1,1,0,0,1,1,0,1,1,1,1,0,2,0,1,1,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0, +2,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1, +1,2,2,2,2,1,1,2,1,2,1,1,1,0,2,1,2,1,1,1,0,2,1,1,1,1,0,1,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, +1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,3,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,1,0,1,2, +1,1,1,1,1,1,0,0,2,2,2,2,2,0,1,1,0,1,1,1,1,1,0,0,1,0,0,0,1,1,0,1, +2,3,1,2,1,0,1,1,0,2,2,2,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,2, +1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0, +2,2,2,2,2,0,0,2,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,2,2, +1,1,1,1,1,0,0,1,2,1,1,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,2,0,1,1,0,0,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,1,1, +0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,3,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,2, +1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,1,2,2,2,1,2,1,2,2,1,1,2,1,1,1,0,1,1,1,1,2,0,1,0,1,1,1,1,0,1,1, +1,1,2,1,1,1,1,1,1,0,0,1,2,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0, +1,0,0,1,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,1,0,0,1,0,2,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,2,0,0,1, +0,2,0,1,0,0,1,1,2,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,1,1,0,2,1,0,1,1,1,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1, +0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,2,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, +0,1,0,1,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,0,1,2,1,1,1,1,1,1,2,2,1,0,0,1,0,1,0,0,0,0,1,1,1,1,0,0,0, +1,1,2,1,1,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,1,2,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +0,1,1,0,1,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, +1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,2,0,0,2,0,1,0,0,1,0,0,1, +1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, +1,1,1,1,1,1,1,2,0,0,0,0,0,0,2,1,0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +) + +Latin5BulgarianModel = { + 'char_to_order_map': Latin5_BulgarianCharToOrderMap, + 'precedence_matrix': BulgarianLangModel, + 'typical_positive_ratio': 0.969392, + 'keep_english_letter': False, + 'charset_name': "ISO-8859-5", + 'language': 'Bulgairan', +} + +Win1251BulgarianModel = { + 'char_to_order_map': win1251BulgarianCharToOrderMap, + 'precedence_matrix': BulgarianLangModel, + 'typical_positive_ratio': 0.969392, + 'keep_english_letter': False, + 'charset_name': "windows-1251", + 'language': 'Bulgarian', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langcyrillicmodel.py b/venv/lib/python2.7/site-packages/chardet/langcyrillicmodel.py new file mode 100644 index 00000000..e5f9a1fd --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langcyrillicmodel.py @@ -0,0 +1,333 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# KOI8-R language model +# Character Mapping Table: +KOI8R_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, # 80 +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, # 90 +223,224,225, 68,226,227,228,229,230,231,232,233,234,235,236,237, # a0 +238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253, # b0 + 27, 3, 21, 28, 13, 2, 39, 19, 26, 4, 23, 11, 8, 12, 5, 1, # c0 + 15, 16, 9, 7, 6, 14, 24, 10, 17, 18, 20, 25, 30, 29, 22, 54, # d0 + 59, 37, 44, 58, 41, 48, 53, 46, 55, 42, 60, 36, 49, 38, 31, 34, # e0 + 35, 43, 45, 32, 40, 52, 56, 33, 61, 62, 51, 57, 47, 63, 50, 70, # f0 +) + +win1251_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, +239,240,241,242,243,244,245,246, 68,247,248,249,250,251,252,253, + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +) + +latin5_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, +) + +macCyrillic_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, +239,240,241,242,243,244,245,246,247,248,249,250,251,252, 68, 16, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27,255, +) + +IBM855_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194, 68,195,196,197,198,199,200,201,202,203,204,205, +206,207,208,209,210,211,212,213,214,215,216,217, 27, 59, 54, 70, + 3, 37, 21, 44, 28, 58, 13, 41, 2, 48, 39, 53, 19, 46,218,219, +220,221,222,223,224, 26, 55, 4, 42,225,226,227,228, 23, 60,229, +230,231,232,233,234,235, 11, 36,236,237,238,239,240,241,242,243, + 8, 49, 12, 38, 5, 31, 1, 34, 15,244,245,246,247, 35, 16,248, + 43, 9, 45, 7, 32, 6, 40, 14, 52, 24, 56, 10, 33, 17, 61,249, +250, 18, 62, 20, 51, 25, 57, 30, 47, 29, 63, 22, 50,251,252,255, +) + +IBM866_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 97.6601% +# first 1024 sequences: 2.3389% +# rest sequences: 0.1237% +# negative sequences: 0.0009% +RussianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,3,3,3,3,1,3,3,3,2,3,2,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,2,2,2,2,2,0,0,2, +3,3,3,2,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,2,3,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,2,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,2,3,3,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, +0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, +0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,2,2,2,3,1,3,3,1,3,3,3,3,2,2,3,0,2,2,2,3,3,2,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,3,3,2,2,3,2,3,3,3,2,1,2,2,0,1,2,2,2,2,2,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,3,0,2,2,3,3,2,1,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,1,2,3,2,2,3,2,3,3,3,3,2,2,3,0,3,2,2,3,1,1,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,3,3,3,3,2,2,2,0,3,3,3,2,2,2,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,2,3,2,2,0,1,3,2,1,2,2,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,2,1,1,3,0,1,1,1,1,2,1,1,0,2,2,2,1,2,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,2,2,2,2,1,3,2,3,2,3,2,1,2,2,0,1,1,2,1,2,1,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,2,3,3,3,2,2,2,2,0,2,2,2,2,3,1,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,2,3,2,2,3,3,3,3,3,3,3,3,3,1,3,2,0,0,3,3,3,3,2,3,3,3,3,2,3,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,3,2,2,3,3,0,2,1,0,3,2,3,2,3,0,0,1,2,0,0,1,0,1,2,1,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,3,0,2,3,3,3,3,2,3,3,3,3,1,2,2,0,0,2,3,2,2,2,3,2,3,2,2,3,0,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,0,2,3,2,3,0,1,2,3,3,2,0,2,3,0,0,2,3,2,2,0,1,3,1,3,2,2,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,3,0,2,3,3,3,3,3,3,3,3,2,1,3,2,0,0,2,2,3,3,3,2,3,3,0,2,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,2,2,2,3,3,0,0,1,1,1,1,1,2,0,0,1,1,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,0,3,2,3,3,2,3,2,0,2,1,0,1,1,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,2,2,2,2,3,1,3,2,3,1,1,2,1,0,2,2,2,2,1,3,1,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +2,2,3,3,3,3,3,1,2,2,1,3,1,0,3,0,0,3,0,0,0,1,1,0,1,2,1,0,0,0,0,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,2,1,1,3,3,3,2,2,1,2,2,3,1,1,2,0,0,2,2,1,3,0,0,2,1,1,2,1,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,3,3,3,1,2,2,2,1,2,1,3,3,1,1,2,1,2,1,2,2,0,2,0,0,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,3,2,1,3,2,2,3,2,0,3,2,0,3,0,1,0,1,1,0,0,1,1,1,1,0,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,3,3,3,2,2,2,3,3,1,2,1,2,1,0,1,0,1,1,0,1,0,0,2,1,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,1,1,2,1,2,3,3,2,2,1,2,2,3,0,2,1,0,0,2,2,3,2,1,2,2,2,2,2,3,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,1,1,0,1,1,2,2,1,1,3,0,0,1,3,1,1,1,0,0,0,1,0,1,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,3,3,3,2,0,0,0,2,1,0,1,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,0,2,3,2,2,2,1,2,2,2,1,2,1,0,0,1,1,1,0,2,0,1,1,1,0,0,1,1, +1,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,0,0,0,0,1,0,0,0,0,3,0,1,2,1,0,0,0,0,0,0,0,1,1,0,0,1,1, +1,0,1,0,1,2,0,0,1,1,2,1,0,1,1,1,1,0,1,1,1,1,0,1,0,0,1,0,0,1,1,0, +2,2,3,2,2,2,3,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,2,1, +1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,0, +3,3,3,2,2,2,2,3,2,2,1,1,2,2,2,2,1,1,3,1,2,1,2,0,0,1,1,0,1,0,2,1, +1,1,1,1,1,2,1,0,1,1,1,1,0,1,0,0,1,1,0,0,1,0,1,0,0,1,0,0,0,1,1,0, +2,0,0,1,0,3,2,2,2,2,1,2,1,2,1,2,0,0,0,2,1,2,2,1,1,2,2,0,1,1,0,2, +1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,0,1,2,1,1,1,1,0,1,1,1,0,0,1,0,0,1, +1,3,2,2,2,1,1,1,2,3,0,0,0,0,2,0,2,2,1,0,0,0,0,0,0,1,0,0,0,0,1,1, +1,0,1,1,0,1,0,1,1,0,1,1,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, +2,3,2,3,2,1,2,2,2,2,1,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,2,1, +1,1,2,1,0,2,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0, +3,0,0,1,0,2,2,2,3,2,2,2,2,2,2,2,0,0,0,2,1,2,1,1,1,2,2,0,0,0,1,2, +1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1, +2,3,2,3,3,2,0,1,1,1,0,0,1,0,2,0,1,1,3,1,0,0,0,0,0,0,0,1,0,0,2,1, +1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0, +2,3,3,3,3,1,2,2,2,2,0,1,1,0,2,1,1,1,2,1,0,1,1,0,0,1,0,1,0,0,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,2,0,0,1,1,2,2,1,0,0,2,0,1,1,3,0,0,1,0,0,0,0,0,1,0,1,2,1, +1,1,2,0,1,1,1,0,1,0,1,1,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0, +1,3,2,3,2,1,0,0,2,2,2,0,1,0,2,0,1,1,1,0,1,0,0,0,3,0,1,1,0,0,2,1, +1,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,2,1,1,0,1,0,0,0,1,0,1,0,0,1,1,0, +3,1,2,1,1,2,2,2,2,2,2,1,2,2,1,1,0,0,0,2,2,2,0,0,0,1,2,1,0,1,0,1, +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,0,1,0,1,1,0,1,1,1,0,0,1, +3,0,0,0,0,2,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,0,1,1,0,0,1,0,1, +1,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1, +1,3,3,2,2,0,0,0,2,2,0,0,0,1,2,0,1,1,2,0,0,0,0,0,0,0,0,1,0,0,2,1, +0,1,1,0,0,1,1,0,0,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +2,3,2,3,2,0,0,0,0,1,1,0,0,0,2,0,2,0,2,0,0,0,0,0,1,0,0,1,0,0,1,1, +1,1,2,0,1,2,1,0,1,1,2,1,1,1,1,1,2,1,1,0,1,0,0,1,1,1,1,1,0,1,1,0, +1,3,2,2,2,1,0,0,2,2,1,0,1,2,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1, +0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,0,2,3,1,2,2,2,2,2,2,1,1,0,0,0,1,0,1,0,2,1,1,1,0,0,0,0,1, +1,1,0,1,1,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +2,0,2,0,0,1,0,3,2,1,2,1,2,2,0,1,0,0,0,2,1,0,0,2,1,1,1,1,0,2,0,2, +2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,0,0,0,1,1,1,1,0,1,0,0,1, +1,2,2,2,2,1,0,0,1,0,0,0,0,0,2,0,1,1,1,1,0,0,0,0,1,0,1,2,0,0,2,0, +1,0,1,1,1,2,1,0,1,0,1,1,0,0,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,1,0, +2,1,2,2,2,0,3,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0, +1,2,2,3,2,2,0,0,1,1,2,0,1,2,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1, +0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, +2,2,1,1,2,1,2,2,2,2,2,1,2,2,0,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,2,1, +1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,0,1, +1,2,2,2,2,0,1,0,2,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0, +0,0,1,0,0,1,0,0,0,0,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,0,2,2,2,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1, +0,1,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,0,0,1,0,0,1,1,2,0,0,0,0,1,0,1,0,0,1,0,0,2,0,0,0,1, +0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,1,1,2,0,2,1,1,1,1,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1, +0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,0,2,1,2,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0, +0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +1,0,0,0,0,2,0,1,2,1,0,1,1,1,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,1, +0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1, +2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,1,1,0,1,0,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,1,0,1,1,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0, +0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +) + +Koi8rModel = { + 'char_to_order_map': KOI8R_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "KOI8-R", + 'language': 'Russian', +} + +Win1251CyrillicModel = { + 'char_to_order_map': win1251_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "windows-1251", + 'language': 'Russian', +} + +Latin5CyrillicModel = { + 'char_to_order_map': latin5_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "ISO-8859-5", + 'language': 'Russian', +} + +MacCyrillicModel = { + 'char_to_order_map': macCyrillic_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "MacCyrillic", + 'language': 'Russian', +} + +Ibm866Model = { + 'char_to_order_map': IBM866_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "IBM866", + 'language': 'Russian', +} + +Ibm855Model = { + 'char_to_order_map': IBM855_char_to_order_map, + 'precedence_matrix': RussianLangModel, + 'typical_positive_ratio': 0.976601, + 'keep_english_letter': False, + 'charset_name': "IBM855", + 'language': 'Russian', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langgreekmodel.py b/venv/lib/python2.7/site-packages/chardet/langgreekmodel.py new file mode 100644 index 00000000..53322216 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langgreekmodel.py @@ -0,0 +1,225 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +Latin7_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 + 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 +253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 + 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 +253,233, 90,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 +253,253,253,253,247,248, 61, 36, 46, 71, 73,253, 54,253,108,123, # b0 +110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 + 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 +124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 + 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 +) + +win1253_char_to_order_map = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 + 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 +253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 + 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 +253,233, 61,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 +253,253,253,253,247,253,253, 36, 46, 71, 73,253, 54,253,108,123, # b0 +110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 + 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 +124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 + 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 98.2851% +# first 1024 sequences:1.7001% +# rest sequences: 0.0359% +# negative sequences: 0.0148% +GreekLangModel = ( +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,2,2,3,3,3,3,3,3,3,3,1,3,3,3,0,2,2,3,3,0,3,0,3,2,0,3,3,3,0, +3,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,0,3,3,0,3,2,3,3,0,3,2,3,3,3,0,0,3,0,3,0,3,3,2,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,2,3,2,2,3,3,3,3,3,3,3,3,0,3,3,3,3,0,2,3,3,0,3,3,3,3,2,3,3,3,0, +2,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,2,1,3,3,3,3,2,3,3,2,3,3,2,0, +0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,2,3,3,0, +2,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,3,0,0,0,0,3,3,0,3,1,3,3,3,0,3,3,0,3,3,3,3,0,0,0,0, +2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,0,3,0,3,3,3,3,3,0,3,2,2,2,3,0,2,3,3,3,3,3,2,3,3,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,3,2,2,2,3,3,3,3,0,3,1,3,3,3,3,2,3,3,3,3,3,3,3,2,2,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,3,0,0,0,3,3,2,3,3,3,3,3,0,0,3,2,3,0,2,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,3,0,0,3,3,0,2,3,0,3,0,3,3,3,0,0,3,0,3,0,2,2,3,3,0,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,3,2,3,3,3,3,0,3,3,3,3,3,0,3,3,2,3,2,3,3,2,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,2,3,2,3,3,3,3,3,3,0,2,3,2,3,2,2,2,3,2,3,3,2,3,0,2,2,2,3,0, +2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,0,3,3,3,2,3,3,0,0,3,0,3,0,0,0,3,2,0,3,0,3,0,0,2,0,2,0, +0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,0,0,0,3,3,0,3,3,3,0,0,1,2,3,0, +3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,0,3,2,2,3,3,0,3,3,3,3,3,2,1,3,0,3,2,3,3,2,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,3,0,2,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,3,0,3,2,3,0,0,3,3,3,0, +3,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,2,0,3,2,3,0,0,3,2,3,0, +2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,1,2,2,3,3,3,3,3,3,0,2,3,0,3,0,0,0,3,3,0,3,0,2,0,0,2,3,1,0, +2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,3,0,3,0,3,3,2,3,0,3,3,3,3,3,3,0,3,3,3,0,2,3,0,0,3,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,0,0,3,0,0,0,3,3,0,3,0,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,0,3,3,3,3,3,3,0,0,3,0,2,0,0,0,3,3,0,3,0,3,0,0,2,0,2,0, +0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,3,0,3,0,2,0,3,2,0,3,2,3,2,3,0,0,3,2,3,2,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,2,3,3,3,3,3,0,0,0,3,0,2,1,0,0,3,2,2,2,0,3,0,0,2,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,2,0,3,0,3,0,3,3,0,2,1,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,3,0,3,3,3,3,3,3,0,2,3,0,3,0,0,0,2,1,0,2,2,3,0,0,2,2,2,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,2,3,3,3,2,3,0,0,1,3,0,2,0,0,0,0,3,0,1,0,2,0,0,1,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,1,0,3,0,0,0,3,2,0,3,2,3,3,3,0,0,3,0,3,2,2,2,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,0,0,3,0,0,0,0,2,0,2,3,3,2,2,2,2,3,0,2,0,2,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,2,0,0,0,0,0,0,2,3,0,2,0,2,3,2,0,0,3,0,3,0,3,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,3,2,3,3,2,2,3,0,2,0,3,0,0,0,2,0,0,0,0,1,2,0,2,0,2,0, +0,2,0,2,0,2,2,0,0,1,0,2,2,2,0,2,2,2,0,2,2,2,0,0,2,0,0,1,0,0,0,0, +0,2,0,3,3,2,0,0,0,0,0,0,1,3,0,2,0,2,2,2,0,0,2,0,3,0,0,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,2,3,2,0,2,2,0,2,0,2,2,0,2,0,2,2,2,0,0,0,0,0,0,2,3,0,0,0,2, +0,1,2,0,0,0,0,2,2,0,0,0,2,1,0,2,2,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0, +0,0,2,1,0,2,3,2,2,3,2,3,2,0,0,3,3,3,0,0,3,2,0,0,0,1,1,0,2,0,2,2, +0,2,0,2,0,2,2,0,0,2,0,2,2,2,0,2,2,2,2,0,0,2,0,0,0,2,0,1,0,0,0,0, +0,3,0,3,3,2,2,0,3,0,0,0,2,2,0,2,2,2,1,2,0,0,1,2,2,0,0,3,0,0,0,2, +0,1,2,0,0,0,1,2,0,0,0,0,0,0,0,2,2,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,2,2,0,0,0,2,0,2,3,3,0,2,0,0,0,0,0,0,2,2,2,0,2,2,0,2,0,2, +0,2,2,0,0,2,2,2,2,1,0,0,2,2,0,2,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,2,0,3,2,3,0,0,0,3,0,0,2,2,0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0,2, +0,0,2,2,0,0,2,2,2,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,3,2,0,2,2,2,2,2,0,0,0,2,0,0,0,0,2,0,1,0,0,2,0,1,0,0,0, +0,2,2,2,0,2,2,0,1,2,0,2,2,2,0,2,2,2,2,1,2,2,0,0,2,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,2,0,2,0,2,2,0,0,0,0,1,2,1,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,3,2,3,0,0,2,0,0,0,2,2,0,2,0,0,0,1,0,0,2,0,2,0,2,2,0,0,0,0, +0,0,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,2,2,3,2,2,0,0,0,0,0,0,1,3,0,2,0,2,2,0,0,0,1,0,2,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,0,2,0,3,2,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,2,0,0,0,0,1,1,0,0,2,1,2,0,2,2,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0, +0,3,0,2,2,2,0,0,2,0,0,0,2,0,0,0,2,3,0,2,0,0,0,0,0,0,2,2,0,0,0,2, +0,1,2,0,0,0,1,2,2,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,1,2,0,2,2,0,2,0,0,2,0,0,0,0,1,2,1,0,2,1,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,0,3,1,2,2,0,2,0,0,0,0,2,0,0,0,2,0,0,3,0,0,0,0,2,2,2,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,1,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2, +0,2,2,0,0,2,2,2,2,2,0,1,2,0,0,0,2,2,0,1,0,2,0,0,2,2,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2, +0,1,2,0,0,0,0,2,2,1,0,1,0,1,0,2,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,2, +0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0, +0,2,2,2,2,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1, +0,0,2,0,0,0,0,1,2,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,2,2,2,0,0,0,2,0,0,0,0,0,0,0,0,2, +0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,3,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2, +0,0,2,0,0,0,0,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,0,2,2,1,0,0,0,0,0,0,2,0,0,2,0,2,2,2,0,0,0,0,0,0,2,0,0,0,0,2, +0,0,2,0,0,2,0,2,2,0,0,0,0,2,0,2,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0, +0,0,3,0,0,0,2,2,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0, +0,2,2,2,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1, +0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,2,0,0,0,2,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0, +0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,2,0,0,0, +0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +) + +Latin7GreekModel = { + 'char_to_order_map': Latin7_char_to_order_map, + 'precedence_matrix': GreekLangModel, + 'typical_positive_ratio': 0.982851, + 'keep_english_letter': False, + 'charset_name': "ISO-8859-7", + 'language': 'Greek', +} + +Win1253GreekModel = { + 'char_to_order_map': win1253_char_to_order_map, + 'precedence_matrix': GreekLangModel, + 'typical_positive_ratio': 0.982851, + 'keep_english_letter': False, + 'charset_name': "windows-1253", + 'language': 'Greek', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langhebrewmodel.py b/venv/lib/python2.7/site-packages/chardet/langhebrewmodel.py new file mode 100644 index 00000000..58f4c875 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langhebrewmodel.py @@ -0,0 +1,200 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Simon Montagu +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Shoshannah Forbes - original C code (?) +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Windows-1255 language model +# Character Mapping Table: +WIN1255_CHAR_TO_ORDER_MAP = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 69, 91, 79, 80, 92, 89, 97, 90, 68,111,112, 82, 73, 95, 85, # 40 + 78,121, 86, 71, 67,102,107, 84,114,103,115,253,253,253,253,253, # 50 +253, 50, 74, 60, 61, 42, 76, 70, 64, 53,105, 93, 56, 65, 54, 49, # 60 + 66,110, 51, 43, 44, 63, 81, 77, 98, 75,108,253,253,253,253,253, # 70 +124,202,203,204,205, 40, 58,206,207,208,209,210,211,212,213,214, +215, 83, 52, 47, 46, 72, 32, 94,216,113,217,109,218,219,220,221, + 34,116,222,118,100,223,224,117,119,104,125,225,226, 87, 99,227, +106,122,123,228, 55,229,230,101,231,232,120,233, 48, 39, 57,234, + 30, 59, 41, 88, 33, 37, 36, 31, 29, 35,235, 62, 28,236,126,237, +238, 38, 45,239,240,241,242,243,127,244,245,246,247,248,249,250, + 9, 8, 20, 16, 3, 2, 24, 14, 22, 1, 25, 15, 4, 11, 6, 23, + 12, 19, 13, 26, 18, 27, 21, 17, 7, 10, 5,251,252,128, 96,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 98.4004% +# first 1024 sequences: 1.5981% +# rest sequences: 0.087% +# negative sequences: 0.0015% +HEBREW_LANG_MODEL = ( +0,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,3,2,1,2,0,1,0,0, +3,0,3,1,0,0,1,3,2,0,1,1,2,0,2,2,2,1,1,1,1,2,1,1,1,2,0,0,2,2,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2, +1,2,1,2,1,2,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2, +1,2,1,3,1,1,0,0,2,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,1,2,2,1,3, +1,2,1,1,2,2,0,0,2,2,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,2,2,2,3,2, +1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,3,2,2,3,2,2,2,1,2,2,2,2, +1,2,1,1,2,2,0,1,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,0,2,2,2,2,2, +0,2,0,2,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,0,2,2,2, +0,2,1,2,2,2,0,0,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,2,1,2,3,2,2,2, +1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,2,0,2, +0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,2,2,3,2,1,2,1,1,1, +0,1,1,1,1,1,3,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,0,1,0,0,1,0,0,0,0, +0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,2,1,2,3,3,2,3,3,3,3,2,3,2,1,2,0,2,1,2, +0,2,0,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,1,2,2,3,3,2,3,2,3,2,2,3,1,2,2,0,2,2,2, +0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,2,2,3,3,3,3,1,3,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,2,3,2,2,2,1,2,2,0,2,2,2,2, +0,2,0,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,1,3,2,3,3,2,3,3,2,2,1,2,2,2,2,2,2, +0,2,1,2,1,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,2,3,3,2,3,3,3,3,2,3,2,3,3,3,3,3,2,2,2,2,2,2,2,1, +0,2,0,1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,1,2,3,3,3,3,3,3,3,2,3,2,3,2,1,2,3,0,2,1,2,2, +0,2,1,1,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,3,2,1,3,1,2,2,2,1,2,3,3,1,2,1,2,2,2,2, +0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,0,2,3,3,3,1,3,3,3,1,2,2,2,2,1,1,2,2,2,2,2,2, +0,2,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,2,2,3,3,3,2,1,2,3,2,3,2,2,2,2,1,2,1,1,1,2,2, +0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0, +1,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,3,2,3,1,2,2,2,2,3,2,3,1,1,2,2,1,2,2,1,1,0,2,2,2,2, +0,1,0,1,2,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,0,0,1,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,0,1,0,1,1,0,1,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +3,2,2,1,2,2,2,2,2,2,2,1,2,2,1,2,2,1,1,1,1,1,1,1,1,2,1,1,0,3,3,3, +0,3,0,2,2,2,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,1,1,1,2,0,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,0,2,2,0,0,0,0,0,0, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,0,2,1,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +0,3,1,1,2,2,2,2,2,1,2,2,2,1,1,2,2,2,2,2,2,2,1,2,2,1,0,1,1,1,1,0, +0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,1,1,1,1,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0, +2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,1,2,1,1,1,1,0,0,0,0, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,1,2,1,1,1,2,1,2,1,2,0,1,0,1, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,1,2,2,2,1,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,1,2,1,1,0,1,0,1, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,1,1,1,1,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,1,1,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,1,1,0,0, +0,1,1,1,2,1,2,2,2,0,2,0,2,0,1,1,2,1,1,1,1,2,1,0,1,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,1,0,0,0,0,0,1,0,1,2,2,0,1,0,0,1,1,2,2,1,2,0,2,0,0,0,1,2,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,2,1,2,0,2,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,1,2,2,0,0,1,0,0,0,1,0,0,1, +1,1,2,1,0,1,1,1,0,1,0,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,2,1, +0,2,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,1,0,0,0,1,1,0,1, +2,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,0,0,1,1,2,1,1,2,0,1,0,0,0,1,1,0,1, +1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,0,0,2,1,1,2,0,2,0,0,0,1,1,0,1, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,2,2,1,2,1,1,0,1,0,0,0,1,1,0,1, +2,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,2,1,1,1,0,2,1,1,0,0,0,2,1,0,1, +1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,0,2,1,1,0,1,0,0,0,1,1,0,1, +2,2,1,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,0,1,2,1,0,2,0,0,0,1,1,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0, +0,1,0,0,2,0,2,1,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,1,0,1,0,0,1,0,0,0,1,0,0,1, +1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,2,1,1,1,1,1,0,1,0,0,0,0,1,0,1, +0,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,0,0, +) + +Win1255HebrewModel = { + 'char_to_order_map': WIN1255_CHAR_TO_ORDER_MAP, + 'precedence_matrix': HEBREW_LANG_MODEL, + 'typical_positive_ratio': 0.984004, + 'keep_english_letter': False, + 'charset_name': "windows-1255", + 'language': 'Hebrew', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langhungarianmodel.py b/venv/lib/python2.7/site-packages/chardet/langhungarianmodel.py new file mode 100644 index 00000000..bb7c095e --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langhungarianmodel.py @@ -0,0 +1,225 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +Latin2_HungarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, + 46, 71, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, +253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, + 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, +159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174, +175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190, +191,192,193,194,195,196,197, 75,198,199,200,201,202,203,204,205, + 79,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, +221, 51, 81,222, 78,223,224,225,226, 44,227,228,229, 61,230,231, +232,233,234, 58,235, 66, 59,236,237,238, 60, 69, 63,239,240,241, + 82, 14, 74,242, 70, 80,243, 72,244, 15, 83, 77, 84, 30, 76, 85, +245,246,247, 25, 73, 42, 24,248,249,250, 31, 56, 29,251,252,253, +) + +win1250HungarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, + 46, 72, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, +253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, + 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, +161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176, +177,178,179,180, 78,181, 69,182,183,184,185,186,187,188,189,190, +191,192,193,194,195,196,197, 76,198,199,200,201,202,203,204,205, + 81,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, +221, 51, 83,222, 80,223,224,225,226, 44,227,228,229, 61,230,231, +232,233,234, 58,235, 66, 59,236,237,238, 60, 70, 63,239,240,241, + 84, 14, 75,242, 71, 82,243, 73,244, 15, 85, 79, 86, 30, 77, 87, +245,246,247, 25, 74, 42, 24,248,249,250, 31, 56, 29,251,252,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 94.7368% +# first 1024 sequences:5.2623% +# rest sequences: 0.8894% +# negative sequences: 0.0009% +HungarianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,2,3,3,1,1,2,2,2,2,2,1,2, +3,2,2,3,3,3,3,3,2,3,3,3,3,3,3,1,2,3,3,3,3,2,3,3,1,1,3,3,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0, +3,2,1,3,3,3,3,3,2,3,3,3,3,3,1,1,2,3,3,3,3,3,3,3,1,1,3,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,1,1,2,3,3,3,1,3,3,3,3,3,1,3,3,2,2,0,3,2,3, +0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,3,3,2,3,3,2,2,3,2,3,2,0,3,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,3,3,2,3,3,3,1,2,3,2,2,3,1,2,3,3,2,2,0,3,3,3, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,2,3,3,3,3,2,3,3,3,3,0,2,3,2, +0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,1,1,1,3,3,2,1,3,2,2,3,2,1,3,2,2,1,0,3,3,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,2,2,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,3,2,2,3,1,1,3,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,1,3,3,3,3,3,2,2,1,3,3,3,0,1,1,2, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,2,0,3,2,3, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,1,3,2,2,2,3,1,1,3,3,1,1,0,3,3,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,2,3,3,3,3,3,1,2,3,2,2,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,2,2,3,1,3,3,2,2,1,3,3,3,1,1,3,1,2,3,2,3,2,2,2,1,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,2,2,3,2,1,0,3,2,0,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,1,0,3,3,3,3,0,2,3,0,0,2,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,2,2,2,2,3,3,0,1,2,3,2,3,2,2,3,2,1,2,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,3,3,3,3,3,1,2,3,3,3,2,1,2,3,3,2,2,2,3,2,3,3,1,3,3,1,1,0,2,3,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,1,2,2,2,2,3,3,3,1,1,1,3,3,1,1,3,1,1,3,2,1,2,3,1,1,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,1,2,1,1,3,3,1,1,1,1,3,3,1,1,2,2,1,2,1,1,2,2,1,1,0,2,2,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,1,1,2,1,1,3,3,1,0,1,1,3,3,2,0,1,1,2,3,1,0,2,2,1,0,0,1,3,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,2,1,3,3,3,3,3,1,2,3,2,3,3,2,1,1,3,2,3,2,1,2,2,0,1,2,1,0,0,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,2,2,2,2,3,1,2,2,1,1,3,3,0,3,2,1,2,3,2,1,3,3,1,1,0,2,1,3, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,2,2,3,2,3,3,3,2,1,1,3,3,1,1,1,2,2,3,2,3,2,2,2,1,0,2,2,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +1,0,0,3,3,3,3,3,0,0,3,3,2,3,0,0,0,2,3,3,1,0,1,2,0,0,1,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,2,3,3,3,3,3,1,2,3,3,2,2,1,1,0,3,3,2,2,1,2,2,1,0,2,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,2,1,3,1,2,3,3,2,2,1,1,2,2,1,1,1,1,3,2,1,1,1,1,2,1,0,1,2,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +2,3,3,1,1,1,1,1,3,3,3,0,1,1,3,3,1,1,1,1,1,2,2,0,3,1,1,2,0,2,1,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,1,0,1,2,1,2,2,0,1,2,3,1,2,0,0,0,2,1,1,1,1,1,2,0,0,1,1,0,0,0,0, +1,2,1,2,2,2,1,2,1,2,0,2,0,2,2,1,1,2,1,1,2,1,1,1,0,1,0,0,0,1,1,0, +1,1,1,2,3,2,3,3,0,1,2,2,3,1,0,1,0,2,1,2,2,0,1,1,0,0,1,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,3,3,2,2,1,0,0,3,2,3,2,0,0,0,1,1,3,0,0,1,1,0,0,2,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,2,2,3,3,1,0,1,3,2,3,1,1,1,0,1,1,1,1,1,3,1,0,0,2,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,1,2,2,2,1,0,1,2,3,3,2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0, +1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,0,0,1,1, +3,2,2,1,0,0,1,1,2,2,0,3,0,1,2,1,1,0,0,1,1,1,0,1,1,1,1,0,2,1,1,1, +2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,3,1,1,1,1,1,1,1,1,1,0,1, +2,3,3,0,1,0,0,0,3,3,1,0,0,1,2,2,1,0,0,0,0,2,0,0,1,1,1,0,2,1,1,1, +2,1,1,1,1,1,1,2,1,1,0,1,1,0,1,1,1,0,1,2,1,1,0,1,1,1,1,1,1,1,0,1, +2,3,3,0,1,0,0,0,2,2,0,0,0,0,1,2,2,0,0,0,0,1,0,0,1,1,0,0,2,0,1,0, +2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, +3,2,2,0,1,0,1,0,2,3,2,0,0,1,2,2,1,0,0,1,1,1,0,0,2,1,0,1,2,2,1,1, +2,1,1,1,1,1,1,2,1,1,1,1,1,1,0,2,1,0,1,1,0,1,1,1,0,1,1,2,1,1,0,1, +2,2,2,0,0,1,0,0,2,2,1,1,0,0,2,1,1,0,0,0,1,2,0,0,2,1,0,0,2,1,1,1, +2,1,1,1,1,2,1,2,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1, +1,2,3,0,0,0,1,0,3,2,1,0,0,1,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,2,1, +1,1,0,0,0,1,0,1,1,1,1,1,2,0,0,1,0,0,0,2,0,0,1,1,1,1,1,1,1,1,0,1, +3,0,0,2,1,2,2,1,0,0,2,1,2,2,0,0,0,2,1,1,1,0,1,1,0,0,1,1,2,0,0,0, +1,2,1,2,2,1,1,2,1,2,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,0,0,1, +1,3,2,0,0,0,1,0,2,2,2,0,0,0,2,2,1,0,0,0,0,3,1,1,1,1,0,0,2,1,1,1, +2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,2,1,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1, +2,3,2,0,0,0,1,0,2,2,0,0,0,0,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,1,0, +2,1,1,1,1,2,1,2,1,2,0,1,1,1,0,2,1,1,1,2,1,1,1,1,0,1,1,1,1,1,0,1, +3,1,1,2,2,2,3,2,1,1,2,2,1,1,0,1,0,2,2,1,1,1,1,1,0,0,1,1,0,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,0,0,0,0,0,2,2,0,0,0,0,2,2,1,0,0,0,1,1,0,0,1,2,0,0,2,1,1,1, +2,2,1,1,1,2,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,1,2,1,1,1,0,1, +1,0,0,1,2,3,2,1,0,0,2,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,1,0,0,0,0,0, +1,2,1,2,1,2,1,1,1,2,0,2,1,1,1,0,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0, +2,3,2,0,0,0,0,0,1,1,2,1,0,0,1,1,1,0,0,0,0,2,0,0,1,1,0,0,2,1,1,1, +2,1,1,1,1,1,1,2,1,0,1,1,1,1,0,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1, +1,2,2,0,1,1,1,0,2,2,2,0,0,0,3,2,1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0, +1,1,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,0,1,0,1, +2,1,0,2,1,1,2,2,1,1,2,1,1,1,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,0,0, +1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,1,0, +1,2,3,0,0,0,1,0,2,2,0,0,0,0,2,2,0,0,0,0,0,1,0,0,1,0,0,0,2,0,1,0, +2,1,1,1,1,1,0,2,0,0,0,1,2,1,1,1,1,0,1,2,0,1,0,1,0,1,1,1,0,1,0,1, +2,2,2,0,0,0,1,0,2,1,2,0,0,0,1,1,2,0,0,0,0,1,0,0,1,1,0,0,2,1,0,1, +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, +1,2,2,0,0,0,1,0,2,2,2,0,0,0,1,1,0,0,0,0,0,1,1,0,2,0,0,1,1,1,0,1, +1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,0,0,1,1,0,1,0,1,1,1,1,1,0,0,0,1, +1,0,0,1,0,1,2,1,0,0,1,1,1,2,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0, +0,2,1,2,1,1,1,1,1,2,0,2,0,1,1,0,1,2,1,0,1,1,1,0,0,0,0,0,0,1,0,0, +2,1,1,0,1,2,0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,1, +2,2,1,1,1,1,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,0,1,0,1,1,1,1,1,0,1, +1,2,2,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0,0,0,0,2,0,0,2,2,0,0,2,0,0,1, +2,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,0,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1, +1,1,2,0,0,3,1,0,2,1,1,1,0,0,1,1,1,0,0,0,1,1,0,0,0,1,0,0,1,0,1,0, +1,2,1,0,1,1,1,2,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,0, +2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,2,0,0,0, +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,1,0,1, +2,1,1,1,2,1,1,1,0,1,1,2,1,0,0,0,0,1,1,1,1,0,1,0,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,0,1,1,1,1,1,0,0,1,1,2,1,0,0,0,1,1,0,0,0,1,1,0,0,1,0,1,0,0,0, +1,2,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0, +2,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,2,0,0,1,0,0,1,0,1,0,0,0, +0,1,1,1,1,1,1,1,1,2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,1,0,0,2,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0, +0,1,1,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +0,1,1,1,1,1,0,0,1,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +0,0,0,1,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,1,1,0,1,0,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,1,0,0,1,0,1,0,1,1,1,0,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,1,1,1,1,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0, +) + +Latin2HungarianModel = { + 'char_to_order_map': Latin2_HungarianCharToOrderMap, + 'precedence_matrix': HungarianLangModel, + 'typical_positive_ratio': 0.947368, + 'keep_english_letter': True, + 'charset_name': "ISO-8859-2", + 'language': 'Hungarian', +} + +Win1250HungarianModel = { + 'char_to_order_map': win1250HungarianCharToOrderMap, + 'precedence_matrix': HungarianLangModel, + 'typical_positive_ratio': 0.947368, + 'keep_english_letter': True, + 'charset_name': "windows-1250", + 'language': 'Hungarian', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langthaimodel.py b/venv/lib/python2.7/site-packages/chardet/langthaimodel.py new file mode 100644 index 00000000..15f94c2d --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langthaimodel.py @@ -0,0 +1,199 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# The following result for thai was collected from a limited sample (1M). + +# Character Mapping Table: +TIS620CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,182,106,107,100,183,184,185,101, 94,186,187,108,109,110,111, # 40 +188,189,190, 89, 95,112,113,191,192,193,194,253,253,253,253,253, # 50 +253, 64, 72, 73,114, 74,115,116,102, 81,201,117, 90,103, 78, 82, # 60 + 96,202, 91, 79, 84,104,105, 97, 98, 92,203,253,253,253,253,253, # 70 +209,210,211,212,213, 88,214,215,216,217,218,219,220,118,221,222, +223,224, 99, 85, 83,225,226,227,228,229,230,231,232,233,234,235, +236, 5, 30,237, 24,238, 75, 8, 26, 52, 34, 51,119, 47, 58, 57, + 49, 53, 55, 43, 20, 19, 44, 14, 48, 3, 17, 25, 39, 62, 31, 54, + 45, 9, 16, 2, 61, 15,239, 12, 42, 46, 18, 21, 76, 4, 66, 63, + 22, 10, 1, 36, 23, 13, 40, 27, 32, 35, 86,240,241,242,243,244, + 11, 28, 41, 29, 33,245, 50, 37, 6, 7, 67, 77, 38, 93,246,247, + 68, 56, 59, 65, 69, 60, 70, 80, 71, 87,248,249,250,251,252,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 92.6386% +# first 1024 sequences:7.3177% +# rest sequences: 1.0230% +# negative sequences: 0.0436% +ThaiLangModel = ( +0,1,3,3,3,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,0,0,3,3,3,0,3,3,3,3, +0,3,3,0,0,0,1,3,0,3,3,2,3,3,0,1,2,3,3,3,3,0,2,0,2,0,0,3,2,1,2,2, +3,0,3,3,2,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,0,3,2,3,0,2,2,2,3, +0,2,3,0,0,0,0,1,0,1,2,3,1,1,3,2,2,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1, +3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,3,3,2,3,2,3,3,2,2,2, +3,1,2,3,0,3,3,2,2,1,2,3,3,1,2,0,1,3,0,1,0,0,1,0,0,0,0,0,0,0,1,1, +3,3,2,2,3,3,3,3,1,2,3,3,3,3,3,2,2,2,2,3,3,2,2,3,3,2,2,3,2,3,2,2, +3,3,1,2,3,1,2,2,3,3,1,0,2,1,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,1,0,1, +3,3,3,3,3,3,2,2,3,3,3,3,2,3,2,2,3,3,2,2,3,2,2,2,2,1,1,3,1,2,1,1, +3,2,1,0,2,1,0,1,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,3,2,3,2,3,3,2,2,3,2,3,3,2,3,1,1,2,3,2,2,2,3,2,2,2,2,2,1,2,1, +2,2,1,1,3,3,2,1,0,1,2,2,0,1,3,0,0,0,1,1,0,0,0,0,0,2,3,0,0,2,1,1, +3,3,2,3,3,2,0,0,3,3,0,3,3,0,2,2,3,1,2,2,1,1,1,0,2,2,2,0,2,2,1,1, +0,2,1,0,2,0,0,2,0,1,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,2,3,3,2,0,0,3,3,0,2,3,0,2,1,2,2,2,2,1,2,0,0,2,2,2,0,2,2,1,1, +0,2,1,0,2,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,2,3,2,3,2,0,2,2,1,3,2,1,3,2,1,2,3,2,2,3,0,2,3,2,2,1,2,2,2,2, +1,2,2,0,0,0,0,2,0,1,2,0,1,1,1,0,1,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0, +3,3,2,3,3,2,3,2,2,2,3,2,2,3,2,2,1,2,3,2,2,3,1,3,2,2,2,3,2,2,2,3, +3,2,1,3,0,1,1,1,0,2,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0, +1,0,0,3,0,3,3,3,3,3,0,0,3,0,2,2,3,3,3,3,3,0,0,0,1,1,3,0,0,0,0,2, +0,0,1,0,0,0,0,0,0,0,2,3,0,0,0,3,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +2,0,3,3,3,3,0,0,2,3,0,0,3,0,3,3,2,3,3,3,3,3,0,0,3,3,3,0,0,0,3,3, +0,0,3,0,0,0,0,2,0,0,2,1,1,3,0,0,1,0,0,2,3,0,1,0,0,0,0,0,0,0,1,0, +3,3,3,3,2,3,3,3,3,3,3,3,1,2,1,3,3,2,2,1,2,2,2,3,1,1,2,0,2,1,2,1, +2,2,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0, +3,0,2,1,2,3,3,3,0,2,0,2,2,0,2,1,3,2,2,1,2,1,0,0,2,2,1,0,2,1,2,2, +0,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,3,3,1,1,3,0,2,3,1,1,3,2,1,1,2,0,2,2,3,2,1,1,1,1,1,2, +3,0,0,1,3,1,2,1,2,0,3,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +3,3,1,1,3,2,3,3,3,1,3,2,1,3,2,1,3,2,2,2,2,1,3,3,1,2,1,3,1,2,3,0, +2,1,1,3,2,2,2,1,2,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, +3,3,2,3,2,3,3,2,3,2,3,2,3,3,2,1,0,3,2,2,2,1,2,2,2,1,2,2,1,2,1,1, +2,2,2,3,0,1,3,1,1,1,1,0,1,1,0,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,3,2,2,1,1,3,2,3,2,3,2,0,3,2,2,1,2,0,2,2,2,1,2,2,2,2,1, +3,2,1,2,2,1,0,2,0,1,0,0,1,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,2,3,1,2,3,3,2,2,3,0,1,1,2,0,3,3,2,2,3,0,1,1,3,0,0,0,0, +3,1,0,3,3,0,2,0,2,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,3,2,3,3,0,1,3,1,1,2,1,2,1,1,3,1,1,0,2,3,1,1,1,1,1,1,1,1, +3,1,1,2,2,2,2,1,1,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,2,2,1,1,2,1,3,3,2,3,2,2,3,2,2,3,1,2,2,1,2,0,3,2,1,2,2,2,2,2,1, +3,2,1,2,2,2,1,1,1,1,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,1,3,3,0,2,1,0,3,2,0,0,3,1,0,1,1,0,1,0,0,0,0,0,1, +1,0,0,1,0,3,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,2,2,2,3,0,0,1,3,0,3,2,0,3,2,2,3,3,3,3,3,1,0,2,2,2,0,2,2,1,2, +0,2,3,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,0,2,3,1,3,3,2,3,3,0,3,3,0,3,2,2,3,2,3,3,3,0,0,2,2,3,0,1,1,1,3, +0,0,3,0,0,0,2,2,0,1,3,0,1,2,2,2,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1, +3,2,3,3,2,0,3,3,2,2,3,1,3,2,1,3,2,0,1,2,2,0,2,3,2,1,0,3,0,0,0,0, +3,0,0,2,3,1,3,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,3,2,2,2,1,2,0,1,3,1,1,3,1,3,0,0,2,1,1,1,1,2,1,1,1,0,2,1,0,1, +1,2,0,0,0,3,1,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,3,1,0,0,0,1,0, +3,3,3,3,2,2,2,2,2,1,3,1,1,1,2,0,1,1,2,1,2,1,3,2,0,0,3,1,1,1,1,1, +3,1,0,2,3,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,2,3,0,3,3,0,2,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,3,1,3,0,0,1,2,0,0,2,0,3,3,2,3,3,3,2,3,0,0,2,2,2,0,0,0,2,2, +0,0,1,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,1,2,3,1,3,3,0,0,1,0,3,0,0,0,0,0, +0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,1,2,3,1,2,3,1,0,3,0,2,2,1,0,2,1,1,2,0,1,0,0,1,1,1,1,0,1,0,0, +1,0,0,0,0,1,1,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,0,1,1,1,3,1,2,2,2,2,2,2,1,1,1,1,0,3,1,0,1,3,1,1,1,1, +1,1,0,2,0,1,3,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1, +3,0,2,2,1,3,3,2,3,3,0,1,1,0,2,2,1,2,1,3,3,1,0,0,3,2,0,0,0,0,2,1, +0,1,0,0,0,0,1,2,0,1,1,3,1,1,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,3,0,0,1,0,0,0,3,0,0,3,0,3,1,0,1,1,1,3,2,0,0,0,3,0,0,0,0,2,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,1,3,2,1,3,3,1,2,2,0,1,2,1,0,1,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0, +3,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,2,0,3,3,3,2,2,0,1,1,0,1,3,0,0,0,2,2,0,0,0,0,3,1,0,1,0,0,0, +0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,2,3,1,2,0,0,2,1,0,3,1,0,1,2,0,1,1,1,1,3,0,0,3,1,1,0,2,2,1,1, +0,2,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,3,1,2,0,0,2,2,0,1,2,0,1,0,1,3,1,2,1,0,0,0,2,0,3,0,0,0,1,0, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,1,2,2,0,0,0,2,0,2,1,0,1,1,0,1,1,1,2,1,0,0,1,1,1,0,2,1,1,1, +0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1, +0,0,0,2,0,1,3,1,1,1,1,0,0,0,0,3,2,0,1,0,0,0,1,2,0,0,0,1,0,0,0,0, +0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,2,3,2,2,0,0,0,1,0,0,0,0,2,3,2,1,2,2,3,0,0,0,2,3,1,0,0,0,1,1, +0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0, +3,3,2,2,0,1,0,0,0,0,2,0,2,0,1,0,0,0,1,1,0,0,0,2,1,0,1,0,1,1,0,0, +0,1,0,2,0,0,1,0,3,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,1,0,0,1,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,1,3,1,0,0,0,0,1,1,0,0, +0,1,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0, +3,3,1,1,1,1,2,3,0,0,2,1,1,1,1,1,0,2,1,1,0,0,0,2,1,0,1,2,1,1,0,1, +2,1,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,3,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1, +0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,0,0,0,0,0,0,1,2,1,0,1,1,0,2,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,2,0,0,0,1,3,0,1,0,0,0,2,0,0,0,0,0,0,0,1,2,0,0,0,0,0, +3,3,0,0,1,1,2,0,0,1,2,1,0,1,1,1,0,1,1,0,0,2,1,1,0,1,0,0,1,1,1,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,1,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,0,1,2,0,1,2,0,0,1,1,0,2,0,1,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0, +1,0,0,1,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,0,0,0,0,1,1,0,1,1,0,2,1,3,0,0,0,0,1,1,0,0,0,0,0,0,0,3, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,1,0,0,2,0,0,2,0,0,1,1,2,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0, +1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,1,0,0,2,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +) + +TIS620ThaiModel = { + 'char_to_order_map': TIS620CharToOrderMap, + 'precedence_matrix': ThaiLangModel, + 'typical_positive_ratio': 0.926386, + 'keep_english_letter': False, + 'charset_name': "TIS-620", + 'language': 'Thai', +} diff --git a/venv/lib/python2.7/site-packages/chardet/langturkishmodel.py b/venv/lib/python2.7/site-packages/chardet/langturkishmodel.py new file mode 100644 index 00000000..a427a457 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/langturkishmodel.py @@ -0,0 +1,193 @@ +# -*- coding: utf-8 -*- +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Özgür Baskın - Turkish Language Model +# +# 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 +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +Latin5_TurkishCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, +255, 23, 37, 47, 39, 29, 52, 36, 45, 53, 60, 16, 49, 20, 46, 42, + 48, 69, 44, 35, 31, 51, 38, 62, 65, 43, 56,255,255,255,255,255, +255, 1, 21, 28, 12, 2, 18, 27, 25, 3, 24, 10, 5, 13, 4, 15, + 26, 64, 7, 8, 9, 14, 32, 57, 58, 11, 22,255,255,255,255,255, +180,179,178,177,176,175,174,173,172,171,170,169,168,167,166,165, +164,163,162,161,160,159,101,158,157,156,155,154,153,152,151,106, +150,149,148,147,146,145,144,100,143,142,141,140,139,138,137,136, + 94, 80, 93,135,105,134,133, 63,132,131,130,129,128,127,126,125, +124,104, 73, 99, 79, 85,123, 54,122, 98, 92,121,120, 91,103,119, + 68,118,117, 97,116,115, 50, 90,114,113,112,111, 55, 41, 40, 86, + 89, 70, 59, 78, 71, 82, 88, 33, 77, 66, 84, 83,110, 75, 61, 96, + 30, 67,109, 74, 87,102, 34, 95, 81,108, 76, 72, 17, 6, 19,107, +) + +TurkishLangModel = ( +3,2,3,3,3,1,3,3,3,3,3,3,3,3,2,1,1,3,3,1,3,3,0,3,3,3,3,3,0,3,1,3, +3,2,1,0,0,1,1,0,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,2,2,0,0,1,0,0,1, +3,2,2,3,3,0,3,3,3,3,3,3,3,2,3,1,0,3,3,1,3,3,0,3,3,3,3,3,0,3,0,3, +3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,2,2,0,0,0,1,0,1, +3,3,2,3,3,0,3,3,3,3,3,3,3,2,3,1,1,3,3,0,3,3,1,2,3,3,3,3,0,3,0,3, +3,1,1,0,0,0,1,0,0,0,0,1,1,0,1,2,1,0,0,0,1,0,0,0,0,2,0,0,0,0,0,1, +3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,1,3,3,2,0,3,2,1,2,2,1,3,3,0,0,0,2, +2,2,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,1, +3,3,3,2,3,3,1,2,3,3,3,3,3,3,3,1,3,2,1,0,3,2,0,1,2,3,3,2,1,0,0,2, +2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0, +1,0,1,3,3,1,3,3,3,3,3,3,3,1,2,0,0,2,3,0,2,3,0,0,2,2,2,3,0,3,0,1, +2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,0,3,2,0,2,3,2,3,3,1,0,0,2, +3,2,0,0,1,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,2,0,0,1, +3,3,3,2,3,3,2,3,3,3,3,2,3,3,3,0,3,3,0,0,2,1,0,0,2,3,2,2,0,0,0,2, +2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,1, +3,3,3,2,3,3,3,3,3,3,3,2,3,3,3,0,3,2,0,1,3,2,1,1,3,2,3,2,1,0,0,2, +2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0, +3,3,3,2,3,3,3,3,3,3,3,2,3,3,3,0,3,2,2,0,2,3,0,0,2,2,2,2,0,0,0,2, +3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0, +3,3,3,3,3,3,3,2,2,2,2,3,2,3,3,0,3,3,1,1,2,2,0,0,2,2,3,2,0,0,1,3, +0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1, +3,3,3,2,3,3,3,2,1,2,2,3,2,3,3,0,3,2,0,0,1,1,0,1,1,2,1,2,0,0,0,1, +0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0, +3,3,3,2,3,3,2,3,2,2,2,3,3,3,3,1,3,1,1,0,3,2,1,1,3,3,2,3,1,0,0,1, +1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,1, +3,2,2,3,3,0,3,3,3,3,3,3,3,2,2,1,0,3,3,1,3,3,0,1,3,3,2,3,0,3,0,3, +2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, +2,2,2,3,3,0,3,3,3,3,3,3,3,3,3,0,0,3,2,0,3,3,0,3,2,3,3,3,0,3,1,3, +2,0,0,0,0,0,0,0,0,0,0,1,0,1,2,0,1,0,0,0,0,0,0,0,2,2,0,0,1,0,0,1, +3,3,3,1,2,3,3,1,0,0,1,0,0,3,3,2,3,0,0,2,0,0,2,0,2,0,0,0,2,0,2,0, +0,3,1,0,1,0,0,0,2,2,1,0,1,1,2,1,2,2,2,0,2,1,1,0,0,0,2,0,0,0,0,0, +1,2,1,3,3,0,3,3,3,3,3,2,3,0,0,0,0,2,3,0,2,3,1,0,2,3,1,3,0,3,0,2, +3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,1,3,3,2,2,3,2,2,0,1,2,3,0,1,2,1,0,1,0,0,0,1,0,2,2,0,0,0,1, +1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0, +3,3,3,1,3,3,1,1,3,3,1,1,3,3,1,0,2,1,2,0,2,1,0,0,1,1,2,1,0,0,0,2, +2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,1,0,2,1,3,0,0,2,0,0,3,3,0,3,0,0,1,0,1,2,0,0,1,1,2,2,0,1,0, +0,1,2,1,1,0,1,0,1,1,1,1,1,0,1,1,1,2,2,1,2,0,1,0,0,0,0,0,0,1,0,0, +3,3,3,2,3,2,3,3,0,2,2,2,3,3,3,0,3,0,0,0,2,2,0,1,2,1,1,1,0,0,0,1, +0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +3,3,3,3,3,3,2,1,2,2,3,3,3,3,2,0,2,0,0,0,2,2,0,0,2,1,3,3,0,0,1,1, +1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0, +1,1,2,3,3,0,3,3,3,3,3,3,2,2,0,2,0,2,3,2,3,2,2,2,2,2,2,2,1,3,2,3, +2,0,2,1,2,2,2,2,1,1,2,2,1,2,2,1,2,0,0,2,1,1,0,2,1,0,0,1,0,0,0,1, +2,3,3,1,1,1,0,1,1,1,2,3,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,2,2,3,2,3,2,2,1,3,3,3,0,2,1,2,0,2,1,0,0,1,1,1,1,1,0,0,1, +2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0, +3,3,3,2,3,3,3,3,3,2,3,1,2,3,3,1,2,0,0,0,0,0,0,0,3,2,1,1,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, +3,3,3,2,2,3,3,2,1,1,1,1,1,3,3,0,3,1,0,0,1,1,0,0,3,1,2,1,0,0,0,0, +0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0, +3,3,3,2,2,3,2,2,2,3,2,1,1,3,3,0,3,0,0,0,0,1,0,0,3,1,1,2,0,0,0,1, +1,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,1,1,3,3,0,3,3,3,3,3,2,2,2,1,2,0,2,1,2,2,1,1,0,1,2,2,2,2,2,2,2, +0,0,2,1,2,1,2,1,0,1,1,3,1,2,1,1,2,0,0,2,0,1,0,1,0,1,0,0,0,1,0,1, +3,3,3,1,3,3,3,0,1,1,0,2,2,3,1,0,3,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,0,0,2,2,1,0,0,1,0,0,3,3,1,3,0,0,1,1,0,2,0,3,0,0,0,2,0,1,1, +0,1,2,0,1,2,2,0,2,2,2,2,1,0,2,1,1,0,2,0,2,1,2,0,0,0,0,0,0,0,0,0, +3,3,3,1,3,2,3,2,0,2,2,2,1,3,2,0,2,1,2,0,1,2,0,0,1,0,2,2,0,0,0,2, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0, +3,3,3,0,3,3,1,1,2,3,1,0,3,2,3,0,3,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0, +1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,3,3,0,3,3,2,3,3,2,2,0,0,0,0,1,2,0,1,3,0,0,0,3,1,1,0,3,0,2, +2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,1,2,2,1,0,3,1,1,1,1,3,3,2,3,0,0,1,0,1,2,0,2,2,0,2,2,0,2,1, +0,2,2,1,1,1,1,0,2,1,1,0,1,1,1,1,2,1,2,1,2,0,1,0,1,0,0,0,0,0,0,0, +3,3,3,0,1,1,3,0,0,1,1,0,0,2,2,0,3,0,0,1,1,0,1,0,0,0,0,0,2,0,0,0, +0,3,1,0,1,0,1,0,2,0,0,1,0,1,0,1,1,1,2,1,1,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,0,2,0,2,0,1,1,1,0,0,3,3,0,2,0,0,1,0,0,2,1,1,0,1,0,1,0,1,0, +0,2,0,1,2,0,2,0,2,1,1,0,1,0,2,1,1,0,2,1,1,0,1,0,0,0,1,1,0,0,0,0, +3,2,3,0,1,0,0,0,0,0,0,0,0,1,2,0,1,0,0,1,0,0,1,0,0,0,0,0,2,0,0,0, +0,0,1,1,0,0,1,0,1,0,0,1,0,0,0,2,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,0,0,2,3,0,0,1,0,1,0,2,3,2,3,0,0,1,3,0,2,1,0,0,0,0,2,0,1,0, +0,2,1,0,0,1,1,0,2,1,0,0,1,0,0,1,1,0,1,1,2,0,1,0,0,0,0,1,0,0,0,0, +3,2,2,0,0,1,1,0,0,0,0,0,0,3,1,1,1,0,0,0,0,0,1,0,0,0,0,0,2,0,1,0, +0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,3,3,0,2,3,2,2,1,2,2,1,1,2,0,1,3,2,2,2,0,0,2,2,0,0,0,1,2,1, +3,0,2,1,1,0,1,1,1,0,1,2,2,2,1,1,2,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0, +0,1,1,2,3,0,3,3,3,2,2,2,2,1,0,1,0,1,0,1,2,2,0,0,2,2,1,3,1,1,2,1, +0,0,1,1,2,0,1,1,0,0,1,2,0,2,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0, +3,3,2,0,0,3,1,0,0,0,0,0,0,3,2,1,2,0,0,1,0,0,2,0,0,0,0,0,2,0,1,0, +0,2,1,1,0,0,1,0,1,2,0,0,1,1,0,0,2,1,1,1,1,0,2,0,0,0,0,0,0,0,0,0, +3,3,2,0,0,1,0,0,0,0,1,0,0,3,3,2,2,0,0,1,0,0,2,0,1,0,0,0,2,0,1,0, +0,0,1,1,0,0,2,0,2,1,0,0,1,1,2,1,2,0,2,1,2,1,1,1,0,0,1,1,0,0,0,0, +3,3,2,0,0,2,2,0,0,0,1,1,0,2,2,1,3,1,0,1,0,1,2,0,0,0,0,0,1,0,1,0, +0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,0,0,0,1,0,0,1,0,0,2,3,1,2,0,0,1,0,0,2,0,0,0,1,0,2,0,2,0, +0,1,1,2,2,1,2,0,2,1,1,0,0,1,1,0,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0, +3,3,3,0,2,1,2,1,0,0,1,1,0,3,3,1,2,0,0,1,0,0,2,0,2,0,1,1,2,0,0,0, +0,0,1,1,1,1,2,0,1,1,0,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,0,0,0,0,0, +3,3,3,0,2,2,3,2,0,0,1,0,0,2,3,1,0,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0, +0,1,1,0,0,0,1,0,0,1,0,1,1,0,1,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,0,0,0,0,0,0,0,1,0,0,2,2,2,2,0,0,1,0,0,2,0,0,0,0,0,2,0,1,0, +0,0,2,1,1,0,1,0,2,1,1,0,0,1,1,2,1,0,2,0,2,0,1,0,0,0,2,0,0,0,0,0, +0,0,0,2,2,0,2,1,1,1,1,2,2,0,0,1,0,1,0,0,1,3,0,0,0,0,1,0,0,2,1,0, +0,0,1,0,1,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +2,0,0,2,3,0,2,3,1,2,2,0,2,0,0,2,0,2,1,1,1,2,1,0,0,1,2,1,1,2,1,0, +1,0,2,0,1,0,1,1,0,0,2,2,1,2,1,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,0,2,1,2,0,0,0,1,0,0,3,2,0,1,0,0,1,0,0,2,0,0,0,1,2,1,0,1,0, +0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,2,2,0,2,2,1,1,0,1,1,1,1,1,0,0,1,2,1,1,1,0,1,0,0,0,1,1,1,1, +0,0,2,1,0,1,1,1,0,1,1,2,1,2,1,1,2,0,1,1,2,1,0,2,0,0,0,0,0,0,0,0, +3,2,2,0,0,2,0,0,0,0,0,0,0,2,2,0,2,0,0,1,0,0,2,0,0,0,0,0,2,0,0,0, +0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,3,2,0,2,2,0,1,1,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0, +2,0,1,0,1,0,1,1,0,0,1,2,0,1,0,1,1,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0, +2,2,2,0,1,1,0,0,0,1,0,0,0,1,2,0,1,0,0,1,0,0,1,0,0,0,0,1,2,0,1,0, +0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,1,0,1,1,1,0,0,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +1,1,2,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1, +0,0,1,2,2,0,2,1,2,1,1,2,2,0,0,0,0,1,0,0,1,1,0,0,2,0,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +2,2,2,0,0,0,1,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,0,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +) + +Latin5TurkishModel = { + 'char_to_order_map': Latin5_TurkishCharToOrderMap, + 'precedence_matrix': TurkishLangModel, + 'typical_positive_ratio': 0.970290, + 'keep_english_letter': True, + 'charset_name': "ISO-8859-9", + 'language': 'Turkish', +} diff --git a/venv/lib/python2.7/site-packages/chardet/latin1prober.py b/venv/lib/python2.7/site-packages/chardet/latin1prober.py new file mode 100644 index 00000000..7d1e8c20 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/latin1prober.py @@ -0,0 +1,145 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( +# UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + super(Latin1Prober, self).__init__() + self._last_char_class = None + self._freq_counter = None + self.reset() + + def reset(self): + self._last_char_class = OTH + self._freq_counter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + @property + def charset_name(self): + return "ISO-8859-1" + + @property + def language(self): + return "" + + def feed(self, byte_str): + byte_str = self.filter_with_english_letters(byte_str) + for c in byte_str: + char_class = Latin1_CharToClass[c] + freq = Latin1ClassModel[(self._last_char_class * CLASS_NUM) + + char_class] + if freq == 0: + self._state = ProbingState.NOT_ME + break + self._freq_counter[freq] += 1 + self._last_char_class = char_class + + return self.state + + def get_confidence(self): + if self.state == ProbingState.NOT_ME: + return 0.01 + + total = sum(self._freq_counter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._freq_counter[3] - self._freq_counter[1] * 20.0) + / total) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.73 + return confidence diff --git a/venv/lib/python2.7/site-packages/chardet/mbcharsetprober.py b/venv/lib/python2.7/site-packages/chardet/mbcharsetprober.py new file mode 100644 index 00000000..6256ecfd --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/mbcharsetprober.py @@ -0,0 +1,91 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState + + +class MultiByteCharSetProber(CharSetProber): + """ + MultiByteCharSetProber + """ + + def __init__(self, lang_filter=None): + super(MultiByteCharSetProber, self).__init__(lang_filter=lang_filter) + self.distribution_analyzer = None + self.coding_sm = None + self._last_char = [0, 0] + + def reset(self): + super(MultiByteCharSetProber, self).reset() + if self.coding_sm: + self.coding_sm.reset() + if self.distribution_analyzer: + self.distribution_analyzer.reset() + self._last_char = [0, 0] + + @property + def charset_name(self): + raise NotImplementedError + + @property + def language(self): + raise NotImplementedError + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.distribution_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + return self.distribution_analyzer.get_confidence() diff --git a/venv/lib/python2.7/site-packages/chardet/mbcsgroupprober.py b/venv/lib/python2.7/site-packages/chardet/mbcsgroupprober.py new file mode 100644 index 00000000..530abe75 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/mbcsgroupprober.py @@ -0,0 +1,54 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .cp949prober import CP949Prober +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self, lang_filter=None): + super(MBCSGroupProber, self).__init__(lang_filter=lang_filter) + self.probers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + CP949Prober(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/venv/lib/python2.7/site-packages/chardet/mbcssm.py b/venv/lib/python2.7/site-packages/chardet/mbcssm.py new file mode 100644 index 00000000..8360d0f2 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/mbcssm.py @@ -0,0 +1,572 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .enums import MachineState + +# BIG5 + +BIG5_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 4,4,4,4,4,4,4,4, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 4,3,3,3,3,3,3,3, # a0 - a7 + 3,3,3,3,3,3,3,3, # a8 - af + 3,3,3,3,3,3,3,3, # b0 - b7 + 3,3,3,3,3,3,3,3, # b8 - bf + 3,3,3,3,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +BIG5_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,#08-0f + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START#10-17 +) + +BIG5_CHAR_LEN_TABLE = (0, 1, 1, 2, 0) + +BIG5_SM_MODEL = {'class_table': BIG5_CLS, + 'class_factor': 5, + 'state_table': BIG5_ST, + 'char_len_table': BIG5_CHAR_LEN_TABLE, + 'name': 'Big5'} + +# CP949 + +CP949_CLS = ( + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,0,0, # 00 - 0f + 1,1,1,1,1,1,1,1, 1,1,1,0,1,1,1,1, # 10 - 1f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 20 - 2f + 1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1, # 30 - 3f + 1,4,4,4,4,4,4,4, 4,4,4,4,4,4,4,4, # 40 - 4f + 4,4,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 50 - 5f + 1,5,5,5,5,5,5,5, 5,5,5,5,5,5,5,5, # 60 - 6f + 5,5,5,5,5,5,5,5, 5,5,5,1,1,1,1,1, # 70 - 7f + 0,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 80 - 8f + 6,6,6,6,6,6,6,6, 6,6,6,6,6,6,6,6, # 90 - 9f + 6,7,7,7,7,7,7,7, 7,7,7,7,7,8,8,8, # a0 - af + 7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7, # b0 - bf + 7,7,7,7,7,7,9,2, 2,3,2,2,2,2,2,2, # c0 - cf + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # d0 - df + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2, # e0 - ef + 2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,0, # f0 - ff +) + +CP949_ST = ( +#cls= 0 1 2 3 4 5 6 7 8 9 # previous state = + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.START,MachineState.START, 4, 5,MachineState.ERROR, 6, # MachineState.START + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, # MachineState.ERROR + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME, # MachineState.ITS_ME + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 3 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 4 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, # 5 + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START, # 6 +) + +CP949_CHAR_LEN_TABLE = (0, 1, 2, 0, 1, 1, 2, 2, 0, 2) + +CP949_SM_MODEL = {'class_table': CP949_CLS, + 'class_factor': 10, + 'state_table': CP949_ST, + 'char_len_table': CP949_CHAR_LEN_TABLE, + 'name': 'CP949'} + +# EUC-JP + +EUCJP_CLS = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,5,5, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,5,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,4,4,4,4,4,4,4, # 30 - 37 + 4,4,4,4,4,4,4,4, # 38 - 3f + 4,4,4,4,4,4,4,4, # 40 - 47 + 4,4,4,4,4,4,4,4, # 48 - 4f + 4,4,4,4,4,4,4,4, # 50 - 57 + 4,4,4,4,4,4,4,4, # 58 - 5f + 4,4,4,4,4,4,4,4, # 60 - 67 + 4,4,4,4,4,4,4,4, # 68 - 6f + 4,4,4,4,4,4,4,4, # 70 - 77 + 4,4,4,4,4,4,4,4, # 78 - 7f + 5,5,5,5,5,5,5,5, # 80 - 87 + 5,5,5,5,5,5,1,3, # 88 - 8f + 5,5,5,5,5,5,5,5, # 90 - 97 + 5,5,5,5,5,5,5,5, # 98 - 9f + 5,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,0,5 # f8 - ff +) + +EUCJP_ST = ( + 3, 4, 3, 5,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 3,MachineState.ERROR,#18-1f + 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START#20-27 +) + +EUCJP_CHAR_LEN_TABLE = (2, 2, 2, 3, 1, 0) + +EUCJP_SM_MODEL = {'class_table': EUCJP_CLS, + 'class_factor': 6, + 'state_table': EUCJP_ST, + 'char_len_table': EUCJP_CHAR_LEN_TABLE, + 'name': 'EUC-JP'} + +# EUC-KR + +EUCKR_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,3,3,3, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,3,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 2,2,2,2,2,2,2,2, # e0 - e7 + 2,2,2,2,2,2,2,2, # e8 - ef + 2,2,2,2,2,2,2,2, # f0 - f7 + 2,2,2,2,2,2,2,0 # f8 - ff +) + +EUCKR_ST = ( + MachineState.ERROR,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #08-0f +) + +EUCKR_CHAR_LEN_TABLE = (0, 1, 2, 0) + +EUCKR_SM_MODEL = {'class_table': EUCKR_CLS, + 'class_factor': 4, + 'state_table': EUCKR_ST, + 'char_len_table': EUCKR_CHAR_LEN_TABLE, + 'name': 'EUC-KR'} + +# EUC-TW + +EUCTW_CLS = ( + 2,2,2,2,2,2,2,2, # 00 - 07 + 2,2,2,2,2,2,0,0, # 08 - 0f + 2,2,2,2,2,2,2,2, # 10 - 17 + 2,2,2,0,2,2,2,2, # 18 - 1f + 2,2,2,2,2,2,2,2, # 20 - 27 + 2,2,2,2,2,2,2,2, # 28 - 2f + 2,2,2,2,2,2,2,2, # 30 - 37 + 2,2,2,2,2,2,2,2, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,2, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,6,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,3,4,4,4,4,4,4, # a0 - a7 + 5,5,1,1,1,1,1,1, # a8 - af + 1,1,1,1,1,1,1,1, # b0 - b7 + 1,1,1,1,1,1,1,1, # b8 - bf + 1,1,3,1,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +EUCTW_ST = ( + MachineState.ERROR,MachineState.ERROR,MachineState.START, 3, 3, 3, 4,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.START,MachineState.ERROR,#10-17 + MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,#20-27 + MachineState.START,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +EUCTW_CHAR_LEN_TABLE = (0, 0, 1, 2, 2, 2, 3) + +EUCTW_SM_MODEL = {'class_table': EUCTW_CLS, + 'class_factor': 7, + 'state_table': EUCTW_ST, + 'char_len_table': EUCTW_CHAR_LEN_TABLE, + 'name': 'x-euc-tw'} + +# GB2312 + +GB2312_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 3,3,3,3,3,3,3,3, # 30 - 37 + 3,3,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,4, # 78 - 7f + 5,6,6,6,6,6,6,6, # 80 - 87 + 6,6,6,6,6,6,6,6, # 88 - 8f + 6,6,6,6,6,6,6,6, # 90 - 97 + 6,6,6,6,6,6,6,6, # 98 - 9f + 6,6,6,6,6,6,6,6, # a0 - a7 + 6,6,6,6,6,6,6,6, # a8 - af + 6,6,6,6,6,6,6,6, # b0 - b7 + 6,6,6,6,6,6,6,6, # b8 - bf + 6,6,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 6,6,6,6,6,6,6,6, # e0 - e7 + 6,6,6,6,6,6,6,6, # e8 - ef + 6,6,6,6,6,6,6,6, # f0 - f7 + 6,6,6,6,6,6,6,0 # f8 - ff +) + +GB2312_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START, 3,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,#10-17 + 4,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ERROR,MachineState.ERROR, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#20-27 + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.START #28-2f +) + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validating +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312_CHAR_LEN_TABLE = (0, 1, 1, 1, 1, 1, 2) + +GB2312_SM_MODEL = {'class_table': GB2312_CLS, + 'class_factor': 7, + 'state_table': GB2312_ST, + 'char_len_table': GB2312_CHAR_LEN_TABLE, + 'name': 'GB2312'} + +# Shift_JIS + +SJIS_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 3,3,3,3,3,2,2,3, # 80 - 87 + 3,3,3,3,3,3,3,3, # 88 - 8f + 3,3,3,3,3,3,3,3, # 90 - 97 + 3,3,3,3,3,3,3,3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,4,4,4, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,0,0,0) # f8 - ff + + +SJIS_ST = ( + MachineState.ERROR,MachineState.START,MachineState.START, 3,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START #10-17 +) + +SJIS_CHAR_LEN_TABLE = (0, 1, 1, 2, 0, 0) + +SJIS_SM_MODEL = {'class_table': SJIS_CLS, + 'class_factor': 6, + 'state_table': SJIS_ST, + 'char_len_table': SJIS_CHAR_LEN_TABLE, + 'name': 'Shift_JIS'} + +# UCS2-BE + +UCS2BE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2BE_ST = ( + 5, 7, 7,MachineState.ERROR, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,#10-17 + 6, 6, 6, 6, 6,MachineState.ITS_ME, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,MachineState.ERROR,#20-27 + 5, 8, 6, 6,MachineState.ERROR, 6, 6, 6,#28-2f + 6, 6, 6, 6,MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2BE_CHAR_LEN_TABLE = (2, 2, 2, 0, 2, 2) + +UCS2BE_SM_MODEL = {'class_table': UCS2BE_CLS, + 'class_factor': 6, + 'state_table': UCS2BE_ST, + 'char_len_table': UCS2BE_CHAR_LEN_TABLE, + 'name': 'UTF-16BE'} + +# UCS2-LE + +UCS2LE_CLS = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2LE_ST = ( + 6, 6, 7, 6, 4, 3,MachineState.ERROR,MachineState.ERROR,#00-07 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#08-0f + MachineState.ITS_ME,MachineState.ITS_ME, 5, 5, 5,MachineState.ERROR,MachineState.ITS_ME,MachineState.ERROR,#10-17 + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,MachineState.ERROR,#20-27 + 5, 5, 5,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5,#28-2f + 5, 5, 5,MachineState.ERROR, 5,MachineState.ERROR,MachineState.START,MachineState.START #30-37 +) + +UCS2LE_CHAR_LEN_TABLE = (2, 2, 2, 2, 2, 2) + +UCS2LE_SM_MODEL = {'class_table': UCS2LE_CLS, + 'class_factor': 6, + 'state_table': UCS2LE_ST, + 'char_len_table': UCS2LE_CHAR_LEN_TABLE, + 'name': 'UTF-16LE'} + +# UTF-8 + +UTF8_CLS = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as a legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 2,2,2,2,3,3,3,3, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 5,5,5,5,5,5,5,5, # a0 - a7 + 5,5,5,5,5,5,5,5, # a8 - af + 5,5,5,5,5,5,5,5, # b0 - b7 + 5,5,5,5,5,5,5,5, # b8 - bf + 0,0,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 7,8,8,8,8,8,8,8, # e0 - e7 + 8,8,8,8,8,9,8,8, # e8 - ef + 10,11,11,11,11,11,11,11, # f0 - f7 + 12,13,13,13,14,15,0,0 # f8 - ff +) + +UTF8_ST = ( + MachineState.ERROR,MachineState.START,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#10-17 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#18-1f + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#20-27 + MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,MachineState.ITS_ME,#28-2f + MachineState.ERROR,MachineState.ERROR, 5, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#30-37 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#38-3f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 5, 5, 5,MachineState.ERROR,MachineState.ERROR,#40-47 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#48-4f + MachineState.ERROR,MachineState.ERROR, 7, 7, 7, 7,MachineState.ERROR,MachineState.ERROR,#50-57 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#58-5f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 7, 7,MachineState.ERROR,MachineState.ERROR,#60-67 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#68-6f + MachineState.ERROR,MachineState.ERROR, 9, 9, 9, 9,MachineState.ERROR,MachineState.ERROR,#70-77 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#78-7f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 9,MachineState.ERROR,MachineState.ERROR,#80-87 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#88-8f + MachineState.ERROR,MachineState.ERROR, 12, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,#90-97 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#98-9f + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR, 12,MachineState.ERROR,MachineState.ERROR,#a0-a7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#a8-af + MachineState.ERROR,MachineState.ERROR, 12, 12, 12,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b0-b7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,#b8-bf + MachineState.ERROR,MachineState.ERROR,MachineState.START,MachineState.START,MachineState.START,MachineState.START,MachineState.ERROR,MachineState.ERROR,#c0-c7 + MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR,MachineState.ERROR #c8-cf +) + +UTF8_CHAR_LEN_TABLE = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8_SM_MODEL = {'class_table': UTF8_CLS, + 'class_factor': 16, + 'state_table': UTF8_ST, + 'char_len_table': UTF8_CHAR_LEN_TABLE, + 'name': 'UTF-8'} diff --git a/venv/lib/python2.7/site-packages/chardet/sbcharsetprober.py b/venv/lib/python2.7/site-packages/chardet/sbcharsetprober.py new file mode 100644 index 00000000..0adb51de --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/sbcharsetprober.py @@ -0,0 +1,132 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import CharacterCategory, ProbingState, SequenceLikelihood + + +class SingleByteCharSetProber(CharSetProber): + SAMPLE_SIZE = 64 + SB_ENOUGH_REL_THRESHOLD = 1024 # 0.25 * SAMPLE_SIZE^2 + POSITIVE_SHORTCUT_THRESHOLD = 0.95 + NEGATIVE_SHORTCUT_THRESHOLD = 0.05 + + def __init__(self, model, reversed=False, name_prober=None): + super(SingleByteCharSetProber, self).__init__() + self._model = model + # TRUE if we need to reverse every pair in the model lookup + self._reversed = reversed + # Optional auxiliary prober for name decision + self._name_prober = name_prober + self._last_order = None + self._seq_counters = None + self._total_seqs = None + self._total_char = None + self._freq_char = None + self.reset() + + def reset(self): + super(SingleByteCharSetProber, self).reset() + # char order of last character + self._last_order = 255 + self._seq_counters = [0] * SequenceLikelihood.get_num_categories() + self._total_seqs = 0 + self._total_char = 0 + # characters that fall in our sampling range + self._freq_char = 0 + + @property + def charset_name(self): + if self._name_prober: + return self._name_prober.charset_name + else: + return self._model['charset_name'] + + @property + def language(self): + if self._name_prober: + return self._name_prober.language + else: + return self._model.get('language') + + def feed(self, byte_str): + if not self._model['keep_english_letter']: + byte_str = self.filter_international_words(byte_str) + if not byte_str: + return self.state + char_to_order_map = self._model['char_to_order_map'] + for i, c in enumerate(byte_str): + # XXX: Order is in range 1-64, so one would think we want 0-63 here, + # but that leads to 27 more test failures than before. + order = char_to_order_map[c] + # XXX: This was SYMBOL_CAT_ORDER before, with a value of 250, but + # CharacterCategory.SYMBOL is actually 253, so we use CONTROL + # to make it closer to the original intent. The only difference + # is whether or not we count digits and control characters for + # _total_char purposes. + if order < CharacterCategory.CONTROL: + self._total_char += 1 + if order < self.SAMPLE_SIZE: + self._freq_char += 1 + if self._last_order < self.SAMPLE_SIZE: + self._total_seqs += 1 + if not self._reversed: + i = (self._last_order * self.SAMPLE_SIZE) + order + model = self._model['precedence_matrix'][i] + else: # reverse the order of the letters in the lookup + i = (order * self.SAMPLE_SIZE) + self._last_order + model = self._model['precedence_matrix'][i] + self._seq_counters[model] += 1 + self._last_order = order + + charset_name = self._model['charset_name'] + if self.state == ProbingState.DETECTING: + if self._total_seqs > self.SB_ENOUGH_REL_THRESHOLD: + confidence = self.get_confidence() + if confidence > self.POSITIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, we have a winner', + charset_name, confidence) + self._state = ProbingState.FOUND_IT + elif confidence < self.NEGATIVE_SHORTCUT_THRESHOLD: + self.logger.debug('%s confidence = %s, below negative ' + 'shortcut threshhold %s', charset_name, + confidence, + self.NEGATIVE_SHORTCUT_THRESHOLD) + self._state = ProbingState.NOT_ME + + return self.state + + def get_confidence(self): + r = 0.01 + if self._total_seqs > 0: + r = ((1.0 * self._seq_counters[SequenceLikelihood.POSITIVE]) / + self._total_seqs / self._model['typical_positive_ratio']) + r = r * self._freq_char / self._total_char + if r >= 1.0: + r = 0.99 + return r diff --git a/venv/lib/python2.7/site-packages/chardet/sbcsgroupprober.py b/venv/lib/python2.7/site-packages/chardet/sbcsgroupprober.py new file mode 100644 index 00000000..98e95dc1 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/sbcsgroupprober.py @@ -0,0 +1,73 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .sbcharsetprober import SingleByteCharSetProber +from .langcyrillicmodel import (Win1251CyrillicModel, Koi8rModel, + Latin5CyrillicModel, MacCyrillicModel, + Ibm866Model, Ibm855Model) +from .langgreekmodel import Latin7GreekModel, Win1253GreekModel +from .langbulgarianmodel import Latin5BulgarianModel, Win1251BulgarianModel +# from .langhungarianmodel import Latin2HungarianModel, Win1250HungarianModel +from .langthaimodel import TIS620ThaiModel +from .langhebrewmodel import Win1255HebrewModel +from .hebrewprober import HebrewProber +from .langturkishmodel import Latin5TurkishModel + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self): + super(SBCSGroupProber, self).__init__() + self.probers = [ + SingleByteCharSetProber(Win1251CyrillicModel), + SingleByteCharSetProber(Koi8rModel), + SingleByteCharSetProber(Latin5CyrillicModel), + SingleByteCharSetProber(MacCyrillicModel), + SingleByteCharSetProber(Ibm866Model), + SingleByteCharSetProber(Ibm855Model), + SingleByteCharSetProber(Latin7GreekModel), + SingleByteCharSetProber(Win1253GreekModel), + SingleByteCharSetProber(Latin5BulgarianModel), + SingleByteCharSetProber(Win1251BulgarianModel), + # TODO: Restore Hungarian encodings (iso-8859-2 and windows-1250) + # after we retrain model. + # SingleByteCharSetProber(Latin2HungarianModel), + # SingleByteCharSetProber(Win1250HungarianModel), + SingleByteCharSetProber(TIS620ThaiModel), + SingleByteCharSetProber(Latin5TurkishModel), + ] + hebrew_prober = HebrewProber() + logical_hebrew_prober = SingleByteCharSetProber(Win1255HebrewModel, + False, hebrew_prober) + visual_hebrew_prober = SingleByteCharSetProber(Win1255HebrewModel, True, + hebrew_prober) + hebrew_prober.set_model_probers(logical_hebrew_prober, visual_hebrew_prober) + self.probers.extend([hebrew_prober, logical_hebrew_prober, + visual_hebrew_prober]) + + self.reset() diff --git a/venv/lib/python2.7/site-packages/chardet/sjisprober.py b/venv/lib/python2.7/site-packages/chardet/sjisprober.py new file mode 100644 index 00000000..9e29623b --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/sjisprober.py @@ -0,0 +1,92 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJIS_SM_MODEL +from .enums import ProbingState, MachineState + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + super(SJISProber, self).__init__() + self.coding_sm = CodingStateMachine(SJIS_SM_MODEL) + self.distribution_analyzer = SJISDistributionAnalysis() + self.context_analyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + super(SJISProber, self).reset() + self.context_analyzer.reset() + + @property + def charset_name(self): + return self.context_analyzer.charset_name + + @property + def language(self): + return "Japanese" + + def feed(self, byte_str): + for i in range(len(byte_str)): + coding_state = self.coding_sm.next_state(byte_str[i]) + if coding_state == MachineState.ERROR: + self.logger.debug('%s %s prober hit error at byte %s', + self.charset_name, self.language, i) + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + char_len = self.coding_sm.get_current_charlen() + if i == 0: + self._last_char[1] = byte_str[0] + self.context_analyzer.feed(self._last_char[2 - char_len:], + char_len) + self.distribution_analyzer.feed(self._last_char, char_len) + else: + self.context_analyzer.feed(byte_str[i + 1 - char_len:i + 3 + - char_len], char_len) + self.distribution_analyzer.feed(byte_str[i - 1:i + 1], + char_len) + + self._last_char[0] = byte_str[-1] + + if self.state == ProbingState.DETECTING: + if (self.context_analyzer.got_enough_data() and + (self.get_confidence() > self.SHORTCUT_THRESHOLD)): + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + context_conf = self.context_analyzer.get_confidence() + distrib_conf = self.distribution_analyzer.get_confidence() + return max(context_conf, distrib_conf) diff --git a/venv/lib/python2.7/site-packages/chardet/universaldetector.py b/venv/lib/python2.7/site-packages/chardet/universaldetector.py new file mode 100644 index 00000000..7b4e92d6 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/universaldetector.py @@ -0,0 +1,286 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# 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 +######################### END LICENSE BLOCK ######################### +""" +Module containing the UniversalDetector detector class, which is the primary +class a user of ``chardet`` should use. + +:author: Mark Pilgrim (initial port to Python) +:author: Shy Shalom (original C code) +:author: Dan Blanchard (major refactoring for 3.0) +:author: Ian Cordasco +""" + + +import codecs +import logging +import re + +from .charsetgroupprober import CharSetGroupProber +from .enums import InputState, LanguageFilter, ProbingState +from .escprober import EscCharSetProber +from .latin1prober import Latin1Prober +from .mbcsgroupprober import MBCSGroupProber +from .sbcsgroupprober import SBCSGroupProber + + +class UniversalDetector(object): + """ + The ``UniversalDetector`` class underlies the ``chardet.detect`` function + and coordinates all of the different charset probers. + + To get a ``dict`` containing an encoding and its confidence, you can simply + run: + + .. code:: + + u = UniversalDetector() + u.feed(some_bytes) + u.close() + detected = u.result + + """ + + MINIMUM_THRESHOLD = 0.20 + HIGH_BYTE_DETECTOR = re.compile(b'[\x80-\xFF]') + ESC_DETECTOR = re.compile(b'(\033|~{)') + WIN_BYTE_DETECTOR = re.compile(b'[\x80-\x9F]') + ISO_WIN_MAP = {'iso-8859-1': 'Windows-1252', + 'iso-8859-2': 'Windows-1250', + 'iso-8859-5': 'Windows-1251', + 'iso-8859-6': 'Windows-1256', + 'iso-8859-7': 'Windows-1253', + 'iso-8859-8': 'Windows-1255', + 'iso-8859-9': 'Windows-1254', + 'iso-8859-13': 'Windows-1257'} + + def __init__(self, lang_filter=LanguageFilter.ALL): + self._esc_charset_prober = None + self._charset_probers = [] + self.result = None + self.done = None + self._got_data = None + self._input_state = None + self._last_char = None + self.lang_filter = lang_filter + self.logger = logging.getLogger(__name__) + self._has_win_bytes = None + self.reset() + + def reset(self): + """ + Reset the UniversalDetector and all of its probers back to their + initial states. This is called by ``__init__``, so you only need to + call this directly in between analyses of different documents. + """ + self.result = {'encoding': None, 'confidence': 0.0, 'language': None} + self.done = False + self._got_data = False + self._has_win_bytes = False + self._input_state = InputState.PURE_ASCII + self._last_char = b'' + if self._esc_charset_prober: + self._esc_charset_prober.reset() + for prober in self._charset_probers: + prober.reset() + + def feed(self, byte_str): + """ + Takes a chunk of a document and feeds it through all of the relevant + charset probers. + + After calling ``feed``, you can check the value of the ``done`` + attribute to see if you need to continue feeding the + ``UniversalDetector`` more data, or if it has made a prediction + (in the ``result`` attribute). + + .. note:: + You should always call ``close`` when you're done feeding in your + document if ``done`` is not already ``True``. + """ + if self.done: + return + + if not len(byte_str): + return + + if not isinstance(byte_str, bytearray): + byte_str = bytearray(byte_str) + + # First check for known BOMs, since these are guaranteed to be correct + if not self._got_data: + # If the data starts with BOM, we know it is UTF + if byte_str.startswith(codecs.BOM_UTF8): + # EF BB BF UTF-8 with BOM + self.result = {'encoding': "UTF-8-SIG", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_UTF32_LE, + codecs.BOM_UTF32_BE)): + # FF FE 00 00 UTF-32, little-endian BOM + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {'encoding': "UTF-32", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\xFE\xFF\x00\x00'): + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = {'encoding': "X-ISO-10646-UCS-4-3412", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith(b'\x00\x00\xFF\xFE'): + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = {'encoding': "X-ISO-10646-UCS-4-2143", + 'confidence': 1.0, + 'language': ''} + elif byte_str.startswith((codecs.BOM_LE, codecs.BOM_BE)): + # FF FE UTF-16, little endian BOM + # FE FF UTF-16, big endian BOM + self.result = {'encoding': "UTF-16", + 'confidence': 1.0, + 'language': ''} + + self._got_data = True + if self.result['encoding'] is not None: + self.done = True + return + + # If none of those matched and we've only see ASCII so far, check + # for high bytes and escape sequences + if self._input_state == InputState.PURE_ASCII: + if self.HIGH_BYTE_DETECTOR.search(byte_str): + self._input_state = InputState.HIGH_BYTE + elif self._input_state == InputState.PURE_ASCII and \ + self.ESC_DETECTOR.search(self._last_char + byte_str): + self._input_state = InputState.ESC_ASCII + + self._last_char = byte_str[-1:] + + # If we've seen escape sequences, use the EscCharSetProber, which + # uses a simple state machine to check for known escape sequences in + # HZ and ISO-2022 encodings, since those are the only encodings that + # use such sequences. + if self._input_state == InputState.ESC_ASCII: + if not self._esc_charset_prober: + self._esc_charset_prober = EscCharSetProber(self.lang_filter) + if self._esc_charset_prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': + self._esc_charset_prober.charset_name, + 'confidence': + self._esc_charset_prober.get_confidence(), + 'language': + self._esc_charset_prober.language} + self.done = True + # If we've seen high bytes (i.e., those with values greater than 127), + # we need to do more complicated checks using all our multi-byte and + # single-byte probers that are left. The single-byte probers + # use character bigram distributions to determine the encoding, whereas + # the multi-byte probers use a combination of character unigram and + # bigram distributions. + elif self._input_state == InputState.HIGH_BYTE: + if not self._charset_probers: + self._charset_probers = [MBCSGroupProber(self.lang_filter)] + # If we're checking non-CJK encodings, use single-byte prober + if self.lang_filter & LanguageFilter.NON_CJK: + self._charset_probers.append(SBCSGroupProber()) + self._charset_probers.append(Latin1Prober()) + for prober in self._charset_probers: + if prober.feed(byte_str) == ProbingState.FOUND_IT: + self.result = {'encoding': prober.charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language} + self.done = True + break + if self.WIN_BYTE_DETECTOR.search(byte_str): + self._has_win_bytes = True + + def close(self): + """ + Stop analyzing the current document and come up with a final + prediction. + + :returns: The ``result`` attribute, a ``dict`` with the keys + `encoding`, `confidence`, and `language`. + """ + # Don't bother with checks if we're already done + if self.done: + return self.result + self.done = True + + if not self._got_data: + self.logger.debug('no data received!') + + # Default to ASCII if it is all we've seen so far + elif self._input_state == InputState.PURE_ASCII: + self.result = {'encoding': 'ascii', + 'confidence': 1.0, + 'language': ''} + + # If we have seen non-ASCII, return the best that met MINIMUM_THRESHOLD + elif self._input_state == InputState.HIGH_BYTE: + prober_confidence = None + max_prober_confidence = 0.0 + max_prober = None + for prober in self._charset_probers: + if not prober: + continue + prober_confidence = prober.get_confidence() + if prober_confidence > max_prober_confidence: + max_prober_confidence = prober_confidence + max_prober = prober + if max_prober and (max_prober_confidence > self.MINIMUM_THRESHOLD): + charset_name = max_prober.charset_name + lower_charset_name = max_prober.charset_name.lower() + confidence = max_prober.get_confidence() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if self._has_win_bytes: + charset_name = self.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + self.result = {'encoding': charset_name, + 'confidence': confidence, + 'language': max_prober.language} + + # Log all prober confidences if none met MINIMUM_THRESHOLD + if self.logger.getEffectiveLevel() == logging.DEBUG: + if self.result['encoding'] is None: + self.logger.debug('no probers hit minimum threshold') + for group_prober in self._charset_probers: + if not group_prober: + continue + if isinstance(group_prober, CharSetGroupProber): + for prober in group_prober.probers: + self.logger.debug('%s %s confidence = %s', + prober.charset_name, + prober.language, + prober.get_confidence()) + else: + self.logger.debug('%s %s confidence = %s', + prober.charset_name, + prober.language, + prober.get_confidence()) + return self.result diff --git a/venv/lib/python2.7/site-packages/chardet/utf8prober.py b/venv/lib/python2.7/site-packages/chardet/utf8prober.py new file mode 100644 index 00000000..6c3196cc --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/utf8prober.py @@ -0,0 +1,82 @@ +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# 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 +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .enums import ProbingState, MachineState +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8_SM_MODEL + + + +class UTF8Prober(CharSetProber): + ONE_CHAR_PROB = 0.5 + + def __init__(self): + super(UTF8Prober, self).__init__() + self.coding_sm = CodingStateMachine(UTF8_SM_MODEL) + self._num_mb_chars = None + self.reset() + + def reset(self): + super(UTF8Prober, self).reset() + self.coding_sm.reset() + self._num_mb_chars = 0 + + @property + def charset_name(self): + return "utf-8" + + @property + def language(self): + return "" + + def feed(self, byte_str): + for c in byte_str: + coding_state = self.coding_sm.next_state(c) + if coding_state == MachineState.ERROR: + self._state = ProbingState.NOT_ME + break + elif coding_state == MachineState.ITS_ME: + self._state = ProbingState.FOUND_IT + break + elif coding_state == MachineState.START: + if self.coding_sm.get_current_charlen() >= 2: + self._num_mb_chars += 1 + + if self.state == ProbingState.DETECTING: + if self.get_confidence() > self.SHORTCUT_THRESHOLD: + self._state = ProbingState.FOUND_IT + + return self.state + + def get_confidence(self): + unlike = 0.99 + if self._num_mb_chars < 6: + unlike *= self.ONE_CHAR_PROB ** self._num_mb_chars + return 1.0 - unlike + else: + return unlike diff --git a/venv/lib/python2.7/site-packages/chardet/version.py b/venv/lib/python2.7/site-packages/chardet/version.py new file mode 100644 index 00000000..bb2a34a7 --- /dev/null +++ b/venv/lib/python2.7/site-packages/chardet/version.py @@ -0,0 +1,9 @@ +""" +This module exists only to simplify retrieving the version number of chardet +from within setup.py and from chardet subpackages. + +:author: Dan Blanchard (dan.blanchard@gmail.com) +""" + +__version__ = "3.0.4" +VERSION = __version__.split('.') diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3-py2.7-nspkg.pth b/venv/lib/python2.7/site-packages/ckan-2.8.3-py2.7-nspkg.pth new file mode 100644 index 00000000..d52397c9 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3-py2.7-nspkg.pth @@ -0,0 +1,3 @@ +import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('ckanext',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('ckanext', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('ckanext', [os.path.dirname(p)])));m = m or sys.modules.setdefault('ckanext', types.ModuleType('ckanext'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p) +import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('ckanext',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('ckanext', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('ckanext', [os.path.dirname(p)])));m = m or sys.modules.setdefault('ckanext', types.ModuleType('ckanext'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p) +import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('ckanext', 'stats'));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('ckanext.stats', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('ckanext.stats', [os.path.dirname(p)])));m = m or sys.modules.setdefault('ckanext.stats', types.ModuleType('ckanext.stats'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['ckanext'], 'stats', m) diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/INSTALLER b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/INSTALLER new file mode 100644 index 00000000..a1b589e3 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/METADATA b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/METADATA new file mode 100644 index 00000000..4b4dec49 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/METADATA @@ -0,0 +1,28 @@ +Metadata-Version: 2.1 +Name: ckan +Version: 2.8.3 +Summary: CKAN Software +Home-page: http://ckan.org/ +Author: https://github.com/ckan/ckan/graphs/contributors +Author-email: info@ckan.org +License: AGPL +Keywords: data packaging component tool server +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 2 :: Only +Classifier: Programming Language :: Python :: 2.7 + +CKAN is the world's leading Open Source data portal platform. + +It powers dozens of Open Data portals around the world, including +data.gov, open.canada.ca and europeandataportal.eu but also regional, +research and community organizations. + +It makes easy to publish, share and find data online and is fully +customizable via extensions and plugins. + +Check https://ckan.org to know more. + + diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/RECORD b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/RECORD new file mode 100644 index 00000000..72ac05ec --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/RECORD @@ -0,0 +1,2168 @@ +../../../bin/ckan-admin,sha256=B7xL7hMk85K2o2xukZ8clVM05K91T0xz78E59x8ffHo,264 +ckan-2.8.3-py2.7-nspkg.pth,sha256=ftGZP8zPfCAFKHkqMmz47kdo7Swh181qt6ukOhMGzTg,1714 +ckan-2.8.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +ckan-2.8.3.dist-info/METADATA,sha256=RPlDH8wJ4pm1Y1WE0EXqD2Q4YX0e3ArksX7GPwlNRgw,949 +ckan-2.8.3.dist-info/RECORD,, +ckan-2.8.3.dist-info/WHEEL,sha256=rhIUU3k_gV2iCypONLq-yw8hAvGuX-BoDgL_ovBiHW0,93 +ckan-2.8.3.dist-info/entry_points.txt,sha256=Yl340yylgYchQlMtACP0sQ-plcyjahFSqRhmvJy7-4M,10231 +ckan-2.8.3.dist-info/namespace_packages.txt,sha256=CWaQZM32iYP8oZYNwA9d6CCwRo-6mLH0tGd4FH9yt-s,22 +ckan-2.8.3.dist-info/top_level.txt,sha256=EBG8IrGCqTAz8Zjnp7bGtT-yxuhhyfAwiig5555X4Yw,13 +ckan/__init__.py,sha256=1AxdYA-ng25csE3I5Zagzz8aaTIkgjT0p_LDaaQz6ME,628 +ckan/__init__.pyc,, +ckan/authz.py,sha256=6InbXP1CgCg0BRcG6qVcPylmBQdfWNHjMQzBZosVZjw,15782 +ckan/authz.pyc,, +ckan/ckan_nose_plugin.py,sha256=V_v3MQ1RtnEL6HTjF5R8dACl64tYuc03uMT0xjVLoEs,4503 +ckan/ckan_nose_plugin.pyc,, +ckan/common.py,sha256=kTAO9GtKAJxSCS9qyMpXO_mQq-2Jycc7zguQcriNeaU,5526 +ckan/common.pyc,, +ckan/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/config/__init__.pyc,, +ckan/config/deployment.ini_tmpl,sha256=yI_Ppa_YGGEF7P5wrzFpiCPgQYOQRF71Er9kXPbU_Qc,6327 +ckan/config/environment.py,sha256=2M_H_gN6RoxR5iT23XLvYGj5ff6JzxRgf8eIv0Mr1_s,12027 +ckan/config/environment.pyc,, +ckan/config/install.py,sha256=NVF9iOthW9vc8PfXWvmtW0gWJPmZhTwZNKvgQOT9r7Y,568 +ckan/config/install.pyc,, +ckan/config/middleware/__init__.py,sha256=Y2yhQxhxVh_JAsNkFVdTlcwJpYGF8G0T1kRdJddGT58,7867 +ckan/config/middleware/__init__.pyc,, +ckan/config/middleware/common_middleware.py,sha256=PC-RB_AP08X4lxTIo_UkQZoBO8-B2tX4R67OllgExTE,3351 +ckan/config/middleware/common_middleware.pyc,, +ckan/config/middleware/flask_app.py,sha256=MuIMcuW2xQS6ryH1bJvV4nIJotJtEeOcr70RwSSqy4Y,14567 +ckan/config/middleware/flask_app.pyc,, +ckan/config/middleware/pylons_app.py,sha256=6MKTtBfNihL6A66xUYFngRxjnvQA9jJ4UzRFB_u0m6o,9757 +ckan/config/middleware/pylons_app.pyc,, +ckan/config/resource_formats.json,sha256=w5wjg-ARxnc6sbpYwUV3YO5NVOHbNFZv8nvJ8ofllow,5606 +ckan/config/routing.py,sha256=kjwTrmwjzJ9itIE2-2HyvDv4q0gESwVrP1ktWttv3lo,14076 +ckan/config/routing.pyc,, +ckan/config/solr/schema.xml,sha256=bmuwe_oz1PCSs29FqNA3AriDHQRgMTgZ4kEAbcQzBZ8,11943 +ckan/config/who.ini,sha256=TXZU1RZicA40zii0K7M0q4CEPT30kOyKDGVgkobJum8,897 +ckan/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/controllers/__init__.pyc,, +ckan/controllers/admin.py,sha256=L800_qCp1xDQyaGpGNw_DRcTo9nRCrCVoAbQ1FaFrsY,9068 +ckan/controllers/admin.pyc,, +ckan/controllers/api.py,sha256=9zZBD9rgVFs_gP03-igj5Sk78R2V4ZFIdPUsw3_GZRc,25554 +ckan/controllers/api.pyc,, +ckan/controllers/error.py,sha256=WRQYnPBwcLcK8-1a097WQBMGlGO6R_22TIeNXs-aCXw,2609 +ckan/controllers/error.pyc,, +ckan/controllers/feed.py,sha256=0ti-sNRwk1mUkDUlzvNkgaxgAcm56xxTAcjq3hmEQjA,22497 +ckan/controllers/feed.pyc,, +ckan/controllers/group.py,sha256=IBnz4Fxivu6Gp2R14yOFcUtrcg-qw0nn0O-7U0KF3W4,37028 +ckan/controllers/group.pyc,, +ckan/controllers/home.py,sha256=jB1ty0TzQFRZrvJTw0pyF266S-ZUzprWurbJKrs0vSo,3417 +ckan/controllers/home.pyc,, +ckan/controllers/organization.py,sha256=9wfrOEGdUkk60Q0BYrp8U0QSFSuNyEOr6hc3HLEfuFY,1054 +ckan/controllers/organization.pyc,, +ckan/controllers/package.py,sha256=EolPH2Sx6iDBSXpegbCFCIqTFC3i8ybKZTntflWG0fo,67137 +ckan/controllers/package.pyc,, +ckan/controllers/revision.py,sha256=OWsENfkOVrCI_gmLu-s8TP-xT0mSnAWVNbPrunPTggc,8157 +ckan/controllers/revision.pyc,, +ckan/controllers/storage.py,sha256=uHL_du_Kz6oHUHLuk8kUEgbOpyVfnVsaoDqNo7aUeCU,2908 +ckan/controllers/storage.pyc,, +ckan/controllers/tag.py,sha256=5lBPNcRmOGek7xEvZPrmFmzdPlUEJ5FIQNQu6ohOo2k,2436 +ckan/controllers/tag.pyc,, +ckan/controllers/template.py,sha256=gv5rMaCiiSVj9larcJLjIm3ZNIMfeFcHoAmLzUZo5Ww,1485 +ckan/controllers/template.pyc,, +ckan/controllers/user.py,sha256=MdJztiVOs5UJSkAWDfVpfnwYiIraXPUCHvKd3Fizh6U,29156 +ckan/controllers/user.pyc,, +ckan/controllers/util.py,sha256=QSv7PPQWIVhP-8qlCxuykQLnc_pGGJ8FJriPuFHgGAE,1378 +ckan/controllers/util.pyc,, +ckan/exceptions.py,sha256=IVX4ArLOr_WEbBebk-oGPDGVs11qL4znl9fCOVZsa7w,673 +ckan/exceptions.pyc,, +ckan/i18n/__init__.py,sha256=O2SB6K6Dm0bQVTtWNsr1I36va9h7mFwWYZlRoGwxxXE,84 +ckan/i18n/__init__.pyc,sha256=9A7WfE9mbhj45MQd9QGlFqOCjb_F4OxYRxyqAMXwVD4,145 +ckan/i18n/am/LC_MESSAGES/ckan.po,sha256=pWJyjekDOA6Uxj9fhwok119ZBlF6B19FjVS7PEBuLYc,184124 +ckan/i18n/ar/LC_MESSAGES/ckan.mo,sha256=KWYZY9CotfMOL5rM-nZd8vRwHC5m4VgdJ2VasxFSQnQ,91619 +ckan/i18n/ar/LC_MESSAGES/ckan.po,sha256=Kll0XC4ZapYmji0C0LnENe80-PqTeg5Bg4NIsNBS7zk,171798 +ckan/i18n/bg/LC_MESSAGES/ckan.mo,sha256=UX5RkgrBLwDSx6MkIwd99Zfgp56JcXUCr8rgEPnLK20,98178 +ckan/i18n/bg/LC_MESSAGES/ckan.po,sha256=xfaJNHSRZR-2AK17Z5lEYJ1_928_vAKcGkg1cEiFeCU,177970 +ckan/i18n/ca/LC_MESSAGES/ckan.mo,sha256=ptFp1vPlzZKY7SP_0zBX6tzad9Ihfr_0syhKoFk0epM,80076 +ckan/i18n/ca/LC_MESSAGES/ckan.po,sha256=JzBV3hGmkVMlW1bn2hvLDWt7fQmFK2tvL5MQe3pmfgg,166507 +ckan/i18n/check_po_files.py,sha256=uBqhZVTmQ9FE0R4SxaVPYpprMVyWd3RWBDxXeggGZVg,2819 +ckan/i18n/check_po_files.pyc,, +ckan/i18n/ckan.pot,sha256=5CO_ufVjyMIt9fjGPAn_dX5vPS-4__z4_K1n77opm10,131460 +ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo,sha256=uArNEMEubi87r7DhxNe2ZKwpgtJoIFqKbWa2fuu3Nq8,81908 +ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po,sha256=DKVAJnoM8IrU96xEYZEhKfMNWE-XgMlVT-cI_oBaQ9s,168903 +ckan/i18n/da_DK/LC_MESSAGES/ckan.mo,sha256=n5JoKJ8py4sIw0u-rYY1MRjHPm1dEwNzypbEiYhNYyA,76823 +ckan/i18n/da_DK/LC_MESSAGES/ckan.po,sha256=6nFIt-ki5vsJK8yooD_pDm3HkqC_DslX36VSJj4FLGI,156271 +ckan/i18n/de/LC_MESSAGES/ckan.mo,sha256=oyb2x_h8RpnMgzr3gfOGkSoLeaEUPd6bgD_DUArv9_k,81029 +ckan/i18n/de/LC_MESSAGES/ckan.po,sha256=zMyaRASu-YIklxpF2J9Lh1z_8O0UYJOkKCaIRA7JUxo,167524 +ckan/i18n/el/LC_MESSAGES/ckan.mo,sha256=ZG9Mmkg16TGi1xRXllTcvBkOoNQ3dETLJUkeWwb2HlA,109880 +ckan/i18n/el/LC_MESSAGES/ckan.po,sha256=at_KpxKz0EEzcxalzdOkWYftKeWOTo0jPlt98wJqEQc,196499 +ckan/i18n/en_AU/LC_MESSAGES/ckan.mo,sha256=6scyOEZ_rW9kv2T4q3tMw5vGDMRnBGD5Pjv8tx_Llws,74532 +ckan/i18n/en_AU/LC_MESSAGES/ckan.po,sha256=ud8uaIGR_oAIG2E4VHjMLDTkiciguf_0W8982FIZF2o,158458 +ckan/i18n/en_GB/LC_MESSAGES/ckan.mo,sha256=auKRNc45Sd81gnUmnRRG3GAQatBG2t3gn-tyZosbvBc,74536 +ckan/i18n/en_GB/LC_MESSAGES/ckan.po,sha256=6hd-6qx9bh3rkPfuCY6sLbcbqpuy-fE8cqpAQsrzg9Q,159812 +ckan/i18n/es/LC_MESSAGES/ckan.mo,sha256=6g3RYsuNBYQVXOilGg-56Oqo6VfcDdGFGEqiZqmgWYg,81445 +ckan/i18n/es/LC_MESSAGES/ckan.po,sha256=q83wLWFWK-6v_b7EDrilaBLcrVQUqfFWns8NdA5sVbs,168091 +ckan/i18n/es_AR/LC_MESSAGES/ckan.mo,sha256=llFSqr164m8v_mJWRrV_I3RSkP3OZAllMbQgR9D6LoE,81364 +ckan/i18n/es_AR/LC_MESSAGES/ckan.po,sha256=EwBtll0DlHHuZD9LmDJnBzO-tlmNnd0Qdpo2Gqn71iM,167856 +ckan/i18n/eu/LC_MESSAGES/ckan.po,sha256=pkfz4y3DpafNatbhMlU9S-0krtxtwKKYeCUtv1XzvXk,164338 +ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo,sha256=w4GgCyVnntp9mbUbcRmNakpLibmCXsVqS5npwrJlId4,75570 +ckan/i18n/fa_IR/LC_MESSAGES/ckan.po,sha256=Zww9VsQUJ5Mf17yTVV0v3ykZZ2zhhCnYUj1Swq1mjU4,134145 +ckan/i18n/fi/LC_MESSAGES/ckan.mo,sha256=T-G5YENDskDViNxDEcbnf-1-r0LtNNrUT3SOYhUfG0Y,78742 +ckan/i18n/fi/LC_MESSAGES/ckan.po,sha256=RNipfCiMALuykzaahF1IDs3rx_7X9h8qE7NpZVQI_F4,164178 +ckan/i18n/fr/LC_MESSAGES/ckan.mo,sha256=cOSGWABdP5Wvrxrk5d79z38X9sOtxELUBCavEKCQ-4U,84083 +ckan/i18n/fr/LC_MESSAGES/ckan.po,sha256=VzR32pDdx_soXZwlZnnQIusajfCnvmP4bEYoba8B-WA,169914 +ckan/i18n/gl/LC_MESSAGES/ckan.mo,sha256=zfxzhRy-_l-hchKsMkE8qnTyewGYl8ru1XPwbxOiv98,76430 +ckan/i18n/gl/LC_MESSAGES/ckan.po,sha256=kfct68QdkD8QkvUGLSEpKOw97fzR-yBUlDxhhkrbKz4,139494 +ckan/i18n/he/LC_MESSAGES/ckan.mo,sha256=0GH4JKRKH-lHc1Zv3CiO9TnrR8erB5NK51I843CYGwQ,87583 +ckan/i18n/he/LC_MESSAGES/ckan.po,sha256=x5UBAbyXicS2Ys-PYqMgNTShID6UAWe9syujur4Kj4w,169927 +ckan/i18n/hr/LC_MESSAGES/ckan.mo,sha256=NZWwGXfwLVU3BPFiJBc5ENX5jEp-WSawQC9pR5kzLek,78398 +ckan/i18n/hr/LC_MESSAGES/ckan.po,sha256=TkbeVwRqcN0MJ2y123-GjJnZstaLF700pmX80NCqXr0,159092 +ckan/i18n/hu/LC_MESSAGES/ckan.mo,sha256=lJLg1mDemVTjkA2HJVKUgTXmWjSlW8Ho6yU5KP_5BCE,76155 +ckan/i18n/hu/LC_MESSAGES/ckan.po,sha256=FBMtasiBjqp7qfXeetPccys2L13Fk7woIaGol_PUzFc,139567 +ckan/i18n/id/LC_MESSAGES/ckan.mo,sha256=e9Uhzbp2dXR7Pc6mHjaekW4YGSC-U1oBn--vtFzqvDk,75167 +ckan/i18n/id/LC_MESSAGES/ckan.po,sha256=7n6QJx3cq3VJojGcEcqtmg-Iszo_gE4rNeByT86OUFc,140511 +ckan/i18n/is/LC_MESSAGES/ckan.mo,sha256=p9kj4NwbCqEeACW7R-0ZvORwoz7Ug4ibtYmXCVZOnJg,79412 +ckan/i18n/is/LC_MESSAGES/ckan.po,sha256=LdiFKT-nPzVUXtXGfeKtxfpxaLLeLkSw2OUwbex6uFA,163307 +ckan/i18n/it/LC_MESSAGES/ckan.mo,sha256=B0ZdBGejWMOg9T4qLWojjtkDDBntKobBTaXt2jvLvRs,79331 +ckan/i18n/it/LC_MESSAGES/ckan.po,sha256=fKDBkRSAF6iq-7nZPLQfp6cZBboQ7TOHJyRSaQVTqtI,163605 +ckan/i18n/ja/LC_MESSAGES/ckan.mo,sha256=NB_8oVKv3anYCy638ZbDg5r6IXQA9QytUdLxgMw67BI,86998 +ckan/i18n/ja/LC_MESSAGES/ckan.po,sha256=ipS2mKcb7lcWJ1tsPPiCdQLHMqpdmvMmwM-g9WBMHiM,172825 +ckan/i18n/km/LC_MESSAGES/ckan.mo,sha256=YLCKtV2OPDvWK3gr_rjCm_IPorpjrOMt8wVKth4ViEo,84289 +ckan/i18n/km/LC_MESSAGES/ckan.po,sha256=vW5jtWaq50TmKFDj6SAKP-E-eWIsotrYC0Et14DeayY,145810 +ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo,sha256=u5HzGNlaaeOvsiGY6aPJ6FoiI5TEjIhadhHyDTzGirk,80671 +ckan/i18n/ko_KR/LC_MESSAGES/ckan.po,sha256=yWZYuAJIH6rQmYt3vAoN4_M_ai7DnRdJi9kFynTU3W4,165609 +ckan/i18n/lt/LC_MESSAGES/ckan.mo,sha256=5ZgWkepjxfGpUM1eLMwK4i0uLkXrKmCBTCW16Y0l6ec,78221 +ckan/i18n/lt/LC_MESSAGES/ckan.po,sha256=9iEzFvj2sT_PMVFI-LIkilsuDEM0TTzTzBuepfXZ-V0,150164 +ckan/i18n/lv/LC_MESSAGES/ckan.mo,sha256=j3wqA_q3YQCHYyYLPX4ySOBG4z1Oi5T_FdNBkxdqQY4,78878 +ckan/i18n/lv/LC_MESSAGES/ckan.po,sha256=vuJasQCOKYrUS0txX7DWJVGQUltvjarrGzaPjJFLh1w,163717 +ckan/i18n/mk/LC_MESSAGES/ckan.mo,sha256=mdxouqDg2Fz0fxr_4_xPLRzpvmTCXQXq_NG4RhHlE1A,105301 +ckan/i18n/mk/LC_MESSAGES/ckan.po,sha256=PBsNJE__G2_iJ3kmLx6oH0kze_VurYvtZ27YCVKGACM,191834 +ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo,sha256=oEtJjvNS1c32QWAKEfniaMWYx2BstyNAmQUa_dL-_Bg,100782 +ckan/i18n/mn_MN/LC_MESSAGES/ckan.po,sha256=2HjCbQk42jeOlJ0PrfZHmNekUAGARmXIX6vN81V_LXI,185965 +ckan/i18n/ne/LC_MESSAGES/ckan.mo,sha256=qLOO4DdLAGBhWnGxuix_KLjh1iJXr4xgQ8bgq2tovfw,74796 +ckan/i18n/ne/LC_MESSAGES/ckan.po,sha256=dt3wkYGaQgE07WCtNs0BJzRsr_vtXGm0Nqhutg0Edcg,133463 +ckan/i18n/nl/LC_MESSAGES/ckan.mo,sha256=vq41NYCep9mlmA1fv7H_5zkL7kbefrwh2IxJFXYRDnM,77487 +ckan/i18n/nl/LC_MESSAGES/ckan.po,sha256=6nPK75sKzN5Q69UaJXrAOfhyZr7b-zxBeqEeHeIioSo,161878 +ckan/i18n/no/LC_MESSAGES/ckan.mo,sha256=gBExb7blOQ2_NWoIaESrWswOnCn4tgE3u5D1xsXFfps,76782 +ckan/i18n/no/LC_MESSAGES/ckan.po,sha256=OtkU1kYpo_FVGHqlr0F-hYuLO0i2MLJhwuSK_bMIxfE,162205 +ckan/i18n/pl/LC_MESSAGES/ckan.mo,sha256=k_Mhz6vk-QhRhrGGa1R_2rqONQs-RCLhsNg-kLEAh2U,77222 +ckan/i18n/pl/LC_MESSAGES/ckan.po,sha256=U_Ihx67ti-p1M4zpIdZw1ucBa32-YPdmviUVw2ekahg,139447 +ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo,sha256=hvMluKvU3pCggxyTskUzs31SfQYQtKTnCboxVdZVOtk,81020 +ckan/i18n/pt_BR/LC_MESSAGES/ckan.po,sha256=SvmguZpbXuTdpxclrBDkYRqZeKaglijlMdBR2Y5QRRA,166808 +ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo,sha256=R3JuIrO9eVcj7iP1SHjGITEw01VzkCrwppku8EWiuR0,81428 +ckan/i18n/pt_PT/LC_MESSAGES/ckan.po,sha256=mAO-KVCHqol7BlJOwHV54gRSUH1eK7EIeQSer33b2Po,165886 +ckan/i18n/ro/LC_MESSAGES/ckan.mo,sha256=qKzVfWUPbp0U1aQjs-WMNgHhW2QeVVa38Zf7Ss21f4o,78826 +ckan/i18n/ro/LC_MESSAGES/ckan.po,sha256=4mJE8eH1vfKLc-zEGm2npSrpBQWO42avKP3DcEwoxTw,151860 +ckan/i18n/ru/LC_MESSAGES/ckan.mo,sha256=2PImFqBt-zdqoNJy2VIp70ddkZdUuTRKXiCek_shAwM,97589 +ckan/i18n/ru/LC_MESSAGES/ckan.po,sha256=XlnqT6yJyVxwAXtYbB8vvl9zYesNV0Z_XqUIlQ5nMZ0,177080 +ckan/i18n/sk/LC_MESSAGES/ckan.mo,sha256=8IOstmUgtdK3hqUGnbJgT-6zZbrnWS6HrOUUTwWJzTw,80257 +ckan/i18n/sk/LC_MESSAGES/ckan.po,sha256=v6RigUjXS7Kyhb3UXJS4rRay9_SMgMtx9p8Bv8bHZ6k,163901 +ckan/i18n/sl/LC_MESSAGES/ckan.mo,sha256=KdVYXV1bnXCySQ-2FNjGjtg18uZWyen0ch9KSvj4iMA,77969 +ckan/i18n/sl/LC_MESSAGES/ckan.po,sha256=AW1WCAXYM1TKLdLw5zUC4e_O82_bFuPOSGeP8fZVvaI,162102 +ckan/i18n/sq/LC_MESSAGES/ckan.mo,sha256=po-7-D9qspZseCQXncX_kR_sglshHrCqSTLGSg4TZvU,81052 +ckan/i18n/sq/LC_MESSAGES/ckan.po,sha256=ijMxi6tyrs6l3mgtt_CJzjEPW8Whs0aHldYmJA8Hm7o,161400 +ckan/i18n/sr/LC_MESSAGES/ckan.mo,sha256=8N9HmxZKhRddLpiY4U6u8SpmJSs1jQbIpSBhzxceyqo,80697 +ckan/i18n/sr/LC_MESSAGES/ckan.po,sha256=Koa0JkpTDTTkJoO_W1dF8jrL2UXCnVvkNT_XB1iMNsE,143655 +ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo,sha256=vuA1E-60jZehQRCZTu9dLzPXFkJPOXQWlrk3ZF1Z01U,76577 +ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po,sha256=VfXakyd9VdsjOOpD8bC6IDZpyI9YF5QIlvnmEePznC8,139534 +ckan/i18n/sv/LC_MESSAGES/ckan.mo,sha256=Nbl_Xn_HPNVmGQwnVcGDyDCrPlZ59ZLtT2M_NjciBWE,77194 +ckan/i18n/sv/LC_MESSAGES/ckan.po,sha256=LfPvn8-MnB7Af3HsXuPqhlWcihXJ7P2Ab_H2cEPdzvI,161395 +ckan/i18n/th/LC_MESSAGES/ckan.mo,sha256=LE_8zkE05GCbAHlcxH9zFHgdkzGHFhMBeJj43Ux0fXQ,105640 +ckan/i18n/th/LC_MESSAGES/ckan.po,sha256=qMjzygIP6rlchb0hOs0cC4gx844Vx8drmkh0Uhr1iak,185892 +ckan/i18n/tl/LC_MESSAGES/ckan.mo,sha256=waAtN2h9OSmhrVFSsaUrttpwAQ2-otqy_brgBnLX--g,74591 +ckan/i18n/tl/LC_MESSAGES/ckan.po,sha256=FVbEt9qDVYZUmCTp15Cb7BdHlbYWDItdRkO7raxGpWY,133329 +ckan/i18n/tr/LC_MESSAGES/ckan.mo,sha256=v_zEiFV35b_aJz7wblJxXJIBZlabBkWkLTxEW8G5bx0,74920 +ckan/i18n/tr/LC_MESSAGES/ckan.po,sha256=8U-WFOivoSN8-cUMx3CJ-bVcq3rk8R0zGULxRlNy9VA,137888 +ckan/i18n/uk/LC_MESSAGES/ckan.mo,sha256=w0NLw4GaO48DnAm75glYejT4f8U1PhrJ-VWLEZO_dYA,76420 +ckan/i18n/uk/LC_MESSAGES/ckan.po,sha256=qfAS1SmEd5R7Wz0Bxa40gU3NQnOFithAn5pyMKHz-TE,133619 +ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo,sha256=DTPZ7Rt104cCfU5Q860NVXjk9lDWa9OQeO-iDcyKjYY,102594 +ckan/i18n/uk_UA/LC_MESSAGES/ckan.po,sha256=uMzzr_y715KryViWLQqQAKdeO0620UI2jrDHOiC_P_I,188306 +ckan/i18n/vi/LC_MESSAGES/ckan.mo,sha256=wSkFaeYbQxWID_bISEPz-S03vuNHtr2Nyg0-mNGllmQ,82473 +ckan/i18n/vi/LC_MESSAGES/ckan.po,sha256=wNWpG5Pui59YnLBevS9qRoLL5e9GwgWSUq3R2Cq1O5M,162278 +ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo,sha256=1kdy97k-4_fxKEcg11TTHL1L0tv4gsDjKeE0h9yzj6A,72187 +ckan/i18n/zh_CN/LC_MESSAGES/ckan.po,sha256=cgWJ7k1Q7nTzSyKyW4dgLV2o_sFKb8UjhkHWWOxtI8w,153418 +ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo,sha256=GXRyonm9jbhQEviiJXCNPB6iwb8DHh24BS_hVgfj4DM,72165 +ckan/i18n/zh_TW/LC_MESSAGES/ckan.po,sha256=kapVSAwdGxt9oUQOq4PksMt9Y5lehPJVvXDPEOiUhpc,157917 +ckan/include/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/include/__init__.pyc,, +ckan/include/rcssmin.py,sha256=6vmNEWx7Y2O-ReyyJiA7iLn4RiGFnjwX6nx2-khmzns,12506 +ckan/include/rcssmin.pyc,, +ckan/include/rjsmin.py,sha256=bHaKYZL2vqa5jSSM9DiEVCgn7RHsJE47VkelB-6YT64,10719 +ckan/include/rjsmin.pyc,, +ckan/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/lib/__init__.pyc,, +ckan/lib/activity_streams.py,sha256=1V80WZ4-n6mLoXNUSSxRfPjglPDaedmS7crWEiyPSAM,10374 +ckan/lib/activity_streams.pyc,, +ckan/lib/activity_streams_session_extension.py,sha256=ciBGqv5aeGPD1YyMEjgWEKMXHXZBSJaq_PPMBhyxss8,5881 +ckan/lib/activity_streams_session_extension.pyc,, +ckan/lib/alphabet_paginate.py,sha256=y21HmOJxtDv7_epu0nl-gKiGiNR_3ceuk0fq9rsi9P8,6795 +ckan/lib/alphabet_paginate.pyc,, +ckan/lib/app_globals.py,sha256=ahCUpVDjmBZ4imUums9Qq8u5uXQ33quriberH2ayc50,7034 +ckan/lib/app_globals.pyc,, +ckan/lib/auth_tkt.py,sha256=PO2BTMrgus0exfz4ds2ngefnJt6JEBJJufUHRI8XsDk,3177 +ckan/lib/auth_tkt.pyc,, +ckan/lib/authenticator.py,sha256=5dSSl8l3gVlp_twvQ8afFpLAJnUCCejV_9vlQFJqUhk,872 +ckan/lib/authenticator.pyc,, +ckan/lib/base.py,sha256=-6E1PtLpdzZjFN4i7WN7i41JI130qciNMvSAplWzo5g,8733 +ckan/lib/base.pyc,, +ckan/lib/captcha.py,sha256=NPFUYsPQ0XD65QyDyF2gRaYALBOKBFrR08H7zmCEtaA,1343 +ckan/lib/captcha.pyc,, +ckan/lib/cli.py,sha256=hMzACF-TqyPlKKPzjvFJltLb1pOp_UqNvhfhARPOhu4,91669 +ckan/lib/cli.pyc,, +ckan/lib/config_tool.py,sha256=1js4d1FzqdMLHQRuCweYNGzuXTxUQw4bVLT25rGiOa0,9997 +ckan/lib/config_tool.pyc,, +ckan/lib/create_test_data.py,sha256=HdiB6IDwq-cSiuQa05WEh_bo9KqvWFROlPEHwPmD-Es,38277 +ckan/lib/create_test_data.pyc,, +ckan/lib/datapreview.py,sha256=v8G88tYQgY3HzpqH6YAjYFk-rAhSDXUeHtoDZ3H9hf0,10604 +ckan/lib/datapreview.pyc,, +ckan/lib/dictization/__init__.py,sha256=3AsA1VurrWi3WpqdOuJ9DS_HgsCi-TWtmvu6PRtj0xA,4575 +ckan/lib/dictization/__init__.pyc,, +ckan/lib/dictization/model_dictize.py,sha256=gdRzSdbmAaspwYnEZ6Nrz5uU4_43AuPrRMoHe9Egnhc,28313 +ckan/lib/dictization/model_dictize.pyc,, +ckan/lib/dictization/model_save.py,sha256=DCSaLfJyhGLxomRUqvxWaO_CEUTIi5-5DS-nJhM5Cy8,20725 +ckan/lib/dictization/model_save.pyc,, +ckan/lib/email_notifications.py,sha256=Sj6hG96_tLL5s7f947J1BEmmdlg0f_unnsS3Yz2i8-Q,7863 +ckan/lib/email_notifications.pyc,, +ckan/lib/extract.py,sha256=cSZspjEPyruNeDVDlBN2cUelCzpoD0hmp6pduCIt2ZQ,1514 +ckan/lib/extract.pyc,, +ckan/lib/fanstatic_extensions.py,sha256=6Gwt8qp9M5PkhC70thW6B0il6raL90kg9mYbq_-O7ws,4005 +ckan/lib/fanstatic_extensions.pyc,, +ckan/lib/fanstatic_resources.py,sha256=sXZsCZeovRO7omV6mnbfNWHx0IduyTOM7ioIkVijvrw,9279 +ckan/lib/fanstatic_resources.pyc,, +ckan/lib/formatters.py,sha256=oddF2JQMzYiKxcN8tgXWg4-X7cyX2z7bjMSq6rFso14,6182 +ckan/lib/formatters.pyc,, +ckan/lib/hash.py,sha256=ysSZdnshyQY1tTymWmPsbBavmAehK_NZ7xSEKg5eE_o,860 +ckan/lib/hash.pyc,, +ckan/lib/helpers.py,sha256=UIVNe-wS7b4-0qjvUG2mBijzuaaA3rdRZ0DRr9t_x7k,85364 +ckan/lib/helpers.pyc,, +ckan/lib/i18n.py,sha256=y6GRFnGxdoBXOCmIUnGgsDAmN9JMqsAILSOYBmjvMlQ,15057 +ckan/lib/i18n.pyc,, +ckan/lib/io.py,sha256=KWFBQulebbYeULDOnt2_2xDGPNFG_McD2Z48Fxad-fw,1759 +ckan/lib/io.pyc,, +ckan/lib/jinja_extensions.py,sha256=O6CuVm2qSx9OoKkg4h34SbRjqEOpWLVbZ0Etta2dOd4,11753 +ckan/lib/jinja_extensions.pyc,, +ckan/lib/jobs.py,sha256=kUsqP36ZHwFzS56kOyvyyITDIDmesPt7wwimJd4MFGA,9626 +ckan/lib/jobs.pyc,, +ckan/lib/jsonp.py,sha256=8CYQ6jphHrKXEdKLLvUjksVcYWyXKb1euMipNdZ5uvs,877 +ckan/lib/jsonp.pyc,, +ckan/lib/lazyjson.py,sha256=byNRmCLjz6cMnYEEr3Y7GSMy6g9IRAz43U4tOcwPWW0,1768 +ckan/lib/lazyjson.pyc,, +ckan/lib/mailer.py,sha256=YEJ_rkbjZfH1YZG4naYUO4I9QZ6lHGuzPq1zGDkda_Y,6445 +ckan/lib/mailer.pyc,, +ckan/lib/maintain.py,sha256=NjnMlACEH8wzmL9etxL1tz1QECGUmTFAZK36TCUaEj0,3605 +ckan/lib/maintain.pyc,, +ckan/lib/munge.py,sha256=KMJ8iFxQ0Co-nEvs1h-9epRj-ctBzU6Ey4_rm5otIrg,6672 +ckan/lib/munge.pyc,, +ckan/lib/navl/__init__.py,sha256=QX2OvSEWwTQKYNfdD9FGwotDgNic7S-SXXTiy68IFso,39 +ckan/lib/navl/__init__.pyc,, +ckan/lib/navl/dictization_functions.py,sha256=Xb7Tuo12oRoyjGPFM8ureDeFodDMqXcBmT3R9X2JllE,13700 +ckan/lib/navl/dictization_functions.pyc,, +ckan/lib/navl/validators.py,sha256=4YXO6C1ZXRspKH-A62qeIn4_6uc0BezpZAwh5AgA6tw,4832 +ckan/lib/navl/validators.pyc,, +ckan/lib/plugins.py,sha256=ewi0-66Sp6hxpvUsz-YTq8dQIri6HKJmRXzOw1wgg1I,23247 +ckan/lib/plugins.pyc,, +ckan/lib/redis.py,sha256=HAKDAhsTZ26Fx7G9xlxRuIX0QBuPLsk6XCdkq4twyQg,1428 +ckan/lib/redis.pyc,, +ckan/lib/render.py,sha256=Fia-cEk75bOvxcRa463QaAoC7k_YG5DcJgV4VwlsoUY,1484 +ckan/lib/render.pyc,, +ckan/lib/search/__init__.py,sha256=KY4dxo5Kw0ava_JiBV1XAqwVqYE2gIpA0Iu0xPqeOaY,10620 +ckan/lib/search/__init__.pyc,, +ckan/lib/search/common.py,sha256=NxfSkXYDRwt9dMObJ4-l1JpXziP_rbkcZb6rA9ffEBY,2763 +ckan/lib/search/common.pyc,, +ckan/lib/search/index.py,sha256=rtbAbCgSr-sCKMcUpuUilGhStsYwWiLYaQXxfOxSvWg,12460 +ckan/lib/search/index.pyc,, +ckan/lib/search/query.py,sha256=AF6HYZz5zOtfLjnO2atVI7NKr6MkExGtGHLeruq_PO0,15548 +ckan/lib/search/query.pyc,, +ckan/lib/uploader.py,sha256=mv7GqRR_7Z3PPKXBCkHAq2Xh0MrGW6FhCXG0u5PPwTY,11356 +ckan/lib/uploader.pyc,, +ckan/logic/__init__.py,sha256=HwexJrqfAvr0D4Yq0jHUdSl5MkvtsL6RIBGQPiD3XoE,24236 +ckan/logic/__init__.pyc,, +ckan/logic/action/__init__.py,sha256=sFHQdyi5TEUif2AILsYXwKaLGngm1fkIbuwdsRrDgBU,2105 +ckan/logic/action/__init__.pyc,, +ckan/logic/action/create.py,sha256=lWU2OtuP3AgXzSIYmSBCjRNpq4VW8JgoWvEJajbnjZw,53038 +ckan/logic/action/create.pyc,, +ckan/logic/action/delete.py,sha256=GTWKpd6WC4cLPBCS_R93tBWH0BIS9WiV1iG0EagvyR8,22411 +ckan/logic/action/delete.pyc,, +ckan/logic/action/get.py,sha256=qINnSh_YN_nb8kpyW7oVui627r1szZ7R-194jlRRiRQ,120618 +ckan/logic/action/get.pyc,, +ckan/logic/action/patch.py,sha256=y5MjGnq5weHhdVIqXi9bG2mhMNQpcF8vnGx6U6oDy-4,4064 +ckan/logic/action/patch.pyc,, +ckan/logic/action/update.py,sha256=4hSDoeiIwW8lBCZmUR7zj5nn-OucxyoeQxZHQc2Hvz4,40636 +ckan/logic/action/update.pyc,, +ckan/logic/auth/__init__.py,sha256=g_cz05G4oW1bP_TZUH4RUCTdjAD4LnBRZ-lTbZx0TgE,1437 +ckan/logic/auth/__init__.pyc,, +ckan/logic/auth/create.py,sha256=WOtfEm45zPtpbYl9KRnQhY8eFH9i1XB8LY9VPeVAgas,8640 +ckan/logic/auth/create.pyc,, +ckan/logic/auth/delete.py,sha256=XnOAW0aQD8-4zcTmmPGLr4qn66UKYuG_N7Q16eN1N_M,5190 +ckan/logic/auth/delete.pyc,, +ckan/logic/auth/get.py,sha256=-J3d-zjNKL1SNVG7jW8vYN2BvbMNs2pwvN5UCgYMtFY,10640 +ckan/logic/auth/get.pyc,, +ckan/logic/auth/patch.py,sha256=iE4agE2vOik0eUyVPWbOBS8CultpREavYdSigJAG1Kg,494 +ckan/logic/auth/patch.pyc,, +ckan/logic/auth/update.py,sha256=Q08TsYCJ6F4D5chX62UH324x01AKtOI1ZKslc9X_t3I,9755 +ckan/logic/auth/update.pyc,, +ckan/logic/converters.py,sha256=71fqrpMSjEez6vT_RaUS2F8FmN8JFaaNF2E6A3Le-4U,6342 +ckan/logic/converters.pyc,, +ckan/logic/schema.py,sha256=BerGflfTAt0l7sFeaIgQmy4YMTz8yBVI9cYoJKIO9MU,26376 +ckan/logic/schema.pyc,, +ckan/logic/validators.py,sha256=oM8VOJrguJCnCtcZfvSTlzO3tMhjwGcyH7WEMpUfbFY,28463 +ckan/logic/validators.pyc,, +ckan/migration/README,sha256=9TeIkkVZ1spFtsf8u17Yd07cEOk8cDBz0f3Qci6P6cc,107 +ckan/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/migration/__init__.pyc,, +ckan/migration/manage.py,sha256=BEXzjzTHGcQLIjRMShxUs1ZXActrYEmOYrGO5U02G3k,118 +ckan/migration/manage.pyc,, +ckan/migration/migrate.cfg,sha256=EC2J9yey2mtqihKbDv3Z3PbB7ok72IGT7xtSMZKdO1g,987 +ckan/migration/versions/001_add_existing_tables.py,sha256=gOXorziQyisByPYInV-5qVtnVx07OuIEe8Ns2aZa3S4,4717 +ckan/migration/versions/001_add_existing_tables.pyc,, +ckan/migration/versions/002_add_author_and_maintainer.py,sha256=PZnqQ9JqqCWv7Sg2CeIGLyhG0R5HKiqKv3lXSABSveE,1068 +ckan/migration/versions/002_add_author_and_maintainer.pyc,, +ckan/migration/versions/003_add_user_object.py,sha256=y77gVIi9bRGizOHClsdDTgMj1o8cf6gtdheG4IeLGtE,629 +ckan/migration/versions/003_add_user_object.pyc,, +ckan/migration/versions/004_add_group_object.py,sha256=UkFRvGdmiLfGoj3dZKaumrnZ9YZ8Rg35EgaEG6gg0BA,1060 +ckan/migration/versions/004_add_group_object.pyc,, +ckan/migration/versions/005_add_authorization_tables.py,sha256=zVZeJdNWlv-yI-NpEKFV8zUT819MGD5gZlaTWjy_VRg,2043 +ckan/migration/versions/005_add_authorization_tables.pyc,, +ckan/migration/versions/006_add_ratings.py,sha256=mbGa6yNxDzKh0fVfMjYBzQQaUCyN17OUdrKYw1acQqM,970 +ckan/migration/versions/006_add_ratings.pyc,, +ckan/migration/versions/007_add_system_roles.py,sha256=XsRytaiRzl8vmoe2GNlRX_7nbUqm-0fvFRpvfzz0A9E,674 +ckan/migration/versions/007_add_system_roles.pyc,, +ckan/migration/versions/008_update_vdm_ids.py,sha256=IPAufBPhQXZX5VxUWV3MftzhteHRRp73Dd2M-F8drUU,3701 +ckan/migration/versions/008_update_vdm_ids.pyc,, +ckan/migration/versions/009_add_creation_timestamps.py,sha256=p_oRFgEcloKfnlvN_ZcUAMv9GrwLpA3MVS5FeacMGs8,841 +ckan/migration/versions/009_add_creation_timestamps.pyc,, +ckan/migration/versions/010_add_user_about.py,sha256=n5Tido-zbncwP6rzUGF0YaPWJnk3elS_smQ-etbkGGA,402 +ckan/migration/versions/010_add_user_about.pyc,, +ckan/migration/versions/011_add_package_search_vector.py,sha256=kqEE5gKAOG_DVcEjsI8Pm116hq8Hf0WzIZeJ2ogvz3Q,749 +ckan/migration/versions/011_add_package_search_vector.pyc,, +ckan/migration/versions/012_add_resources.py,sha256=bs1tnAwzhTn31cXfqEnbDuVOUN07tSTvHw0AnC5wjEo,3269 +ckan/migration/versions/012_add_resources.pyc,, +ckan/migration/versions/013_add_hash.py,sha256=X07LBa5VAok3REvWaPfovOUsXlfq3OQpY-EBMnRnss0,399 +ckan/migration/versions/013_add_hash.pyc,, +ckan/migration/versions/014_hash_2.py,sha256=RE0B2cSZNgWbqb17jwW_k6oLuQo_p1M-tqbSqpMH5Lo,597 +ckan/migration/versions/014_hash_2.pyc,, +ckan/migration/versions/015_remove_state_object.py,sha256=cgQi8tLdmmsXGCsJUZ9mHNsMphlMSaPwv8dViGAlS2w,1147 +ckan/migration/versions/015_remove_state_object.pyc,, +ckan/migration/versions/016_uuids_everywhere.py,sha256=LdKB_3AkLdV07zXt3s1Kh7rnZ-i3mkg9bemK4V-Btz8,8474 +ckan/migration/versions/016_uuids_everywhere.pyc,, +ckan/migration/versions/017_add_pkg_relationships.py,sha256=3tvwLoNrxYxEJ8gCt7VhT2ox1PG4HSS8JNQ6jWji_Cs,1490 +ckan/migration/versions/017_add_pkg_relationships.pyc,, +ckan/migration/versions/018_adjust_licenses.py,sha256=MYR_HQW3xe2FEEvX37qKewX3MeODAKGjmkCns_4QjsI,9677 +ckan/migration/versions/018_adjust_licenses.pyc,, +ckan/migration/versions/019_pkg_relationships_state.py,sha256=Ld6jNZvd-lKgU06amzUamoJNwkwnrI6msr1_hBF3jkY,842 +ckan/migration/versions/019_pkg_relationships_state.pyc,, +ckan/migration/versions/020_add_changeset.py,sha256=2HanlBfl8M30K5gDbzgkEWBeJDrTkxel64nixWyJh8g,1609 +ckan/migration/versions/020_add_changeset.pyc,, +ckan/migration/versions/021_postgres_downgrade.sql,sha256=UnHeXBxLprvGMkyUpnWs3W3zNJkOmrvAt4V15hZg_zw,6 +ckan/migration/versions/021_postgres_upgrade.sql,sha256=n9vJ9p-s8Wk1mEKW26_X3kxW7xeRyHS2-g_C4ywnpzs,3435 +ckan/migration/versions/021_postgresql_downgrade.sql,sha256=UnHeXBxLprvGMkyUpnWs3W3zNJkOmrvAt4V15hZg_zw,6 +ckan/migration/versions/021_postgresql_upgrade.sql,sha256=n9vJ9p-s8Wk1mEKW26_X3kxW7xeRyHS2-g_C4ywnpzs,3435 +ckan/migration/versions/022_add_group_extras.py,sha256=DpnUnOt7fS0DVicm2Nyp_ZfYZ-EELmZimVdWObLQlaU,1437 +ckan/migration/versions/022_add_group_extras.pyc,, +ckan/migration/versions/023_add_harvesting.py,sha256=a0bW5teiqkxRp3ZAc3qZVZWGthFnqEjXQcRcsVz_WcM,1589 +ckan/migration/versions/023_add_harvesting.pyc,, +ckan/migration/versions/024_add_harvested_document.py,sha256=JZkt4DUstm19dJyhKaLKchGOHnvaEGeo-BkXYoPuVmI,605 +ckan/migration/versions/024_add_harvested_document.pyc,, +ckan/migration/versions/025_add_authorization_groups.py,sha256=5DcPIc_qGeZDQxrXwDBQjR0vEw-dBZPbQ15rUB_-P0g,1963 +ckan/migration/versions/025_add_authorization_groups.pyc,, +ckan/migration/versions/026_authorization_group_user_pk.py,sha256=7ZTXeYvr32Q4ufV72AMD8SV9D3NEYvMYlPfEZcGGGJI,1052 +ckan/migration/versions/026_authorization_group_user_pk.pyc,, +ckan/migration/versions/027_adjust_harvester.py,sha256=JmLGYu_LO0JFSs4y-SUEADeMKR1ASuQ6QbIVPK8fYRs,1215 +ckan/migration/versions/027_adjust_harvester.pyc,, +ckan/migration/versions/028_drop_harvest_source_status.py,sha256=dtWwgrHYkRn2IJJklZH11x6GmhI70StrDJvWbN4RckE,409 +ckan/migration/versions/028_drop_harvest_source_status.pyc,, +ckan/migration/versions/029_version_groups.py,sha256=63s7EcbQTWWUanXpuvKGAqpMKnscUOWTHOsrOwFvCM0,7243 +ckan/migration/versions/029_version_groups.pyc,, +ckan/migration/versions/030_additional_user_attributes.py,sha256=rGeoT9Rgi2MKkD8rSLgNetUMZAU0F98LXLjmfjJzg9I,685 +ckan/migration/versions/030_additional_user_attributes.pyc,, +ckan/migration/versions/031_move_openid_to_new_field.py,sha256=xZXvvORiWtjvnutVlRBzyd6DNMiCkvLUp-sIz3faq2c,1238 +ckan/migration/versions/031_move_openid_to_new_field.pyc,, +ckan/migration/versions/032_add_extra_info_field_to_resources.py,sha256=J4_JeTCbu-P5JBgoDtHCKtSYP9QAZZLb7BEMcaUw2RM,509 +ckan/migration/versions/032_add_extra_info_field_to_resources.pyc,, +ckan/migration/versions/033_auth_group_user_id_add_conditional.py,sha256=12EoV53PXtNfQNUkUzEfmv0seqd6d1oEsggQlybe5PE,848 +ckan/migration/versions/033_auth_group_user_id_add_conditional.pyc,, +ckan/migration/versions/034_resource_group_table.py,sha256=fLLg8_4scWNHplp2lCetW27ugMBE44ImPjQyx3ITVZg,7357 +ckan/migration/versions/034_resource_group_table.pyc,, +ckan/migration/versions/035_harvesting_doc_versioning.py,sha256=7Fmlg30PzKtmn6nvZZUvI4G7GuwL1CFTh7rtXCjPtzY,1697 +ckan/migration/versions/035_harvesting_doc_versioning.pyc,, +ckan/migration/versions/036_lockdown_roles.py,sha256=wqecZ_xuu-bzqxwBWv1gd8DKfis_ExZS35uwZERGqm8,1485 +ckan/migration/versions/036_lockdown_roles.pyc,, +ckan/migration/versions/037_role_anon_editor.py,sha256=7Ao1aji1KySedA7d7axFXdb43EN1XkbocF2mKi6lCf8,1747 +ckan/migration/versions/037_role_anon_editor.pyc,, +ckan/migration/versions/038_delete_migration_tables.py,sha256=00xoOZGAdqjenS6bijdVaeGNNftttvzRZKcJEgTDHrk,203 +ckan/migration/versions/038_delete_migration_tables.pyc,, +ckan/migration/versions/039_add_expired_id_and_dates.py,sha256=ljGpjZScOkjFSCN9CBdGZ43SgC6j9jRRlwTRdnLol8c,16108 +ckan/migration/versions/039_add_expired_id_and_dates.pyc,, +ckan/migration/versions/040_reset_key_on_user.py,sha256=KE8BlyFsWsg55dt-nxoha3z4lLrjyQDfHVRnO0aSX_Y,368 +ckan/migration/versions/040_reset_key_on_user.pyc,, +ckan/migration/versions/041_resource_new_fields.py,sha256=28LKwKozbehky3ygFlAe-ecQyxFbz8Sf-GWBsR1YsgY,1022 +ckan/migration/versions/041_resource_new_fields.pyc,, +ckan/migration/versions/042_user_revision_indexes.py,sha256=LCvuErMC7DihLAQPAZohA5lkgyZfLhSLbDPbhSQTiWo,405 +ckan/migration/versions/042_user_revision_indexes.pyc,, +ckan/migration/versions/043_drop_postgres_search.py,sha256=afTyJ5UwshswGNnAoCJgP7BToa7IKIcKpoVL7kdTJSE,359 +ckan/migration/versions/043_drop_postgres_search.pyc,, +ckan/migration/versions/044_add_task_status.py,sha256=3NT20XYNz-m-chG107zh6rsqc2a2Pzwa564ORVgNNNg,734 +ckan/migration/versions/044_add_task_status.pyc,, +ckan/migration/versions/045_user_name_unique.py,sha256=u8lIPozgSfinNtRhl7PLtnIlVdsJkrm0PGXZevbZpq4,630 +ckan/migration/versions/045_user_name_unique.pyc,, +ckan/migration/versions/046_drop_changesets.py,sha256=kIGdKdizIZEccVjhiFHnga9MS7FzGcjTbB9nLHxr5RE,323 +ckan/migration/versions/046_drop_changesets.pyc,, +ckan/migration/versions/047_rename_package_group_member.py,sha256=Z3itsUZzIyDN3UyQaVNM3GsNJOS6Ce4q_pFshNGYx1U,2949 +ckan/migration/versions/047_rename_package_group_member.pyc,, +ckan/migration/versions/048_add_activity_streams_tables.py,sha256=jEwrd6y5lL4phDttf4NK9xN7eJ_XsFdc7-4h1JCSFA0,799 +ckan/migration/versions/048_add_activity_streams_tables.pyc,, +ckan/migration/versions/049_add_group_approval_status.py,sha256=KMozKhz7vp1SnUbUw7amcVDRMZPBKf9S7DXggpWBrNk,354 +ckan/migration/versions/049_add_group_approval_status.pyc,, +ckan/migration/versions/050_term_translation_table.py,sha256=Cl_TQs6OIL3-029kGAzMx0pWJBp6tSZKz-9E7kvpvmQ,434 +ckan/migration/versions/050_term_translation_table.pyc,, +ckan/migration/versions/051_add_tag_vocabulary.py,sha256=_VpPSVpfDiaRVcjxogZT7VpvW2BBWrlSmQD03Z9BFts,844 +ckan/migration/versions/051_add_tag_vocabulary.pyc,, +ckan/migration/versions/052_update_member_capacities.py,sha256=lby7QNBf_qZ6fNV8Rznsi8Ahd1U1TowXf9TVCri8QYg,435 +ckan/migration/versions/052_update_member_capacities.pyc,, +ckan/migration/versions/053_add_group_logo.py,sha256=AqGTWVBJcAtWHteJJYT9TZaqkn7RpFZQMBvqwTIOPn0,283 +ckan/migration/versions/053_add_group_logo.pyc,, +ckan/migration/versions/054_add_resource_created_date.py,sha256=ZEqIyGJu61q9GJvp9253h5Kz5egsZYAna_mwOtDui54,281 +ckan/migration/versions/054_add_resource_created_date.pyc,, +ckan/migration/versions/055_update_user_and_activity_detail.py,sha256=1MdzvDuauxfAAPYe4-QWKj7oakVq8AXL_KHJVt4Wip8,253 +ckan/migration/versions/055_update_user_and_activity_detail.pyc,, +ckan/migration/versions/056_add_related_table.py,sha256=7i8OqdTLvqK1xKVdPqCM2dmWR9RPHgvskX9_0yKV7mM,921 +ckan/migration/versions/056_add_related_table.pyc,, +ckan/migration/versions/057_tracking.py,sha256=BDDyCmQUOKHC0RQW4bh_545NyCtS8i-wTXWm7viKddc,1223 +ckan/migration/versions/057_tracking.pyc,, +ckan/migration/versions/058_add_follower_tables.py,sha256=tRVN8Bn0Wjd8S7ZzsJKvtx1Rm7EXRALnG__9lmqbVS4,1434 +ckan/migration/versions/058_add_follower_tables.pyc,, +ckan/migration/versions/059_add_related_count_and_flag.py,sha256=5UvDwncpS5X4fi6yZiYv4Hc2h1hOhk65Hqf70gfrz-U,395 +ckan/migration/versions/059_add_related_count_and_flag.pyc,, +ckan/migration/versions/060_add_system_info_table.py,sha256=wm8-GVRREb1MlX3x--basegaPYAYzPA3V4_hks53kIM,993 +ckan/migration/versions/060_add_system_info_table.pyc,, +ckan/migration/versions/061_add_follower__group_table.py,sha256=3NbaEvyH9Jc1MXNW1YbIlYxFv-mi8CvC8kVH08u4Bec,807 +ckan/migration/versions/061_add_follower__group_table.pyc,, +ckan/migration/versions/062_add_dashboard_table.py,sha256=ELR7Va1Ozs4trk00I3mn3EF5vffcnC0eW7BxLeNVAE4,545 +ckan/migration/versions/062_add_dashboard_table.pyc,, +ckan/migration/versions/063_org_changes.py,sha256=8c662V43rExwn7DpORQFz9GHOITQTQBUGrAwfbiTjGo,715 +ckan/migration/versions/063_org_changes.pyc,, +ckan/migration/versions/064_add_email_last_sent_column.py,sha256=Up_f1MY2I5LZAtUV5iCxqI0Q7pq0QP8AJwC7F6YjtUQ,311 +ckan/migration/versions/064_add_email_last_sent_column.pyc,, +ckan/migration/versions/065_add_email_notifications_preference.py,sha256=MCFruPqMvlW-e4ZJR-1PByPBKg-eAh0d8-p9SL_mh84,296 +ckan/migration/versions/065_add_email_notifications_preference.pyc,, +ckan/migration/versions/066_default_package_type.py,sha256=wdVnhb1MUjZKAkjJ4rPjl2l62zTb3e2hPaSCWTmI1Qw,200 +ckan/migration/versions/066_default_package_type.pyc,, +ckan/migration/versions/067_turn_extras_to_strings.py,sha256=ZUnAURpSXwTRUUmTKtge-MilE_9rbLyB8EhIeA5mlpI,1216 +ckan/migration/versions/067_turn_extras_to_strings.pyc,, +ckan/migration/versions/068_add_package_extras_index.py,sha256=tGmBs3hSc92QsEgfZ0XJuvbPK6_im9CEAdCPKJOzCpY,226 +ckan/migration/versions/068_add_package_extras_index.pyc,, +ckan/migration/versions/069_resource_url_and_metadata_modified.py,sha256=NF1hrNRTvm_fA__P8nAu3OjcSeD0evkD0bYgsTzFKnw,2109 +ckan/migration/versions/069_resource_url_and_metadata_modified.pyc,, +ckan/migration/versions/070_add_activity_and_resource_indexes.py,sha256=8Oo9Qde1rInF7_IV1__p2KLYsZG2eIQwpSxxg-P6i3A,485 +ckan/migration/versions/070_add_activity_and_resource_indexes.pyc,, +ckan/migration/versions/071_add_state_column_to_user_table.py,sha256=Udk07aws0VfFUyQv9ZWIq9pJU92sBjcrQWRJnw0DYmk,225 +ckan/migration/versions/071_add_state_column_to_user_table.pyc,, +ckan/migration/versions/072_add_resource_view.py,sha256=I-jEDZ5N3QtXF28EhK8FLtZftMLveiT0fIBJhroqv5I,638 +ckan/migration/versions/072_add_resource_view.pyc,, +ckan/migration/versions/073_update_resource_view_resource_id_constraint.py,sha256=AXsUtccc1rlI5Crq81kokI8S56PO0QJWT2WijlzXc1o,420 +ckan/migration/versions/073_update_resource_view_resource_id_constraint.pyc,, +ckan/migration/versions/074_remove_resource_groups.py,sha256=kAZwbPJy68GNHE73Ot0PLsOUPZxMVvgLEnik3XsE2dY,970 +ckan/migration/versions/074_remove_resource_groups.pyc,, +ckan/migration/versions/075_rename_view_plugins.py,sha256=Q1oEYztsIMqJT79LaBJI6nxkqvVd81Cs_vVgNfNOy_0,331 +ckan/migration/versions/075_rename_view_plugins.pyc,, +ckan/migration/versions/076_rename_view_plugins_2.py,sha256=iK4te0tZI4f-P9layhtu3_QV3kSyfCe2ZVNjxNv6zY0,321 +ckan/migration/versions/076_rename_view_plugins_2.pyc,, +ckan/migration/versions/077_add_revisions_to_system_info.py,sha256=vrvD-bpKgVv2SDSOg_vymKYjv-2x1s6qGzS9N42k7b8,744 +ckan/migration/versions/077_add_revisions_to_system_info.pyc,, +ckan/migration/versions/078_remove_old_authz_model.py,sha256=GPSyz3itkHF2ONqY7HeL-Itu378vjJmpYKfkxMvbdiA,348 +ckan/migration/versions/078_remove_old_authz_model.pyc,, +ckan/migration/versions/079_resource_revision_index.py,sha256=9F7bkNYehbKgRwIESiQgRLSF9qR-8-1ZZ2zng2kczWI,205 +ckan/migration/versions/079_resource_revision_index.pyc,, +ckan/migration/versions/080_continuity_id_indexes.py,sha256=EmYDMSOu7jviHhU-Wu2I-IHT1m5mwaPc1MIVvChv1-I,509 +ckan/migration/versions/080_continuity_id_indexes.pyc,, +ckan/migration/versions/081_set_datastore_active.py,sha256=AGrESSmjzB7Os488CWFtSQr02WAgoOLwm3JWM_tnno4,1977 +ckan/migration/versions/081_set_datastore_active.pyc,, +ckan/migration/versions/082_create_index_creator_user_id.py,sha256=Yf0JVdViZxtIQaScj4lFGN79tMcg3cCa5vl2QFaBE9M,206 +ckan/migration/versions/082_create_index_creator_user_id.pyc,, +ckan/migration/versions/083_remove_related_items.py,sha256=wdX42yw95FFv8TvBmtMC80S5uO0Wlb47wlYF5cschaU,660 +ckan/migration/versions/083_remove_related_items.pyc,, +ckan/migration/versions/084_add_metadata_created.py,sha256=sn_vgrOsHNWnbK_vLwrPWBsWKi3YRmlc8YsWiCCN2TQ,513 +ckan/migration/versions/084_add_metadata_created.pyc,, +ckan/migration/versions/085_adjust_activity_timestamps.py,sha256=-wdxkvUFlup2kGEFHzuTNYi_w2jUTwIemrnNxOw_dTI,739 +ckan/migration/versions/085_adjust_activity_timestamps.pyc,, +ckan/migration/versions/086_drop_openid_column.py,sha256=EuB_oocufCY6JYUD38qh35BbkXbkecWdsweXQZpGLMI,226 +ckan/migration/versions/086_drop_openid_column.pyc,, +ckan/migration/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/migration/versions/__init__.pyc,, +ckan/model/__init__.py,sha256=vwBqkOKKZv_fJDTHXlCZN8-wywVec5NrdGRIousmRB8,13124 +ckan/model/__init__.pyc,, +ckan/model/activity.py,sha256=VBt8Nss02Bfm-vpQZS4oYdI9nVfgO3balUR3Gim99MI,11436 +ckan/model/activity.pyc,, +ckan/model/core.py,sha256=a2v-5nAi7uYmgYoKe6kOEwL5GeJZOtmhFy8gV3CTlpc,1480 +ckan/model/core.pyc,, +ckan/model/dashboard.py,sha256=hlK812-u0VNh6AVGdVkY5z5naLupdNVIefQ0sX7kkh0,1415 +ckan/model/dashboard.pyc,, +ckan/model/domain_object.py,sha256=yqyoT_W85YwdzxgbOG6MmEK41cZLvYx828X6Z391P2E,3030 +ckan/model/domain_object.pyc,, +ckan/model/extension.py,sha256=91zS2sZg8poDJfeH4uPWSu6_hDWO6bckqP06HsUSZSI,3552 +ckan/model/extension.pyc,, +ckan/model/follower.py,sha256=IscZ5ObEQDIKAbfFNyZN6B10ilFEWf2Ge5-9i89fXAE,6057 +ckan/model/follower.pyc,, +ckan/model/group.py,sha256=Lkk_vRyzAqWk1wQ3V_VdmDO-RZTJRff1ONaLAzbZ3ZM,17172 +ckan/model/group.pyc,, +ckan/model/group_extra.py,sha256=nqEwxXfaEd1f-VEa8rL3Wu2e6oJoUWBkKD0aCYf0mw4,1934 +ckan/model/group_extra.pyc,, +ckan/model/license.py,sha256=2cWRsDpEhTIIX-g6nsAWTUZZydkK9z4BxTPORu39rsY,11360 +ckan/model/license.pyc,, +ckan/model/meta.py,sha256=BmVHubesoJjWlH7f5VetNhKAiSh85mW8QBG0Bwt_75Y,5188 +ckan/model/meta.pyc,, +ckan/model/misc.py,sha256=5WslnW5eesD-mM45JKsK0XKmMFJdUzqw1R4FSLOJLjU,429 +ckan/model/misc.pyc,, +ckan/model/modification.py,sha256=nAK0WGSciv6bcngpuOn8WPrrqT3m7_FLAD9pGwxTg-4,3107 +ckan/model/modification.pyc,, +ckan/model/package.py,sha256=BbB47p8AgNQG6V4I9bwjOSy80KqICqQbyM6zv6ktjaM,25795 +ckan/model/package.pyc,, +ckan/model/package_extra.py,sha256=YL6aLVgAEMjWHi6QFfjs1Kn1zH2SFTLEt-V-Qp5TXOY,3157 +ckan/model/package_extra.pyc,, +ckan/model/package_relationship.py,sha256=183xgbVnhXUZcPFzfBaQ85e9HG0IQJo12OvCQmMzf-0,6882 +ckan/model/package_relationship.pyc,, +ckan/model/rating.py,sha256=L7jW6Up5JwGzrz-6ph0EVMf5wyhkSWYAYRlLyVE-QXE,1334 +ckan/model/rating.pyc,, +ckan/model/resource.py,sha256=shfiDrS1GqJgW3XHHjdCKuT83nV_HlAL4oQVRJa9pNc,8103 +ckan/model/resource.pyc,, +ckan/model/resource_view.py,sha256=DwEZqK66Rm95I8NStqSYecNgTvW5ZZim0t40aPkacN4,2245 +ckan/model/resource_view.pyc,, +ckan/model/system_info.py,sha256=k1JphhINqin3e12BJIaqRzg-EKghJTO8aCyfYf3ADrI,2710 +ckan/model/system_info.pyc,, +ckan/model/tag.py,sha256=uQiWoKN-zi5ElGO9AQKzU1d91IrcgXk51IZMIJZQL2c,12085 +ckan/model/tag.pyc,, +ckan/model/task_status.py,sha256=3bR6y6HnAsUTTyKjBVGXQX6p2ib-l1qnQrc6z9XHckQ,1174 +ckan/model/task_status.pyc,, +ckan/model/term_translation.py,sha256=lsmfxHHv1I-KRIrnic5bn7yPnFho0hXI8MCZniojMQo,381 +ckan/model/term_translation.pyc,, +ckan/model/tracking.py,sha256=acusfFlez9RtLQcwF9j-siaK76eB7goYrFUgzPV_ngo,1837 +ckan/model/tracking.pyc,, +ckan/model/types.py,sha256=Ft5o52rbSeCxrpY9dlQAKTVng_lXPt_7QAK9zshQcG4,2970 +ckan/model/types.pyc,, +ckan/model/user.py,sha256=A7CwMrOvo0b7hqM69xumIl4yNLQs7GguO2muTBJfZMg,10087 +ckan/model/user.pyc,, +ckan/model/vocabulary.py,sha256=BXykfaJi4_OKgTtDANqXIolfdKo3KhgT81k7i4JCJyg,1201 +ckan/model/vocabulary.pyc,, +ckan/pastertemplates/__init__.py,sha256=YBbvD4mXIekZjqZfI2NEeuDGHAVpyahmfB_almUnsLI,2848 +ckan/pastertemplates/__init__.pyc,, +ckan/plugins/__init__.py,sha256=zt93vqVcvEXrkUJa3fhEceXVzMPVFy9gTlOm0AY2GLI,105 +ckan/plugins/__init__.pyc,, +ckan/plugins/core.py,sha256=__mwtOax91XghC5rqmTeendHdRI8huaPnJrajEyY0RE,7051 +ckan/plugins/core.pyc,, +ckan/plugins/interfaces.py,sha256=L5_-_v_OHMWoiVsFai2X0fVGPOuQ4aCnK9anA5UfdIQ,62005 +ckan/plugins/interfaces.pyc,, +ckan/plugins/toolkit.py,sha256=z5mph_v2w3ROLkAtRxq43ErW7qBbTCG92nHaGDw7_Nk,18251 +ckan/plugins/toolkit.pyc,, +ckan/plugins/toolkit_sphinx_extension.py,sha256=ayritBF1mYao4KNqA8Tm0zuPF60pt-A2fmoj1v9sCMc,6869 +ckan/plugins/toolkit_sphinx_extension.pyc,, +ckan/public/base/css/.gitignore,sha256=y3VD3WrpEWcMroJCrBLOZYLatV8xoWkNBqdF3H-oDuU,11 +ckan/public/base/css/fuchsia.css,sha256=oWVfLF88FWpEcmQgdePcaXGpLTAUxCgBUbGfmx7Q9_M,223119 +ckan/public/base/css/fuchsia.min.css,sha256=UcDtJBty4ttcxU6Q0LWSMfFHwhzVjo37z4sVGQNNzYQ,186626 +ckan/public/base/css/green.css,sha256=-swgE1K1UCuDNfEUBsR0alrYHY8HWoX8cZLK3ruGjCI,223119 +ckan/public/base/css/green.min.css,sha256=prXt0FL-A5XbvcmV5AulSFabNWmTqC63Hqj8a7GvfEo,186626 +ckan/public/base/css/main.css,sha256=5X-nlVM9DJNrpaU7l6X1CrpCARDnxSCcUC3tUE2ThcM,223119 +ckan/public/base/css/main.min.css,sha256=wtcjUme5oT15DZrS7OQChzzPQzXILNV81KzqjWG4OY0,186626 +ckan/public/base/css/maroon.css,sha256=pbq7E14LEk3F-RrVfp3IPvAvwOfwIfItKU9f9Hbumoc,223119 +ckan/public/base/css/maroon.min.css,sha256=pXw9ZEMBzeYQpf9PNFB6iqTW0iCQDnOmgSxE_4o-kcs,186626 +ckan/public/base/css/red.css,sha256=DZTmyk3MSkqZFhH9HvcgXdrbmznPwfJlVA1Y3zqps04,223119 +ckan/public/base/css/red.min.css,sha256=EXdYz9G4LqRc5plR188Rls6PJ9Q4e3VHRfb1hpoiZcQ,186626 +ckan/public/base/i18n/.gitignore,sha256=JWxB4_pQtrgM2VB9fxjD894xitN0Aa1OQrikbTW0m9I,186 +ckan/public/base/images/background-tag-ie7.png,sha256=M_T2sA0sMesVAVhY79Q8vrV17_i6NzqBidsbDGrgdbI,1271 +ckan/public/base/images/background-tag.png,sha256=1emlRVPGbaVPSJ7Mh1yJRvife2_RxDrXNHMrlPlGbVM,993 +ckan/public/base/images/background-tile.png,sha256=U6THus5r7mR85S5ooK_1X8w0McWp9DlzEFlJJE5skaE,225 +ckan/public/base/images/bg.png,sha256=OSMYFIcPHY1_71gzJtsB1EWrJdkqbAqgIt7wivU42i8,3911 +ckan/public/base/images/breadcrumb-slash-ie7.png,sha256=enUOOy3YjbKpWrH2IgbPqjdywxKzaTfSpgxd89XIGvQ,3050 +ckan/public/base/images/ckan-logo-footer.png,sha256=ayH7sASl4nuKnKq-Kv2lMhuDyMjiy4gxKbFxBqJv6OQ,435 +ckan/public/base/images/ckan-logo-white.svg,sha256=zirSc3Ew-Ym_6iwmZuBfcqfiomyOTD4lZJONNO4tB-I,5054 +ckan/public/base/images/ckan-logo.png,sha256=SShg2YAhgrQTIw8YyXAkU_NomNMetP1FJJsTr21BE_w,626 +ckan/public/base/images/ckan-logo.svg,sha256=KWAqN37l9X6g6tdJBEhLHAIxH56IfmWvkwvNlkYn8cU,5006 +ckan/public/base/images/ckan.ico,sha256=NprQjzhUirkb8p55gd5SovyMafbf3D7pdpNASVF-HYQ,1150 +ckan/public/base/images/dashboard-followee-related.png,sha256=LlCEu-xg_3HFHl2xlT4S7gDeXntW16C1OZBBNpDwWNI,2794 +ckan/public/base/images/dotted.png,sha256=TOPWzPIWZ7wIdMvJLhTO8tKaBnPgq0hYJrtr-NXx7BE,74 +ckan/public/base/images/editing.png,sha256=2rf-ZJkAp0CSywqhyC1Pi3qBQfKUvOCsQRqE8fJSUNk,203 +ckan/public/base/images/full-width-nav-right.png,sha256=K9kG_OrKjBSzvUMvqEA-lCE_qtnZYpK-HklrNswpJow,99 +ckan/public/base/images/icon-search-27x26.png,sha256=C8GaP6UD1TzS9kLfyD7CuVt-hE1faj7zp-dr9IawKDg,318 +ckan/public/base/images/loading-spinner.gif,sha256=bxi_mwJVVMMgYfh6NBrEqtm--O33X8--jNmVWcrbzTc,1849 +ckan/public/base/images/nav-active.png,sha256=xVXRk9kD59AG_Nx_ptlhRZP5ICnCegpFB1qmh5ie6Pk,227 +ckan/public/base/images/nav.png,sha256=1-AB0l3NAz0pIckmymFZ380sBxZnIpIdcEf2mIbtTis,2742 +ckan/public/base/images/od_80x15_blue.png,sha256=wvVJilQ4NEejavw8ks95s71_TzVETZDQxrVc4IUGaJ0,163 +ckan/public/base/images/placeholder-200x125.png,sha256=G0JROPU-Rv4k2M8NNk2b5EkZa93KOFn__0wvQCaA8IM,435 +ckan/public/base/images/placeholder-420x220.png,sha256=Evw6jX2fh3t-ul3rCUG7TY-AS77idbgU_AfUPs3tUeo,895 +ckan/public/base/images/placeholder-680x400.png,sha256=qefDPyJ0z1UKxlKbLw9D-YRCnvrA0w5VPAyFmhM83_0,1532 +ckan/public/base/images/placeholder-application.png,sha256=wu7Qx_u3jLnpPjOqc2wXG_LMIUsa6hrYcOKIAx-DoZ8,3772 +ckan/public/base/images/placeholder-group.png,sha256=veTiST4xs6jMkVHkkEfA5KAwVzaFdbM8P-1rdmIc7xw,4033 +ckan/public/base/images/placeholder-image.png,sha256=EMUIkKWLqS5-QyeT9386cSz3P6y2tugQW0f6S-R9Uy0,4663 +ckan/public/base/images/placeholder-organization.png,sha256=4_hMD3tmfUNnSglo6OUqUGJiTbE_ELRw5oXE50GnPSU,3861 +ckan/public/base/images/sprite-ckan-icons.png,sha256=zZ9ZIXLEX7_-Qui-t-2w_wGFMzBJ_c-s_AQen-ujBqw,13523 +ckan/public/base/images/sprite-resource-icons.png,sha256=oUqzLo6VuVNmquf9SP5dh46_dL9D212rZK0ie-A-EYY,44581 +ckan/public/base/images/table-seperator.png,sha256=mM4k6W79y6I5phF8OPEy9M961bDP3Xt1J51CVOAzbgc,82 +ckan/public/base/javascript/client.js,sha256=EoKZRU4cAXN6EqhMFjYhGBR-UQWX5MvhmnJ5CFcRYyQ,11976 +ckan/public/base/javascript/client.min.js,sha256=UFxmDq9A8RUQdaWAT0-lmBYn8-wjEYPeJjnWVCaoGTU,3979 +ckan/public/base/javascript/i18n.js,sha256=70roPNwsUxx_ewsdI3z6f20SbBB7rlVuMgk_bPFDwPQ,2953 +ckan/public/base/javascript/i18n.min.js,sha256=FKUf_GAsK9poli7oJYIx542hGG8dmKQtnl38-0idbQk,707 +ckan/public/base/javascript/main.js,sha256=sWEKVlnr2JFaWKU0iARDD__NxGvwQV21LYF-8YvbZuw,2798 +ckan/public/base/javascript/main.min.js,sha256=rRw_XMPHcWVykCQbTQQ2nnaLdqXzIm27ZSYGig0mXTU,1391 +ckan/public/base/javascript/module.js,sha256=rn5B2vyp9OGXPtsBg9HILJ-RLhF3N0ut8CfvEQPZp6k,13150 +ckan/public/base/javascript/module.min.js,sha256=VJci4--C8jNqOTL3s0MyvGJvwZlUT8TZr-PEF_4gUh0,2732 +ckan/public/base/javascript/modules/activity-stream.js,sha256=DL2HvZe1wLHYgRmQLtzxW5EXKMNztLPKpygyWfUVwJ0,3263 +ckan/public/base/javascript/modules/activity-stream.min.js,sha256=_bVuYRAui9yREMWB-fR_CAxEVz-P-IAa4bDLZJNj9kE,1706 +ckan/public/base/javascript/modules/api-info.js,sha256=HBqBzeDKJdRMVEjpFrefOkbv-Hz89R9tD0iEjUPT_wg,3108 +ckan/public/base/javascript/modules/api-info.min.js,sha256=p8NjYHwFBMwBOhMU60hvfle_7JEIngLQL7q174MdB3Y,1231 +ckan/public/base/javascript/modules/autocomplete.js,sha256=nz-PO62o2tjgL78u57x1zEu8ZGMKCnZvnxRJjOMtjlg,8786 +ckan/public/base/javascript/modules/autocomplete.min.js,sha256=xoXSHnjAwAsHq81ls759_zyZ5RLKNNhEdjxKTePiTAo,3118 +ckan/public/base/javascript/modules/basic-form.js,sha256=-Sh42Eep5W_OsRVhBWd26Ksmjqyy92pyIMl1B3iu_fY,759 +ckan/public/base/javascript/modules/basic-form.min.js,sha256=z1cvttE14wYnUEjljf4QK5yzKnbTv2KZsyr_szHq1iE,366 +ckan/public/base/javascript/modules/confirm-action.js,sha256=jVda-wxYC4g8RbKQxYpUlsU51TGrOxIBvynbLmb9N5s,3860 +ckan/public/base/javascript/modules/confirm-action.min.js,sha256=WIufOTUOD_6kx2wPOF6loccZDJkSGdf3fyBr2P-Iaxs,1690 +ckan/public/base/javascript/modules/custom-fields.js,sha256=0vpyZfXYTVGIwVRe4u134GtJZp_hogbe51JxIWzLg7w,3167 +ckan/public/base/javascript/modules/custom-fields.min.js,sha256=mcQj3GI6bBdGipLT4vKHW1QsB19S84tBpMTHooD8OzU,1150 +ckan/public/base/javascript/modules/dashboard.js,sha256=dimUSGtTxVDuiDn75tWmbt0JV1slL7Af0XMib40KJbo,2273 +ckan/public/base/javascript/modules/dashboard.min.js,sha256=Zim9xsH9XKwJ2TqTebeOl0fcnmgBJPvc2NT-4EIscjs,1151 +ckan/public/base/javascript/modules/data-viewer.js,sha256=qXOqmhObR3BeBLvetri7dWTuHyA7tY6n_H15OflH6Rg,1574 +ckan/public/base/javascript/modules/data-viewer.min.js,sha256=JXG7NV6EwMkHSYjb3-VLb84GZxzDKpuqKe3L5yC9yiI,1036 +ckan/public/base/javascript/modules/dataset-visibility.js,sha256=9jnS49Bv6WNsFFzgubucddWEMkpGjID4Zs_gFecOzQY,968 +ckan/public/base/javascript/modules/dataset-visibility.min.js,sha256=mE2y_thnsd7l1NXfuPSLb4oTTwcQTyhmZvtBO2xqE28,610 +ckan/public/base/javascript/modules/follow.js,sha256=OWOe2lbeWw8nb7gNDlYTEbnjkY7Qd-KU7olayX2anss,2276 +ckan/public/base/javascript/modules/follow.min.js,sha256=URLMDg4d5I3qprZ_zbDHCcsgdW7tQYf2_3NVyfQ80Xk,1049 +ckan/public/base/javascript/modules/followers-counter.js,sha256=RAIRbRv12G0JjTcZdEV1NSo2K_XEM-J9Nj6qU0ydPG0,2708 +ckan/public/base/javascript/modules/followers-counter.min.js,sha256=cMkbFav5j31wrGJbun8eq2RvBVjyKxPBQpSylOJA3Mc,1179 +ckan/public/base/javascript/modules/image-upload.js,sha256=l-6718ZOJeg10kIXB3ZlKqSq3JdD9okxqE8e_fYec6A,8509 +ckan/public/base/javascript/modules/image-upload.min.js,sha256=6HkmbBfUTn3Rozc0n1Oz4Mf_5PVU_7EQzXQemklLJBs,4228 +ckan/public/base/javascript/modules/media-grid.js,sha256=YuCvpI-mkpoVlVb0vrCGhnjrL6HZbz7N917ZT54eEow,406 +ckan/public/base/javascript/modules/media-grid.min.js,sha256=LIi1_0nASYQuGZQEVkh2uTPjO1RDKbUnRo61yLIRchI,178 +ckan/public/base/javascript/modules/popover-context.js,sha256=Fce2V2Qb3PbngN3dprFjE07pnSS4ELCFUlfXm4D5euo,7359 +ckan/public/base/javascript/modules/popover-context.min.js,sha256=U5XJQvXYdyswscLUdmf-YTwiX5ozwrZJw9TY8oKp31g,4247 +ckan/public/base/javascript/modules/resource-form.js,sha256=zFjeqIr0Yb_tJbcsoiAfKAC-BCg7KABhuBYx20BtiCg,1688 +ckan/public/base/javascript/modules/resource-form.min.js,sha256=GQ-p0Ah9-WsrMIegvV5HJ8IDjmPBIh8RzBzgdr-p8EA,614 +ckan/public/base/javascript/modules/resource-reorder.js,sha256=uOpDqKqIrcVYwqwzQ7Tk-Y0ZcGtv2RiVGgsHkFqEXq4,4395 +ckan/public/base/javascript/modules/resource-reorder.min.js,sha256=vGVM-rqzZuKRjRB7CFfKJnEVo9XKFImr4ZgCafUvS9U,3188 +ckan/public/base/javascript/modules/resource-upload-field.js,sha256=KyR2sVSslcVPZnXjHZzaAmvSoytF9Uj-Q0APat45Ias,9093 +ckan/public/base/javascript/modules/resource-upload-field.min.js,sha256=4aVwN9eD6XVxgBMUdax5GHt7SZ1ls_UFd-VmMB8Up9U,3490 +ckan/public/base/javascript/modules/resource-view-embed.js,sha256=Mn6sHppN22hHlcr8858BDAFHjKjrSm1fZx_Gh8SlSdo,1207 +ckan/public/base/javascript/modules/resource-view-embed.min.js,sha256=nRgcnv_vf3x2mQKG42gFX2_2MF3GhwU0_R4xZa8recc,974 +ckan/public/base/javascript/modules/resource-view-filters-form.js,sha256=nNwlj9AsIBg49n99ShzRMXx-95OvxaPrLvNLQn1jIxk,3155 +ckan/public/base/javascript/modules/resource-view-filters-form.min.js,sha256=NjYeRjW692DiFHghTtC_VSvjo4nhcj751VOuPx6ewbY,2190 +ckan/public/base/javascript/modules/resource-view-filters.js,sha256=NPY2rhTbbBuXoIkzYTb_FGVFn6xAp6Dwjp5pzNzI_sg,5908 +ckan/public/base/javascript/modules/resource-view-filters.min.js,sha256=IshGclhMybi0aMRxP_DNysyFMVPI-Ls-qCY6aohDO9s,3763 +ckan/public/base/javascript/modules/resource-view-reorder.js,sha256=Ky4yu7zXK4OuB8mNCT8Dwfny3Eq2Kxhksk2zlwxShck,3947 +ckan/public/base/javascript/modules/resource-view-reorder.min.js,sha256=MEUCm-RL0tq7L5OWhw_zSo3h6e4p27kUNbmFejAKcgQ,2813 +ckan/public/base/javascript/modules/select-switch.js,sha256=IL3L9r3IqySE94ARDxc-yg8K2MaRugdhUl5sMbGznE0,761 +ckan/public/base/javascript/modules/select-switch.min.js,sha256=uAsnaZo41HvC5uV_akMczn0l4_1qMaTii8WEZ-tAJV0,173 +ckan/public/base/javascript/modules/slug-preview.js,sha256=Bs3qH_lvvtSK4I-_UohGm8svuYMakzTjkbeeuKdNLLY,2312 +ckan/public/base/javascript/modules/slug-preview.min.js,sha256=MZvahH0Qvm-_P3bcvleemATPgclrFTAKDoA05vhooFQ,1152 +ckan/public/base/javascript/modules/table-selectable-rows.js,sha256=d1VM9pPyKm_SUeTH4hggnOobRfTuGVdvJLma7tdDx0Q,2805 +ckan/public/base/javascript/modules/table-selectable-rows.min.js,sha256=-Rl-nEWBV7UkdsM4tzen8qVTejJ4OzzDaAJRtF_gO9Y,1545 +ckan/public/base/javascript/modules/table-toggle-more.js,sha256=EFRrTig8pTrJnJKIT2T7pYR5AoY6fZPcSrDVlBwHMK4,1853 +ckan/public/base/javascript/modules/table-toggle-more.min.js,sha256=Ks6D7OowQAzzRpnKkHq5us7gBCOZAIauXznPQqUFMSs,1079 +ckan/public/base/javascript/notify.js,sha256=dqIyniHUAhX_i-w4aleAnDv2jzK08T7DZdc8RAOMTfk,2109 +ckan/public/base/javascript/notify.min.js,sha256=tpWdwd4-Z3ojI74jgP8uk3U3tQU9T9fRCYuXmZ_lFQA,854 +ckan/public/base/javascript/plugins/jquery.date-helpers.js,sha256=b53eM0yPZGHKybk7Pids1kzwj9k7ut44hlVCyFcFsbU,1947 +ckan/public/base/javascript/plugins/jquery.date-helpers.min.js,sha256=rqDf5a8_0LnypB482ns5OqJ6X_o1KLoDt5Zw-yIAbLw,805 +ckan/public/base/javascript/plugins/jquery.form-warning.js,sha256=pxFemRfVZu7EZsVaAzwQsttZ-a8DdBXWmFfxkV8jC1o,1307 +ckan/public/base/javascript/plugins/jquery.form-warning.min.js,sha256=J5wVbkBv1up6nBrrCRZOcVML1TSjHbGIFBP-Ptq5N5Q,494 +ckan/public/base/javascript/plugins/jquery.images-loaded.js,sha256=RizjuVTfpUciEsR-N30fYe4xlT6lnf5v2a6Eyecsm8c,12785 +ckan/public/base/javascript/plugins/jquery.images-loaded.min.js,sha256=EZ_4jshE9WhaZjLK_JDjmdeOrJntkUNvV127g47pfoY,7691 +ckan/public/base/javascript/plugins/jquery.inherit.js,sha256=_GDgUOOvsZToQI7HEEbd5Qg2Xho7ANFReHtr62axMnA,1369 +ckan/public/base/javascript/plugins/jquery.inherit.min.js,sha256=tcdQQ0l9-7CYG4wUXzjvw8A_K21p1inX7_Pzq5mlSRs,615 +ckan/public/base/javascript/plugins/jquery.masonry.js,sha256=G-xiI68F0F8p6YYhbdGjrUEP5VpsHzHAIUAa2c4rHNk,63257 +ckan/public/base/javascript/plugins/jquery.masonry.min.js,sha256=Cz-ckYXdnM7BTIz5XQi3p2qvekyUBIVWpWRdz9d8xTU,34859 +ckan/public/base/javascript/plugins/jquery.proxy-all.js,sha256=oC0qQKcHpMu6O22drwbDKHbjgIffq7r3pwqZPtjKzz8,1302 +ckan/public/base/javascript/plugins/jquery.proxy-all.min.js,sha256=rZpPqS29DojNhlQk1FGy7lJY03q_pVrbTMqTX-b8hnY,472 +ckan/public/base/javascript/plugins/jquery.slug-preview.js,sha256=B-fiMMNzo8XrDaXdHNnuV5dQCZTrFx0wrxWiYcNIPpU,2556 +ckan/public/base/javascript/plugins/jquery.slug-preview.min.js,sha256=Ug00-p0zlWgvJ-UKmlEnK4BAXeSHVoQBgvgqllV_ltQ,1182 +ckan/public/base/javascript/plugins/jquery.slug.js,sha256=tSwM_kDRUge9NUPdp0RjOAQGgP71w4hvaEVc8U0_olc,2221 +ckan/public/base/javascript/plugins/jquery.slug.min.js,sha256=bKQDeqWevClrTXkH831K1ycq1NfsKWSyMfd94AAdC6o,981 +ckan/public/base/javascript/plugins/jquery.truncator.js,sha256=oGGzUaZdT3POtRpdAuUweznf0F-ihR5X7BZDlqZu1bs,5219 +ckan/public/base/javascript/plugins/jquery.truncator.min.js,sha256=_9FPabiQU-CocMLxpBo4ktLVsBnenxn-jktz9z1-iv4,2628 +ckan/public/base/javascript/plugins/jquery.url-helpers.js,sha256=Sa-DD6-LQPcajYvvn1EAbeEQfypE-AEvk0e2G3kX5FQ,9554 +ckan/public/base/javascript/plugins/jquery.url-helpers.min.js,sha256=dUrlDQ7hmye1wh1HQZNw6uaqS0JZrJWWIwHHFUBhJVI,7203 +ckan/public/base/javascript/pubsub.js,sha256=A6N-YSt00GCrVE6A0Q2xGPU_HksZ38jELUwx_mT7nHs,4388 +ckan/public/base/javascript/pubsub.min.js,sha256=xwR3cY3GTZ7Bhe1ctgOPyQGnscfyG2-jfmo7dLbb2I0,1050 +ckan/public/base/javascript/resource.config,sha256=c_mBlL3AN_8QxnsdW5Nq9chNnGdOe8wtvW_taGICvWs,1498 +ckan/public/base/javascript/sandbox.js,sha256=ne4x6EMn6D55PEaVTxBjRIm6P3wmSY-bT4GGTEBnmHk,3589 +ckan/public/base/javascript/sandbox.min.js,sha256=rKMhSqlbLBaDew0J5hTICBQwY1kYvSMHYnnO_rbm4sw,782 +ckan/public/base/javascript/tracking.js,sha256=wKo5kYGwm7XZ02JCaX4U7Rf5uY5-uC8VmEZ5DmkB22Q,733 +ckan/public/base/javascript/tracking.min.js,sha256=sygaE56JWfyWzCbqIpVt_zLoasZTYvEsUS8xBBRwQhQ,498 +ckan/public/base/javascript/view-filters.js,sha256=y5cz1NFBVhjCO5VEegRjnXagO9E2WZOjcVjqMgaF4hI,7148 +ckan/public/base/javascript/view-filters.min.js,sha256=Hy0ni4UrAFzLd9YvabRC_DBA_JUBGArG1Q34tAG02N8,3902 +ckan/public/base/less/activity.less,sha256=fBXXBjfa7VCikWMAylzTUExkiBUBnNqIf_ASvuvFjyI,4757 +ckan/public/base/less/alerts.less,sha256=K92N9DgJQEYlAv2K-b97LqX_RU0KgmzziYO_NRsrTIQ,252 +ckan/public/base/less/bootstrap-variables.less,sha256=P77d949htYvM7Bf4tEDP5gTRQuuH-cqpyxsth1LcxDI,27464 +ckan/public/base/less/bootstrap.less,sha256=dd7FI7CK8kz3fmxZTHraM0zuGnhNKSMMJMiyYSZ4XEg,1994 +ckan/public/base/less/ckan.less,sha256=binjenFtklq9nMc2Xt58spcJ-KzdqCKFD6OqofEngSk,2202 +ckan/public/base/less/custom.less,sha256=9NGeROksN2gKEomzhKU11vpTs0c4pVVe68ByzqNHDHI,73 +ckan/public/base/less/dashboard.less,sha256=-pjysaKb5R6gEpmpOnmR7yFUTF-1o9FyH0WFXjvtUMo,3086 +ckan/public/base/less/datapusher.less,sha256=XuqHILhPi6Cf0ahQgzMd8K5Q2Mgbe9TUazeKsREPhyw,334 +ckan/public/base/less/dataset.less,sha256=7v_mQX3g6YuqwBUaaQZrzOuxehmXnQFuOz9bmbuBPUQ,7288 +ckan/public/base/less/dropdown.less,sha256=ujRbpypnEp5y06W0tQsNezICKilyHpG5CyMQkRqSOnE,325 +ckan/public/base/less/footer.less,sha256=tJz93D8PbrGvmgBSuWJ1CgkKhMu2EnFPGacmLPSGvzM,755 +ckan/public/base/less/forms.less,sha256=C8j5NT-CHUH22PWQu2ILwZypMWwhlaxPbAFSXV75K4g,14910 +ckan/public/base/less/group.less,sha256=6YPTHKJT3_bE2NbYDVNX2MYnhHj6xYAZ7ev3_qnOAkg,642 +ckan/public/base/less/homepage.less,sha256=QG-0QaTmGIYaHovvOr-9hLr8Di7cfeGuPZ7EoXFsbaU,2334 +ckan/public/base/less/icons.less,sha256=J_QIcLci2trulncyQ8Yyka3dTKSbVkSHG2o2Rf97nLA,6021 +ckan/public/base/less/input-groups.less,sha256=iw0NS7AzlPlw467E2Hjq5jT1QbPiAX6g-ZWhSscAxjk,135 +ckan/public/base/less/layout.less,sha256=XTPQ1FiRpLq1n6yOFr-fDXY2ea2OvdCSo0yFUD_9sj8,5774 +ckan/public/base/less/main.less,sha256=MEo5-KSB9AWKQYYiiC9EWtuJsJ_hzdr6McQxIu4jiA8,75 +ckan/public/base/less/masthead.less,sha256=PnNJlWiUWnEW89tS13Wv8IVfw2taYMB1P_rgtZBCk1g,5893 +ckan/public/base/less/media.less,sha256=VeqUW1rPa3x-2XrwBsIiq76DK-8TpOfLuBCOfr5qOJY,2860 +ckan/public/base/less/mixins.less,sha256=PfJx9JK1JyRrNZOo4zqHF2oiihBAGQXHQRu8KizjrWc,4143 +ckan/public/base/less/module.less,sha256=SKBBAc2L49Kgo1AIIMLFF6PPdSrFfEMe-9CawiN9iTg,4469 +ckan/public/base/less/nav.less,sha256=Y7LhPLwstlzizF8YGViRIDF7gXfrezCzC8IROYevlL0,3890 +ckan/public/base/less/profile.less,sha256=AEn7q55AI-OYdj9bmTeVa1ij2IpKUkXiVhHBA_FnXg8,79 +ckan/public/base/less/prose.less,sha256=PW1fYZSwQk6_y5YsWXVEXHN2zb1RDL8zjt4PSukw02c,2310 +ckan/public/base/less/resource-view.less,sha256=Xe6LIl5gqePSeJ8h8juQvrENq-YnPrIrfnO3bSPzdoo,2170 +ckan/public/base/less/search.less,sha256=61mXUKw6JMzlC25qM-jFGRztdsKsUxBxC-ILmGQZjnI,2924 +ckan/public/base/less/tables.less,sha256=V5kiGoqt4KN6LA0WQFjDbrn-SbV5C-SXhGN7FclLf_I,1268 +ckan/public/base/less/toolbar.less,sha256=zPBJlgcUZZLtWyLHPOrzDJR_0v3hJQ2bhRZgVruzxgQ,2853 +ckan/public/base/less/variables.less,sha256=bJf0n3wtaMYjqkqzYEPB16ZFnV4Ls9V1VBDHRSsbS2E,3416 +ckan/public/base/test/index.html,sha256=K9AlF8G1GT99_AIUb-weqdRVqYbXhNG9VhCkfE_u69A,6510 +ckan/public/base/test/primer/index.html,sha256=4bYbyH39b1tNChVRqSZa4rOJbNFdKm7RaR79OqfXBBU,37967 +ckan/public/base/test/spec/ckan.spec.js,sha256=0EkTMR_Qvamg7qPJOpRaqplVzlhsszNNLRfbcvX5phY,1896 +ckan/public/base/test/spec/ckan.spec.min.js,sha256=ICXCgHbKOpO4u80KCCKG8XTMYVkTfAVwdw_ACD8lpyY,1588 +ckan/public/base/test/spec/client.spec.js,sha256=FEMw8xdTCDFmUYwcuxq2TuFn0BWRnY73b7IKVDheM7M,13365 +ckan/public/base/test/spec/client.spec.min.js,sha256=yVkyUB-JHK3zyQkbsIjbNan9hXGMqu3IDZyvsOhF2tM,10617 +ckan/public/base/test/spec/i18n.spec.js,sha256=6DI8-jc_nRCC1R_L1pk9ZsCYWwCTvvHlKoRysudPb74,3707 +ckan/public/base/test/spec/i18n.spec.min.js,sha256=Bex_IIQc6aDYM69QjJyvJd8ALjfQ-ILZTGMf67dHTXo,2815 +ckan/public/base/test/spec/module.spec.js,sha256=ZCR6xxnQ_nzUzxtBVCjU-6q7jixbiIsPYdFYngnEg_8,13434 +ckan/public/base/test/spec/module.spec.min.js,sha256=X1VQc6sAdeD_0zUieXMZBlXrsjYkqclAJEauUu4Rk7E,10045 +ckan/public/base/test/spec/modules/autocomplete.spec.js,sha256=W2j6se1Kzjn-c8JOu67sl6vEuIZOaxH5P6oAU7bI1I8,11185 +ckan/public/base/test/spec/modules/autocomplete.spec.min.js,sha256=g3udJuoKDn1XKA0FgofPrLxYbRBYeeyEn97K82RLCa4,8966 +ckan/public/base/test/spec/modules/basic-form.spec.js,sha256=LmqoqSeXZPjz9AnUG5tHsXDr2D_FA2A_TSylTHProQg,1277 +ckan/public/base/test/spec/modules/basic-form.spec.min.js,sha256=nZYailOr2yi7jnXAyr_K_wiCEP9kQZ6zuKhkRXFtDxQ,1009 +ckan/public/base/test/spec/modules/confirm-action.spec.js,sha256=GidaWE9lQJ7JOjr8JbOwqNvrQVE44pL39zzMr0FQBJs,3678 +ckan/public/base/test/spec/modules/confirm-action.spec.min.js,sha256=3x1cVWZXQfeKoXeifmwjStkMf3WE0EXyLDGlIDqsRmQ,2895 +ckan/public/base/test/spec/modules/custom-fields.spec.js,sha256=WMDC4QoAkC76BJ9AOjKCKhACbAR4Hzn2fraRMPxCjbI,5350 +ckan/public/base/test/spec/modules/custom-fields.spec.min.js,sha256=rnIJ7Q_zbS161Xwucy11yGmzMGVOKhZh0aAuODs_Akw,4353 +ckan/public/base/test/spec/modules/followers-counter.spec.js,sha256=KR_ttKkVfUNeCn1A9CI7S4s8byZZlXh5TqP6wXf5Gok,5591 +ckan/public/base/test/spec/modules/followers-counter.spec.min.js,sha256=1TAcgSePqw1Log8NXbl9blJOfYRazclsT_9FK5DdnXY,4539 +ckan/public/base/test/spec/modules/image-upload.spec.js,sha256=ckJkV1cp1k9p_u_UWK-C5HnNIo_lB-EedLWi4CKlvOQ,2378 +ckan/public/base/test/spec/modules/image-upload.spec.min.js,sha256=Q4s4s3zYp7pEfxEoYV6ElW4vC9xy7gZVSsqAJX9A4yc,1970 +ckan/public/base/test/spec/modules/resource-form.spec.js,sha256=Dw0NYj0FPtdvHWW6lF3tVVBqFR1YAPivm6vnRT7xDpo,2185 +ckan/public/base/test/spec/modules/resource-form.spec.min.js,sha256=v0Lqw_z4sPkb1cB1FSV4SyBFSGbRRmZbOMjZdEfgxqM,1681 +ckan/public/base/test/spec/modules/resource-upload-field.spec.js,sha256=dZusozTW8gwa1Uh4HXAvVnfSju9wlCQFBVNhhA5bckc,8979 +ckan/public/base/test/spec/modules/resource-upload-field.spec.min.js,sha256=BVOVGu-EVcax2qzWvlSuho31CSm8T4GEXkK_pVcq5LU,7150 +ckan/public/base/test/spec/notify.spec.js,sha256=A0Quw3TSwszQDhO7XUw3_usxJIOfRZGfjxemmwdOTlQ,1565 +ckan/public/base/test/spec/notify.spec.min.js,sha256=dmX0uOR2YGEZNJOXAGJlhlqcUo1UjtPO1MVo9isdskg,1298 +ckan/public/base/test/spec/plugins/jquery.date-helpers.spec.js,sha256=UYQ3Hjkwy1BAEmHzqBY2SudKI8OsNZ2QO4FkplLz44E,1160 +ckan/public/base/test/spec/plugins/jquery.date-helpers.spec.min.js,sha256=gg4vU8emfzC9-aCjvB6he_7y6JqtYWoGPK-ETGQ9BpY,899 +ckan/public/base/test/spec/plugins/jquery.form-warning.spec.js,sha256=CZNpNpfO8l_W4jt3juFzjSQZCH8UxQwgVzwEa61cw8I,1107 +ckan/public/base/test/spec/plugins/jquery.form-warning.spec.min.js,sha256=6sHCX1tKsUPymzO8SjPvq2t5ZleJK0ztKDPXt4Qes9Y,938 +ckan/public/base/test/spec/plugins/jquery.inherit.spec.js,sha256=NtwEw1MHRd31RqBVnSkph2MucwBt19WzrvSZxFSSAAU,1498 +ckan/public/base/test/spec/plugins/jquery.inherit.spec.min.js,sha256=wwO3-pCdfqBYnULvCdmpTLRzdRv2ViWVeoAYLJFCqH4,1218 +ckan/public/base/test/spec/plugins/jquery.proxy-all.spec.js,sha256=MERz9WMFUMyXMHdpFhj-8b5706Vz5p8pmiD3XOU5Fd8,1917 +ckan/public/base/test/spec/plugins/jquery.proxy-all.spec.min.js,sha256=H57W5u1UgLrw9L6PugOk9-AT44y_zn4zolRBJtPJ5LU,1582 +ckan/public/base/test/spec/plugins/jquery.slug-preview.spec.js,sha256=-jHysRZXHOKcJqJAP0Hnahd1DbH2HdnmA4ylCE40ahg,2306 +ckan/public/base/test/spec/plugins/jquery.slug-preview.spec.min.js,sha256=Xc2oNNZC-uLM2tYIemg2scumovEppkElQDFQBPmaZCM,1968 +ckan/public/base/test/spec/plugins/jquery.slug.spec.js,sha256=UvXA-R4bFHIy1p1_ujcCUwKK2CuGGQOwW10qYVJ9mcM,1180 +ckan/public/base/test/spec/plugins/jquery.slug.spec.min.js,sha256=hNPxZr6-8bxh3hzcW4Uk022yuRAaH5H6YA5vXEMfaqU,969 +ckan/public/base/test/spec/plugins/jquery.url-helpers.spec.js,sha256=0MNef9EHdVeJO89mytT1GZO9dp6sNl4DqHYXD0rh1ps,1775 +ckan/public/base/test/spec/plugins/jquery.url-helpers.spec.min.js,sha256=JtVX422K_lpTiRAdAnP6XErT7r5DEUUcZd3wXYTBoHs,1429 +ckan/public/base/test/spec/pubsub.spec.js,sha256=cBMzRWGOJzILCI1WEan3R43n3N-qzZh9NH4lDPG4l5U,2356 +ckan/public/base/test/spec/pubsub.spec.min.js,sha256=GqCXl6jPj5_GAvZ-10KpYU5N8vlqExU32Vpc2wGsv9M,1832 +ckan/public/base/test/spec/sandbox.spec.js,sha256=_7Qwp_scg3SVHen-V8lfaUTLoeqV7OkWYIG5PA-01MA,3228 +ckan/public/base/test/spec/sandbox.spec.min.js,sha256=YzHc3MKNWwJZhAA4WZ0OfFihlNgJoi23DbIVeFHKSps,2462 +ckan/public/base/test/spec/view-filters.spec.js,sha256=Xgh3gWVEkvFwwyF96A9he4anlOuU4mHyUq_07EvWg0Y,7063 +ckan/public/base/test/spec/view-filters.spec.min.js,sha256=jlvkmrAKCFs_0RWgPtS8F8N5XSF8iJAvagFnCNoXrO8,5608 +ckan/public/base/test/vendor/chai.js,sha256=_m6PG8u4InMC4MpgwD0IjGYaz_7TQQ329ANSb6ujGUA,88179 +ckan/public/base/test/vendor/less.js,sha256=s9DH5vNHQLw3xitupAAEdWs1xy32bmhrhiIKYqunVZA,117172 +ckan/public/base/test/vendor/mocha.css,sha256=KWAIE2b-T9RCaTdHsD8Ufo3ei-m-CtzMzBBXNmHY7c4,3832 +ckan/public/base/test/vendor/mocha.js,sha256=aJrBmgehLL3ngu7NIARX8uSFU8t_24GjPQdtiJNE0Mg,112554 +ckan/public/base/test/vendor/sinon.js,sha256=T-lVh_jIV1to-4LwvorgfSIB-iadqhnhL3A1OvSLX-Q,126539 +ckan/public/base/vendor/bootstrap.js,sha256=IJ3GeSUv7KJyXK-26PwxTyYYvXSNuEa-a04MpxxVozA,50089 +ckan/public/base/vendor/bootstrap.min.js,sha256=L3PqFB4jXJpcAZrzGZ8fC89bsclPSWAENhgBK2RqyUQ,26990 +ckan/public/base/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127 +ckan/public/base/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg,sha256=QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U,108738 +ckan/public/base/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf,sha256=45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY,45404 +ckan/public/base/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff,sha256=omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I,23424 +ckan/public/base/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2,sha256=_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw,18028 +ckan/public/base/vendor/bootstrap/js/bootstrap.js,sha256=Cr6N6zNN4bp0OwTQOZ6Z66M2r-2dpy_EwKMCyZ-SOMg,69707 +ckan/public/base/vendor/bootstrap/js/bootstrap.min.js,sha256=U5ZEeKfGNOja007MMD3YBI0A3OSZOQbeG6z2f2Y0hu8,37045 +ckan/public/base/vendor/bootstrap/less/alerts.less,sha256=h1LLa2gLDo-iheSug1rdcr8aMvnsUJgf5UDfop78vVk,1518 +ckan/public/base/vendor/bootstrap/less/badges.less,sha256=UL0A0APjH7sv46F2Zq9Cw4e1X9dBAMCIzPeokEOdDIs,1199 +ckan/public/base/vendor/bootstrap/less/bootstrap.less,sha256=MknnJiU31MOZYu-H6cwh6C05FApC_Ejee_ReKk_79SY,1291 +ckan/public/base/vendor/bootstrap/less/breadcrumbs.less,sha256=HMMzyQRrnU6cd_APTlUFGVT6X09-Dl4xOj-GocEQW_w,594 +ckan/public/base/vendor/bootstrap/less/button-groups.less,sha256=QwqQzJH-tb82j_9v7O1Pxi7OcV9b-RWGuqZgezFUnbQ,5680 +ckan/public/base/vendor/bootstrap/less/buttons.less,sha256=HS_ZhgmGnoMYEjQKQQqSuQBP6-unJTO77dL1eoN4KB8,3662 +ckan/public/base/vendor/bootstrap/less/carousel.less,sha256=cikdWCG283MHUmVKSvX8jO-mxwd9VMqVTunnksV32Ys,5651 +ckan/public/base/vendor/bootstrap/less/close.less,sha256=L9bzc_8Bsqk5DAGI384bXa-ana3j0t071UyOFitVIWI,764 +ckan/public/base/vendor/bootstrap/less/code.less,sha256=yVJk_HXy6wjHnbe4l6nRJ2GB2aRMAPCgPlLgGzLwXuU,1401 +ckan/public/base/vendor/bootstrap/less/component-animations.less,sha256=6Tn02TYdvaiC_ptVMhp2If1rneWIJWsnnaDjGVH1Bjo,666 +ckan/public/base/vendor/bootstrap/less/dropdowns.less,sha256=yQlVtqmqZHjnn305VDSnLUVWAbhvgKqLmgu9OMVcztY,4876 +ckan/public/base/vendor/bootstrap/less/forms.less,sha256=O542zM68aRn3yzAwoI_6s7JD_aC55dz3Xu1KPl1nWtU,15822 +ckan/public/base/vendor/bootstrap/less/glyphicons.less,sha256=BJIB-IT9o90RHwljnMbqyabJUDwTjKYJs4hhzuelMgU,19807 +ckan/public/base/vendor/bootstrap/less/grid.less,sha256=5gDviOvGjdp2LuugebG5NcAQ_UBwu2UIyd1xVfjDlaE,1387 +ckan/public/base/vendor/bootstrap/less/input-groups.less,sha256=KjzqCNsWXh-wLWmbYrOHgGDHvxhjLIBnbtqbLy3nBjk,4285 +ckan/public/base/vendor/bootstrap/less/jumbotron.less,sha256=rTXCpHugcyLr05OFa9BCowcKrJr0j1c0VJWGuKdpbPo,1152 +ckan/public/base/vendor/bootstrap/less/labels.less,sha256=-q_opgt0kgkaZKKr6VetFLMyx1B5T8qA5PDKXtLbY28,1079 +ckan/public/base/vendor/bootstrap/less/list-group.less,sha256=1-KF8ugjxyJ2ZiBfO6ZtM8Gsa38ju8Vp9dRri7O-2iE,3124 +ckan/public/base/vendor/bootstrap/less/media.less,sha256=8XLBFkRkmcfnI8u_jJ1QRbyDZ7IyGSftOK3L6kmGB8k,900 +ckan/public/base/vendor/bootstrap/less/mixins.less,sha256=IZ1qX52iWsdN69k55TsERQwIiSJMy9X1WC2AXe5wqo0,1136 +ckan/public/base/vendor/bootstrap/less/mixins/alerts.less,sha256=ccjAtuIqLUFnpu9UB8Dv30XePUYfxXfbdozW7AYq2tQ,257 +ckan/public/base/vendor/bootstrap/less/mixins/background-variant.less,sha256=qTUzCLgsjFZSIfxMkzZ9z9FxP10IH_TPGyNfCEuFZPc,151 +ckan/public/base/vendor/bootstrap/less/mixins/border-radius.less,sha256=5phxtYA4Nbtn30DZ4XKhVI45A0iMoxr8ZWhoPlmFySg,468 +ckan/public/base/vendor/bootstrap/less/mixins/buttons.less,sha256=4hzfvGxUycTiUCiF2jskq8HRQfQ5koSU79NMQMk6I-4,1441 +ckan/public/base/vendor/bootstrap/less/mixins/center-block.less,sha256=QqW_0ecqBM5i3Cy58vD1_CRoiTy8vH65z8B9i-cgUhM,120 +ckan/public/base/vendor/bootstrap/less/mixins/clearfix.less,sha256=dV5nU6gmB4k9ZeQANroevGmlW73L05JagmlnrPLtcls,605 +ckan/public/base/vendor/bootstrap/less/mixins/forms.less,sha256=iKxcuMW6X8AJ2dZaty3s0NNM-HBuuDMnVmdhrmrs0ZI,2641 +ckan/public/base/vendor/bootstrap/less/mixins/gradients.less,sha256=1bFXuLiqt4oGx8QTWuRg6_pBxbGJEPUgEicHLMvjS8A,4388 +ckan/public/base/vendor/bootstrap/less/mixins/grid-framework.less,sha256=FOJSzZrTwV0W1gmIDQk6eHr868ZH6fR8kMFmO1NT1Gg,2797 +ckan/public/base/vendor/bootstrap/less/mixins/grid.less,sha256=gmCDaZt0uTZgNdJLjNaesES7k-3jtGDt_idyqrWS7RI,3120 +ckan/public/base/vendor/bootstrap/less/mixins/hide-text.less,sha256=AOmV-Wv0dQ8WVW3YCOEXaANS5FaolvyLN6xLjM_i3bE,575 +ckan/public/base/vendor/bootstrap/less/mixins/image.less,sha256=W8Nvi2RRrAY9R8LAtBxveIQH3SoAKutYticahpg4UJ8,1062 +ckan/public/base/vendor/bootstrap/less/mixins/labels.less,sha256=tDTYl6yNOOAdj0izsuHXsf5OWDGnbuh00h09ievhZQw,161 +ckan/public/base/vendor/bootstrap/less/mixins/list-group.less,sha256=F7p8klBFns9mjRzAavTZd1OosCPcJiqqdkvo-93Zkxs,546 +ckan/public/base/vendor/bootstrap/less/mixins/nav-divider.less,sha256=gEP406tNjTzYY193fVG9gQG58NUBf5kgwQ2it7r9jU4,232 +ckan/public/base/vendor/bootstrap/less/mixins/nav-vertical-align.less,sha256=qza9x_uGsYunebuABo064WFOlvaIj-jwbr-yA4p8qEg,364 +ckan/public/base/vendor/bootstrap/less/mixins/opacity.less,sha256=fkPPW9eVhGdFHG4cdCDORX8nD9seCrf3A3GPRVmlv54,148 +ckan/public/base/vendor/bootstrap/less/mixins/pagination.less,sha256=SuKtj_KSUyx_r3F_Lf1IohrgN_slcMKmgHJjESEdHRg,485 +ckan/public/base/vendor/bootstrap/less/mixins/panels.less,sha256=MV3D-DaL1C6j0qYNAgr_LDt7bfnF2bTN4PXj3lInS0o,537 +ckan/public/base/vendor/bootstrap/less/mixins/progress-bar.less,sha256=4-RByBv-HzzjGe5dQMjJMxmtFpkToxVc7Ibi5qQAu-Q,191 +ckan/public/base/vendor/bootstrap/less/mixins/reset-filter.less,sha256=aZ7Xk1MMzxGxcispQ1lsVx00FDTGQZK0UEMFE36aIMk,248 +ckan/public/base/vendor/bootstrap/less/mixins/reset-text.less,sha256=G3X9_NSJhFvgkkwXkc9mm2U1HNd_6FTa7ANMvaO1WS0,470 +ckan/public/base/vendor/bootstrap/less/mixins/resize.less,sha256=thMoFPVqj0OF6dNWTwbjGFR8ozD1x8c0SIb1U9ZL2rk,196 +ckan/public/base/vendor/bootstrap/less/mixins/responsive-visibility.less,sha256=eADeI9Ay88UMazqwiRwcXx6QeOd2zM2YyVw9ne3R0yE,354 +ckan/public/base/vendor/bootstrap/less/mixins/size.less,sha256=cxJzrUFG5cyNzQxCAFtyIB6bcgmpJgUEJiuWde-DOqM,127 +ckan/public/base/vendor/bootstrap/less/mixins/tab-focus.less,sha256=jtnEMETpJYF4q04XwDR_mjVUmA5sy9mC60Jv9u8fIDU,332 +ckan/public/base/vendor/bootstrap/less/mixins/table-row.less,sha256=-8CnPqKo4jL2b7xmhPKdnS82H5-_4hkTGGBiCSMPwbg,700 +ckan/public/base/vendor/bootstrap/less/mixins/text-emphasis.less,sha256=yUbEfQrs6RoQh8dHyz1LGLiC4mh9Bpa1Wy9Fach3f5o,128 +ckan/public/base/vendor/bootstrap/less/mixins/text-overflow.less,sha256=aq3mm09gb_AJmkQI_aT156wNvZbCNzmwwgGscgDoqPw,162 +ckan/public/base/vendor/bootstrap/less/mixins/vendor-prefixes.less,sha256=G1ByBJNeA5VeM14ooExuiWe5nGbzY1Xi8wk_EtEIB98,6653 +ckan/public/base/vendor/bootstrap/less/modals.less,sha256=ddhNsHoylIBm8U9Hh_xc_R7EMcaBs0CMqZNpqzAykJw,3527 +ckan/public/base/vendor/bootstrap/less/navbar.less,sha256=2IWGva0s05ehpiPqCu6nrQGeOiDo-PoEv25OPkXywuk,14628 +ckan/public/base/vendor/bootstrap/less/navs.less,sha256=6pm16GbnRkKjuhq1WgpT4OBxHmeoko6KJHG4Ttw-BFY,4930 +ckan/public/base/vendor/bootstrap/less/normalize.less,sha256=zwEJ3Qj9sk1eCcmXM33uaj3yB1NfUm6pLQPT1e3p6Sc,7559 +ckan/public/base/vendor/bootstrap/less/pager.less,sha256=jnkEl5QlyzVrUMvJ7a-uX7iF5cQxB4GoG1vVBvBzwJ0,861 +ckan/public/base/vendor/bootstrap/less/pagination.less,sha256=0Gnbvm06Q5Dh6dVc-igM65JcK-_y3zhH3eRTRjdnhfs,2059 +ckan/public/base/vendor/bootstrap/less/panels.less,sha256=xQRnJcq3rkJWlyv2A6LgK5ZCJm13Gn45W7A8JfmyZ4E,6279 +ckan/public/base/vendor/bootstrap/less/popovers.less,sha256=pAdT-qYJ3GD71pKe3U4iWdm5qxmo0QsaFe2m1nt1Djk,3488 +ckan/public/base/vendor/bootstrap/less/print.less,sha256=s2V5jMPMwagbEa-zrufJIlbLwhmxQDK1fdSLL7BFvfg,1939 +ckan/public/base/vendor/bootstrap/less/progress-bars.less,sha256=gUF9BqZe5Zufq8RBzU8Zf-fHtooR1VloYPmDQaLz4WU,1925 +ckan/public/base/vendor/bootstrap/less/responsive-embed.less,sha256=2Y5RRJFxRr-BnubGEHynGBL9OejDWitROiIc7k8MfLY,546 +ckan/public/base/vendor/bootstrap/less/responsive-utilities.less,sha256=gvrvN9ve1ab0KOcW4Lj5h5eSeRc7G_VpV4B1aZB7F9c,4262 +ckan/public/base/vendor/bootstrap/less/scaffolding.less,sha256=1-LKklUroKDqVYe_o08e35xpG9Xdp_yflNU6y094nQ4,2987 +ckan/public/base/vendor/bootstrap/less/tables.less,sha256=4_ZGmP0K7q1zTQljVm-DMUFPnyV8ybqJY22tCf3u52Q,4612 +ckan/public/base/vendor/bootstrap/less/theme.less,sha256=7w95LWqtTZwS0xK7mfCrs3hpy8xw5Pxunj2jDnOihSU,8197 +ckan/public/base/vendor/bootstrap/less/thumbnails.less,sha256=h-mHnH5t7HFU2AqkKobEXtiHa2ioaGRMy5zWtKbFPg4,753 +ckan/public/base/vendor/bootstrap/less/tooltip.less,sha256=UvPzAgabp-ok_Zbh0X32KD3qAXsdCUyVS32e8LbD3qc,2985 +ckan/public/base/vendor/bootstrap/less/type.less,sha256=uUNK2iDU-15FC6pm9KPgVYmv-DHpEpQMHFMGZ394cGU,5954 +ckan/public/base/vendor/bootstrap/less/utilities.less,sha256=9gNMHjgL-UQX_cU_nJO7xndixlcWiejpdNu_PGyXOYo,747 +ckan/public/base/vendor/bootstrap/less/variables.less,sha256=OYUMl1K6lgvDKT1H1SBWpX78o2uatc8w-qXY_rsfkZM,27472 +ckan/public/base/vendor/bootstrap/less/wells.less,sha256=SOizNFBNIk6AnGD-9m_Cjh9UErreSyGZUrNB0MS319s,527 +ckan/public/base/vendor/font-awesome/css/font-awesome.css,sha256=NuCn4IvuZXdBaFKJOAcsU2Q3ZpwbdFisd5dux4jkQ5w,37414 +ckan/public/base/vendor/font-awesome/css/font-awesome.css.map,sha256=OnWOmMndQbWhR065-2rXauW_hVr2psKMCgrws0DJhg8,21778 +ckan/public/base/vendor/font-awesome/css/font-awesome.min.css,sha256=eZrrJcwDc_3uDhsdt61sL2oOBY362qM3lon1gyExkL0,31000 +ckan/public/base/vendor/font-awesome/fonts/FontAwesome.otf,sha256=RE3UNmYV_8ShbQErL6kBNwZdPMtBD6b9Xk3de15P_NU,134808 +ckan/public/base/vendor/font-awesome/fonts/fontawesome-webfont.eot,sha256=e_yrbbmdXPvxcFygU23ceFhUMsxfpBu9etDwCQM7KXk,165742 +ckan/public/base/vendor/font-awesome/fonts/fontawesome-webfont.svg,sha256=rWFXkmwWIrpOHQPUePFUE2hSS_xG9R5C_g2UX37zI-Q,444379 +ckan/public/base/vendor/font-awesome/fonts/fontawesome-webfont.ttf,sha256=qljzPyOaD7AvXHpsRcBD16msmgkzNYBmlOzW1O3A1qg,165548 +ckan/public/base/vendor/font-awesome/fonts/fontawesome-webfont.woff,sha256=ugxZ3rVFD1y0Gz-TYJ7i0NmVQVh33foiPoqKdTNHTwc,98024 +ckan/public/base/vendor/font-awesome/fonts/fontawesome-webfont.woff2,sha256=Kt78vAQefRj88tQXh53FoJmXqmTWdbejxLbOM9oT8_4,77160 +ckan/public/base/vendor/font-awesome/less/animated.less,sha256=xwNUI9Wh4D02vP1kZUgeTE1ckfMW-oeKblEDr-Gwu_Y,713 +ckan/public/base/vendor/font-awesome/less/bordered-pulled.less,sha256=49FoopK6M9TjIVkZljowTcJXMqc8693m5-vk1Hq0PrY,585 +ckan/public/base/vendor/font-awesome/less/core.less,sha256=pKk9WYE09lasbHoKXzda-pQeceNI5o7PPNb-t2Fqz54,452 +ckan/public/base/vendor/font-awesome/less/fixed-width.less,sha256=DvhToxknQtIH6g55Pci8xjIty55Q1B9LmBxOusLax6w,119 +ckan/public/base/vendor/font-awesome/less/font-awesome.less,sha256=LfYjBaihTgnsrVihVaR48cjBExj0BTYL5oMhn2Kz6iQ,495 +ckan/public/base/vendor/font-awesome/less/icons.less,sha256=TVhe7umPSCbFR-AwppBpDqVqTe3oBvyBdjQqvs0G_qE,49712 +ckan/public/base/vendor/font-awesome/less/larger.less,sha256=38edQyWATpreIatlFFsjscQZPSSok2kLxHtcBznKPAo,370 +ckan/public/base/vendor/font-awesome/less/list.less,sha256=Akq7kw5mafIV3e4Z9YB3Vx8cq7eu4SdL-WsibClrc9M,377 +ckan/public/base/vendor/font-awesome/less/mixins.less,sha256=ZcS7cTh3IEP6_SFnt0wP16wV5Xunh3rezeSwmSlQZww,1603 +ckan/public/base/vendor/font-awesome/less/path.less,sha256=oNy7zTl29ZEWJowQl2fDuY_jWIcvbp_BoNJqM30nK48,771 +ckan/public/base/vendor/font-awesome/less/rotated-flipped.less,sha256=1n35VIjuyE0tDK95cnglqP9LLfkMYEFReD4-wjiNrTg,622 +ckan/public/base/vendor/font-awesome/less/screen-reader.less,sha256=sy_3ghp7CmSfkgKgLuuM6I_mcetS1h7OUKq9vOIREMY,118 +ckan/public/base/vendor/font-awesome/less/stacked.less,sha256=P53mw-DxorxxV5pBfXxBX4Lyo9P0eSFhqFiLuL3XVFA,476 +ckan/public/base/vendor/font-awesome/less/variables.less,sha256=43F0Ipdiktj9xLKp7QK40L5VrVC4bpv_dHYeXM-UuDk,22563 +ckan/public/base/vendor/jed.js,sha256=wPSuYNFQube-W7b2nG0EJmXjPFjafsaD44eUkn8xY5E,37198 +ckan/public/base/vendor/jed.min.js,sha256=CT6B8rF6DPKeRDP_4cjqXQK0Itj95IF5JRNs5cUIsbg,21119 +ckan/public/base/vendor/jquery-fileupload/jquery.fileupload-ui.js,sha256=6DtGLN3tv1hrOLifK8gEzn4hQ52Me6j6T-Xt1LuIEH0,28532 +ckan/public/base/vendor/jquery-fileupload/jquery.fileupload-ui.min.js,sha256=3Px08ZRveZucO5CXRDAcnZnZqCk6KvGw-unaSeui6-U,13097 +ckan/public/base/vendor/jquery-fileupload/jquery.fileupload.js,sha256=Zufkvh2B13hX06Gcb8AuG3OQ9L36_prJugOpIN8jAfs,42985 +ckan/public/base/vendor/jquery-fileupload/jquery.fileupload.min.js,sha256=XcE3hLiNl4nRLoB1UB4f0av8h_5oSWuiH59H6jUMB08,15360 +ckan/public/base/vendor/jquery-fileupload/jquery.iframe-transport.js,sha256=PcU7ijJbcUZSno17apjnr5v5u3noRAHXRLl4cXO-2bY,8089 +ckan/public/base/vendor/jquery-fileupload/jquery.iframe-transport.min.js,sha256=mr2y8AtM_aSmz33XKSMK0CLoXcuPG26Qd2YBO6DxDnM,2293 +ckan/public/base/vendor/jquery.js,sha256=hipe5Z0PQxI5mbdNjHJIpVgyiirQM0vO5SvI-WEulJ0,276280 +ckan/public/base/vendor/jquery.min.js,sha256=hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4,86659 +ckan/public/base/vendor/jquery.ui.core.js,sha256=q-tGbI-PS8cDpu5sJmxF8WzfWKSK81WYAUYIu-EE1EY,8198 +ckan/public/base/vendor/jquery.ui.mouse.js,sha256=KDOSMpUKj443n-CjjvY3FVAeBg9VYL9ciAnsUmviubM,4561 +ckan/public/base/vendor/jquery.ui.sortable.js,sha256=aqR-6shGXAFPXIiGF_HQNsnyJWHMFC8ayOMbvvBqo_4,42704 +ckan/public/base/vendor/jquery.ui.widget.js,sha256=JWVTvlTW2PnGhHvs-9zaxmc7IbqNfe5Xlw5hRajWM18,15069 +ckan/public/base/vendor/moment-with-locales.js,sha256=S6pRrDGCqIDstuJtFMpTwmONwfbyvjuYlmQqGrbdIvU,225232 +ckan/public/base/vendor/resource.config,sha256=25TukSfUnEWFxN_6PcaF3L9xFJgQeiMo7IjHjAuJFLo,619 +ckan/public/base/vendor/select2/.gitignore,sha256=Qbrl57I3qwWYreawt9s8rP1gnwtHR8WA8MUwBPvlG3M,7 +ckan/public/base/vendor/select2/CONTRIBUTING.md,sha256=diLCJIiRzxqoOzpQysxuzInnJdD8btIKygTT6fuNdY8,4858 +ckan/public/base/vendor/select2/LICENSE,sha256=p45JZfhkZCvhn_uUQyz9hOb3KyJ2-XHSp8GaINR1RJ0,938 +ckan/public/base/vendor/select2/README.md,sha256=1I5caCVxUX75E3ggCIMK0i-zsCzm1Qch_jATqCfIKXI,4774 +ckan/public/base/vendor/select2/bower.json,sha256=oo07-V02eJEMqWCIv0ibxYaa2CZn7P-WwTCHCG-jOuE,206 +ckan/public/base/vendor/select2/component.json,sha256=a4Z0Qe-99dDSE_tD-pogjZxk7ibxv_eRLD4CcX0V0J0,1732 +ckan/public/base/vendor/select2/composer.json,sha256=rYLxBXC_jMX6c56wZyq9t0YfuJD2ujM2ZICV_F2xSaQ,637 +ckan/public/base/vendor/select2/package.json,sha256=V93PqTDLbmqsWd7iUnwC9mIqAMlL1NRBmOYkUnT9mfg,678 +ckan/public/base/vendor/select2/release.sh,sha256=dZPsgE8q9kewQVegDO9cHbelRAXMdvfu_vAF3XsUm70,1490 +ckan/public/base/vendor/select2/select2-bootstrap.css,sha256=famh_fYVCsn7aElzQQSquoRIcf8RnaQ-oM7MyTDEdq8,3347 +ckan/public/base/vendor/select2/select2-spinner.gif,sha256=9uz_YX7Cun9Vnm9TXK2bcKP5ESBzdTXatNRUimyDV2w,1849 +ckan/public/base/vendor/select2/select2.css,sha256=ZODrOgaVxHouOJ4nu2EkvszH71GOyMSwtRidv0CM6KI,19223 +ckan/public/base/vendor/select2/select2.jquery.json,sha256=eZIBF7DuQULrD9JcC1IH2b7hG_sDtws9yPgqMSilIkw,1030 +ckan/public/base/vendor/select2/select2.js,sha256=yiksMVUgkOIV0EUNBs6o6TF67k2uPYp1cJrTza-M7DU,156367 +ckan/public/base/vendor/select2/select2.min.js,sha256=7A2MDY2eGSSUvgfbuH1IdzYk8qkEd3uzwiXADqPDdtY,70142 +ckan/public/base/vendor/select2/select2.png,sha256=1rXY2D28GPuNd8h2HTMc2eUSPJaElQurBAbpiiSsWug,613 +ckan/public/base/vendor/select2/select2_locale_ar.js,sha256=h5CbdT-HqSJ0TDSKk1z1mbehvRWKAlffLWmOhTPElWo,1389 +ckan/public/base/vendor/select2/select2_locale_az.js,sha256=OY5BiLCpjc-cEz3TKJsiqo8kLMicoOP8VGutl-yPw-M,1003 +ckan/public/base/vendor/select2/select2_locale_bg.js,sha256=GfIvKvshdfw8a7W6Exige7AERlnA8xL5Crv_bGoSzqI,1081 +ckan/public/base/vendor/select2/select2_locale_ca.js,sha256=KrfJIfhZDYShgDLIMnTTb8B3GplrHvlhh2rDTAMKO0A,952 +ckan/public/base/vendor/select2/select2_locale_cs.js,sha256=ZqEocqKZTIpKcRbfmE0mRplG15wwZVsAbJG4TJUKMek,1988 +ckan/public/base/vendor/select2/select2_locale_da.js,sha256=wNcE-4Ch3upkz88v2GQbdVZHlXB6c_PVjn9MWj6EE90,853 +ckan/public/base/vendor/select2/select2_locale_de.js,sha256=6NNs6So6FsnOgqRRWJFFLG45RxluvcjdDrk0DyuLkAY,1014 +ckan/public/base/vendor/select2/select2_locale_el.js,sha256=cYvwGq1Avn5h1nHE-9wfWJ2LA0jjuFdZBz9MqF3aZO0,1128 +ckan/public/base/vendor/select2/select2_locale_en.js.template,sha256=hPOQ5dyVAoFk-gei9L6rdC-IyeSM6scd_KsqJemwjak,1102 +ckan/public/base/vendor/select2/select2_locale_es.js,sha256=d5R_SSZ5J2ak5s638iz078M1RVLgqnVfrDWwLjau_n0,1177 +ckan/public/base/vendor/select2/select2_locale_et.js,sha256=79G0dGGe8qL0i9RlYCG8tc2Lf9w2KrQCLzBmNQ1vrO8,886 +ckan/public/base/vendor/select2/select2_locale_eu.js,sha256=wVVjZbSiVJXZmFiM4EU61cT7TSl6RVNKgqmxXfxcD0A,1313 +ckan/public/base/vendor/select2/select2_locale_fa.js,sha256=H2LWp8rpCfB0sRN7F1DMgUfGrDTOHRbY_bOQ1TwflB4,1207 +ckan/public/base/vendor/select2/select2_locale_fi.js,sha256=mX17g9dQ2wZyHGUs29Fz4TnXL8VsvLrzAGngSrAHsFE,940 +ckan/public/base/vendor/select2/select2_locale_fr.js,sha256=6EfvDfmTdq6ddqDyYURYP-xRHDhCM7Z1yV3J16kTw9o,1077 +ckan/public/base/vendor/select2/select2_locale_gl.js,sha256=JkJ2nGH0PQGVr7lBzH83JUVh6oeo3FgrBi9yPIHVA7A,1339 +ckan/public/base/vendor/select2/select2_locale_he.js,sha256=gpmWloS5UhRm5A5TkNVL_WjyE_cZlOJ5l98QG_AK4mw,885 +ckan/public/base/vendor/select2/select2_locale_hr.js,sha256=VkDX5yVGyYRN4K4Ef7JkFKF_gCUwqPTejYP7CvqpvU4,1002 +ckan/public/base/vendor/select2/select2_locale_hu.js,sha256=_YoJfVPKaGozxREp2ZvFTSJUhiKBkBtVbYLvMqCNhbA,802 +ckan/public/base/vendor/select2/select2_locale_id.js,sha256=6gGM1UXa49XaMglffo-QKPUHWvUsxCO4Dt1ESMKNWAI,1111 +ckan/public/base/vendor/select2/select2_locale_is.js,sha256=urhHO3L_4CPbUVlYkmqnTMSpHrwOZ3GFCqELXJjodXw,855 +ckan/public/base/vendor/select2/select2_locale_it.js,sha256=Lc5KEaccVMgbP5HtNQnYFZwDY0mMK22RZ9vdts5lngc,866 +ckan/public/base/vendor/select2/select2_locale_ja.js,sha256=7p7rcqLEejo5p_B4ZkWQ2WXPrtPI7ARLbJKjjAW8uKA,812 +ckan/public/base/vendor/select2/select2_locale_ka.js,sha256=k2D1HThxHQZIdIgBjC3Ktxpeb-XTlHJI7WINYxGPtFM,1078 +ckan/public/base/vendor/select2/select2_locale_ko.js,sha256=P_dSnVFTe6nb1b4pjcai0DTYSDrBR6NrfYJOBNKEPJ4,871 +ckan/public/base/vendor/select2/select2_locale_lt.js,sha256=072Jg8_JLRLqMJoicRIy1ymB_O2bWFbP4TOqZKIt_vY,1144 +ckan/public/base/vendor/select2/select2_locale_lv.js,sha256=duiEcPhTE9V_bfzDlce2v92KrEkDtQxiDUC93f0McXY,999 +ckan/public/base/vendor/select2/select2_locale_mk.js,sha256=F3wf-nKtRAljips5b0Pxlx7ShT6v1g2fzaKDTYT6mXg,1064 +ckan/public/base/vendor/select2/select2_locale_ms.js,sha256=6m99LVqIo6H8dpvp5b3WN3SBLUXE-WwrNaZUUSPhr7w,1122 +ckan/public/base/vendor/select2/select2_locale_nb.js,sha256=hFR8EnOlGt_5yz2Mr1fboy2WQ_2RZ_fi7hdIF7iLseU,1145 +ckan/public/base/vendor/select2/select2_locale_nl.js,sha256=Pv7QlFd_8UQaVRZF6FLql6_6jdh6y6jyn7kfEDqvYJU,846 +ckan/public/base/vendor/select2/select2_locale_pl.js,sha256=zIOCf5pC0dHhgnUUr9312ofo4ejGvIEGY2_85dcCFcY,2015 +ckan/public/base/vendor/select2/select2_locale_pt-BR.js,sha256=sDm05maHvLzH3AJY63MK7aYlQ7tuphxKQ70579J8pvY,969 +ckan/public/base/vendor/select2/select2_locale_pt-PT.js,sha256=RPB6YqeKMjwnIwLNb_kEYBw3DvfYH3rt8fwlWEWHIKo,891 +ckan/public/base/vendor/select2/select2_locale_ro.js,sha256=2JsNfTjPHO2DMSN9asein_HTU_dctKICudOgtuO2z0Q,902 +ckan/public/base/vendor/select2/select2_locale_rs.js,sha256=6lSzwPepW7v8-WW5hJcLGdWEBN4w8AC09wftW6dX5lg,1058 +ckan/public/base/vendor/select2/select2_locale_ru.js,sha256=EJ8o7X2Rn7gTr1VTWB7Y9qvO8Q_cqre6vGAtXPztdLU,1171 +ckan/public/base/vendor/select2/select2_locale_sk.js,sha256=udt0WqxRU4kxFXcZfzsRxcubJUQsXLl2yhvLkSgbu_w,1948 +ckan/public/base/vendor/select2/select2_locale_sv.js,sha256=-BTB0g5PbkcP0Zm4FJy3HIaN1tmMWXkoo_0pl-_vUsI,847 +ckan/public/base/vendor/select2/select2_locale_th.js,sha256=L9oUzCADYaKQYfOZd5UFWK6YSE-7tGRq4H71ojpWRjM,1063 +ckan/public/base/vendor/select2/select2_locale_tr.js,sha256=yi5ZztLSBvzRF-LZhNyQqAoH8WgumAu6P0AWcVI7Lcw,1070 +ckan/public/base/vendor/select2/select2_locale_ug-CN.js,sha256=HpPOKKJbwrTVNmx8GrpEXRKihBOLbUMSCk4rRynehzY,904 +ckan/public/base/vendor/select2/select2_locale_uk.js,sha256=o7lB9Pb4Q7oPxkatWGSe05FfWurKaiV2mlrmpz_2qCs,1415 +ckan/public/base/vendor/select2/select2_locale_vi.js,sha256=_zuZkTwaXIu8MVn3lq-YuGZyHn0jdu8gUQLNm_HHThg,910 +ckan/public/base/vendor/select2/select2_locale_zh-CN.js,sha256=3o9Kg18uzans1ISeEQwbKrrQgNoPwxKQ1KaqlXLIpso,762 +ckan/public/base/vendor/select2/select2_locale_zh-TW.js,sha256=cSm7y_vDWirDG5X6v3Q61kBXqnJlpNCvzmlNSXSh5qU,774 +ckan/public/base/vendor/select2/select2x2.png,sha256=b-KNaH3A7U2WAWI4xgi6HnGYycmsz6CzYLeAGLn7m8I,845 +ckan/templates/activity_streams/activity_stream_email_notifications.text,sha256=0tLPeu2vfSmBCpFthZUYcThtoE2jy_TefEWrgSwKWq4,511 +ckan/templates/activity_streams/activity_stream_items.html,sha256=GgNxf22NUdDi5rrNGGGstNJLzoACN1r4kbga2dBcOGw,1307 +ckan/templates/admin/base.html,sha256=q74gtOBhntEAhZmm-dplhV_p-ceMD51Wz7cZWvmyYq0,430 +ckan/templates/admin/config.html,sha256=E7K_bKwqQVHr6YL28gdxa8wJ-8KrigoW8SuJArvfLpY,4238 +ckan/templates/admin/confirm_reset.html,sha256=LCY83d46_pDzwrzPYpCDLQsADBd8XXEF4sSXLdZ5ubo,516 +ckan/templates/admin/index.html,sha256=j3okIR7AYhGyoe8oMBZufEGgMQ3tc_Nq52v9R2I6stc,845 +ckan/templates/admin/trash.html,sha256=rHOhYXj2wNOpET_yKb4tnsocnSIYlsTwpQHuWbW7PJY,1018 +ckan/templates/ajax_snippets/custom_fields.html,sha256=w20xZxuWs7A1FN6LJuMlkmgpXVRpykU1FAOnGqBI2Ss,166 +ckan/templates/ajax_snippets/follow_button.html,sha256=daiFDtABR0fjKzhBIRW0zLPt1wodLtV_rfzE3tyC8FE,31 +ckan/templates/base.html,sha256=mNiz35gvXPzjshO7OObCUFn7edbeTxBUeKZsm02ZF58,3545 +ckan/templates/dataviewer/base.html,sha256=Navum8cEEe_mY8POL2xjBGZKyToDNj29Fudy8bYcel0,540 +ckan/templates/dataviewer/snippets/data_preview.html,sha256=0vex_3j45EGYxmjc6XWo6n5n_fq8yJEDzUeV4NvmpVs,1016 +ckan/templates/dataviewer/snippets/no_preview.html,sha256=5rDYeH0hvERYoYSNeEpHSZ63a_YxU_V0YF-N7wueViQ,577 +ckan/templates/development/markup.html,sha256=PEI-fyOyfqnTwYfW5dORbmn5yM52r6OvhYG_8N7s3Os,196 +ckan/templates/development/primer.html,sha256=DQ0bLi7g1Ql0Ys1MeADN1QOP3W2KISVP_V230fkAyaE,3692 +ckan/templates/development/snippets/actions.html,sha256=0RaKXvgusmLjlwzseP4qjDLt0yJ7UKK6ohXKVPcRl_E,178 +ckan/templates/development/snippets/breadcrumb.html,sha256=rwr2EK4rB2BJINen-POSvWnOena75zRiPTVtCVZxhcU,370 +ckan/templates/development/snippets/context.html,sha256=6IeWjA8JbpfRf6bPD3V9DILWdo2KTf4hnDe8CK7M8zI,633 +ckan/templates/development/snippets/facet.html,sha256=YC7ssCuYfZZ3ChSvdQj7BSD5JoazIwnBJwpHVKA9mvU,583 +ckan/templates/development/snippets/form.html,sha256=FqWZWWGDTy2l040v-6uMXeadEAAP_z46zBz9hCi9_G4,1659 +ckan/templates/development/snippets/form_stages.html,sha256=sq3MSqFEICZlI-WS7cta59syl0AyAp_mwL6mych_5R4,912 +ckan/templates/development/snippets/list.html,sha256=Fepat1N8sHZElHI_VsvBdVRkCOPo6leXPOAPCSpr6nA,476 +ckan/templates/development/snippets/markup.html,sha256=ZzMyZ3BlTGvwde2La8rwp7zyWtD1DQGTG2TGvNAKc_Y,25362 +ckan/templates/development/snippets/media_grid.html,sha256=jHv8R_HYUJJDikL2h0WCnBjh0p2RJn5OmnVZy_N-uLM,142 +ckan/templates/development/snippets/module.html,sha256=aVCDtV5S6N4z3pQ3H46sDlvScnzf3DFxGqwFvHO-I_k,778 +ckan/templates/development/snippets/nav.html,sha256=ZvJQCwMVy2g1CPBTHaiEMChmiPDohqHfyPqNXsMFiWA,553 +ckan/templates/development/snippets/page_header.html,sha256=tQ1DBgcFOHo4fi4hjjPWJjtF8WxjcL3rV3d5UHjHIIs,364 +ckan/templates/development/snippets/pagination.html,sha256=dnEeKy7XelVM0yeOU6Tn-lODNU-Yp3Z1-IPVGVv29tw,487 +ckan/templates/development/snippets/simple-input.html,sha256=s7ZL0RZG6soXZ-dMYx2WBjcuTzOVKbOgs2ZfywbB4to,265 +ckan/templates/emails/invite_user.txt,sha256=rIv6fjZLbERgM_qPHvh9k4I3_2vW1CwbkJ2nLBDpubM,421 +ckan/templates/emails/invite_user_subject.txt,sha256=7vR2iqpsWCP_dvTxvz3tYclNtRAUIAvEYPO1F065U_Q,28 +ckan/templates/emails/reset_password.txt,sha256=mghDCdJWzK5ytON0oLV6sAAh8N-33s9GsEs2_M_DVe4,240 +ckan/templates/emails/reset_password_subject.txt,sha256=KrR_LAQz9fONMuK5cc3dIUm5dSymg2PYDWDdNASTBwI,39 +ckan/templates/error_document_template.html,sha256=b_Bv6BUxXFJH-iWGHI0JGVAPA8N7ET-s69uV5O1io5Q,469 +ckan/templates/footer.html,sha256=wPIMnOzg6cQ44XOrW7BDlwdMMIb7yQZOf9_2rs3t2pg,1538 +ckan/templates/group/about.html,sha256=Em_xQ6Rar2Dk_9U7ze6HGyt5nC-Gv5wbeOBLTJyHGh8,536 +ckan/templates/group/activity_stream.html,sha256=0rsy0QsOlXLw1m-v8_a4K8EhNkrIzKYjKdcZESJ0eFs,350 +ckan/templates/group/admins.html,sha256=dFS3KWBvHpHuExEvJHZsQK8LjiXwia2QWTQZXeOGMZg,404 +ckan/templates/group/base_form_page.html,sha256=W6acAho8Xy3r-3P7yzwjWkne2DoE0geAiiWUyrDdnUc,590 +ckan/templates/group/confirm_delete.html,sha256=LCrHHkWzJTC16qTa_XGKlfYMT65wA36l7EY58-4LjZM,864 +ckan/templates/group/confirm_delete_member.html,sha256=e8wnPTqmVlcTrX90BlP9AVSfguidMs3MDR7rDpaAWes,905 +ckan/templates/group/edit.html,sha256=FJd0x9SXpE556mjJ8yEyuxxtEYqTUJfY0EVCRAzsXus,552 +ckan/templates/group/edit_base.html,sha256=O8-Wweiq094kqSEQXqHF7IVQQsY5nNuO5f-oMHTiJWM,1199 +ckan/templates/group/followers.html,sha256=S7HAVhldvCixyRd42ZoB7vN5wnzKR-AjzWZibHCBa5g,400 +ckan/templates/group/history.html,sha256=f5qtWLq3Ofzc6ByKp6UddQVbcSgAyg8SxIPWFvnIlss,399 +ckan/templates/group/index.html,sha256=LoC4HEqUtM357bHlB7dAImEqntY7eZ2vWKgTUm1jRq8,1744 +ckan/templates/group/member_new.html,sha256=qjrndIo9Z5CC9UXauo3aRfHd8syLFy2mFxICsaG-Ovs,3567 +ckan/templates/group/members.html,sha256=L7YymlmabZMflneQvkSgc5_OBlgc_ZQPZkCcywzZB64,1613 +ckan/templates/group/new.html,sha256=Oh-yND_Y3Z7jS8pMUflDhiX2C7p2ubiXnD-0LCZefBg,430 +ckan/templates/group/new_group_form.html,sha256=ZaSed0_B_wb9Nmzb68OVwIouwqJu6UhLP3JTuPGlWFs,623 +ckan/templates/group/read.html,sha256=K6Mm6xtHyClxRRkvaVVrjH8skaqUF5arUpErVBD3Pd4,1620 +ckan/templates/group/read_base.html,sha256=_ZKDwBNosYCyZDIMyl1IosdZNAAymOEcar8i8qmNiOY,1265 +ckan/templates/group/snippets/feeds.html,sha256=JT4O1cVUwXqbpath8eDFPMTR5cVlMym6aX8KbLw_p2A,500 +ckan/templates/group/snippets/group_form.html,sha256=5d5exl-S8yvvytiQXga_4t2GBzLZCh8uypg7MarzUC0,2354 +ckan/templates/group/snippets/group_item.html,sha256=MQLH9j-9gQdB6ImI7DbiMs8ga9TnGjp3yN524yKUvAc,1790 +ckan/templates/group/snippets/group_list.html,sha256=79MZUr4xfSTSE2QyO1TtEqRAUkkVWBcN3vh6Z_tAEk8,396 +ckan/templates/group/snippets/helper.html,sha256=su_yvd1Crc39ra6osjZaakcWHSFEyQNuqLJJWmk3jzs,542 +ckan/templates/group/snippets/history_revisions.html,sha256=lrgv-XeU8H22_-wh3GowK14tHAdsuSSGY5u43rcrBG0,468 +ckan/templates/group/snippets/info.html,sha256=DrVeEjaV6qKjcOOG3lfAdcQOxTbLr2QuopGEO5feSZE,1537 +ckan/templates/group/snippets/revisions_table.html,sha256=Gu1ClNH99bLKZmYDWtzrdcn0hxeKm3aaQZy0qOjebw4,967 +ckan/templates/header.html,sha256=IuaP3puASbrvamSvUPtS8yjRPYdIWwolTVy3IKuZbSQ,4819 +ckan/templates/home/about.html,sha256=AF9zgln0ln53bXhxsjyBt1tM6mTji_hIMfGDp3IRcS4,623 +ckan/templates/home/index.html,sha256=V-OhnL9-cGYxV-wGFLxngUll4rBgNoyBpnEodsp2oCI,482 +ckan/templates/home/layout1.html,sha256=MKLgz_YW0kV5Sd_ygHQ_hVfh1Si1jFhIaHbCk4C-fmo,1147 +ckan/templates/home/layout2.html,sha256=s1dohvQs54BDRDYEQb55LH4VMfjOxykJ5u6S8PPEm08,955 +ckan/templates/home/layout3.html,sha256=_SfoqN1v0w9QiyaEhojfhDRRJNrUSkCqakcpw9pY63o,561 +ckan/templates/home/snippets/about_text.html,sha256=I8m9BnJFUePu-e79F4DCbcktWeCNaJaAatSaGtPoXDM,1234 +ckan/templates/home/snippets/featured_group.html,sha256=96WQY0XDKdyAc9g78HRmHCOboUXSlGYLSD6FVKK7wOI,202 +ckan/templates/home/snippets/featured_organization.html,sha256=lVnuKkLQZ1t1drMXyYJx25e1z439gWAh6OCy6qG8Aik,251 +ckan/templates/home/snippets/promoted.html,sha256=tInuyZql45nda_DXn-h9FDWIWneVONdqWxugr6G25aY,946 +ckan/templates/home/snippets/search.html,sha256=F4ZIlcVUEppr-7BsuBoBT3q19iXX8t_087KRrawB9Yg,1085 +ckan/templates/home/snippets/stats.html,sha256=liYGCOVOghar5kITZmd-WR7Bv73DQ1HbU5grkQl4phI,1019 +ckan/templates/macros/autoform.html,sha256=W54A-Z1Ff25mGi_WwZz_NZLRUZ_rHeuvMTC4ZSNHKc0,3339 +ckan/templates/macros/form.html,sha256=pnan2opvTcx6uEBovX1UC_Og9Q59N_GEEGM2jH3cLJE,19517 +ckan/templates/organization/about.html,sha256=DYEqvhV1nfw9wSdNIz-g2bAxda5A0B-85D5sQk1LGhc,557 +ckan/templates/organization/activity_stream.html,sha256=cqWK5bt4C8ZSNQH8S7LHjBB07e1oIgVWd0GQLILwZZk,357 +ckan/templates/organization/admins.html,sha256=AaJy-mg4_zvWsYKbLtIk4q3aMWDhvBN_7HJRgZU4iJQ,411 +ckan/templates/organization/base_form_page.html,sha256=tWQ_sxP-UueOMSutgUEh90B7M8CTq1dBAymjUeUrZCY,305 +ckan/templates/organization/bulk_process.html,sha256=gZRtBPwvRfi47wypu1LE-gHJ79zg2C5Ma8p-hRyqQT4,5187 +ckan/templates/organization/confirm_delete.html,sha256=bDKQSPWpGD58SvPhpG8akFYSWfabbQxYtmMZlaQ5RJI,885 +ckan/templates/organization/confirm_delete_member.html,sha256=mWMr738LVAhmZ-S5OLx2Wau342J7RxsiVglQE9U1tpg,912 +ckan/templates/organization/edit.html,sha256=vTUby80rZecKs3ZIoddfnldMRAg2gwyyIlJ1xXSYTc0,241 +ckan/templates/organization/edit_base.html,sha256=RtzJ91-C0TkK7j-M6ngLoqbzihlxmb8qC5TFSxL87Cw,1612 +ckan/templates/organization/index.html,sha256=AdHezmdAOY8o6SIcHa--eTpshrCtaV3lMus6UezGzo0,1915 +ckan/templates/organization/member_new.html,sha256=Pwk27ElBdNpU8CChT6O8qr-o7Zy2UO7wSUKNRDpeWzI,3812 +ckan/templates/organization/members.html,sha256=uBC2Sm2wu28dPApDrJpnV8MNAAiXjS0vY8PbIW3UEd8,1809 +ckan/templates/organization/new.html,sha256=i2x31-KFTKDAg-FWwvPR2sdvTMSrSHZQDeewFlGjH_o,611 +ckan/templates/organization/new_organization_form.html,sha256=P_PCj2F2He_jcNOFxmCGjgcP4AaEweBSLeXjf5Yh2s4,651 +ckan/templates/organization/read.html,sha256=A3u7VS32TnLuQ_ygRfYBKoy73Pqndo_laYl7qNuL3wM,1861 +ckan/templates/organization/read_base.html,sha256=f9n8SvoReVuW1l5ljx07DwfaOXVbtwa3GY-47BIhx-o,1395 +ckan/templates/organization/snippets/feeds.html,sha256=2YyDgiF-Y1h1fy0-aeVPAIXmPIgOC2sL-w9VwrgkK0U,515 +ckan/templates/organization/snippets/help.html,sha256=wolWRhcfr81hJg4JwJ7XicZIonrpCZ0ZCPY3PrvLzeM,721 +ckan/templates/organization/snippets/helper.html,sha256=xGlqPM7cyn00egaUYGHNerOkAuEUp5BTX3Kk2SrUB8U,500 +ckan/templates/organization/snippets/info.html,sha256=L87u6G13vRds6qg5GkccLbKfR2OQXEU28ed97a_hESM,688 +ckan/templates/organization/snippets/organization_form.html,sha256=TSf0iTPJHNvb4M5XvWi27ZTgZ1Pzid90AmaEhm1RPxQ,2506 +ckan/templates/organization/snippets/organization_item.html,sha256=9j44qfoKcP3G9ax_RpxoUzV2a1CzBCAPvrRrlHsD6-c,1954 +ckan/templates/organization/snippets/organization_list.html,sha256=AfnlOLOMYms94hsdG4YPTGYEcIkuUcFR7DeYFlxn4O0,518 +ckan/templates/package/activity.html,sha256=oL60_4T_RuJbpf1AOwLNjWlJtGZVz7fFBa7fdoxEPNY,354 +ckan/templates/package/base.html,sha256=Alx7eNpW-WNjY7NKC1-Qn00vhDLWs1FBo7yWR6fbz0I,1201 +ckan/templates/package/base_form_page.html,sha256=nByjImBJCpltfrcb7wrJDfyJ5CF7uwJspG5DaVAdV4I,1391 +ckan/templates/package/confirm_delete.html,sha256=yc7QOJ4bPn-qVkbd8hNg1FzJvEWOzeua5dET9nhZYSw,921 +ckan/templates/package/confirm_delete_resource.html,sha256=s4ccB0e0VQEeY7oxxf70Pe1TGc2JtxcW0D_VMnwkwrw,927 +ckan/templates/package/edit.html,sha256=9CvtNDZ9suRPUx_C3jPQg4hqhS7LAusY6cMpUM42k-s,342 +ckan/templates/package/edit_base.html,sha256=NspYmdFcscGJxNqhtnrzxcAr5_Z_6y0ZGBoHz4zaOTo,832 +ckan/templates/package/edit_view.html,sha256=dBfpCLtCh7aiKTs7ZhVzGTp_aJXWxCR1NxPDkYia1Hg,1099 +ckan/templates/package/followers.html,sha256=kj3iJ3o9uJ-5h_B8yd0UrEoIb4owQTlqS3OiIJb7KmU,397 +ckan/templates/package/group_list.html,sha256=MB3rhXq2q1Fn6Jmj2j-XYgbDy1ERIXuifDbUvUwrD2o,914 +ckan/templates/package/history.html,sha256=tK2CYztKV-gow3oCu4HblkJlyRc7tMl8DcMYryqjoQg,399 +ckan/templates/package/new.html,sha256=Y73FOziR2ro6--Vd9yakEvclwpwS1wu9lZl1XJ5O5WQ,337 +ckan/templates/package/new_package_form.html,sha256=_k9F8Y-AeldJIEEkf2tcShUAafxIaALJGFSQzOFRh50,623 +ckan/templates/package/new_resource.html,sha256=8C0siS8EmZ5ht3BNhtbRmcXMFs_sjBxe2cjbNJfoZ3g,817 +ckan/templates/package/new_resource_not_draft.html,sha256=rWcWw1dmEwAath4mCydVWkqe2J3MtLFuoqohcMeLCUE,836 +ckan/templates/package/new_view.html,sha256=uCqKe_NqcgUrxLL3Si2VVLyMY5RmLwCLRguFu8TOrr4,1537 +ckan/templates/package/read.html,sha256=HH6S99qBR-TWjSJ8jx6f2l4h9vMHSL3upawygBX9GIw,1358 +ckan/templates/package/read_base.html,sha256=cXCFkWTBPJg_bnV7O2px6Izx8nv5A-eIBzwDgXLInlE,2254 +ckan/templates/package/resource_edit.html,sha256=0zVC-iud5PtF3G_I3qQbu-sDCFx2xHL4mnXgqO-nuIU,508 +ckan/templates/package/resource_edit_base.html,sha256=Ddb5AqtmvHACbi9dDxqhzy8Vhm2oHPBmwQ8q_DRYrs8,1523 +ckan/templates/package/resource_read.html,sha256=nrONPddl_zucq7DUoOCwkhx1AGkKoxngBaKuOGSEXq8,10200 +ckan/templates/package/resource_views.html,sha256=SncRsxv6cek0D7BtOgvFgWQfBWw-UhdC9LLBPmaecU4,1260 +ckan/templates/package/resources.html,sha256=WpV1hKD8jEOU7or0hrh0wepS_oOLd3V2PBN3Xzb3Iqk,1238 +ckan/templates/package/search.html,sha256=fu5sT88OEoGgNZ6qWu_E57ED8R9t_f1JG4NWHymb9GQ,3221 +ckan/templates/package/snippets/additional_info.html,sha256=mdyYvpM2OGbhcvDpYVcY2tYj5HC9YH8zCeJnXOp8No0,3575 +ckan/templates/package/snippets/cannot_create_package.html,sha256=P_aAPn2o7ZIKb0TshVHecJPrVl0iJfM5T3QuyBOEG5g,1037 +ckan/templates/package/snippets/history_revisions.html,sha256=FAZGiX-qx4MLaWTxRLqyC6QGLuG-hiQJ89KETYo9gpo,458 +ckan/templates/package/snippets/info.html,sha256=4jaY0Pm0-GyjtpaxKSpTERBHSYzvH3QNlq767vIkVTc,1329 +ckan/templates/package/snippets/new_package_breadcrumb.html,sha256=M-_dFKc_Tk4htvjoRRovGOQd7D0ziVdFM_FevllT7gU,205 +ckan/templates/package/snippets/package_basic_fields.html,sha256=VPAPi-ospl_6TQivhzztg8wDGRUN7Qp5W_v7gwxczV8,6286 +ckan/templates/package/snippets/package_context.html,sha256=RJQgs67W38LDvhBIcpYu9s_JirHY1sY_vmslYCNJM60,507 +ckan/templates/package/snippets/package_form.html,sha256=0n_EHDkitCyd-27HutY0FC3DrCyTq-6e1OKzoFIb-Jk,2322 +ckan/templates/package/snippets/package_metadata_fields.html,sha256=JMRgr18hXOilWFxeoDhOOdBcTxv9YZPD-GZrbcRWsqM,1713 +ckan/templates/package/snippets/resource_edit_form.html,sha256=WxbEjUXwhstsEafz7iQhGAZxt88MjojF5kBMqvX6wew,308 +ckan/templates/package/snippets/resource_form.html,sha256=jPrFvON7nOCf7x8GSgar7Al0nbZjl3coIbKx3XfxV9c,4725 +ckan/templates/package/snippets/resource_help.html,sha256=D997Msr8RRiS3hzWpiqHvVsXtGWn21kaSLJ0OnavtHw,295 +ckan/templates/package/snippets/resource_info.html,sha256=ftA6t-KTmO6BK3-MOSplvRSxj7yrPVS7rTYK1AZySYg,475 +ckan/templates/package/snippets/resource_item.html,sha256=MXAHt8L3ng2Ep4C77tvhrsmq8m49NZBdGGGMvl9O-Ik,2330 +ckan/templates/package/snippets/resource_view.html,sha256=hdyWV1tiq0K0dycBxsFLMG2fZoTT-FoytDaMQW_Ld9c,4481 +ckan/templates/package/snippets/resource_view_embed.html,sha256=sPwBaj28nFWt_moPd2UC8nZqvf6sBU72dMwXWjj9c8c,181 +ckan/templates/package/snippets/resource_view_filters.html,sha256=WI3bSazH_EDblnGgDvKfkrapB5vowGqBHeG8nE46xKc,214 +ckan/templates/package/snippets/resource_views_list.html,sha256=nqAL5NxHs3sSA2zHlaEUJkHqehtpZ6fMvWKCxvlfSiw,852 +ckan/templates/package/snippets/resource_views_list_item.html,sha256=uikyOvJQcCAtd_AT7tuzCavtg9VHnOgRoLWRZG0hoAE,685 +ckan/templates/package/snippets/resources.html,sha256=HdquTZ9vEPhuIRCBVozsftaOoF_SYEq3cAVTvpk_-IY,1287 +ckan/templates/package/snippets/resources_list.html,sha256=NSGQCElNPQE-ZWMbIhWH2ZCTDI9sHyfQrv4UxdfULw8,1265 +ckan/templates/package/snippets/revisions_table.html,sha256=YNMrayj2sYQouiXNV1HMNRMxeCIaCDPG9KZy75NBWa8,1129 +ckan/templates/package/snippets/stages.html,sha256=q62jjQ7ruqq2nEr5aH0XM43Xg3QVtklj2qk_1ibgVA4,1463 +ckan/templates/package/snippets/tags.html,sha256=FaW9teJB4rWQinRE4KoWxa5NZNdwsHDIiNm_yhOUhWY,142 +ckan/templates/package/snippets/view_form.html,sha256=DojuRHD0R6lRSOIRROYln26yo0ITe_Wqa0GmshE2v9U,789 +ckan/templates/package/snippets/view_form_filters.html,sha256=cTyKGQoh9jk4MV_oqcQPhcKBOJh8jp1GL1kmvxFOVww,2167 +ckan/templates/package/snippets/view_help.html,sha256=IWq1Ce3g3KEhUoT7AtxyBdyT4X1d3CA9RdnzP0eDKiA,285 +ckan/templates/package/view_edit_base.html,sha256=DKFbwNdxu6bokt4FiCkNfA9nv3qJsBff8HYQgKaF55Y,1814 +ckan/templates/page.html,sha256=LhVjKxF6kO8wsBhMXk9TYQ3xIGZvN2cWTOwc8rpYG4E,4811 +ckan/templates/revision/__init__.py,sha256=VwEQEuqq0IrZBz1sFEXxzlmhD-N5PUCsFLyDPEt-mFs,86 +ckan/templates/revision/__init__.pyc,, +ckan/templates/revision/diff.html,sha256=th0DG_v3UKWrTNANekCApuxW2-SyZIWEZKLn89DMCC0,2159 +ckan/templates/revision/list.html,sha256=kkxp7EaisIRgUz8jtSJcCeSBkJRiBBOb8-WAYuCJkA4,514 +ckan/templates/revision/read.html,sha256=DqUEpUGVE1JsgLpaDB672yu80vmsp6ZPLa12TD50Fb8,2773 +ckan/templates/revision/read_base.html,sha256=nQA9RMaA5Kncp3mYA2DbWV4T_vqIY65DZsBQei3Vg8I,408 +ckan/templates/revision/snippets/revisions_list.html,sha256=1dUxnr5WNPttrebN90-NxUJh36TTLbJlIUA8Ulb9jAU,1173 +ckan/templates/robots.txt,sha256=Fh8J8kR6O8oXGfFjW6QAIJtqo-EApB92i2ZTYMdfHPI,219 +ckan/templates/snippets/activity_item.html,sha256=61nilsWej005JVl9KBtenCPRhAQrD80EhdxWgWTmk9Y,457 +ckan/templates/snippets/add_dataset.html,sha256=WPHuNihoQMw2O1fItznk06yJuhMTakUZ66_uNyF5ft8,441 +ckan/templates/snippets/additional_info.html,sha256=xzwMtb3x4wRKyWrfUrKDALpLu9brYZeqeBOeeNR9FLo,740 +ckan/templates/snippets/context.html,sha256=ZANtQ7SUGn_NFF48yG5hgZVAqX4k8AiKzo62-WfOGHE,728 +ckan/templates/snippets/context/dataset.html,sha256=imDFtY96GVwu7G8PlwBC3Oo7p9cWJrfL9l-CNBpnwKY,531 +ckan/templates/snippets/context/group.html,sha256=2Q9KN47CAKUIaDYwwVmKOA6D9Py0s30nIPaj6dzx7wk,546 +ckan/templates/snippets/context/user.html,sha256=sCKt2MfuHoPKHR2H-UGRAgmjV_svunRmPf9T_ilDM18,685 +ckan/templates/snippets/custom_form_fields.html,sha256=iSMEsaSmqiN54oSx_cbNK046fWG-iDmRyqmhNRKLKFI,1404 +ckan/templates/snippets/datapusher_status.html,sha256=1etUzcfkXlPvilUXkqizU-1kJzEnMw8-MseA8pMW8fo,571 +ckan/templates/snippets/debug.html,sha256=b9D2UegpCDn_J6LD4cI--BtdCEDcCreUvMzlmg9u-NE,2008 +ckan/templates/snippets/disqus_trackback.html,sha256=xcvs__xEg6s_qwR7a8SkKLb2HF-yGE7NG4C_Cs5rASY,274 +ckan/templates/snippets/facet_list.html,sha256=BcHxUUNmgfH07rYBOWgxtufXZZPoh8XfyxXhwm3mYQI,4309 +ckan/templates/snippets/follow_button.html,sha256=r_iR4bSsOFTp3ZGSIJquAKA9WOvEbdESNGqk2csqZt0,813 +ckan/templates/snippets/group.html,sha256=hfd8cxyQEAqV475nNAO4tMmOc96y8QXhi7fDfonNZwQ,1018 +ckan/templates/snippets/group_item.html,sha256=TT8lHW0BEHwi2ow1PEMbpmDkUnNNgVAZv8IM8y-zEnA,1593 +ckan/templates/snippets/home_breadcrumb_item.html,sha256=a2Dlono4DBGqSYsuIKeUT1yS7w-lj61ydWD1A5eogUo,175 +ckan/templates/snippets/language_selector.html,sha256=z7SzeszW5KDN1yjDr2Qvn7Uza2Qpsoi7TH1Mq58H8Zw,816 +ckan/templates/snippets/license.html,sha256=50wCVm2CcqKDahUyj2ZiIAv0SDfSzeS25wHUqx6LcUQ,1426 +ckan/templates/snippets/local_friendly_datetime.html,sha256=jPDKsKjeHPmiCydszcB76poC5nqeqhyoANAoaVF9gnc,504 +ckan/templates/snippets/organization.html,sha256=DzD48_zNSJscvaZI-loDrsf8FwEe-o8vdYAgtn7_fbw,2624 +ckan/templates/snippets/organization_item.html,sha256=HaRUF9AHNhcL29XwbAW1dl9i15H52GeOFED7I8_1hh4,1551 +ckan/templates/snippets/package_grid.html,sha256=oYzzSVS7u7IcpRqDz5kV4x3zAyG2X8kxHnCWUBaenCY,1147 +ckan/templates/snippets/package_item.html,sha256=vMF2XIyRwF_qZr16eRbGKJZwl8-znp20PjMPYUJwxts,3076 +ckan/templates/snippets/package_list.html,sha256=80wSnyxwlk35HxJLCH2SXhlBAhoCCYBkbH8L-jmrm8Q,990 +ckan/templates/snippets/popular.html,sha256=SsLjoMiIUkZoFLrJ05413zVM7OQkDn1VND-3gC_FIQU,219 +ckan/templates/snippets/private.html,sha256=4X2lEHejEXbk3rlSOgQQLSqKWrh3r3kBQkMfNtXh2f0,125 +ckan/templates/snippets/search_form.html,sha256=S91KAo6wz_Z4fU9HW6LGUsTlIrQ8M-Lm-L66bcDMtQY,3585 +ckan/templates/snippets/search_result_text.html,sha256=qtLvEteyd2P6w4YN08q00ENRn2NQhQJNOzbeUJBWRHg,2627 +ckan/templates/snippets/simple_search.html,sha256=aUj3_O8T-n6hxYy8z1Jr1DZK-w6AjpLodoix8fEqPC0,1010 +ckan/templates/snippets/social.html,sha256=6VQBdi4TGvibHNmVZhcSdjyOYg2ezqARHDoBHE0-L00,697 +ckan/templates/snippets/sort_by.html,sha256=YdSookzUglNX5bKUSC4f40xOM-RFik14JTiqRV_zk_0,1219 +ckan/templates/snippets/subscribe.html,sha256=wFKJ1R_coyXevEe3BmgpCNmFlxEznWu4Y3_llprb2U0,384 +ckan/templates/snippets/tag_list.html,sha256=HQOsH2fplOh3509oCUPzqKRLO_b73YOAnA48sW51hH8,445 +ckan/templates/tag/index.html,sha256=D1hdUKKpSDvwe08atE5ljGysM2D_U3w0WjaSnWlO0Ds,1424 +ckan/templates/tests/broken_helper_as_attribute.html,sha256=8S9L9K8hlGC5HC8fi_gAHZOpVPaeQ6X64jQjQr0nXkM,82 +ckan/templates/tests/broken_helper_as_item.html,sha256=IF7hYrDnMl9FBdl34JybYcsTLlXjDezf2_98JWvhIrI,85 +ckan/templates/tests/flash_messages.html,sha256=er3DLL7onldw14uJrRZb8kL_O6P5sCV0XTF6qZ4Acs4,304 +ckan/templates/tests/helper_as_attribute.html,sha256=i8tpJTcn0LPc6icSsEVMcwZLf5UH8yr9crL0uGypHww,90 +ckan/templates/tests/helper_as_item.html,sha256=Zxg4hR5OTss8Ltc438XaXwGtbsdg7b91cGXTTcyGdCk,93 +ckan/templates/tests/mock_json_resource_preview_template.html,sha256=F6vCSr4BiCbYbwCw82c4QSmU_z96-DCbK7n0PDce4J4,311 +ckan/templates/tests/mock_resource_preview_template.html,sha256=tcBQg-jLmV0zioVklijhLsIDJT13Iwve03VGYXyMsBI,301 +ckan/templates/user/activity_stream.html,sha256=E25tTmqEKwcVaP3BDL5ILOwCRIvelnXchlPwl1cwJ-0,343 +ckan/templates/user/dashboard.html,sha256=_scuGSrvHLUYt99zkyuKQ2yoNPsx4fYd8da5dy6wP7U,1760 +ckan/templates/user/dashboard_datasets.html,sha256=NCZu9jhCCXJPs1X9q0JDFWB2-CAn96pxVvH0RVDggFI,716 +ckan/templates/user/dashboard_groups.html,sha256=OzhZGeNOoCgqpjRn5OzSrp9GfB-QNztkr0JFa__wP7g,847 +ckan/templates/user/dashboard_organizations.html,sha256=yCm8DKvUDFS9EqS9x4PnpnFljAah2VlPH7d6mWo3LgM,1009 +ckan/templates/user/edit.html,sha256=kddM-mLw4d4VCm13cBza-2l2BcFRdeZHr4YP5W3cHzY,813 +ckan/templates/user/edit_base.html,sha256=d2WLnXoXvponLLODny28-NyC7dfIKmgUSB8XdWuzy3U,311 +ckan/templates/user/edit_user_form.html,sha256=YKwLK5dNyskuaryuI3Qi9tkIIkJj6RR4u4k_jUjC6WU,3478 +ckan/templates/user/followers.html,sha256=l0TvcqjhMYI4Fx-3UF6Uy9QFiJJBiIOHoWRsrA-ymt4,351 +ckan/templates/user/list.html,sha256=-PugqwTwrfP6LK2_EkLkpoO9i6msr9DS24NicPsgoqY,939 +ckan/templates/user/login.html,sha256=AEGZ2f5clYwb_gn6hIbmnuiARBy0ADbP24mNwe846Uc,1858 +ckan/templates/user/logout.html,sha256=KGht1zvqpL8rDWScFFq5Jm2iHUQD2_5DcddAsFVZ9_A,384 +ckan/templates/user/logout_first.html,sha256=M1jsq-iVhg9Di2euD2OvjTX7CftjhE9QqSNGGVy1BmU,1354 +ckan/templates/user/new.html,sha256=XIydTbhnJJRAspPhB0C1kRoL_3wf58yleBy0yUyYjmk,946 +ckan/templates/user/new_user_form.html,sha256=HQNxHgov5zZNUNNMzuMkAV6jA9fN7Sex2-ydusEIrCg,1489 +ckan/templates/user/perform_reset.html,sha256=H4G3xxu-lYo7lbYaWiR2djd9a7MaNANmg49JWT13pu0,2134 +ckan/templates/user/read.html,sha256=Mv4IHOeDOoWvvqXwcI0G9gLN1KmuDurwtakh14mCVmw,906 +ckan/templates/user/read_base.html,sha256=1lyPxWOxCV05OyhP5jREVrAbO8lytT13328tPLihUCY,3587 +ckan/templates/user/request_reset.html,sha256=prECngLLbVig3i1g4GC5HeRj6jW_4e3sx93rKKbOmAI,1494 +ckan/templates/user/snippets/followee_dropdown.html,sha256=qRZ0Uj9pp-yxjJhR8EYm0DiQ8iqSO0B9Y7D_iptvqlE,1940 +ckan/templates/user/snippets/followers.html,sha256=VU-SU90J_tKiWjW45Cqc70FH740Ue_HslUzUyHgdWBs,338 +ckan/templates/user/snippets/login_form.html,sha256=Ky7rMG369w-g38A-jnNoZ5_02Ws3-35uKWSUwgFNJW8,1038 +ckan/templates/user/snippets/recaptcha.html,sha256=cfIJOaA26LqHiEJSVziDEKR-o0MhM_9HaZm_COpmEbQ,942 +ckan/templates/user/snippets/user_search.html,sha256=KtQAYnTkTukHEIF_iSA9IwS_BK3WQHGTVbCeFutrBeA,696 +ckan/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/__init__.pyc,, +ckan/tests/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/config/__init__.pyc,, +ckan/tests/config/test_environment.py,sha256=aqX9IbANH1NMv9PZ7RbtvctUGkdMBygAgxTkoiopPcI,4247 +ckan/tests/config/test_environment.pyc,, +ckan/tests/config/test_middleware.py,sha256=M_7UN7-0vV-v0U1T1_c3iSDm9IuXO1jqxXaESig2guk,20916 +ckan/tests/config/test_middleware.pyc,, +ckan/tests/config/test_sessions.py,sha256=XFX58TX9a3UXJJBbnQ9p2USTHJdvCHrSJ1ERdUXLpKY,4675 +ckan/tests/config/test_sessions.pyc,, +ckan/tests/controllers/__init__.py,sha256=BV9JqxiGbkzTK_ABFBAc-sKdee_m3TpBrGCu8jcoQCk,2240 +ckan/tests/controllers/__init__.pyc,, +ckan/tests/controllers/test_admin.py,sha256=8f4U89OkZ8i45PpQ5n2LybxrkNwE77kAZQIqFsU-XFQ,15758 +ckan/tests/controllers/test_admin.pyc,, +ckan/tests/controllers/test_api.py,sha256=tuMFImlIPskLaEF6pj1Zyv9nF-q_0_XPVMMfyxTTArs,13488 +ckan/tests/controllers/test_api.pyc,, +ckan/tests/controllers/test_feed.py,sha256=G6AobdiZvYsWAP3aJhIjk53boDcbNdd33aGZp-QavVI,5069 +ckan/tests/controllers/test_feed.pyc,, +ckan/tests/controllers/test_group.py,sha256=-DX9kmROqjcC1bC_BLPPO9qREDOKYw6VSpez0TH6k0w,29765 +ckan/tests/controllers/test_group.pyc,, +ckan/tests/controllers/test_home.py,sha256=AvKlvlp9mGQ-l19ErJ-Mg3vO6Rj_n05_iV7gKjuWb7U,4621 +ckan/tests/controllers/test_home.pyc,, +ckan/tests/controllers/test_organization.py,sha256=8msinJelWoJ0EBiKmKGTA7qjvANUH4S_-r7EbHFTLgQ,23650 +ckan/tests/controllers/test_organization.pyc,, +ckan/tests/controllers/test_package.py,sha256=OtM22ikyqcxtXqYDvD_YwJnDvYNFRJAyG9rcN3Gxa2Y,67289 +ckan/tests/controllers/test_package.pyc,, +ckan/tests/controllers/test_tags.py,sha256=Rhp9jLrCWGkXjq0qbydRXJ3cn3vnxCH-0UP_oQPB-Z4,4609 +ckan/tests/controllers/test_tags.pyc,, +ckan/tests/controllers/test_template.py,sha256=Dzh1L6RsliY_K_cpMSGJ4O8rWCfdTF65Ju3-NF0ISBk,585 +ckan/tests/controllers/test_template.pyc,, +ckan/tests/controllers/test_user.py,sha256=-zSn1mhtvnmpp7cCwm7W0bexDH9BzVEb3P0pztdxxFM,25420 +ckan/tests/controllers/test_user.pyc,, +ckan/tests/controllers/test_util.py,sha256=Z0dy8LAwR4-hivHkozpLwrEhTvqwXoOvf0avCk3frRk,1291 +ckan/tests/controllers/test_util.pyc,, +ckan/tests/factories.py,sha256=L8xRXFfM3PfB-Rljzp01WAMLG1IKIyFIJt7eYPvq02A,13931 +ckan/tests/factories.pyc,, +ckan/tests/helpers.py,sha256=YpfUyEonuWZtF62stIrtIsh6tI3TK_BoVWqjhONhANM,23289 +ckan/tests/helpers.pyc,, +ckan/tests/i18n/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/i18n/__init__.pyc,, +ckan/tests/i18n/test_check_po_files.py,sha256=kROTwDEPftwfPy8KK51pS4mDE-do6IvOQTLVBTWKeac,3725 +ckan/tests/i18n/test_check_po_files.pyc,, +ckan/tests/legacy/__init__.py,sha256=X6StTpEijiFDQEunGh4wqfn-5Iz-MdAhHlroLJC0um4,13155 +ckan/tests/legacy/__init__.pyc,, +ckan/tests/legacy/ckantestplugins.py,sha256=5mCIly2seHB28UYRQIb7oIvwns81DvxyVKbUxDsa8tM,5486 +ckan/tests/legacy/ckantestplugins.pyc,, +ckan/tests/legacy/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/functional/__init__.pyc,, +ckan/tests/legacy/functional/api/__init__.py,sha256=LZHieMqgkq5bvRdYiCsbbBth2xEzKccdCm7wei9H6n0,1388 +ckan/tests/legacy/functional/api/__init__.pyc,, +ckan/tests/legacy/functional/api/base.py,sha256=PKP3mEIecDzB1vpjpkewpd6LC8HabaeZAQEpsTzLaEk,11772 +ckan/tests/legacy/functional/api/base.pyc,, +ckan/tests/legacy/functional/api/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/functional/api/model/__init__.pyc,, +ckan/tests/legacy/functional/api/model/test_group.py,sha256=_LKyhwmuwDiCAriFyDpOqeFAb6IwNSuuCYpVF1W58dI,7636 +ckan/tests/legacy/functional/api/model/test_group.pyc,, +ckan/tests/legacy/functional/api/model/test_package.py,sha256=ZSJgcOGPpbd1Gg_qxUaBDpSU3ZupwlwzfPJx41U01RE,24899 +ckan/tests/legacy/functional/api/model/test_package.pyc,, +ckan/tests/legacy/functional/api/model/test_ratings.py,sha256=ENL1YeUa9a4G_I38yYykLBpjUMMnxUKHc9vp7Vcpwow,3770 +ckan/tests/legacy/functional/api/model/test_ratings.pyc,, +ckan/tests/legacy/functional/api/model/test_revisions.py,sha256=2AYfoSXQIDJlJPJgfDGuKQsgMviZYm7bhzh0HlFZxd0,2273 +ckan/tests/legacy/functional/api/model/test_revisions.pyc,, +ckan/tests/legacy/functional/api/model/test_tag.py,sha256=mWFXsF_7Quzn3MkCWRfC3vZH1xY29IYgBIoLte53q_0,1916 +ckan/tests/legacy/functional/api/model/test_tag.pyc,, +ckan/tests/legacy/functional/api/model/test_vocabulary.py,sha256=u4qPniexs6xejibD4JvKmCjapZNWYhNi8wiiGeOr7Yo,46816 +ckan/tests/legacy/functional/api/model/test_vocabulary.pyc,, +ckan/tests/legacy/functional/api/test_activity.py,sha256=wlX_eo9f9SeICUFkT1N3b99U-qIXH0bFl_m79h0GRvk,91245 +ckan/tests/legacy/functional/api/test_activity.pyc,, +ckan/tests/legacy/functional/api/test_api.py,sha256=JDqFJQ_qPqg9U9tzO0DZ9aE3NJ3_HFlROJmfTqEpIKY,1802 +ckan/tests/legacy/functional/api/test_api.pyc,, +ckan/tests/legacy/functional/api/test_dashboard.py,sha256=FjCX8uWIWuzGqqnaagKYWdsiEKubCNRBqa6S7HYvMec,16195 +ckan/tests/legacy/functional/api/test_dashboard.pyc,, +ckan/tests/legacy/functional/api/test_email_notifications.py,sha256=pKZe9ZPEWVUPBOqbQoDoagjVGapqvGPvp7vCyRkWWyY,20281 +ckan/tests/legacy/functional/api/test_email_notifications.pyc,, +ckan/tests/legacy/functional/api/test_follow.py,sha256=SBazL-dfaXlJfTkaIdYqceB-Xjx0wFMhet4qGyQJfy8,60213 +ckan/tests/legacy/functional/api/test_follow.pyc,, +ckan/tests/legacy/functional/api/test_package_search.py,sha256=mUuKZV0F-rCsf4-pllmqrNFwvo5EoApvMW1Sq3S7bOY,20401 +ckan/tests/legacy/functional/api/test_package_search.pyc,, +ckan/tests/legacy/functional/api/test_resource.py,sha256=UVjyvXbLzgYxZXZ-PCpoz6XzFOxs78VkkX5T0J4wVPA,2711 +ckan/tests/legacy/functional/api/test_resource.pyc,, +ckan/tests/legacy/functional/api/test_resource_search.py,sha256=9KIPabgRBQlzfVyTt1eIXlP1ZyRh9EJ1c_8U_g9_E-U,3271 +ckan/tests/legacy/functional/api/test_resource_search.pyc,, +ckan/tests/legacy/functional/api/test_user.py,sha256=J_Gaq1x0Q-KmMpPIEt5URxWhuNIIlpqufpM9lFhKQ20,8096 +ckan/tests/legacy/functional/api/test_user.pyc,, +ckan/tests/legacy/functional/api/test_util.py,sha256=c80lNL4nKTuhqUxbwTPiGfz7kkgI2ie52_gJZs5rUt0,1315 +ckan/tests/legacy/functional/api/test_util.pyc,, +ckan/tests/legacy/functional/base.py,sha256=Q0twTGCnb2rlDFN4NxUGlpyG8WyOnyrxKBr5BCBRsPU,218 +ckan/tests/legacy/functional/base.pyc,, +ckan/tests/legacy/functional/test_activity.py,sha256=46Scq7E0eIOutHjtecTc-TRcxXmMCpA8dSM5h4R1mlI,10154 +ckan/tests/legacy/functional/test_activity.pyc,, +ckan/tests/legacy/functional/test_admin.py,sha256=3OV-kN6L8vQOqTyQb6fr_RHdThY0aHH1My-YRgrRzBs,916 +ckan/tests/legacy/functional/test_admin.pyc,, +ckan/tests/legacy/functional/test_error.py,sha256=I-5R5rRt6WqNPe7_6VLTU0GAjnxKDZwl5XQ_HaxEEbE,276 +ckan/tests/legacy/functional/test_error.pyc,, +ckan/tests/legacy/functional/test_group.py,sha256=hOnZlepLO-mnqj7PXvkhylqtb3-QNf0A_um2scPIhbw,6410 +ckan/tests/legacy/functional/test_group.pyc,, +ckan/tests/legacy/functional/test_package.py,sha256=dDBmgmWEqHWfDeCqEt2GDgHrh99BdxePViR9KS_NB4Y,31562 +ckan/tests/legacy/functional/test_package.pyc,, +ckan/tests/legacy/functional/test_pagination.py,sha256=VZcxfgePihyWBilicQRSoEWzJSLNuvE4042sbns0E38,6011 +ckan/tests/legacy/functional/test_pagination.pyc,, +ckan/tests/legacy/functional/test_preview_interface.py,sha256=U4J_yFHsguiYN4rVMbjrqXQMyG0RiXluhNnW-HHg8DM,3533 +ckan/tests/legacy/functional/test_preview_interface.pyc,, +ckan/tests/legacy/functional/test_revision.py,sha256=neIl5aab6Ie950P2KXMIdlot61VXfBNieDaRVKj_CWw,6004 +ckan/tests/legacy/functional/test_revision.pyc,, +ckan/tests/legacy/functional/test_tag.py,sha256=pAr2tepQMes1fLEXirsFeIpdtc6G3MiW7CG3Ul1r2Q4,2075 +ckan/tests/legacy/functional/test_tag.pyc,, +ckan/tests/legacy/functional/test_tracking.py,sha256=WWeufX2vgVQqMGbmmZbhKRm199cSnvk-SXfKdqNncwY,30309 +ckan/tests/legacy/functional/test_tracking.pyc,, +ckan/tests/legacy/functional/test_user.py,sha256=CqhERFVfLKJ-lRzhGt2gVcMhMjgtaDF41MVdU4WekZU,6737 +ckan/tests/legacy/functional/test_user.pyc,, +ckan/tests/legacy/html_check.py,sha256=ySB_-FKuIi9MaNRF2JMkajKqZWpScFg-4_n_hsIPSOQ,4732 +ckan/tests/legacy/html_check.pyc,, +ckan/tests/legacy/lib/__init__.py,sha256=SEWlSR75zGq-RCGnsfX_BYJipYEflC9INrYu6FWmD0Y,529 +ckan/tests/legacy/lib/__init__.pyc,, +ckan/tests/legacy/lib/test_alphabet_pagination.py,sha256=pjmE6i02ET63_loLhak-uLh48d5qu_FvFxHe8AqKMPg,4895 +ckan/tests/legacy/lib/test_alphabet_pagination.pyc,, +ckan/tests/legacy/lib/test_authenticator.py,sha256=6HOeRrfdO3Z3oAhVxt8wxVYIqAQ5DuzyVDyiA3kIxXg,2485 +ckan/tests/legacy/lib/test_authenticator.pyc,, +ckan/tests/legacy/lib/test_cli.py,sha256=vRdw7AJg-0322EmK1IrJ4WYlENEgFiM13hqgQNo3BG0,2106 +ckan/tests/legacy/lib/test_cli.pyc,, +ckan/tests/legacy/lib/test_dictization.py,sha256=XZ2sIC-c5bQsWKcP2z7DnQPEtshBd7-lB-GoMh-7u0E,30407 +ckan/tests/legacy/lib/test_dictization.pyc,, +ckan/tests/legacy/lib/test_dictization_schema.py,sha256=QY-8JKpvLQSn7laa-b7ylWqm6Cs04vvRah0KprnD5kk,9605 +ckan/tests/legacy/lib/test_dictization_schema.pyc,, +ckan/tests/legacy/lib/test_email_notifications.py,sha256=NvXe-eiQnySqwMdSHmR0WupU0PDglZq3bDaPeo-llww,2357 +ckan/tests/legacy/lib/test_email_notifications.pyc,, +ckan/tests/legacy/lib/test_hash.py,sha256=u2hLbohrJ52EN73zKPmDz7R1Kry1bEJBifZyBw_PXmQ,580 +ckan/tests/legacy/lib/test_hash.pyc,, +ckan/tests/legacy/lib/test_helpers.py,sha256=VIuBgA6hxrOpDGzL8KGfYWxK_nFIhKnRFjjpSLfnCCU,8070 +ckan/tests/legacy/lib/test_helpers.pyc,, +ckan/tests/legacy/lib/test_i18n.py,sha256=PJamTqmVhMK8JF5Jr6UEy9rXadHZj_0v5t7DQVio5xI,1287 +ckan/tests/legacy/lib/test_i18n.pyc,, +ckan/tests/legacy/lib/test_navl.py,sha256=1HTPkYavo68Eu16Wt2I5cJ9gjXldu4yHwO5D6yGVYhg,11963 +ckan/tests/legacy/lib/test_navl.pyc,, +ckan/tests/legacy/lib/test_resource_search.py,sha256=3c1xbceC2FqR773kKkA_44lLWuse6JhmVmSoucEy62M,7309 +ckan/tests/legacy/lib/test_resource_search.pyc,, +ckan/tests/legacy/lib/test_solr_package_search.py,sha256=1jt3pxVTEzz7k8PpS6rSISq_0xy34zvlXX5oYP6LCSQ,20978 +ckan/tests/legacy/lib/test_solr_package_search.pyc,, +ckan/tests/legacy/lib/test_solr_package_search_synchronous_update.py,sha256=08nE5_XoXYEDVWXnpEsZwhOZmUvITynfXFaSYidHDio,4014 +ckan/tests/legacy/lib/test_solr_package_search_synchronous_update.pyc,, +ckan/tests/legacy/lib/test_solr_schema_version.py,sha256=Nkoj7lasW5R8uo7q-at_XTpZyGPJmY0A4W3BY4gXyX4,1587 +ckan/tests/legacy/lib/test_solr_schema_version.pyc,, +ckan/tests/legacy/lib/test_solr_search_index.py,sha256=Oqgg-295oALpSHN_Zv-dLaPYFFTWhmQ0XB_nfvTq7Fk,2108 +ckan/tests/legacy/lib/test_solr_search_index.pyc,, +ckan/tests/legacy/lib/test_tag_search.py,sha256=-Rhazijui8DXsow_JpiSLAi6nMY2Yk9lqvTREi8PLZw,2914 +ckan/tests/legacy/lib/test_tag_search.pyc,, +ckan/tests/legacy/logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/logic/__init__.pyc,, +ckan/tests/legacy/logic/test_action.py,sha256=_r2qg07tzbElnyaOsqvsujB4BCUkFkjMSDZtKmL9BZc,49621 +ckan/tests/legacy/logic/test_action.pyc,, +ckan/tests/legacy/logic/test_auth.py,sha256=y50MMqLUCk6tiqarlUdS094c8oUB89Tn9wVinFA-Gr8,22144 +ckan/tests/legacy/logic/test_auth.pyc,, +ckan/tests/legacy/logic/test_init.py,sha256=SnE4pgxAlyeoEiRGeKiioMbqX4-oFX6V8Vcvf-Y8xDA,1959 +ckan/tests/legacy/logic/test_init.pyc,, +ckan/tests/legacy/logic/test_member.py,sha256=9-xejwgC6uffkAPZTG9nNHQH-gqW2AXXnHK9moKDfKs,9181 +ckan/tests/legacy/logic/test_member.pyc,, +ckan/tests/legacy/logic/test_tag.py,sha256=nAEFLtQFECeTGUni5pojFQ2gZhl5BMF2z3bLVSOdDn8,16009 +ckan/tests/legacy/logic/test_tag.pyc,, +ckan/tests/legacy/logic/test_tag_vocab.py,sha256=tEUOowRpIlApfa0exHUwI6OmAg4pj2gJtJ3jew4kBeE,4772 +ckan/tests/legacy/logic/test_tag_vocab.pyc,, +ckan/tests/legacy/logic/test_validators.py,sha256=xgAhzD37RvomqgFSu3ShuEOaItUIQUoYhaCEvC9T8sM,1142 +ckan/tests/legacy/logic/test_validators.pyc,, +ckan/tests/legacy/misc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/misc/__init__.pyc,, +ckan/tests/legacy/misc/test_mock_mail_server.py,sha256=NO2njk_34e38N1Ti8pUBSNKjcWwsqylXec6AOc1ZLNE,1367 +ckan/tests/legacy/misc/test_mock_mail_server.pyc,, +ckan/tests/legacy/misc/test_sync.py,sha256=TO5kcHyu0p7XBJcjLWFMr_aGAz7v4iaQ8cDGJZAdVd0,2682 +ckan/tests/legacy/misc/test_sync.pyc,, +ckan/tests/legacy/mock_mail_server.py,sha256=lQlujGAh0d3qxTDfRw9y41QXBjJt0q0-Wt1claQT2lk,2626 +ckan/tests/legacy/mock_mail_server.pyc,, +ckan/tests/legacy/mock_plugin.py,sha256=kMt6mGt4O9NYHAQW4_qKJRKnUc-Hthk2m7jf3DfEUeE,1347 +ckan/tests/legacy/mock_plugin.pyc,, +ckan/tests/legacy/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/models/__init__.pyc,, +ckan/tests/legacy/models/test_activity.py,sha256=LjRYrVYNVOL06z4bsHZtTqCr9azctbj1Ok8hLcMkD1o,617 +ckan/tests/legacy/models/test_activity.pyc,, +ckan/tests/legacy/models/test_extras.py,sha256=leEdM7L2hm6_S4p7EKH7UkHHfPAy6d3MZxgisxowXTo,2262 +ckan/tests/legacy/models/test_extras.pyc,, +ckan/tests/legacy/models/test_follower.py,sha256=gVMBfkjgrXZIWNj_OdpyIi70-r2YKjx5OSO39PlPo08,4502 +ckan/tests/legacy/models/test_follower.pyc,, +ckan/tests/legacy/models/test_group.py,sha256=kjbFu3Zw7sylKG5Qs2fAVthlt9rvQBBAVQpesHeCPXk,10730 +ckan/tests/legacy/models/test_group.pyc,, +ckan/tests/legacy/models/test_misc.py,sha256=qHPh_EKdi5Gtd4OUwglWuCY933YjlliEI1djc9-QKZc,2394 +ckan/tests/legacy/models/test_misc.pyc,, +ckan/tests/legacy/models/test_package.py,sha256=Ut2C3myHU6Y3NCPbHyYY6RjDhuqtX5MNMbPAU4K-gPA,14989 +ckan/tests/legacy/models/test_package.pyc,, +ckan/tests/legacy/models/test_package_relationships.py,sha256=IqmCRbBc_BMxYBOmbxf8LIctb62cICFK1XTFD4ohIvQ,13704 +ckan/tests/legacy/models/test_package_relationships.pyc,, +ckan/tests/legacy/models/test_purge_revision.py,sha256=NY45alSknrKnVwtFdJH7Hk412a5aN8IZeYRb1N9p4UY,2715 +ckan/tests/legacy/models/test_purge_revision.pyc,, +ckan/tests/legacy/models/test_resource.py,sha256=Pd-lI5vBzsNtRof12oaNtPN16JStB8rQHT-iv1YoPVY,6675 +ckan/tests/legacy/models/test_resource.pyc,, +ckan/tests/legacy/models/test_revision.py,sha256=ZigBzxYAYPa4cJc4Ng7i4T7QaJY14R-Hh_Efm69QfjE,1565 +ckan/tests/legacy/models/test_revision.pyc,, +ckan/tests/legacy/models/test_user.py,sha256=duZtW1tdGZkrnlAJygtADDAU4aZIZGzxh_LlT71ESu0,6407 +ckan/tests/legacy/models/test_user.pyc,, +ckan/tests/legacy/pylons_controller.py,sha256=pFuLc-OYVaVSKSgdB2JFTMrXYyx7E8XCQt-_xDMs5aI,2399 +ckan/tests/legacy/pylons_controller.pyc,, +ckan/tests/legacy/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/legacy/schema/__init__.pyc,, +ckan/tests/legacy/schema/test_schema.py,sha256=K5lCfHfsmALKN0JeuMTa57Qq-MZiDgeYW-fvAnPUrKk,6671 +ckan/tests/legacy/schema/test_schema.pyc,, +ckan/tests/legacy/test_coding_standards.py,sha256=IQKJGyHAXVquWy6cYhnIivE0J6rD9V17zBop8u0hojo,37116 +ckan/tests/legacy/test_coding_standards.pyc,, +ckan/tests/legacy/test_plugins.py,sha256=w7vjibdzDZt5KClA2qKGIFCsMFTDQ5apDmMoeC-_tuA,7561 +ckan/tests/legacy/test_plugins.pyc,, +ckan/tests/legacy/test_versions.py,sha256=74AfP2tysdkYb1okT5CAvL2SC58-Zq-5_RhxMgQpSKc,339 +ckan/tests/legacy/test_versions.pyc,, +ckan/tests/lib/__init__.py,sha256=M0ZgdYb8ru4rzA3kaWoig88nRBGbz9d5OChsZ-Wpuv8,677 +ckan/tests/lib/__init__.pyc,, +ckan/tests/lib/dictization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/lib/dictization/__init__.pyc,, +ckan/tests/lib/dictization/test_model_dictize.py,sha256=uhOewtmDCmiezlL_l6Dff-66-32YS44MWowl_iijJM4,24247 +ckan/tests/lib/dictization/test_model_dictize.pyc,, +ckan/tests/lib/navl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/lib/navl/__init__.pyc,, +ckan/tests/lib/navl/test_dictization_functions.py,sha256=_25rKna1BO5yD7mn6hVcON1rSKFKVOLwwTXu_GEiiOM,2558 +ckan/tests/lib/navl/test_dictization_functions.pyc,, +ckan/tests/lib/navl/test_validators.py,sha256=AWN5lHv17-auCXQ2ybZCgbLg7ZcLZp5vUJu0I_OaOv4,10076 +ckan/tests/lib/navl/test_validators.pyc,, +ckan/tests/lib/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/lib/search/__init__.pyc,, +ckan/tests/lib/search/test_index.py,sha256=iTbU3PJo4zycAtudmV1y0E8dFuTCdrgkyP1H813rVso,10564 +ckan/tests/lib/search/test_index.pyc,, +ckan/tests/lib/test_app_globals.py,sha256=D2barSsgr9Rz2hgPtcO_F9SGcgV5CiJ133iewUvHutQ,702 +ckan/tests/lib/test_app_globals.pyc,, +ckan/tests/lib/test_auth_tkt.py,sha256=gy0ljZDq2iNsEYMqtqC4TczSowtnvnzBJRVRkoftqMs,5772 +ckan/tests/lib/test_auth_tkt.pyc,, +ckan/tests/lib/test_base.py,sha256=sKykBBjMl3lzVnNgBpmeloFYdbdqpUdYW1kxGkosLkw,16860 +ckan/tests/lib/test_base.pyc,, +ckan/tests/lib/test_cli.py,sha256=w8muOM615H4CR1Ty-s3VRnDvq3iHKypvAOpvAKgrUfE,11228 +ckan/tests/lib/test_cli.pyc,, +ckan/tests/lib/test_config_tool.py,sha256=tJU2nnLV0GLqXE_V-J4U9TTyh7ccqSqWIAFa4PDsgfk,4978 +ckan/tests/lib/test_config_tool.pyc,, +ckan/tests/lib/test_datapreview.py,sha256=NFKLA367GmSq0NPHs4bRizg0yOx_OpEYHRGfOQ_iSpg,9554 +ckan/tests/lib/test_datapreview.pyc,, +ckan/tests/lib/test_helpers.py,sha256=YaUv5E1r2XUvD8arHZgpwP6fzWqi3CLVb_-KrfO0i8I,26812 +ckan/tests/lib/test_helpers.pyc,, +ckan/tests/lib/test_i18n.py,sha256=2Yh9BNkjtiqSBDdEEckKUTzP_cRqa3pnqBB3be1sKvA,5506 +ckan/tests/lib/test_i18n.pyc,, +ckan/tests/lib/test_io.py,sha256=QnWu3KBKrs8gjeiCrh9ml3UwnmrMvEgdogv65RacC64,1241 +ckan/tests/lib/test_io.pyc,, +ckan/tests/lib/test_jobs.py,sha256=Ia68o-Vok_0jRjHd-7_uVDrnk6rGG0kqTJ6GNtwHRLU,8767 +ckan/tests/lib/test_jobs.pyc,, +ckan/tests/lib/test_mailer.py,sha256=kKUBl2XFrOM0Dl-AkMazsHUSpn3emj5lNzMuQYCmB5w,8029 +ckan/tests/lib/test_mailer.pyc,, +ckan/tests/lib/test_munge.py,sha256=aB4Hv1t0fPY-mKxS7yxnQdZvhvWJh6C2yDzL2qN9k00,5494 +ckan/tests/lib/test_munge.pyc,, +ckan/tests/lib/test_navl.py,sha256=FU8Rr4e4LVg0Fot4Jt6v4FZBQHpH1ysUvT3XQJacSYw,935 +ckan/tests/lib/test_navl.pyc,, +ckan/tests/logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckan/tests/logic/__init__.pyc,, +ckan/tests/logic/action/__init__.py,sha256=IFCvskqsS2teN0MzD8QZqRzb9k43iXpL3qZwYDTO_WQ,1531 +ckan/tests/logic/action/__init__.pyc,, +ckan/tests/logic/action/test_create.py,sha256=mQ8Qu4EbpVC7iSplsk7uiYwVkgJFS1OMfH_V6A_4FEQ,40220 +ckan/tests/logic/action/test_create.pyc,, +ckan/tests/logic/action/test_delete.py,sha256=aaraOqnfpZWlA5Us-5-ml2aU8ylIeKwHn2pcHpOfYMk,22555 +ckan/tests/logic/action/test_delete.pyc,, +ckan/tests/logic/action/test_get.py,sha256=TJ2oz7MrVm28d8_DbsNT0tDrLmkwPSFKYaShr6spfRg,83913 +ckan/tests/logic/action/test_get.pyc,, +ckan/tests/logic/action/test_patch.py,sha256=lrdp0Gy_HmIB7oLH_SnwQehle-eF8qvi3_CZUp0s39M,4164 +ckan/tests/logic/action/test_patch.pyc,, +ckan/tests/logic/action/test_update.py,sha256=9MkFjXXomkkKemNLaiNMnvSnry8GSD1pFcH2l7MoCYY,59419 +ckan/tests/logic/action/test_update.pyc,, +ckan/tests/logic/auth/__init__.py,sha256=fQojfIDvXrRfhFBdqDVgQUFKD1BAeCOZWJQ-FaneoNQ,604 +ckan/tests/logic/auth/__init__.pyc,, +ckan/tests/logic/auth/test_create.py,sha256=9yStOcdeNP8K9E3yhQSe6ypIuNHcIPyeri36WZp8_CI,13398 +ckan/tests/logic/auth/test_create.pyc,, +ckan/tests/logic/auth/test_delete.py,sha256=Bi4vnupQ7xnux8WlS8gnuVwT-Ax7ew2mLnchj1y_McE,4533 +ckan/tests/logic/auth/test_delete.pyc,, +ckan/tests/logic/auth/test_get.py,sha256=I6bRgPXXrSuKm92QjWr_PLtn0gZBS9SBieHogE35BhY,6361 +ckan/tests/logic/auth/test_get.pyc,, +ckan/tests/logic/auth/test_init.py,sha256=uqhg-N3i4hEFwcWHMqwjTZRnWtfMcxXh948W2IwfANk,5006 +ckan/tests/logic/auth/test_init.pyc,, +ckan/tests/logic/auth/test_update.py,sha256=7iqRre3VgVkCEm3UpJqcoLzFA4QCaprCHY2whPwvKis,9793 +ckan/tests/logic/auth/test_update.pyc,, +ckan/tests/logic/test_conversion.py,sha256=zACdfgVMAGaw2OgN46ji5hBHM_Y6gvMKS-D4wTJOAeM,4171 +ckan/tests/logic/test_conversion.pyc,, +ckan/tests/logic/test_converters.py,sha256=NyufN-9XzvzUSi_k4aRj8a9ZJ6A7Z-kzzsA565fFg6k,2434 +ckan/tests/logic/test_converters.pyc,, +ckan/tests/logic/test_schema.py,sha256=Y_7XZq3Eei0LAdkpc9kVK_8IlECaFMqfHG3hqP4yAoc,547 +ckan/tests/logic/test_schema.pyc,, +ckan/tests/logic/test_validators.py,sha256=6aSIFIriYtB0mtk5YaDe4QkOjwOAXSYwFovfEBvY7KA,22174 +ckan/tests/logic/test_validators.pyc,, +ckan/tests/migration/__init__.py,sha256=MhUQJoByNWt5ocf3aO_BRlIbGn3cdzkZsW6te4wksf0,200 +ckan/tests/migration/__init__.pyc,, +ckan/tests/model/__init__.py,sha256=2SjjQeQz4nFjnEjUM3pGsZxlBeGNQp2IffQUP_eg0dw,272 +ckan/tests/model/__init__.pyc,, +ckan/tests/model/test_license.py,sha256=v3rfVp-GBkRFg2LECo8vW459atZO085ELSwSTCi4lCE,3716 +ckan/tests/model/test_license.pyc,, +ckan/tests/model/test_resource.py,sha256=miF-Ro9s38qceGoUfNVStUZNKCZsTjiOBcy9DYqq5SY,2564 +ckan/tests/model/test_resource.pyc,, +ckan/tests/model/test_resource_view.py,sha256=IxEGO-anDDF0tiBu3_we2AnB_asU9lo05TkT52FmJNw,2252 +ckan/tests/model/test_resource_view.pyc,, +ckan/tests/model/test_system_info.py,sha256=ulzsr4RxpWBGEoQJNs7inpCSfcxi3kZseOFHqmW65fk,1938 +ckan/tests/model/test_system_info.pyc,, +ckan/tests/model/test_user.py,sha256=ifoSkdPb60W0M536DFk-F33mdpUwTj_-X9WmSEXxnfA,5331 +ckan/tests/model/test_user.pyc,, +ckan/tests/plugins/__init__.py,sha256=juwCUouXv5AP1jmDcO3UbQsv5R7um2veDDeNfZDe-sI,1158 +ckan/tests/plugins/__init__.pyc,, +ckan/tests/plugins/test_toolkit.py,sha256=OUr2YiunPsDPnj34cIjkNuxHB407AWHdmkPpxyEuPS0,9620 +ckan/tests/plugins/test_toolkit.pyc,, +ckan/tests/test_authz.py,sha256=5OyR35EXeZGeX_e7zUdmsq-5M-7n1ULXx_mwIZkKXqo,2151 +ckan/tests/test_authz.pyc,, +ckan/tests/test_coding_standards.py,sha256=koBY-XNazVbQDH4Uyp2AdnbkRk2e4KpQyAdI2gdfVXE,31244 +ckan/tests/test_coding_standards.pyc,, +ckan/tests/test_common.py,sha256=eIWQgm8KORW83rplZOJV3pkm-EF8UUIPYmEkiE5qUIE,7233 +ckan/tests/test_common.pyc,, +ckan/tests/test_factories.py,sha256=ub2SpENRenF0GDSHPZQfDu4f2BCtaLDaBMTliSC0oaQ,2138 +ckan/tests/test_factories.pyc,, +ckan/tests/test_none_root.py,sha256=YceLSWkl_68b1ZpXFW4UAd8ZwakLfW2r1QSEme4WGrw,553 +ckan/tests/test_none_root.pyc,, +ckan/tests/test_robots_txt.py,sha256=_Ac1PbErKp0qhPqNAQQ1zQRFDrA2zxBpOqB6LQuSfYk,400 +ckan/tests/test_robots_txt.pyc,, +ckan/views/__init__.py,sha256=MXZ8TL04Wl5MtBQcAiFrav4Oc5i_WSDVXMuS7aUSSGA,7161 +ckan/views/__init__.pyc,, +ckan/views/admin.py,sha256=j8nAFMPHc0GCoMjmoDxmJh4g4lwaJgIprHPyx7THv10,7680 +ckan/views/admin.pyc,, +ckan/views/api.py,sha256=T43b2Hz3NUUMF4Kv6F9rPkM-eerod1tcJbYBbZeqHRo,18439 +ckan/views/api.pyc,, +ckan/views/dashboard.py,sha256=U78DVCV5G2aFBXtmlyRKLmbQW9nL_Zocp2JKEosJ21o,4855 +ckan/views/dashboard.pyc,, +ckan/views/feed.py,sha256=zXmF1salYBdZ1F5V7Ukf1hmUzCuXTmEIrQ_J4oyt_24,19409 +ckan/views/feed.pyc,, +ckan/views/home.py,sha256=26n-emo15VcuhiARPR3zfd3rmPQt_exvz0RfXhHgcYI,2267 +ckan/views/home.pyc,, +ckan/views/user.py,sha256=ke_Q3t4N-bEIkDDTHxJcXi2ctM2dIf-erEV01Aq98sU,24819 +ckan/views/user.pyc,, +ckan/websetup.py,sha256=wyLjeo-0uZgOiSXq34a-6C082oAOSSheYi66Wz-A-MQ,431 +ckan/websetup.pyc,, +ckanext/datapusher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datapusher/__init__.pyc,, +ckanext/datapusher/cli.py,sha256=o94jMyG7eLzFGIPEZKQp6yikR65HHSZaKLEqAEYwV9Q,4058 +ckanext/datapusher/cli.pyc,, +ckanext/datapusher/helpers.py,sha256=JGbQc9YK3K1KlIgHVfwg2_dvslR5F7cz7gkqpX3ONig,702 +ckanext/datapusher/helpers.pyc,, +ckanext/datapusher/interfaces.py,sha256=TlY6Pkvt8O-dAdYsjod4rEwj1APkPL-cMWMhAYTaNHk,2017 +ckanext/datapusher/interfaces.pyc,, +ckanext/datapusher/logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datapusher/logic/__init__.pyc,, +ckanext/datapusher/logic/action.py,sha256=HYD8tYQUIDXyc62bHu5X8A_rexOBhHObqeEJ-xmMPIE,11713 +ckanext/datapusher/logic/action.pyc,, +ckanext/datapusher/logic/auth.py,sha256=XhaLHEbQC0of2HvlnW2eiK0hqdcM1OWgzoHuk9dli2E,255 +ckanext/datapusher/logic/auth.pyc,, +ckanext/datapusher/logic/schema.py,sha256=Y2WAZ5WQ5cGNJ1ZCSTShuwvZoVf3z5Nar9xxCTjOe8w,942 +ckanext/datapusher/logic/schema.pyc,, +ckanext/datapusher/plugin.py,sha256=kFqmrcCOy_rlVpiffIyijSjfMlOGs6y0_liOWKtsE3g,6221 +ckanext/datapusher/plugin.pyc,, +ckanext/datapusher/templates/datapusher/resource_data.html,sha256=UHM8vSa1_QvYZKAuzAqOEN5QJIMxMcHzTcI_co4XjsQ,3439 +ckanext/datapusher/templates/package/resource_edit_base.html,sha256=Fk7_Q4MqwUt_y57DAV1rXPKnaxJzqkd2XJSr4Mew-Ok,172 +ckanext/datapusher/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datapusher/tests/__init__.pyc,, +ckanext/datapusher/tests/test.py,sha256=2pe0q1QK0-TfmiJkrXdG41JJ82iLw9iQFf-S8kWCoRc,9211 +ckanext/datapusher/tests/test.pyc,, +ckanext/datapusher/tests/test_action.py,sha256=RMo7v3wfKXDfn5U12r16L_LcQ2xHWA16MkuOvUbwKPI,11222 +ckanext/datapusher/tests/test_action.pyc,, +ckanext/datapusher/tests/test_default_views.py,sha256=CaclGUN90_mUGOjM11-RQ2R53_cAT7I1akeja-kC5X4,4055 +ckanext/datapusher/tests/test_default_views.pyc,, +ckanext/datapusher/tests/test_interfaces.py,sha256=wFQvHna8SP5uvPhVFdpDVXy5yAz6KkggSdy4coDmt_w,4775 +ckanext/datapusher/tests/test_interfaces.pyc,, +ckanext/datastore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datastore/__init__.pyc,, +ckanext/datastore/backend/__init__.py,sha256=GfSwAAXWumwhsKXnR9L4IO1S1-Ck_kSmUXGHYH5oP5c,6579 +ckanext/datastore/backend/__init__.pyc,, +ckanext/datastore/backend/postgres.py,sha256=-ENgZ_l7Op1RKUgHbi9ctBLGFCn7wVnV-UGTp5kxEXw,68792 +ckanext/datastore/backend/postgres.pyc,, +ckanext/datastore/commands.py,sha256=5oV7DiytbNVhrPEpLdFCESYDUIZ6G7oEEiEwALFdEIg,2889 +ckanext/datastore/commands.pyc,, +ckanext/datastore/controller.py,sha256=z-O2ewCFzZe1ZTSiwkvYSGaZFxPlFDXWaniasLG_Oo0,5053 +ckanext/datastore/controller.pyc,, +ckanext/datastore/helpers.py,sha256=fq1QY_7f2FaXo8SY2Xl7VGC11xGGfrAfRZS9oaGgj5A,4504 +ckanext/datastore/helpers.pyc,, +ckanext/datastore/interfaces.py,sha256=SvKr3X-1IVDi40Hf-mO_AzllI3kTdudySAOstz8b764,7032 +ckanext/datastore/interfaces.pyc,, +ckanext/datastore/logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datastore/logic/__init__.pyc,, +ckanext/datastore/logic/action.py,sha256=V5_5J0NQUkVdFvkT-Yd2xiBvzg2WfrV6XWayzYKBn54,23144 +ckanext/datastore/logic/action.pyc,, +ckanext/datastore/logic/auth.py,sha256=KCeFI0pMYOkDHPM0yOKgNVFckH0Imp3u_CGZkI0VOPU,2415 +ckanext/datastore/logic/auth.pyc,, +ckanext/datastore/logic/schema.py,sha256=T2necEBC47H8XDhjNKLvSCFyqJApXBX4WhYG2N6l-2Q,6279 +ckanext/datastore/logic/schema.pyc,, +ckanext/datastore/plugin.py,sha256=BwMycFd41LlBNx4d5d0PKbUTvXsNc0BSqEGxgouNkBo,8864 +ckanext/datastore/plugin.pyc,, +ckanext/datastore/set_permissions.sql,sha256=UtXetjcx-LYwXyzuWmNettPv_EDq_4V2uoetCY97W_o,4171 +ckanext/datastore/templates/ajax_snippets/api_info.html,sha256=517tufAFQUEfMTeHihU6B4YCy46SujnvuK_sGctb30Q,6154 +ckanext/datastore/templates/datastore/dictionary.html,sha256=4Sjz4OlfeC5X9zwlJEIkQVXme8_3JsVvitrg7vKNFKk,788 +ckanext/datastore/templates/datastore/snippets/dictionary_form.html,sha256=EOZvm_DLUhbjeNlTpzNN7-lkKLzaviAmSNXy0skIseo,985 +ckanext/datastore/templates/package/resource_edit_base.html,sha256=iV7ZyWHe7NzD7JQQxfTJ6XqidXecmFNhzvckjHTzdzc,232 +ckanext/datastore/templates/package/resource_read.html,sha256=CyiqXqhdOLJn3Ct_fHv6mpR6mpxz8RzFanVwwRPD81w,1217 +ckanext/datastore/templates/package/snippets/data_api_button.html,sha256=zcYLkb55jF-Vi9Xb4GLC7VNgsjXEwOFJUDaEWgVDlM8,494 +ckanext/datastore/templates/package/snippets/dictionary_table.html,sha256=DugdpnO4X82uS2Hpnc6yOq07R6K19-h71nkaOaS4KBE,221 +ckanext/datastore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datastore/tests/__init__.pyc,, +ckanext/datastore/tests/helpers.py,sha256=pCIAiC5THserDUQcZpgIq1-0971gc6bIY4CHvePF1Aw,2685 +ckanext/datastore/tests/helpers.pyc,, +ckanext/datastore/tests/sample_datastore_plugin.py,sha256=mgy-zaVMpDwfytxVshsNWNsGRnJoDQb7VAjL1z-uwPE,1648 +ckanext/datastore/tests/sample_datastore_plugin.pyc,, +ckanext/datastore/tests/test_chained_action.py,sha256=vu8cWQ6qkX6kfc6jRoGWeraj6Ry_l8qX5sP56y859Gk,2188 +ckanext/datastore/tests/test_chained_action.pyc,, +ckanext/datastore/tests/test_chained_auth_functions.py,sha256=MEDXNIw8vuy5qLzsfvhA2-Zgs0NK74Hy8V_Q5S8ObPE,2343 +ckanext/datastore/tests/test_chained_auth_functions.pyc,, +ckanext/datastore/tests/test_configure.py,sha256=iREF6dwE3pV1UkkGQ_vH3r9qi3QmXXZB6y6cHF49BdE,3450 +ckanext/datastore/tests/test_configure.pyc,, +ckanext/datastore/tests/test_create.py,sha256=muKpw04aIpuglVKQ3w1aC_f7zTMvNTzz9TzpwekqF48,44207 +ckanext/datastore/tests/test_create.pyc,, +ckanext/datastore/tests/test_db.py,sha256=O9l3Q8QMHCXexxs0Xw1s_8RJap0evhswx5Z6PP-8ho0,8138 +ckanext/datastore/tests/test_db.pyc,, +ckanext/datastore/tests/test_delete.py,sha256=9WM86HF7NSNNJl6coE-UfbX8GBDATJXBoLaE9HtWFrY,11770 +ckanext/datastore/tests/test_delete.pyc,, +ckanext/datastore/tests/test_disable.py,sha256=dYFCvofqODBPsqyGwuuOjA3qctdA8omgAGolANVfurs,648 +ckanext/datastore/tests/test_disable.pyc,, +ckanext/datastore/tests/test_dump.py,sha256=ijlNlEqV4hCQ6JGpB8rBjPAJz5J0ysryr1YhEvVCgRY,6976 +ckanext/datastore/tests/test_dump.pyc,, +ckanext/datastore/tests/test_helpers.py,sha256=IUGb8aEWgRJMW6PfJrUhHRI8eDQaJcpqSgn-6pwQgpc,4541 +ckanext/datastore/tests/test_helpers.pyc,, +ckanext/datastore/tests/test_info.py,sha256=JevTmPrY4bXh7yzWU9hoMY5rGiTXuVlN-IpymCMK09o,3025 +ckanext/datastore/tests/test_info.pyc,, +ckanext/datastore/tests/test_interface.py,sha256=o7W0lAqOKnteg9By0xGdoOEi2Bgyu1o-HxJURjZ45CU,5860 +ckanext/datastore/tests/test_interface.pyc,, +ckanext/datastore/tests/test_plugin.py,sha256=ZorJh66l2YgOwYr08IJaTZVFAagrQ4Jcn2YXF3bMbrI,7459 +ckanext/datastore/tests/test_plugin.pyc,, +ckanext/datastore/tests/test_search.py,sha256=9h-LeHBo_QnxkAcHmVg2s1Z1ZBRaI919Pr5JfGrbyuU,51726 +ckanext/datastore/tests/test_search.pyc,, +ckanext/datastore/tests/test_unit.py,sha256=VNQCs_7HUE1qRD1msP-bTle0rj9SmWsKAibgaNWdGI0,1742 +ckanext/datastore/tests/test_unit.pyc,, +ckanext/datastore/tests/test_upsert.py,sha256=i1bCcCGrhorSDoBke9AYBiDkYoAmXbk9Jge6oseDdjA,22172 +ckanext/datastore/tests/test_upsert.pyc,, +ckanext/datastore/writer.py,sha256=ekPRQnHrVWT3XbGd6kmGlQFpO8GsGijYxbUP7X3Bpjo,6015 +ckanext/datastore/writer.pyc,, +ckanext/datatablesview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/datatablesview/__init__.pyc,, +ckanext/datatablesview/controller.py,sha256=74p2iy2eh70BII0Jtgrj5Na5t61owulKiuW8Jl61gB0,3142 +ckanext/datatablesview/controller.pyc,, +ckanext/datatablesview/plugin.py,sha256=04gQkNvTTTyD1XgsketGxgDpvbG1x0dqZ_gN5GtqktY,1910 +ckanext/datatablesview/plugin.pyc,, +ckanext/datatablesview/public/datatablesview.js,sha256=JTvtj1XM-1MS53H7Q6g8akOaxpKg1ESgsJOWpu-Yrwg,148 +ckanext/datatablesview/public/datatablesview.min.js,sha256=FVmHkqGbNyVlxywMf9Ic9yRGMd5YkW5tUnPANEzmBp0,117 +ckanext/datatablesview/public/resource.config,sha256=U8WlfWGkUwfIi3vSFl1arQwku0wCfzfTNUmnw2bQMqk,1048 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/css/bootstrap-theme.css,sha256=xOpS-e_dER8z72w-qryCieOGysQI8cELAVt3MHG0phY,26132 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/css/bootstrap-theme.css.map,sha256=cZQbJTuJQjdM1XuKhdRzSJ8hMRQ4up491P76Iq2_D1M,47706 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/css/bootstrap.css,sha256=fmMNkMcjSw3xcp9iuPnku_ryk9kaWgrEbfJfKmdZ45o,146010 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/css/bootstrap.css.map,sha256=nNhKKlFiyBaou715z53AYFvA6obkzSurQ67gabuD0mY,389287 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg,sha256=QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U,108738 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf,sha256=45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY,45404 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff,sha256=omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I,23424 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2,sha256=_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw,18028 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/js/bootstrap.js,sha256=Cr6N6zNN4bp0OwTQOZ6Z66M2r-2dpy_EwKMCyZ-SOMg,69707 +ckanext/datatablesview/public/vendor/Bootstrap-3.3.7/js/npm.js,sha256=x6qCoap9RSJKONkm0q2v9_5K71vNr6Kke9rAV_RCLC0,484 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/buttons.bootstrap.css,sha256=O8hQxrprjvzDaH6yF3SM26S_GyM5ts0kucgukEbkqso,3425 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/buttons.dataTables.css,sha256=9LToFQfPvsxOAbaciksFwC-sJ0eEDYkEDi7DDyK2zUE,11169 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/buttons.foundation.css,sha256=MqZXvz3AeS2Kf85pHC217V2086w3c9hff-Mk-xZXGNM,4089 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/buttons.jqueryui.css,sha256=_8eotTSf3iGK0ZZaIfOIDbvLEuk6JQutjPGnHIh0UNA,5221 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/buttons.semanticui.css,sha256=674vbgdQ5CONjIl6NnPBNWMUfVkJvyO0b2F0LtRFty4,3576 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/common.scss,sha256=gWSJOuUS90pMpVkwC9zppLhgl5w6A-SlJ69goIbEoYI,431 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/css/mixins.scss,sha256=IJHZJZ-_tHq9mupdGFB00PlCt69K8J99ZGhhRC4OYCk,3799 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/buttons.bootstrap.js,sha256=ERiLI8VWvy_01eFEza1n-qQX6zw27sbLzXshVm2c-sE,1400 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/buttons.colVis.js,sha256=9160Y8TN0mg8jPecP32pgS0o-IkarN6pJT-K4sMxAOw,5156 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/buttons.foundation.js,sha256=nOD3PDD7c-mgbRxqTTqaNjBwSVZjYDS00UlBMsUa2K4,1863 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/buttons.jqueryui.js,sha256=jWj3v-QihxyM-ds9Pm6dw6C_4VsjBp5TSYP5waVxpsY,1424 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/buttons.semanticui.js,sha256=Ok-4hSkRv8k6HghaqB--RocJPEh8JhRzGgONZsPjtOM,1178 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/js/dataTables.buttons.js,sha256=Hk_qncGNQKCmNqmaFLvf8W6OxjX10cYcfVLCnw5BnVo,40956 +ckanext/datatablesview/public/vendor/Buttons-1.3.1/swf/flashExport.swf,sha256=6kIqxERVuIHKN-9zn28UOS0XNkZBnXj63Zv26w4qd0c,64573 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/dataTables.bootstrap.css,sha256=I9TOaqmifat8pWeF6SutmajUX3mfSpUgRnCjCBX2YxY,4823 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/dataTables.foundation.css,sha256=xUcsXoi0XVRWxF9elX4gF8PHxx5wV24L92iteCON6ug,3015 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/dataTables.jqueryui.css,sha256=Qqu7okRW4E0cvBxRSujqETU0c6N3fl0mB3oNXkd_B-E,16531 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/dataTables.semanticui.css,sha256=0wZ0R8UYdVtjtRKHxu-Xy5Jp206YCqeJdqZOdajtYQw,2937 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/jquery.dataTables.css,sha256=aFhojHUpG0tEx0zrp4tytAjXVErJ_6ySHaButv8C-eo,16026 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/css/jquery.dataTables_themeroller.css,sha256=_I46pnUiYUyilMyUMv08B9tEUgxxuWJJCqoyl6-Cz-I,14229 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/images/sort_asc.png,sha256=WVcEw_PPTLZcfZyFCKmedIDhUAlUc_rtMaB8IbEzibg,160 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/images/sort_asc_disabled.png,sha256=pluPT4TWQnqBw2AoL8U5TVG_mdraXxWeaqD848OWglw,148 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/images/sort_both.png,sha256=PgFsI65RQXOCtkCuLRnrSAR1MsN61TiUvRhVhlWcz_s,201 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/images/sort_desc.png,sha256=0I7Q4h8YfdMJAw1GUiTagIURmhWhfWFroOR3u1DG8Q0,158 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/images/sort_desc_disabled.png,sha256=bA8MGyHvaAcFevyN3BqSXR29IcsR6ScOyE_0rEDZo_o,146 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/js/dataTables.bootstrap.js,sha256=tJIoHA64cNe60LQ0mux9ILw-9cLD-RobM7arU7vNlJk,4559 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/js/dataTables.foundation.js,sha256=QpIM9XOHotY-SfWSxDhCRy9gLQq724DweRgqqBP3DwI,4339 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/js/dataTables.jqueryui.js,sha256=zPRTON__4hEzIZ8HidE-2j1j8stiW9RB8wJkomLDzEI,4486 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/js/dataTables.semanticui.js,sha256=cpyMpAbHWuyD_cRMYBp5pdFTNThWVU2U1UwcMjF_Taw,5091 +ckanext/datatablesview/public/vendor/DataTables-1.10.15/js/jquery.dataTables.js,sha256=E-_kL-CHUqkr0DmPPZ7ps65UqND-U_ZGCke2LM_XCLs,449307 +ckanext/datatablesview/public/vendor/FixedColumns-3.2.2/css/fixedColumns.bootstrap.css,sha256=fdHoXd_oNVuenK1Sy0q29LfZT8VRsw7zwAGAYErjTfQ,1437 +ckanext/datatablesview/public/vendor/FixedColumns-3.2.2/css/fixedColumns.dataTables.css,sha256=rrrHGibze9sxJdpm6-7I-MT6XdwofgFyZJtKRCC_9OM,367 +ckanext/datatablesview/public/vendor/FixedColumns-3.2.2/css/fixedColumns.foundation.css,sha256=gKC4NeugcIsCMc0GztYbRaMe3bm2ExkWKJ-EMZQaiT8,561 +ckanext/datatablesview/public/vendor/FixedColumns-3.2.2/css/fixedColumns.jqueryui.css,sha256=eqrmHbqsHwV-4-4RQ6RCCTKK1tbFcRVsBJfUF4037jc,217 +ckanext/datatablesview/public/vendor/FixedColumns-3.2.2/js/dataTables.fixedColumns.js,sha256=DsuWda4M-x8gCTAPrxZBakM7I0mQISldALeQJZ26_6Y,45771 +ckanext/datatablesview/public/vendor/FixedHeader-3.1.2/css/fixedHeader.bootstrap.css,sha256=P2N4TcjjSJX96no_xAt4CkysTuuvzMj4LVMjVrxwn2M,380 +ckanext/datatablesview/public/vendor/FixedHeader-3.1.2/css/fixedHeader.dataTables.css,sha256=vfoBa-bqvHsGpGGk3oFLPD7_ePgbXUiLqsJykrxbyiY,318 +ckanext/datatablesview/public/vendor/FixedHeader-3.1.2/css/fixedHeader.foundation.css,sha256=P2N4TcjjSJX96no_xAt4CkysTuuvzMj4LVMjVrxwn2M,380 +ckanext/datatablesview/public/vendor/FixedHeader-3.1.2/css/fixedHeader.jqueryui.css,sha256=rJgmDyvAhQkTnpI_uoHdO6lief0-ACzYwNtNvzkD-qI,250 +ckanext/datatablesview/public/vendor/FixedHeader-3.1.2/js/dataTables.fixedHeader.js,sha256=9c10Hp8BL6JBBsZ8BU2njRY-t_i1adcWNgHWOcp9eXo,16546 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/css/keyTable.bootstrap.css,sha256=iPC-gNWWWFGnTC1x6U5XkWN6b5s_MjZFr-cARq2TqFc,109 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/css/keyTable.dataTables.css,sha256=YbURVFWHYcHH9RrajfyY3Z_LNOQO8lvqdtmwxTJ60RY,109 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/css/keyTable.foundation.css,sha256=IWbJenY0CVHKEIBKtP2dQ7Ue9EIh3KYS9zXOcTee03k,109 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/css/keyTable.jqueryui.css,sha256=YbURVFWHYcHH9RrajfyY3Z_LNOQO8lvqdtmwxTJ60RY,109 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/css/keyTable.semanticui.css,sha256=wK7sI9e86GoWM5YwISpKakX8t0Q5CH8s5DhyO9Vt1Bc,106 +ckanext/datatablesview/public/vendor/KeyTable-2.2.1/js/dataTables.keyTable.js,sha256=EZm35oIwthlFdaLHcRJzMac8OJjj-I_kzD47ws9dwt0,22569 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/css/responsive.bootstrap.css,sha256=3PPpfWpTvFQYKk9wgmnFqHPPNrUZRbuTuRep9aiJIZ0,4713 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/css/responsive.dataTables.css,sha256=QOC16ffmC7R5r-z7CkDkodJifjJdDr8X6nUXEXxYqM0,4642 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/css/responsive.foundation.css,sha256=Ik7oDm56P0MwOtWNis9ssacn9wPHOtig2zCsFx-jWn0,4702 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/css/responsive.jqueryui.css,sha256=QOC16ffmC7R5r-z7CkDkodJifjJdDr8X6nUXEXxYqM0,4642 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/js/dataTables.responsive.js,sha256=zNYQJWGPqwpJ4utT2qjZZ-ScddKmkp-umV9IfMesdgI,34989 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/js/responsive.bootstrap.js,sha256=YpUtbqVeuxXA6LWjm1HpWtBsBb0hGKUp567-ugOAtPc,1999 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/js/responsive.foundation.js,sha256=P-GXa2Zxbaw1WQqC-SowuL6YOo2MPEGqArsjmtrF_-8,1491 +ckanext/datatablesview/public/vendor/Responsive-2.1.1/js/responsive.jqueryui.js,sha256=6YsTyJMfi3uzUPIPvmUSNLbauhEwx0dMVJq4Kaaa3oI,1399 +ckanext/datatablesview/public/vendor/Select-1.2.2/css/select.bootstrap.css,sha256=B9f-8CYXwVNhnlM4if5vqdEePEnCYZuoelfwUlv5n60,4623 +ckanext/datatablesview/public/vendor/Select-1.2.2/css/select.dataTables.css,sha256=WhLMa3LB5BL2zNx2ovRiemjefIuKba_NANT4E9eR7yI,4370 +ckanext/datatablesview/public/vendor/Select-1.2.2/css/select.foundation.css,sha256=eT-4zjqKFZnxAS4DT2w-45zKyreq1b0RXlRuJkY0cYY,4710 +ckanext/datatablesview/public/vendor/Select-1.2.2/css/select.jqueryui.css,sha256=WhLMa3LB5BL2zNx2ovRiemjefIuKba_NANT4E9eR7yI,4370 +ckanext/datatablesview/public/vendor/Select-1.2.2/css/select.semanticui.css,sha256=32gjAit4VpoDzPE-LFPCMAoLGTpNbI0BhuQVycYGxeQ,4732 +ckanext/datatablesview/public/vendor/Select-1.2.2/js/dataTables.select.js,sha256=skqdJgUbqPv-QWDmZw-4QZEOAFyQldziWnoc2QpSyOA,31010 +ckanext/datatablesview/public/vendor/datatables.css,sha256=UpzQyrbBWeh9COljeLndAJqkNwVsgzxG4BUzMYQeVXI,166312 +ckanext/datatablesview/public/vendor/datatables.js,sha256=Y_hgxf5MC7ZYXpe88d3Kk9nfMaFAtTcF05NGu2WHDVo,1473101 +ckanext/datatablesview/templates/datatables/datatables_form.html,sha256=XcVL0LpjhHJKz5ydPXN3cyu_opW8HeFx0lT_IdGNujw,1068 +ckanext/datatablesview/templates/datatables/datatables_view.html,sha256=tc4Ok4MLwB7VYcBdP0uP7UsXrxvBPNv_4kHX9udFGWk,1476 +ckanext/example_flask_iblueprint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_flask_iblueprint/__init__.pyc,, +ckanext/example_flask_iblueprint/plugin.py,sha256=kQYEHixZq4k6e0HXdaFKE3MnJKtG7rWcgCMOC_YiK-w,2934 +ckanext/example_flask_iblueprint/plugin.pyc,, +ckanext/example_flask_iblueprint/templates/about.html,sha256=zGA7HGADiDwWON3cbTXSKquD8DXOiYdJXq9KugTReU8,183 +ckanext/example_flask_iblueprint/templates/about_base.html,sha256=QfGAm_S_4EXHBjaZA2iC-oAaNGPaGxydTkjPqI2KbDE,107 +ckanext/example_flask_iblueprint/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_flask_iblueprint/tests/__init__.pyc,, +ckanext/example_flask_iblueprint/tests/test_routes.py,sha256=u1rJ5u7gxZQXgZLsZY-AKpvYerVh88LTKfppuzR28ok,2240 +ckanext/example_flask_iblueprint/tests/test_routes.pyc,, +ckanext/example_flask_streaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_flask_streaming/__init__.pyc,, +ckanext/example_flask_streaming/plugin.py,sha256=tUyAYvClNFxF0cvyB64ctdBYdv9OK4xL36D9JtMjP24,2956 +ckanext/example_flask_streaming/plugin.pyc,, +ckanext/example_flask_streaming/templates/stream.html,sha256=rG6Whc_esJxRj8MfhZ6GPZ5pZnzpyfyOHhEAtzR_SFs,232 +ckanext/example_flask_streaming/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_flask_streaming/tests/__init__.pyc,, +ckanext/example_flask_streaming/tests/test_streaming_responses.py,sha256=D2kvxxjBobfGwVpVl1dHKQY1uucxTkONv_PAoPU2-aM,2415 +ckanext/example_flask_streaming/tests/test_streaming_responses.pyc,, +ckanext/example_iauthfunctions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iauthfunctions/__init__.pyc,, +ckanext/example_iauthfunctions/plugin_v1.py,sha256=IYXvL2wmlBSRv-YRfsvRhGMuOx20fYIML0X49j0GovI,121 +ckanext/example_iauthfunctions/plugin_v1.pyc,, +ckanext/example_iauthfunctions/plugin_v2.py,sha256=GD-ro0u5mug--Z77qu3KXSC2OGsxJOukWu-Ix84xnRs,360 +ckanext/example_iauthfunctions/plugin_v2.pyc,, +ckanext/example_iauthfunctions/plugin_v3.py,sha256=2ZlXu6BSGWlAJ62-3WDwjbPdQ8OfkYWndSsfFTYZ7jo,1237 +ckanext/example_iauthfunctions/plugin_v3.pyc,, +ckanext/example_iauthfunctions/plugin_v4.py,sha256=arUfk5ic7YmkOYXkkqXl_wwBby1K30kT8Of-fatmFFk,1772 +ckanext/example_iauthfunctions/plugin_v4.pyc,, +ckanext/example_iauthfunctions/plugin_v5_custom_config_setting.py,sha256=JNRkSq7Wkhbd4XnRrhZdJEESdyxskXukqV8j0miJ5zA,933 +ckanext/example_iauthfunctions/plugin_v5_custom_config_setting.pyc,, +ckanext/example_iauthfunctions/plugin_v6_parent_auth_functions.py,sha256=fWl-ZBsHYIOVeADQ0fkGnLVgK4aP5WOpiHgSaGzUk9g,449 +ckanext/example_iauthfunctions/plugin_v6_parent_auth_functions.pyc,, +ckanext/example_iconfigurer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iconfigurer/__init__.pyc,, +ckanext/example_iconfigurer/controller.py,sha256=EirqgvVFpsDFo2Okh72eO1wshqekDafDI--dFiFF8QY,742 +ckanext/example_iconfigurer/controller.pyc,, +ckanext/example_iconfigurer/plugin.py,sha256=UgIGRjWOYFnnOIoY5cK8nYAg4OWhzwFChcs9QIG6Zhk,2481 +ckanext/example_iconfigurer/plugin.pyc,, +ckanext/example_iconfigurer/plugin_v1.py,sha256=5qVgdYnGrGVBa03QHwPQJwlyRs7Qzir9GBPsb-IFgXY,888 +ckanext/example_iconfigurer/plugin_v1.pyc,, +ckanext/example_iconfigurer/plugin_v2.py,sha256=YFbJaeYdnJfDS4NQL-6LGZYer7h7x0nnMgjO5PShP6k,1029 +ckanext/example_iconfigurer/plugin_v2.pyc,, +ckanext/example_iconfigurer/templates/admin/config.html,sha256=oU6VswbAE36HJv9SA9HXkoRfZdWuO93FG1dfFpzdHJg,860 +ckanext/example_iconfigurer/templates/admin/myext_config.html,sha256=ghe89pfS8uo9wSaqnCAMlYO14URnR5hC97YjGtlLmZ4,107 +ckanext/example_iconfigurer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iconfigurer/tests/__init__.pyc,, +ckanext/example_iconfigurer/tests/test_example_iconfigurer.py,sha256=IC-RrO1lT1bLBtbGMsky2oebLaz2_pExdhdMqDauARk,3495 +ckanext/example_iconfigurer/tests/test_example_iconfigurer.pyc,, +ckanext/example_iconfigurer/tests/test_iconfigurer_toolkit.py,sha256=lwIQPa0XCnxwnrdjsdCoN-D5_6PvYPBT_20yD7ML33Y,3556 +ckanext/example_iconfigurer/tests/test_iconfigurer_toolkit.pyc,, +ckanext/example_iconfigurer/tests/test_iconfigurer_update_config.py,sha256=Ao4BWp15vR0KWt8SSNAx3eLe86tFn-GFdrfpYiHESzk,5122 +ckanext/example_iconfigurer/tests/test_iconfigurer_update_config.pyc,, +ckanext/example_idatasetform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_idatasetform/__init__.pyc,, +ckanext/example_idatasetform/plugin.py,sha256=6yR4bYnL6JZqoq4C94DtDz4OYjxFTR9zWk8PTanRUsA,6964 +ckanext/example_idatasetform/plugin.pyc,, +ckanext/example_idatasetform/plugin_v1.py,sha256=gEpD7Y4Uijgnmxqd4H28YjKZ4oRMEtqibpQ4L3VfgF4,1574 +ckanext/example_idatasetform/plugin_v1.pyc,, +ckanext/example_idatasetform/plugin_v2.py,sha256=beZnYQjAu2jMJN4rCNSST1vgOZC1Gd6IfQ9s0rwMAtw,1856 +ckanext/example_idatasetform/plugin_v2.pyc,, +ckanext/example_idatasetform/plugin_v3.py,sha256=L5UG6sFONUNYiHRvOzoaoSpgT4WieoYyAic4yznHgyo,1508 +ckanext/example_idatasetform/plugin_v3.pyc,, +ckanext/example_idatasetform/plugin_v4.py,sha256=OfL3IyDwaWIf1K5bfidwZJzMEbklrDXQAn3YSSA_Z9M,3156 +ckanext/example_idatasetform/plugin_v4.pyc,, +ckanext/example_idatasetform/templates/package/read.html,sha256=seyD5n2To9MzkC7PyFGrECMEfNMrBuFSB-SlLr3jOO8,358 +ckanext/example_idatasetform/templates/package/search.html,sha256=N-r_w9LL8kBN8gXZ9Z9VwmDz0BGXpnvUI4GV1ybCJvQ,894 +ckanext/example_idatasetform/templates/package/snippets/additional_info.html,sha256=nl9Gf8wdv5R9FSuJXpl9ha9hjpB0Oa5_epNlQtnrCcs,257 +ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html,sha256=_Z0VnBcvre2ZIggq2QeHnQs_SDav59V0JBDY2gkV62g,265 +ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html,sha256=kNj1Bqmn7IshSm7xkn_CKDWreJncSwJtwYyt8HX5vok,749 +ckanext/example_idatasetform/templates/package/snippets/resource_form.html,sha256=qnII7yo-WvcCon_N-DKUPNO125Q4LAhe1ODBprQ9uoU,314 +ckanext/example_idatasetform/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_idatasetform/tests/__init__.pyc,, +ckanext/example_idatasetform/tests/test_controllers.py,sha256=_CrUXwRsrIWg5TKzzL6eu3ItzAd3QPqx34wUiCyAQ3M,2425 +ckanext/example_idatasetform/tests/test_controllers.pyc,, +ckanext/example_idatasetform/tests/test_example_idatasetform.py,sha256=76CwXQjH_IwgVQxofFZK8snSGhtUfYLZr9YFK7ahtTw,8930 +ckanext/example_idatasetform/tests/test_example_idatasetform.pyc,, +ckanext/example_idatastorebackend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_idatastorebackend/__init__.pyc,, +ckanext/example_idatastorebackend/example_sqlite.py,sha256=hOe8pSzntVEz6xCQC271rWBMZwD19SGcDHMxA1OVLs0,3582 +ckanext/example_idatastorebackend/example_sqlite.pyc,, +ckanext/example_idatastorebackend/plugin.py,sha256=IgrabpbJrSC0oG93oZhj1VIsq-55S3iLzfuwqzyl0oc,423 +ckanext/example_idatastorebackend/plugin.pyc,, +ckanext/example_idatastorebackend/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_idatastorebackend/test/__init__.pyc,, +ckanext/example_idatastorebackend/test/test_plugin.py,sha256=3ErYoTRqJ7ufazOfRyDZEmlQLNK1GwswBY-VBcK3z78,4379 +ckanext/example_idatastorebackend/test/test_plugin.pyc,, +ckanext/example_igroupform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_igroupform/__init__.pyc,, +ckanext/example_igroupform/plugin.py,sha256=gTyeOX1-lT9TFquQHwFYW-3TiEMuosAiDLw6lYWSt2k,2320 +ckanext/example_igroupform/plugin.pyc,, +ckanext/example_igroupform/templates/example_igroup_form/group_form.html,sha256=-J0u1XaJ-YuwCBjUX5fR_WCQL6Ftmn3k1YM6Z8kqb3k,189 +ckanext/example_igroupform/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_igroupform/tests/__init__.pyc,, +ckanext/example_igroupform/tests/test_controllers.py,sha256=oYdMc3s7pM4r09Gn2uveOpk2CS0uuWgUMKXabCFW4v4,11258 +ckanext/example_igroupform/tests/test_controllers.pyc,, +ckanext/example_ipermissionlabels/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_ipermissionlabels/__init__.pyc,, +ckanext/example_ipermissionlabels/plugin.py,sha256=fbxgcBn0zLHmCGayv-ftT5xJag0jL8KRb9e7Ai_bc58,1542 +ckanext/example_ipermissionlabels/plugin.pyc,, +ckanext/example_ipermissionlabels/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_ipermissionlabels/tests/__init__.pyc,, +ckanext/example_ipermissionlabels/tests/test_example_ipermissionlabels.py,sha256=heAs5qlAoLbliICcUByR8F96WG3syTstfWlWq58f4_I,4127 +ckanext/example_ipermissionlabels/tests/test_example_ipermissionlabels.pyc,, +ckanext/example_iresourcecontroller/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iresourcecontroller/__init__.pyc,, +ckanext/example_iresourcecontroller/plugin.py,sha256=R819FJpJXH2IIkE-x8sEQmyrBY11ZMAqk3vj7VtlBDU,934 +ckanext/example_iresourcecontroller/plugin.pyc,, +ckanext/example_itemplatehelpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_itemplatehelpers/__init__.pyc,, +ckanext/example_itemplatehelpers/plugin.py,sha256=rXWKYTUFA1pVFxAzhla1jK7cm1Il7yFEhmO9ID7doXo,969 +ckanext/example_itemplatehelpers/plugin.pyc,, +ckanext/example_itemplatehelpers/templates/home/index.html,sha256=JHqWExUjwI-gNA63V2mC5gtiwWlOoFSd5dTOfkhFCpQ,108 +ckanext/example_itranslation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_itranslation/__init__.pyc,, +ckanext/example_itranslation/i18n/ckanext-example_itranslation.pot,sha256=auCc_WyOKUMaZszNoUT7C6x87PRcDd-3B6GWYDaDMEQ,683 +ckanext/example_itranslation/i18n/en/LC_MESSAGES/ckanext-example_itranslation.mo,sha256=n5ZXj7nfuRcMSDr3rkYoFnH2UpnS0jWQ8KPL56acHdI,542 +ckanext/example_itranslation/i18n/en/LC_MESSAGES/ckanext-example_itranslation.po,sha256=V6HgKNLEsZ-0mZX1O1qMcufvPw0uH4aOxnlA6Fs7MUI,748 +ckanext/example_itranslation/i18n/en/LC_MESSAGES/ckanext-example_translation.po,sha256=V6HgKNLEsZ-0mZX1O1qMcufvPw0uH4aOxnlA6Fs7MUI,748 +ckanext/example_itranslation/i18n/fr/LC_MESSAGES/ckanext-example_itranslation.mo,sha256=wRH_bNMjmkGxhtQGksZzAnhCG0Ckr-uFhVLOFHGnzjw,559 +ckanext/example_itranslation/i18n/fr/LC_MESSAGES/ckanext-example_itranslation.po,sha256=N9yDF8SNHN6FxeWogK8D6zxerOTK_qsPBsoScAzMSR0,621 +ckanext/example_itranslation/plugin.py,sha256=jRFt0nH9IEhTB-77u9YpPXmLWUAk6iOy9rHquE8EYWY,392 +ckanext/example_itranslation/plugin.pyc,, +ckanext/example_itranslation/plugin_v1.py,sha256=i1LyEkQG54RLmrYJXeWY_OQm9oeBtf191Ua9Mk2YqSQ,279 +ckanext/example_itranslation/plugin_v1.pyc,, +ckanext/example_itranslation/templates/home/index.html,sha256=yWzt4EpScDxM81fHFEC11j9I4BmRW527tJHuEHvkOjs,119 +ckanext/example_itranslation/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_itranslation/tests/__init__.pyc,, +ckanext/example_itranslation/tests/test_plugin.py,sha256=UTF5CZuqrFq0QPatAw1N1FD56IKSscSGuZ55U-N7F-o,2560 +ckanext/example_itranslation/tests/test_plugin.pyc,, +ckanext/example_iuploader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iuploader/__init__.pyc,, +ckanext/example_iuploader/plugin.py,sha256=rvbE6Tuzq_syN3ldgHU6yob0iFGVv4J4dY1Qjfu9Dz4,600 +ckanext/example_iuploader/plugin.pyc,, +ckanext/example_iuploader/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_iuploader/test/__init__.pyc,, +ckanext/example_iuploader/test/test_plugin.py,sha256=zs7QCARIrBHtB765Z2-uoBDCKiRkf9zqua6GOIoCnkw,4447 +ckanext/example_iuploader/test/test_plugin.pyc,, +ckanext/example_ivalidators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_ivalidators/__init__.pyc,, +ckanext/example_ivalidators/plugin.py,sha256=1QNBQsSZLxMkWXARWsKxW3FjnmabkESr4OAhkxw3m_8,763 +ckanext/example_ivalidators/plugin.pyc,, +ckanext/example_ivalidators/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_ivalidators/tests/__init__.pyc,, +ckanext/example_ivalidators/tests/test_ivalidators.py,sha256=FddSKEx_qwLrZ6lDjZNRQsBe4N9E_Fzn2eh728MhW0Q,1106 +ckanext/example_ivalidators/tests/test_ivalidators.pyc,, +ckanext/example_theme_docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/__init__.pyc,, +ckanext/example_theme_docs/custom_config_setting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/custom_config_setting/__init__.pyc,, +ckanext/example_theme_docs/custom_config_setting/plugin.py,sha256=OPCPcNONo9Ku3wIImh8172i73LGT9OGVSDGWIJHL9io,2035 +ckanext/example_theme_docs/custom_config_setting/plugin.pyc,, +ckanext/example_theme_docs/custom_emails/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/custom_emails/__init__.pyc,, +ckanext/example_theme_docs/custom_emails/plugin.py,sha256=hRFa-3LcG0PMvHf2xaQe777EtaHt7WEyrxV-Lzd06tY,484 +ckanext/example_theme_docs/custom_emails/plugin.pyc,, +ckanext/example_theme_docs/custom_emails/tests.py,sha256=74fShIe3LXJF7hKwUas4yHhOxlLbrIB__yzePpjfc4M,3817 +ckanext/example_theme_docs/custom_emails/tests.pyc,, +ckanext/example_theme_docs/v01_empty_extension/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v01_empty_extension/__init__.pyc,, +ckanext/example_theme_docs/v01_empty_extension/plugin.py,sha256=58LmEwuz2rmHDC_rGUQcLzY-4xhnTMicVa_Q34A6AqY,153 +ckanext/example_theme_docs/v01_empty_extension/plugin.pyc,, +ckanext/example_theme_docs/v02_empty_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v02_empty_template/__init__.pyc,, +ckanext/example_theme_docs/v02_empty_template/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v02_empty_template/plugin.pyc,, +ckanext/example_theme_docs/v03_jinja/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v03_jinja/__init__.pyc,, +ckanext/example_theme_docs/v03_jinja/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v03_jinja/plugin.pyc,, +ckanext/example_theme_docs/v04_ckan_extends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v04_ckan_extends/__init__.pyc,, +ckanext/example_theme_docs/v04_ckan_extends/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v04_ckan_extends/plugin.pyc,, +ckanext/example_theme_docs/v05_block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v05_block/__init__.pyc,, +ckanext/example_theme_docs/v05_block/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v05_block/plugin.pyc,, +ckanext/example_theme_docs/v06_super/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v06_super/__init__.pyc,, +ckanext/example_theme_docs/v06_super/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v06_super/plugin.pyc,, +ckanext/example_theme_docs/v07_helper_function/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v07_helper_function/__init__.pyc,, +ckanext/example_theme_docs/v07_helper_function/plugin.py,sha256=jzzujrTyA9xlWvTtrzdphc66G64Wv1snEVrzuQrcDn0,635 +ckanext/example_theme_docs/v07_helper_function/plugin.pyc,, +ckanext/example_theme_docs/v08_custom_helper_function/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v08_custom_helper_function/__init__.pyc,, +ckanext/example_theme_docs/v08_custom_helper_function/plugin.py,sha256=qTljRe5voITntzJuYOAJ1vvWKaW1W9g1QIidMez5QH4,1380 +ckanext/example_theme_docs/v08_custom_helper_function/plugin.pyc,, +ckanext/example_theme_docs/v09_snippet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v09_snippet/__init__.pyc,, +ckanext/example_theme_docs/v09_snippet/plugin.py,sha256=qTljRe5voITntzJuYOAJ1vvWKaW1W9g1QIidMez5QH4,1380 +ckanext/example_theme_docs/v09_snippet/plugin.pyc,, +ckanext/example_theme_docs/v10_custom_snippet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v10_custom_snippet/__init__.pyc,, +ckanext/example_theme_docs/v10_custom_snippet/plugin.py,sha256=qTljRe5voITntzJuYOAJ1vvWKaW1W9g1QIidMez5QH4,1380 +ckanext/example_theme_docs/v10_custom_snippet/plugin.pyc,, +ckanext/example_theme_docs/v11_HTML_and_CSS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v11_HTML_and_CSS/__init__.pyc,, +ckanext/example_theme_docs/v11_HTML_and_CSS/plugin.py,sha256=qTljRe5voITntzJuYOAJ1vvWKaW1W9g1QIidMez5QH4,1380 +ckanext/example_theme_docs/v11_HTML_and_CSS/plugin.pyc,, +ckanext/example_theme_docs/v12_extra_public_dir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v12_extra_public_dir/__init__.pyc,, +ckanext/example_theme_docs/v12_extra_public_dir/plugin.py,sha256=sKI9cmMMFaOfOyiRgUCAHr-54XNu5RUp3ZdTOOjPXPs,1567 +ckanext/example_theme_docs/v12_extra_public_dir/plugin.pyc,, +ckanext/example_theme_docs/v13_custom_css/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v13_custom_css/__init__.pyc,, +ckanext/example_theme_docs/v13_custom_css/plugin.py,sha256=sKI9cmMMFaOfOyiRgUCAHr-54XNu5RUp3ZdTOOjPXPs,1567 +ckanext/example_theme_docs/v13_custom_css/plugin.pyc,, +ckanext/example_theme_docs/v14_more_custom_css/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v14_more_custom_css/__init__.pyc,, +ckanext/example_theme_docs/v14_more_custom_css/plugin.py,sha256=sKI9cmMMFaOfOyiRgUCAHr-54XNu5RUp3ZdTOOjPXPs,1567 +ckanext/example_theme_docs/v14_more_custom_css/plugin.pyc,, +ckanext/example_theme_docs/v15_fanstatic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v15_fanstatic/__init__.pyc,, +ckanext/example_theme_docs/v15_fanstatic/plugin.py,sha256=RVvYUFD7zcZcRx5eo27TIeZlI0rwpQe83eCEjciDs4s,1928 +ckanext/example_theme_docs/v15_fanstatic/plugin.pyc,, +ckanext/example_theme_docs/v16_initialize_a_javascript_module/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v16_initialize_a_javascript_module/__init__.pyc,, +ckanext/example_theme_docs/v16_initialize_a_javascript_module/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v16_initialize_a_javascript_module/plugin.pyc,, +ckanext/example_theme_docs/v17_popover/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v17_popover/__init__.pyc,, +ckanext/example_theme_docs/v17_popover/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v17_popover/plugin.pyc,, +ckanext/example_theme_docs/v18_snippet_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v18_snippet_api/__init__.pyc,, +ckanext/example_theme_docs/v18_snippet_api/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v18_snippet_api/plugin.pyc,, +ckanext/example_theme_docs/v19_01_error/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v19_01_error/__init__.pyc,, +ckanext/example_theme_docs/v19_01_error/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v19_01_error/plugin.pyc,, +ckanext/example_theme_docs/v19_02_error_handling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v19_02_error_handling/__init__.pyc,, +ckanext/example_theme_docs/v19_02_error_handling/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v19_02_error_handling/plugin.pyc,, +ckanext/example_theme_docs/v20_pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v20_pubsub/__init__.pyc,, +ckanext/example_theme_docs/v20_pubsub/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v20_pubsub/plugin.pyc,, +ckanext/example_theme_docs/v21_custom_jquery_plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/example_theme_docs/v21_custom_jquery_plugin/__init__.pyc,, +ckanext/example_theme_docs/v21_custom_jquery_plugin/plugin.py,sha256=fDE9Ye9GXePK_8kOFi33dief0dgscyjXQ8JqbwGQqzw,385 +ckanext/example_theme_docs/v21_custom_jquery_plugin/plugin.pyc,, +ckanext/imageview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/imageview/__init__.pyc,, +ckanext/imageview/plugin.py,sha256=0Ugz_1ne-G4ZTieBT6hDiRUgDkaj8p-_xMw_XckYJqo,1318 +ckanext/imageview/plugin.pyc,, +ckanext/imageview/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/imageview/tests/__init__.pyc,, +ckanext/imageview/tests/test_view.py,sha256=bSIMxPxYqq_IVPg2vKqGHQDKvTQxnCqiOaeGzl8XC5c,929 +ckanext/imageview/tests/test_view.pyc,, +ckanext/imageview/theme/templates/image_form.html,sha256=xPp28RFmxj-GfzHJGlTtT2mcvax0AORrV0pQ22Gy3c8,285 +ckanext/imageview/theme/templates/image_view.html,sha256=5iSyHlZbMlQlign-t8p-FK3a3NuRsV9_bqAEsFK89Yg,126 +ckanext/multilingual/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/multilingual/__init__.pyc,, +ckanext/multilingual/plugin.py,sha256=fLnD-zCOneejy8AYpJHEcqIYYL4eKMdipupQ5Q5QfmQ,16113 +ckanext/multilingual/plugin.pyc,, +ckanext/reclineview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/reclineview/__init__.pyc,, +ckanext/reclineview/plugin.py,sha256=yoUTGAxpZU_Yg-UhGJNlnFsXZtg_Upc1BVgxOhYfK6c,9201 +ckanext/reclineview/plugin.pyc,, +ckanext/reclineview/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/reclineview/tests/__init__.pyc,, +ckanext/reclineview/tests/test_view.py,sha256=qVsv_EP0VoMUyDs2PgXeJRNoNFoi0c9HcNu9vNt7f68,6003 +ckanext/reclineview/tests/test_view.pyc,, +ckanext/reclineview/theme/public/css/recline.css,sha256=V2UQpSFOr5S9Lhfzh26huIKPaJ7Vxb5GTfjohaaLrj4,9348 +ckanext/reclineview/theme/public/css/recline.min.css,sha256=ILmTtltkLyzBlDQ2SlFEdOm1fTiFkYfMGe3NdRSyS0A,7363 +ckanext/reclineview/theme/public/img/ajaxload-circle.gif,sha256=TcFP5d9o0q6JniN_r5Jk1t8CYF3WVTaMuFbNbOdcdXM,4176 +ckanext/reclineview/theme/public/recline_view.js,sha256=MCvc8zQx2NRFyp27_5UuANcmpWQGoHTaKbOluYjoL2Q,8198 +ckanext/reclineview/theme/public/recline_view.min.js,sha256=OS89CcYL2_0pAUjpF13ZAo7EAsXv9cce-DNVP50OTag,5625 +ckanext/reclineview/theme/public/resource.config,sha256=OwxnWEoackdDpU99hlW4aeT7YrTB7-bpe3jSZozYVuI,1469 +ckanext/reclineview/theme/public/vendor/backbone/1.0.0/backbone.js,sha256=Lrus3IOT2sTOHUz7uOsZV7p714Efp77WfJSkoRk6ePM,59498 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/css/bootstrap-theme.css,sha256=did6yQnyomrwO1H3_azVybkTlMV8f7drEzTUughLZ9U,21368 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/css/bootstrap.css,sha256=0I8pG8uDB5sTMwlPTAIWQbMxgpFbXnSui93117T9Rpg,132546 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.eot,sha256=9JXzTk8XfPARWvmVu7_rP8q8iFAodudvxRpKtDm8hDE,20335 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.svg,sha256=0WjVCojHMLTmgw3A2iorUdrkZYp32WGZQ8J7js_BnRo,62927 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.ttf,sha256=vRjv0-_XD-yK0JYRogzb-ZRAssHUAIXCm-A2-JHWU1g,41280 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/fonts/glyphicons-halflings-regular.woff,sha256=_Jadwcb_Uxq882gIncuvV3UTOwYm_1a1IwGgWfwPnh4,23320 +ckanext/reclineview/theme/public/vendor/bootstrap/3.2.0/js/bootstrap.js,sha256=eXDzGQfZG_Dxnv6K7-501vCi2McrL48gpeKX08QUp48,60681 +ckanext/reclineview/theme/public/vendor/ckan.js/ckan.js,sha256=Ihq9SiLblv8Nx5zDly3uoSux8rz37w-_qPcBCcwe254,6986 +ckanext/reclineview/theme/public/vendor/flot/excanvas.js,sha256=OHPYC42T-UItVaEMqbckEd5l9T2XBdkCAlRTiYtUkYA,41943 +ckanext/reclineview/theme/public/vendor/flot/excanvas.min.js,sha256=YgHbvZvrlNiiQaDevyzC5u_AfsafTR8RaYTiG0We5Wk,19314 +ckanext/reclineview/theme/public/vendor/flot/jquery.flot.js,sha256=Buc_Aq0rp0po9B9asnLeDsjyMOYxo7hHCvTqRVpipJ8,119052 +ckanext/reclineview/theme/public/vendor/flot/jquery.flot.time.js,sha256=85ddZgnesEPBidx58QQeSKRKCl_h77LoMRQYq2MhYNY,11729 +ckanext/reclineview/theme/public/vendor/flotr2/flotr2.js,sha256=XL2cg9onvGwVeUOMzYg7Vtmmqw55GAn0GaAolG_JDgI,199723 +ckanext/reclineview/theme/public/vendor/flotr2/flotr2.min.js,sha256=38HKBIQVii-SwdUlGI_M8PpUQIkK4xSBDN6yF4RfZ4M,116019 +ckanext/reclineview/theme/public/vendor/jquery/1.7.1/jquery.js,sha256=n8wkEJNAWUaIUDnfQoz6fwBRofK9vMWjE6F3qeNfiAY,248235 +ckanext/reclineview/theme/public/vendor/jquery/1.7.1/jquery.min.js,sha256=iBcUE_x23aI6syuqF7EeT_-JFBxjPs5zeFJEXxumwb0,93868 +ckanext/reclineview/theme/public/vendor/json/json2.js,sha256=1UOI69ewpH08MyL2J1Ao4cNpfQVAk1aslfD4RfbaLmY,17530 +ckanext/reclineview/theme/public/vendor/json/json2.min.js,sha256=3QoMg35QSA_zQLMeqbMTi1up0GgvSTS3FiXgezpdkJ8,3449 +ckanext/reclineview/theme/public/vendor/leaflet.markercluster/MarkerCluster.Default.css,sha256=YSWCMtmNZNwqex4CEw1nQhvFub2lmU7vcCKP-XVwwXA,1287 +ckanext/reclineview/theme/public/vendor/leaflet.markercluster/MarkerCluster.css,sha256=Fvquvz2fsjbSkYnNwV1vmiV-vwrGSH8PAAunmlOmSys,366 +ckanext/reclineview/theme/public/vendor/leaflet.markercluster/leaflet.markercluster-src.js,sha256=D4p2Xv-SEPUrontcwIq_FuXlugOT5MfQPd1Keq3Kwcc,60524 +ckanext/reclineview/theme/public/vendor/leaflet.markercluster/leaflet.markercluster.js,sha256=pLyXQhrUrqzgxi537mZCstHxaliRrKXw4uzxG6WQvjM,28784 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/images/layers-2x.png,sha256=fDW_tRAiuIKE3cGejl2ECaTHyB1WTwvIaNjhT3XK3vA,1585 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/images/layers.png,sha256=4Q5V2r1RKGY1lUnFRtcmwge-7tOwtbAyUzZIBjAMxZw,913 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/images/marker-icon-2x.png,sha256=VfDJxHH5bd68zhleKI3sAWXOW-jetd_bDFGoG2J-CjA,4032 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/images/marker-icon.png,sha256=kV6Dpvx5jFmeXJ4_dZ1rwGXWUVEBms0EENH0cxvKr3I,1747 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/images/marker-shadow.png,sha256=pydFIZRmlF7SZ7eCWTWDoB1rtsVKO-p1jvqU9hQdlMs,681 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/leaflet-src.js,sha256=x1atEEGVVUoT4E3FQ2ZU7alopQsPtzMJl7sF28b9sWg,215410 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/leaflet.css,sha256=ymZGho-WjeQQ2jvjHInYJd0h20DI6_AE0fYq-BGYXqY,10183 +ckanext/reclineview/theme/public/vendor/leaflet/0.7.7/leaflet.js,sha256=aReBHzIjoMzKrp0H4XnxXIm0mwuNG_F-00pKDiFuLxI,125709 +ckanext/reclineview/theme/public/vendor/moment/2.0.0/moment.js,sha256=izpyeDkrZX5XuzceX635oH9Z21DbvI-q3sWrFveY5Mc,43905 +ckanext/reclineview/theme/public/vendor/mustache/0.5.0-dev/mustache.js,sha256=A9bfZFBW71tPzgGWpGrwDJCicHS1oApzkO2J2aTVi3Q,14513 +ckanext/reclineview/theme/public/vendor/mustache/0.5.0-dev/mustache.min.js,sha256=U1lia3ELviWknhV6xBNwhG0LbT3s1jj61FOkYaU6DWA,7633 +ckanext/reclineview/theme/public/vendor/recline/flot.css,sha256=siqm9FWlaT8jYMzv0toMq7UC-I4hodMmGKPHo-pw7A4,391 +ckanext/reclineview/theme/public/vendor/recline/map.css,sha256=8coNfkFrpT9iIGNMCLFO4w1qQLpjFAWOEFHwThdyVGI,482 +ckanext/reclineview/theme/public/vendor/recline/recline.css,sha256=_gBooqNPDXgrWfNrXBDgZtZ7LGwxv3U3fS1NEFWpCvg,18942 +ckanext/reclineview/theme/public/vendor/recline/recline.dataset.js,sha256=P4IMXDvy2DgRLsxsEGD9NifxQONMfCBTqsKZ_jgRMmU,27239 +ckanext/reclineview/theme/public/vendor/recline/recline.js,sha256=KvQBrwrZ3duVFIVySKZZGSAQd1kMCqjxURScIaKkRQA,140019 +ckanext/reclineview/theme/public/vendor/recline/slickgrid.css,sha256=-z59z-pHHcBDoVukOKqrpRBP2pRTsvGlgvNcfRhq1XU,4482 +ckanext/reclineview/theme/public/vendor/showdown/20120615/showdown.js,sha256=NcqqADp69pNxPmUTWoXpP2Qxz_fDuCHQHh1LE1Q8NE8,35163 +ckanext/reclineview/theme/public/vendor/showdown/20120615/showdown.min.js,sha256=n2ZfshVJvCq6TH5ZiZSy3nH6IwscUiVx94h9VUrXpVw,12533 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/MIT-LICENSE.txt,sha256=vqv7ER83IA6SHmVbEHxvKQR5C3YPKhl2z4X7cY_IYus,1096 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/README.md,sha256=sYu02HT_gv1--EFVmvR9hNw9wTT0HSmk3RwSB5GTq4g,1177 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/controls/slick.columnpicker.css,sha256=UiRlEe6TzhciypR_WO7_ZgPcWrkU0Pzqq0bCHpyKS5U,529 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/controls/slick.columnpicker.js,sha256=shpeTt8ON9lcNqkMz-KX0sLgNvJuedaIgzySqdjlGMU,4522 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/controls/slick.pager.css,sha256=rttVoH7vsXyPVyg-uSoG7p0LBfY5It4YsA7enNVSCCY,728 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/controls/slick.pager.js,sha256=ZF5nVomllj5kvs6Z-eGmIka9E0E2JsOp_7q0t2-gYcs,5023 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png,sha256=rmWnriLEwjEVlI_etcBckTfb0Tyi1CazxMPEGDRR5BA,86 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png,sha256=T7vZ_efwD5tu8VDGvYAN1kaf0H18Q66EenIG5PieDBQ,74 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png,sha256=eWkLi3BlPYqtdjcao2Qe3f92rTVuRxfyQVx_05y6owk,111 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png,sha256=lSfevwhe5BAbpkMyRzFSK7TOfMvIeGzh1iDy-rlYFhI,90 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png,sha256=RKb60MJ3VsbQtlbdBlyijT6SFrUvvWq3chUiYEKX_RQ,102 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png,sha256=NSIIuQtDmQ3QMplH5vNLrksn3AEcfNvh6J5xDvNGtsY,102 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png,sha256=q9VbFUrWMPt2mPbOwAHkwibwjNeJnuoPoyf8Ny4h5Vo,115 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png,sha256=pBpcpEVLdhffW3vFKvn51XuqFsJMfc_qbVSwRls4FxU,86 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-icons_222222_256x240.png,sha256=WxTFLRlP1BEBaCU4kFcyrl6XY1dXviAqcMkUyXtcx08,3687 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-icons_2e83ff_256x240.png,sha256=V_VNX0tirJl5Jas8jRRAuOhx1_xntVPM1gCAkIvYmu4,3687 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-icons_454545_256x240.png,sha256=c8MSxYv7D-mo5xMuvuZulZCpilAWoEbDqsvuFzatlrg,3687 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-icons_888888_256x240.png,sha256=jvY1dbase4dRuxooM-M2CoafAv4DNHQHwmnNMXg7dTY,3687 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/images/ui-icons_cd0a0a_256x240.png,sha256=nyOt25eVDaw8bkOVglIw7WIXU_cNSmWlM_fzhcyBxy0,3687 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/css/smoothness/jquery-ui-1.8.16.custom.css,sha256=HKURk0bjEhw8pSawLaBpZZAeafqN8UlXNLjK9JgLevs,25635 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/actions.gif,sha256=D8Nct4Hxzzrn_OIXiCCszk4jEtbDvQhKkAEg-HzgukQ,170 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/ajax-loader-small.gif,sha256=9uz_YX7Cun9Vnm9TXK2bcKP5ESBzdTXatNRUimyDV2w,1849 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/arrow_redo.png,sha256=T4arZb3pQUuI331CIQ-WAf5cPrCvmyyYSjrp4N7RMbM,550 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/arrow_right_peppermint.png,sha256=p8cDIKLwCqieqtVbkr34XgO4ZlrKuXRuD0W3hUda9sc,126 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/arrow_right_spearmint.png,sha256=WXL7dHiZnlCP4YRBGiuK1jtc4qSXWUZKxGtTA9prN-Q,126 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/arrow_undo.png,sha256=QSXplBjMGhFGsmsIyeR17ZssxQygVuUurXArYTdan1Q,555 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/bullet_blue.png,sha256=T-RxwwhAZl3qkRCQcF6bGYw4WrbbzmuqMjEy77FflCw,231 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/bullet_star.png,sha256=h3N5XnzKHKqQ6uFjLjGQ_yTOgUCYRRsOccfk-NNk8nE,273 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/bullet_toggle_minus.png,sha256=ViFVH26a_OZyfVxWtjIB6syTSD-iCGiukNYIA7hyvnQ,154 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/bullet_toggle_plus.png,sha256=v75A2SqCbUl65PwRN0LRQwIe3lLheTlsqwgswgrofQI,156 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/calendar.gif,sha256=q-Z8hknKgIM90QfA_Yhr7pYFP_z-SfqAFlWcmD9BSg8,1035 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/collapse.gif,sha256=MyP5gR8eSLuf9gcBivutfeQobC8cRbR-2RHKwmRcH-o,846 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/comment_yellow.gif,sha256=-OP6HChnjFZK_fRX0dgfkVsbuEhimMCq4v080rO_oKs,257 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/down.gif,sha256=q8WFg_gE6WhoeiSIK4_ctlqQzvR1_hB7YWE6p5OBFi8,59 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/drag-handle.png,sha256=n8MkfeAS4U6NANAWysIsy85drVKZnzwNkKQXUVwassk,98 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/editor-helper-bg.gif,sha256=wcK-il-lyA37ACXU-oPyK3dXLO769xL2LhGKZjlb4r0,1164 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/expand.gif,sha256=Y00F-D6szBAt6IhV7-JT1EM89g02Y_dnfta5lMq4NYI,851 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/header-bg.gif,sha256=4UEN2wVeC6M6H_AObzcQyYubZXe7UD8QFcfCaGeCN-A,872 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/header-columns-bg.gif,sha256=Xw82RUqYSpkNGEKVks1-0CeLt6yqMXb4UC0bvp3g7j0,836 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/header-columns-over-bg.gif,sha256=9MCfFz_paCEunw6vVlelFqmYuHj0uYAGUSpVcQId3Ho,823 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/help.png,sha256=OKJ1jMF9IgTMe-TGU3R-Kf-bQCUp89t-JpK144v8498,328 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/info.gif,sha256=YbHWd6h5zrTUtIVn4x0VMz_JRNAl9n0XAI5HcFZtUFc,80 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/listview.gif,sha256=FgqWew2rbxOMakO8Xnv4saMzCyq86Vy0OaOKf1XOSZ4,2380 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/pencil.gif,sha256=CsRU4xSOUs-oDce4pyy7mXKh5p0-214QQ6OM8T4xyNA,914 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/row-over-bg.gif,sha256=RpLS_M4Pgh_XCftdCzMz4HRKbHHTZzeYGBy7BXvBi2I,823 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/sort-asc.gif,sha256=oyCuk-hGo5GOQJGbp-eO-52iCKPTcI81XaOXm90J07M,830 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/sort-asc.png,sha256=yQfeBXgZmV4MvvwwxseHCrl577eWqeZWZeOJ4zWwa-g,104 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/sort-desc.gif,sha256=3Utsn2iM-NKeAb-UpdEMbV0oX3PcLA4SS6IFEnUz4WU,833 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/sort-desc.png,sha256=BswbGoH2XzVv4IYQkGEtUxE5XYiILIZrAIbiY7HtmSY,106 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/stripes.png,sha256=4vHkGIUx6nKfY_2MvPV67V11ZK8caZkB6WbfiP0tLQ4,94 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/tag_red.png,sha256=wwRB6e9lBL9Oy1pGojNdDaFWvevKVDAWZUBc_X_Ml8M,529 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/tick.png,sha256=eaOl41DuLotc6ULIlQ7ThADClKVx5RjT8Wsxwyy37jA,465 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/user_identity.gif,sha256=RPDOLnV7zg_hM2P2Cli-PcFTLqle3ABXBbbwGWxixgY,905 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/images/user_identity_plus.gif,sha256=6gNOx64wEeQcGmcyOau6Hzu2kl2AysfS-JS91m3uoQM,546 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/jquery-1.7.min.js,sha256=_05Jde9AMAT4_o5ZAI23rUf1SxDYTHLrkOco0eyRV84,94020 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/jquery-ui-1.8.16.custom.js,sha256=8vtFEuIQ5GY7-BSLNXUVkT5-3CkJkBRotdy-EsvwrYs,159838 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/jquery.event.drag-2.2.js,sha256=yGrghELeXGHSXqJ6WNt9LN42Vm0JRU6bIoVQhbn_Tk8,12832 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/jquery.event.drop-2.2.js,sha256=R6P3ehPYyyR21Bh0OnOZS8rP13AxE_YcfnVHJ0W8i8s,9420 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.autotooltips.js,sha256=zIsmzaLb3FhagCG84zAScQUv4yKgqnMJ1ynv6nt6te0,2567 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.cellcopymanager.js,sha256=OSdajrluv7XyKNS12nJ6alcyNgagorm0ATqx7bvi4To,2301 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.cellrangedecorator.js,sha256=6PQrefZ-o_KXMHGrQu1LZpoC_zwrmt_keiykMYOTXng,1570 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.cellrangeselector.js,sha256=HYT58V13rJ1M41xPMxPbLCTkFkWJQVblq3y7EIa_r_g,2739 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.cellselectionmodel.js,sha256=CD7G-3V63m72sJCjyOidUWBDsC3ubQDJXsr3G4oDfoM,4564 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.checkboxselectcolumn.js,sha256=n_P71kYWfImeSAywWusskTKBIQpeIW9s-DyIdKRXqLc,4456 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.headerbuttons.css,sha256=wbmtS7c2b1aTelR5DbgRRWcF8TtEGsJLOmMtzpWIGsE,903 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.headerbuttons.js,sha256=7pq9aV88FCa-Wl-vRU9QW275DfprqSwnMq5_NeGEIzU,5126 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.headermenu.css,sha256=-cVU10fvj8PzpmxbW--1_12XDOpiQF5ta8YfREZdMTY,1036 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.headermenu.js,sha256=H1bEvnwsq8e-wp3csQ4N1b-1ICzMijg00nWHInaKugs,7544 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.rowmovemanager.js,sha256=wrEAMabWKXiUAbs6MX74vUa4oP5IQlKbj-Da-6y-09s,3654 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/plugins/slick.rowselectionmodel.js,sha256=95bb4SHKrU5GwOr78zYvzeggIIW7WQgVVyPBxDy5GWU,4948 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick-default-theme.css,sha256=jLctqTWQVq39egLLKFBJPpFlRFXa5r_9gjyFLq_ltQY,2261 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.core.js,sha256=A74SUXyU-8RsPIBPXEfB7hkpc-R_aKtZ-gA1VXKPFSM,12990 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.dataview.js,sha256=gEu_r0dSZImHABvwWQpjoEe3M1WumK_6fvVbtafM3iA,33220 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.editors.js,sha256=QIxbJWZIHL9ES3fkb2N_L-_O2zEw12XCZvpWnZPOBdQ,12379 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.formatters.js,sha256=ZDEbeyt6aIi7kEHRnf7vsYyAuzpUpDwIOFfybkTFSOI,1572 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.grid.css,sha256=yLkBh0Xk4BNBWde5NbnQB_Dx3bO89t1Jbm7tInDLvzE,2872 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.grid.js,sha256=77ukobS0Ianm0sIAg6A-2JPl93nIfAqsYwtd2ha8Z3M,108096 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.groupitemmetadataprovider.js,sha256=IY2KvvkkIDVvs8_MfZj4ZEWm57D8_SvGEtMPZR3BLhQ,4659 +ckanext/reclineview/theme/public/vendor/slickgrid/2.2/slick.remotemodel.js,sha256=9GM9-NY5qIdDSeDA2U9GR8qcHg3kEa7r5sIKiaMw-GM,4276 +ckanext/reclineview/theme/public/vendor/timeline/LICENSE,sha256=LgdH2aOc_2p1lB_SKEwQ1vu53W_MgdSIWMzs6Xv44hg,16430 +ckanext/reclineview/theme/public/vendor/timeline/README,sha256=i9q0MdmCRKGb2eYzhjyIB1bnFl1_SGanfDL9DX10RSg,24 +ckanext/reclineview/theme/public/vendor/timeline/css/loading.gif,sha256=nFAsxHpsvCPKPAGsxKJKD0MUSf1QYqtaQRUshJlmVZM,6909 +ckanext/reclineview/theme/public/vendor/timeline/css/timeline.css,sha256=N4KZHQu5X37XoasFH-D9a-8N-YgzVjWcl-wxjvyQiog,71281 +ckanext/reclineview/theme/public/vendor/timeline/css/timeline.png,sha256=kMh0Ezbho-fJiSRHdUHAbR3sS8JOQTsA4gdAsB4Riuo,14048 +ckanext/reclineview/theme/public/vendor/timeline/css/timeline@2x.png,sha256=GGErnYyo2KpvuBMpwdcYNkvmbPYtdRup0LaTdcjQf_A,36430 +ckanext/reclineview/theme/public/vendor/timeline/js/timeline.js,sha256=VxBgqxPglCHdbDiY6X12ed_gHhdxqAdacg-lYFbQwHA,305847 +ckanext/reclineview/theme/public/vendor/underscore.deferred/0.4.0/underscore.deferred.js,sha256=1sPQM1MDCqg8qxBEqshaALfg4W0Xqvn2EfM_aieYhxI,13034 +ckanext/reclineview/theme/public/vendor/underscore.deferred/0.4.0/underscore.deferred.min.js,sha256=bp0LUKoVeU69hLtHKIkbl4DRpQxv_IlYHEllCJc3CeQ,5832 +ckanext/reclineview/theme/public/vendor/underscore/1.4.4/underscore.js,sha256=Ah_oWEWKIflX254AMEUx0p8OEO2yTcxFJdF_Nm6B1M0,41426 +ckanext/reclineview/theme/public/widget.recordcount.js,sha256=XMZ1TLfq4dVW4BLIPUkizVA-mnQLXH7h_cBi7vpny1Q,701 +ckanext/reclineview/theme/public/widget.recordcount.min.js,sha256=NcDzmTbNjZBgp-vhFbY1SwSw6i-QTz6Y0XN5JPxIcbc,577 +ckanext/reclineview/theme/templates/recline_graph_form.html,sha256=5GvVcsjHeobMJ39JSBtvBMddIIWQPJ7Qil5F5MmARmg,730 +ckanext/reclineview/theme/templates/recline_map_form.html,sha256=AOxG6e8-zVukYtZYr87lb5ZGk5TfSL4Otut1C124njU,1223 +ckanext/reclineview/theme/templates/recline_view.html,sha256=ndPrHyhVEw3QJDUsFIXMt8FE4z4JNTr7QMxCrGY-MHU,775 +ckanext/resourceproxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/resourceproxy/__init__.pyc,, +ckanext/resourceproxy/controller.py,sha256=sJhTJlQzHuJuffz6B2FjeFdU_zsnIHb7PAgk3TOmx6g,3486 +ckanext/resourceproxy/controller.pyc,, +ckanext/resourceproxy/plugin.py,sha256=7Ncf25OTDXBGaCKakwYEZJbm36CBsvf3UrUicyo6edg,2549 +ckanext/resourceproxy/plugin.pyc,, +ckanext/resourceproxy/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/resourceproxy/tests/__init__.pyc,, +ckanext/resourceproxy/tests/test_proxy.py,sha256=LMLQqxdpNxFeFWQ9aGYOSociKprZJtePS_UjmREPx5E,5794 +ckanext/resourceproxy/tests/test_proxy.pyc,, +ckanext/stats/controller.py,sha256=BXwisMgks_lDOXpzEqAXqK5JlLiAn8FBxuKz56EeYc0,1982 +ckanext/stats/controller.pyc,, +ckanext/stats/plugin.py,sha256=6IUpE32bfonfFiAaStA0yaT4OaMBUN5x7QiUnAjfwIE,939 +ckanext/stats/plugin.pyc,, +ckanext/stats/public/.gitignore,sha256=b_E-Djjo16zhC3AvLZX7gekmfRGyieSVwMoWHlkuVKc,21 +ckanext/stats/public/__init__.py,sha256=7jFPzUbP-JA2Kg63ZeSxsP-EPoS_oaBdGSv5WrIWmvU,219 +ckanext/stats/public/__init__.pyc,, +ckanext/stats/public/ckanext/__init__.py,sha256=7jFPzUbP-JA2Kg63ZeSxsP-EPoS_oaBdGSv5WrIWmvU,219 +ckanext/stats/public/ckanext/__init__.pyc,, +ckanext/stats/public/ckanext/stats/__init__.py,sha256=7jFPzUbP-JA2Kg63ZeSxsP-EPoS_oaBdGSv5WrIWmvU,219 +ckanext/stats/public/ckanext/stats/__init__.pyc,, +ckanext/stats/public/ckanext/stats/css/stats.css,sha256=8uEtFAE7Y8y153UDRdl2Y8y7roHBXtEGgweHzvVyWTQ,221 +ckanext/stats/public/ckanext/stats/css/stats.min.css,sha256=9RHW-6h87-74btv-jShfgcYkPx2KfyKEXzEnrXVZoXM,175 +ckanext/stats/public/ckanext/stats/javascript/modules/plot.js,sha256=Muzy9SIirvky3MONvGCtJ8nUsP28b21FU1DuTpsf3OQ,6308 +ckanext/stats/public/ckanext/stats/javascript/modules/plot.min.js,sha256=Vjut4BaiZoMj-xQeg4leUIGDQI4fNeu4K-pdbbKMsqk,1621 +ckanext/stats/public/ckanext/stats/javascript/modules/stats-nav.js,sha256=WjsVs-B_PneX98bW_e14WX6C7T1Xo3B-KH2LeP4beCU,1036 +ckanext/stats/public/ckanext/stats/javascript/modules/stats-nav.min.js,sha256=TIpsr16iY5pSNkF_vwexQzMt4TVxnpQm7IdUdQzW_AY,363 +ckanext/stats/public/ckanext/stats/resource.config,sha256=5uFVjJWQCvdxeqUFc-PXlGWiiBY2Ae7TS3JR7v1Hi6I,201 +ckanext/stats/public/ckanext/stats/test/fixtures/table.html,sha256=pvQsK1JyFe_LayUOYnyiRHrpn0BSao_m6zZfcxzOMpg,699 +ckanext/stats/public/ckanext/stats/test/index.html,sha256=RLmgdrjHMjRh4nKXI9CcBqs2wjv1e4w0L44xzs6WZXE,2199 +ckanext/stats/public/ckanext/stats/test/spec/modules/plot.spec.js,sha256=lXEy055vOnAMeIWfbVx_GHyXO5vqrbn94wTWK6FgrS8,4014 +ckanext/stats/public/ckanext/stats/test/spec/modules/plot.spec.min.js,sha256=4mhkzwg4vMqU3UdxdPsr6ULJCh9Xn1rThzC18zv1KPQ,3161 +ckanext/stats/public/ckanext/stats/test/spec/modules/stats-nav.spec.js,sha256=t0_udHJCEQIGaqaMquvuROrmdMClQWBasqeZFg1TA08,1294 +ckanext/stats/public/ckanext/stats/test/spec/modules/stats-nav.spec.min.js,sha256=pzefEXdSP9LACe-q2Hx5NR4dmyf7y4UNdn-vx-NfmYc,994 +ckanext/stats/public/ckanext/stats/vendor/excanvas.js,sha256=6TbgbRokjoEtwG0-26w8BRD7pTj9DDdzej_icKz2BLw,41784 +ckanext/stats/public/ckanext/stats/vendor/jquery.flot.js,sha256=_FLyyIbAtKdPPkunG3XS8AF2x94UAMdDmbrzR-RjlWQ,106797 +ckanext/stats/stats.py,sha256=6G1GuWrX3krM4ArAat4K4cgxaldCNR5OM8gHU8so-iE,17524 +ckanext/stats/stats.pyc,, +ckanext/stats/templates/ckanext/stats/index.html,sha256=ChUoSmKxyQwO0eNj6smHKEWV2N92qLbBaCF9eJdKQJI,7628 +ckanext/stats/tests/__init__.py,sha256=i00kZNPmTT2abOUtE2pQ4TUjlAuPRDXYuTVqhUq0RF4,403 +ckanext/stats/tests/__init__.pyc,, +ckanext/stats/tests/test_stats_lib.py,sha256=rJveS5VXuFjGN56wq7hj7tDwwCzMJkQ0RhBMaFw5bkw,6281 +ckanext/stats/tests/test_stats_lib.pyc,, +ckanext/stats/tests/test_stats_plugin.py,sha256=nP9tBKU_1l_NkWa_iAX_w-4MzNUK6Hjr5DE2YWsh8Ms,430 +ckanext/stats/tests/test_stats_plugin.pyc,, +ckanext/test_tag_vocab_plugin.py,sha256=sJ2EKFk0lZbSJC3nyxakC1dsV1k7LvgX4orzDw7ya-w,2085 +ckanext/test_tag_vocab_plugin.pyc,, +ckanext/textview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/textview/__init__.pyc,, +ckanext/textview/plugin.py,sha256=DD5oeNGD5-cKb2_vfyUMH0XHsb9U0nGur4BZFXlIxdg,3385 +ckanext/textview/plugin.pyc,, +ckanext/textview/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/textview/tests/__init__.pyc,, +ckanext/textview/tests/test_view.py,sha256=DrAlXFtyaAHwng23wSb-Qk-4CfuOyCGINBa71iNNMks,4031 +ckanext/textview/tests/test_view.pyc,, +ckanext/textview/theme/public/LICENSE,sha256=X74KkubaFsdaO5BV1vZKKTePlnZYZljmuDzVwpehg5M,1549 +ckanext/textview/theme/public/css/text.css,sha256=IL3ZbCrpAntIzJ2es3ufO8Ea465DKYXNjRSpWB3r_QM,224 +ckanext/textview/theme/public/css/text.min.css,sha256=tp0lxwl-YUgTRap6YFbBvKkElhcb8QfbimxVZKoN7uE,170 +ckanext/textview/theme/public/resource.config,sha256=faVkqp_0CVva0Alr1A68OoFrgoP5ELN3VMA_OcFTDXk,132 +ckanext/textview/theme/public/styles/default.css,sha256=rgq8O9Wjv94ygUoCQMapt6GAzgQp1zPAvc3nXEj7IcI,2141 +ckanext/textview/theme/public/styles/default.min.css,sha256=nHSe-ps5Km79AglxEN-G6NccV8zQvP-Zb4q7eY3Zg8Q,1862 +ckanext/textview/theme/public/styles/github.css,sha256=yOKZQeJoMoZp05wtNejLgD2F431kV2v6sp8qDkpzoLU,1585 +ckanext/textview/theme/public/styles/github.min.css,sha256=O-a9ajSJUJEsNRoULcZzev1SmAuZCFZCMSquR-cC0MQ,1291 +ckanext/textview/theme/public/text_view.js,sha256=XU7UxLn3_VhGCdsiWvwhOi72FuCekj7rtM7C_Y_6hwo,2371 +ckanext/textview/theme/public/text_view.min.js,sha256=-Lz0cWShGZLfyb06_omI-2tcIGVVseBPt6FlfljWhFE,1600 +ckanext/textview/theme/public/vendor/highlight.pack.js,sha256=PTB4ijs0axiPEHkLlbSoAlXvX93WERxO660X9TfPE3Y,8153 +ckanext/textview/theme/templates/text_form.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/textview/theme/templates/text_view.html,sha256=_v7gUOr38tHToNtaBJDKOjROb7_Wt8_m2h6qX7h5FDg,530 +ckanext/webpageview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/webpageview/__init__.pyc,, +ckanext/webpageview/plugin.py,sha256=rKhwHy50gHvhmezRWyvZaJ9GslvzBwk6MRMO6pmIcks,1234 +ckanext/webpageview/plugin.pyc,, +ckanext/webpageview/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +ckanext/webpageview/tests/__init__.pyc,, +ckanext/webpageview/tests/test_view.py,sha256=55fYrEj3xFk_wu8Ua8QRMggrcP81T74KI0JXPMyF9Ww,1286 +ckanext/webpageview/tests/test_view.pyc,, +ckanext/webpageview/theme/templates/webpage_form.html,sha256=FoyN0Y1sQz3sXgzrkYF8q4MVSZlLxX5K494XNKPckaw,274 +ckanext/webpageview/theme/templates/webpage_view.html,sha256=r1jAMBgo9MQx2c4xIwy0DlPY__SlpXokqnVWWtJ1QQQ,198 diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/WHEEL b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/WHEEL new file mode 100644 index 00000000..db240751 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.33.4) +Root-Is-Purelib: true +Tag: cp27-none-any + diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/entry_points.txt b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/entry_points.txt new file mode 100644 index 00000000..7ceaac62 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/entry_points.txt @@ -0,0 +1,160 @@ +[babel.extractors] +ckan = ckan.lib.extract:extract_ckan + +[ckan.forms] +group = ckan.forms.group:get_group_fieldset +package = ckan.forms.package:get_standard_fieldset +package_group = ckan.forms.group:get_package_group_fieldset +standard = ckan.forms.package:get_standard_fieldset + +[ckan.plugins] +datapusher = ckanext.datapusher.plugin:DatapusherPlugin +datastore = ckanext.datastore.plugin:DatastorePlugin +datatables_view = ckanext.datatablesview.plugin:DataTablesView +example_flask_iblueprint = ckanext.example_flask_iblueprint.plugin:ExampleFlaskIBlueprintPlugin +example_flask_streaming = ckanext.example_flask_streaming.plugin:ExampleFlaskStreamingPlugin +example_iauthfunctions_v1 = ckanext.example_iauthfunctions.plugin_v1:ExampleIAuthFunctionsPlugin +example_iauthfunctions_v2 = ckanext.example_iauthfunctions.plugin_v2:ExampleIAuthFunctionsPlugin +example_iauthfunctions_v3 = ckanext.example_iauthfunctions.plugin_v3:ExampleIAuthFunctionsPlugin +example_iauthfunctions_v4 = ckanext.example_iauthfunctions.plugin_v4:ExampleIAuthFunctionsPlugin +example_iauthfunctions_v5_custom_config_setting = ckanext.example_iauthfunctions.plugin_v5_custom_config_setting:ExampleIAuthFunctionsPlugin +example_iauthfunctions_v6_parent_auth_functions = ckanext.example_iauthfunctions.plugin_v6_parent_auth_functions:ExampleIAuthFunctionsPlugin +example_iconfigurer = ckanext.example_iconfigurer.plugin:ExampleIConfigurerPlugin +example_iconfigurer_v1 = ckanext.example_iconfigurer.plugin_v1:ExampleIConfigurerPlugin +example_iconfigurer_v2 = ckanext.example_iconfigurer.plugin_v2:ExampleIConfigurerPlugin +example_idatasetform = ckanext.example_idatasetform.plugin:ExampleIDatasetFormPlugin +example_idatasetform_v1 = ckanext.example_idatasetform.plugin_v1:ExampleIDatasetFormPlugin +example_idatasetform_v2 = ckanext.example_idatasetform.plugin_v2:ExampleIDatasetFormPlugin +example_idatasetform_v3 = ckanext.example_idatasetform.plugin_v3:ExampleIDatasetFormPlugin +example_idatasetform_v4 = ckanext.example_idatasetform.plugin_v4:ExampleIDatasetFormPlugin +example_idatastorebackend = ckanext.example_idatastorebackend.plugin:ExampleIDatastoreBackendPlugin +example_igroupform = ckanext.example_igroupform.plugin:ExampleIGroupFormPlugin +example_igroupform_default_group_type = ckanext.example_igroupform.plugin:ExampleIGroupFormPlugin_DefaultGroupType +example_igroupform_organization = ckanext.example_igroupform.plugin:ExampleIGroupFormOrganizationPlugin +example_ipermissionlabels = ckanext.example_ipermissionlabels.plugin:ExampleIPermissionLabelsPlugin +example_iresourcecontroller = ckanext.example_iresourcecontroller.plugin:ExampleIResourceControllerPlugin +example_itemplatehelpers = ckanext.example_itemplatehelpers.plugin:ExampleITemplateHelpersPlugin +example_itranslation = ckanext.example_itranslation.plugin:ExampleITranslationPlugin +example_iuploader = ckanext.example_iuploader.plugin:ExampleIUploader +example_ivalidators = ckanext.example_ivalidators.plugin:ExampleIValidatorsPlugin +example_theme_custom_config_setting = ckanext.example_theme_docs.custom_config_setting.plugin:ExampleThemePlugin +example_theme_custom_emails = ckanext.example_theme_docs.custom_emails.plugin:ExampleCustomEmailsPlugin +example_theme_v01_empty_extension = ckanext.example_theme_docs.v01_empty_extension.plugin:ExampleThemePlugin +example_theme_v02_empty_template = ckanext.example_theme_docs.v02_empty_template.plugin:ExampleThemePlugin +example_theme_v03_jinja = ckanext.example_theme_docs.v03_jinja.plugin:ExampleThemePlugin +example_theme_v04_ckan_extends = ckanext.example_theme_docs.v04_ckan_extends.plugin:ExampleThemePlugin +example_theme_v05_block = ckanext.example_theme_docs.v05_block.plugin:ExampleThemePlugin +example_theme_v06_super = ckanext.example_theme_docs.v06_super.plugin:ExampleThemePlugin +example_theme_v07_helper_function = ckanext.example_theme_docs.v07_helper_function.plugin:ExampleThemePlugin +example_theme_v08_custom_helper_function = ckanext.example_theme_docs.v08_custom_helper_function.plugin:ExampleThemePlugin +example_theme_v09_snippet = ckanext.example_theme_docs.v09_snippet.plugin:ExampleThemePlugin +example_theme_v10_custom_snippet = ckanext.example_theme_docs.v10_custom_snippet.plugin:ExampleThemePlugin +example_theme_v11_HTML_and_CSS = ckanext.example_theme_docs.v11_HTML_and_CSS.plugin:ExampleThemePlugin +example_theme_v12_extra_public_dir = ckanext.example_theme_docs.v12_extra_public_dir.plugin:ExampleThemePlugin +example_theme_v13_custom_css = ckanext.example_theme_docs.v13_custom_css.plugin:ExampleThemePlugin +example_theme_v14_more_custom_css = ckanext.example_theme_docs.v14_more_custom_css.plugin:ExampleThemePlugin +example_theme_v15_fanstatic = ckanext.example_theme_docs.v15_fanstatic.plugin:ExampleThemePlugin +example_theme_v16_initialize_a_javascript_module = ckanext.example_theme_docs.v16_initialize_a_javascript_module.plugin:ExampleThemePlugin +example_theme_v17_popover = ckanext.example_theme_docs.v17_popover.plugin:ExampleThemePlugin +example_theme_v18_snippet_api = ckanext.example_theme_docs.v18_snippet_api.plugin:ExampleThemePlugin +example_theme_v19_01_error = ckanext.example_theme_docs.v19_01_error.plugin:ExampleThemePlugin +example_theme_v19_02_error_handling = ckanext.example_theme_docs.v19_02_error_handling.plugin:ExampleThemePlugin +example_theme_v20_pubsub = ckanext.example_theme_docs.v20_pubsub.plugin:ExampleThemePlugin +example_theme_v21_custom_jquery_plugin = ckanext.example_theme_docs.v21_custom_jquery_plugin.plugin:ExampleThemePlugin +image_view = ckanext.imageview.plugin:ImageView +multilingual_dataset = ckanext.multilingual.plugin:MultilingualDataset +multilingual_group = ckanext.multilingual.plugin:MultilingualGroup +multilingual_resource = ckanext.multilingual.plugin:MultilingualResource +multilingual_tag = ckanext.multilingual.plugin:MultilingualTag +organizations = ckanext.organizations.forms:OrganizationForm +organizations_dataset = ckanext.organizations.forms:OrganizationDatasetForm +publisher_dataset_form = ckanext.publisher_form.forms:PublisherDatasetForm +publisher_form = ckanext.publisher_form.forms:PublisherForm +recline_graph = ckanext.reclineview.plugin:ReclineGraphView +recline_graph_view = ckanext.reclineview.plugin:ReclineGraphView +recline_grid = ckanext.reclineview.plugin:ReclineGridView +recline_grid_view = ckanext.reclineview.plugin:ReclineGridView +recline_map = ckanext.reclineview.plugin:ReclineMapView +recline_map_view = ckanext.reclineview.plugin:ReclineMapView +recline_preview = ckanext.reclineview.plugin:ReclineView +recline_view = ckanext.reclineview.plugin:ReclineView +resource_proxy = ckanext.resourceproxy.plugin:ResourceProxy +stats = ckanext.stats.plugin:StatsPlugin +synchronous_search = ckan.lib.search:SynchronousSearchPlugin +test_tag_vocab_plugin = ckanext.test_tag_vocab_plugin:MockVocabTagsPlugin +text_preview = ckanext.textview.plugin:TextView +text_view = ckanext.textview.plugin:TextView +webpage_view = ckanext.webpageview.plugin:WebPageView + +[ckan.search] +solr = ckan.lib.search.solr_backend:SolrSearchBackend +sql = ckan.lib.search.sql:SqlSearchBackend + +[ckan.system_plugins] +domain_object_mods = ckan.model.modification:DomainObjectModificationExtension + +[ckan.test_plugins] +action_plugin = tests.legacy.ckantestplugins:ActionPlugin +auth_plugin = tests.legacy.ckantestplugins:AuthPlugin +authorizer_plugin = tests.legacy.ckantestplugins:AuthorizerPlugin +example_data_store_search_sql_plugin = ckanext.datastore.tests.test_chained_auth_functions:ExampleDataStoreSearchSQLPlugin +example_datastore_deleted_with_count_plugin = ckanext.datastore.tests.test_chained_action:ExampleDataStoreDeletedWithCountPlugin +example_external_provider_plugin = ckanext.datastore.tests.test_chained_auth_functions:ExampleExternalProviderPlugin +mapper_plugin = tests.legacy.ckantestplugins:MapperPlugin +mapper_plugin2 = tests.legacy.ckantestplugins:MapperPlugin2 +routes_plugin = tests.legacy.ckantestplugins:RoutesPlugin +sample_datastore_plugin = ckanext.datastore.tests.sample_datastore_plugin:SampleDataStorePlugin +session_plugin = tests.legacy.ckantestplugins:SessionPlugin +test_datapusher_plugin = ckanext.datapusher.tests.test_interfaces:FakeDataPusherPlugin +test_datastore_view = ckan.tests.lib.test_datapreview:MockDatastoreBasedResourceView +test_feed_plugin = ckan.tests.controllers.test_feed:MockFeedPlugin +test_flash_plugin = ckan.tests.config.test_sessions:FlashMessagePlugin +test_group_plugin = tests.legacy.ckantestplugins:MockGroupControllerPlugin +test_helpers_plugin = ckan.tests.lib.test_helpers:TestHelpersPlugin +test_js_translations_plugin = ckan.tests.lib.test_i18n:TestJSTranslationsPlugin +test_json_resource_preview = tests.legacy.ckantestplugins:JsonMockResourcePreviewExtension +test_observer_plugin = tests.legacy.ckantestplugins:PluginObserverPlugin +test_package_controller_plugin = tests.legacy.ckantestplugins:MockPackageControllerPlugin +test_resource_preview = tests.legacy.ckantestplugins:MockResourcePreviewExtension +test_routing_plugin = ckan.tests.config.test_middleware:MockRoutingPlugin + +[console_scripts] +ckan-admin = bin.ckan_admin:Command + +[nose.plugins.0.10] +main = ckan.ckan_nose_plugin:CkanNose + +[paste.app_factory] +main = ckan.config.middleware:make_app + +[paste.app_install] +main = ckan.config.install:CKANInstaller + +[paste.paster_command] +check-po-files = ckan.i18n.check_po_files:CheckPoFiles +color = ckan.lib.cli:CreateColorSchemeCommand +config-tool = ckan.lib.cli:ConfigToolCommand +create-test-data = ckan.lib.cli:CreateTestDataCommand +datapusher = ckanext.datapusher.cli:DatapusherCommand +dataset = ckan.lib.cli:DatasetCmd +datastore = ckanext.datastore.commands:datastore_group +db = ckan.lib.cli:ManageDb +front-end-build = ckan.lib.cli:FrontEndBuildCommand +jobs = ckan.lib.cli:JobsCommand +less = ckan.lib.cli:LessCommand +minify = ckan.lib.cli:MinifyCommand +notify = ckan.lib.cli:Notification +plugin-info = ckan.lib.cli:PluginInfo +profile = ckan.lib.cli:Profile +ratings = ckan.lib.cli:Ratings +rdf-export = ckan.lib.cli:RDFExport +search-index = ckan.lib.cli:SearchIndexCommand +sysadmin = ckan.lib.cli:Sysadmin +tracking = ckan.lib.cli:Tracking +trans = ckan.lib.cli:TranslationsCommand +user = ckan.lib.cli:UserCmd +views = ckan.lib.cli:ViewsCommand + +[paste.paster_create_template] +ckanext = ckan.pastertemplates:CkanextTemplate + diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/namespace_packages.txt b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/namespace_packages.txt new file mode 100644 index 00000000..d25d4034 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/namespace_packages.txt @@ -0,0 +1,2 @@ +ckanext +ckanext.stats diff --git a/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/top_level.txt b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/top_level.txt new file mode 100644 index 00000000..43bab525 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan-2.8.3.dist-info/top_level.txt @@ -0,0 +1,2 @@ +ckan +ckanext diff --git a/venv/lib/python2.7/site-packages/ckan/__init__.py b/venv/lib/python2.7/site-packages/ckan/__init__.py new file mode 100644 index 00000000..64d0bccd --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/__init__.py @@ -0,0 +1,22 @@ +# encoding: utf-8 + +__version__ = '2.8.3' + +__description__ = 'CKAN Software' +__long_description__ = \ +''' +CKAN is the world's leading Open Source data portal platform. + +It powers dozens of Open Data portals around the world, including +data.gov, open.canada.ca and europeandataportal.eu but also regional, +research and community organizations. + +It makes easy to publish, share and find data online and is fully +customizable via extensions and plugins. + +Check https://ckan.org to know more. +''' +__license__ = 'AGPL' + +# The packaging system relies on this import, please do not remove it +import sys; sys.path.insert(0, __path__[0]) diff --git a/venv/lib/python2.7/site-packages/ckan/authz.py b/venv/lib/python2.7/site-packages/ckan/authz.py new file mode 100644 index 00000000..73aa0e6f --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/authz.py @@ -0,0 +1,473 @@ +# encoding: utf-8 + +import functools +import sys +import re + +from collections import defaultdict +from logging import getLogger + +from ckan.common import config +from paste.deploy.converters import asbool + +import ckan.plugins as p +import ckan.model as model +from ckan.common import OrderedDict, _, c + +import ckan.lib.maintain as maintain + +log = getLogger(__name__) + + +class AuthFunctions: + ''' This is a private cache used by get_auth_function() and should never be + accessed directly we will create an instance of it and then remove it.''' + _functions = {} + + def clear(self): + ''' clear any stored auth functions. ''' + self._functions.clear() + + def keys(self): + ''' Return a list of known auth functions.''' + if not self._functions: + self._build() + return self._functions.keys() + + def get(self, function): + ''' Return the requested auth function. ''' + if not self._functions: + self._build() + return self._functions.get(function) + + @staticmethod + def _is_chained_auth_function(func): + ''' + Helper function to check if a function is a chained auth function, i.e. + it has been decorated with the chain auth function decorator. + ''' + return getattr(func, 'chained_auth_function', False) + + def _build(self): + ''' Gather the auth functions. + + First get the default ones in the ckan/logic/auth directory Rather than + writing them out in full will use __import__ to load anything from + ckan.auth that looks like it might be an authorisation function''' + + module_root = 'ckan.logic.auth' + + for auth_module_name in ['get', 'create', 'update', 'delete', 'patch']: + module_path = '%s.%s' % (module_root, auth_module_name,) + try: + module = __import__(module_path) + except ImportError: + log.debug('No auth module for action "%s"' % auth_module_name) + continue + + for part in module_path.split('.')[1:]: + module = getattr(module, part) + + for key, v in module.__dict__.items(): + if not key.startswith('_'): + # Whitelist all auth functions defined in + # logic/auth/get.py as not requiring an authorized user, + # as well as ensuring that the rest do. In both cases, do + # nothing if a decorator has already been used to define + # the behaviour + if not hasattr(v, 'auth_allow_anonymous_access'): + if auth_module_name == 'get': + v.auth_allow_anonymous_access = True + else: + v.auth_allow_anonymous_access = False + self._functions[key] = v + + # Then overwrite them with any specific ones in the plugins: + resolved_auth_function_plugins = {} + fetched_auth_functions = {} + chained_auth_functions = defaultdict(list) + for plugin in p.PluginImplementations(p.IAuthFunctions): + for name, auth_function in plugin.get_auth_functions().items(): + if self._is_chained_auth_function(auth_function): + chained_auth_functions[name].append(auth_function) + elif name in resolved_auth_function_plugins: + raise Exception( + 'The auth function %r is already implemented in %r' % ( + name, + resolved_auth_function_plugins[name] + ) + ) + else: + resolved_auth_function_plugins[name] = plugin.name + fetched_auth_functions[name] = auth_function + + for name, func_list in chained_auth_functions.iteritems(): + if (name not in fetched_auth_functions and + name not in self._functions): + raise Exception('The auth %r is not found for chained auth' % ( + name)) + # create the chain of functions in the correct order + for func in reversed(func_list): + if name in fetched_auth_functions: + prev_func = fetched_auth_functions[name] + else: + # fallback to chaining off the builtin auth function + prev_func = self._functions[name] + fetched_auth_functions[name] = ( + functools.partial(func, prev_func)) + + # Use the updated ones in preference to the originals. + self._functions.update(fetched_auth_functions) + +_AuthFunctions = AuthFunctions() +#remove the class +del AuthFunctions + + +def clear_auth_functions_cache(): + _AuthFunctions.clear() + + +def auth_functions_list(): + '''Returns a list of the names of the auth functions available. Currently + this is to allow the Auth Audit to know if an auth function is available + for a given action.''' + return _AuthFunctions.keys() + + +def is_sysadmin(username): + ''' Returns True is username is a sysadmin ''' + user = _get_user(username) + return user and user.sysadmin + + +def _get_user(username): + ''' Try to get the user from c, if possible, and fallback to using the DB ''' + if not username: + return None + # See if we can get the user without touching the DB + try: + if c.userobj and c.userobj.name == username: + return c.userobj + except AttributeError: + # c.userobj not set + pass + except TypeError: + # c is not available + pass + # Get user from the DB + return model.User.get(username) + + +def get_group_or_org_admin_ids(group_id): + if not group_id: + return [] + group_id = model.Group.get(group_id).id + q = model.Session.query(model.Member) \ + .filter(model.Member.group_id == group_id) \ + .filter(model.Member.table_name == 'user') \ + .filter(model.Member.state == 'active') \ + .filter(model.Member.capacity == 'admin') + return [a.table_id for a in q.all()] + + +def is_authorized_boolean(action, context, data_dict=None): + ''' runs the auth function but just returns True if allowed else False + ''' + outcome = is_authorized(action, context, data_dict=data_dict) + return outcome.get('success', False) + + +def is_authorized(action, context, data_dict=None): + if context.get('ignore_auth'): + return {'success': True} + + auth_function = _AuthFunctions.get(action) + if auth_function: + username = context.get('user') + user = _get_user(username) + + if user: + # deleted users are always unauthorized + if user.is_deleted(): + return {'success': False} + # sysadmins can do anything unless the auth_sysadmins_check + # decorator was used in which case they are treated like all other + # users. + elif user.sysadmin: + if not getattr(auth_function, 'auth_sysadmins_check', False): + return {'success': True} + + # If the auth function is flagged as not allowing anonymous access, + # and an existing user object is not provided in the context, deny + # access straight away + if not getattr(auth_function, 'auth_allow_anonymous_access', False) \ + and not context.get('auth_user_obj'): + return { + 'success': False, + 'msg': 'Action {0} requires an authenticated user'.format( + action) + } + + return auth_function(context, data_dict) + else: + raise ValueError(_('Authorization function not found: %s' % action)) + + +# these are the permissions that roles have +ROLE_PERMISSIONS = OrderedDict([ + ('admin', ['admin']), + ('editor', ['read', 'delete_dataset', 'create_dataset', 'update_dataset', 'manage_group']), + ('member', ['read', 'manage_group']), +]) + + +def _trans_role_admin(): + return _('Admin') + + +def _trans_role_editor(): + return _('Editor') + + +def _trans_role_member(): + return _('Member') + + +def trans_role(role): + module = sys.modules[__name__] + return getattr(module, '_trans_role_%s' % role)() + + +def roles_list(): + ''' returns list of roles for forms ''' + roles = [] + for role in ROLE_PERMISSIONS: + roles.append(dict(text=trans_role(role), value=role)) + return roles + + +def roles_trans(): + ''' return dict of roles with translation ''' + roles = {} + for role in ROLE_PERMISSIONS: + roles[role] = trans_role(role) + return roles + + +def get_roles_with_permission(permission): + ''' returns the roles with the permission requested ''' + roles = [] + for role in ROLE_PERMISSIONS: + permissions = ROLE_PERMISSIONS[role] + if permission in permissions or 'admin' in permissions: + roles.append(role) + return roles + + +def has_user_permission_for_group_or_org(group_id, user_name, permission): + ''' Check if the user has the given permissions for the group, allowing for + sysadmin rights and permission cascading down a group hierarchy. + + ''' + if not group_id: + return False + group = model.Group.get(group_id) + if not group: + return False + group_id = group.id + + # Sys admins can do anything + if is_sysadmin(user_name): + return True + + user_id = get_user_id_for_username(user_name, allow_none=True) + if not user_id: + return False + if _has_user_permission_for_groups(user_id, permission, [group_id]): + return True + # Handle when permissions cascade. Check the user's roles on groups higher + # in the group hierarchy for permission. + for capacity in check_config_permission('roles_that_cascade_to_sub_groups'): + parent_groups = group.get_parent_group_hierarchy(type=group.type) + group_ids = [group_.id for group_ in parent_groups] + if _has_user_permission_for_groups(user_id, permission, group_ids, + capacity=capacity): + return True + return False + + +def _has_user_permission_for_groups(user_id, permission, group_ids, + capacity=None): + ''' Check if the user has the given permissions for the particular + group (ignoring permissions cascading in a group hierarchy). + Can also be filtered by a particular capacity. + ''' + if not group_ids: + return False + # get any roles the user has for the group + q = model.Session.query(model.Member) \ + .filter(model.Member.group_id.in_(group_ids)) \ + .filter(model.Member.table_name == 'user') \ + .filter(model.Member.state == 'active') \ + .filter(model.Member.table_id == user_id) + if capacity: + q = q.filter(model.Member.capacity == capacity) + # see if any role has the required permission + # admin permission allows anything for the group + for row in q.all(): + perms = ROLE_PERMISSIONS.get(row.capacity, []) + if 'admin' in perms or permission in perms: + return True + return False + + +def users_role_for_group_or_org(group_id, user_name): + ''' Returns the user's role for the group. (Ignores privileges that cascade + in a group hierarchy.) + + ''' + if not group_id: + return None + group_id = model.Group.get(group_id).id + + user_id = get_user_id_for_username(user_name, allow_none=True) + if not user_id: + return None + # get any roles the user has for the group + q = model.Session.query(model.Member) \ + .filter(model.Member.group_id == group_id) \ + .filter(model.Member.table_name == 'user') \ + .filter(model.Member.state == 'active') \ + .filter(model.Member.table_id == user_id) + # return the first role we find + for row in q.all(): + return row.capacity + return None + + +def has_user_permission_for_some_org(user_name, permission): + ''' Check if the user has the given permission for any organization. ''' + user_id = get_user_id_for_username(user_name, allow_none=True) + if not user_id: + return False + roles = get_roles_with_permission(permission) + + if not roles: + return False + # get any groups the user has with the needed role + q = model.Session.query(model.Member) \ + .filter(model.Member.table_name == 'user') \ + .filter(model.Member.state == 'active') \ + .filter(model.Member.capacity.in_(roles)) \ + .filter(model.Member.table_id == user_id) + group_ids = [] + for row in q.all(): + group_ids.append(row.group_id) + # if not in any groups has no permissions + if not group_ids: + return False + + # see if any of the groups are orgs + q = model.Session.query(model.Group) \ + .filter(model.Group.is_organization == True) \ + .filter(model.Group.state == 'active') \ + .filter(model.Group.id.in_(group_ids)) + + return bool(q.count()) + + +def get_user_id_for_username(user_name, allow_none=False): + ''' Helper function to get user id ''' + # first check if we have the user object already and get from there + try: + if c.userobj and c.userobj.name == user_name: + return c.userobj.id + except TypeError: + # c is not available + pass + user = model.User.get(user_name) + if user: + return user.id + if allow_none: + return None + raise Exception('Not logged in user') + + +CONFIG_PERMISSIONS_DEFAULTS = { + # permission and default + # these are prefixed with ckan.auth. in config to override + 'anon_create_dataset': False, + 'create_dataset_if_not_in_organization': True, + 'create_unowned_dataset': True, + 'user_create_groups': True, + 'user_create_organizations': True, + 'user_delete_groups': True, + 'user_delete_organizations': True, + 'create_user_via_api': False, + 'create_user_via_web': True, + 'roles_that_cascade_to_sub_groups': 'admin', +} + + +def check_config_permission(permission): + '''Returns the configuration value for the provided permission + + Permission is a string indentifying the auth permission (eg + `anon_create_dataset`), optionally prefixed with `ckan.auth.`. + + The possible values for `permission` are the keys of + CONFIG_PERMISSIONS_DEFAULTS. These can be overriden in the config file + by prefixing them with `ckan.auth.`. + + Returns the permission value, generally True or False, except on + `roles_that_cascade_to_sub_groups` which is a list of strings. + + ''' + + key = permission.replace('ckan.auth.', '') + + if key not in CONFIG_PERMISSIONS_DEFAULTS: + return False + + default_value = CONFIG_PERMISSIONS_DEFAULTS.get(key) + + config_key = 'ckan.auth.' + key + + value = config.get(config_key, default_value) + + if key == 'roles_that_cascade_to_sub_groups': + # This permission is set as a list of strings (space separated) + value = value.split() if value else [] + else: + value = asbool(value) + + return value + + +@maintain.deprecated('Use auth_is_loggedin_user instead') +def auth_is_registered_user(): + ''' + This function is deprecated, please use the auth_is_loggedin_user instead + ''' + return auth_is_loggedin_user() + +def auth_is_loggedin_user(): + ''' Do we have a logged in user ''' + try: + context_user = c.user + except TypeError: + context_user = None + return bool(context_user) + +def auth_is_anon_user(context): + ''' Is this an anonymous user? + eg Not logged in if a web request and not user defined in context + if logic functions called directly + + See ckan/lib/base.py:232 for pylons context object logic + ''' + context_user = context.get('user') + is_anon_user = not bool(context_user) + + return is_anon_user diff --git a/venv/lib/python2.7/site-packages/ckan/ckan_nose_plugin.py b/venv/lib/python2.7/site-packages/ckan/ckan_nose_plugin.py new file mode 100644 index 00000000..d45120fb --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/ckan_nose_plugin.py @@ -0,0 +1,133 @@ +# encoding: utf-8 + +from nose.plugins import Plugin +from inspect import isclass +import hashlib +import os +import sys +import re +import pkg_resources +from paste.deploy import loadapp +from ckan.common import config +import unittest +import time + +class CkanNose(Plugin): + settings = None + + def startContext(self, ctx): + # import needs to be here or setup happens too early + import ckan.model as model + + if 'legacy' not in repr(ctx): + # We don't want to do the stuff below for new-style tests. + if not CkanNose.settings.reset_database: + model.repo.tables_created_and_initialised = True + return + + if isclass(ctx): + if hasattr(ctx, "no_db") and ctx.no_db: + return + if (not CkanNose.settings.reset_database + and not CkanNose.settings.ckan_migration): + model.Session.close_all() + model.repo.tables_created_and_initialised = True + model.repo.rebuild_db() + self.is_first_test = False + elif self.is_first_test or CkanNose.settings.ckan_migration: + model.Session.close_all() + model.repo.clean_db() + self.is_first_test = False + if CkanNose.settings.ckan_migration: + model.Session.close_all() + model.repo.upgrade_db() + + ## This is to make sure the configuration is run again. + ## Plugins use configure to make their own tables and they + ## may need to be recreated to make tests work. + from ckan.plugins import PluginImplementations + from ckan.plugins.interfaces import IConfigurable + for plugin in PluginImplementations(IConfigurable): + plugin.configure(config) + + # init_db is run at the start of every class because + # when you use an in-memory sqlite db, it appears that + # the db is destroyed after every test when you Session.Remove(). + model.repo.init_db() + + def options(self, parser, env): + parser.add_option( + '--ckan', + action='store_true', + dest='is_ckan', + help='Always set this when testing CKAN.') + parser.add_option( + '--ckan-migration', + action='store_true', + dest='ckan_migration', + help='set this when wanting to test migrations') + parser.add_option( + '--docstrings', + action='store_true', + dest='docstrings', + help='set this to display test docstrings instead of module names') + parser.add_option( + '--segments', + dest='segments', + help='A string containing a hex digits that represent which of' + 'the 16 test segments to run. i.e 15af will run segments 1,5,a,f') + parser.add_option( + '--reset-db', + action='store_true', + dest='reset_database', + help='drop database and reinitialize before tests are run') + + def wantClass(self, cls): + if self.segments and str(hashlib.md5( + cls.__name__).hexdigest())[0] not in self.segments: + return False + + def wantFunction(self, fn): + if self.segments and hashlib.md5( + fn.__name__).hexdigest()[0] not in self.segments: + return False + + def finalize(self, report): + if self.segments: + print('Segments: %s' % self.segments) + + def configure(self, settings, config): + CkanNose.settings = settings + if settings.is_ckan: + self.enabled = True + self.is_first_test = True + self.segments = settings.segments + + def describeTest(self, test): + if not CkanNose.settings.docstrings: + # display module name instead of docstring + return False + + def startTest(self, test): + """ + startTest: start timing. + """ +## self._started = time.time() + + def stopTest(self, test): + """ + stopTest: stop timing, canonicalize the test name, and save + the run time. + """ +## runtime = time.time() - self._started +## +## # CTB: HACK! +## f = open('times.txt', 'a') +## +## testname = str(test) +## #if ' ' in testname: +## # testname = testname.split()[1] +## +## f.write('%s,%s\n' % (testname, str(runtime))) +## +## f.close() diff --git a/venv/lib/python2.7/site-packages/ckan/common.py b/venv/lib/python2.7/site-packages/ckan/common.py new file mode 100644 index 00000000..7341fa25 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/common.py @@ -0,0 +1,208 @@ +# encoding: utf-8 + +# This file contains commonly used parts of external libraries. The idea is +# to help in removing helpers from being used as a dependency by many files +# but at the same time making it easy to change for example the json lib +# used. +# +# NOTE: This file is specificaly created for +# from ckan.common import x, y, z to be allowed + +from collections import MutableMapping + +import flask +import pylons + +from werkzeug.local import Local, LocalProxy + +from flask_babel import (gettext as flask_ugettext, + ngettext as flask_ungettext) +from pylons.i18n import (ugettext as pylons_ugettext, + ungettext as pylons_ungettext) + +from pylons import response + +import simplejson as json + +try: + from collections import OrderedDict # from python 2.7 +except ImportError: + from sqlalchemy.util import OrderedDict + + +def is_flask_request(): + u''' + A centralized way to determine whether we are in the context of a + request being served by Flask or Pylons + ''' + try: + pylons.request.environ + pylons_request_available = True + except TypeError: + pylons_request_available = False + + return (flask.request and + (flask.request.environ.get(u'ckan.app') == u'flask_app' or + not pylons_request_available)) + + +def streaming_response( + data, mimetype=u'application/octet-stream', with_context=False): + iter_data = iter(data) + if is_flask_request(): + # Removal of context variables for pylon's app is prevented + # inside `pylons_app.py`. It would be better to decide on the fly + # whether we need to preserve context, but it won't affect performance + # in any visible way and we are going to get rid of pylons anyway. + # Flask allows to do this in easy way. + if with_context: + iter_data = flask.stream_with_context(iter_data) + resp = flask.Response(iter_data, mimetype=mimetype) + else: + response.app_iter = iter_data + resp = response.headers['Content-type'] = mimetype + return resp + + +def ugettext(*args, **kwargs): + if is_flask_request(): + return flask_ugettext(*args, **kwargs) + else: + return pylons_ugettext(*args, **kwargs) + + +_ = ugettext + + +def ungettext(*args, **kwargs): + if is_flask_request(): + return flask_ungettext(*args, **kwargs) + else: + return pylons_ungettext(*args, **kwargs) + + +class CKANConfig(MutableMapping): + u'''Main CKAN configuration object + + This is a dict-like object that also proxies any changes to the + Flask and Pylons configuration objects. + + The actual `config` instance in this module is initialized in the + `load_environment` method with the values of the ini file or env vars. + + ''' + + def __init__(self, *args, **kwargs): + self.store = dict() + self.update(dict(*args, **kwargs)) + + def __getitem__(self, key): + return self.store[key] + + def __iter__(self): + return iter(self.store) + + def __len__(self): + return len(self.store) + + def __repr__(self): + return self.store.__repr__() + + def copy(self): + return self.store.copy() + + def clear(self): + self.store.clear() + + try: + flask.current_app.config.clear() + except RuntimeError: + pass + try: + pylons.config.clear() + # Pylons set this default itself + pylons.config[u'lang'] = None + except TypeError: + pass + + def __setitem__(self, key, value): + self.store[key] = value + try: + flask.current_app.config[key] = value + except RuntimeError: + pass + try: + pylons.config[key] = value + except TypeError: + pass + + def __delitem__(self, key): + del self.store[key] + try: + del flask.current_app.config[key] + except RuntimeError: + pass + try: + del pylons.config[key] + except TypeError: + pass + + +def _get_request(): + if is_flask_request(): + return flask.request + else: + return pylons.request + + +class CKANRequest(LocalProxy): + u'''Common request object + + This is just a wrapper around LocalProxy so we can handle some special + cases for backwards compatibility. + + LocalProxy will forward to Flask or Pylons own request objects depending + on the output of `_get_request` (which essentially calls + `is_flask_request`) and at the same time provide all objects methods to be + able to interact with them transparently. + ''' + + @property + def params(self): + u''' Special case as Pylons' request.params is used all over the place. + All new code meant to be run just in Flask (eg views) should always + use request.args + ''' + try: + return super(CKANRequest, self).params + except AttributeError: + return self.args + + +def _get_c(): + if is_flask_request(): + return flask.g + else: + return pylons.c + + +def _get_session(): + if is_flask_request(): + return flask.session + else: + return pylons.session + + +local = Local() + +# This a proxy to the bounded config object +local(u'config') + +# Thread-local safe objects +config = local.config = CKANConfig() + +# Proxies to already thread-local safe objects +request = CKANRequest(_get_request) +# Provide a `c` alias for `g` for backwards compatibility +g = c = LocalProxy(_get_c) +session = LocalProxy(_get_session) diff --git a/venv/lib/python2.7/site-packages/ckan/config/__init__.py b/venv/lib/python2.7/site-packages/ckan/config/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python2.7/site-packages/ckan/config/deployment.ini_tmpl b/venv/lib/python2.7/site-packages/ckan/config/deployment.ini_tmpl new file mode 100644 index 00000000..aaa3bf26 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/deployment.ini_tmpl @@ -0,0 +1,228 @@ +# +# CKAN - Pylons configuration +# +# These are some of the configuration options available for your CKAN +# instance. Check the documentation in 'doc/configuration.rst' or at the +# following URL for a description of what they do and the full list of +# available options: +# +# http://docs.ckan.org/en/latest/maintaining/configuration.html +# +# The %(here)s variable will be replaced with the parent directory of this file +# + +[DEFAULT] + +# WARNING: *THIS SETTING MUST BE SET TO FALSE ON A PRODUCTION ENVIRONMENT* +debug = false + +[server:main] +use = egg:Paste#http +host = 0.0.0.0 +port = 5000 + +[app:main] +use = egg:ckan +full_stack = true +cache_dir = /tmp/%(ckan.site_id)s/ +beaker.session.key = ckan + +# This is the secret token that the beaker library uses to hash the cookie sent +# to the client. `paster make-config` generates a unique value for this each +# time it generates a config file. +beaker.session.secret = ${app_instance_secret} + +# `paster make-config` generates a unique value for this each time it generates +# a config file. +app_instance_uuid = ${app_instance_uuid} + +# repoze.who config +who.config_file = %(here)s/who.ini +who.log_level = warning +who.log_file = %(cache_dir)s/who_log.ini +# Session timeout (user logged out after period of inactivity, in seconds). +# Inactive by default, so the session doesn't expire. +# who.timeout = 86400 + +## Database Settings +sqlalchemy.url = postgresql://ckan_default:pass@localhost/ckan_default + +#ckan.datastore.write_url = postgresql://ckan_default:pass@localhost/datastore_default +#ckan.datastore.read_url = postgresql://datastore_default:pass@localhost/datastore_default + +# PostgreSQL' full-text search parameters +ckan.datastore.default_fts_lang = english +ckan.datastore.default_fts_index_method = gist + + +## Site Settings + +ckan.site_url = +#ckan.use_pylons_response_cleanup_middleware = true + +## Authorization Settings + +ckan.auth.anon_create_dataset = false +ckan.auth.create_unowned_dataset = false +ckan.auth.create_dataset_if_not_in_organization = false +ckan.auth.user_create_groups = false +ckan.auth.user_create_organizations = false +ckan.auth.user_delete_groups = true +ckan.auth.user_delete_organizations = true +ckan.auth.create_user_via_api = false +ckan.auth.create_user_via_web = true +ckan.auth.roles_that_cascade_to_sub_groups = admin + + +## Search Settings + +ckan.site_id = default +#solr_url = http://127.0.0.1:8983/solr + + +## Redis Settings + +# URL to your Redis instance, including the database to be used. +#ckan.redis.url = redis://localhost:6379/0 + + +## CORS Settings + +# If cors.origin_allow_all is true, all origins are allowed. +# If false, the cors.origin_whitelist is used. +# ckan.cors.origin_allow_all = true +# cors.origin_whitelist is a space separated list of allowed domains. +# ckan.cors.origin_whitelist = http://example1.com http://example2.com + + +## Plugins Settings + +# Note: Add ``datastore`` to enable the CKAN DataStore +# Add ``datapusher`` to enable DataPusher +# Add ``resource_proxy`` to enable resorce proxying and get around the +# same origin policy +ckan.plugins = stats text_view image_view recline_view + +# Define which views should be created by default +# (plugins must be loaded in ckan.plugins) +ckan.views.default_views = image_view text_view recline_view + +# Customize which text formats the text_view plugin will show +#ckan.preview.json_formats = json +#ckan.preview.xml_formats = xml rdf rdf+xml owl+xml atom rss +#ckan.preview.text_formats = text plain text/plain + +# Customize which image formats the image_view plugin will show +#ckan.preview.image_formats = png jpeg jpg gif + +## Front-End Settings + +# Uncomment following configuration to enable using of Bootstrap 2 +#ckan.base_public_folder = public-bs2 +#ckan.base_templates_folder = templates-bs2 + +ckan.site_title = CKAN +ckan.site_logo = /base/images/ckan-logo.png +ckan.site_description = +ckan.favicon = /base/images/ckan.ico +ckan.gravatar_default = identicon +ckan.preview.direct = png jpg gif +ckan.preview.loadable = html htm rdf+xml owl+xml xml n3 n-triples turtle plain atom csv tsv rss txt json +ckan.display_timezone = server + +# package_hide_extras = for_search_index_only +#package_edit_return_url = http://another.frontend/dataset/ +#package_new_return_url = http://another.frontend/dataset/ +#ckan.recaptcha.publickey = +#ckan.recaptcha.privatekey = +#licenses_group_url = http://licenses.opendefinition.org/licenses/groups/ckan.json +# ckan.template_footer_end = + + +## Internationalisation Settings +ckan.locale_default = en +ckan.locale_order = en pt_BR ja it cs_CZ ca es fr el sv sr sr@latin no sk fi ru de pl nl bg ko_KR hu sa sl lv +ckan.locales_offered = +ckan.locales_filtered_out = en_GB + +## Feeds Settings + +ckan.feeds.authority_name = +ckan.feeds.date = +ckan.feeds.author_name = +ckan.feeds.author_link = + +## Storage Settings + +#ckan.storage_path = /var/lib/ckan +#ckan.max_resource_size = 10 +#ckan.max_image_size = 2 + +## Datapusher settings + +# Make sure you have set up the DataStore + +#ckan.datapusher.formats = csv xls xlsx tsv application/csv application/vnd.ms-excel application/vnd.openxmlformats-officedocument.spreadsheetml.sheet +#ckan.datapusher.url = http://127.0.0.1:8800/ +#ckan.datapusher.assume_task_stale_after = 3600 + +# Resource Proxy settings +# Preview size limit, default: 1MB +#ckan.resource_proxy.max_file_size = 1048576 +# Size of chunks to read/write. +#ckan.resource_proxy.chunk_size = 4096 + +## Activity Streams Settings + +#ckan.activity_streams_enabled = true +#ckan.activity_list_limit = 31 +#ckan.activity_streams_email_notifications = true +#ckan.email_notifications_since = 2 days +ckan.hide_activity_from_users = %(ckan.site_id)s + + +## Email settings + +#email_to = errors@example.com +#error_email_from = ckan-errors@example.com +#smtp.server = localhost +#smtp.starttls = False +#smtp.user = username@example.com +#smtp.password = your_password +#smtp.mail_from = + + +## Logging configuration +[loggers] +keys = root, ckan, ckanext + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARNING +handlers = console + +[logger_ckan] +level = INFO +handlers = console +qualname = ckan +propagate = 0 + +[logger_ckanext] +level = DEBUG +handlers = console +qualname = ckanext +propagate = 0 + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s diff --git a/venv/lib/python2.7/site-packages/ckan/config/environment.py b/venv/lib/python2.7/site-packages/ckan/config/environment.py new file mode 100644 index 00000000..b13c290e --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/environment.py @@ -0,0 +1,318 @@ +# encoding: utf-8 + +'''CKAN environment configuration''' +import json +import os +import logging +import warnings +from urlparse import urlparse +import pytz + +import sqlalchemy +from pylons import config as pylons_config +import formencode + +import ckan.config.routing as routing +import ckan.model as model +import ckan.plugins as p +import ckan.lib.helpers as helpers +import ckan.lib.app_globals as app_globals +from ckan.lib.redis import is_redis_available +import ckan.lib.render as render +import ckan.lib.search as search +import ckan.logic as logic +import ckan.authz as authz +import ckan.lib.jinja_extensions as jinja_extensions +from ckan.lib.i18n import build_js_translations + +from ckan.common import _, ungettext, config +from ckan.exceptions import CkanConfigurationException + +log = logging.getLogger(__name__) + + +# Suppress benign warning 'Unbuilt egg for setuptools' +warnings.simplefilter('ignore', UserWarning) + + +def load_environment(global_conf, app_conf): + """ + Configure the Pylons environment via the ``pylons.config`` object. This + code should only need to be run once. + """ + # this must be run at a time when the env is semi-setup, thus inlined here. + # Required by the deliverance plugin and iATI + from pylons.wsgiapp import PylonsApp + import pkg_resources + find_controller_generic = getattr( + PylonsApp.find_controller, + '_old_find_controller', + PylonsApp.find_controller) + + # This is from pylons 1.0 source, will monkey-patch into 0.9.7 + def find_controller(self, controller): + if controller in self.controller_classes: + return self.controller_classes[controller] + # Check to see if its a dotted name + if '.' in controller or ':' in controller: + ep = pkg_resources.EntryPoint.parse('x={0}'.format(controller)) + + if hasattr(ep, 'resolve'): + # setuptools >= 10.2 + mycontroller = ep.resolve() + else: + # setuptools >= 11.3 + mycontroller = ep.load(False) + + self.controller_classes[controller] = mycontroller + return mycontroller + return find_controller_generic(self, controller) + find_controller._old_find_controller = find_controller_generic + PylonsApp.find_controller = find_controller + + os.environ['CKAN_CONFIG'] = global_conf['__file__'] + + # Pylons paths + root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + valid_base_public_folder_names = ['public', 'public-bs2'] + static_files = app_conf.get('ckan.base_public_folder', 'public') + app_conf['ckan.base_public_folder'] = static_files + + if static_files not in valid_base_public_folder_names: + raise CkanConfigurationException( + 'You provided an invalid value for ckan.base_public_folder. ' + 'Possible values are: "public" and "public-bs2".' + ) + + log.info('Loading static files from %s' % static_files) + paths = dict(root=root, + controllers=os.path.join(root, 'controllers'), + static_files=os.path.join(root, static_files), + templates=[]) + + # Initialize main CKAN config object + config.update(global_conf) + config.update(app_conf) + + # Initialize Pylons own config object + pylons_config.init_app(global_conf, app_conf, package='ckan', paths=paths) + + # Update the main CKAN config object with the Pylons specific stuff, as it + # quite hard to keep them separated. This should be removed once Pylons + # support is dropped + config.update(pylons_config) + + # Setup the SQLAlchemy database engine + # Suppress a couple of sqlalchemy warnings + msgs = ['^Unicode type received non-unicode bind param value', + "^Did not recognize type 'BIGINT' of column 'size'", + "^Did not recognize type 'tsvector' of column 'search_vector'" + ] + for msg in msgs: + warnings.filterwarnings('ignore', msg, sqlalchemy.exc.SAWarning) + + # load all CKAN plugins + p.load_all() + + # Check Redis availability + if not is_redis_available(): + log.critical('Could not connect to Redis.') + + app_globals.reset() + + # issue #3260: remove idle transaction + # Session that was used for getting all config params nor committed, + # neither removed and we have idle connection as result + model.Session.commit() + + # Build JavaScript translations. Must be done after plugins have + # been loaded. + build_js_translations() + + +# A mapping of config settings that can be overridden by env vars. +# Note: Do not remove the following lines, they are used in the docs +# Start CONFIG_FROM_ENV_VARS +CONFIG_FROM_ENV_VARS = { + 'sqlalchemy.url': 'CKAN_SQLALCHEMY_URL', + 'ckan.datastore.write_url': 'CKAN_DATASTORE_WRITE_URL', + 'ckan.datastore.read_url': 'CKAN_DATASTORE_READ_URL', + 'ckan.redis.url': 'CKAN_REDIS_URL', + 'solr_url': 'CKAN_SOLR_URL', + 'solr_user': 'CKAN_SOLR_USER', + 'solr_password': 'CKAN_SOLR_PASSWORD', + 'ckan.site_id': 'CKAN_SITE_ID', + 'ckan.site_url': 'CKAN_SITE_URL', + 'ckan.storage_path': 'CKAN_STORAGE_PATH', + 'ckan.datapusher.url': 'CKAN_DATAPUSHER_URL', + 'smtp.server': 'CKAN_SMTP_SERVER', + 'smtp.starttls': 'CKAN_SMTP_STARTTLS', + 'smtp.user': 'CKAN_SMTP_USER', + 'smtp.password': 'CKAN_SMTP_PASSWORD', + 'smtp.mail_from': 'CKAN_SMTP_MAIL_FROM', + 'ckan.max_resource_size': 'CKAN_MAX_UPLOAD_SIZE_MB' +} +# End CONFIG_FROM_ENV_VARS + + +def update_config(): + ''' This code needs to be run when the config is changed to take those + changes into account. It is called whenever a plugin is loaded as the + plugin might have changed the config values (for instance it might + change ckan.site_url) ''' + + for plugin in p.PluginImplementations(p.IConfigurer): + # must do update in place as this does not work: + # config = plugin.update_config(config) + plugin.update_config(config) + + # Set whitelisted env vars on config object + # This is set up before globals are initialized + + ckan_db = os.environ.get('CKAN_DB', None) + if ckan_db: + msg = 'Setting CKAN_DB as an env var is deprecated and will be' \ + ' removed in a future release. Use CKAN_SQLALCHEMY_URL instead.' + log.warn(msg) + config['sqlalchemy.url'] = ckan_db + + for option in CONFIG_FROM_ENV_VARS: + from_env = os.environ.get(CONFIG_FROM_ENV_VARS[option], None) + if from_env: + config[option] = from_env + + root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + site_url = config.get('ckan.site_url', '') + if not site_url: + raise RuntimeError( + 'ckan.site_url is not configured and it must have a value.' + ' Please amend your .ini file.') + if not site_url.lower().startswith('http'): + raise RuntimeError( + 'ckan.site_url should be a full URL, including the schema ' + '(http or https)') + + display_timezone = config.get('ckan.display_timezone', '') + if (display_timezone and + display_timezone != 'server' and + display_timezone not in pytz.all_timezones): + raise CkanConfigurationException( + "ckan.display_timezone is not 'server' or a valid timezone" + ) + + # Remove backslash from site_url if present + config['ckan.site_url'] = config['ckan.site_url'].rstrip('/') + + ckan_host = config['ckan.host'] = urlparse(site_url).netloc + if config.get('ckan.site_id') is None: + if ':' in ckan_host: + ckan_host, port = ckan_host.split(':') + assert ckan_host, 'You need to configure ckan.site_url or ' \ + 'ckan.site_id for SOLR search-index rebuild to work.' + config['ckan.site_id'] = ckan_host + + # ensure that a favicon has been set + favicon = config.get('ckan.favicon', '/base/images/ckan.ico') + config['ckan.favicon'] = favicon + + # Init SOLR settings and check if the schema is compatible + # from ckan.lib.search import SolrSettings, check_solr_schema_version + + # lib.search is imported here as we need the config enabled and parsed + search.SolrSettings.init(config.get('solr_url'), + config.get('solr_user'), + config.get('solr_password')) + search.check_solr_schema_version() + + routes_map = routing.make_map() + config['routes.map'] = routes_map + # The RoutesMiddleware needs its mapper updating if it exists + if 'routes.middleware' in config: + config['routes.middleware'].mapper = routes_map + # routes.named_routes is a CKAN thing + config['routes.named_routes'] = routing.named_routes + config['pylons.app_globals'] = app_globals.app_globals + + # initialise the globals + app_globals.app_globals._init() + + helpers.load_plugin_helpers() + config['pylons.h'] = helpers.helper_functions + + # Templates and CSS loading from configuration + valid_base_templates_folder_names = ['templates', 'templates-bs2'] + templates = config.get('ckan.base_templates_folder', 'templates') + config['ckan.base_templates_folder'] = templates + + if templates not in valid_base_templates_folder_names: + raise CkanConfigurationException( + 'You provided an invalid value for ckan.base_templates_folder. ' + 'Possible values are: "templates" and "templates-bs2".' + ) + + jinja2_templates_path = os.path.join(root, templates) + log.info('Loading templates from %s' % jinja2_templates_path) + template_paths = [jinja2_templates_path] + + extra_template_paths = config.get('extra_template_paths', '') + if extra_template_paths: + # must be first for them to override defaults + template_paths = extra_template_paths.split(',') + template_paths + config['computed_template_paths'] = template_paths + + # Set the default language for validation messages from formencode + # to what is set as the default locale in the config + default_lang = config.get('ckan.locale_default', 'en') + formencode.api.set_stdtranslation(domain="FormEncode", + languages=[default_lang]) + + # Markdown ignores the logger config, so to get rid of excessive + # markdown debug messages in the log, set it to the level of the + # root logger. + logging.getLogger("MARKDOWN").setLevel(logging.getLogger().level) + + # Create Jinja2 environment + env = jinja_extensions.Environment( + **jinja_extensions.get_jinja_env_options()) + env.install_gettext_callables(_, ungettext, newstyle=True) + # custom filters + env.filters['empty_and_escape'] = jinja_extensions.empty_and_escape + config['pylons.app_globals'].jinja_env = env + + # CONFIGURATION OPTIONS HERE (note: all config options will override + # any Pylons config options) + + # Initialize SQLAlchemy + engine = sqlalchemy.engine_from_config(config, client_encoding='utf8') + model.init_model(engine) + + for plugin in p.PluginImplementations(p.IConfigurable): + plugin.configure(config) + + # reset the template cache - we do this here so that when we load the + # environment it is clean + render.reset_template_info_cache() + + # clear other caches + logic.clear_actions_cache() + logic.clear_validators_cache() + authz.clear_auth_functions_cache() + + # Here we create the site user if they are not already in the database + try: + logic.get_action('get_site_user')({'ignore_auth': True}, None) + except (sqlalchemy.exc.ProgrammingError, sqlalchemy.exc.OperationalError): + # (ProgrammingError for Postgres, OperationalError for SQLite) + # The database is not initialised. This is a bit dirty. This occurs + # when running tests. + pass + except sqlalchemy.exc.InternalError: + # The database is not initialised. Travis hits this + pass + + # Close current session and open database connections to ensure a clean + # clean environment even if an error occurs later on + model.Session.remove() + model.Session.bind.dispose() diff --git a/venv/lib/python2.7/site-packages/ckan/config/install.py b/venv/lib/python2.7/site-packages/ckan/config/install.py new file mode 100644 index 00000000..d6cb33c9 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/install.py @@ -0,0 +1,22 @@ +# encoding: utf-8 + +import re + +from pylons.util import PylonsInstaller + +import ckan + + +class CKANInstaller(PylonsInstaller): + + def config_content(self, command, vars): + ckan_version = ckan.__version__ + ckan_base_version = re.sub('[^0-9\.]', '', ckan_version) + if ckan_base_version == ckan_version: + ckan_doc_version = 'ckan-{0}'.format(ckan_version) + else: + ckan_doc_version = 'latest' + + vars.setdefault('doc_version', ckan_doc_version) + + return super(CKANInstaller, self).config_content(command, vars) diff --git a/venv/lib/python2.7/site-packages/ckan/config/middleware/__init__.py b/venv/lib/python2.7/site-packages/ckan/config/middleware/__init__.py new file mode 100644 index 00000000..082372d7 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/middleware/__init__.py @@ -0,0 +1,210 @@ +# encoding: utf-8 + +"""WSGI app initialization""" +import urllib +import urlparse +import urllib + +import webob +from routes import request_config as routes_request_config + +from ckan.lib.i18n import get_locales_from_config +from ckan.config.environment import load_environment +from ckan.config.middleware.flask_app import make_flask_stack +from ckan.config.middleware.pylons_app import make_pylons_stack +from ckan.common import config +from ckan.lib.i18n import get_locales_from_config + +import logging +log = logging.getLogger(__name__) + +# This monkey-patches the webob request object because of the way it messes +# with the WSGI environ. + +# Start of webob.requests.BaseRequest monkey patch +original_charset__set = webob.request.BaseRequest._charset__set + + +def custom_charset__set(self, charset): + original_charset__set(self, charset) + if self.environ.get('CONTENT_TYPE', '').startswith(';'): + self.environ['CONTENT_TYPE'] = '' + + +webob.request.BaseRequest._charset__set = custom_charset__set + +webob.request.BaseRequest.charset = property( + webob.request.BaseRequest._charset__get, + custom_charset__set, + webob.request.BaseRequest._charset__del, + webob.request.BaseRequest._charset__get.__doc__) + +# End of webob.requests.BaseRequest monkey patch + +# This is a test Flask request context to be used internally. +# Do not use it! +_internal_test_request_context = None + + +def make_app(conf, full_stack=True, static_files=True, **app_conf): + ''' + Initialise both the pylons and flask apps, and wrap them in dispatcher + middleware. + ''' + + load_environment(conf, app_conf) + + pylons_app = make_pylons_stack(conf, full_stack, static_files, + **app_conf) + flask_app = make_flask_stack(conf, **app_conf) + + app = AskAppDispatcherMiddleware({'pylons_app': pylons_app, + 'flask_app': flask_app}) + + # Set this internal test request context with the configured environment so + # it can be used when calling url_for from tests + global _internal_test_request_context + _internal_test_request_context = flask_app._wsgi_app.test_request_context() + + return app + + +class AskAppDispatcherMiddleware(object): + + ''' + Dispatches incoming requests to either the Flask or Pylons apps depending + on the WSGI environ. + + Used to help transition from Pylons to Flask, and should be removed once + Pylons has been deprecated and all app requests are handled by Flask. + + Each app should handle a call to 'can_handle_request(environ)', responding + with a tuple: + (, , []) + where: + `bool` is True if the app can handle the payload url, + `app` is the wsgi app returning the answer + `origin` is an optional string to determine where in the app the url + will be handled, e.g. 'core' or 'extension'. + + Order of precedence if more than one app can handle a url: + Flask Extension > Pylons Extension > Flask Core > Pylons Core + ''' + + def __init__(self, apps=None): + # Dict of apps managed by this middleware {: , ...} + self.apps = apps or {} + + self.default_locale = config.get('ckan.locale_default', 'en') + self.locale_list = get_locales_from_config() + + def ask_around(self, environ): + '''Checks with all apps whether they can handle the incoming request + ''' + answers = [ + app._wsgi_app.can_handle_request(environ) + for name, app in self.apps.iteritems() + ] + # Sort answers by app name + answers = sorted(answers, key=lambda x: x[1]) + log.debug('Route support answers for {0} {1}: {2}'.format( + environ.get('REQUEST_METHOD'), environ.get('PATH_INFO'), + answers)) + + return answers + + def handle_i18n(self, environ): + ''' + Note: This function used to be the I18nMiddleware. + + Strips the locale code from the requested url + (eg '/sk/about' -> '/about') and sets environ variables for the + language selected: + + * CKAN_LANG is the language code eg en, fr + * CKAN_LANG_IS_DEFAULT is set to True or False + * CKAN_CURRENT_URL is set to the current application url + ''' + + # We only update once for a request so we can keep + # the language and original url which helps with 404 pages etc + if 'CKAN_LANG' not in environ: + path_parts = environ['PATH_INFO'].split('/') + if len(path_parts) > 1 and path_parts[1] in self.locale_list: + environ['CKAN_LANG'] = path_parts[1] + environ['CKAN_LANG_IS_DEFAULT'] = False + # rewrite url + if len(path_parts) > 2: + environ['PATH_INFO'] = '/'.join([''] + path_parts[2:]) + else: + environ['PATH_INFO'] = '/' + else: + environ['CKAN_LANG'] = self.default_locale + environ['CKAN_LANG_IS_DEFAULT'] = True + + # Current application url + path_info = environ['PATH_INFO'] + # sort out weird encodings + path_info = \ + '/'.join(urllib.quote(pce, '') for pce in path_info.split('/')) + + qs = environ.get('QUERY_STRING') + + if qs: + # sort out weird encodings + qs = urllib.quote(qs, '') + environ['CKAN_CURRENT_URL'] = '%s?%s' % (path_info, qs) + else: + environ['CKAN_CURRENT_URL'] = path_info + + def __call__(self, environ, start_response): + '''Determine which app to call by asking each app if it can handle the + url and method defined on the eviron''' + + # Process locale part on the incoming request URL so it doesn't affect + # the mapper queries + self.handle_i18n(environ) + + app_name = 'pylons_app' # currently defaulting to pylons app + answers = self.ask_around(environ) + available_handlers = [] + for answer in answers: + if len(answer) == 2: + can_handle, asked_app = answer + origin = 'core' + else: + can_handle, asked_app, origin = answer + if can_handle: + available_handlers.append('{0}_{1}'.format(asked_app, origin)) + + # Enforce order of precedence: + # Flask Extension > Pylons Extension > Flask Core > Pylons Core + if available_handlers: + if 'flask_app_extension' in available_handlers: + app_name = 'flask_app' + elif 'pylons_app_extension' in available_handlers: + app_name = 'pylons_app' + elif 'flask_app_core' in available_handlers: + app_name = 'flask_app' + + log.debug('Serving request via {0} app'.format(app_name)) + environ['ckan.app'] = app_name + if app_name == 'flask_app': + # This request will be served by Flask, but we still need the + # Pylons URL builder (Routes) to work + parts = urlparse.urlparse(config.get('ckan.site_url', + 'http://0.0.0.0:5000')) + request_config = routes_request_config() + request_config.host = str(parts.netloc + parts.path) + request_config.protocol = str(parts.scheme) + request_config.mapper = config['routes.map'] + + return self.apps[app_name](environ, start_response) + else: + # Although this request will be served by Pylons we still + # need an application context in order for the Flask URL + # builder to work and to be able to access the Flask config + flask_app = self.apps['flask_app']._wsgi_app + + with flask_app.test_request_context(): + return self.apps[app_name](environ, start_response) diff --git a/venv/lib/python2.7/site-packages/ckan/config/middleware/common_middleware.py b/venv/lib/python2.7/site-packages/ckan/config/middleware/common_middleware.py new file mode 100644 index 00000000..f87ccf7a --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/middleware/common_middleware.py @@ -0,0 +1,93 @@ +# encoding: utf-8 + +"""Common middleware used by both Flask and Pylons app stacks.""" + +import urllib2 +import hashlib +import json +import cgi + +import sqlalchemy as sa +from webob.request import FakeCGIBody + + +class RootPathMiddleware(object): + ''' + Prevents the SCRIPT_NAME server variable conflicting with the ckan.root_url + config. The routes package uses the SCRIPT_NAME variable and appends to the + path and ckan addes the root url causing a duplication of the root path. + + This is a middleware to ensure that even redirects use this logic. + ''' + def __init__(self, app, config): + self.app = app + + def __call__(self, environ, start_response): + # Prevents the variable interfering with the root_path logic + if 'SCRIPT_NAME' in environ: + environ['SCRIPT_NAME'] = '' + + return self.app(environ, start_response) + + +class CloseWSGIInputMiddleware(object): + ''' + webob.request.Request has habit to create FakeCGIBody. This leads( + during file upload) to creating temporary files that are not closed. + For long lived processes this means that for each upload you will + spend the same amount of temporary space as size of uploaded + file additionally, until server restart(this will automatically + close temporary files). + + This middleware is supposed to close such files after each request. + ''' + def __init__(self, app, config): + self.app = app + + def __call__(self, environ, start_response): + wsgi_input = environ['wsgi.input'] + if isinstance(wsgi_input, FakeCGIBody): + for _, item in wsgi_input.vars.items(): + if not isinstance(item, cgi.FieldStorage): + continue + fp = getattr(item, 'fp', None) + if fp is not None: + fp.close() + return self.app(environ, start_response) + + +class TrackingMiddleware(object): + + def __init__(self, app, config): + self.app = app + self.engine = sa.create_engine(config.get('sqlalchemy.url')) + + def __call__(self, environ, start_response): + path = environ['PATH_INFO'] + method = environ.get('REQUEST_METHOD') + if path == '/_tracking' and method == 'POST': + # do the tracking + # get the post data + payload = environ['wsgi.input'].read() + parts = payload.split('&') + data = {} + for part in parts: + k, v = part.split('=') + data[k] = urllib2.unquote(v).decode("utf8") + start_response('200 OK', [('Content-Type', 'text/html')]) + # we want a unique anonomized key for each user so that we do + # not count multiple clicks from the same user. + key = ''.join([ + environ['HTTP_USER_AGENT'], + environ['REMOTE_ADDR'], + environ.get('HTTP_ACCEPT_LANGUAGE', ''), + environ.get('HTTP_ACCEPT_ENCODING', ''), + ]) + key = hashlib.md5(key).hexdigest() + # store key/data here + sql = '''INSERT INTO tracking_raw + (user_key, url, tracking_type) + VALUES (%s, %s, %s)''' + self.engine.execute(sql, key, data.get('url'), data.get('type')) + return [] + return self.app(environ, start_response) diff --git a/venv/lib/python2.7/site-packages/ckan/config/middleware/flask_app.py b/venv/lib/python2.7/site-packages/ckan/config/middleware/flask_app.py new file mode 100644 index 00000000..8da7db3f --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/middleware/flask_app.py @@ -0,0 +1,444 @@ +# encoding: utf-8 + +import os +import re +import inspect +import itertools +import pkgutil + +from flask import Flask, Blueprint +from flask.ctx import _AppCtxGlobals +from flask.sessions import SessionInterface + +from werkzeug.exceptions import default_exceptions, HTTPException +from werkzeug.routing import Rule + +from flask_babel import Babel + +from beaker.middleware import SessionMiddleware +from paste.deploy.converters import asbool +from fanstatic import Fanstatic +from repoze.who.config import WhoConfig +from repoze.who.middleware import PluggableAuthenticationMiddleware + +import ckan.model as model +from ckan.lib import base +from ckan.lib import helpers +from ckan.lib import jinja_extensions +from ckan.common import config, g, request, ungettext +import ckan.lib.app_globals as app_globals +from ckan.plugins import PluginImplementations +from ckan.plugins.interfaces import IBlueprint, IMiddleware, ITranslation +from ckan.views import (identify_user, + set_cors_headers_for_response, + check_session_cookie, + set_controller_and_action + ) + + +import logging +log = logging.getLogger(__name__) + + +class CKANBabel(Babel): + def __init__(self, *pargs, **kwargs): + super(CKANBabel, self).__init__(*pargs, **kwargs) + self._i18n_path_idx = 0 + + @property + def domain(self): + default = super(CKANBabel, self).domain + multiple = self.app.config.get('BABEL_MULTIPLE_DOMAINS') + if not multiple: + return default + domains = multiple.split(';') + try: + return domains[self._i18n_path_idx] + except IndexError: + return default + + @property + def translation_directories(self): + self._i18n_path_idx = 0 + for path in super(CKANBabel, self).translation_directories: + yield path + self._i18n_path_idx += 1 + + +def make_flask_stack(conf, **app_conf): + """ This has to pass the flask app through all the same middleware that + Pylons used """ + + root = os.path.dirname( + os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + + debug = asbool(conf.get('debug', conf.get('DEBUG', False))) + testing = asbool(app_conf.get('testing', app_conf.get('TESTING', False))) + + app = flask_app = CKANFlask(__name__) + app.debug = debug + app.testing = testing + app.template_folder = os.path.join(root, 'templates') + app.app_ctx_globals_class = CKAN_AppCtxGlobals + app.url_rule_class = CKAN_Rule + + app.jinja_options = jinja_extensions.get_jinja_env_options() + # Update Flask config with the CKAN values. We use the common config + # object as values might have been modified on `load_environment` + if config: + app.config.update(config) + else: + app.config.update(conf) + app.config.update(app_conf) + + # Do all the Flask-specific stuff before adding other middlewares + + # Secret key needed for flask-debug-toolbar and sessions + if not app.config.get('SECRET_KEY'): + app.config['SECRET_KEY'] = config.get('beaker.session.secret') + if not app.config.get('SECRET_KEY'): + raise RuntimeError(u'You must provide a value for the secret key' + ' with the SECRET_KEY config option') + + if debug: + from flask_debugtoolbar import DebugToolbarExtension + app.config['DEBUG_TB_INTERCEPT_REDIRECTS'] = False + DebugToolbarExtension(app) + + # Use Beaker as the Flask session interface + class BeakerSessionInterface(SessionInterface): + def open_session(self, app, request): + if 'beaker.session' in request.environ: + return request.environ['beaker.session'] + + def save_session(self, app, session, response): + session.save() + + namespace = 'beaker.session.' + session_opts = dict([(k.replace('beaker.', ''), v) + for k, v in config.iteritems() + if k.startswith(namespace)]) + if (not session_opts.get('session.data_dir') and + session_opts.get('session.type', 'file') == 'file'): + cache_dir = app_conf.get('cache_dir') or app_conf.get('cache.dir') + session_opts['session.data_dir'] = '{data_dir}/sessions'.format( + data_dir=cache_dir) + + app.wsgi_app = SessionMiddleware(app.wsgi_app, session_opts) + app.session_interface = BeakerSessionInterface() + + # Add Jinja2 extensions and filters + app.jinja_env.filters['empty_and_escape'] = \ + jinja_extensions.empty_and_escape + + # Common handlers for all requests + app.before_request(ckan_before_request) + app.after_request(ckan_after_request) + + # Template context processors + app.context_processor(helper_functions) + app.context_processor(c_object) + + @app.context_processor + def ungettext_alias(): + u''' + Provide `ungettext` as an alias of `ngettext` for backwards + compatibility + ''' + return dict(ungettext=ungettext) + + # Babel + pairs = [(os.path.join(root, u'i18n'), 'ckan')] + [ + (p.i18n_directory(), p.i18n_domain()) + for p in PluginImplementations(ITranslation) + ] + + i18n_dirs, i18n_domains = zip(*pairs) + + app.config[u'BABEL_TRANSLATION_DIRECTORIES'] = ';'.join(i18n_dirs) + app.config[u'BABEL_DOMAIN'] = 'ckan' + app.config[u'BABEL_MULTIPLE_DOMAINS'] = ';'.join(i18n_domains) + + babel = CKANBabel(app) + + babel.localeselector(get_locale) + + @app.route('/hello', methods=['GET']) + def hello_world(): + return 'Hello World, this is served by Flask' + + @app.route('/hello', methods=['POST']) + def hello_world_post(): + return 'Hello World, this was posted to Flask' + + # Auto-register all blueprints defined in the `views` folder + _register_core_blueprints(app) + _register_error_handler(app) + + # Set up each IBlueprint extension as a Flask Blueprint + for plugin in PluginImplementations(IBlueprint): + if hasattr(plugin, 'get_blueprint'): + plugin_blueprints = plugin.get_blueprint() + if not isinstance(plugin_blueprints, list): + plugin_blueprints = [plugin_blueprints] + for blueprint in plugin_blueprints: + app.register_extension_blueprint(blueprint) + + # Set flask routes in named_routes + for rule in app.url_map.iter_rules(): + if '.' not in rule.endpoint: + continue + controller, action = rule.endpoint.split('.') + needed = list(rule.arguments - set(rule.defaults or {})) + route = { + rule.endpoint: { + 'action': action, + 'controller': controller, + 'highlight_actions': action, + 'needed': needed + } + } + config['routes.named_routes'].update(route) + + # Start other middleware + for plugin in PluginImplementations(IMiddleware): + app = plugin.make_middleware(app, config) + + # Fanstatic + if debug: + fanstatic_config = { + 'versioning': True, + 'recompute_hashes': True, + 'minified': False, + 'bottom': True, + 'bundle': False, + } + else: + fanstatic_config = { + 'versioning': True, + 'recompute_hashes': False, + 'minified': True, + 'bottom': True, + 'bundle': True, + } + root_path = config.get('ckan.root_path', None) + if root_path: + root_path = re.sub('/{{LANG}}', '', root_path) + fanstatic_config['base_url'] = root_path + app = Fanstatic(app, **fanstatic_config) + + for plugin in PluginImplementations(IMiddleware): + try: + app = plugin.make_error_log_middleware(app, config) + except AttributeError: + log.critical('Middleware class {0} is missing the method' + 'make_error_log_middleware.' + .format(plugin.__class__.__name__)) + + # Initialize repoze.who + who_parser = WhoConfig(conf['here']) + who_parser.parse(open(app_conf['who.config_file'])) + + app = PluggableAuthenticationMiddleware( + app, + who_parser.identifiers, + who_parser.authenticators, + who_parser.challengers, + who_parser.mdproviders, + who_parser.request_classifier, + who_parser.challenge_decider, + logging.getLogger('repoze.who'), + logging.WARN, # ignored + who_parser.remote_user_key + ) + + # Update the main CKAN config object with the Flask specific keys + # that were set here or autogenerated + flask_config_keys = set(flask_app.config.keys()) - set(config.keys()) + for key in flask_config_keys: + config[key] = flask_app.config[key] + + # Add a reference to the actual Flask app so it's easier to access + app._wsgi_app = flask_app + + return app + + +def get_locale(): + u''' + Return the value of the `CKAN_LANG` key of the WSGI environ, + set by the I18nMiddleware based on the URL. + If no value is defined, it defaults to `ckan.locale_default` or `en`. + ''' + return request.environ.get( + u'CKAN_LANG', + config.get(u'ckan.locale_default', u'en')) + + +def ckan_before_request(): + u'''Common handler executed before all Flask requests''' + + # Update app_globals + app_globals.app_globals._check_uptodate() + + # Identify the user from the repoze cookie or the API header + # Sets g.user and g.userobj + identify_user() + + # Provide g.controller and g.action for backward compatibility + # with extensions + set_controller_and_action() + + +def ckan_after_request(response): + u'''Common handler executed after all Flask requests''' + + # Dispose of the SQLALchemy session + model.Session.remove() + + # Check session cookie + response = check_session_cookie(response) + + # Set CORS headers if necessary + response = set_cors_headers_for_response(response) + + # Default to cache-control private if it was not set + if response.cache_control.private is None: + response.cache_control.private = True + + return response + + +def helper_functions(): + u'''Make helper functions (`h`) available to Flask templates''' + if not helpers.helper_functions: + helpers.load_plugin_helpers() + return dict(h=helpers.helper_functions) + + +def c_object(): + u''' + Expose `c` as an alias of `g` in templates for backwards compatibility + ''' + return dict(c=g) + + +class CKAN_Rule(Rule): + + u'''Custom Flask url_rule_class. + + We use it to be able to flag routes defined in extensions as such + ''' + + def __init__(self, *args, **kwargs): + self.ckan_core = True + super(CKAN_Rule, self).__init__(*args, **kwargs) + + +class CKAN_AppCtxGlobals(_AppCtxGlobals): + + '''Custom Flask AppCtxGlobal class (flask.g).''' + + def __getattr__(self, name): + ''' + If flask.g doesn't have attribute `name`, fall back to CKAN's + app_globals object. + If the key is also not found in there, an AttributeError will be raised + ''' + return getattr(app_globals.app_globals, name) + + +class CKANFlask(Flask): + + '''Extend the Flask class with a special method called on incoming + requests by AskAppDispatcherMiddleware. + ''' + + app_name = 'flask_app' + + def can_handle_request(self, environ): + ''' + Decides whether it can handle a request with the Flask app by + matching the request environ against the route mapper + + Returns (True, 'flask_app', origin) if this is the case. + + `origin` can be either 'core' or 'extension' depending on where + the route was defined. + ''' + urls = self.url_map.bind_to_environ(environ) + + try: + rule, args = urls.match(return_rule=True) + origin = 'core' + if hasattr(rule, 'ckan_core') and not rule.ckan_core: + origin = 'extension' + log.debug('Flask route match, endpoint: {0}, args: {1}, ' + 'origin: {2}'.format(rule.endpoint, args, origin)) + + # Disable built-in flask's ability to prepend site root to + # generated url, as we are going to use locale and existing + # logic is not flexible enough for this purpose + environ['SCRIPT_NAME'] = '' + + return (True, self.app_name, origin) + except HTTPException: + return (False, self.app_name) + + def register_extension_blueprint(self, blueprint, **kwargs): + ''' + This method should be used to register blueprints that come from + extensions, so there's an opportunity to add extension-specific + options. + + Sets the rule property `ckan_core` to False, to indicate that the rule + applies to an extension route. + ''' + self.register_blueprint(blueprint, **kwargs) + + # Get the new blueprint rules + bp_rules = itertools.chain.from_iterable( + v for k, v in self.url_map._rules_by_endpoint.iteritems() + if k.startswith(u'{0}.'.format(blueprint.name)) + ) + + # This compare key will ensure the rule will be near the top. + top_compare_key = False, -100, [(-2, 0)] + for r in bp_rules: + r.ckan_core = False + r.match_compare_key = lambda: top_compare_key + + +def _register_core_blueprints(app): + u'''Register all blueprints defined in the `views` folder + ''' + def is_blueprint(mm): + return isinstance(mm, Blueprint) + + path = os.path.join(os.path.dirname(__file__), '..', '..', 'views') + + for loader, name, _ in pkgutil.iter_modules([path], 'ckan.views.'): + module = loader.find_module(name).load_module(name) + for blueprint in inspect.getmembers(module, is_blueprint): + app.register_blueprint(blueprint[1]) + log.debug(u'Registered core blueprint: {0!r}'.format(blueprint[0])) + + +def _register_error_handler(app): + u'''Register error handler''' + + def error_handler(e): + if isinstance(e, HTTPException): + extra_vars = {u'code': [e.code], u'content': e.description} + # TODO: Remove + g.code = [e.code] + + return base.render( + u'error_document_template.html', extra_vars), e.code + extra_vars = {u'code': [500], u'content': u'Internal server error'} + return base.render(u'error_document_template.html', extra_vars), 500 + + for code in default_exceptions: + app.register_error_handler(code, error_handler) + if not app.debug and not app.testing: + app.register_error_handler(Exception, error_handler) diff --git a/venv/lib/python2.7/site-packages/ckan/config/middleware/pylons_app.py b/venv/lib/python2.7/site-packages/ckan/config/middleware/pylons_app.py new file mode 100644 index 00000000..2d352324 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/middleware/pylons_app.py @@ -0,0 +1,286 @@ +# encoding: utf-8 + +import os +import re + +from pylons.wsgiapp import PylonsApp + +from beaker.middleware import CacheMiddleware, SessionMiddleware +from paste.cascade import Cascade +from paste.registry import RegistryManager +from paste.urlparser import StaticURLParser +from paste.deploy.converters import asbool +from paste.fileapp import _FileIter +from pylons.middleware import ErrorHandler, StatusCodeRedirect +from routes.middleware import RoutesMiddleware +from repoze.who.config import WhoConfig +from repoze.who.middleware import PluggableAuthenticationMiddleware +from fanstatic import Fanstatic + +from ckan.plugins import PluginImplementations +from ckan.plugins.interfaces import IMiddleware +import ckan.lib.uploader as uploader +from ckan.config.middleware import common_middleware +from ckan.common import config + +import logging +log = logging.getLogger(__name__) + + +def make_pylons_stack(conf, full_stack=True, static_files=True, + **app_conf): + """Create a Pylons WSGI application and return it + + ``conf`` + The inherited configuration for this application. Normally from + the [DEFAULT] section of the Paste ini file. + + ``full_stack`` + Whether this application provides a full WSGI stack (by default, + meaning it handles its own exceptions and errors). Disable + full_stack when this application is "managed" by another WSGI + middleware. + + ``static_files`` + Whether this application serves its own static files; disable + when another web server is responsible for serving them. + + ``app_conf`` + The application's local configuration. Normally specified in + the [app:] section of the Paste ini file (where + defaults to main). + + """ + # The Pylons WSGI app + app = pylons_app = CKANPylonsApp() + + for plugin in PluginImplementations(IMiddleware): + app = plugin.make_middleware(app, config) + + app = common_middleware.CloseWSGIInputMiddleware(app, config) + app = common_middleware.RootPathMiddleware(app, config) + # Routing/Session/Cache Middleware + app = RoutesMiddleware(app, config['routes.map']) + # we want to be able to retrieve the routes middleware to be able to update + # the mapper. We store it in the pylons config to allow this. + config['routes.middleware'] = app + app = SessionMiddleware(app, config) + app = CacheMiddleware(app, config) + + # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares) + # app = QueueLogMiddleware(app) + if asbool(config.get('ckan.use_pylons_response_cleanup_middleware', + True)): + app = execute_on_completion(app, config, + cleanup_pylons_response_string) + + # Fanstatic + if asbool(config.get('debug', False)): + fanstatic_config = { + 'versioning': True, + 'recompute_hashes': True, + 'minified': False, + 'bottom': True, + 'bundle': False, + } + else: + fanstatic_config = { + 'versioning': True, + 'recompute_hashes': False, + 'minified': True, + 'bottom': True, + 'bundle': True, + } + root_path = config.get('ckan.root_path', None) + if root_path: + root_path = re.sub('/{{LANG}}', '', root_path) + fanstatic_config['base_url'] = root_path + app = Fanstatic(app, **fanstatic_config) + + for plugin in PluginImplementations(IMiddleware): + try: + app = plugin.make_error_log_middleware(app, config) + except AttributeError: + log.critical('Middleware class {0} is missing the method' + 'make_error_log_middleware.' + .format(plugin.__class__.__name__)) + + if asbool(full_stack): + # Handle Python exceptions + app = ErrorHandler(app, conf, **config['pylons.errorware']) + + # Display error documents for 400, 403, 404 status codes (and + # 500 when debug is disabled) + if asbool(config['debug']): + app = StatusCodeRedirect(app, [400, 403, 404]) + else: + app = StatusCodeRedirect(app, [400, 403, 404, 500]) + + # Initialize repoze.who + who_parser = WhoConfig(conf['here']) + who_parser.parse(open(app_conf['who.config_file'])) + + app = PluggableAuthenticationMiddleware( + app, + who_parser.identifiers, + who_parser.authenticators, + who_parser.challengers, + who_parser.mdproviders, + who_parser.request_classifier, + who_parser.challenge_decider, + logging.getLogger('repoze.who'), + logging.WARN, # ignored + who_parser.remote_user_key + ) + + # Establish the Registry for this application + # The RegistryManager includes code to pop + # registry values after the stream has completed, + # so we need to prevent this with `streaming` set to True. + app = RegistryManager(app, streaming=True) + + if asbool(static_files): + # Serve static files + static_max_age = None if not asbool( + config.get('ckan.cache_enabled')) \ + else int(config.get('ckan.static_max_age', 3600)) + + static_app = StaticURLParser( + config['pylons.paths']['static_files'], + cache_max_age=static_max_age) + static_parsers = [static_app, app] + + storage_directory = uploader.get_storage_path() + if storage_directory: + path = os.path.join(storage_directory, 'storage') + try: + os.makedirs(path) + except OSError as e: + # errno 17 is file already exists + if e.errno != 17: + raise + + storage_app = StaticURLParser(path, cache_max_age=static_max_age) + static_parsers.insert(0, storage_app) + + # Configurable extra static file paths + extra_static_parsers = [] + for public_path in config.get( + 'extra_public_paths', '').split(','): + if public_path.strip(): + extra_static_parsers.append( + StaticURLParser(public_path.strip(), + cache_max_age=static_max_age) + ) + app = Cascade(extra_static_parsers + static_parsers) + + # Tracking + if asbool(config.get('ckan.tracking_enabled', 'false')): + app = common_middleware.TrackingMiddleware(app, config) + + # Add a reference to the actual Pylons app so it's easier to access + app._wsgi_app = pylons_app + + return app + + +class CKANPylonsApp(PylonsApp): + + app_name = 'pylons_app' + + def can_handle_request(self, environ): + ''' + Decides whether it can handle a request with the Pylons app by + matching the request environ against the route mapper + + Returns (True, 'pylons_app', origin) if this is the case. + + origin can be either 'core' or 'extension' depending on where + the route was defined. + + NOTE: There is currently a catch all route for GET requests to + point arbitrary urls to templates with the same name: + + map.connect('/*url', controller='template', action='view') + + This means that this function will match all GET requests. This + does not cause issues as the Pylons core routes are the last to + take precedence so the current behaviour is kept, but it's worth + keeping in mind. + ''' + + pylons_mapper = config['routes.map'] + match_route = pylons_mapper.routematch(environ=environ) + if match_route: + match, route = match_route + origin = 'core' + if hasattr(route, '_ckan_core') and not route._ckan_core: + origin = 'extension' + log.debug('Pylons route match: {0} Origin: {1}'.format( + match, origin)) + return (True, self.app_name, origin) + else: + return (False, self.app_name) + + +class CloseCallbackWrapper(object): + def __init__(self, iterable, callback, environ): + # pylons.fileapp expects app_iter to have `file` attribute. + self.file = iterable + self.callback = callback + self.environ = environ + + def __iter__(self): + """ + return a generator that passes through items from iterable + then calls callback(environ). + """ + try: + for item in self.file: + yield item + except GeneratorExit: + if hasattr(self.file, 'close'): + self.file.close() + raise + finally: + self.callback(self.environ) + + +class FileIterWrapper(CloseCallbackWrapper, _FileIter): + """Same CloseCallbackWrapper, just with _FileIter mixin. + + That will prevent pylons from converting file responses into + in-memori lists. + """ + pass + + +def execute_on_completion(application, config, callback): + """ + Call callback(environ) once complete response is sent + """ + + def inner(environ, start_response): + try: + result = application(environ, start_response) + except: + callback(environ) + raise + # paste.fileapp converts non-file responses into list + # In order to avoid interception of OOM Killer + # file responses wrapped into generator with + # _FileIter in parent tree. + klass = CloseCallbackWrapper + if isinstance(result, _FileIter): + klass = FileIterWrapper + return klass(result, callback, environ) + + return inner + + +def cleanup_pylons_response_string(environ): + try: + msg = 'response cleared by pylons response cleanup middleware' + environ['pylons.controller']._py_object.response._body = msg + except (KeyError, AttributeError): + pass diff --git a/venv/lib/python2.7/site-packages/ckan/config/resource_formats.json b/venv/lib/python2.7/site-packages/ckan/config/resource_formats.json new file mode 100644 index 00000000..d4749a99 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/resource_formats.json @@ -0,0 +1,77 @@ +[ + ["_comment", + "JSON field order as follows:", + ["Format", "Description", "Mimetype", ["List of alternative representations"]], + "where:", + " * Format - the short name for it, usually the file extension, because it will be displayed in many places, such as in the search results.", + " * Description - the name, human-friendly, to be displayed on the resource page. ", + " * Mimetype - canonical mimetype for the format. It must be unique to this resource format. It should be listed here: https://www.iana.org/assignments/media-types/media-types.xhtml or here: http://hg.python.org/cpython/file/2.7/Lib/mimetypes.py#l403", + " * List of alternative representations - these are other names that the user might type when they mean this format, or alternative mime-types or any other identifier. (They must be unique to this resource format.)" + ], + ["PPTX", "Powerpoint OOXML Presentation", "application/vnd.openxmlformats-officedocument.presentationml.presentation", []], + ["EXE", "Windows Executable Program", "application/x-msdownload", []], + ["DOC", "Word Document", "application/msword", []], + ["KML", "KML File", "application/vnd.google-earth.kml+xml", []], + ["XLS", "Excel Document", "application/vnd.ms-excel", ["Excel", "application/msexcel", "application/x-msexcel", "application/x-ms-excel", "application/x-excel", "application/x-dos_ms_excel", "application/xls", "application/x-xls"]], + ["WCS", "Web Coverage Service", "wcs", []], + ["JS", "JavaScript", "application/x-javascript", []], + ["MDB", "Access Database", "application/x-msaccess", []], + ["NetCDF", "NetCDF File", "application/netcdf", []], + ["ArcGIS Map Service", "ArcGIS Map Service", "ArcGIS Map Service", ["arcgis map service"]], + ["TSV", "Tab Separated Values File", "text/tab-separated-values", ["text/tsv"]], + ["WFS", "Web Feature Service", null, []], + ["WMTS", "Web Map Tile Service", null, []], + ["ArcGIS Online Map", "ArcGIS Online Map", "ArcGIS Online Map", ["web map application"]], + ["Perl", "Perl Script", "text/x-perl", []], + ["KMZ", "KMZ File", "application/vnd.google-earth.kmz+xml", ["application/vnd.google-earth.kmz"]], + ["OWL", "Web Ontology Language", "application/owl+xml", []], + ["N3", "N3 Triples", "application/x-n3", []], + ["ZIP", "Zip File", "application/zip", ["zip", "http://purl.org/NET/mediatypes/application/zip"]], + ["GZ", "Gzip File", "application/gzip", ["application/x-gzip"]], + ["QGIS", "QGIS File", "application/x-qgis", []], + ["ODS", "OpenDocument Spreadsheet", "application/vnd.oasis.opendocument.spreadsheet", []], + ["ODT", "OpenDocument Text", "application/vnd.oasis.opendocument.text", []], + ["JSON", "JavaScript Object Notation", "application/json", []], + ["BMP", "Bitmap Image File", "image/x-ms-bmp", []], + ["HTML", "Web Page", "text/html", ["htm", "http://purl.org/net/mediatypes/text/html"]], + ["RAR", "RAR Compressed File", "application/rar", []], + ["TIFF", "TIFF Image File", "image/tiff", []], + ["ODB", "OpenDocument Database", "application/vnd.oasis.opendocument.database", []], + ["TXT", "Text File", "text/plain", []], + ["DCR", "Adobe Shockwave format", "application/x-director", []], + ["ODF", "OpenDocument Math Formula", "application/vnd.oasis.opendocument.formula", []], + ["ODG", "OpenDocument Image", "application/vnd.oasis.opendocument.graphics", []], + ["XML", "XML File", "application/xml", ["text/xml", "http://purl.org/net/mediatypes/application/xml"]], + ["XLSX", "Excel OOXML Spreadsheet", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", []], + ["DOCX", "Word OOXML Document", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", []], + ["BIN", "Binary Data", "application/octet-stream", ["bin"]], + ["XSLT", "Extensible Stylesheet Language Transformations", "application/xslt+xml", []], + ["WMS", "Web Mapping Service", "WMS", ["wms"]], + ["SVG", "SVG vector image", "image/svg+xml", ["svg"]], + ["PPT", "Powerpoint Presentation", "application/vnd.ms-powerpoint", []], + ["ODP", "OpenDocument Presentation", "application/vnd.oasis.opendocument.presentation", []], + ["JPEG", "JPG Image File", "image/jpeg", ["jpeg", "jpg"]], + ["SPARQL", "SPARQL end-point", "application/sparql-results+xml", []], + ["GIF", "GIF Image File", "image/gif", []], + ["RDF", "RDF", "application/rdf+xml", ["rdf/xml"]], + ["E00", " ARC/INFO interchange file format", "application/x-e00", []], + ["PDF", "PDF File", "application/pdf", []], + ["CSV", "Comma Separated Values File", "text/csv", ["text/comma-separated-values"]], + ["ODC", "OpenDocument Chart", "application/vnd.oasis.opendocument.chart", []], + ["Atom Feed", "Atom Feed", "application/atom+xml", []], + ["MrSID", "MrSID", "image/x-mrsid", []], + ["ArcGIS Map Preview", "ArcGIS Map Preview", "ArcGIS Map Preview", ["arcgis map preview"]], + ["XYZ", "XYZ Chemical File", "chemical/x-xyz", []], + ["MOP", "MOPAC Input format", "chemical/x-mopac-input", []], + ["Esri REST", "Esri Rest API Endpoint", "Esri REST", ["arcgis_rest"]], + ["dBase", "dBase Database", "application/x-dbf", ["dbf"]], + ["MXD", "ESRI ArcGIS project file", "application/x-mxd", []], + ["TAR", "TAR Compressed File", "application/x-tar", []], + ["PNG", "PNG Image File", "image/png", []], + ["RSS", "RSS feed", "application/rss+xml", []], + ["GeoJSON", "Geographic JavaScript Object Notation", "application/geo+json", ["geojson"]], + ["SHP", "Shapefile", null, ["esri shapefile"]], + ["TORRENT", "Torrent", "application/x-bittorrent", ["bittorrent"]], + ["ICS", "iCalendar", "text/calendar", ["ifb", "iCal"]], + ["GTFS", "General Transit Feed Specification", null, []] +] diff --git a/venv/lib/python2.7/site-packages/ckan/config/routing.py b/venv/lib/python2.7/site-packages/ckan/config/routing.py new file mode 100644 index 00000000..60209d13 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/routing.py @@ -0,0 +1,347 @@ +# encoding: utf-8 + +"""Routes configuration + +The more specific and detailed routes should be defined first so they +may take precedent over the more generic routes. For more information +refer to the routes manual at http://routes.groovie.org/docs/ + +""" +import re + +from routes.mapper import SubMapper, Mapper as _Mapper + +import ckan.plugins as p +from ckan.common import config + +named_routes = {} + + +class Mapper(_Mapper): + ''' This Mapper allows us to intercept the connect calls used by routes + so that we can collect named routes and later use them to create links + via some helper functions like build_nav(). ''' + + def connect(self, *args, **kw): + '''Connect a new route, storing any named routes for later. + + This custom connect() method wraps the standard connect() method, + and additionally saves any named routes that are connected in a dict + ckan.routing.named_routes, which ends up being accessible via the + Pylons config as config['routes.named_routes']. + + Also takes some additional params: + + :param ckan_icon: name of the icon to be associated with this route, + e.g. 'group', 'time'. Available icons are listed here: + http://fortawesome.github.io/Font-Awesome/3.2.1/icons/ + :type ckan_icon: string + :param highlight_actions: space-separated list of controller actions + that should be treated as the same as this named route for menu + highlighting purposes, e.g. 'index search' + :type highlight_actions: string + + ''' + + ckan_icon = kw.pop('ckan_icon', None) + highlight_actions = kw.pop('highlight_actions', kw.get('action', '')) + ckan_core = kw.pop('ckan_core', None) + out = _Mapper.connect(self, *args, **kw) + route = self.matchlist[-1] + if ckan_core is not None: + route._ckan_core = ckan_core + if len(args) == 1 or args[0].startswith('_redirect_'): + return out + # we have a named route + needed = [] + matches = re.findall('\{([^:}]*)(\}|:)', args[1]) + for match in matches: + needed.append(match[0]) + route_data = { + 'icon': ckan_icon, + # needed lists the names of the parameters that need defining + # for the route to be generated + 'needed': needed, + 'controller': kw.get('controller'), + 'action': kw.get('action', ''), + 'highlight_actions': highlight_actions + } + named_routes[args[0]] = route_data + return out + + +def make_map(): + """Create, configure and return the routes Mapper""" + # import controllers here rather than at root level because + # pylons config is initialised by this point. + + # Helpers to reduce code clutter + GET = dict(method=['GET']) + PUT = dict(method=['PUT']) + POST = dict(method=['POST']) + DELETE = dict(method=['DELETE']) + GET_POST = dict(method=['GET', 'POST']) + PUT_POST = dict(method=['PUT', 'POST']) + PUT_POST_DELETE = dict(method=['PUT', 'POST', 'DELETE']) + OPTIONS = dict(method=['OPTIONS']) + + import ckan.lib.plugins as lib_plugins + lib_plugins.reset_package_plugins() + + map = Mapper(directory=config['pylons.paths']['controllers'], + always_scan=config['debug']) + map.minimization = False + map.explicit = True + + # CUSTOM ROUTES HERE + for plugin in p.PluginImplementations(p.IRoutes): + map = plugin.before_map(map) + + # The ErrorController route (handles 404/500 error pages); it should + # likely stay at the top, ensuring it can always be resolved. + map.connect('/error/{action}', controller='error', ckan_core=True) + map.connect('/error/{action}/{id}', controller='error', ckan_core=True) + + map.connect('*url', controller='home', action='cors_options', + conditions=OPTIONS, ckan_core=True) + + # Mark all routes added from extensions on the `before_map` extension point + # as non-core + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = False + + # CKAN API versioned. + register_list = [ + 'package', + 'dataset', + 'resource', + 'tag', + 'group', + 'revision', + 'licenses', + 'rating', + 'user', + 'activity' + ] + register_list_str = '|'.join(register_list) + + # /api ver 1, 2, 3 or none + with SubMapper(map, controller='api', path_prefix='/api{ver:/1|/2|/3|}', + ver='/1') as m: + m.connect('/search/{register}', action='search') + + # /api/util ver 1, 2 or none + with SubMapper(map, controller='api', path_prefix='/api{ver:/1|/2|}', + ver='/1') as m: + m.connect('/util/dataset/munge_name', action='munge_package_name') + m.connect('/util/dataset/munge_title_to_name', + action='munge_title_to_package_name') + m.connect('/util/tag/munge', action='munge_tag') + + ########### + ## /END API + ########### + + map.redirect('/packages', '/dataset') + map.redirect('/packages/{url:.*}', '/dataset/{url}') + map.redirect('/package', '/dataset') + map.redirect('/package/{url:.*}', '/dataset/{url}') + + with SubMapper(map, controller='package') as m: + m.connect('search', '/dataset', action='search', + highlight_actions='index search') + m.connect('dataset_new', '/dataset/new', action='new') + m.connect('/dataset/{action}', + requirements=dict(action='|'.join([ + 'list', + 'autocomplete', + 'search' + ]))) + + m.connect('/dataset/{action}/{id}/{revision}', action='read_ajax', + requirements=dict(action='|'.join([ + 'read', + 'edit', + 'history', + ]))) + m.connect('/dataset/{action}/{id}', + requirements=dict(action='|'.join([ + 'new_resource', + 'history', + 'read_ajax', + 'history_ajax', + 'follow', + 'activity', + 'groups', + 'unfollow', + 'delete', + 'api_data', + ]))) + m.connect('dataset_edit', '/dataset/edit/{id}', action='edit', + ckan_icon='pencil-square-o') + m.connect('dataset_followers', '/dataset/followers/{id}', + action='followers', ckan_icon='users') + m.connect('dataset_activity', '/dataset/activity/{id}', + action='activity', ckan_icon='clock-o') + m.connect('/dataset/activity/{id}/{offset}', action='activity') + m.connect('dataset_groups', '/dataset/groups/{id}', + action='groups', ckan_icon='users') + m.connect('dataset_resources', '/dataset/resources/{id}', + action='resources', ckan_icon='bars') + m.connect('dataset_read', '/dataset/{id}', action='read', + ckan_icon='sitemap') + m.connect('/dataset/{id}/resource/{resource_id}', + action='resource_read') + m.connect('/dataset/{id}/resource_delete/{resource_id}', + action='resource_delete') + m.connect('resource_edit', '/dataset/{id}/resource_edit/{resource_id}', + action='resource_edit', ckan_icon='pencil-square-o') + m.connect('/dataset/{id}/resource/{resource_id}/download', + action='resource_download') + m.connect('/dataset/{id}/resource/{resource_id}/download/{filename}', + action='resource_download') + m.connect('/dataset/{id}/resource/{resource_id}/embed', + action='resource_embedded_dataviewer') + m.connect('/dataset/{id}/resource/{resource_id}/viewer', + action='resource_embedded_dataviewer', width="960", + height="800") + m.connect('/dataset/{id}/resource/{resource_id}/preview', + action='resource_datapreview') + m.connect('views', '/dataset/{id}/resource/{resource_id}/views', + action='resource_views', ckan_icon='bars') + m.connect('new_view', '/dataset/{id}/resource/{resource_id}/new_view', + action='edit_view', ckan_icon='pencil-square-o') + m.connect('edit_view', + '/dataset/{id}/resource/{resource_id}/edit_view/{view_id}', + action='edit_view', ckan_icon='pencil-square-o') + m.connect('resource_view', + '/dataset/{id}/resource/{resource_id}/view/{view_id}', + action='resource_view') + m.connect('/dataset/{id}/resource/{resource_id}/view/', + action='resource_view') + + # group + map.redirect('/groups', '/group') + map.redirect('/groups/{url:.*}', '/group/{url}') + + # These named routes are used for custom group forms which will use the + # names below based on the group.type ('group' is the default type) + with SubMapper(map, controller='group') as m: + m.connect('group_index', '/group', action='index', + highlight_actions='index search') + m.connect('group_list', '/group/list', action='list') + m.connect('group_new', '/group/new', action='new') + + for action in [ + 'edit', + 'delete', + 'member_new', + 'member_delete', + 'history', + 'followers', + 'follow', + 'unfollow', + 'admins', + 'activity', + ]: + m.connect('group_' + action, + '/group/' + action + '/{id}', + action=action) + + m.connect('group_about', '/group/about/{id}', action='about', + ckan_icon='info-circle'), + m.connect('group_edit', '/group/edit/{id}', action='edit', + ckan_icon='pencil-square-o') + m.connect('group_members', '/group/members/{id}', action='members', + ckan_icon='users'), + m.connect('group_activity', '/group/activity/{id}/{offset}', + action='activity', ckan_icon='clock-o'), + m.connect('group_read', '/group/{id}', action='read', + ckan_icon='sitemap') + + # organizations these basically end up being the same as groups + with SubMapper(map, controller='organization') as m: + m.connect('organizations_index', '/organization', action='index') + m.connect('organization_index', '/organization', action='index') + m.connect('organization_new', '/organization/new', action='new') + for action in [ + 'delete', + 'admins', + 'member_new', + 'member_delete', + 'history']: + m.connect('organization_' + action, + '/organization/' + action + '/{id}', + action=action) + + m.connect('organization_activity', '/organization/activity/{id}/{offset}', + action='activity', ckan_icon='clock-o') + m.connect('organization_read', '/organization/{id}', action='read') + m.connect('organization_about', '/organization/about/{id}', + action='about', ckan_icon='info-circle') + m.connect('organization_read', '/organization/{id}', action='read', + ckan_icon='sitemap') + m.connect('organization_edit', '/organization/edit/{id}', + action='edit', ckan_icon='pencil-square-o') + m.connect('organization_members', '/organization/members/{id}', + action='members', ckan_icon='users') + m.connect('organization_bulk_process', + '/organization/bulk_process/{id}', + action='bulk_process', ckan_icon='sitemap') + lib_plugins.register_package_plugins(map) + lib_plugins.register_group_plugins(map) + + # tags + map.redirect('/tags', '/tag') + map.redirect('/tags/{url:.*}', '/tag/{url}') + map.redirect('/tag/read/{url:.*}', '/tag/{url}', + _redirect_code='301 Moved Permanently') + map.connect('/tag', controller='tag', action='index') + map.connect('/tag/{id}', controller='tag', action='read') + # users + map.redirect('/users/{url:.*}', '/user/{url}') + + with SubMapper(map, controller='revision') as m: + m.connect('/revision', action='index') + m.connect('/revision/edit/{id}', action='edit') + m.connect('/revision/diff/{id}', action='diff') + m.connect('/revision/list', action='list') + m.connect('/revision/{id}', action='read') + + with SubMapper(map, controller='ckan.controllers.storage:StorageController') as m: + m.connect('storage_file', '/storage/f/{label:.*}', + action='file') + + with SubMapper(map, controller='util') as m: + m.connect('/i18n/strings_{lang}.js', action='i18n_js_strings') + m.connect('/util/redirect', action='redirect') + m.connect('/testing/primer', action='primer') + m.connect('/testing/markup', action='markup') + + # robots.txt + map.connect('/(robots.txt)', controller='template', action='view') + + # Mark all unmarked routes added up until now as core routes + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = True + + for plugin in p.PluginImplementations(p.IRoutes): + map = plugin.after_map(map) + + # Mark all routes added from extensions on the `after_map` extension point + # as non-core + for route in map.matchlist: + if not hasattr(route, '_ckan_core'): + route._ckan_core = False + + # sometimes we get requests for favicon.ico we should redirect to + # the real favicon location. + map.redirect('/favicon.ico', config.get('ckan.favicon')) + + map.redirect('/*(url)/', '/{url}', + _redirect_code='301 Moved Permanently') + map.connect('/*url', controller='template', action='view', ckan_core=True) + + return map diff --git a/venv/lib/python2.7/site-packages/ckan/config/solr/schema.xml b/venv/lib/python2.7/site-packages/ckan/config/solr/schema.xml new file mode 100644 index 00000000..8e5018a2 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/solr/schema.xml @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +index_id +text + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/venv/lib/python2.7/site-packages/ckan/config/who.ini b/venv/lib/python2.7/site-packages/ckan/config/who.ini new file mode 100644 index 00000000..885a497b --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/config/who.ini @@ -0,0 +1,37 @@ +[plugin:auth_tkt] +use = ckan.lib.auth_tkt:make_plugin +# If no secret key is defined here, beaker.session.secret will be used +#secret = somesecret + +[plugin:friendlyform] +use = repoze.who.plugins.friendlyform:FriendlyFormPlugin +login_form_url= /user/login +login_handler_path = /login_generic +logout_handler_path = /user/logout +rememberer_name = auth_tkt +post_login_url = /user/logged_in +post_logout_url = /user/logged_out +charset = utf-8 + +#[plugin:basicauth] +#use = repoze.who.plugins.basicauth:make_plugin +#realm = 'CKAN' + +[general] +request_classifier = repoze.who.classifiers:default_request_classifier +challenge_decider = repoze.who.classifiers:default_challenge_decider + +[identifiers] +plugins = + friendlyform;browser + auth_tkt + +[authenticators] +plugins = + auth_tkt + ckan.lib.authenticator:UsernamePasswordAuthenticator + +[challengers] +plugins = + friendlyform;browser +# basicauth diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/__init__.py b/venv/lib/python2.7/site-packages/ckan/controllers/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/admin.py b/venv/lib/python2.7/site-packages/ckan/controllers/admin.py new file mode 100644 index 00000000..3d2f4455 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/admin.py @@ -0,0 +1,191 @@ +# encoding: utf-8 + +from ckan.common import config + +import ckan.lib.base as base +import ckan.lib.helpers as h +import ckan.lib.app_globals as app_globals +import ckan.lib.navl.dictization_functions as dict_fns +import ckan.model as model +import ckan.logic as logic +import ckan.plugins as plugins +from home import CACHE_PARAMETERS + + +c = base.c +request = base.request +_ = base._ + + +def get_sysadmins(): + q = model.Session.query(model.User).filter(model.User.sysadmin == True, + model.User.state == 'active') + return q.all() + + +class AdminController(base.BaseController): + def __before__(self, action, **params): + super(AdminController, self).__before__(action, **params) + context = {'model': model, + 'user': c.user, 'auth_user_obj': c.userobj} + try: + logic.check_access('sysadmin', context, {}) + except logic.NotAuthorized: + base.abort(403, _('Need to be system administrator to administer')) + c.revision_change_state_allowed = True + + def _get_config_form_items(self): + # Styles for use in the form.select() macro. + styles = [{'text': 'Default', 'value': '/base/css/main.css'}, + {'text': 'Red', 'value': '/base/css/red.css'}, + {'text': 'Green', 'value': '/base/css/green.css'}, + {'text': 'Maroon', 'value': '/base/css/maroon.css'}, + {'text': 'Fuchsia', 'value': '/base/css/fuchsia.css'}] + + homepages = [{'value': '1', 'text': 'Introductory area, search, featured group and featured organization'}, + {'value': '2', 'text': 'Search, stats, introductory area, featured organization and featured group'}, + {'value': '3', 'text': 'Search, introductory area and stats'}] + + items = [ + {'name': 'ckan.site_title', 'control': 'input', 'label': _('Site Title'), 'placeholder': ''}, + {'name': 'ckan.main_css', 'control': 'select', 'options': styles, 'label': _('Style'), 'placeholder': ''}, + {'name': 'ckan.site_description', 'control': 'input', 'label': _('Site Tag Line'), 'placeholder': ''}, + {'name': 'ckan.site_logo', 'control': 'image_upload', 'label': _('Site Tag Logo'), 'placeholder': '', 'upload_enabled':h.uploads_enabled(), + 'field_url': 'ckan.site_logo', 'field_upload': 'logo_upload', 'field_clear': 'clear_logo_upload'}, + {'name': 'ckan.site_about', 'control': 'markdown', 'label': _('About'), 'placeholder': _('About page text')}, + {'name': 'ckan.site_intro_text', 'control': 'markdown', 'label': _('Intro Text'), 'placeholder': _('Text on home page')}, + {'name': 'ckan.site_custom_css', 'control': 'textarea', 'label': _('Custom CSS'), 'placeholder': _('Customisable css inserted into the page header')}, + {'name': 'ckan.homepage_style', 'control': 'select', 'options': homepages, 'label': _('Homepage'), 'placeholder': ''}, + ] + return items + + def reset_config(self): + '''FIXME: This method is probably not doing what people would expect. + It will reset the configuration to values cached when CKAN started. + If these were coming from the database during startup, that's the + ones that will get applied on reset, not the ones in the ini file. + Only after restarting the server and having CKAN reset the values + from the ini file (as the db ones are not there anymore) will these + be used. + ''' + + if 'cancel' in request.params: + h.redirect_to(controller='admin', action='config') + + if request.method == 'POST': + # remove sys info items + for item in self._get_config_form_items(): + name = item['name'] + model.delete_system_info(name) + # reset to values in config + app_globals.reset() + h.redirect_to(controller='admin', action='config') + + return base.render('admin/confirm_reset.html') + + def config(self): + + items = self._get_config_form_items() + data = request.POST + if 'save' in data: + try: + # really? + data_dict = logic.clean_dict( + dict_fns.unflatten( + logic.tuplize_dict( + logic.parse_params( + request.POST, ignore_keys=CACHE_PARAMETERS)))) + + del data_dict['save'] + + data = logic.get_action('config_option_update')( + {'user': c.user}, data_dict) + except logic.ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'form_items': items} + return base.render('admin/config.html', extra_vars=vars) + + h.redirect_to(controller='admin', action='config') + + schema = logic.schema.update_configuration_schema() + data = {} + for key in schema: + data[key] = config.get(key) + + vars = {'data': data, 'errors': {}, 'form_items': items} + return base.render('admin/config.html', + extra_vars=vars) + + def index(self): + #now pass the list of sysadmins + c.sysadmins = [a.name for a in get_sysadmins()] + + return base.render('admin/index.html') + + + def trash(self): + c.deleted_revisions = model.Session.query( + model.Revision).filter_by(state=model.State.DELETED) + c.deleted_packages = model.Session.query( + model.Package).filter_by(state=model.State.DELETED) + if not request.params or (len(request.params) == 1 and '__no_cache__' + in request.params): + return base.render('admin/trash.html') + else: + # NB: we repeat retrieval of of revisions + # this is obviously inefficient (but probably not *that* bad) + # but has to be done to avoid (odd) sqlalchemy errors (when doing + # purge packages) of form: "this object already exists in the + # session" + msgs = [] + if ('purge-packages' in request.params) or ('purge-revisions' in + request.params): + if 'purge-packages' in request.params: + revs_to_purge = [] + for pkg in c.deleted_packages: + revisions = [x[0] for x in pkg.all_related_revisions] + # ensure no accidental purging of other(non-deleted) + # packages initially just avoided purging revisions + # where non-deleted packages were affected + # however this lead to confusing outcomes e.g. + # we succesfully deleted revision in which package + # was deleted (so package now active again) but no + # other revisions + problem = False + for r in revisions: + affected_pkgs = set(r.packages).\ + difference(set(c.deleted_packages)) + if affected_pkgs: + msg = _('Cannot purge package %s as ' + 'associated revision %s includes ' + 'non-deleted packages %s') + msg = msg % (pkg.id, r.id, [pkg.id for r + in affected_pkgs]) + msgs.append(msg) + problem = True + break + if not problem: + revs_to_purge += [r.id for r in revisions] + model.Session.remove() + else: + revs_to_purge = [rev.id for rev in c.deleted_revisions] + revs_to_purge = list(set(revs_to_purge)) + for id in revs_to_purge: + revision = model.Session.query(model.Revision).get(id) + try: + # TODO deleting the head revision corrupts the edit + # page Ensure that whatever 'head' pointer is used + # gets moved down to the next revision + model.repo.purge_revision(revision, leave_record=False) + except Exception as inst: + msg = _('Problem purging revision %s: %s') % (id, inst) + msgs.append(msg) + h.flash_success(_('Purge complete')) + else: + msgs.append(_('Action not implemented.')) + + for msg in msgs: + h.flash_error(msg) + h.redirect_to(controller='admin', action='trash') diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/api.py b/venv/lib/python2.7/site-packages/ckan/controllers/api.py new file mode 100644 index 00000000..0093aed7 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/api.py @@ -0,0 +1,624 @@ +# encoding: utf-8 + +import os.path +import logging +import cgi +import datetime +import glob +import urllib + +from webob.multidict import UnicodeMultiDict +from paste.util.multidict import MultiDict +from six import text_type + +import ckan.model as model +import ckan.logic as logic +import ckan.lib.base as base +import ckan.lib.helpers as h +import ckan.lib.search as search +import ckan.lib.navl.dictization_functions +import ckan.lib.jsonp as jsonp +import ckan.lib.munge as munge + +from ckan.views import identify_user + +from ckan.common import _, c, request, response + + +log = logging.getLogger(__name__) + +# shortcuts +get_action = logic.get_action +NotAuthorized = logic.NotAuthorized +NotFound = logic.NotFound +ValidationError = logic.ValidationError +DataError = ckan.lib.navl.dictization_functions.DataError + +IGNORE_FIELDS = ['q'] +CONTENT_TYPES = { + 'text': 'text/plain;charset=utf-8', + 'html': 'text/html;charset=utf-8', + 'json': 'application/json;charset=utf-8', + 'javascript': 'application/javascript;charset=utf-8', +} + + +class ApiController(base.BaseController): + + _actions = {} + + def __call__(self, environ, start_response): + # we need to intercept and fix the api version + # as it will have a "/" at the start + routes_dict = environ['pylons.routes_dict'] + api_version = routes_dict.get('ver') + if api_version: + api_version = api_version[1:] + routes_dict['ver'] = int(api_version) + + identify_user() + try: + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + logic.check_access('site_read', context) + except NotAuthorized: + response_msg = self._finish(403, + _('Not authorized to see this page')) + # Call start_response manually instead of the parent __call__ + # because we want to end the request instead of continuing. + response_msg = response_msg.encode('utf8') + body = '%i %s' % (response.status_int, response_msg) + start_response(body, response.headers.items()) + return [response_msg] + + # avoid status_code_redirect intercepting error responses + environ['pylons.status_code_redirect'] = True + return base.BaseController.__call__(self, environ, start_response) + + def _finish(self, status_int, response_data=None, + content_type='text'): + '''When a controller method has completed, call this method + to prepare the response. + @return response message - return this value from the controller + method + e.g. return self._finish(404, 'Package not found') + ''' + assert(isinstance(status_int, int)) + response.status_int = status_int + response_msg = '' + if response_data is not None: + response.headers['Content-Type'] = CONTENT_TYPES[content_type] + if content_type == 'json': + response_msg = h.json.dumps( + response_data, + for_json=True) # handle objects with for_json methods + else: + response_msg = response_data + # Support "JSONP" callback. + if (status_int == 200 and + 'callback' in request.params and + request.method == 'GET'): + # escape callback to remove '<', '&', '>' chars + callback = cgi.escape(request.params['callback']) + response_msg = self._wrap_jsonp(callback, response_msg) + response.headers['Content-Type'] = CONTENT_TYPES['javascript'] + return response_msg + + def _finish_ok(self, response_data=None, + content_type='json', + resource_location=None): + '''If a controller method has completed successfully then + calling this method will prepare the response. + @param resource_location - specify this if a new + resource has just been created. + @return response message - return this value from the controller + method + e.g. return self._finish_ok(pkg_dict) + ''' + if resource_location: + status_int = 201 + self._set_response_header('Location', resource_location) + else: + status_int = 200 + + return self._finish(status_int, response_data, content_type) + + def _finish_not_authz(self, extra_msg=None): + response_data = _('Access denied') + if extra_msg: + response_data = '%s - %s' % (response_data, extra_msg) + return self._finish(403, response_data, 'json') + + def _finish_not_found(self, extra_msg=None): + response_data = _('Not found') + if extra_msg: + response_data = '%s - %s' % (response_data, extra_msg) + return self._finish(404, response_data, 'json') + + def _finish_bad_request(self, extra_msg=None): + response_data = _('Bad request') + if extra_msg: + response_data = '%s - %s' % (response_data, extra_msg) + return self._finish(400, response_data, 'json') + + def _wrap_jsonp(self, callback, response_msg): + return '%s(%s);' % (callback, response_msg) + + def _set_response_header(self, name, value): + try: + value = str(value) + except Exception as inst: + msg = "Couldn't convert '%s' header value '%s' to string: %s" % \ + (name, value, inst) + raise Exception(msg) + response.headers[name] = value + + def get_api(self, ver=None): + response_data = {} + response_data['version'] = ver + return self._finish_ok(response_data) + + def action(self, logic_function, ver=None): + try: + function = get_action(logic_function) + except KeyError: + log.info('Can\'t find logic function: %s', logic_function) + return self._finish_bad_request( + _('Action name not known: %s') % logic_function) + + context = {'model': model, 'session': model.Session, 'user': c.user, + 'api_version': ver, 'auth_user_obj': c.userobj} + model.Session()._context = context + + return_dict = {'help': h.url_for(controller='api', + action='action', + logic_function='help_show', + ver=ver, + name=logic_function, + qualified=True, + ) + } + try: + side_effect_free = getattr(function, 'side_effect_free', False) + request_data = self._get_request_data( + try_url_params=side_effect_free) + except ValueError as inst: + log.info('Bad Action API request data: %s', inst) + return self._finish_bad_request( + _('JSON Error: %s') % inst) + if not isinstance(request_data, dict): + # this occurs if request_data is blank + log.info('Bad Action API request data - not dict: %r', + request_data) + return self._finish_bad_request( + _('Bad request data: %s') % + 'Request data JSON decoded to %r but ' + 'it needs to be a dictionary.' % request_data) + # if callback is specified we do not want to send that to the search + if 'callback' in request_data: + del request_data['callback'] + c.user = None + c.userobj = None + context['user'] = None + context['auth_user_obj'] = None + try: + result = function(context, request_data) + return_dict['success'] = True + return_dict['result'] = result + except DataError as e: + log.info('Format incorrect (Action API): %s - %s', + e.error, request_data) + return_dict['error'] = {'__type': 'Integrity Error', + 'message': e.error, + 'data': request_data} + return_dict['success'] = False + return self._finish(400, return_dict, content_type='json') + except NotAuthorized as e: + return_dict['error'] = {'__type': 'Authorization Error', + 'message': _('Access denied')} + return_dict['success'] = False + + if text_type(e): + return_dict['error']['message'] += u': %s' % e + + return self._finish(403, return_dict, content_type='json') + except NotFound as e: + return_dict['error'] = {'__type': 'Not Found Error', + 'message': _('Not found')} + if text_type(e): + return_dict['error']['message'] += u': %s' % e + return_dict['success'] = False + return self._finish(404, return_dict, content_type='json') + except ValidationError as e: + error_dict = e.error_dict + error_dict['__type'] = 'Validation Error' + return_dict['error'] = error_dict + return_dict['success'] = False + # CS nasty_string ignore + log.info('Validation error (Action API): %r', str(e.error_dict)) + return self._finish(409, return_dict, content_type='json') + except search.SearchQueryError as e: + return_dict['error'] = {'__type': 'Search Query Error', + 'message': 'Search Query is invalid: %r' % + e.args} + return_dict['success'] = False + return self._finish(400, return_dict, content_type='json') + except search.SearchError as e: + return_dict['error'] = {'__type': 'Search Error', + 'message': 'Search error: %r' % e.args} + return_dict['success'] = False + return self._finish(409, return_dict, content_type='json') + except search.SearchIndexError as e: + return_dict['error'] = { + '__type': 'Search Index Error', + 'message': 'Unable to add package to search index: %s' % + str(e)} + return_dict['success'] = False + return self._finish(500, return_dict, content_type='json') + return self._finish_ok(return_dict) + + def _get_action_from_map(self, action_map, register, subregister): + ''' Helper function to get the action function specified in + the action map''' + + # translate old package calls to use dataset + if register == 'package': + register = 'dataset' + + action = action_map.get((register, subregister)) + if not action: + action = action_map.get(register) + if action: + return get_action(action) + + def search(self, ver=None, register=None): + + log.debug('search %s params: %r', register, request.params) + if register == 'revision': + since_time = None + if 'since_id' in request.params: + id = request.params['since_id'] + if not id: + return self._finish_bad_request( + _(u'No revision specified')) + rev = model.Session.query(model.Revision).get(id) + if rev is None: + return self._finish_not_found( + _(u'There is no revision with id: %s') % id) + since_time = rev.timestamp + elif 'since_time' in request.params: + since_time_str = request.params['since_time'] + try: + since_time = h.date_str_to_datetime(since_time_str) + except ValueError as inst: + return self._finish_bad_request('ValueError: %s' % inst) + else: + return self._finish_bad_request( + _("Missing search term ('since_id=UUID' or " + + " 'since_time=TIMESTAMP')")) + revs = model.Session.query(model.Revision) \ + .filter(model.Revision.timestamp > since_time) \ + .order_by(model.Revision.timestamp) \ + .limit(50) # reasonable enough for a page + return self._finish_ok([rev.id for rev in revs]) + elif register in ['dataset', 'package', 'resource']: + try: + params = MultiDict(self._get_search_params(request.params)) + except ValueError as e: + return self._finish_bad_request( + _('Could not read parameters: %r' % e)) + + # if using API v2, default to returning the package ID if + # no field list is specified + if register in ['dataset', 'package'] and not params.get('fl'): + params['fl'] = 'id' if ver == 2 else 'name' + + try: + if register == 'resource': + query = search.query_for(model.Resource) + + # resource search still uses ckan query parser + options = search.QueryOptions() + for k, v in params.items(): + if (k in search.DEFAULT_OPTIONS.keys()): + options[k] = v + options.update(params) + options.username = c.user + options.search_tags = False + options.return_objects = False + query_fields = MultiDict() + for field, value in params.items(): + field = field.strip() + if field in search.DEFAULT_OPTIONS.keys() or \ + field in IGNORE_FIELDS: + continue + values = [value] + if isinstance(value, list): + values = value + for v in values: + query_fields.add(field, v) + + results = query.run( + query=params.get('q'), + fields=query_fields, + options=options + ) + else: + # For package searches in API v3 and higher, we can pass + # parameters straight to Solr. + if ver in [1, 2]: + # Otherwise, put all unrecognised ones into the q + # parameter + params = search.\ + convert_legacy_parameters_to_solr(params) + query = search.query_for(model.Package) + + # Remove any existing fq param and set the capacity to + # public + if 'fq' in params: + del params['fq'] + params['fq'] = '+capacity:public' + # if callback is specified we do not want to send that to + # the search + if 'callback' in params: + del params['callback'] + results = query.run(params) + return self._finish_ok(results) + except search.SearchError as e: + log.exception(e) + return self._finish_bad_request( + _('Bad search option: %s') % e) + else: + return self._finish_not_found( + _('Unknown register: %s') % register) + + @classmethod + def _get_search_params(cls, request_params): + if 'qjson' in request_params: + try: + qjson_param = request_params['qjson'].replace('\\\\u', '\\u') + params = h.json.loads(qjson_param, encoding='utf8') + except ValueError as e: + raise ValueError(_('Malformed qjson value: %r') + % e) + elif len(request_params) == 1 and \ + len(request_params.values()[0]) < 2 and \ + request_params.keys()[0].startswith('{'): + # e.g. {some-json}='1' or {some-json}='' + params = h.json.loads(request_params.keys()[0], encoding='utf8') + else: + params = request_params + if not isinstance(params, (UnicodeMultiDict, dict)): + msg = _('Request params must be in form ' + + 'of a json encoded dictionary.') + raise ValueError(msg) + return params + + @jsonp.jsonpify + def user_autocomplete(self): + q = request.params.get('q', '') + limit = request.params.get('limit', 20) + user_list = [] + if q: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + data_dict = {'q': q, 'limit': limit} + + user_list = get_action('user_autocomplete')(context, data_dict) + return user_list + + @jsonp.jsonpify + def group_autocomplete(self): + q = request.params.get('q', '') + t = request.params.get('type', None) + limit = request.params.get('limit', 20) + try: + limit = int(limit) + except: + limit = 20 + limit = min(50, limit) + + query = model.Group.search_by_name_or_title(q, t) + + def convert_to_dict(user): + out = {} + for k in ['id', 'name', 'title']: + out[k] = getattr(user, k) + return out + + query = query.limit(limit) + out = map(convert_to_dict, query.all()) + return out + + @jsonp.jsonpify + def organization_autocomplete(self): + q = request.params.get('q', '') + limit = request.params.get('limit', 20) + organization_list = [] + + if q: + context = {'user': c.user, 'model': model} + data_dict = {'q': q, 'limit': limit} + organization_list = \ + get_action('organization_autocomplete')(context, data_dict) + return organization_list + + def dataset_autocomplete(self): + q = request.params.get('incomplete', '') + limit = request.params.get('limit', 10) + package_dicts = [] + if q: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + data_dict = {'q': q, 'limit': limit} + + package_dicts = get_action('package_autocomplete')(context, + data_dict) + + resultSet = {'ResultSet': {'Result': package_dicts}} + return self._finish_ok(resultSet) + + def tag_autocomplete(self): + q = request.str_params.get('incomplete', '') + q = text_type(urllib.unquote(q), 'utf-8') + limit = request.params.get('limit', 10) + tag_names = [] + if q: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + data_dict = {'q': q, 'limit': limit} + + tag_names = get_action('tag_autocomplete')(context, data_dict) + + resultSet = { + 'ResultSet': { + 'Result': [{'Name': tag} for tag in tag_names] + } + } + return self._finish_ok(resultSet) + + def format_autocomplete(self): + q = request.params.get('incomplete', '') + limit = request.params.get('limit', 5) + formats = [] + if q: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'q': q, 'limit': limit} + formats = get_action('format_autocomplete')(context, data_dict) + + resultSet = { + 'ResultSet': { + 'Result': [{'Format': format} for format in formats] + } + } + return self._finish_ok(resultSet) + + def munge_package_name(self): + name = request.params.get('name') + munged_name = munge.munge_name(name) + return self._finish_ok(munged_name) + + def munge_title_to_package_name(self): + name = request.params.get('title') or request.params.get('name') + munged_name = munge.munge_title_to_name(name) + return self._finish_ok(munged_name) + + def munge_tag(self): + tag = request.params.get('tag') or request.params.get('name') + munged_tag = munge.munge_tag(tag) + return self._finish_ok(munged_tag) + + def i18n_js_translations(self, lang): + ''' translation strings for front end ''' + ckan_path = os.path.join(os.path.dirname(__file__), '..') + source = os.path.abspath(os.path.join(ckan_path, 'public', + 'base', 'i18n', '%s.js' % lang)) + response.headers['Content-Type'] = CONTENT_TYPES['json'] + if not os.path.exists(source): + return '{}' + f = open(source, 'r') + return(f) + + @classmethod + def _get_request_data(cls, try_url_params=False): + '''Returns a dictionary, extracted from a request. + + If there is no data, None or "" is returned. + ValueError will be raised if the data is not a JSON-formatted dict. + + The data is retrieved as a JSON-encoded dictionary from the request + body. Or, if the `try_url_params` argument is True and the request is + a GET request, then an attempt is made to read the data from the url + parameters of the request. + + try_url_params + If try_url_params is False, then the data_dict is read from the + request body. + + If try_url_params is True and the request is a GET request then the + data is read from the url parameters. The resulting dict will only + be 1 level deep, with the url-param fields being the keys. If a + single key has more than one value specified, then the value will + be a list of strings, otherwise just a string. + + ''' + def make_unicode(entity): + '''Cast bare strings and strings in lists or dicts to Unicode. ''' + if isinstance(entity, str): + return text_type(entity) + elif isinstance(entity, list): + new_items = [] + for item in entity: + new_items.append(make_unicode(item)) + return new_items + elif isinstance(entity, dict): + new_dict = {} + for key, val in entity.items(): + new_dict[key] = make_unicode(val) + return new_dict + else: + return entity + + cls.log.debug('Retrieving request params: %r', request.params) + cls.log.debug('Retrieving request POST: %r', request.POST) + cls.log.debug('Retrieving request GET: %r', request.GET) + request_data = None + if request.POST and request.content_type == 'multipart/form-data': + request_data = dict(request.POST) + elif request.POST: + try: + keys = request.POST.keys() + # Parsing breaks if there is a = in the value, so for now + # we will check if the data is actually all in a single key + if keys and request.POST[keys[0]] in [u'1', u'']: + request_data = keys[0] + else: + request_data = urllib.unquote_plus(request.body) + except Exception as inst: + msg = "Could not find the POST data: %r : %s" % \ + (request.POST, inst) + raise ValueError(msg) + + elif try_url_params and request.GET: + return request.GET.mixed() + + else: + try: + if request.method in ['POST', 'PUT']: + request_data = request.body + else: + request_data = None + except Exception as inst: + msg = "Could not extract request body data: %s" % \ + (inst) + raise ValueError(msg) + cls.log.debug('Retrieved request body: %r', request.body) + if not request_data: + if not try_url_params: + msg = "Invalid request. Please use POST method" \ + " for your request" + raise ValueError(msg) + else: + request_data = {} + if request_data and request.content_type != 'multipart/form-data': + try: + request_data = h.json.loads(request_data, encoding='utf8') + except ValueError as e: + raise ValueError('Error decoding JSON data. ' + 'Error: %r ' + 'JSON data extracted from the request: %r' % + (e, request_data)) + if not isinstance(request_data, dict): + raise ValueError('Request data JSON decoded to %r but ' + 'it needs to be a dictionary.' % request_data) + # ensure unicode values + for key, val in request_data.items(): + # if val is str then assume it is ascii, since json converts + # utf8 encoded JSON to unicode + request_data[key] = make_unicode(val) + cls.log.debug('Request data extracted: %r', request_data) + return request_data diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/error.py b/venv/lib/python2.7/site-packages/ckan/controllers/error.py new file mode 100644 index 00000000..41e5c82f --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/error.py @@ -0,0 +1,65 @@ +# encoding: utf-8 + +import cgi + +from paste.urlparser import PkgResourcesParser +from pylons import request +from pylons.controllers.util import forward +from webhelpers.html.builder import literal + +from ckan.common import c +from ckan.lib.base import BaseController +from ckan.lib.base import render + + +class ErrorController(BaseController): + """Generates error documents as and when they are required. + + The ErrorDocuments middleware forwards to ErrorController when error + related status codes are returned from the application. + + This behaviour can be altered by changing the parameters to the + ErrorDocuments middleware in your config/middleware.py file. + + """ + + def document(self): + """Render the error document""" + original_request = request.environ.get('pylons.original_request') + original_response = request.environ.get('pylons.original_response') + # When a request (e.g. from a web-bot) is direct, not a redirect + # from a page. #1176 + if not original_response: + return 'There is no error.' + # Bypass error template for API operations. + if (original_request and + (original_request.path.startswith('/api') or + original_request.path.startswith('/fanstatic'))): + return original_response.body + # If the charset has been lost on the middleware stack, use the + # default one (utf-8) + if not original_response.charset and original_response.default_charset: + original_response.charset = original_response.default_charset + # Otherwise, decorate original response with error template. + content = literal(original_response.unicode_body) or \ + cgi.escape(request.GET.get('message', '')) + prefix = request.environ.get('SCRIPT_NAME', ''), + code = cgi.escape(request.GET.get('code', + str(original_response.status_int))), + extra_vars = {'code': code, 'content': content, 'prefix': prefix} + return render('error_document_template.html', extra_vars=extra_vars) + + def img(self, id): + """Serve Pylons' stock images""" + return self._serve_file('/'.join(['media/img', id])) + + def style(self, id): + """Serve Pylons' stock stylesheets""" + return self._serve_file('/'.join(['media/style', id])) + + def _serve_file(self, path): + """Call Paste's FileApp (a WSGI application) to serve the file + at the specified path + """ + request.environ['PATH_INFO'] = '/%s' % path + return forward(PkgResourcesParser('pylons', 'pylons')) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/feed.py b/venv/lib/python2.7/site-packages/ckan/controllers/feed.py new file mode 100644 index 00000000..d14f0276 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/feed.py @@ -0,0 +1,575 @@ +# encoding: utf-8 + +""" +The feed controller produces Atom feeds of datasets. + + * datasets belonging to a particular group. + * datasets tagged with a particular tag. + * datasets that match an arbitrary search. + +TODO: document paged feeds + +Other feeds are available elsewhere in the code, but these provide feeds +of the revision history, rather than a feed of datasets. + + * ``ckan/controllers/group.py`` provides an atom feed of a group's + revision history. + * ``ckan/controllers/package.py`` provides an atom feed of a dataset's + revision history. + * ``ckan/controllers/revision.py`` provides an atom feed of the repository's + revision history. + +""" +# TODO fix imports +import logging +import urlparse + +from six import text_type +import webhelpers.feedgenerator + +import ckan.lib.base as base +import ckan.lib.helpers as h +import ckan.logic as logic +import ckan.model as model +import ckan.plugins as plugins + +from ckan.common import _, config, c, request, response, json + +# TODO make the item list configurable +ITEMS_LIMIT = 20 + +log = logging.getLogger(__name__) + + +def _package_search(data_dict): + """ + Helper method that wraps the package_search action. + + * unless overridden, sorts results by metadata_modified date + * unless overridden, sets a default item limit + """ + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + if 'sort' not in data_dict or not data_dict['sort']: + data_dict['sort'] = 'metadata_modified desc' + + if 'rows' not in data_dict or not data_dict['rows']: + data_dict['rows'] = ITEMS_LIMIT + + # package_search action modifies the data_dict, so keep our copy intact. + query = logic.get_action('package_search')(context, data_dict.copy()) + + return query['count'], query['results'] + + +def _create_atom_id(resource_path, authority_name=None, date_string=None): + """ + Helper method that creates an atom id for a feed or entry. + + An id must be unique, and must not change over time. ie - once published, + it represents an atom feed or entry uniquely, and forever. See [4]: + + When an Atom Document is relocated, migrated, syndicated, + republished, exported, or imported, the content of its atom:id + element MUST NOT change. Put another way, an atom:id element + pertains to all instantiations of a particular Atom entry or feed; + revisions retain the same content in their atom:id elements. It is + suggested that the atom:id element be stored along with the + associated resource. + + resource_path + The resource path that uniquely identifies the feed or element. This + mustn't be something that changes over time for a given entry or feed. + And does not necessarily need to be resolvable. + + e.g. ``"/group/933f3857-79fd-4beb-a835-c0349e31ce76"`` could represent + the feed of datasets belonging to the identified group. + + authority_name + The domain name or email address of the publisher of the feed. See [3] + for more details. If ``None`` then the domain name is taken from the + config file. First trying ``ckan.feeds.authority_name``, and failing + that, it uses ``ckan.site_url``. Again, this should not change over + time. + + date_string + A string representing a date on which the authority_name is owned by + the publisher of the feed. + + e.g. ``"2012-03-22"`` + + Again, this should not change over time. + + If date_string is None, then an attempt is made to read the config + option ``ckan.feeds.date``. If that's not available, + then the date_string is not used in the generation of the atom id. + + Following the methods outlined in [1], [2] and [3], this function produces + tagURIs like: + ``"tag:thedatahub.org,2012:/group/933f3857-79fd-4beb-a835-c0349e31ce76"``. + + If not enough information is provide to produce a valid tagURI, then only + the resource_path is used, e.g.: :: + + "http://thedatahub.org/group/933f3857-79fd-4beb-a835-c0349e31ce76" + + or + + "/group/933f3857-79fd-4beb-a835-c0349e31ce76" + + The latter of which is only used if no site_url is available. And it + should be noted will result in an invalid feed. + + [1] http://web.archive.org/web/20110514113830/http://diveintomark.org/\ + archives/2004/05/28/howto-atom-id + [2] http://www.taguri.org/ + [3] http://tools.ietf.org/html/rfc4151#section-2.1 + [4] http://www.ietf.org/rfc/rfc4287 + """ + if authority_name is None: + authority_name = config.get('ckan.feeds.authority_name', '').strip() + if not authority_name: + site_url = config.get('ckan.site_url', '').strip() + authority_name = urlparse.urlparse(site_url).netloc + + if not authority_name: + log.warning('No authority_name available for feed generation. ' + 'Generated feed will be invalid.') + + if date_string is None: + date_string = config.get('ckan.feeds.date', '') + + if not date_string: + log.warning('No date_string available for feed generation. ' + 'Please set the "ckan.feeds.date" config value.') + + # Don't generate a tagURI without a date as it wouldn't be valid. + # This is best we can do, and if the site_url is not set, then + # this still results in an invalid feed. + site_url = config.get('ckan.site_url', '') + return '/'.join([site_url, resource_path]) + + tagging_entity = ','.join([authority_name, date_string]) + return ':'.join(['tag', tagging_entity, resource_path]) + + +class FeedController(base.BaseController): + base_url = config.get('ckan.site_url') + + def _alternate_url(self, params, **kwargs): + search_params = params.copy() + search_params.update(kwargs) + + # Can't count on the page sizes being the same on the search results + # view. So provide an alternate link to the first page, regardless + # of the page we're looking at in the feed. + search_params.pop('page', None) + return self._feed_url(search_params, + controller='package', + action='search') + + def _group_or_organization(self, obj_dict, is_org): + + data_dict, params = self._parse_url_params() + if is_org: + key = 'owner_org' + value = obj_dict['id'] + group_type = 'organization' + else: + key = 'groups' + value = obj_dict['name'] + group_type = 'group' + + data_dict['fq'] = '{0}:"{1}"'.format(key, value) + + item_count, results = _package_search(data_dict) + + navigation_urls = self._navigation_urls(params, + item_count=item_count, + limit=data_dict['rows'], + controller='feed', + action=group_type, + id=obj_dict['name']) + feed_url = self._feed_url(params, + controller='feed', + action=group_type, + id=obj_dict['name']) + + site_title = config.get('ckan.site_title', 'CKAN') + if is_org: + guid = _create_atom_id(u'/feeds/organization/%s.atom' % + obj_dict['name']) + alternate_url = self._alternate_url(params, + organization=obj_dict['name']) + desc = u'Recently created or updated datasets on %s '\ + 'by organization: "%s"' % (site_title, obj_dict['title']) + title = u'%s - Organization: "%s"' % (site_title, + obj_dict['title']) + + else: # is group + guid = _create_atom_id(u'/feeds/group/%s.atom' % + obj_dict['name']) + alternate_url = self._alternate_url(params, + groups=obj_dict['name']) + desc = u'Recently created or updated datasets on %s '\ + 'by group: "%s"' % (site_title, obj_dict['title']) + title = u'%s - Group: "%s"' %\ + (site_title, obj_dict['title']) + + return self.output_feed(results, + feed_title=title, + feed_description=desc, + feed_link=alternate_url, + feed_guid=guid, + feed_url=feed_url, + navigation_urls=navigation_urls) + + def group(self, id): + try: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + group_dict = logic.get_action('group_show')(context, {'id': id}) + except logic.NotFound: + base.abort(404, _('Group not found')) + + return self._group_or_organization(group_dict, is_org=False) + + def organization(self, id): + try: + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + group_dict = logic.get_action('organization_show')(context, + {'id': id}) + except logic.NotFound: + base.abort(404, _('Organization not found')) + + return self._group_or_organization(group_dict, is_org=True) + + def tag(self, id): + data_dict, params = self._parse_url_params() + data_dict['fq'] = 'tags:"%s"' % id + + item_count, results = _package_search(data_dict) + + navigation_urls = self._navigation_urls(params, + item_count=item_count, + limit=data_dict['rows'], + controller='feed', + action='tag', + id=id) + + feed_url = self._feed_url(params, + controller='feed', + action='tag', + id=id) + + alternate_url = self._alternate_url(params, tags=id) + + site_title = config.get('ckan.site_title', 'CKAN') + + return self.output_feed(results, + feed_title=u'%s - Tag: "%s"' % + (site_title, id), + feed_description=u'Recently created or ' + 'updated datasets on %s by tag: "%s"' % + (site_title, id), + feed_link=alternate_url, + feed_guid=_create_atom_id + (u'/feeds/tag/%s.atom' % id), + feed_url=feed_url, + navigation_urls=navigation_urls) + + def general(self): + data_dict, params = self._parse_url_params() + data_dict['q'] = '*:*' + + item_count, results = _package_search(data_dict) + + navigation_urls = self._navigation_urls(params, + item_count=item_count, + limit=data_dict['rows'], + controller='feed', + action='general') + + feed_url = self._feed_url(params, + controller='feed', + action='general') + + alternate_url = self._alternate_url(params) + + site_title = config.get('ckan.site_title', 'CKAN') + + return self.output_feed(results, + feed_title=site_title, + feed_description=u'Recently created or ' + 'updated datasets on %s' % site_title, + feed_link=alternate_url, + feed_guid=_create_atom_id + (u'/feeds/dataset.atom'), + feed_url=feed_url, + navigation_urls=navigation_urls) + + # TODO check search params + def custom(self): + q = request.params.get('q', u'') + fq = '' + search_params = {} + for (param, value) in request.params.items(): + if param not in ['q', 'page', 'sort'] \ + and len(value) and not param.startswith('_'): + search_params[param] = value + fq += ' %s:"%s"' % (param, value) + + page = h.get_page_number(request.params) + + limit = ITEMS_LIMIT + data_dict = { + 'q': q, + 'fq': fq, + 'start': (page - 1) * limit, + 'rows': limit, + 'sort': request.params.get('sort', None), + } + + item_count, results = _package_search(data_dict) + + navigation_urls = self._navigation_urls(request.params, + item_count=item_count, + limit=data_dict['rows'], + controller='feed', + action='custom') + + feed_url = self._feed_url(request.params, + controller='feed', + action='custom') + + atom_url = h._url_with_params('/feeds/custom.atom', + search_params.items()) + + alternate_url = self._alternate_url(request.params) + + site_title = config.get('ckan.site_title', 'CKAN') + + return self.output_feed(results, + feed_title=u'%s - Custom query' % site_title, + feed_description=u'Recently created or updated' + ' datasets on %s. Custom query: \'%s\'' % + (site_title, q), + feed_link=alternate_url, + feed_guid=_create_atom_id(atom_url), + feed_url=feed_url, + navigation_urls=navigation_urls) + + def output_feed(self, results, feed_title, feed_description, + feed_link, feed_url, navigation_urls, feed_guid): + author_name = config.get('ckan.feeds.author_name', '').strip() or \ + config.get('ckan.site_id', '').strip() + author_link = config.get('ckan.feeds.author_link', '').strip() or \ + config.get('ckan.site_url', '').strip() + + # TODO language + feed_class = None + for plugin in plugins.PluginImplementations(plugins.IFeed): + if hasattr(plugin, 'get_feed_class'): + feed_class = plugin.get_feed_class() + + if not feed_class: + feed_class = _FixedAtom1Feed + + feed = feed_class( + feed_title, + feed_link, + feed_description, + language=u'en', + author_name=author_name, + author_link=author_link, + feed_guid=feed_guid, + feed_url=feed_url, + previous_page=navigation_urls['previous'], + next_page=navigation_urls['next'], + first_page=navigation_urls['first'], + last_page=navigation_urls['last'], + ) + + for pkg in results: + additional_fields = {} + + for plugin in plugins.PluginImplementations(plugins.IFeed): + if hasattr(plugin, 'get_item_additional_fields'): + additional_fields = plugin.get_item_additional_fields(pkg) + + feed.add_item( + title=pkg.get('title', ''), + link=self.base_url + h.url_for(controller='package', + action='read', + id=pkg['id']), + description=pkg.get('notes', ''), + updated=h.date_str_to_datetime(pkg.get('metadata_modified')), + published=h.date_str_to_datetime(pkg.get('metadata_created')), + unique_id=_create_atom_id(u'/dataset/%s' % pkg['id']), + author_name=pkg.get('author', ''), + author_email=pkg.get('author_email', ''), + categories=[t['name'] for t in pkg.get('tags', [])], + enclosure=webhelpers.feedgenerator.Enclosure( + h.url_for(controller='api', + register='package', + action='show', + id=pkg['name'], + ver='3', + qualified=True), + text_type(len(json.dumps(pkg))), # TODO fix this + u'application/json'), + **additional_fields + ) + response.content_type = feed.mime_type + return feed.writeString('utf-8') + + # CLASS PRIVATE METHODS # + + def _feed_url(self, query, controller, action, **kwargs): + """ + Constructs the url for the given action. Encoding the query + parameters. + """ + path = h.url_for(controller=controller, action=action, **kwargs) + return h._url_with_params(self.base_url + path, query.items()) + + def _navigation_urls(self, query, controller, action, + item_count, limit, **kwargs): + """ + Constructs and returns first, last, prev and next links for paging + """ + urls = dict((rel, None) for rel in 'previous next first last'.split()) + + page = int(query.get('page', 1)) + + # first: remove any page parameter + first_query = query.copy() + first_query.pop('page', None) + urls['first'] = self._feed_url(first_query, controller, + action, **kwargs) + + # last: add last page parameter + last_page = (item_count / limit) + min(1, item_count % limit) + last_query = query.copy() + last_query['page'] = last_page + urls['last'] = self._feed_url(last_query, controller, + action, **kwargs) + + # previous + if page > 1: + previous_query = query.copy() + previous_query['page'] = page - 1 + urls['previous'] = self._feed_url(previous_query, controller, + action, **kwargs) + else: + urls['previous'] = None + + # next + if page < last_page: + next_query = query.copy() + next_query['page'] = page + 1 + urls['next'] = self._feed_url(next_query, controller, + action, **kwargs) + else: + urls['next'] = None + + return urls + + def _parse_url_params(self): + """ + Constructs a search-query dict from the URL query parameters. + + Returns the constructed search-query dict, and the valid URL + query parameters. + """ + page = h.get_page_number(request.params) + + limit = ITEMS_LIMIT + data_dict = { + 'start': (page - 1) * limit, + 'rows': limit + } + + # Filter ignored query parameters + valid_params = ['page'] + params = dict((p, request.params.get(p)) for p in valid_params + if p in request.params) + return data_dict, params + + +# TODO paginated feed +class _FixedAtom1Feed(webhelpers.feedgenerator.Atom1Feed): + """ + The Atom1Feed defined in webhelpers doesn't provide all the fields we + might want to publish. + + * In Atom1Feed, each is created with identical and + fields. See [1] (webhelpers 1.2) for details. + + So, this class fixes that by allow an item to set both an and + field. + + * In Atom1Feed, the feed description is not used. So this class uses the + field to publish that. + + [1] https://bitbucket.org/bbangert/webhelpers/src/f5867a319abf/\ + webhelpers/feedgenerator.py#cl-373 + """ + + def add_item(self, *args, **kwargs): + """ + Drop the pubdate field from the new item. + """ + if 'pubdate' in kwargs: + kwargs.pop('pubdate') + defaults = {'updated': None, 'published': None} + defaults.update(kwargs) + super(_FixedAtom1Feed, self).add_item(*args, **defaults) + + def latest_post_date(self): + """ + Calculates the latest post date from the 'updated' fields, + rather than the 'pubdate' fields. + """ + updates = [item['updated'] for item in self.items + if item['updated'] is not None] + if not len(updates): # delegate to parent for default behaviour + return super(_FixedAtom1Feed, self).latest_post_date() + return max(updates) + + def add_item_elements(self, handler, item): + """ + Add the and fields to each entry that's written + to the handler. + """ + super(_FixedAtom1Feed, self).add_item_elements(handler, item) + + dfunc = webhelpers.feedgenerator.rfc3339_date + + if(item['updated']): + handler.addQuickElement(u'updated', + dfunc(item['updated']).decode('utf-8')) + + if(item['published']): + handler.addQuickElement(u'published', + dfunc(item['published']).decode('utf-8')) + + def add_root_elements(self, handler): + """ + Add additional feed fields. + + * Add the field from the feed description + * Add links other pages of the logical feed. + """ + super(_FixedAtom1Feed, self).add_root_elements(handler) + + handler.addQuickElement(u'subtitle', self.feed['description']) + + for page in ['previous', 'next', 'first', 'last']: + if self.feed.get(page + '_page', None): + handler.addQuickElement(u'link', u'', + {'rel': page, + 'href': + self.feed.get(page + '_page')}) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/group.py b/venv/lib/python2.7/site-packages/ckan/controllers/group.py new file mode 100644 index 00000000..6aa3d1f7 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/group.py @@ -0,0 +1,933 @@ +# encoding: utf-8 + +import logging +import datetime +from urllib import urlencode + +from pylons.i18n import get_lang +from six import string_types, text_type + +import ckan.lib.base as base +import ckan.lib.helpers as h +import ckan.lib.navl.dictization_functions as dict_fns +import ckan.logic as logic +import ckan.lib.search as search +import ckan.model as model +import ckan.authz as authz +import ckan.lib.plugins +import ckan.plugins as plugins +from ckan.common import OrderedDict, c, config, request, _ + +log = logging.getLogger(__name__) + +render = base.render +abort = base.abort + +NotFound = logic.NotFound +NotAuthorized = logic.NotAuthorized +ValidationError = logic.ValidationError +check_access = logic.check_access +get_action = logic.get_action +tuplize_dict = logic.tuplize_dict +clean_dict = logic.clean_dict +parse_params = logic.parse_params + +lookup_group_plugin = ckan.lib.plugins.lookup_group_plugin +lookup_group_controller = ckan.lib.plugins.lookup_group_controller + + +class GroupController(base.BaseController): + + group_types = ['group'] + + # hooks for subclasses + + def _group_form(self, group_type=None): + return lookup_group_plugin(group_type).group_form() + + def _form_to_db_schema(self, group_type=None): + return lookup_group_plugin(group_type).form_to_db_schema() + + def _db_to_form_schema(self, group_type=None): + '''This is an interface to manipulate data from the database + into a format suitable for the form (optional)''' + return lookup_group_plugin(group_type).db_to_form_schema() + + def _setup_template_variables(self, context, data_dict, group_type=None): + if 'type' not in data_dict: + data_dict['type'] = group_type + return lookup_group_plugin(group_type).\ + setup_template_variables(context, data_dict) + + def _new_template(self, group_type): + return lookup_group_plugin(group_type).new_template() + + def _index_template(self, group_type): + return lookup_group_plugin(group_type).index_template() + + def _about_template(self, group_type): + return lookup_group_plugin(group_type).about_template() + + def _read_template(self, group_type): + return lookup_group_plugin(group_type).read_template() + + def _history_template(self, group_type): + return lookup_group_plugin(group_type).history_template() + + def _edit_template(self, group_type): + return lookup_group_plugin(group_type).edit_template() + + def _activity_template(self, group_type): + return lookup_group_plugin(group_type).activity_template() + + def _admins_template(self, group_type): + return lookup_group_plugin(group_type).admins_template() + + def _bulk_process_template(self, group_type): + return lookup_group_plugin(group_type).bulk_process_template() + + # end hooks + def _replace_group_org(self, string): + ''' substitute organization for group if this is an org''' + return string + + def _action(self, action_name): + ''' select the correct group/org action ''' + return get_action(self._replace_group_org(action_name)) + + def _check_access(self, action_name, *args, **kw): + ''' select the correct group/org check_access ''' + return check_access(self._replace_group_org(action_name), *args, **kw) + + def _render_template(self, template_name, group_type): + ''' render the correct group/org template ''' + return render(self._replace_group_org(template_name), + extra_vars={'group_type': group_type}) + + def _guess_group_type(self, expecting_name=False): + """ + Guess the type of group from the URL. + * The default url '/group/xyz' returns None + * group_type is unicode + * this handles the case where there is a prefix on the URL + (such as /data/organization) + """ + parts = [x for x in request.path.split('/') if x] + + idx = -1 + if expecting_name: + idx = -2 + + gt = parts[idx] + + return gt + + def _ensure_controller_matches_group_type(self, id): + group = model.Group.get(id) + if group is None: + abort(404, _('Group not found')) + if group.type not in self.group_types: + abort(404, _('Incorrect group type')) + return group.type + + @classmethod + def add_group_type(cls, group_type): + ''' Notify this controller that it is to be used for a particular + group_type. (Called on plugin registration.) + ''' + cls.group_types.append(group_type) + + def index(self): + group_type = self._guess_group_type() + + page = h.get_page_number(request.params) or 1 + items_per_page = 21 + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'with_private': False} + + q = c.q = request.params.get('q', '') + sort_by = c.sort_by_selected = request.params.get('sort') + try: + self._check_access('site_read', context) + self._check_access('group_list', context) + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + # pass user info to context as needed to view private datasets of + # orgs correctly + if c.userobj: + context['user_id'] = c.userobj.id + context['user_is_admin'] = c.userobj.sysadmin + + try: + data_dict_global_results = { + 'all_fields': False, + 'q': q, + 'sort': sort_by, + 'type': group_type or 'group', + } + global_results = self._action('group_list')( + context, data_dict_global_results) + except ValidationError as e: + if e.error_dict and e.error_dict.get('message'): + msg = e.error_dict['message'] + else: + msg = str(e) + h.flash_error(msg) + c.page = h.Page([], 0) + return render(self._index_template(group_type), + extra_vars={'group_type': group_type}) + + data_dict_page_results = { + 'all_fields': True, + 'q': q, + 'sort': sort_by, + 'type': group_type or 'group', + 'limit': items_per_page, + 'offset': items_per_page * (page - 1), + 'include_extras': True + } + page_results = self._action('group_list')(context, + data_dict_page_results) + + c.page = h.Page( + collection=global_results, + page=page, + url=h.pager_url, + items_per_page=items_per_page, + ) + + c.page.items = page_results + return render(self._index_template(group_type), + extra_vars={'group_type': group_type}) + + def read(self, id, limit=20): + group_type = self._ensure_controller_matches_group_type( + id.split('@')[0]) + + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'schema': self._db_to_form_schema(group_type=group_type), + 'for_view': True} + data_dict = {'id': id, 'type': group_type} + + # unicode format (decoded from utf8) + c.q = request.params.get('q', '') + + try: + # Do not query for the group datasets when dictizing, as they will + # be ignored and get requested on the controller anyway + data_dict['include_datasets'] = False + c.group_dict = self._action('group_show')(context, data_dict) + c.group = context['group'] + except (NotFound, NotAuthorized): + abort(404, _('Group not found')) + + self._read(id, limit, group_type) + return render(self._read_template(c.group_dict['type']), + extra_vars={'group_type': group_type}) + + def _read(self, id, limit, group_type): + ''' This is common code used by both read and bulk_process''' + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'schema': self._db_to_form_schema(group_type=group_type), + 'for_view': True, 'extras_as_string': True} + + q = c.q = request.params.get('q', '') + # Search within group + if c.group_dict.get('is_organization'): + fq = 'owner_org:"%s"' % c.group_dict.get('id') + else: + fq = 'groups:"%s"' % c.group_dict.get('name') + + c.description_formatted = \ + h.render_markdown(c.group_dict.get('description')) + + context['return_query'] = True + + page = h.get_page_number(request.params) + + # most search operations should reset the page counter: + params_nopage = [(k, v) for k, v in request.params.items() + if k != 'page'] + sort_by = request.params.get('sort', None) + + def search_url(params): + controller = lookup_group_controller(group_type) + action = 'bulk_process' if c.action == 'bulk_process' else 'read' + url = h.url_for(controller=controller, action=action, id=id) + params = [(k, v.encode('utf-8') if isinstance(v, string_types) + else str(v)) for k, v in params] + return url + u'?' + urlencode(params) + + def drill_down_url(**by): + return h.add_url_param(alternative_url=None, + controller='group', action='read', + extras=dict(id=c.group_dict.get('name')), + new_params=by) + + c.drill_down_url = drill_down_url + + def remove_field(key, value=None, replace=None): + controller = lookup_group_controller(group_type) + return h.remove_url_param(key, value=value, replace=replace, + controller=controller, action='read', + extras=dict(id=c.group_dict.get('name'))) + + c.remove_field = remove_field + + def pager_url(q=None, page=None): + params = list(params_nopage) + params.append(('page', page)) + return search_url(params) + + try: + c.fields = [] + c.fields_grouped = {} + search_extras = {} + for (param, value) in request.params.items(): + if param not in ['q', 'page', 'sort'] \ + and len(value) and not param.startswith('_'): + if not param.startswith('ext_'): + c.fields.append((param, value)) + q += ' %s: "%s"' % (param, value) + if param not in c.fields_grouped: + c.fields_grouped[param] = [value] + else: + c.fields_grouped[param].append(value) + else: + search_extras[param] = value + + facets = OrderedDict() + + default_facet_titles = {'organization': _('Organizations'), + 'groups': _('Groups'), + 'tags': _('Tags'), + 'res_format': _('Formats'), + 'license_id': _('Licenses')} + + for facet in h.facets(): + if facet in default_facet_titles: + facets[facet] = default_facet_titles[facet] + else: + facets[facet] = facet + + # Facet titles + self._update_facet_titles(facets, group_type) + + c.facet_titles = facets + + data_dict = { + 'q': q, + 'fq': fq, + 'include_private': True, + 'facet.field': facets.keys(), + 'rows': limit, + 'sort': sort_by, + 'start': (page - 1) * limit, + 'extras': search_extras + } + + context_ = dict((k, v) for (k, v) in context.items() + if k != 'schema') + query = get_action('package_search')(context_, data_dict) + + c.page = h.Page( + collection=query['results'], + page=page, + url=pager_url, + item_count=query['count'], + items_per_page=limit + ) + + c.group_dict['package_count'] = query['count'] + + c.search_facets = query['search_facets'] + c.search_facets_limits = {} + for facet in c.search_facets.keys(): + limit = int(request.params.get('_%s_limit' % facet, + config.get('search.facets.default', 10))) + c.search_facets_limits[facet] = limit + c.page.items = query['results'] + + c.sort_by_selected = sort_by + + except search.SearchError as se: + log.error('Group search error: %r', se.args) + c.query_error = True + c.page = h.Page(collection=[]) + + self._setup_template_variables(context, {'id': id}, + group_type=group_type) + + def _update_facet_titles(self, facets, group_type): + for plugin in plugins.PluginImplementations(plugins.IFacets): + facets = plugin.group_facets( + facets, group_type, None) + + def bulk_process(self, id): + ''' Allow bulk processing of datasets for an organization. Make + private/public or delete. For organization admins.''' + + group_type = self._ensure_controller_matches_group_type( + id.split('@')[0]) + + # check we are org admin + + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'schema': self._db_to_form_schema(group_type=group_type), + 'for_view': True, 'extras_as_string': True} + data_dict = {'id': id, 'type': group_type} + + try: + self._check_access('bulk_update_public', context, {'org_id': id}) + # Do not query for the group datasets when dictizing, as they will + # be ignored and get requested on the controller anyway + data_dict['include_datasets'] = False + c.group_dict = self._action('group_show')(context, data_dict) + c.group = context['group'] + except NotFound: + abort(404, _('Group not found')) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + + if not c.group_dict['is_organization']: + # FIXME: better error + raise Exception('Must be an organization') + + # use different form names so that ie7 can be detected + form_names = set(["bulk_action.public", "bulk_action.delete", + "bulk_action.private"]) + actions_in_form = set(request.params.keys()) + actions = form_names.intersection(actions_in_form) + # If no action then just show the datasets + if not actions: + # unicode format (decoded from utf8) + limit = 500 + self._read(id, limit, group_type) + c.packages = c.page.items + return render(self._bulk_process_template(group_type), + extra_vars={'group_type': group_type}) + + # ie7 puts all buttons in form params but puts submitted one twice + for key, value in dict(request.params.dict_of_lists()).items(): + if len(value) == 2: + action = key.split('.')[-1] + break + else: + # normal good browser form submission + action = actions.pop().split('.')[-1] + + # process the action first find the datasets to perform the action on. + # they are prefixed by dataset_ in the form data + datasets = [] + for param in request.params: + if param.startswith('dataset_'): + datasets.append(param[8:]) + + action_functions = { + 'private': 'bulk_update_private', + 'public': 'bulk_update_public', + 'delete': 'bulk_update_delete', + } + + data_dict = {'datasets': datasets, 'org_id': c.group_dict['id']} + + try: + get_action(action_functions[action])(context, data_dict) + except NotAuthorized: + abort(403, _('Not authorized to perform bulk update')) + h.redirect_to(group_type + '_bulk_process', id=id) + + def new(self, data=None, errors=None, error_summary=None): + if data and 'type' in data: + group_type = data['type'] + else: + group_type = self._guess_group_type(True) + if data: + data['type'] = group_type + + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'save': 'save' in request.params, + 'parent': request.params.get('parent', None)} + try: + self._check_access('group_create', context) + except NotAuthorized: + abort(403, _('Unauthorized to create a group')) + + if context['save'] and not data and request.method == 'POST': + return self._save_new(context, group_type) + + data = data or {} + if not data.get('image_url', '').startswith('http'): + data.pop('image_url', None) + + errors = errors or {} + error_summary = error_summary or {} + vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'action': 'new', + 'group_type': group_type} + + self._setup_template_variables(context, data, group_type=group_type) + c.form = render(self._group_form(group_type=group_type), + extra_vars=vars) + return render(self._new_template(group_type), + extra_vars={'group_type': group_type}) + + def edit(self, id, data=None, errors=None, error_summary=None): + group_type = self._ensure_controller_matches_group_type( + id.split('@')[0]) + + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'save': 'save' in request.params, + 'for_edit': True, + 'parent': request.params.get('parent', None) + } + data_dict = {'id': id, 'include_datasets': False} + + if context['save'] and not data and request.method == 'POST': + return self._save_edit(id, context) + + try: + data_dict['include_datasets'] = False + old_data = self._action('group_show')(context, data_dict) + c.grouptitle = old_data.get('title') + c.groupname = old_data.get('name') + data = data or old_data + except (NotFound, NotAuthorized): + abort(404, _('Group not found')) + + group = context.get("group") + c.group = group + c.group_dict = self._action('group_show')(context, data_dict) + + try: + self._check_access('group_update', context) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + + errors = errors or {} + vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'action': 'edit', + 'group_type': group_type} + + self._setup_template_variables(context, data, group_type=group_type) + c.form = render(self._group_form(group_type), extra_vars=vars) + return render(self._edit_template(c.group.type), + extra_vars={'group_type': group_type}) + + def _save_new(self, context, group_type=None): + try: + data_dict = clean_dict(dict_fns.unflatten( + tuplize_dict(parse_params(request.params)))) + data_dict['type'] = group_type or 'group' + context['message'] = data_dict.get('log_message', '') + data_dict['users'] = [{'name': c.user, 'capacity': 'admin'}] + group = self._action('group_create')(context, data_dict) + + # Redirect to the appropriate _read route for the type of group + h.redirect_to(group['type'] + '_read', id=group['name']) + except (NotFound, NotAuthorized) as e: + abort(404, _('Group not found')) + except dict_fns.DataError: + abort(400, _(u'Integrity Error')) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.new(data_dict, errors, error_summary) + + def _force_reindex(self, grp): + ''' When the group name has changed, we need to force a reindex + of the datasets within the group, otherwise they will stop + appearing on the read page for the group (as they're connected via + the group name)''' + group = model.Group.get(grp['name']) + for dataset in group.packages(): + search.rebuild(dataset.name) + + def _save_edit(self, id, context): + try: + data_dict = clean_dict(dict_fns.unflatten( + tuplize_dict(parse_params(request.params)))) + context['message'] = data_dict.get('log_message', '') + data_dict['id'] = id + context['allow_partial_update'] = True + group = self._action('group_update')(context, data_dict) + if id != group['name']: + self._force_reindex(group) + + h.redirect_to('%s_read' % group['type'], id=group['name']) + except (NotFound, NotAuthorized) as e: + abort(404, _('Group not found')) + except dict_fns.DataError: + abort(400, _(u'Integrity Error')) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.edit(id, data_dict, errors, error_summary) + + def authz(self, id): + group = model.Group.get(id) + if group is None: + abort(404, _('Group not found')) + group_type = group.type + if group_type not in self.group_types: + abort(404, _('Incorrect group type')) + c.groupname = group.name + c.grouptitle = group.display_name + + try: + context = \ + {'model': model, 'user': c.user, 'group': group} + self._check_access('group_edit_permissions', context) + c.authz_editable = True + c.group = context['group'] + except NotAuthorized: + c.authz_editable = False + if not c.authz_editable: + abort(403, + _('User %r not authorized to edit %s authorizations') % + (c.user, id)) + + roles = self._handle_update_of_authz(group) + self._prepare_authz_info_for_render(roles) + return render('group/authz.html', + extra_vars={'group_type': group_type}) + + def delete(self, id): + group_type = self._ensure_controller_matches_group_type(id) + + if 'cancel' in request.params: + h.redirect_to(group_type + '_edit', id=id) + + context = {'model': model, 'session': model.Session, + 'user': c.user} + + try: + self._check_access('group_delete', context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to delete group %s') % '') + + try: + if request.method == 'POST': + self._action('group_delete')(context, {'id': id}) + if group_type == 'organization': + h.flash_notice(_('Organization has been deleted.')) + elif group_type == 'group': + h.flash_notice(_('Group has been deleted.')) + else: + h.flash_notice(_('%s has been deleted.') + % _(group_type.capitalize())) + h.redirect_to(group_type + '_index') + c.group_dict = self._action('group_show')(context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to delete group %s') % '') + except NotFound: + abort(404, _('Group not found')) + except ValidationError as e: + h.flash_error(e.error_dict['message']) + h.redirect_to(controller='organization', action='read', id=id) + return self._render_template('group/confirm_delete.html', group_type) + + def members(self, id): + group_type = self._ensure_controller_matches_group_type(id) + + context = {'model': model, 'session': model.Session, + 'user': c.user} + + data_dict = {'id': id} + try: + check_access('group_edit_permissions', context, data_dict) + except NotAuthorized: + abort(403, + _('User %r not authorized to edit members of %s') % (c.user, + id)) + try: + c.members = self._action('member_list')( + context, {'id': id, 'object_type': 'user'} + ) + data_dict['include_datasets'] = False + c.group_dict = self._action('group_show')(context, data_dict) + except NotFound: + abort(404, _('Group not found')) + + return self._render_template('group/members.html', group_type) + + def member_new(self, id): + group_type = self._ensure_controller_matches_group_type(id) + + context = {'model': model, 'session': model.Session, + 'user': c.user} + try: + self._check_access('group_member_create', context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to create group %s members') % '') + + try: + data_dict = {'id': id} + data_dict['include_datasets'] = False + c.group_dict = self._action('group_show')(context, data_dict) + c.roles = self._action('member_roles_list')( + context, {'group_type': group_type} + ) + + if request.method == 'POST': + data_dict = clean_dict(dict_fns.unflatten( + tuplize_dict(parse_params(request.params)))) + data_dict['id'] = id + + email = data_dict.get('email') + + if email: + user_data_dict = { + 'email': email, + 'group_id': data_dict['id'], + 'role': data_dict['role'] + } + del data_dict['email'] + user_dict = self._action('user_invite')( + context, user_data_dict) + data_dict['username'] = user_dict['name'] + + c.group_dict = self._action('group_member_create')( + context, data_dict) + + h.redirect_to(group_type + '_members', id=id) + else: + user = request.params.get('user') + if user: + c.user_dict = \ + get_action('user_show')(context, {'id': user}) + c.user_role = \ + authz.users_role_for_group_or_org(id, user) or 'member' + else: + c.user_role = 'member' + except NotAuthorized: + abort(403, _('Unauthorized to add member to group %s') % '') + except NotFound: + abort(404, _('Group not found')) + except ValidationError as e: + h.flash_error(e.error_summary) + return self._render_template('group/member_new.html', group_type) + + def member_delete(self, id): + group_type = self._ensure_controller_matches_group_type(id) + + if 'cancel' in request.params: + h.redirect_to(group_type + '_members', id=id) + + context = {'model': model, 'session': model.Session, + 'user': c.user} + + try: + self._check_access('group_member_delete', context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to delete group %s members') % '') + + try: + user_id = request.params.get('user') + if request.method == 'POST': + self._action('group_member_delete')( + context, {'id': id, 'user_id': user_id}) + h.flash_notice(_('Group member has been deleted.')) + h.redirect_to(group_type + '_members', id=id) + c.user_dict = self._action('user_show')(context, {'id': user_id}) + c.user_id = user_id + c.group_id = id + except NotAuthorized: + abort(403, _('Unauthorized to delete group %s members') % '') + except NotFound: + abort(404, _('Group not found')) + return self._render_template('group/confirm_delete_member.html', + group_type) + + def history(self, id): + group_type = self._ensure_controller_matches_group_type(id) + if 'diff' in request.params or 'selected1' in request.params: + try: + params = {'id': request.params.getone('group_name'), + 'diff': request.params.getone('selected1'), + 'oldid': request.params.getone('selected2'), + } + except KeyError: + if 'group_name' in dict(request.params): + id = request.params.getone('group_name') + c.error = \ + _('Select two revisions before doing the comparison.') + else: + params['diff_entity'] = 'group' + h.redirect_to(controller='revision', action='diff', **params) + + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'schema': self._db_to_form_schema()} + data_dict = {'id': id} + try: + c.group_dict = self._action('group_show')(context, data_dict) + c.group_revisions = self._action('group_revision_list')(context, + data_dict) + # TODO: remove + # Still necessary for the authz check in group/layout.html + c.group = context['group'] + except (NotFound, NotAuthorized): + abort(404, _('Group not found')) + + format = request.params.get('format', '') + if format == 'atom': + # Generate and return Atom 1.0 document. + from webhelpers.feedgenerator import Atom1Feed + feed = Atom1Feed( + title=_(u'CKAN Group Revision History'), + link=h.url_for( + group_type + '_read', + id=c.group_dict['name']), + description=_(u'Recent changes to CKAN Group: ') + + c.group_dict['display_name'], + language=text_type(get_lang()), + ) + for revision_dict in c.group_revisions: + revision_date = h.date_str_to_datetime( + revision_dict['timestamp']) + try: + dayHorizon = int(request.params.get('days')) + except: + dayHorizon = 30 + dayAge = (datetime.datetime.now() - revision_date).days + if dayAge >= dayHorizon: + break + if revision_dict['message']: + item_title = u'%s' % revision_dict['message'].\ + split('\n')[0] + else: + item_title = u'%s' % revision_dict['id'] + item_link = h.url_for(controller='revision', action='read', + id=revision_dict['id']) + item_description = _('Log message: ') + item_description += '%s' % (revision_dict['message'] or '') + item_author_name = revision_dict['author'] + item_pubdate = revision_date + feed.add_item( + title=item_title, + link=item_link, + description=item_description, + author_name=item_author_name, + pubdate=item_pubdate, + ) + feed.content_type = 'application/atom+xml' + return feed.writeString('utf-8') + return render(self._history_template(group_type), + extra_vars={'group_type': group_type}) + + def activity(self, id, offset=0): + '''Render this group's public activity stream page.''' + + group_type = self._ensure_controller_matches_group_type(id) + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True} + try: + c.group_dict = self._get_group_dict(id) + except (NotFound, NotAuthorized): + abort(404, _('Group not found')) + + try: + # Add the group's activity stream (already rendered to HTML) to the + # template context for the group/read.html + # template to retrieve later. + c.group_activity_stream = self._action('group_activity_list_html')( + context, {'id': c.group_dict['id'], 'offset': offset}) + + except ValidationError as error: + base.abort(400) + + return render(self._activity_template(group_type), + extra_vars={'group_type': group_type}) + + def follow(self, id): + '''Start following this group.''' + self._ensure_controller_matches_group_type(id) + context = {'model': model, + 'session': model.Session, + 'user': c.user} + data_dict = {'id': id} + try: + get_action('follow_group')(context, data_dict) + group_dict = get_action('group_show')(context, data_dict) + h.flash_success(_("You are now following {0}").format( + group_dict['title'])) + except ValidationError as e: + error_message = (e.message or e.error_summary + or e.error_dict) + h.flash_error(error_message) + except NotAuthorized as e: + h.flash_error(e.message) + h.redirect_to(controller='group', action='read', id=id) + + def unfollow(self, id): + '''Stop following this group.''' + self._ensure_controller_matches_group_type(id) + context = {'model': model, + 'session': model.Session, + 'user': c.user} + data_dict = {'id': id} + try: + get_action('unfollow_group')(context, data_dict) + group_dict = get_action('group_show')(context, data_dict) + h.flash_success(_("You are no longer following {0}").format( + group_dict['title'])) + except ValidationError as e: + error_message = (e.message or e.error_summary + or e.error_dict) + h.flash_error(error_message) + except (NotFound, NotAuthorized) as e: + error_message = e.message + h.flash_error(error_message) + h.redirect_to(controller='group', action='read', id=id) + + def followers(self, id): + group_type = self._ensure_controller_matches_group_type(id) + context = {'model': model, 'session': model.Session, + 'user': c.user} + c.group_dict = self._get_group_dict(id) + try: + c.followers = \ + get_action('group_follower_list')(context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to view followers %s') % '') + return render('group/followers.html', + extra_vars={'group_type': group_type}) + + def admins(self, id): + group_type = self._ensure_controller_matches_group_type(id) + c.group_dict = self._get_group_dict(id) + c.admins = authz.get_group_or_org_admin_ids(id) + return render(self._admins_template(c.group_dict['type']), + extra_vars={'group_type': group_type}) + + def about(self, id): + group_type = self._ensure_controller_matches_group_type(id) + context = {'model': model, 'session': model.Session, + 'user': c.user} + c.group_dict = self._get_group_dict(id) + group_type = c.group_dict['type'] + self._setup_template_variables(context, {'id': id}, + group_type=group_type) + return render(self._about_template(group_type), + extra_vars={'group_type': group_type}) + + def _get_group_dict(self, id): + ''' returns the result of group_show action or aborts if there is a + problem ''' + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'for_view': True} + try: + return self._action('group_show')( + context, {'id': id, 'include_datasets': False}) + except (NotFound, NotAuthorized): + abort(404, _('Group not found')) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/home.py b/venv/lib/python2.7/site-packages/ckan/controllers/home.py new file mode 100644 index 00000000..bce91660 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/home.py @@ -0,0 +1,99 @@ +# encoding: utf-8 + +from pylons import cache +import sqlalchemy.exc + +import ckan.logic as logic +import ckan.lib.search as search +import ckan.lib.base as base +import ckan.model as model +import ckan.lib.helpers as h + +from ckan.common import _, config, c + +CACHE_PARAMETERS = ['__cache', '__no_cache__'] + + +class HomeController(base.BaseController): + repo = model.repo + + def __before__(self, action, **env): + try: + base.BaseController.__before__(self, action, **env) + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + logic.check_access('site_read', context) + except logic.NotAuthorized: + base.abort(403, _('Not authorized to see this page')) + except (sqlalchemy.exc.ProgrammingError, + sqlalchemy.exc.OperationalError) as e: + # postgres and sqlite errors for missing tables + msg = str(e) + if ('relation' in msg and 'does not exist' in msg) or \ + ('no such table' in msg): + # table missing, major database problem + base.abort(503, _('This site is currently off-line. Database ' + 'is not initialised.')) + # TODO: send an email to the admin person (#1285) + else: + raise + + def index(self): + try: + # package search + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = { + 'q': '*:*', + 'facet.field': h.facets(), + 'rows': 4, + 'start': 0, + 'sort': 'views_recent desc', + 'fq': 'capacity:"public"' + } + query = logic.get_action('package_search')( + context, data_dict) + c.search_facets = query['search_facets'] + c.package_count = query['count'] + c.datasets = query['results'] + + c.facet_titles = { + 'organization': _('Organizations'), + 'groups': _('Groups'), + 'tags': _('Tags'), + 'res_format': _('Formats'), + 'license': _('Licenses'), + } + + except search.SearchError: + c.package_count = 0 + + if c.userobj and not c.userobj.email: + url = h.url_for('user.edit') + msg = _('Please update your profile' + ' and add your email address. ') % url + \ + _('%s uses your email address' + ' if you need to reset your password.') \ + % config.get('ckan.site_title') + h.flash_notice(msg, allow_html=True) + + return base.render('home/index.html', cache_force=True) + + def license(self): + return base.render('home/license.html') + + def about(self): + return base.render('home/about.html') + + def cache(self, id): + '''Manual way to clear the caches''' + if id == 'clear': + wui_caches = ['stats'] + for cache_name in wui_caches: + cache_ = cache.get_cache(cache_name, type='dbm') + cache_.clear() + return 'Cleared caches: %s' % ', '.join(wui_caches) + + def cors_options(self, url=None): + # just return 200 OK and empty data + return '' diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/organization.py b/venv/lib/python2.7/site-packages/ckan/controllers/organization.py new file mode 100644 index 00000000..292b8af4 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/organization.py @@ -0,0 +1,30 @@ +# encoding: utf-8 + +import re + +import ckan.controllers.group as group +import ckan.plugins as plugins + + +class OrganizationController(group.GroupController): + ''' The organization controller is for Organizations, which are implemented + as Groups with is_organization=True and group_type='organization'. It works + the same as the group controller apart from: + * templates and logic action/auth functions are sometimes customized + (switched using _replace_group_org) + * 'bulk_process' action only works for organizations + + Nearly all the code for both is in the GroupController (for historical + reasons). + ''' + + group_types = ['organization'] + + def _replace_group_org(self, string): + ''' substitute organization for group if this is an org''' + return re.sub('^group', 'organization', string) + + def _update_facet_titles(self, facets, group_type): + for plugin in plugins.PluginImplementations(plugins.IFacets): + facets = plugin.organization_facets( + facets, group_type, None) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/package.py b/venv/lib/python2.7/site-packages/ckan/controllers/package.py new file mode 100644 index 00000000..fb28d93a --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/package.py @@ -0,0 +1,1617 @@ +# encoding: utf-8 + +import logging +from urllib import urlencode +import datetime +import mimetypes +import cgi + +from ckan.common import config +from paste.deploy.converters import asbool +import paste.fileapp +from six import string_types, text_type + +import ckan.logic as logic +import ckan.lib.base as base +import ckan.lib.i18n as i18n +import ckan.lib.maintain as maintain +import ckan.lib.navl.dictization_functions as dict_fns +import ckan.lib.helpers as h +import ckan.model as model +import ckan.lib.datapreview as datapreview +import ckan.lib.plugins +import ckan.lib.uploader as uploader +import ckan.plugins as p +import ckan.lib.render + +from ckan.common import OrderedDict, _, json, request, c, response +from home import CACHE_PARAMETERS + +log = logging.getLogger(__name__) + +render = base.render +abort = base.abort + +NotFound = logic.NotFound +NotAuthorized = logic.NotAuthorized +ValidationError = logic.ValidationError +check_access = logic.check_access +get_action = logic.get_action +tuplize_dict = logic.tuplize_dict +clean_dict = logic.clean_dict +parse_params = logic.parse_params +flatten_to_string_key = logic.flatten_to_string_key + +lookup_package_plugin = ckan.lib.plugins.lookup_package_plugin + + +def _encode_params(params): + return [(k, v.encode('utf-8') if isinstance(v, string_types) else str(v)) + for k, v in params] + + +def url_with_params(url, params): + params = _encode_params(params) + return url + u'?' + urlencode(params) + + +def search_url(params, package_type=None): + if not package_type or package_type == 'dataset': + url = h.url_for(controller='package', action='search') + else: + url = h.url_for('{0}_search'.format(package_type)) + return url_with_params(url, params) + + +class PackageController(base.BaseController): + + def _package_form(self, package_type=None): + return lookup_package_plugin(package_type).package_form() + + def _setup_template_variables(self, context, data_dict, package_type=None): + return lookup_package_plugin(package_type).\ + setup_template_variables(context, data_dict) + + def _new_template(self, package_type): + return lookup_package_plugin(package_type).new_template() + + def _edit_template(self, package_type): + return lookup_package_plugin(package_type).edit_template() + + def _search_template(self, package_type): + return lookup_package_plugin(package_type).search_template() + + def _read_template(self, package_type): + return lookup_package_plugin(package_type).read_template() + + def _history_template(self, package_type): + return lookup_package_plugin(package_type).history_template() + + def _resource_form(self, package_type): + # backwards compatibility with plugins not inheriting from + # DefaultDatasetPlugin and not implmenting resource_form + plugin = lookup_package_plugin(package_type) + if hasattr(plugin, 'resource_form'): + result = plugin.resource_form() + if result is not None: + return result + return lookup_package_plugin().resource_form() + + def _resource_template(self, package_type): + # backwards compatibility with plugins not inheriting from + # DefaultDatasetPlugin and not implmenting resource_template + plugin = lookup_package_plugin(package_type) + if hasattr(plugin, 'resource_template'): + result = plugin.resource_template() + if result is not None: + return result + return lookup_package_plugin().resource_template() + + def _guess_package_type(self, expecting_name=False): + """ + Guess the type of package from the URL handling the case + where there is a prefix on the URL (such as /data/package) + """ + + # Special case: if the rot URL '/' has been redirected to the package + # controller (e.g. by an IRoutes extension) then there's nothing to do + # here. + if request.path == '/': + return 'dataset' + + parts = [x for x in request.path.split('/') if x] + + idx = -1 + if expecting_name: + idx = -2 + + pt = parts[idx] + if pt == 'package': + pt = 'dataset' + + return pt + + def search(self): + from ckan.lib.search import SearchError, SearchQueryError + + package_type = self._guess_package_type() + + try: + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + check_access('site_read', context) + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + # unicode format (decoded from utf8) + q = c.q = request.params.get('q', u'') + c.query_error = False + page = h.get_page_number(request.params) + + limit = int(config.get('ckan.datasets_per_page', 20)) + + # most search operations should reset the page counter: + params_nopage = [(k, v) for k, v in request.params.items() + if k != 'page'] + + def drill_down_url(alternative_url=None, **by): + return h.add_url_param(alternative_url=alternative_url, + controller='package', action='search', + new_params=by) + + c.drill_down_url = drill_down_url + + def remove_field(key, value=None, replace=None): + return h.remove_url_param(key, value=value, replace=replace, + controller='package', action='search', + alternative_url=package_type) + + c.remove_field = remove_field + + sort_by = request.params.get('sort', None) + params_nosort = [(k, v) for k, v in params_nopage if k != 'sort'] + + def _sort_by(fields): + """ + Sort by the given list of fields. + + Each entry in the list is a 2-tuple: (fieldname, sort_order) + + eg - [('metadata_modified', 'desc'), ('name', 'asc')] + + If fields is empty, then the default ordering is used. + """ + params = params_nosort[:] + + if fields: + sort_string = ', '.join('%s %s' % f for f in fields) + params.append(('sort', sort_string)) + return search_url(params, package_type) + + c.sort_by = _sort_by + if not sort_by: + c.sort_by_fields = [] + else: + c.sort_by_fields = [field.split()[0] + for field in sort_by.split(',')] + + def pager_url(q=None, page=None): + params = list(params_nopage) + params.append(('page', page)) + return search_url(params, package_type) + + c.search_url_params = urlencode(_encode_params(params_nopage)) + + try: + c.fields = [] + # c.fields_grouped will contain a dict of params containing + # a list of values eg {'tags':['tag1', 'tag2']} + c.fields_grouped = {} + search_extras = {} + fq = '' + for (param, value) in request.params.items(): + if param not in ['q', 'page', 'sort'] \ + and len(value) and not param.startswith('_'): + if not param.startswith('ext_'): + c.fields.append((param, value)) + fq += ' %s:"%s"' % (param, value) + if param not in c.fields_grouped: + c.fields_grouped[param] = [value] + else: + c.fields_grouped[param].append(value) + else: + search_extras[param] = value + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + + # Unless changed via config options, don't show other dataset + # types any search page. Potential alternatives are do show them + # on the default search page (dataset) or on one other search page + search_all_type = config.get( + 'ckan.search.show_all_types', 'dataset') + search_all = False + + try: + # If the "type" is set to True or False, convert to bool + # and we know that no type was specified, so use traditional + # behaviour of applying this only to dataset type + search_all = asbool(search_all_type) + search_all_type = 'dataset' + # Otherwise we treat as a string representing a type + except ValueError: + search_all = True + + if not package_type: + package_type = 'dataset' + + if not search_all or package_type != search_all_type: + # Only show datasets of this particular type + fq += ' +dataset_type:{type}'.format(type=package_type) + + facets = OrderedDict() + + default_facet_titles = { + 'organization': _('Organizations'), + 'groups': _('Groups'), + 'tags': _('Tags'), + 'res_format': _('Formats'), + 'license_id': _('Licenses'), + } + + for facet in h.facets(): + if facet in default_facet_titles: + facets[facet] = default_facet_titles[facet] + else: + facets[facet] = facet + + # Facet titles + for plugin in p.PluginImplementations(p.IFacets): + facets = plugin.dataset_facets(facets, package_type) + + c.facet_titles = facets + + data_dict = { + 'q': q, + 'fq': fq.strip(), + 'facet.field': facets.keys(), + 'rows': limit, + 'start': (page - 1) * limit, + 'sort': sort_by, + 'extras': search_extras, + 'include_private': asbool(config.get( + 'ckan.search.default_include_private', True)), + } + + query = get_action('package_search')(context, data_dict) + c.sort_by_selected = query['sort'] + + c.page = h.Page( + collection=query['results'], + page=page, + url=pager_url, + item_count=query['count'], + items_per_page=limit + ) + c.search_facets = query['search_facets'] + c.page.items = query['results'] + except SearchQueryError as se: + # User's search parameters are invalid, in such a way that is not + # achievable with the web interface, so return a proper error to + # discourage spiders which are the main cause of this. + log.info('Dataset search query rejected: %r', se.args) + abort(400, _('Invalid search query: {error_message}') + .format(error_message=str(se))) + except SearchError as se: + # May be bad input from the user, but may also be more serious like + # bad code causing a SOLR syntax error, or a problem connecting to + # SOLR + log.error('Dataset search error: %r', se.args) + c.query_error = True + c.search_facets = {} + c.page = h.Page(collection=[]) + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + c.search_facets_limits = {} + for facet in c.search_facets.keys(): + try: + limit = int(request.params.get('_%s_limit' % facet, + int(config.get('search.facets.default', 10)))) + except ValueError: + abort(400, _('Parameter "{parameter_name}" is not ' + 'an integer').format( + parameter_name='_%s_limit' % facet)) + c.search_facets_limits[facet] = limit + + self._setup_template_variables(context, {}, + package_type=package_type) + + return render(self._search_template(package_type), + extra_vars={'dataset_type': package_type}) + + def resources(self, id): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + data_dict = {'id': id, 'include_tracking': True} + + try: + check_access('package_update', context, data_dict) + except NotFound: + abort(404, _('Dataset not found')) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + # check if package exists + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg = context['package'] + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + package_type = c.pkg_dict['type'] or 'dataset' + self._setup_template_variables(context, {'id': id}, + package_type=package_type) + + return render('package/resources.html', + extra_vars={'dataset_type': package_type}) + + def read(self, id): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + data_dict = {'id': id, 'include_tracking': True} + + # interpret @ or @ suffix + split = id.split('@') + if len(split) == 2: + data_dict['id'], revision_ref = split + if model.is_id(revision_ref): + context['revision_id'] = revision_ref + else: + try: + date = h.date_str_to_datetime(revision_ref) + context['revision_date'] = date + except TypeError as e: + abort(400, _('Invalid revision format: %r') % e.args) + except ValueError as e: + abort(400, _('Invalid revision format: %r') % e.args) + elif len(split) > 2: + abort(400, _('Invalid revision format: %r') % + 'Too many "@" symbols') + + # check if package exists + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg = context['package'] + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + # used by disqus plugin + c.current_package_id = c.pkg.id + + # can the resources be previewed? + for resource in c.pkg_dict['resources']: + # Backwards compatibility with preview interface + resource['can_be_previewed'] = self._resource_preview( + {'resource': resource, 'package': c.pkg_dict}) + + resource_views = get_action('resource_view_list')( + context, {'id': resource['id']}) + resource['has_views'] = len(resource_views) > 0 + + package_type = c.pkg_dict['type'] or 'dataset' + self._setup_template_variables(context, {'id': id}, + package_type=package_type) + + template = self._read_template(package_type) + try: + return render(template, + extra_vars={'dataset_type': package_type}) + except ckan.lib.render.TemplateNotFound as e: + msg = _( + "Viewing datasets of type \"{package_type}\" is " + "not supported ({file_!r}).".format( + package_type=package_type, + file_=e.message + ) + ) + abort(404, msg) + + assert False, "We should never get here" + + def history(self, id): + + if 'diff' in request.params or 'selected1' in request.params: + try: + params = {'id': request.params.getone('pkg_name'), + 'diff': request.params.getone('selected1'), + 'oldid': request.params.getone('selected2'), + } + except KeyError: + if 'pkg_name' in dict(request.params): + id = request.params.getone('pkg_name') + c.error = \ + _('Select two revisions before doing the comparison.') + else: + params['diff_entity'] = 'package' + h.redirect_to(controller='revision', action='diff', **params) + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + data_dict = {'id': id} + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg_revisions = get_action('package_revision_list')(context, + data_dict) + # TODO: remove + # Still necessary for the authz check in group/layout.html + c.pkg = context['package'] + + except NotAuthorized: + abort(403, _('Unauthorized to read package %s') % '') + except NotFound: + abort(404, _('Dataset not found')) + + format = request.params.get('format', '') + if format == 'atom': + # Generate and return Atom 1.0 document. + from webhelpers.feedgenerator import Atom1Feed + feed = Atom1Feed( + title=_(u'CKAN Dataset Revision History'), + link=h.url_for(controller='revision', action='read', + id=c.pkg_dict['name']), + description=_(u'Recent changes to CKAN Dataset: ') + + (c.pkg_dict['title'] or ''), + language=text_type(i18n.get_lang()), + ) + for revision_dict in c.pkg_revisions: + revision_date = h.date_str_to_datetime( + revision_dict['timestamp']) + try: + dayHorizon = int(request.params.get('days')) + except: + dayHorizon = 30 + dayAge = (datetime.datetime.now() - revision_date).days + if dayAge >= dayHorizon: + break + if revision_dict['message']: + item_title = u'%s' % revision_dict['message'].\ + split('\n')[0] + else: + item_title = u'%s' % revision_dict['id'] + item_link = h.url_for(controller='revision', action='read', + id=revision_dict['id']) + item_description = _('Log message: ') + item_description += '%s' % (revision_dict['message'] or '') + item_author_name = revision_dict['author'] + item_pubdate = revision_date + feed.add_item( + title=item_title, + link=item_link, + description=item_description, + author_name=item_author_name, + pubdate=item_pubdate, + ) + response.headers['Content-Type'] = 'application/atom+xml' + return feed.writeString('utf-8') + + package_type = c.pkg_dict['type'] or 'dataset' + + return render( + self._history_template(c.pkg_dict.get('type', package_type)), + extra_vars={'dataset_type': package_type}) + + def new(self, data=None, errors=None, error_summary=None): + if data and 'type' in data: + package_type = data['type'] + else: + package_type = self._guess_package_type(True) + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'save': 'save' in request.params} + + # Package needs to have a organization group in the call to + # check_access and also to save it + try: + check_access('package_create', context) + except NotAuthorized: + abort(403, _('Unauthorized to create a package')) + + if context['save'] and not data and request.method == 'POST': + return self._save_new(context, package_type=package_type) + + data = data or clean_dict(dict_fns.unflatten(tuplize_dict(parse_params( + request.params, ignore_keys=CACHE_PARAMETERS)))) + c.resources_json = h.json.dumps(data.get('resources', [])) + # convert tags if not supplied in data + if data and not data.get('tag_string'): + data['tag_string'] = ', '.join( + h.dict_list_reduce(data.get('tags', {}), 'name')) + + errors = errors or {} + error_summary = error_summary or {} + # in the phased add dataset we need to know that + # we have already completed stage 1 + stage = ['active'] + if data.get('state', '').startswith('draft'): + stage = ['active', 'complete'] + + # if we are creating from a group then this allows the group to be + # set automatically + data['group_id'] = request.params.get('group') or \ + request.params.get('groups__0__id') + + form_snippet = self._package_form(package_type=package_type) + form_vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, + 'action': 'new', 'stage': stage, + 'dataset_type': package_type, + } + c.errors_json = h.json.dumps(errors) + + self._setup_template_variables(context, {}, + package_type=package_type) + + new_template = self._new_template(package_type) + return render(new_template, + extra_vars={'form_vars': form_vars, + 'form_snippet': form_snippet, + 'dataset_type': package_type}) + + def resource_edit(self, id, resource_id, data=None, errors=None, + error_summary=None): + + context = {'model': model, 'session': model.Session, + 'api_version': 3, 'for_edit': True, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'id': id} + + try: + check_access('package_update', context, data_dict) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + + if request.method == 'POST' and not data: + data = data or \ + clean_dict(dict_fns.unflatten(tuplize_dict(parse_params( + request.POST)))) + # we don't want to include save as it is part of the form + del data['save'] + + data['package_id'] = id + try: + if resource_id: + data['id'] = resource_id + get_action('resource_update')(context, data) + else: + get_action('resource_create')(context, data) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.resource_edit(id, resource_id, data, + errors, error_summary) + except NotAuthorized: + abort(403, _('Unauthorized to edit this resource')) + h.redirect_to(controller='package', action='resource_read', id=id, + resource_id=resource_id) + + pkg_dict = get_action('package_show')(context, {'id': id}) + if pkg_dict['state'].startswith('draft'): + # dataset has not yet been fully created + resource_dict = get_action('resource_show')(context, + {'id': resource_id}) + return self.new_resource(id, data=resource_dict) + # resource is fully created + try: + resource_dict = get_action('resource_show')(context, + {'id': resource_id}) + except NotFound: + abort(404, _('Resource not found')) + c.pkg_dict = pkg_dict + c.resource = resource_dict + # set the form action + c.form_action = h.url_for(controller='package', + action='resource_edit', + resource_id=resource_id, + id=id) + if not data: + data = resource_dict + + package_type = pkg_dict['type'] or 'dataset' + + errors = errors or {} + error_summary = error_summary or {} + vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'action': 'edit', + 'resource_form_snippet': self._resource_form(package_type), + 'dataset_type': package_type} + return render('package/resource_edit.html', extra_vars=vars) + + def new_resource(self, id, data=None, errors=None, error_summary=None): + ''' FIXME: This is a temporary action to allow styling of the + forms. ''' + if request.method == 'POST' and not data: + save_action = request.params.get('save') + data = data or \ + clean_dict(dict_fns.unflatten(tuplize_dict(parse_params( + request.POST)))) + # we don't want to include save as it is part of the form + del data['save'] + resource_id = data['id'] + del data['id'] + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + # see if we have any data that we are trying to save + data_provided = False + for key, value in data.iteritems(): + if ((value or isinstance(value, cgi.FieldStorage)) + and key != 'resource_type'): + data_provided = True + break + + if not data_provided and save_action != "go-dataset-complete": + if save_action == 'go-dataset': + # go to final stage of adddataset + h.redirect_to(controller='package', action='edit', id=id) + # see if we have added any resources + try: + data_dict = get_action('package_show')(context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to update dataset')) + except NotFound: + abort(404, _('The dataset {id} could not be found.' + ).format(id=id)) + if not len(data_dict['resources']): + # no data so keep on page + msg = _('You must add at least one data resource') + # On new templates do not use flash message + + if asbool(config.get('ckan.legacy_templates')): + h.flash_error(msg) + h.redirect_to(controller='package', + action='new_resource', id=id) + else: + errors = {} + error_summary = {_('Error'): msg} + return self.new_resource(id, data, errors, + error_summary) + # XXX race condition if another user edits/deletes + data_dict = get_action('package_show')(context, {'id': id}) + get_action('package_update')( + dict(context, allow_state_change=True), + dict(data_dict, state='active')) + h.redirect_to(controller='package', action='read', id=id) + + data['package_id'] = id + try: + if resource_id: + data['id'] = resource_id + get_action('resource_update')(context, data) + else: + get_action('resource_create')(context, data) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.new_resource(id, data, errors, error_summary) + except NotAuthorized: + abort(403, _('Unauthorized to create a resource')) + except NotFound: + abort(404, _('The dataset {id} could not be found.' + ).format(id=id)) + if save_action == 'go-metadata': + # XXX race condition if another user edits/deletes + data_dict = get_action('package_show')(context, {'id': id}) + get_action('package_update')( + dict(context, allow_state_change=True), + dict(data_dict, state='active')) + h.redirect_to(controller='package', action='read', id=id) + elif save_action == 'go-dataset': + # go to first stage of add dataset + h.redirect_to(controller='package', action='edit', id=id) + elif save_action == 'go-dataset-complete': + # go to first stage of add dataset + h.redirect_to(controller='package', action='read', id=id) + else: + # add more resources + h.redirect_to(controller='package', action='new_resource', + id=id) + + # get resources for sidebar + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + try: + pkg_dict = get_action('package_show')(context, {'id': id}) + except NotFound: + abort(404, _('The dataset {id} could not be found.').format(id=id)) + try: + check_access( + 'resource_create', context, {"package_id": pkg_dict["id"]}) + except NotAuthorized: + abort(403, _('Unauthorized to create a resource for this package')) + + package_type = pkg_dict['type'] or 'dataset' + + errors = errors or {} + error_summary = error_summary or {} + vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'action': 'new', + 'resource_form_snippet': self._resource_form(package_type), + 'dataset_type': package_type} + vars['pkg_name'] = id + # required for nav menu + vars['pkg_dict'] = pkg_dict + template = 'package/new_resource_not_draft.html' + if pkg_dict['state'].startswith('draft'): + vars['stage'] = ['complete', 'active'] + template = 'package/new_resource.html' + return render(template, extra_vars=vars) + + def edit(self, id, data=None, errors=None, error_summary=None): + package_type = self._get_package_type(id) + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'save': 'save' in request.params} + + if context['save'] and not data and request.method == 'POST': + return self._save_edit(id, context, package_type=package_type) + try: + c.pkg_dict = get_action('package_show')(dict(context, + for_view=True), + {'id': id}) + context['for_edit'] = True + old_data = get_action('package_show')(context, {'id': id}) + # old data is from the database and data is passed from the + # user if there is a validation error. Use users data if there. + if data: + old_data.update(data) + data = old_data + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + # are we doing a multiphase add? + if data.get('state', '').startswith('draft'): + c.form_action = h.url_for(controller='package', action='new') + c.form_style = 'new' + return self.new(data=data, errors=errors, + error_summary=error_summary) + + c.pkg = context.get("package") + c.resources_json = h.json.dumps(data.get('resources', [])) + + try: + check_access('package_update', context) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + # convert tags if not supplied in data + if data and not data.get('tag_string'): + data['tag_string'] = ', '.join(h.dict_list_reduce( + c.pkg_dict.get('tags', {}), 'name')) + errors = errors or {} + form_snippet = self._package_form(package_type=package_type) + form_vars = {'data': data, 'errors': errors, + 'error_summary': error_summary, 'action': 'edit', + 'dataset_type': package_type, + } + c.errors_json = h.json.dumps(errors) + + self._setup_template_variables(context, {'id': id}, + package_type=package_type) + + # we have already completed stage 1 + form_vars['stage'] = ['active'] + if data.get('state', '').startswith('draft'): + form_vars['stage'] = ['active', 'complete'] + + edit_template = self._edit_template(package_type) + return render(edit_template, + extra_vars={'form_vars': form_vars, + 'form_snippet': form_snippet, + 'dataset_type': package_type}) + + def read_ajax(self, id, revision=None): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'revision_id': revision} + try: + data = get_action('package_show')(context, {'id': id}) + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + data.pop('tags') + data = flatten_to_string_key(data) + response.headers['Content-Type'] = 'application/json;charset=utf-8' + return h.json.dumps(data) + + def history_ajax(self, id): + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'id': id} + try: + pkg_revisions = get_action('package_revision_list')( + context, data_dict) + except NotAuthorized: + abort(403, _('Unauthorized to read package %s') % '') + except NotFound: + abort(404, _('Dataset not found')) + + data = [] + approved = False + for num, revision in enumerate(pkg_revisions): + if not approved and revision['approved_timestamp']: + current_approved, approved = True, True + else: + current_approved = False + + data.append({'revision_id': revision['id'], + 'message': revision['message'], + 'timestamp': revision['timestamp'], + 'author': revision['author'], + 'approved': bool(revision['approved_timestamp']), + 'current_approved': current_approved}) + + response.headers['Content-Type'] = 'application/json;charset=utf-8' + return h.json.dumps(data) + + def _get_package_type(self, id): + """ + Given the id of a package this method will return the type of the + package, or 'dataset' if no type is currently set + """ + pkg = model.Package.get(id) + if pkg: + return pkg.type or 'dataset' + return None + + def _tag_string_to_list(self, tag_string): + ''' This is used to change tags from a sting to a list of dicts ''' + out = [] + for tag in tag_string.split(','): + tag = tag.strip() + if tag: + out.append({'name': tag, + 'state': 'active'}) + return out + + def _save_new(self, context, package_type=None): + # The staged add dataset used the new functionality when the dataset is + # partially created so we need to know if we actually are updating or + # this is a real new. + is_an_update = False + ckan_phase = request.params.get('_ckan_phase') + from ckan.lib.search import SearchIndexError + try: + data_dict = clean_dict(dict_fns.unflatten( + tuplize_dict(parse_params(request.POST)))) + if ckan_phase: + # prevent clearing of groups etc + context['allow_partial_update'] = True + # sort the tags + if 'tag_string' in data_dict: + data_dict['tags'] = self._tag_string_to_list( + data_dict['tag_string']) + if data_dict.get('pkg_name'): + is_an_update = True + # This is actually an update not a save + data_dict['id'] = data_dict['pkg_name'] + del data_dict['pkg_name'] + # don't change the dataset state + data_dict['state'] = 'draft' + # this is actually an edit not a save + pkg_dict = get_action('package_update')(context, data_dict) + + if request.params['save'] == 'go-metadata': + # redirect to add metadata + url = h.url_for(controller='package', + action='new_metadata', + id=pkg_dict['name']) + else: + # redirect to add dataset resources + url = h.url_for(controller='package', + action='new_resource', + id=pkg_dict['name']) + h.redirect_to(url) + # Make sure we don't index this dataset + if request.params['save'] not in ['go-resource', + 'go-metadata']: + data_dict['state'] = 'draft' + # allow the state to be changed + context['allow_state_change'] = True + + data_dict['type'] = package_type + context['message'] = data_dict.get('log_message', '') + pkg_dict = get_action('package_create')(context, data_dict) + + if ckan_phase: + # redirect to add dataset resources + url = h.url_for(controller='package', + action='new_resource', + id=pkg_dict['name']) + h.redirect_to(url) + + self._form_save_redirect(pkg_dict['name'], 'new', + package_type=package_type) + except NotAuthorized: + abort(403, _('Unauthorized to read package %s') % '') + except NotFound as e: + abort(404, _('Dataset not found')) + except dict_fns.DataError: + abort(400, _(u'Integrity Error')) + except SearchIndexError as e: + try: + exc_str = text_type(repr(e.args)) + except Exception: # We don't like bare excepts + exc_str = text_type(str(e)) + abort(500, _(u'Unable to add package to search index.') + exc_str) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + if is_an_update: + # we need to get the state of the dataset to show the stage we + # are on. + pkg_dict = get_action('package_show')(context, data_dict) + data_dict['state'] = pkg_dict['state'] + return self.edit(data_dict['id'], data_dict, + errors, error_summary) + data_dict['state'] = 'none' + return self.new(data_dict, errors, error_summary) + + def _save_edit(self, name_or_id, context, package_type=None): + from ckan.lib.search import SearchIndexError + log.debug('Package save request name: %s POST: %r', + name_or_id, request.POST) + try: + data_dict = clean_dict(dict_fns.unflatten( + tuplize_dict(parse_params(request.POST)))) + if '_ckan_phase' in data_dict: + # we allow partial updates to not destroy existing resources + context['allow_partial_update'] = True + if 'tag_string' in data_dict: + data_dict['tags'] = self._tag_string_to_list( + data_dict['tag_string']) + del data_dict['_ckan_phase'] + del data_dict['save'] + context['message'] = data_dict.get('log_message', '') + data_dict['id'] = name_or_id + pkg = get_action('package_update')(context, data_dict) + c.pkg = context['package'] + c.pkg_dict = pkg + + self._form_save_redirect(pkg['name'], 'edit', + package_type=package_type) + except NotAuthorized: + abort(403, _('Unauthorized to read package %s') % id) + except NotFound as e: + abort(404, _('Dataset not found')) + except dict_fns.DataError: + abort(400, _(u'Integrity Error')) + except SearchIndexError as e: + try: + exc_str = text_type(repr(e.args)) + except Exception: # We don't like bare excepts + exc_str = text_type(str(e)) + abort(500, _(u'Unable to update search index.') + exc_str) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.edit(name_or_id, data_dict, errors, error_summary) + + def _form_save_redirect(self, pkgname, action, package_type=None): + '''This redirects the user to the CKAN package/read page, + unless there is request parameter giving an alternate location, + perhaps an external website. + @param pkgname - Name of the package just edited + @param action - What the action of the edit was + ''' + assert action in ('new', 'edit') + url = request.params.get('return_to') or \ + config.get('package_%s_return_url' % action) + if url: + url = url.replace('', pkgname) + else: + if package_type is None or package_type == 'dataset': + url = h.url_for(controller='package', action='read', + id=pkgname) + else: + url = h.url_for('{0}_read'.format(package_type), id=pkgname) + h.redirect_to(url) + + def delete(self, id): + + if 'cancel' in request.params: + h.redirect_to(controller='package', action='edit', id=id) + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + try: + if request.method == 'POST': + get_action('package_delete')(context, {'id': id}) + h.flash_notice(_('Dataset has been deleted.')) + h.redirect_to(controller='package', action='search') + c.pkg_dict = get_action('package_show')(context, {'id': id}) + dataset_type = c.pkg_dict['type'] or 'dataset' + except NotAuthorized: + abort(403, _('Unauthorized to delete package %s') % '') + except NotFound: + abort(404, _('Dataset not found')) + return render('package/confirm_delete.html', + extra_vars={'dataset_type': dataset_type}) + + def resource_delete(self, id, resource_id): + + if 'cancel' in request.params: + h.redirect_to(controller='package', action='resource_edit', + resource_id=resource_id, id=id) + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + try: + check_access('package_delete', context, {'id': id}) + except NotAuthorized: + abort(403, _('Unauthorized to delete package %s') % '') + + try: + if request.method == 'POST': + get_action('resource_delete')(context, {'id': resource_id}) + h.flash_notice(_('Resource has been deleted.')) + pkg_dict = get_action('package_show')(None, {'id': id}) + if pkg_dict['state'].startswith('draft'): + h.redirect_to(controller='package', action='new_resource', + id=id) + else: + h.redirect_to(controller='package', action='read', id=id) + c.resource_dict = get_action('resource_show')( + context, {'id': resource_id}) + c.pkg_id = id + except NotAuthorized: + abort(403, _('Unauthorized to delete resource %s') % '') + except NotFound: + abort(404, _('Resource not found')) + return render('package/confirm_delete_resource.html', + {'dataset_type': self._get_package_type(id)}) + + def resource_read(self, id, resource_id): + context = {'model': model, 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj, + 'for_view': True} + + try: + c.package = get_action('package_show')(context, {'id': id}) + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + for resource in c.package.get('resources', []): + if resource['id'] == resource_id: + c.resource = resource + break + if not c.resource: + abort(404, _('Resource not found')) + + # required for nav menu + c.pkg = context['package'] + c.pkg_dict = c.package + dataset_type = c.pkg.type or 'dataset' + + # get package license info + license_id = c.package.get('license_id') + try: + c.package['isopen'] = model.Package.\ + get_license_register()[license_id].isopen() + except KeyError: + c.package['isopen'] = False + + # Deprecated: c.datastore_api - use h.action_url instead + c.datastore_api = '%s/api/action' % \ + config.get('ckan.site_url', '').rstrip('/') + + c.resource['can_be_previewed'] = self._resource_preview( + {'resource': c.resource, 'package': c.package}) + + resource_views = get_action('resource_view_list')( + context, {'id': resource_id}) + c.resource['has_views'] = len(resource_views) > 0 + + current_resource_view = None + view_id = request.GET.get('view_id') + if c.resource['can_be_previewed'] and not view_id: + current_resource_view = None + elif c.resource['has_views']: + if view_id: + current_resource_view = [rv for rv in resource_views + if rv['id'] == view_id] + if len(current_resource_view) == 1: + current_resource_view = current_resource_view[0] + else: + abort(404, _('Resource view not found')) + else: + current_resource_view = resource_views[0] + + vars = {'resource_views': resource_views, + 'current_resource_view': current_resource_view, + 'dataset_type': dataset_type} + + template = self._resource_template(dataset_type) + return render(template, extra_vars=vars) + + @maintain.deprecated('Resource preview is deprecated. Please use the new ' + 'resource views') + def _resource_preview(self, data_dict): + '''Deprecated in 2.3''' + return bool(datapreview.get_preview_plugin(data_dict, + return_first=True)) + + def resource_download(self, id, resource_id, filename=None): + """ + Provides a direct download by either redirecting the user to the url + stored or downloading an uploaded file directly. + """ + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + try: + rsc = get_action('resource_show')(context, {'id': resource_id}) + get_action('package_show')(context, {'id': id}) + except (NotFound, NotAuthorized): + abort(404, _('Resource not found')) + + if rsc.get('url_type') == 'upload': + upload = uploader.get_resource_uploader(rsc) + filepath = upload.get_path(rsc['id']) + fileapp = paste.fileapp.FileApp(filepath) + try: + status, headers, app_iter = request.call_application(fileapp) + except OSError: + abort(404, _('Resource data not found')) + response.headers.update(dict(headers)) + content_type, content_enc = mimetypes.guess_type( + rsc.get('url', '')) + if content_type: + response.headers['Content-Type'] = content_type + response.status = status + return app_iter + elif 'url' not in rsc: + abort(404, _('No download is available')) + h.redirect_to(rsc['url']) + + def follow(self, id): + '''Start following this dataset.''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'id': id} + try: + get_action('follow_dataset')(context, data_dict) + package_dict = get_action('package_show')(context, data_dict) + h.flash_success(_("You are now following {0}").format( + package_dict['title'])) + except ValidationError as e: + error_message = (e.message or e.error_summary + or e.error_dict) + h.flash_error(error_message) + except NotAuthorized as e: + h.flash_error(e.message) + h.redirect_to(controller='package', action='read', id=id) + + def unfollow(self, id): + '''Stop following this dataset.''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + data_dict = {'id': id} + try: + get_action('unfollow_dataset')(context, data_dict) + package_dict = get_action('package_show')(context, data_dict) + h.flash_success(_("You are no longer following {0}").format( + package_dict['title'])) + except ValidationError as e: + error_message = (e.message or e.error_summary + or e.error_dict) + h.flash_error(error_message) + except (NotFound, NotAuthorized) as e: + error_message = e.message + h.flash_error(error_message) + h.redirect_to(controller='package', action='read', id=id) + + def followers(self, id=None): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + + data_dict = {'id': id} + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg = context['package'] + c.followers = get_action('dataset_follower_list')( + context, {'id': c.pkg_dict['id']}) + + dataset_type = c.pkg.type or 'dataset' + except NotFound: + abort(404, _('Dataset not found')) + except NotAuthorized: + abort(403, _('Unauthorized to read package %s') % id) + + return render('package/followers.html', + {'dataset_type': dataset_type}) + + def groups(self, id): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj, 'use_cache': False} + data_dict = {'id': id} + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + dataset_type = c.pkg_dict['type'] or 'dataset' + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + if request.method == 'POST': + new_group = request.POST.get('group_added') + if new_group: + data_dict = {"id": new_group, + "object": id, + "object_type": 'package', + "capacity": 'public'} + try: + get_action('member_create')(context, data_dict) + except NotFound: + abort(404, _('Group not found')) + + removed_group = None + for param in request.POST: + if param.startswith('group_remove'): + removed_group = param.split('.')[-1] + break + if removed_group: + data_dict = {"id": removed_group, + "object": id, + "object_type": 'package'} + + try: + get_action('member_delete')(context, data_dict) + except NotFound: + abort(404, _('Group not found')) + h.redirect_to(controller='package', action='groups', id=id) + + context['is_member'] = True + users_groups = get_action('group_list_authz')(context, data_dict) + + pkg_group_ids = set(group['id'] for group + in c.pkg_dict.get('groups', [])) + user_group_ids = set(group['id'] for group + in users_groups) + + c.group_dropdown = [[group['id'], group['display_name']] + for group in users_groups if + group['id'] not in pkg_group_ids] + + for group in c.pkg_dict.get('groups', []): + group['user_member'] = (group['id'] in user_group_ids) + + return render('package/group_list.html', + {'dataset_type': dataset_type}) + + def activity(self, id): + '''Render this package's public activity stream page.''' + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + data_dict = {'id': id} + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg = context['package'] + c.package_activity_stream = get_action( + 'package_activity_list_html')( + context, {'id': c.pkg_dict['id']}) + dataset_type = c.pkg_dict['type'] or 'dataset' + except NotFound: + abort(404, _('Dataset not found')) + except NotAuthorized: + abort(403, _('Unauthorized to read dataset %s') % id) + + return render('package/activity.html', + {'dataset_type': dataset_type}) + + def resource_embedded_dataviewer(self, id, resource_id, + width=500, height=500): + """ + Embedded page for a read-only resource dataview. Allows + for width and height to be specified as part of the + querystring (as well as accepting them via routes). + """ + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj} + + try: + c.resource = get_action('resource_show')(context, + {'id': resource_id}) + c.package = get_action('package_show')(context, {'id': id}) + c.resource_json = h.json.dumps(c.resource) + + # double check that the resource belongs to the specified package + if not c.resource['id'] in [r['id'] + for r in c.package['resources']]: + raise NotFound + dataset_type = c.package['type'] or 'dataset' + + except (NotFound, NotAuthorized): + abort(404, _('Resource not found')) + + # Construct the recline state + state_version = int(request.params.get('state_version', '1')) + recline_state = self._parse_recline_state(request.params) + if recline_state is None: + abort(400, ('"state" parameter must be a valid recline ' + 'state (version %d)' % state_version)) + + c.recline_state = h.json.dumps(recline_state) + + c.width = max(int(request.params.get('width', width)), 100) + c.height = max(int(request.params.get('height', height)), 100) + c.embedded = True + + return render('package/resource_embedded_dataviewer.html', + extra_vars={'dataset_type': dataset_type}) + + def _parse_recline_state(self, params): + state_version = int(request.params.get('state_version', '1')) + if state_version != 1: + return None + + recline_state = {} + for k, v in request.params.items(): + try: + v = h.json.loads(v) + except ValueError: + pass + recline_state[k] = v + + recline_state.pop('width', None) + recline_state.pop('height', None) + recline_state['readOnly'] = True + + # previous versions of recline setup used elasticsearch_url attribute + # for data api url - see http://trac.ckan.org/ticket/2639 + # fix by relocating this to url attribute which is the default location + if 'dataset' in recline_state and \ + 'elasticsearch_url' in recline_state['dataset']: + recline_state['dataset']['url'] = \ + recline_state['dataset']['elasticsearch_url'] + + # Ensure only the currentView is available + # default to grid view if none specified + if not recline_state.get('currentView', None): + recline_state['currentView'] = 'grid' + for k in recline_state.keys(): + if k.startswith('view-') and \ + not k.endswith(recline_state['currentView']): + recline_state.pop(k) + return recline_state + + def resource_views(self, id, resource_id): + package_type = self._get_package_type(id.split('@')[0]) + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + data_dict = {'id': id} + + try: + check_access('package_update', context, data_dict) + except NotAuthorized: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + # check if package exists + try: + c.pkg_dict = get_action('package_show')(context, data_dict) + c.pkg = context['package'] + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + try: + c.resource = get_action('resource_show')(context, + {'id': resource_id}) + c.views = get_action('resource_view_list')(context, + {'id': resource_id}) + + except NotFound: + abort(404, _('Resource not found')) + except NotAuthorized: + abort(403, _('Unauthorized to read resource %s') % id) + + self._setup_template_variables(context, {'id': id}, + package_type=package_type) + + return render('package/resource_views.html') + + def edit_view(self, id, resource_id, view_id=None): + package_type = self._get_package_type(id.split('@')[0]) + context = {'model': model, 'session': model.Session, + 'user': c.user, 'for_view': True, + 'auth_user_obj': c.userobj} + + # update resource should tell us early if the user has privilages. + try: + check_access('resource_update', context, {'id': resource_id}) + except NotAuthorized as e: + abort(403, _('User %r not authorized to edit %s') % (c.user, id)) + + # get resource and package data + try: + c.pkg_dict = get_action('package_show')(context, {'id': id}) + c.pkg = context['package'] + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + try: + c.resource = get_action('resource_show')(context, + {'id': resource_id}) + except (NotFound, NotAuthorized): + abort(404, _('Resource not found')) + + data = {} + errors = {} + error_summary = {} + view_type = None + to_preview = False + + if request.method == 'POST': + request.POST.pop('save', None) + to_preview = request.POST.pop('preview', False) + if to_preview: + context['preview'] = True + to_delete = request.POST.pop('delete', None) + data = clean_dict(dict_fns.unflatten(tuplize_dict(parse_params( + request.params, ignore_keys=CACHE_PARAMETERS)))) + data['resource_id'] = resource_id + + try: + if to_delete: + data['id'] = view_id + get_action('resource_view_delete')(context, data) + elif view_id: + data['id'] = view_id + data = get_action('resource_view_update')(context, data) + else: + data = get_action('resource_view_create')(context, data) + except ValidationError as e: + # Could break preview if validation error + to_preview = False + errors = e.error_dict + error_summary = e.error_summary + except NotAuthorized: + # This should never happen unless the user maliciously changed + # the resource_id in the url. + abort(403, _('Unauthorized to edit resource')) + else: + if not to_preview: + h.redirect_to(controller='package', + action='resource_views', + id=id, resource_id=resource_id) + + # view_id exists only when updating + if view_id: + try: + old_data = get_action('resource_view_show')(context, + {'id': view_id}) + data = data or old_data + view_type = old_data.get('view_type') + # might as well preview when loading good existing view + if not errors: + to_preview = True + except (NotFound, NotAuthorized): + abort(404, _('View not found')) + + view_type = view_type or request.GET.get('view_type') + data['view_type'] = view_type + view_plugin = datapreview.get_view_plugin(view_type) + if not view_plugin: + abort(404, _('View Type Not found')) + + self._setup_template_variables(context, {'id': id}, + package_type=package_type) + + data_dict = {'package': c.pkg_dict, 'resource': c.resource, + 'resource_view': data} + + view_template = view_plugin.view_template(context, data_dict) + form_template = view_plugin.form_template(context, data_dict) + + vars = {'form_template': form_template, + 'view_template': view_template, + 'data': data, + 'errors': errors, + 'error_summary': error_summary, + 'to_preview': to_preview, + 'datastore_available': p.plugin_loaded('datastore')} + vars.update( + view_plugin.setup_template_variables(context, data_dict) or {}) + vars.update(data_dict) + + if view_id: + return render('package/edit_view.html', extra_vars=vars) + + return render('package/new_view.html', extra_vars=vars) + + def resource_view(self, id, resource_id, view_id=None): + ''' + Embedded page for a resource view. + + Depending on the type, different views are loaded. This could be an + img tag where the image is loaded directly or an iframe that embeds a + webpage or a recline preview. + ''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj} + + try: + package = get_action('package_show')(context, {'id': id}) + except (NotFound, NotAuthorized): + abort(404, _('Dataset not found')) + + try: + resource = get_action('resource_show')( + context, {'id': resource_id}) + except (NotFound, NotAuthorized): + abort(404, _('Resource not found')) + + view = None + if request.params.get('resource_view', ''): + try: + view = json.loads(request.params.get('resource_view', '')) + except ValueError: + abort(409, _('Bad resource view data')) + elif view_id: + try: + view = get_action('resource_view_show')( + context, {'id': view_id}) + except (NotFound, NotAuthorized): + abort(404, _('Resource view not found')) + + if not view or not isinstance(view, dict): + abort(404, _('Resource view not supplied')) + + return h.rendered_resource_view(view, resource, package, embed=True) + + def resource_datapreview(self, id, resource_id): + ''' + Embedded page for a resource data-preview. + + Depending on the type, different previews are loaded. This could be an + img tag where the image is loaded directly or an iframe that embeds a + webpage, or a recline preview. + ''' + context = { + 'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj + } + + try: + c.resource = get_action('resource_show')(context, + {'id': resource_id}) + c.package = get_action('package_show')(context, {'id': id}) + + data_dict = {'resource': c.resource, 'package': c.package} + + preview_plugin = datapreview.get_preview_plugin(data_dict) + + if preview_plugin is None: + abort(409, _('No preview has been defined.')) + + preview_plugin.setup_template_variables(context, data_dict) + c.resource_json = json.dumps(c.resource) + dataset_type = c.package['type'] or 'dataset' + except (NotFound, NotAuthorized): + abort(404, _('Resource not found')) + else: + return render(preview_plugin.preview_template(context, data_dict), + extra_vars={'dataset_type': dataset_type}) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/revision.py b/venv/lib/python2.7/site-packages/ckan/controllers/revision.py new file mode 100644 index 00000000..ace9cb32 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/revision.py @@ -0,0 +1,193 @@ +# encoding: utf-8 + +from datetime import datetime, timedelta + +from pylons.i18n import get_lang +from six import text_type + +import ckan.logic as logic +import ckan.lib.base as base +import ckan.model as model +import ckan.lib.helpers as h + +from ckan.common import _, c, request + + +class RevisionController(base.BaseController): + + def __before__(self, action, **env): + base.BaseController.__before__(self, action, **env) + + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + if c.user: + try: + logic.check_access('revision_change_state', context) + c.revision_change_state_allowed = True + except logic.NotAuthorized: + c.revision_change_state_allowed = False + else: + c.revision_change_state_allowed = False + try: + logic.check_access('site_read', context) + except logic.NotAuthorized: + base.abort(403, _('Not authorized to see this page')) + + def index(self): + return self.list() + + def list(self): + format = request.params.get('format', '') + if format == 'atom': + # Generate and return Atom 1.0 document. + from webhelpers.feedgenerator import Atom1Feed + feed = Atom1Feed( + title=_(u'CKAN Repository Revision History'), + link=h.url_for(controller='revision', action='list', id=''), + description=_(u'Recent changes to the CKAN repository.'), + language=text_type(get_lang()), + ) + # TODO: make this configurable? + # we do not want the system to fall over! + maxresults = 200 + try: + dayHorizon = int(request.params.get('days', 5)) + except: + dayHorizon = 5 + ourtimedelta = timedelta(days=-dayHorizon) + since_when = datetime.now() + ourtimedelta + revision_query = model.repo.history() + revision_query = revision_query.filter( + model.Revision.timestamp >= since_when).filter( + model.Revision.id != None) + revision_query = revision_query.limit(maxresults) + for revision in revision_query: + package_indications = [] + revision_changes = model.repo.list_changes(revision) + resource_revisions = revision_changes[model.Resource] + package_extra_revisions = revision_changes[model.PackageExtra] + for package in revision.packages: + if not package: + # package is None sometimes - I don't know why, + # but in the meantime while that is fixed, + # avoid an exception here + continue + if package.private: + continue + number = len(package.all_revisions) + package_revision = None + count = 0 + for pr in package.all_revisions: + count += 1 + if pr.revision.id == revision.id: + package_revision = pr + break + if package_revision and package_revision.state == \ + model.State.DELETED: + transition = 'deleted' + elif package_revision and count == number: + transition = 'created' + else: + transition = 'updated' + for resource_revision in resource_revisions: + if resource_revision.package_id == package.id: + transition += ':resources' + break + for package_extra_revision in package_extra_revisions: + if package_extra_revision.package_id == \ + package.id: + if package_extra_revision.key == \ + 'date_updated': + transition += ':date_updated' + break + indication = "%s:%s" % (package.name, transition) + package_indications.append(indication) + pkgs = u'[%s]' % ' '.join(package_indications) + item_title = u'r%s ' % (revision.id) + item_title += pkgs + if revision.message: + item_title += ': %s' % (revision.message or '') + item_link = h.url_for(controller='revision', action='read', id=revision.id) + item_description = _('Datasets affected: %s.\n') % pkgs + item_description += '%s' % (revision.message or '') + item_author_name = revision.author + item_pubdate = revision.timestamp + feed.add_item( + title=item_title, + link=item_link, + description=item_description, + author_name=item_author_name, + pubdate=item_pubdate, + ) + feed.content_type = 'application/atom+xml' + return feed.writeString('utf-8') + else: + query = model.Session.query(model.Revision) + c.page = h.Page( + collection=query, + page=h.get_page_number(request.params), + url=h.pager_url, + items_per_page=20 + ) + return base.render('revision/list.html') + + def read(self, id=None): + if id is None: + base.abort(404) + c.revision = model.Session.query(model.Revision).get(id) + if c.revision is None: + base.abort(404) + + pkgs = model.Session.query(model.PackageRevision).\ + filter_by(revision=c.revision) + c.packages = [pkg.continuity for pkg in pkgs if not pkg.private] + pkgtags = model.Session.query(model.PackageTagRevision).\ + filter_by(revision=c.revision) + c.pkgtags = [pkgtag.continuity for pkgtag in pkgtags + if not pkgtag.package.private] + grps = model.Session.query(model.GroupRevision).\ + filter_by(revision=c.revision) + c.groups = [grp.continuity for grp in grps] + return base.render('revision/read.html') + + def diff(self, id=None): + if 'diff' not in request.params or 'oldid' not in request.params: + base.abort(400) + c.revision_from = model.Session.query(model.Revision).get( + request.params.getone('oldid')) + c.revision_to = model.Session.query(model.Revision).get( + request.params.getone('diff')) + + c.diff_entity = request.params.get('diff_entity') + if c.diff_entity == 'package': + c.pkg = model.Package.by_name(id) + diff = c.pkg.diff(c.revision_to, c.revision_from) + elif c.diff_entity == 'group': + c.group = model.Group.by_name(id) + diff = c.group.diff(c.revision_to, c.revision_from) + else: + base.abort(400) + + c.diff = diff.items() + c.diff.sort() + return base.render('revision/diff.html') + + def edit(self, id=None): + if id is None: + base.abort(404) + revision = model.Session.query(model.Revision).get(id) + if revision is None: + base.abort(404) + action = request.params.get('action', '') + if action in ['delete', 'undelete']: + # this should be at a lower level (e.g. logic layer) + if not c.revision_change_state_allowed: + base.abort(403) + if action == 'delete': + revision.state = model.State.DELETED + elif action == 'undelete': + revision.state = model.State.ACTIVE + model.Session.commit() + h.flash_success(_('Revision updated')) + h.redirect_to( + h.url_for(controller='revision', action='read', id=id)) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/storage.py b/venv/lib/python2.7/site-packages/ckan/controllers/storage.py new file mode 100644 index 00000000..536bef67 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/storage.py @@ -0,0 +1,98 @@ +# encoding: utf-8 + +''' + +Note: This is the old file store controller for CKAN < 2.2. +If you are looking for how the file uploads work, you should check +`lib/uploader.py` and the `resource_download` method of the package +controller. + +''' +import os +import re + +from ofs import get_impl +from paste.fileapp import FileApp + +from ckan.lib.base import BaseController, request, config, h, abort + + +from logging import getLogger +log = getLogger(__name__) + + +BUCKET = config.get('ckan.storage.bucket', 'default') +key_prefix = config.get('ckan.storage.key_prefix', 'file/') + +_eq_re = re.compile(r"^(.*)(=[0-9]*)$") + + +def create_pairtree_marker(folder): + """ Creates the pairtree marker for tests if it doesn't exist """ + if not folder[:-1] == '/': + folder = folder + '/' + + directory = os.path.dirname(folder) + if not os.path.exists(directory): + os.makedirs(directory) + + target = os.path.join(directory, 'pairtree_version0_1') + if os.path.exists(target): + return + + open(target, 'wb').close() + + +def get_ofs(): + """Return a configured instance of the appropriate OFS driver. + """ + storage_backend = config['ofs.impl'] + kw = {} + for k, v in config.items(): + if not k.startswith('ofs.') or k == 'ofs.impl': + continue + kw[k[4:]] = v + + # Make sure we have created the marker file to avoid pairtree issues + if storage_backend == 'pairtree' and 'storage_dir' in kw: + create_pairtree_marker(kw['storage_dir']) + + ofs = get_impl(storage_backend)(**kw) + return ofs + + +class StorageController(BaseController): + '''Upload to storage backend. + ''' + _ofs_impl = None + + @property + def ofs(self): + if not StorageController._ofs_impl: + StorageController._ofs_impl = get_ofs() + return StorageController._ofs_impl + + def file(self, label): + exists = self.ofs.exists(BUCKET, label) + if not exists: + # handle erroneous trailing slash by redirecting to url w/o slash + if label.endswith('/'): + label = label[:-1] + # This may be best being cached_url until we have moved it into + # permanent storage + file_url = h.url_for('storage_file', label=label) + h.redirect_to(file_url) + else: + abort(404) + + file_url = self.ofs.get_url(BUCKET, label) + if file_url.startswith("file://"): + metadata = self.ofs.get_metadata(BUCKET, label) + filepath = file_url[len("file://"):] + headers = { + # 'Content-Disposition':'attachment; filename="%s"' % label, + 'Content-Type': metadata.get('_format', 'text/plain')} + fapp = FileApp(filepath, headers=None, **headers) + return fapp(request.environ, self.start_response) + else: + h.redirect_to(file_url.encode('ascii', 'ignore')) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/tag.py b/venv/lib/python2.7/site-packages/ckan/controllers/tag.py new file mode 100644 index 00000000..e30b600f --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/tag.py @@ -0,0 +1,80 @@ +# encoding: utf-8 + +from ckan.common import config +from paste.deploy.converters import asbool + +import ckan.logic as logic +import ckan.model as model +import ckan.lib.base as base +import ckan.lib.helpers as h +from ckan.lib.alphabet_paginate import AlphaPage + +from ckan.common import _, request, c + + +LIMIT = 25 + + +class TagController(base.BaseController): + + def __before__(self, action, **env): + base.BaseController.__before__(self, action, **env) + try: + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + logic.check_access('site_read', context) + except logic.NotAuthorized: + base.abort(403, _('Not authorized to see this page')) + + def index(self): + c.q = request.params.get('q', '') + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + + data_dict = {'all_fields': True} + + if c.q: + page = h.get_page_number(request.params) + data_dict['q'] = c.q + data_dict['limit'] = LIMIT + data_dict['offset'] = (page - 1) * LIMIT + data_dict['return_objects'] = True + + results = logic.get_action('tag_list')(context, data_dict) + + if c.q: + c.page = h.Page( + collection=results, + page=page, + item_count=len(results), + items_per_page=LIMIT + ) + c.page.items = results + else: + c.page = AlphaPage( + collection=results, + page=request.params.get('page', 'A'), + alpha_attribute='name', + other_text=_('Other'), + ) + + return base.render('tag/index.html') + + def read(self, id): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + + data_dict = {'id': id} + try: + c.tag = logic.get_action('tag_show')(context, data_dict) + except logic.NotFound: + base.abort(404, _('Tag not found')) + + if asbool(config.get('ckan.legacy_templates', False)): + return base.render('tag/read.html') + else: + h.redirect_to(controller='package', action='search', + tags=c.tag.get('name')) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/template.py b/venv/lib/python2.7/site-packages/ckan/controllers/template.py new file mode 100644 index 00000000..d51f891d --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/template.py @@ -0,0 +1,45 @@ +# encoding: utf-8 + +import ckan.lib.base as base +import ckan.lib.render +from ckan.common import response + + +class TemplateController(base.BaseController): + + def view(self, url): + u"""By default, the final controller tried to fulfill the request + when no other routes match. It may be used to display a template + when all else fails, e.g.:: + + def view(self, url): + return render('/%s' % url) + + Or if you're using Mako and want to explicitly send a 404 (Not + Found) response code when the requested template doesn't exist:: + + import mako.exceptions + + def view(self, url): + try: + return render('/%s' % url) + except mako.exceptions.TopLevelLookupException: + abort(404) + + By default this controller aborts the request with a 404 (Not + Found) + """ + if url.endswith(u'.txt'): + response.headers[b'Content-Type'] = b'text/plain; charset=utf-8' + # Default content-type is text/html + try: + return base.render(url) + except ckan.lib.render.TemplateNotFound: + if url.endswith(u'.html'): + base.abort(404) + url += u'.html' + response.headers[b'Content-Type'] = b'text/html; charset=utf-8' + try: + return base.render(url) + except ckan.lib.render.TemplateNotFound: + base.abort(404) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/user.py b/venv/lib/python2.7/site-packages/ckan/controllers/user.py new file mode 100644 index 00000000..23d143bd --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/user.py @@ -0,0 +1,748 @@ +# encoding: utf-8 + +import logging + +from ckan.common import config +from paste.deploy.converters import asbool +from six import text_type + +import ckan.lib.base as base +import ckan.model as model +import ckan.lib.helpers as h +import ckan.authz as authz +import ckan.logic as logic +import ckan.logic.schema as schema +import ckan.lib.captcha as captcha +import ckan.lib.mailer as mailer +import ckan.lib.navl.dictization_functions as dictization_functions +import ckan.lib.authenticator as authenticator +import ckan.plugins as p + +from ckan.common import _, c, request, response + +log = logging.getLogger(__name__) + + +abort = base.abort +render = base.render + +check_access = logic.check_access +get_action = logic.get_action +NotFound = logic.NotFound +NotAuthorized = logic.NotAuthorized +ValidationError = logic.ValidationError +UsernamePasswordError = logic.UsernamePasswordError + +DataError = dictization_functions.DataError +unflatten = dictization_functions.unflatten + + +def set_repoze_user(user_id): + '''Set the repoze.who cookie to match a given user_id''' + if 'repoze.who.plugins' in request.environ: + rememberer = request.environ['repoze.who.plugins']['friendlyform'] + identity = {'repoze.who.userid': user_id} + response.headerlist += rememberer.remember(request.environ, + identity) + + +class UserController(base.BaseController): + def __before__(self, action, **env): + base.BaseController.__before__(self, action, **env) + try: + context = {'model': model, 'user': c.user, + 'auth_user_obj': c.userobj} + check_access('site_read', context) + except NotAuthorized: + if c.action not in ('login', 'request_reset', 'perform_reset',): + abort(403, _('Not authorized to see this page')) + + # hooks for subclasses + new_user_form = 'user/new_user_form.html' + edit_user_form = 'user/edit_user_form.html' + + def _new_form_to_db_schema(self): + return schema.user_new_form_schema() + + def _db_to_new_form_schema(self): + '''This is an interface to manipulate data from the database + into a format suitable for the form (optional)''' + + def _edit_form_to_db_schema(self): + return schema.user_edit_form_schema() + + def _db_to_edit_form_schema(self): + '''This is an interface to manipulate data from the database + into a format suitable for the form (optional)''' + + def _setup_template_variables(self, context, data_dict): + c.is_sysadmin = authz.is_sysadmin(c.user) + try: + user_dict = get_action('user_show')(context, data_dict) + except NotFound: + h.flash_error(_('Not authorized to see this page')) + h.redirect_to(controller='user', action='login') + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + c.user_dict = user_dict + c.is_myself = user_dict['name'] == c.user + c.about_formatted = h.render_markdown(user_dict['about']) + + # end hooks + + def _get_repoze_handler(self, handler_name): + '''Returns the URL that repoze.who will respond to and perform a + login or logout.''' + return getattr(request.environ['repoze.who.plugins']['friendlyform'], + handler_name) + + def index(self): + page = h.get_page_number(request.params) + c.q = request.params.get('q', '') + c.order_by = request.params.get('order_by', 'name') + + context = {'return_query': True, 'user': c.user, + 'auth_user_obj': c.userobj} + + data_dict = {'q': c.q, + 'order_by': c.order_by} + + limit = int( + request.params.get('limit', config.get('ckan.user_list_limit', 20)) + ) + try: + check_access('user_list', context, data_dict) + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + users_list = get_action('user_list')(context, data_dict) + + c.page = h.Page( + collection=users_list, + page=page, + url=h.pager_url, + item_count=users_list.count(), + items_per_page=limit + ) + return render('user/list.html') + + def read(self, id=None): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + data_dict = {'id': id, + 'user_obj': c.userobj, + 'include_datasets': True, + 'include_num_followers': True} + + self._setup_template_variables(context, data_dict) + + # The legacy templates have the user's activity stream on the user + # profile page, new templates do not. + if asbool(config.get('ckan.legacy_templates', False)): + c.user_activity_stream = get_action('user_activity_list_html')( + context, {'id': c.user_dict['id']}) + + return render('user/read.html') + + def me(self, locale=None): + if not c.user: + h.redirect_to(locale=locale, controller='user', action='login', + id=None) + user_ref = c.userobj.get_reference_preferred_for_uri() + h.redirect_to(locale=locale, controller='user', action='dashboard') + + def register(self, data=None, errors=None, error_summary=None): + context = {'model': model, 'session': model.Session, 'user': c.user, + 'auth_user_obj': c.userobj} + try: + check_access('user_create', context) + except NotAuthorized: + abort(403, _('Unauthorized to register as a user.')) + + return self.new(data, errors, error_summary) + + def new(self, data=None, errors=None, error_summary=None): + '''GET to display a form for registering a new user. + or POST the form data to actually do the user registration. + ''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj, + 'schema': self._new_form_to_db_schema(), + 'save': 'save' in request.params} + + try: + check_access('user_create', context) + except NotAuthorized: + abort(403, _('Unauthorized to create a user')) + + if context['save'] and not data and request.method == 'POST': + return self._save_new(context) + + if c.user and not data and not authz.is_sysadmin(c.user): + # #1799 Don't offer the registration form if already logged in + return render('user/logout_first.html') + + data = data or {} + errors = errors or {} + error_summary = error_summary or {} + vars = {'data': data, 'errors': errors, 'error_summary': error_summary} + + c.is_sysadmin = authz.is_sysadmin(c.user) + c.form = render(self.new_user_form, extra_vars=vars) + return render('user/new.html') + + def delete(self, id): + '''Delete user with id passed as parameter''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'id': id} + + try: + get_action('user_delete')(context, data_dict) + user_index = h.url_for(controller='user', action='index') + h.redirect_to(user_index) + except NotAuthorized: + msg = _('Unauthorized to delete user with id "{user_id}".') + abort(403, msg.format(user_id=id)) + + def generate_apikey(self, id): + '''Cycle the API key of a user''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj, + } + if id is None: + if c.userobj: + id = c.userobj.id + else: + abort(400, _('No user specified')) + data_dict = {'id': id} + + try: + result = get_action('user_generate_apikey')(context, data_dict) + except NotAuthorized: + abort(403, _('Unauthorized to edit user %s') % '') + except NotFound: + abort(404, _('User not found')) + + h.flash_success(_('Profile updated')) + h.redirect_to(controller='user', action='read', id=result['name']) + + def _save_new(self, context): + try: + data_dict = logic.clean_dict(unflatten( + logic.tuplize_dict(logic.parse_params(request.params)))) + context['message'] = data_dict.get('log_message', '') + captcha.check_recaptcha(request) + user = get_action('user_create')(context, data_dict) + except NotAuthorized: + abort(403, _('Unauthorized to create user %s') % '') + except NotFound as e: + abort(404, _('User not found')) + except DataError: + abort(400, _(u'Integrity Error')) + except captcha.CaptchaError: + error_msg = _(u'Bad Captcha. Please try again.') + h.flash_error(error_msg) + return self.new(data_dict) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.new(data_dict, errors, error_summary) + if not c.user: + # log the user in programatically + set_repoze_user(data_dict['name']) + h.redirect_to(controller='user', action='me') + else: + # #1799 User has managed to register whilst logged in - warn user + # they are not re-logged in as new user. + h.flash_success(_('User "%s" is now registered but you are still ' + 'logged in as "%s" from before') % + (data_dict['name'], c.user)) + if authz.is_sysadmin(c.user): + # the sysadmin created a new user. We redirect him to the + # activity page for the newly created user + h.redirect_to(controller='user', + action='activity', + id=data_dict['name']) + else: + return render('user/logout_first.html') + + def edit(self, id=None, data=None, errors=None, error_summary=None): + context = {'save': 'save' in request.params, + 'schema': self._edit_form_to_db_schema(), + 'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj + } + if id is None: + if c.userobj: + id = c.userobj.id + else: + abort(400, _('No user specified')) + data_dict = {'id': id} + + try: + check_access('user_update', context, data_dict) + except NotAuthorized: + abort(403, _('Unauthorized to edit a user.')) + + if context['save'] and not data and request.method == 'POST': + return self._save_edit(id, context) + + try: + old_data = get_action('user_show')(context, data_dict) + + schema = self._db_to_edit_form_schema() + if schema: + old_data, errors = \ + dictization_functions.validate(old_data, schema, context) + + c.display_name = old_data.get('display_name') + c.user_name = old_data.get('name') + + data = data or old_data + + except NotAuthorized: + abort(403, _('Unauthorized to edit user %s') % '') + except NotFound: + abort(404, _('User not found')) + + user_obj = context.get('user_obj') + + if not (authz.is_sysadmin(c.user) + or c.user == user_obj.name): + abort(403, _('User %s not authorized to edit %s') % + (str(c.user), id)) + + errors = errors or {} + vars = {'data': data, 'errors': errors, 'error_summary': error_summary} + + self._setup_template_variables({'model': model, + 'session': model.Session, + 'user': c.user}, + data_dict) + + c.is_myself = True + c.show_email_notifications = asbool( + config.get('ckan.activity_streams_email_notifications')) + c.form = render(self.edit_user_form, extra_vars=vars) + + return render('user/edit.html') + + def _save_edit(self, id, context): + try: + if id in (c.userobj.id, c.userobj.name): + current_user = True + else: + current_user = False + old_username = c.userobj.name + + data_dict = logic.clean_dict(unflatten( + logic.tuplize_dict(logic.parse_params(request.params)))) + context['message'] = data_dict.get('log_message', '') + data_dict['id'] = id + + email_changed = data_dict['email'] != c.userobj.email + + if (data_dict['password1'] and data_dict['password2']) \ + or email_changed: + identity = {'login': c.user, + 'password': data_dict['old_password']} + auth = authenticator.UsernamePasswordAuthenticator() + + if auth.authenticate(request.environ, identity) != c.user: + raise UsernamePasswordError + + # MOAN: Do I really have to do this here? + if 'activity_streams_email_notifications' not in data_dict: + data_dict['activity_streams_email_notifications'] = False + + user = get_action('user_update')(context, data_dict) + h.flash_success(_('Profile updated')) + + if current_user and data_dict['name'] != old_username: + # Changing currently logged in user's name. + # Update repoze.who cookie to match + set_repoze_user(data_dict['name']) + h.redirect_to(controller='user', action='read', id=user['name']) + except NotAuthorized: + abort(403, _('Unauthorized to edit user %s') % id) + except NotFound as e: + abort(404, _('User not found')) + except DataError: + abort(400, _(u'Integrity Error')) + except ValidationError as e: + errors = e.error_dict + error_summary = e.error_summary + return self.edit(id, data_dict, errors, error_summary) + except UsernamePasswordError: + errors = {'oldpassword': [_('Password entered was incorrect')]} + error_summary = {_('Old Password'): _('incorrect password')} + return self.edit(id, data_dict, errors, error_summary) + + def login(self, error=None): + # Do any plugin login stuff + for item in p.PluginImplementations(p.IAuthenticator): + item.login() + + if 'error' in request.params: + h.flash_error(request.params['error']) + + if not c.user: + came_from = request.params.get('came_from') + if not came_from: + came_from = h.url_for(controller='user', action='logged_in') + c.login_handler = h.url_for( + self._get_repoze_handler('login_handler_path'), + came_from=came_from) + if error: + vars = {'error_summary': {'': error}} + else: + vars = {} + return render('user/login.html', extra_vars=vars) + else: + return render('user/logout_first.html') + + def logged_in(self): + # redirect if needed + came_from = request.params.get('came_from', '') + if h.url_is_local(came_from): + return h.redirect_to(str(came_from)) + + if c.user: + context = None + data_dict = {'id': c.user} + + user_dict = get_action('user_show')(context, data_dict) + + return self.me() + else: + err = _('Login failed. Bad username or password.') + if asbool(config.get('ckan.legacy_templates', 'false')): + h.flash_error(err) + h.redirect_to(controller='user', + action='login', came_from=came_from) + else: + return self.login(error=err) + + def logout(self): + # Do any plugin logout stuff + for item in p.PluginImplementations(p.IAuthenticator): + item.logout() + url = h.url_for(controller='user', action='logged_out_page') + h.redirect_to(self._get_repoze_handler('logout_handler_path') + + '?came_from=' + url, parse_url=True) + + def logged_out(self): + # redirect if needed + came_from = request.params.get('came_from', '') + if h.url_is_local(came_from): + return h.redirect_to(str(came_from)) + h.redirect_to(controller='user', action='logged_out_page') + + def logged_out_page(self): + return render('user/logout.html') + + def request_reset(self): + context = {'model': model, 'session': model.Session, 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'id': request.params.get('user')} + try: + check_access('request_reset', context) + except NotAuthorized: + abort(403, _('Unauthorized to request reset password.')) + + if request.method == 'POST': + id = request.params.get('user') + + context = {'model': model, + 'user': c.user} + + data_dict = {'id': id} + user_obj = None + try: + user_dict = get_action('user_show')(context, data_dict) + user_obj = context['user_obj'] + except NotFound: + # Try searching the user + del data_dict['id'] + data_dict['q'] = id + + if id and len(id) > 2: + user_list = get_action('user_list')(context, data_dict) + if len(user_list) == 1: + # This is ugly, but we need the user object for the + # mailer, + # and user_list does not return them + del data_dict['q'] + data_dict['id'] = user_list[0]['id'] + user_dict = get_action('user_show')(context, data_dict) + user_obj = context['user_obj'] + elif len(user_list) > 1: + h.flash_error(_('"%s" matched several users') % (id)) + else: + h.flash_error(_('No such user: %s') % id) + else: + h.flash_error(_('No such user: %s') % id) + + if user_obj: + try: + mailer.send_reset_link(user_obj) + h.flash_success(_('Please check your inbox for ' + 'a reset code.')) + h.redirect_to(u'home.index') + except mailer.MailerException as e: + h.flash_error(_('Could not send reset link: %s') % + text_type(e)) + return render('user/request_reset.html') + + def perform_reset(self, id): + # FIXME 403 error for invalid key is a non helpful page + context = {'model': model, 'session': model.Session, + 'user': id, + 'keep_email': True} + + try: + check_access('user_reset', context) + except NotAuthorized: + abort(403, _('Unauthorized to reset password.')) + + try: + data_dict = {'id': id} + user_dict = get_action('user_show')(context, data_dict) + + user_obj = context['user_obj'] + except NotFound as e: + abort(404, _('User not found')) + + c.reset_key = request.params.get('key') + if not mailer.verify_reset_link(user_obj, c.reset_key): + h.flash_error(_('Invalid reset key. Please try again.')) + abort(403) + + if request.method == 'POST': + try: + context['reset_password'] = True + user_state = user_dict['state'] + new_password = self._get_form_password() + user_dict['password'] = new_password + username = request.params.get('name') + if (username is not None and username != ''): + user_dict['name'] = username + user_dict['reset_key'] = c.reset_key + user_dict['state'] = model.State.ACTIVE + user = get_action('user_update')(context, user_dict) + mailer.create_reset_key(user_obj) + + h.flash_success(_("Your password has been reset.")) + h.redirect_to(u'home.index') + except NotAuthorized: + h.flash_error(_('Unauthorized to edit user %s') % id) + except NotFound as e: + h.flash_error(_('User not found')) + except DataError: + h.flash_error(_(u'Integrity Error')) + except ValidationError as e: + h.flash_error(u'%r' % e.error_dict) + except ValueError as ve: + h.flash_error(text_type(ve)) + user_dict['state'] = user_state + + c.user_dict = user_dict + return render('user/perform_reset.html') + + def _get_form_password(self): + password1 = request.params.getone('password1') + password2 = request.params.getone('password2') + if (password1 is not None and password1 != ''): + if not len(password1) >= 4: + raise ValueError(_('Your password must be 4 ' + 'characters or longer.')) + elif not password1 == password2: + raise ValueError(_('The passwords you entered' + ' do not match.')) + return password1 + raise ValueError(_('You must provide a password')) + + def followers(self, id=None): + context = {'for_view': True, 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'id': id, 'user_obj': c.userobj, + 'include_num_followers': True} + self._setup_template_variables(context, data_dict) + f = get_action('user_follower_list') + try: + c.followers = f(context, {'id': c.user_dict['id']}) + except NotAuthorized: + abort(403, _('Unauthorized to view followers %s') % '') + return render('user/followers.html') + + def activity(self, id, offset=0): + '''Render this user's public activity stream page.''' + + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + data_dict = {'id': id, 'user_obj': c.userobj, + 'include_num_followers': True} + try: + check_access('user_show', context, data_dict) + except NotAuthorized: + abort(403, _('Not authorized to see this page')) + + self._setup_template_variables(context, data_dict) + + try: + c.user_activity_stream = get_action('user_activity_list_html')( + context, {'id': c.user_dict['id'], 'offset': offset}) + except ValidationError: + base.abort(400) + + return render('user/activity_stream.html') + + def _get_dashboard_context(self, filter_type=None, filter_id=None, q=None): + '''Return a dict needed by the dashboard view to determine context.''' + + def display_name(followee): + '''Return a display name for a user, group or dataset dict.''' + display_name = followee.get('display_name') + fullname = followee.get('fullname') + title = followee.get('title') + name = followee.get('name') + return display_name or fullname or title or name + + if (filter_type and filter_id): + context = { + 'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True + } + data_dict = {'id': filter_id, 'include_num_followers': True} + followee = None + + action_functions = { + 'dataset': 'package_show', + 'user': 'user_show', + 'group': 'group_show', + 'organization': 'organization_show', + } + action_function = logic.get_action( + action_functions.get(filter_type)) + # Is this a valid type? + if action_function is None: + abort(404, _('Follow item not found')) + try: + followee = action_function(context, data_dict) + except (NotFound, NotAuthorized): + abort(404, _('{0} not found').format(filter_type)) + + if followee is not None: + return { + 'filter_type': filter_type, + 'q': q, + 'context': display_name(followee), + 'selected_id': followee.get('id'), + 'dict': followee, + } + + return { + 'filter_type': filter_type, + 'q': q, + 'context': _('Everything'), + 'selected_id': False, + 'dict': None, + } + + def dashboard(self, id=None, offset=0): + context = {'model': model, 'session': model.Session, + 'user': c.user, 'auth_user_obj': c.userobj, + 'for_view': True} + data_dict = {'id': id, 'user_obj': c.userobj, 'offset': offset} + self._setup_template_variables(context, data_dict) + + q = request.params.get('q', u'') + filter_type = request.params.get('type', u'') + filter_id = request.params.get('name', u'') + + c.followee_list = get_action('followee_list')( + context, {'id': c.userobj.id, 'q': q}) + c.dashboard_activity_stream_context = self._get_dashboard_context( + filter_type, filter_id, q) + c.dashboard_activity_stream = h.dashboard_activity_stream( + c.userobj.id, filter_type, filter_id, offset + ) + + # Mark the user's new activities as old whenever they view their + # dashboard page. + get_action('dashboard_mark_activities_old')(context, {}) + + return render('user/dashboard.html') + + def dashboard_datasets(self): + context = {'for_view': True, 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'user_obj': c.userobj, 'include_datasets': True} + self._setup_template_variables(context, data_dict) + return render('user/dashboard_datasets.html') + + def dashboard_organizations(self): + context = {'for_view': True, 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'user_obj': c.userobj} + self._setup_template_variables(context, data_dict) + return render('user/dashboard_organizations.html') + + def dashboard_groups(self): + context = {'for_view': True, 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'user_obj': c.userobj} + self._setup_template_variables(context, data_dict) + return render('user/dashboard_groups.html') + + def follow(self, id): + '''Start following this user.''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'id': id, 'include_num_followers': True} + try: + get_action('follow_user')(context, data_dict) + user_dict = get_action('user_show')(context, data_dict) + h.flash_success(_("You are now following {0}").format( + user_dict['display_name'])) + except ValidationError as e: + error_message = (e.message or e.error_summary + or e.error_dict) + h.flash_error(error_message) + except NotAuthorized as e: + h.flash_error(e.message) + h.redirect_to(controller='user', action='read', id=id) + + def unfollow(self, id): + '''Stop following this user.''' + context = {'model': model, + 'session': model.Session, + 'user': c.user, + 'auth_user_obj': c.userobj} + data_dict = {'id': id, 'include_num_followers': True} + try: + get_action('unfollow_user')(context, data_dict) + user_dict = get_action('user_show')(context, data_dict) + h.flash_success(_("You are no longer following {0}").format( + user_dict['display_name'])) + except (NotFound, NotAuthorized) as e: + error_message = e.message + h.flash_error(error_message) + except ValidationError as e: + error_message = (e.error_summary or e.message + or e.error_dict) + h.flash_error(error_message) + h.redirect_to(controller='user', action='read', id=id) diff --git a/venv/lib/python2.7/site-packages/ckan/controllers/util.py b/venv/lib/python2.7/site-packages/ckan/controllers/util.py new file mode 100644 index 00000000..4a41bfb0 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/controllers/util.py @@ -0,0 +1,42 @@ +# encoding: utf-8 + +import re + +import ckan.lib.base as base +import ckan.lib.i18n as i18n +import ckan.lib.helpers as h +from ckan.common import _ + + +class UtilController(base.BaseController): + ''' Controller for functionality that has no real home''' + + def redirect(self): + ''' redirect to the url parameter. ''' + url = base.request.params.get('url') + if not url: + base.abort(400, _('Missing Value') + ': url') + + if h.url_is_local(url): + return h.redirect_to(url) + else: + base.abort(403, _('Redirecting to external site is not allowed.')) + + def primer(self): + ''' Render all html components out onto a single page. + This is useful for development/styling of ckan. ''' + return base.render('development/primer.html') + + def markup(self): + ''' Render all html elements out onto a single page. + This is useful for development/styling of ckan. ''' + return base.render('development/markup.html') + + def i18_js_strings(self, lang): + ''' This is used to produce the translations for javascript. ''' + i18n.set_lang(lang) + html = base.render('js_strings.html', cache_force=True) + html = re.sub('<[^\>]*>', '', html) + header = "text/javascript; charset=utf-8" + base.response.headers['Content-type'] = header + return html diff --git a/venv/lib/python2.7/site-packages/ckan/exceptions.py b/venv/lib/python2.7/site-packages/ckan/exceptions.py new file mode 100644 index 00000000..370b6b3e --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/exceptions.py @@ -0,0 +1,34 @@ +# encoding: utf-8 + + +class CkanException(Exception): + pass + + +class EmptyRevisionException(CkanException): + pass + + +class CkanUrlException(Exception): + pass + + +class CkanVersionException(Exception): + '''Exception raised by + :py:func:`~ckan.plugins.toolkit.requires_ckan_version` if the required CKAN + version is not available. + + ''' + pass + + +class CkanConfigurationException(Exception): + pass + + +class HelperError(Exception): + """Raised if an attempt to access an undefined helper is made. + + Normally, this would be a subclass of AttributeError, but Jinja2 will + catch and ignore them. We want this to be an explicit failure re #2908. + """ diff --git a/venv/lib/python2.7/site-packages/ckan/i18n/__init__.py b/venv/lib/python2.7/site-packages/ckan/i18n/__init__.py new file mode 100644 index 00000000..caf2aafa --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/i18n/__init__.py @@ -0,0 +1,3 @@ +# encoding: utf-8 + +# Need some content here to avoid the packaging stripping it out diff --git a/venv/lib/python2.7/site-packages/ckan/i18n/check_po_files.py b/venv/lib/python2.7/site-packages/ckan/i18n/check_po_files.py new file mode 100644 index 00000000..ea0d58bb --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/i18n/check_po_files.py @@ -0,0 +1,94 @@ +#!/usr/bin/env python +# encoding: utf-8 + +'''Script for checking for common translation mistakes in po files, see: + + paster check-po-files --help + +for usage. +''' +import polib +import re +import paste.script.command + + +def simple_conv_specs(s): + '''Return the simple Python string conversion specifiers in the string s. + + e.g. ['%s', '%i'] + + See http://docs.python.org/library/stdtypes.html#string-formatting + + ''' + simple_conv_specs_re = re.compile('\%\w') + return simple_conv_specs_re.findall(s) + + +def mapping_keys(s): + '''Return a sorted list of the mapping keys in the string s. + + e.g. ['%(name)s', '%(age)i'] + + See http://docs.python.org/library/stdtypes.html#string-formatting + + ''' + mapping_keys_re = re.compile('\%\([^\)]*\)\w') + return sorted(mapping_keys_re.findall(s)) + + +def replacement_fields(s): + '''Return a sorted list of the Python replacement fields in the string s. + + e.g. ['{}', '{2}', '{object}', '{target}'] + + See http://docs.python.org/library/string.html#formatstrings + + ''' + repl_fields_re = re.compile('\{[^\}]*\}') + return sorted(repl_fields_re.findall(s)) + + +class CheckPoFiles(paste.script.command.Command): + + usage = "[FILE] ..." + group_name = 'ckan' + summary = 'Check po files for common mistakes' + parser = paste.script.command.Command.standard_parser(verbose=True) + + def command(self): + + for path in self.args: + print(u'Checking file {}'.format(path)) + errors = check_po_file(path) + if errors: + for msgid, msgstr in errors: + print("Format specifiers don't match:") + print(u' {0} -> {1}'.format( + msgid, msgstr.encode('ascii', 'replace'))) + + +def check_po_file(path): + errors = [] + + def check_translation(validator, msgid, msgstr): + if not validator(msgid) == validator(msgstr): + errors.append((msgid, msgstr)) + + po = polib.pofile(path) + for entry in po.translated_entries(): + if entry.msgid_plural and entry.msgstr_plural: + for function in (simple_conv_specs, mapping_keys, + replacement_fields): + for key, msgstr in entry.msgstr_plural.iteritems(): + if key == '0': + check_translation(function, entry.msgid, + entry.msgstr_plural[key]) + else: + check_translation(function, entry.msgid_plural, + entry.msgstr_plural[key]) + elif entry.msgstr: + for function in (simple_conv_specs, mapping_keys, + replacement_fields): + check_translation(function, entry.msgid, entry.msgstr) + + return errors diff --git a/venv/lib/python2.7/site-packages/ckan/i18n/ckan.pot b/venv/lib/python2.7/site-packages/ckan/i18n/ckan.pot new file mode 100644 index 00000000..190d06c3 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/i18n/ckan.pot @@ -0,0 +1,4665 @@ +# Translations template for ckan. +# Copyright (C) 2018 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2018. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.8.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2018-03-27 16:10+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.5.3\n" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:681 ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckan/controllers/package.py:613 ckan/controllers/package.py:1076 +#: ckan/controllers/package.py:1096 ckan/controllers/package.py:1163 +#: ckan/controllers/package.py:1346 ckan/controllers/package.py:1424 +#: ckan/controllers/package.py:1455 ckan/controllers/package.py:1563 +#: ckan/controllers/package.py:1614 ckanext/datapusher/plugin.py:59 +#: ckanext/datastore/controller.py:80 ckanext/resourceproxy/controller.py:33 +msgid "Resource not found" +msgstr "" + +#: ckan/controllers/api.py:66 ckan/controllers/group.py:156 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/revision.py:34 +#: ckan/controllers/tag.py:27 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:83 ckan/controllers/user.py:86 +#: ckan/controllers/user.py:117 ckan/controllers/user.py:598 +#: ckan/views/dashboard.py:24 ckan/views/user.py:59 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:476 +#: ckanext/datapusher/plugin.py:68 +msgid "Not authorized to see this page" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/controller.py:53 +#, python-format +msgid "format: must be one of %s" +msgstr "" + +#: ckanext/datastore/controller.py:65 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/controller.py:101 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource " +"is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1032 +msgid "" +"The data was invalid (for example: a numeric value is out of range or was " +"inserted into a text field)." +msgstr "" + +#: ckanext/datastore/logic/action.py:258 ckanext/datastore/logic/action.py:286 +#: ckanext/datastore/logic/action.py:344 ckanext/datastore/logic/action.py:457 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:19 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "The Data API can be accessed via the following actions of the CKAN action API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:60 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:26 +#: ckanext/datastore/templates/datastore/dictionary.html:20 +msgid "Save" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:16 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:18 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +#: ckan/templates/organization/snippets/organization_form.html:20 +#: ckan/templates/package/snippets/package_basic_fields.html:19 +#: ckan/templates/package/snippets/resource_form.html:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:21 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/activity-stream.js:97 +#: ckan/public-bs2/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:8 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/reclineview/theme/templates/recline_view.html:14 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:10 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +msgid "" +" Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datatablesview/plugin.py:47 ckanext/reclineview/plugin.py:128 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:28 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + +#: ckan/templates/group/read.html:13 ckan/templates/organization/read.html:19 +#: ckan/templates/package/search.html:29 ckan/templates/snippets/sort_by.html:14 +#: ckanext/example_idatasetform/templates/package/search.html:12 +msgid "Relevance" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:97 +#: ckan/templates/organization/index.html:20 +#: ckan/templates/organization/read.html:20 ckan/templates/package/search.html:30 +#: ckan/templates/snippets/search_form.html:4 +#: ckan/templates/snippets/simple_search.html:10 +#: ckan/templates/snippets/sort_by.html:15 +#: ckanext/example_idatasetform/templates/package/search.html:13 +msgid "Name Ascending" +msgstr "" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:98 +#: ckan/templates/organization/index.html:20 +#: ckan/templates/organization/read.html:21 ckan/templates/package/search.html:31 +#: ckan/templates/snippets/search_form.html:4 +#: ckan/templates/snippets/simple_search.html:10 +#: ckan/templates/snippets/sort_by.html:16 +#: ckanext/example_idatasetform/templates/package/search.html:14 +msgid "Name Descending" +msgstr "" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:99 +#: ckan/templates/organization/read.html:22 ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "" + +#: ckan/templates/group/read.html:17 ckan/templates/organization/read.html:23 +#: ckan/templates/package/search.html:33 +#: ckan/templates/snippets/package_item.html:50 +#: ckan/templates/snippets/popular.html:3 ckan/templates/snippets/sort_by.html:19 +#: ckanext/example_idatasetform/templates/package/search.html:18 +msgid "Popular" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/snippets/additional_info.html:6 +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "Custom Text" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:32 +#: ckan/templates/package/followers.html:3 ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:55 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:49 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:99 ckan/logic/action/__init__.py:60 +#: ckan/templates/package/edit_base.html:21 ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/package_context.html:12 +#: ckan/templates/package/snippets/resources.html:20 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:80 +#: ckan/public/base/javascript/modules/image-upload.js:80 +#: ckan/templates/macros/form.html:424 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" + +#: ckanext/reclineview/plugin.py:101 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:171 +#: ckanext/reclineview/theme/public/recline_view.js:200 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:231 +#: ckanext/reclineview/theme/public/recline_view.js:207 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:28 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:75 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:77 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:193 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:215 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:10 +msgid "Total number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +#: ckanext/stats/templates/ckanext/stats/index.html:40 +msgid "Date" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Total datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:33 +#: ckanext/stats/templates/ckanext/stats/index.html:179 +msgid "Dataset Revisions per Week" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:41 +msgid "All dataset revisions" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "New datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:58 +#: ckanext/stats/templates/ckanext/stats/index.html:180 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:64 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:79 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:84 +#: ckanext/stats/templates/ckanext/stats/index.html:181 +msgid "Most Edited Datasets" +msgstr "" + +#: ckan/logic/converters.py:148 ckan/logic/validators.py:151 +#: ckan/logic/validators.py:193 ckan/templates/package/read_base.html:19 +#: ckan/tests/config/test_middleware.py:619 +#: ckanext/stats/templates/ckanext/stats/index.html:89 +msgid "Dataset" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:90 +msgid "Number of edits" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:103 +msgid "No edited datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +#: ckanext/stats/templates/ckanext/stats/index.html:182 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:173 ckan/logic/validators.py:246 +#: ckanext/stats/templates/ckanext/stats/index.html:113 +msgid "Group" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:114 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:127 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:132 +#: ckanext/stats/templates/ckanext/stats/index.html:183 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:136 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:137 +#: ckanext/stats/templates/ckanext/stats/index.html:157 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:152 +#: ckanext/stats/templates/ckanext/stats/index.html:184 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:123 ckan/logic/validators.py:216 +#: ckan/logic/validators.py:233 ckan/logic/validators.py:714 +#: ckan/templates/group/members.html:14 ckan/templates/organization/members.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:156 +msgid "User" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:175 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:178 +msgid "Total Number of Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:67 ckanext/textview/plugin.py:69 +msgid "Text" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:64 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:207 +#, python-format +msgid "Authorization function not found: %s" +msgstr "" + +#: ckan/authz.py:219 ckan/templates/header.html:11 +msgid "Admin" +msgstr "" + +#: ckan/authz.py:223 +msgid "Editor" +msgstr "" + +#: ckan/authz.py:227 +msgid "Member" +msgstr "" + +#: ckan/controllers/admin.py:34 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "" + +#: ckan/controllers/admin.py:52 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:53 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:88 ckan/templates/home/about.html:3 +#: ckan/templates/home/about.html:6 ckan/templates/home/about.html:16 +#: ckan/templates/organization/about.html:3 +#: ckan/templates/organization/read_base.html:19 +#: ckan/templates/user/edit_user_form.html:14 +msgid "About" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:58 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "" + +#: ckan/controllers/admin.py:161 ckan/views/admin.py:175 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:183 ckan/views/admin.py:197 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:185 ckan/views/admin.py:199 +msgid "Purge complete" +msgstr "" + +#: ckan/controllers/admin.py:187 ckan/views/admin.py:201 +msgid "Action not implemented." +msgstr "" + +#: ckan/controllers/api.py:127 ckan/controllers/api.py:218 ckan/views/api.py:112 +#: ckan/views/api.py:299 +msgid "Access denied" +msgstr "" + +#: ckan/controllers/api.py:133 ckan/controllers/api.py:227 +#: ckan/logic/action/create.py:911 ckan/logic/converters.py:123 +#: ckan/logic/converters.py:148 ckan/logic/converters.py:173 +#: ckan/logic/validators.py:151 ckan/logic/validators.py:172 +#: ckan/logic/validators.py:193 ckan/logic/validators.py:202 +#: ckan/logic/validators.py:216 ckan/logic/validators.py:233 +#: ckan/logic/validators.py:246 ckan/logic/validators.py:270 +#: ckan/logic/validators.py:714 ckan/views/api.py:119 ckan/views/api.py:308 +msgid "Not found" +msgstr "" + +#: ckan/controllers/api.py:139 ckan/views/api.py:126 +msgid "Bad request" +msgstr "" + +#: ckan/controllers/api.py:167 +#, python-format +msgid "Action name not known: %s" +msgstr "" + +#: ckan/controllers/api.py:188 ckan/views/api.py:268 +#, python-format +msgid "JSON Error: %s" +msgstr "" + +#: ckan/controllers/api.py:194 ckan/views/api.py:274 +#, python-format +msgid "Bad request data: %s" +msgstr "" + +#: ckan/controllers/api.py:283 +msgid "No revision specified" +msgstr "" + +#: ckan/controllers/api.py:287 +#, python-format +msgid "There is no revision with id: %s" +msgstr "" + +#: ckan/controllers/api.py:297 +msgid "Missing search term ('since_id=UUID' or 'since_time=TIMESTAMP')" +msgstr "" + +#: ckan/controllers/api.py:309 +#, python-format +msgid "Could not read parameters: %r" +msgstr "" + +#: ckan/controllers/api.py:370 +#, python-format +msgid "Bad search option: %s" +msgstr "" + +#: ckan/controllers/api.py:373 +#, python-format +msgid "Unknown register: %s" +msgstr "" + +#: ckan/controllers/api.py:382 +#, python-format +msgid "Malformed qjson value: %r" +msgstr "" + +#: ckan/controllers/api.py:392 +msgid "Request params must be in form of a json encoded dictionary." +msgstr "" + +#: ckan/controllers/feed.py:234 ckan/controllers/group.py:128 +#: ckan/controllers/group.py:226 ckan/controllers/group.py:394 +#: ckan/controllers/group.py:504 ckan/controllers/group.py:537 +#: ckan/controllers/group.py:567 ckan/controllers/group.py:578 +#: ckan/controllers/group.py:632 ckan/controllers/group.py:653 +#: ckan/controllers/group.py:714 ckan/controllers/group.py:746 +#: ckan/controllers/group.py:779 ckan/controllers/group.py:836 +#: ckan/controllers/group.py:933 ckan/controllers/package.py:1265 +#: ckan/controllers/package.py:1280 ckan/logic/action/create.py:1373 +#: ckan/views/feed.py:143 +msgid "Group not found" +msgstr "" + +#: ckan/controllers/feed.py:245 ckan/logic/action/create.py:1373 +#: ckan/views/feed.py:160 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:130 ckan/controllers/group.py:581 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:306 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1036 +#: ckan/templates/header.html:87 ckan/templates/organization/edit_base.html:5 +#: ckan/templates/organization/edit_base.html:8 +#: ckan/templates/organization/index.html:3 +#: ckan/templates/organization/index.html:6 +#: ckan/templates/organization/index.html:18 +#: ckan/templates/organization/read_base.html:3 +#: ckan/templates/organization/read_base.html:6 ckan/templates/package/base.html:14 +#: ckan/views/home.py:46 +msgid "Organizations" +msgstr "" + +#: ckan/controllers/group.py:307 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1037 +#: ckan/templates/group/base_form_page.html:6 ckan/templates/group/edit.html:4 +#: ckan/templates/group/edit_base.html:3 ckan/templates/group/edit_base.html:8 +#: ckan/templates/group/index.html:3 ckan/templates/group/index.html:6 +#: ckan/templates/group/index.html:18 ckan/templates/group/members.html:3 +#: ckan/templates/group/read_base.html:3 ckan/templates/group/read_base.html:6 +#: ckan/templates/header.html:88 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:20 ckan/templates/revision/diff.html:16 +#: ckan/templates/revision/read.html:84 ckan/tests/config/test_middleware.py:632 +#: ckan/views/home.py:47 +msgid "Groups" +msgstr "" + +#: ckan/controllers/group.py:308 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1038 +#: ckan/logic/__init__.py:110 +#: ckan/templates/package/snippets/package_basic_fields.html:24 +#: ckan/templates/snippets/context/dataset.html:17 ckan/templates/tag/index.html:3 +#: ckan/templates/tag/index.html:6 ckan/templates/tag/index.html:12 +#: ckan/views/home.py:48 +msgid "Tags" +msgstr "" + +#: ckan/controllers/group.py:309 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1039 ckan/views/home.py:49 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:310 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1040 ckan/views/home.py:50 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:396 ckan/controllers/group.py:513 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:576 +#: ckan/controllers/package.py:789 ckan/controllers/package.py:1409 +#: ckan/controllers/package.py:1443 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" + +#: ckan/controllers/group.py:443 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:461 +msgid "Unauthorized to create a group" +msgstr "" + +#: ckan/controllers/group.py:539 ckan/controllers/group.py:569 +#: ckan/controllers/package.py:944 ckan/controllers/package.py:992 +#: ckan/controllers/user.py:250 ckan/controllers/user.py:380 +#: ckan/controllers/user.py:551 ckan/views/user.py:193 ckan/views/user.py:300 +#: ckan/views/user.py:620 +msgid "Integrity Error" +msgstr "" + +#: ckan/controllers/group.py:595 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" + +#: ckan/controllers/group.py:615 ckan/controllers/group.py:630 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:621 +msgid "Organization has been deleted." +msgstr "" + +#: ckan/controllers/group.py:623 +msgid "Group has been deleted." +msgstr "" + +#: ckan/controllers/group.py:625 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:657 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:670 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:712 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:731 ckan/controllers/group.py:744 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:738 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:762 ckan/controllers/package.py:436 +msgid "Select two revisions before doing the comparison." +msgstr "" + +#: ckan/controllers/group.py:786 +msgid "CKAN Group Revision History" +msgstr "" + +#: ckan/controllers/group.py:790 +msgid "Recent changes to CKAN Group: " +msgstr "" + +#: ckan/controllers/group.py:811 ckan/controllers/package.py:487 +msgid "Log message: " +msgstr "" + +#: ckan/controllers/group.py:861 ckan/controllers/package.py:1193 +#: ckan/controllers/user.py:719 ckan/views/user.py:650 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:881 ckan/controllers/package.py:1212 +#: ckan/controllers/user.py:739 ckan/views/user.py:672 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:901 ckan/controllers/user.py:584 +#: ckan/views/user.py:697 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" + +#: ckan/controllers/home.py:73 ckan/views/home.py:58 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" + +#: ckan/controllers/home.py:75 ckan/views/home.py:60 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" + +#: ckan/controllers/package.py:304 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:456 +#: ckan/controllers/package.py:775 ckan/controllers/package.py:823 +#: ckan/controllers/package.py:841 ckan/controllers/package.py:942 +#: ckan/controllers/package.py:990 ckan/controllers/package.py:1042 +#: ckan/controllers/package.py:1089 ckan/controllers/package.py:1237 +#: ckan/controllers/package.py:1253 ckan/controllers/package.py:1316 +#: ckan/controllers/package.py:1415 ckan/controllers/package.py:1450 +#: ckan/controllers/package.py:1557 +msgid "Dataset not found" +msgstr "" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "" + +#: ckan/controllers/package.py:415 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:454 ckan/controllers/package.py:839 +#: ckan/controllers/package.py:940 ckan/controllers/package.py:988 +#: ckan/controllers/package.py:1239 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:463 +msgid "CKAN Dataset Revision History" +msgstr "" + +#: ckan/controllers/package.py:466 +msgid "Recent changes to CKAN Dataset: " +msgstr "" + +#: ckan/controllers/package.py:522 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:598 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:666 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:668 ckan/controllers/package.py:705 +#: ckan/controllers/package.py:731 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:672 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:703 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:736 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:950 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:998 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1035 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1040 ckan/controllers/package.py:1058 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1063 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1074 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1133 ckan/controllers/package.py:1576 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1172 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1181 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1318 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1426 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1490 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1508 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1514 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1570 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1579 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1608 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/revision.py:45 +msgid "CKAN Repository Revision History" +msgstr "" + +#: ckan/controllers/revision.py:47 +msgid "Recent changes to the CKAN repository." +msgstr "" + +#: ckan/controllers/revision.py:111 +#, python-format +msgid "Datasets affected: %s.\n" +msgstr "" + +#: ckan/controllers/revision.py:191 +msgid "Revision updated" +msgstr "" + +#: ckan/controllers/tag.py:60 +msgid "Other" +msgstr "" + +#: ckan/controllers/tag.py:74 +msgid "Tag not found" +msgstr "" + +#: ckan/controllers/user.py:162 ckan/views/user.py:290 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:180 +msgid "Unauthorized to create a user" +msgstr "" + +#: ckan/controllers/user.py:211 ckan/views/user.py:426 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:225 ckan/controllers/user.py:288 ckan/views/user.py:168 +#: ckan/views/user.py:444 +msgid "No user specified" +msgstr "" + +#: ckan/controllers/user.py:231 ckan/controllers/user.py:313 +#: ckan/controllers/user.py:376 ckan/controllers/user.py:547 ckan/views/user.py:218 +#: ckan/views/user.py:246 ckan/views/user.py:450 ckan/views/user.py:616 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "" + +#: ckan/controllers/user.py:233 ckan/controllers/user.py:248 +#: ckan/controllers/user.py:315 ckan/controllers/user.py:378 +#: ckan/controllers/user.py:523 ckan/controllers/user.py:549 +#: ckan/logic/auth/update.py:179 ckan/views/user.py:220 ckan/views/user.py:248 +#: ckan/views/user.py:315 ckan/views/user.py:452 ckan/views/user.py:573 +#: ckan/views/user.py:618 +msgid "User not found" +msgstr "" + +#: ckan/controllers/user.py:235 ckan/controllers/user.py:368 ckan/views/user.py:226 +#: ckan/views/user.py:454 +msgid "Profile updated" +msgstr "" + +#: ckan/controllers/user.py:246 ckan/views/user.py:313 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "" + +#: ckan/controllers/user.py:252 ckan/views/user.py:306 +msgid "Bad Captcha. Please try again." +msgstr "" + +#: ckan/controllers/user.py:266 ckan/views/user.py:325 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:294 ckan/views/user.py:174 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:321 ckan/views/user.py:252 +#, python-format +msgid "User %s not authorized to edit %s" +msgstr "" + +#: ckan/controllers/user.py:386 ckan/views/user.py:210 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:387 ckan/templates/user/edit_user_form.html:29 +#: ckan/views/user.py:212 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:387 ckan/views/user.py:212 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:427 ckan/views/user.py:386 +msgid "Login failed. Bad username or password." +msgstr "" + +#: ckan/controllers/user.py:460 ckan/views/user.py:504 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:489 ckan/views/user.py:530 +#, python-format +msgid "\"%s\" matched several users" +msgstr "" + +#: ckan/controllers/user.py:491 ckan/controllers/user.py:493 ckan/views/user.py:532 +#: ckan/views/user.py:534 +#, python-format +msgid "No such user: %s" +msgstr "" + +#: ckan/controllers/user.py:498 ckan/views/user.py:542 +msgid "Please check your inbox for a reset code." +msgstr "" + +#: ckan/controllers/user.py:502 ckan/views/user.py:546 +#, python-format +msgid "Could not send reset link: %s" +msgstr "" + +#: ckan/controllers/user.py:515 ckan/views/user.py:568 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:527 ckan/views/user.py:577 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:544 ckan/views/user.py:613 +msgid "Your password has been reset." +msgstr "" + +#: ckan/controllers/user.py:566 +msgid "Your password must be 4 characters or longer." +msgstr "" + +#: ckan/controllers/user.py:569 ckan/views/user.py:592 +msgid "The passwords you entered do not match." +msgstr "" + +#: ckan/controllers/user.py:572 ckan/views/user.py:595 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:640 ckan/views/dashboard.py:58 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:644 ckan/views/dashboard.py:62 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:658 ckan/views/dashboard.py:76 +msgid "Everything" +msgstr "" + +#: ckan/controllers/util.py:18 ckan/logic/action/__init__.py:62 +msgid "Missing Value" +msgstr "" + +#: ckan/controllers/util.py:23 +msgid "Redirecting to external site is not allowed." +msgstr "" + +#: ckan/lib/activity_streams.py:60 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:63 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:66 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:69 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:72 +msgid "{actor} changed the extra {extra} of the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:75 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:78 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/lib/activity_streams.py:81 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:84 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:87 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:90 +msgid "{actor} deleted the extra {extra} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:93 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:97 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/lib/activity_streams.py:100 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/lib/activity_streams.py:103 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:106 +msgid "{actor} added the extra {extra} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:109 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:112 +msgid "{actor} signed up" +msgstr "" + +#: ckan/lib/activity_streams.py:115 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:118 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/lib/activity_streams.py:121 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/lib/activity_streams.py:124 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/lib/datapreview.py:265 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:19 +msgid "January" +msgstr "" + +#: ckan/lib/formatters.py:23 +msgid "February" +msgstr "" + +#: ckan/lib/formatters.py:27 +msgid "March" +msgstr "" + +#: ckan/lib/formatters.py:31 +msgid "April" +msgstr "" + +#: ckan/lib/formatters.py:35 +msgid "May" +msgstr "" + +#: ckan/lib/formatters.py:39 +msgid "June" +msgstr "" + +#: ckan/lib/formatters.py:43 +msgid "July" +msgstr "" + +#: ckan/lib/formatters.py:47 +msgid "August" +msgstr "" + +#: ckan/lib/formatters.py:51 +msgid "September" +msgstr "" + +#: ckan/lib/formatters.py:55 +msgid "October" +msgstr "" + +#: ckan/lib/formatters.py:59 +msgid "November" +msgstr "" + +#: ckan/lib/formatters.py:63 +msgid "December" +msgstr "" + +#: ckan/lib/formatters.py:114 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:116 +msgid "{mins} minute ago" +msgid_plural "{mins} minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:119 +msgid "{hours} hour ago" +msgid_plural "{hours} hours ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:125 +msgid "{days} day ago" +msgid_plural "{days} days ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:128 +msgid "{months} month ago" +msgid_plural "{months} months ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:130 +msgid "over {years} year ago" +msgid_plural "over {years} years ago" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:146 +msgid "{month} {day}, {year}, {hour:02}:{min:02} ({timezone})" +msgstr "" + +#: ckan/lib/formatters.py:151 +msgid "{month} {day}, {year}" +msgstr "" + +#: ckan/lib/formatters.py:167 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:169 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:171 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:173 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:175 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:187 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:189 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:191 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:193 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:195 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:197 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:199 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:201 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:203 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1251 +msgid "Update your avatar at gravatar.com" +msgstr "" + +#: ckan/lib/helpers.py:1523 ckan/lib/helpers.py:1536 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1587 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1627 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1629 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1631 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:1877 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:1879 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:46 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:116 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:134 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:135 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 +#: ckan/lib/navl/dictization_functions.py:37 ckan/lib/navl/validators.py:27 +#: ckan/lib/navl/validators.py:34 ckan/lib/navl/validators.py:54 +#: ckan/logic/action/get.py:2033 ckan/logic/action/update.py:261 +#: ckan/logic/validators.py:615 +msgid "Missing value" +msgstr "" + +#: ckan/lib/navl/validators.py:68 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:120 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:126 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:99 ckan/logic/action/__init__.py:60 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:106 ckan/logic/__init__.py:108 +#: ckan/logic/action/__init__.py:62 ckan/logic/action/__init__.py:64 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:76 ckan/logic/converters.py:91 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:182 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:35 ckan/logic/validators.py:44 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:49 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:54 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:94 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:99 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:105 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:132 +msgid "Date format incorrect" +msgstr "" + +#: ckan/logic/validators.py:141 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:161 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:202 +msgid "Resource" +msgstr "" + +#: ckan/logic/validators.py:256 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:270 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:333 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:337 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:340 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:342 ckan/logic/validators.py:631 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:345 +msgid "Must be purely lowercase alphanumeric (ascii) characters and these symbols: -_" +msgstr "" + +#: ckan/logic/validators.py:363 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:368 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:372 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:378 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:396 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:412 +msgid "Group name already exists in database" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:422 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:430 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:438 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:547 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:562 +msgid "That login name is not available." +msgstr "" + +#: ckan/logic/validators.py:566 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:577 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:585 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:589 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:628 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:636 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:642 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:651 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:664 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:670 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:683 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:706 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:720 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:749 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:755 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:758 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:790 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:800 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:814 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:828 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:854 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/action/create.py:184 ckan/logic/action/create.py:668 +#, python-format +msgid "REST API: Create object %s" +msgstr "" + +#: ckan/logic/action/create.py:547 +#, python-format +msgid "REST API: Create package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/create.py:588 +#, python-format +msgid "REST API: Create member object %s" +msgstr "" + +#: ckan/logic/action/create.py:807 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:896 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:899 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:904 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:908 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1078 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1254 ckan/logic/action/create.py:1261 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1274 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1282 ckan/logic/action/create.py:1339 +#: ckan/logic/action/create.py:1478 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1313 ckan/logic/action/create.py:1321 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1379 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1454 ckan/logic/action/create.py:1462 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:54 +msgid " Delete User: {0}" +msgstr "" + +#: ckan/logic/action/delete.py:92 +#, python-format +msgid "REST API: Delete Package: %s" +msgstr "" + +#: ckan/logic/action/delete.py:276 ckan/logic/action/delete.py:372 +#, python-format +msgid "REST API: Delete %s" +msgstr "" + +#: ckan/logic/action/delete.py:318 +#, python-format +msgid "REST API: Delete Member: %s" +msgstr "" + +#: ckan/logic/action/delete.py:358 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:560 ckan/logic/action/delete.py:586 +#: ckan/logic/action/get.py:2432 ckan/logic/action/update.py:906 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:564 ckan/logic/action/get.py:2435 +#: ckan/logic/action/update.py:910 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:594 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:607 ckan/logic/action/delete.py:611 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:622 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:1095 ckan/logic/action/update.py:77 +#: ckan/logic/action/update.py:91 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:2037 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2046 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2078 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:265 ckan/logic/action/update.py:991 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:308 ckan/logic/action/update.py:526 +#: ckan/logic/action/update.py:1009 +#, python-format +msgid "REST API: Update object %s" +msgstr "" + +#: ckan/logic/action/update.py:405 +#, python-format +msgid "REST API: Update package relationship: %s %s %s" +msgstr "" + +#: ckan/logic/action/update.py:766 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:995 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:45 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:63 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:189 +msgid "Group was not found." +msgstr "" + +#: ckan/logic/auth/create.py:220 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:244 ckan/logic/auth/update.py:115 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/get.py:13 ckan/logic/auth/get.py:270 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:109 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:170 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:237 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/update.py:39 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:71 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:100 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:128 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:145 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:162 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:190 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:198 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:209 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:217 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:226 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:240 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:223 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:233 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:243 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:253 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:264 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:273 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:283 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:292 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:302 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:312 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:322 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:334 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:342 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:350 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:358 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:55 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:56 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:57 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:61 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.js:96 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.js:124 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/autocomplete.js:195 +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "Start typing…" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/autocomplete.js:195 +#: ckan/public/base/javascript/modules/autocomplete.js:195 +msgid "No matches found" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/autocomplete.js:204 +#: ckan/public/base/javascript/modules/autocomplete.js:204 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.js:4 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/confirm-action.js:97 +#: ckan/public/base/javascript/modules/confirm-action.js:101 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/confirm-action.js:100 +#: ckan/public/base/javascript/modules/confirm-action.js:104 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/confirm-action.js:102 +#: ckan/public/base/javascript/modules/confirm-action.js:106 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/confirm-action.js:103 +#: ckan/public-bs2/base/javascript/modules/resource-reorder.js:59 +#: ckan/public-bs2/base/javascript/modules/resource-view-reorder.js:53 +#: ckan/public/base/javascript/modules/confirm-action.js:107 +#: ckan/public/base/javascript/modules/resource-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:53 +#: ckan/templates/admin/confirm_reset.html:9 +#: ckan/templates/group/confirm_delete.html:14 +#: ckan/templates/group/confirm_delete_member.html:15 +#: ckan/templates/organization/confirm_delete.html:14 +#: ckan/templates/organization/confirm_delete_member.html:15 +#: ckan/templates/package/confirm_delete.html:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Unfollow" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/templates/snippets/follow_button.html:14 +msgid "Follow" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:60 +#: ckan/public/base/javascript/modules/image-upload.js:60 +msgid "Link" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:61 +#: ckan/public/base/javascript/modules/image-upload.js:61 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:68 +#: ckan/public/base/javascript/modules/image-upload.js:68 +msgid "Upload" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:72 +#: ckan/public/base/javascript/modules/image-upload.js:72 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:241 ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.js:87 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:110 +#: ckan/public-bs2/base/javascript/modules/image-upload.js:178 +#: ckan/public-bs2/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/image-upload.js:110 +#: ckan/public/base/javascript/modules/image-upload.js:178 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/templates/group/snippets/group_form.html:18 +#: ckan/templates/organization/snippets/organization_form.html:18 +#: ckan/templates/package/snippets/package_basic_fields.html:13 +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "URL" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/image-upload.js:119 +#: ckan/public-bs2/base/javascript/modules/image-upload.js:209 +#: ckan/public/base/javascript/modules/image-upload.js:119 +#: ckan/public/base/javascript/modules/image-upload.js:209 +msgid "File" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-reorder.js:56 +#: ckan/public-bs2/base/javascript/modules/resource-view-reorder.js:50 +#: ckan/public/base/javascript/modules/resource-reorder.js:56 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:50 +msgid "Save order" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-reorder.js:69 +#: ckan/public-bs2/base/javascript/modules/resource-view-reorder.js:59 +#: ckan/public/base/javascript/modules/resource-reorder.js:69 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:59 +msgid "Saving..." +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +msgid "Upload a file" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:201 +#: ckan/public/base/javascript/modules/resource-upload-field.js:201 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:252 +#: ckan/public/base/javascript/modules/resource-upload-field.js:252 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:260 +#: ckan/public/base/javascript/modules/resource-upload-field.js:260 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:266 +#: ckan/public/base/javascript/modules/resource-upload-field.js:266 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-upload-field.js:272 +#: ckan/public/base/javascript/modules/resource-upload-field.js:272 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +msgid "Select a field" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:65 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/edit_base.html:11 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:56 +msgid "Edit" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +msgid "Show more" +msgstr "" + +#: ckan/public-bs2/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +msgid "Hide" +msgstr "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:13 +#: ckan/public-bs2/base/test/spec/module.spec.js:385 +#: ckan/public/base/test/spec/i18n.spec.js:13 +#: ckan/public/base/test/spec/module.spec.js:385 +msgid "foo" +msgstr "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:17 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:46 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:50 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:54 +#: ckan/public/base/test/spec/i18n.spec.js:17 +#: ckan/public/base/test/spec/i18n.spec.js:46 +#: ckan/public/base/test/spec/i18n.spec.js:50 +#: ckan/public/base/test/spec/i18n.spec.js:54 +msgid "no translation" +msgid_plural "no translations" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:22 +#: ckan/public/base/test/spec/i18n.spec.js:22 +#, python-format +msgid "hello %(name)s!" +msgstr "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:29 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:76 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:81 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:86 +#: ckan/public/base/test/spec/i18n.spec.js:29 +#: ckan/public/base/test/spec/i18n.spec.js:76 +#: ckan/public/base/test/spec/i18n.spec.js:81 +#: ckan/public/base/test/spec/i18n.spec.js:86 +#, python-format +msgid "no %(attr)s translation" +msgid_plural "no %(attr)s translations" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:39 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:40 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:41 +#: ckan/public-bs2/base/test/spec/module.spec.js:395 +#: ckan/public-bs2/base/test/spec/module.spec.js:396 +#: ckan/public-bs2/base/test/spec/module.spec.js:397 +#: ckan/public/base/test/spec/i18n.spec.js:39 +#: ckan/public/base/test/spec/i18n.spec.js:40 +#: ckan/public/base/test/spec/i18n.spec.js:41 +#: ckan/public/base/test/spec/module.spec.js:395 +#: ckan/public/base/test/spec/module.spec.js:396 +#: ckan/public/base/test/spec/module.spec.js:397 +msgid "bar" +msgid_plural "bars" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:61 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:65 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:69 +#: ckan/public/base/test/spec/i18n.spec.js:61 +#: ckan/public/base/test/spec/i18n.spec.js:65 +#: ckan/public/base/test/spec/i18n.spec.js:69 +#, python-format +msgid "%(color)s shirt" +msgid_plural "%(color)s shirts" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:93 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:94 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:95 +#: ckan/public/base/test/spec/i18n.spec.js:93 +#: ckan/public/base/test/spec/i18n.spec.js:94 +#: ckan/public/base/test/spec/i18n.spec.js:95 +#, python-format +msgid "%(num)d item" +msgid_plural "%(num)d items" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public-bs2/base/test/spec/i18n.spec.js:100 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:105 +#: ckan/public-bs2/base/test/spec/i18n.spec.js:110 +#: ckan/public/base/test/spec/i18n.spec.js:100 +#: ckan/public/base/test/spec/i18n.spec.js:105 +#: ckan/public/base/test/spec/i18n.spec.js:110 +#, python-format +msgid "%(num)d missing translation" +msgid_plural "%(num)d missing translations" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/user/dashboard.html:16 +msgid "Edit settings" +msgstr "" + +#: ckan/templates/header.html:35 +msgid "Settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:36 ckan/templates/header.html:87 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 ckan/templates/package/base.html:7 +#: ckan/templates/package/base.html:17 ckan/templates/package/base.html:21 +#: ckan/templates/package/search.html:4 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/revision/diff.html:11 ckan/templates/revision/read.html:65 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:59 ckan/templates/user/read.html:11 +#: ckan/templates/user/read_base.html:19 ckan/templates/user/read_base.html:53 +msgid "Datasets" +msgstr "" + +#: ckan/templates/header.html:94 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:95 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:29 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, python-format +msgid "" +"

Site Title: This is the title of this CKAN instance It " +"appears in various places throughout CKAN.

Style: " +"Choose from a list of simple variations of the main colour scheme to get a " +"very quick custom theme working.

Site Tag Logo: This " +"is the logo that appears in the header of all the CKAN instance " +"templates.

About: This text will appear on this CKAN " +"instances about page.

Intro " +"Text: This text will appear on this CKAN instances home page as a welcome to visitors.

" +"

Custom CSS: This is a block of CSS that appears in " +"<head> tag of every page. If you wish to customize the " +"templates more fully we recommend reading the documentation.

" +"

Homepage: This is for choosing a predefined layout for " +"the modules that appear on your homepage.

" +msgstr "" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "" + +#: ckan/templates/admin/index.html:20 +#, python-format +msgid "" +"

As a sysadmin user you have full control over this CKAN instance. Proceed" +" with care!

For guidance on using sysadmin features, see the CKAN sysadmin guide

" +msgstr "" + +#: ckan/templates/admin/trash.html:20 +msgid "Purge" +msgstr "" + +#: ckan/templates/admin/trash.html:32 +msgid "

Purge deleted datasets forever and irreversibly.

" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:133 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "" + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:6 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:6 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 ckan/templates/package/activity.html:6 +#: ckan/templates/package/read_base.html:21 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:6 ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "" + +#: ckan/templates/group/base_form_page.html:7 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:11 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:3 +#: ckan/templates/group/confirm_delete.html:15 +#: ckan/templates/group/confirm_delete_member.html:3 +#: ckan/templates/group/confirm_delete_member.html:16 +#: ckan/templates/organization/confirm_delete.html:3 +#: ckan/templates/organization/confirm_delete.html:15 +#: ckan/templates/organization/confirm_delete_member.html:3 +#: ckan/templates/organization/confirm_delete_member.html:16 +#: ckan/templates/package/confirm_delete.html:3 +#: ckan/templates/package/confirm_delete.html:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "" + +#: ckan/templates/group/confirm_delete_member.html:11 +#: ckan/templates/organization/confirm_delete_member.html:11 +msgid "Are you sure you want to delete member - {name}?" +msgstr "" + +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 +#: ckan/templates/group/edit_base.html:11 ckan/templates/group/read_base.html:12 +#: ckan/templates/organization/edit_base.html:11 +#: ckan/templates/organization/read_base.html:12 +#: ckan/templates/package/read_base.html:14 +#: ckan/templates/package/resource_read.html:31 ckan/templates/user/edit.html:8 +#: ckan/templates/user/edit_base.html:3 ckan/templates/user/read_base.html:14 +msgid "Manage" +msgstr "" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "" + +#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "" + +#: ckan/templates/group/history.html:3 ckan/templates/group/history.html:6 +#: ckan/templates/package/history.html:3 ckan/templates/package/history.html:6 +msgid "History" +msgstr "" + +#: ckan/templates/group/index.html:13 ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "" + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "" + +#: ckan/templates/group/index.html:31 ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/organization/member_new.html:7 +#: ckan/templates/organization/member_new.html:12 +msgid "Edit Member" +msgstr "" + +#: ckan/templates/group/member_new.html:10 ckan/templates/group/member_new.html:64 +#: ckan/templates/group/members.html:6 +#: ckan/templates/organization/member_new.html:7 +#: ckan/templates/organization/member_new.html:12 +#: ckan/templates/organization/member_new.html:63 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:18 +#: ckan/templates/organization/member_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:21 +#: ckan/templates/organization/member_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:38 +#: ckan/templates/organization/member_new.html:39 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:42 +#: ckan/templates/organization/member_new.html:43 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:45 +#: ckan/templates/organization/member_new.html:46 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:55 ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:54 +#: ckan/templates/organization/members.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:57 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:58 ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:47 +#: ckan/templates/organization/member_new.html:57 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/revision/read.html:24 ckan/templates/user/edit_user_form.html:45 +msgid "Delete" +msgstr "" + +#: ckan/templates/group/member_new.html:77 +#: ckan/templates/organization/member_new.html:76 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:80 +msgid "" +"

Admin: Can edit group information, as well as manage " +"organization members.

Member: Can add/remove datasets" +" from groups

" +msgstr "" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:3 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:4 +#: ckan/templates/organization/snippets/feeds.html:4 +msgid "Recent Revision History" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:18 +msgid "my-group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "" + +#: ckan/templates/group/snippets/helper.html:8 +msgid "" +" You can use CKAN Groups to create and manage collections of datasets. This " +"could be to catalogue datasets for a particular project or team, or on a " +"particular theme, or as a very simple way to help people find and search your" +" own published datasets. " +msgstr "" + +#: ckan/templates/group/snippets/history_revisions.html:10 +#: ckan/templates/package/snippets/history_revisions.html:10 +msgid "Compare" +msgstr "" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:72 +#: ckan/templates/package/read.html:21 +#: ckan/templates/package/snippets/package_basic_fields.html:118 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:24 +#: ckan/templates/package/snippets/package_context.html:7 +#: ckan/templates/snippets/organization.html:45 +msgid "read more" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:7 +#: ckan/templates/package/snippets/revisions_table.html:7 +#: ckan/templates/revision/read.html:5 ckan/templates/revision/read.html:9 +#: ckan/templates/revision/read.html:39 +#: ckan/templates/revision/snippets/revisions_list.html:4 +msgid "Revision" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:8 +#: ckan/templates/package/snippets/revisions_table.html:8 +#: ckan/templates/revision/read.html:53 +#: ckan/templates/revision/snippets/revisions_list.html:5 +msgid "Timestamp" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:9 +#: ckan/templates/package/snippets/additional_info.html:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/revisions_table.html:9 +#: ckan/templates/revision/read.html:50 +#: ckan/templates/revision/snippets/revisions_list.html:6 +msgid "Author" +msgstr "" + +#: ckan/templates/group/snippets/revisions_table.html:10 +#: ckan/templates/package/snippets/revisions_table.html:10 +#: ckan/templates/revision/read.html:56 +#: ckan/templates/revision/snippets/revisions_list.html:8 +msgid "Log Message" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "" + +#: ckan/templates/home/snippets/about_text.html:1 +msgid "" +"

CKAN is the world’s leading open-source data portal platform.

CKAN" +" is a complete out-of-the-box software solution that makes data accessible " +"and usable – by providing tools to streamline publishing, sharing, finding " +"and using data (including storage of data and provision of robust data APIs)." +" CKAN is aimed at data publishers (national and regional governments, " +"companies and organizations) wanting to make their data open and " +"available.

CKAN is used by governments and user groups worldwide and " +"powers a variety of official and community data portals including portals for" +" local, national and international government, such as the UK’s data.gov.uk and the European Union’s publicdata.eu, the Brazilian dados.gov.br, Dutch and Netherland " +"government portals, as well as city and municipal sites in the US, UK, " +"Argentina, Finland and elsewhere.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Features " +"overview: http://ckan.org/features/

" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will " +msgstr "" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "" + +#: ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:126 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:277 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:277 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:302 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:407 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:422 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:423 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:438 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Organization Form" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:37 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:41 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:70 +#: ckan/templates/package/read.html:18 ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/package/read.html:11 +#: ckan/templates/package/snippets/package_basic_fields.html:98 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 ckan/templates/user/read_base.html:82 +#: ckan/templates/user/read_base.html:96 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:88 +msgid "This organization has no datasets associated to it" +msgstr "" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "" + +#: ckan/templates/organization/member_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 ckan/templates/user/read_base.html:76 +#: ckan/templates/user/request_reset.html:16 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:49 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:59 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:79 +msgid "" +"

Admin: Can add/edit and delete datasets, as well as " +"manage organization members.

Editor: Can add and edit" +" datasets, but not manage organization members.

" +"

Member: Can view the organization's private datasets, but" +" not add new datasets.

" +msgstr "" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 ckan/templates/organization/new.html:12 +msgid "Create an Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "" + +#: ckan/templates/organization/snippets/feeds.html:3 +msgid "Datasets in organization: {group}" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "" + +#: ckan/templates/organization/snippets/help.html:7 +msgid "" +"

Organizations act like publishing departments for datasets (for example, " +"the Department of Health). This means that datasets can be published by and " +"belong to a department instead of an individual user.

Within " +"organizations, admins can assign roles and authorise its members, giving " +"individual users the right to publish datasets from that particular " +"organisation (e.g. Office of National Statistics).

" +msgstr "" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +" CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending on" +" their level of authorisation to create, edit and publish. " +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:18 +msgid "my-organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be " +"performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:22 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "" + +#: ckan/templates/package/base_form_page.html:25 +msgid "" +" A CKAN Dataset is a collection of data resources (such as files), together " +"with a description and other information, at a fixed URL. Datasets are what " +"users see when searching for data. " +msgstr "" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "" + +#: ckan/templates/package/edit_base.html:16 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:20 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/edit_view.html:3 ckan/templates/package/edit_view.html:4 +#: ckan/templates/package/edit_view.html:8 ckan/templates/package/edit_view.html:12 +msgid "Edit view" +msgstr "" + +#: ckan/templates/package/edit_view.html:20 ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:32 +msgid "Preview" +msgstr "" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "" + +#: ckan/templates/package/new_package_form.html:15 +msgid "Update Dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "" + +#: ckan/templates/package/new_view.html:3 ckan/templates/package/new_view.html:4 +#: ckan/templates/package/new_view.html:8 ckan/templates/package/new_view.html:12 +msgid "Add view" +msgstr "" + +#: ckan/templates/package/new_view.html:19 +msgid "" +" Data Explorer views may be slow and unreliable unless the DataStore " +"extension is enabled. For more information, please see the Data Explorer " +"documentation. " +msgstr "" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:83 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read_base.html:32 +#, python-format +msgid "" +"This is an old revision of this dataset, as edited at %(timestamp)s. It may " +"differ significantly from the current revision." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:47 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:44 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:76 +#: ckan/templates/package/resource_read.html:78 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:86 +msgid "From the dataset abstract" +msgstr "" + +#: ckan/templates/package/resource_read.html:88 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:127 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:131 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:136 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:138 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:140 +msgid "" +"If a view requires the DataStore, the DataStore plugin may not be enabled, or" +" the data may not have been pushed to the DataStore, or the DataStore hasn't " +"finished processing the data yet" +msgstr "" + +#: ckan/templates/package/resource_read.html:162 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:166 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/revision/diff.html:43 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:167 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/package/resource_read.html:172 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:173 +#: ckan/templates/package/resource_read.html:177 +#: ckan/templates/package/resource_read.html:181 +#: ckan/templates/package/resource_read.html:185 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:176 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:184 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:16 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:188 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:21 +msgid "License" +msgstr "" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:28 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:26 +#, python-format +msgid "" +"

This dataset has no data, why not add" +" some?

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s. " +msgstr "" + +#: ckan/templates/package/search.html:60 +#, python-format +msgid "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s). " +msgstr "" + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:37 +#: ckan/templates/package/snippets/additional_info.html:42 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +msgid "Maintainer" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:114 +#: ckan/templates/user/read_base.html:91 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "Ask a system administrator to create an organization before you can continue." +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:45 +msgid "" +" License definitions and additional information can be found at opendefinition.org " +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:76 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:80 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:95 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:117 +msgid "Active" +msgstr "" + +#: ckan/templates/package/snippets/package_form.html:28 +msgid "" +"The data license you select above only applies to the contents of any " +"resource files that you add to this dataset. By submitting this form, you " +"agree to release the metadata values that you enter into the form " +"under the Open " +"Database License." +msgstr "" + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:20 +#: ckan/templates/user/new_user_form.html:6 +msgid "Joe Bloggs" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +#: ckan/templates/user/new_user_form.html:7 +msgid "joe@example.com" +msgstr "" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:76 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:79 +msgid "Finish" +msgstr "" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:23 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:35 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:74 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:77 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:80 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:83 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:86 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:13 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:30 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/revisions_table.html:24 +#, python-format +msgid "Read dataset as of %s" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "" + +#: ckan/templates/revision/diff.html:6 +msgid "Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:13 ckan/templates/revision/diff.html:18 +#: ckan/templates/revision/diff.html:23 +msgid "Revision Differences" +msgstr "" + +#: ckan/templates/revision/diff.html:44 +msgid "Difference" +msgstr "" + +#: ckan/templates/revision/diff.html:54 +msgid "No Differences" +msgstr "" + +#: ckan/templates/revision/list.html:3 ckan/templates/revision/list.html:6 +#: ckan/templates/revision/list.html:10 +msgid "Revision History" +msgstr "" + +#: ckan/templates/revision/list.html:6 ckan/templates/revision/read.html:8 +msgid "Revisions" +msgstr "" + +#: ckan/templates/revision/read.html:30 +msgid "Undelete" +msgstr "" + +#: ckan/templates/revision/read.html:64 +msgid "Changes" +msgstr "" + +#: ckan/templates/revision/read.html:74 +msgid "Datasets' Tags" +msgstr "" + +#: ckan/templates/revision/snippets/revisions_list.html:7 +msgid "Entity" +msgstr "" + +#: ckan/templates/snippets/activity_item.html:3 +msgid "New activity item" +msgstr "" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:82 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:89 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:14 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:28 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:48 +msgid "There is no description for this organization" +msgstr "" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

There was an error while searching. " +"Please try again.

" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 ckan/templates/user/read_base.html:82 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/context/user.html:23 +#: ckan/templates/user/read_base.html:57 +msgid "Edits" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:17 ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "" + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "" + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "" + +#: ckan/templates/user/edit.html:19 +msgid " Your profile lets other CKAN users know about who you are and what you do. " +msgstr "" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:29 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:37 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:39 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:45 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:54 +msgid "Update Profile" +msgstr "" + +#: ckan/templates/user/list.html:3 ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "" + +#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 +#: ckan/templates/user/login.html:12 +#: ckan/templates/user/snippets/login_form.html:28 +msgid "Login" +msgstr "" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "" + +#: ckan/templates/user/new_user_form.html:19 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:14 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:32 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:39 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:41 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:73 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:82 ckan/templates/user/read_base.html:96 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:87 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:96 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:6 +msgid "Password reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:19 +msgid "Request reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:34 +msgid "" +"Enter your username into the box and we will send you an email with a link to" +" enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "" + +#: ckan/views/user.py:588 +msgid "Your password must be 8 characters or longer." +msgstr "" + diff --git a/venv/lib/python2.7/site-packages/ckan/include/__init__.py b/venv/lib/python2.7/site-packages/ckan/include/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python2.7/site-packages/ckan/include/rcssmin.py b/venv/lib/python2.7/site-packages/ckan/include/rcssmin.py new file mode 100644 index 00000000..3f0435f0 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/include/rcssmin.py @@ -0,0 +1,360 @@ +#!/usr/bin/env python +# -*- coding: ascii -*- +# +# Copyright 2011, 2012 +# Andr\xe9 Malo or his licensors, as applicable +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +r""" +============== + CSS Minifier +============== + +CSS Minifier. + +The minifier is based on the semantics of the `YUI compressor`_\, which itself +is based on `the rule list by Isaac Schlueter`_\. + +This module is a re-implementation aiming for speed instead of maximum +compression, so it can be used at runtime (rather than during a preprocessing +step). RCSSmin does syntactical compression only (removing spaces, comments +and possibly semicolons). It does not provide semantic compression (like +removing empty blocks, collapsing redundant properties etc). It does, however, +support various CSS hacks (by keeping them working as intended). + +Here's a feature list: + +- Strings are kept, except that escaped newlines are stripped +- Space/Comments before the very end or before various characters are + stripped: ``:{});=>+],!`` (The colon (``:``) is a special case, a single + space is kept if it's outside a ruleset.) +- Space/Comments at the very beginning or after various characters are + stripped: ``{}(=:>+[,!`` +- Optional space after unicode escapes is kept, resp. replaced by a simple + space +- whitespaces inside ``url()`` definitions are stripped +- Comments starting with an exclamation mark (``!``) can be kept optionally. +- All other comments and/or whitespace characters are replaced by a single + space. +- Multiple consecutive semicolons are reduced to one +- The last semicolon within a ruleset is stripped +- CSS Hacks supported: + + - IE7 hack (``>/**/``) + - Mac-IE5 hack (``/*\*/.../**/``) + - The boxmodelhack is supported naturally because it relies on valid CSS2 + strings + - Between ``:first-line`` and the following comma or curly brace a space is + inserted. (apparently it's needed for IE6) + - Same for ``:first-letter`` + +rcssmin.c is a reimplementation of rcssmin.py in C and improves runtime up to +factor 50 or so (depending on the input). + +Both python 2 (>= 2.4) and python 3 are supported. + +.. _YUI compressor: https://github.com/yui/yuicompressor/ + +.. _the rule list by Isaac Schlueter: https://github.com/isaacs/cssmin/tree/ +""" +__author__ = "Andr\xe9 Malo" +__author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1') +__docformat__ = "restructuredtext en" +__license__ = "Apache License, Version 2.0" +__version__ = '1.0.0' +__all__ = ['cssmin'] + +import re as _re + + +def _make_cssmin(python_only=False): + """ + Generate CSS minifier. + + :Parameters: + `python_only` : ``bool`` + Use only the python variant. If true, the c extension is not even + tried to be loaded. + + :Return: Minifier + :Rtype: ``callable`` + """ + # pylint: disable = W0612 + # ("unused" variables) + + # pylint: disable = R0911, R0912, R0914, R0915 + # (too many anything) + + if not python_only: + try: + import _rcssmin + except ImportError: + pass + else: + return _rcssmin.cssmin + + nl = r'(?:[\n\f]|\r\n?)' # pylint: disable = C0103 + spacechar = r'[\r\n\f\040\t]' + + unicoded = r'[0-9a-fA-F]{1,6}(?:[\040\n\t\f]|\r\n?)?' + escaped = r'[^\n\r\f0-9a-fA-F]' + escape = r'(?:\\(?:%(unicoded)s|%(escaped)s))' % locals() + + nmchar = r'[^\000-\054\056\057\072-\100\133-\136\140\173-\177]' + #nmstart = r'[^\000-\100\133-\136\140\173-\177]' + #ident = (r'(?:' + # r'-?(?:%(nmstart)s|%(escape)s)%(nmchar)s*(?:%(escape)s%(nmchar)s*)*' + #r')') % locals() + + comment = r'(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/)' + + # only for specific purposes. The bang is grouped: + _bang_comment = r'(?:/\*(!?)[^*]*\*+(?:[^/*][^*]*\*+)*/)' + + string1 = \ + r'(?:\047[^\047\\\r\n\f]*(?:\\[^\r\n\f][^\047\\\r\n\f]*)*\047)' + string2 = r'(?:"[^"\\\r\n\f]*(?:\\[^\r\n\f][^"\\\r\n\f]*)*")' + strings = r'(?:%s|%s)' % (string1, string2) + + nl_string1 = \ + r'(?:\047[^\047\\\r\n\f]*(?:\\(?:[^\r]|\r\n?)[^\047\\\r\n\f]*)*\047)' + nl_string2 = r'(?:"[^"\\\r\n\f]*(?:\\(?:[^\r]|\r\n?)[^"\\\r\n\f]*)*")' + nl_strings = r'(?:%s|%s)' % (nl_string1, nl_string2) + + uri_nl_string1 = r'(?:\047[^\047\\]*(?:\\(?:[^\r]|\r\n?)[^\047\\]*)*\047)' + uri_nl_string2 = r'(?:"[^"\\]*(?:\\(?:[^\r]|\r\n?)[^"\\]*)*")' + uri_nl_strings = r'(?:%s|%s)' % (uri_nl_string1, uri_nl_string2) + + nl_escaped = r'(?:\\%(nl)s)' % locals() + + space = r'(?:%(spacechar)s|%(comment)s)' % locals() + + ie7hack = r'(?:>/\*\*/)' + + uri = (r'(?:' + r'(?:[^\000-\040"\047()\\\177]*' + r'(?:%(escape)s[^\000-\040"\047()\\\177]*)*)' + r'(?:' + r'(?:%(spacechar)s+|%(nl_escaped)s+)' + r'(?:' + r'(?:[^\000-\040"\047()\\\177]|%(escape)s|%(nl_escaped)s)' + r'[^\000-\040"\047()\\\177]*' + r'(?:%(escape)s[^\000-\040"\047()\\\177]*)*' + r')+' + r')*' + r')') % locals() + + nl_unesc_sub = _re.compile(nl_escaped).sub + + uri_space_sub = _re.compile(( + r'(%(escape)s+)|%(spacechar)s+|%(nl_escaped)s+' + ) % locals()).sub + uri_space_subber = lambda m: m.groups()[0] or '' + + space_sub_simple = _re.compile(( + r'[\r\n\f\040\t;]+|(%(comment)s+)' + ) % locals()).sub + space_sub_banged = _re.compile(( + r'[\r\n\f\040\t;]+|(%(_bang_comment)s+)' + ) % locals()).sub + + post_esc_sub = _re.compile(r'[\r\n\f\t]+').sub + + main_sub = _re.compile(( + r'([^\\"\047u>@\r\n\f\040\t/;:{}]+)' + r'|(?<=[{}(=:>+[,!])(%(space)s+)' + r'|^(%(space)s+)' + r'|(%(space)s+)(?=(([:{});=>+\],!])|$)?)' + r'|;(%(space)s*(?:;%(space)s*)*)(?=(\})?)' + r'|(\{)' + r'|(\})' + r'|(%(strings)s)' + r'|(?@\r\n\f\040\t/;:{}]*)' + ) % locals()).sub + + #print main_sub.__self__.pattern + + def main_subber(keep_bang_comments): + """ Make main subber """ + in_macie5, in_rule, at_media = [0], [0], [0] + + if keep_bang_comments: + space_sub = space_sub_banged + def space_subber(match): + """ Space|Comment subber """ + if match.lastindex: + group1, group2 = match.group(1, 2) + if group2: + if group1.endswith(r'\*/'): + in_macie5[0] = 1 + else: + in_macie5[0] = 0 + return group1 + elif group1: + if group1.endswith(r'\*/'): + if in_macie5[0]: + return '' + in_macie5[0] = 1 + return r'/*\*/' + elif in_macie5[0]: + in_macie5[0] = 0 + return '/**/' + return '' + else: + space_sub = space_sub_simple + def space_subber(match): + """ Space|Comment subber """ + if match.lastindex: + if match.group(1).endswith(r'\*/'): + if in_macie5[0]: + return '' + in_macie5[0] = 1 + return r'/*\*/' + elif in_macie5[0]: + in_macie5[0] = 0 + return '/**/' + return '' + + def fn_space_post(group): + """ space with token after """ + if group(5) is None or ( + group(6) == ':' and not in_rule[0] and not at_media[0]): + return ' ' + space_sub(space_subber, group(4)) + return space_sub(space_subber, group(4)) + + def fn_semicolon(group): + """ ; handler """ + return ';' + space_sub(space_subber, group(7)) + + def fn_semicolon2(group): + """ ; handler """ + if in_rule[0]: + return space_sub(space_subber, group(7)) + return ';' + space_sub(space_subber, group(7)) + + def fn_open(group): + """ { handler """ + # pylint: disable = W0613 + if at_media[0]: + at_media[0] -= 1 + else: + in_rule[0] = 1 + return '{' + + def fn_close(group): + """ } handler """ + # pylint: disable = W0613 + in_rule[0] = 0 + return '}' + + def fn_media(group): + """ @media handler """ + at_media[0] += 1 + return group(13) + + def fn_ie7hack(group): + """ IE7 Hack handler """ + if not in_rule[0] and not at_media[0]: + in_macie5[0] = 0 + return group(14) + space_sub(space_subber, group(15)) + return '>' + space_sub(space_subber, group(15)) + + table = ( + None, + None, + None, + None, + fn_space_post, # space with token after + fn_space_post, # space with token after + fn_space_post, # space with token after + fn_semicolon, # semicolon + fn_semicolon2, # semicolon + fn_open, # { + fn_close, # } + lambda g: g(11), # string + lambda g: 'url(%s)' % uri_space_sub(uri_space_subber, g(12)), + # url(...) + fn_media, # @media + None, + fn_ie7hack, # ie7hack + None, + lambda g: g(16) + ' ' + space_sub(space_subber, g(17)), + # :first-line|letter followed + # by [{,] (apparently space + # needed for IE6) + lambda g: nl_unesc_sub('', g(18)), # nl_string + lambda g: post_esc_sub(' ', g(19)), # escape + ) + + def func(match): + """ Main subber """ + idx, group = match.lastindex, match.group + if idx > 3: + return table[idx](group) + + # shortcuts for frequent operations below: + elif idx == 1: # not interesting + return group(1) + #else: # space with token before or at the beginning + return space_sub(space_subber, group(idx)) + + return func + + def cssmin(style, keep_bang_comments=False): # pylint: disable = W0621 + """ + Minify CSS. + + :Parameters: + `style` : ``str`` + CSS to minify + + `keep_bang_comments` : ``bool`` + Keep comments starting with an exclamation mark? (``/*!...*/``) + + :Return: Minified style + :Rtype: ``str`` + """ + return main_sub(main_subber(keep_bang_comments), style) + + return cssmin + +cssmin = _make_cssmin() + + +if __name__ == '__main__': + def main(): + """ Main """ + import sys as _sys + keep_bang_comments = ( + '-b' in _sys.argv[1:] + or '-bp' in _sys.argv[1:] + or '-pb' in _sys.argv[1:] + ) + if '-p' in _sys.argv[1:] or '-bp' in _sys.argv[1:] \ + or '-pb' in _sys.argv[1:]: + global cssmin # pylint: disable = W0603 + cssmin = _make_cssmin(python_only=True) + _sys.stdout.write(cssmin( + _sys.stdin.read(), keep_bang_comments=keep_bang_comments + )) + main() diff --git a/venv/lib/python2.7/site-packages/ckan/include/rjsmin.py b/venv/lib/python2.7/site-packages/ckan/include/rjsmin.py new file mode 100644 index 00000000..13e66e0e --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/include/rjsmin.py @@ -0,0 +1,290 @@ +#!/usr/bin/env python +# -*- coding: ascii -*- +# +# Copyright 2011, 2012 +# Andr\xe9 Malo or his licensors, as applicable +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +r""" +===================== + Javascript Minifier +===================== + +rJSmin is a javascript minifier written in python. + +The minifier is based on the semantics of `jsmin.c by Douglas Crockford`_\. + +The module is a re-implementation aiming for speed, so it can be used at +runtime (rather than during a preprocessing step). Usually it produces the +same results as the original ``jsmin.c``. It differs in the following ways: + +- there is no error detection: unterminated string, regex and comment + literals are treated as regular javascript code and minified as such. +- Control characters inside string and regex literals are left untouched; they + are not converted to spaces (nor to \n) +- Newline characters are not allowed inside string and regex literals, except + for line continuations in string literals (ECMA-5). +- "return /regex/" is recognized correctly. +- "+ ++" and "- --" sequences are not collapsed to '+++' or '---' +- rJSmin does not handle streams, but only complete strings. (However, the + module provides a "streamy" interface). + +Since most parts of the logic are handled by the regex engine it's way +faster than the original python port of ``jsmin.c`` by Baruch Even. The speed +factor varies between about 6 and 55 depending on input and python version +(it gets faster the more compressed the input already is). Compared to the +speed-refactored python port by Dave St.Germain the performance gain is less +dramatic but still between 1.2 and 7. See the docs/BENCHMARKS file for +details. + +rjsmin.c is a reimplementation of rjsmin.py in C and speeds it up even more. + +Both python 2 and python 3 are supported. + +.. _jsmin.c by Douglas Crockford: + http://www.crockford.com/javascript/jsmin.c +""" +__author__ = "Andr\xe9 Malo" +__author__ = getattr(__author__, 'decode', lambda x: __author__)('latin-1') +__docformat__ = "restructuredtext en" +__license__ = "Apache License, Version 2.0" +__version__ = '1.0.3' +__all__ = ['jsmin'] + +import re as _re + + +def _make_jsmin(python_only=False): + """ + Generate JS minifier based on `jsmin.c by Douglas Crockford`_ + + .. _jsmin.c by Douglas Crockford: + http://www.crockford.com/javascript/jsmin.c + + :Parameters: + `python_only` : ``bool`` + Use only the python variant. If true, the c extension is not even + tried to be loaded. + + :Return: Minifier + :Rtype: ``callable`` + """ + # pylint: disable = R0912, R0914, W0612 + if not python_only: + try: + import _rjsmin + except ImportError: + pass + else: + return _rjsmin.jsmin + try: + xrange + except NameError: + xrange = range # pylint: disable = W0622 + + space_chars = r'[\000-\011\013\014\016-\040]' + + line_comment = r'(?://[^\r\n]*)' + space_comment = r'(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/)' + string1 = \ + r'(?:\047[^\047\\\r\n]*(?:\\(?:[^\r\n]|\r?\n|\r)[^\047\\\r\n]*)*\047)' + string2 = r'(?:"[^"\\\r\n]*(?:\\(?:[^\r\n]|\r?\n|\r)[^"\\\r\n]*)*")' + strings = r'(?:%s|%s)' % (string1, string2) + + charclass = r'(?:\[[^\\\]\r\n]*(?:\\[^\r\n][^\\\]\r\n]*)*\])' + nospecial = r'[^/\\\[\r\n]' + regex = r'(?:/(?![\r\n/*])%s*(?:(?:\\[^\r\n]|%s)%s*)*/)' % ( + nospecial, charclass, nospecial + ) + space = r'(?:%s|%s)' % (space_chars, space_comment) + newline = r'(?:%s?[\r\n])' % line_comment + + def fix_charclass(result): + """ Fixup string of chars to fit into a regex char class """ + pos = result.find('-') + if pos >= 0: + result = r'%s%s-' % (result[:pos], result[pos + 1:]) + + def sequentize(string): + """ + Notate consecutive characters as sequence + + (1-4 instead of 1234) + """ + first, last, result = None, None, [] + for char in map(ord, string): + if last is None: + first = last = char + elif last + 1 == char: + last = char + else: + result.append((first, last)) + first = last = char + if last is not None: + result.append((first, last)) + return ''.join(['%s%s%s' % ( + chr(first), + last > first + 1 and '-' or '', + last != first and chr(last) or '' + ) for first, last in result]) + + return _re.sub(r'([\000-\040\047])', # for better portability + lambda m: '\\%03o' % ord(m.group(1)), (sequentize(result) + .replace('\\', '\\\\') + .replace('[', '\\[') + .replace(']', '\\]') + ) + ) + + def id_literal_(what): + """ Make id_literal like char class """ + match = _re.compile(what).match + result = ''.join([ + chr(c) for c in xrange(127) if not match(chr(c)) + ]) + return '[^%s]' % fix_charclass(result) + + def not_id_literal_(keep): + """ Make negated id_literal like char class """ + match = _re.compile(id_literal_(keep)).match + result = ''.join([ + chr(c) for c in xrange(127) if not match(chr(c)) + ]) + return r'[%s]' % fix_charclass(result) + + not_id_literal = not_id_literal_(r'[a-zA-Z0-9_$]') + preregex1 = r'[(,=:\[!&|?{};\r\n]' + preregex2 = r'%(not_id_literal)sreturn' % locals() + + id_literal = id_literal_(r'[a-zA-Z0-9_$]') + id_literal_open = id_literal_(r'[a-zA-Z0-9_${\[(+-]') + id_literal_close = id_literal_(r'[a-zA-Z0-9_$}\])"\047+-]') + + space_sub = _re.compile(( + r'([^\047"/\000-\040]+)' + r'|(%(strings)s[^\047"/\000-\040]*)' + r'|(?:(?<=%(preregex1)s)%(space)s*(%(regex)s[^\047"/\000-\040]*))' + r'|(?:(?<=%(preregex2)s)%(space)s*(%(regex)s[^\047"/\000-\040]*))' + r'|(?<=%(id_literal_close)s)' + r'%(space)s*(?:(%(newline)s)%(space)s*)+' + r'(?=%(id_literal_open)s)' + r'|(?<=%(id_literal)s)(%(space)s)+(?=%(id_literal)s)' + r'|(?<=\+)(%(space)s)+(?=\+\+)' + r'|(?<=-)(%(space)s)+(?=--)' + r'|%(space)s+' + r'|(?:%(newline)s%(space)s*)+' + ) % locals()).sub + #print space_sub.__self__.pattern + + def space_subber(match): + """ Substitution callback """ + # pylint: disable = C0321, R0911 + groups = match.groups() + if groups[0]: return groups[0] + elif groups[1]: return groups[1] + elif groups[2]: return groups[2] + elif groups[3]: return groups[3] + elif groups[4]: return '\n' + elif groups[5] or groups[6] or groups[7]: return ' ' + else: return '' + + def jsmin(script): # pylint: disable = W0621 + r""" + Minify javascript based on `jsmin.c by Douglas Crockford`_\. + + Instead of parsing the stream char by char, it uses a regular + expression approach which minifies the whole script with one big + substitution regex. + + .. _jsmin.c by Douglas Crockford: + http://www.crockford.com/javascript/jsmin.c + + :Parameters: + `script` : ``str`` + Script to minify + + :Return: Minified script + :Rtype: ``str`` + """ + return space_sub(space_subber, '\n%s\n' % script).strip() + + return jsmin + +jsmin = _make_jsmin() + + +def jsmin_for_posers(script): + r""" + Minify javascript based on `jsmin.c by Douglas Crockford`_\. + + Instead of parsing the stream char by char, it uses a regular + expression approach which minifies the whole script with one big + substitution regex. + + .. _jsmin.c by Douglas Crockford: + http://www.crockford.com/javascript/jsmin.c + + :Warning: This function is the digest of a _make_jsmin() call. It just + utilizes the resulting regex. It's just for fun here and may + vanish any time. Use the `jsmin` function instead. + + :Parameters: + `script` : ``str`` + Script to minify + + :Return: Minified script + :Rtype: ``str`` + """ + def subber(match): + """ Substitution callback """ + groups = match.groups() + return ( + groups[0] or + groups[1] or + groups[2] or + groups[3] or + (groups[4] and '\n') or + (groups[5] and ' ') or + (groups[6] and ' ') or + (groups[7] and ' ') or + '' + ) + + return _re.sub( + r'([^\047"/\000-\040]+)|((?:(?:\047[^\047\\\r\n]*(?:\\(?:[^\r\n]|\r?' + r'\n|\r)[^\047\\\r\n]*)*\047)|(?:"[^"\\\r\n]*(?:\\(?:[^\r\n]|\r?\n|' + r'\r)[^"\\\r\n]*)*"))[^\047"/\000-\040]*)|(?:(?<=[(,=:\[!&|?{};\r\n]' + r')(?:[\000-\011\013\014\016-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/' + r'))*((?:/(?![\r\n/*])[^/\\\[\r\n]*(?:(?:\\[^\r\n]|(?:\[[^\\\]\r\n]*' + r'(?:\\[^\r\n][^\\\]\r\n]*)*\]))[^/\\\[\r\n]*)*/)[^\047"/\000-\040]*' + r'))|(?:(?<=[\000-#%-,./:-@\[-^`{-~-]return)(?:[\000-\011\013\014\01' + r'6-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/))*((?:/(?![\r\n/*])[^/' + r'\\\[\r\n]*(?:(?:\\[^\r\n]|(?:\[[^\\\]\r\n]*(?:\\[^\r\n][^\\\]\r\n]' + r'*)*\]))[^/\\\[\r\n]*)*/)[^\047"/\000-\040]*))|(?<=[^\000-!#%&(*,./' + r':-@\[\\^`{|~])(?:[\000-\011\013\014\016-\040]|(?:/\*[^*]*\*+(?:[^/' + r'*][^*]*\*+)*/))*(?:((?:(?://[^\r\n]*)?[\r\n]))(?:[\000-\011\013\01' + r'4\016-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/))*)+(?=[^\000-#%-\04' + r'7)*,./:-@\\-^`|-~])|(?<=[^\000-#%-,./:-@\[-^`{-~-])((?:[\000-\011' + r'\013\014\016-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/)))+(?=[^\000-' + r'#%-,./:-@\[-^`{-~-])|(?<=\+)((?:[\000-\011\013\014\016-\040]|(?:/' + r'\*[^*]*\*+(?:[^/*][^*]*\*+)*/)))+(?=\+\+)|(?<=-)((?:[\000-\011\013' + r'\014\016-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/)))+(?=--)|(?:[\00' + r'0-\011\013\014\016-\040]|(?:/\*[^*]*\*+(?:[^/*][^*]*\*+)*/))+|(?:(' + r'?:(?://[^\r\n]*)?[\r\n])(?:[\000-\011\013\014\016-\040]|(?:/\*[^*]' + r'*\*+(?:[^/*][^*]*\*+)*/))*)+', subber, '\n%s\n' % script + ).strip() + + +if __name__ == '__main__': + import sys as _sys + _sys.stdout.write(jsmin(_sys.stdin.read())) diff --git a/venv/lib/python2.7/site-packages/ckan/lib/__init__.py b/venv/lib/python2.7/site-packages/ckan/lib/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/venv/lib/python2.7/site-packages/ckan/lib/activity_streams.py b/venv/lib/python2.7/site-packages/ckan/lib/activity_streams.py new file mode 100644 index 00000000..70c17730 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/activity_streams.py @@ -0,0 +1,262 @@ +# encoding: utf-8 + +import re + +from webhelpers.html import literal + +import ckan.lib.helpers as h +import ckan.lib.base as base +import ckan.logic as logic + +from ckan.common import _, is_flask_request + +# get_snippet_*() functions replace placeholders like {user}, {dataset}, etc. +# in activity strings with HTML representations of particular users, datasets, +# etc. + +def get_snippet_actor(activity, detail): + return literal('''%s''' + % (h.linked_user(activity['user_id'], 0, 30)) + ) + +def get_snippet_user(activity, detail): + return literal('''%s''' + % (h.linked_user(activity['object_id'], 0, 20)) + ) + +def get_snippet_dataset(activity, detail): + data = activity['data'] + pkg_dict = data.get('package') or data.get('dataset') + link = h.dataset_link(pkg_dict) if pkg_dict else '' + return literal('''%s''' + % (link) + ) + +def get_snippet_tag(activity, detail): + return h.tag_link(detail['data']['tag']) + +def get_snippet_group(activity, detail): + link = h.group_link(activity['data']['group']) + return literal('''%s''' + % (link) + ) + +def get_snippet_organization(activity, detail): + return h.organization_link(activity['data']['group']) + +def get_snippet_extra(activity, detail): + return '"%s"' % detail['data']['package_extra']['key'] + +def get_snippet_resource(activity, detail): + return h.resource_link(detail['data']['resource'], + activity['data']['package']['id']) + +# activity_stream_string_*() functions return translatable string +# representations of activity types, the strings contain placeholders like +# {user}, {dataset} etc. to be replaced with snippets from the get_snippet_*() +# functions above. + +def activity_stream_string_added_tag(context, activity): + return _("{actor} added the tag {tag} to the dataset {dataset}") + +def activity_stream_string_changed_group(context, activity): + return _("{actor} updated the group {group}") + +def activity_stream_string_changed_organization(context, activity): + return _("{actor} updated the organization {organization}") + +def activity_stream_string_changed_package(context, activity): + return _("{actor} updated the dataset {dataset}") + +def activity_stream_string_changed_package_extra(context, activity): + return _("{actor} changed the extra {extra} of the dataset {dataset}") + +def activity_stream_string_changed_resource(context, activity): + return _("{actor} updated the resource {resource} in the dataset {dataset}") + +def activity_stream_string_changed_user(context, activity): + return _("{actor} updated their profile") + +def activity_stream_string_deleted_group(context, activity): + return _("{actor} deleted the group {group}") + +def activity_stream_string_deleted_organization(context, activity): + return _("{actor} deleted the organization {organization}") + +def activity_stream_string_deleted_package(context, activity): + return _("{actor} deleted the dataset {dataset}") + +def activity_stream_string_deleted_package_extra(context, activity): + return _("{actor} deleted the extra {extra} from the dataset {dataset}") + +def activity_stream_string_deleted_resource(context, activity): + return _("{actor} deleted the resource {resource} from the dataset " + "{dataset}") + +def activity_stream_string_new_group(context, activity): + return _("{actor} created the group {group}") + +def activity_stream_string_new_organization(context, activity): + return _("{actor} created the organization {organization}") + +def activity_stream_string_new_package(context, activity): + return _("{actor} created the dataset {dataset}") + +def activity_stream_string_new_package_extra(context, activity): + return _("{actor} added the extra {extra} to the dataset {dataset}") + +def activity_stream_string_new_resource(context, activity): + return _("{actor} added the resource {resource} to the dataset {dataset}") + +def activity_stream_string_new_user(context, activity): + return _("{actor} signed up") + +def activity_stream_string_removed_tag(context, activity): + return _("{actor} removed the tag {tag} from the dataset {dataset}") + +def activity_stream_string_follow_dataset(context, activity): + return _("{actor} started following {dataset}") + +def activity_stream_string_follow_user(context, activity): + return _("{actor} started following {user}") + +def activity_stream_string_follow_group(context, activity): + return _("{actor} started following {group}") + +# A dictionary mapping activity snippets to functions that expand the snippets. +activity_snippet_functions = { + 'actor': get_snippet_actor, + 'user': get_snippet_user, + 'dataset': get_snippet_dataset, + 'tag': get_snippet_tag, + 'group': get_snippet_group, + 'organization': get_snippet_organization, + 'extra': get_snippet_extra, + 'resource': get_snippet_resource, +} + +# A dictionary mapping activity types to functions that return translatable +# string descriptions of the activity types. +activity_stream_string_functions = { + 'added tag': activity_stream_string_added_tag, + 'changed group': activity_stream_string_changed_group, + 'changed organization': activity_stream_string_changed_organization, + 'changed package': activity_stream_string_changed_package, + 'changed package_extra': activity_stream_string_changed_package_extra, + 'changed resource': activity_stream_string_changed_resource, + 'changed user': activity_stream_string_changed_user, + 'deleted group': activity_stream_string_deleted_group, + 'deleted organization': activity_stream_string_deleted_organization, + 'deleted package': activity_stream_string_deleted_package, + 'deleted package_extra': activity_stream_string_deleted_package_extra, + 'deleted resource': activity_stream_string_deleted_resource, + 'new group': activity_stream_string_new_group, + 'new organization': activity_stream_string_new_organization, + 'new package': activity_stream_string_new_package, + 'new package_extra': activity_stream_string_new_package_extra, + 'new resource': activity_stream_string_new_resource, + 'new user': activity_stream_string_new_user, + 'removed tag': activity_stream_string_removed_tag, + 'follow dataset': activity_stream_string_follow_dataset, + 'follow user': activity_stream_string_follow_user, + 'follow group': activity_stream_string_follow_group, +} + +# A dictionary mapping activity types to the icons associated to them +activity_stream_string_icons = { + 'added tag': 'tag', + 'changed group': 'users', + 'changed package': 'sitemap', + 'changed package_extra': 'pencil-square-o', + 'changed resource': 'file', + 'changed user': 'user', + 'deleted group': 'users', + 'deleted package': 'sitemap', + 'deleted package_extra': 'pencil-square-o', + 'deleted resource': 'file', + 'new group': 'users', + 'new package': 'sitemap', + 'new package_extra': 'pencil-square-o', + 'new resource': 'file', + 'new user': 'user', + 'removed tag': 'tag', + 'follow dataset': 'sitemap', + 'follow user': 'user', + 'follow group': 'users', + 'changed organization': 'briefcase', + 'deleted organization': 'briefcase', + 'new organization': 'briefcase', + 'undefined': 'certificate', # This is when no activity icon can be found +} + +# A list of activity types that may have details +activity_stream_actions_with_detail = ['changed package'] + +def activity_list_to_html(context, activity_stream, extra_vars): + '''Return the given activity stream as a snippet of HTML. + + :param activity_stream: the activity stream to render + :type activity_stream: list of activity dictionaries + :param extra_vars: extra variables to pass to the activity stream items + template when rendering it + :type extra_vars: dictionary + + :rtype: HTML-formatted string + + ''' + activity_list = [] # These are the activity stream messages. + for activity in activity_stream: + detail = None + activity_type = activity['activity_type'] + # Some activity types may have details. + if activity_type in activity_stream_actions_with_detail: + details = logic.get_action('activity_detail_list')(context=context, + data_dict={'id': activity['id']}) + # If an activity has just one activity detail then render the + # detail instead of the activity. + if len(details) == 1: + detail = details[0] + object_type = detail['object_type'] + + if object_type == 'PackageExtra': + object_type = 'package_extra' + + new_activity_type = '%s %s' % (detail['activity_type'], + object_type.lower()) + if new_activity_type in activity_stream_string_functions: + activity_type = new_activity_type + + if not activity_type in activity_stream_string_functions: + raise NotImplementedError("No activity renderer for activity " + "type '%s'" % activity_type) + + if activity_type in activity_stream_string_icons: + activity_icon = activity_stream_string_icons[activity_type] + else: + activity_icon = activity_stream_string_icons['undefined'] + + activity_msg = activity_stream_string_functions[activity_type](context, + activity) + + # Get the data needed to render the message. + matches = re.findall('\{([^}]*)\}', activity_msg) + data = {} + for match in matches: + snippet = activity_snippet_functions[match](activity, detail) + data[str(match)] = snippet + + activity_list.append({'msg': activity_msg, + 'type': activity_type.replace(' ', '-').lower(), + 'icon': activity_icon, + 'data': data, + 'timestamp': activity['timestamp'], + 'is_new': activity.get('is_new', False)}) + extra_vars['activities'] = activity_list + + # TODO: Do this properly without having to check if it's Flask or not + if is_flask_request(): + return base.render('activity_streams/activity_stream_items.html', + extra_vars=extra_vars) + else: + return literal(base.render('activity_streams/activity_stream_items.html', + extra_vars=extra_vars)) diff --git a/venv/lib/python2.7/site-packages/ckan/lib/activity_streams_session_extension.py b/venv/lib/python2.7/site-packages/ckan/lib/activity_streams_session_extension.py new file mode 100644 index 00000000..85cf677f --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/activity_streams_session_extension.py @@ -0,0 +1,153 @@ +# encoding: utf-8 + +from ckan.common import config +from sqlalchemy.orm.session import SessionExtension +from paste.deploy.converters import asbool +import logging + +log = logging.getLogger(__name__) + + +def activity_stream_item(obj, activity_type, revision, user_id): + method = getattr(obj, "activity_stream_item", None) + if callable(method): + return method(activity_type, revision, user_id) + else: + # Object did not have a suitable activity_stream_item() method; it must + # not be a package + return None + + +def activity_stream_detail(obj, activity_id, activity_type): + method = getattr(obj, "activity_stream_detail", None) + if callable(method): + return method(activity_id, activity_type) + else: + # Object did not have a suitable activity_stream_detail() method + return None + + +class DatasetActivitySessionExtension(SessionExtension): + """Session extension that emits activity stream activities for packages + and related objects. + + An SQLAlchemy SessionExtension that watches for new, changed or deleted + Packages or objects with related packages (Resources, PackageExtras..) + being committed to the SQLAlchemy session and creates Activity and + ActivityDetail objects for these activities. + + For most types of activity the Activity and ActivityDetail objects are + created in the relevant ckan/logic/action/ functions, but for Packages and + objects with related packages they are created by this class instead. + + """ + def before_commit(self, session): + if not asbool(config.get('ckan.activity_streams_enabled', 'true')): + return + + session.flush() + + try: + object_cache = session._object_cache + revision = session.revision + except AttributeError: + # session had no _object_cache or no revision; skipping this commit + return + + if revision.user: + user_id = revision.user.id + else: + # If the user is not logged in then revision.user is None and + # revision.author is their IP address. Just log them as 'not logged + # in' rather than logging their IP address. + user_id = 'not logged in' + + # The top-level objects that we will append to the activity table. The + # keys here are package IDs, and the values are model.activity:Activity + # objects. + activities = {} + + # The second-level objects that we will append to the activity_detail + # table. Each row in the activity table has zero or more related rows + # in the activity_detail table. The keys here are activity IDs, and the + # values are lists of model.activity:ActivityDetail objects. + activity_details = {} + + # Log new packages first to prevent them from getting incorrectly + # logged as changed packages. + # Looking for new packages... + for obj in object_cache['new']: + activity = activity_stream_item(obj, 'new', revision, user_id) + if activity is None: + continue + # The object returns an activity stream item, so we know that the + # object is a package. + + # Don't create activities for private datasets. + if obj.private: + continue + + activities[obj.id] = activity + + activity_detail = activity_stream_detail(obj, activity.id, "new") + if activity_detail is not None: + activity_details[activity.id] = [activity_detail] + + # Now process other objects. + for activity_type in ('new', 'changed', 'deleted'): + objects = object_cache[activity_type] + for obj in objects: + + if not hasattr(obj, "id"): + # Object has no id; skipping + continue + + if (activity_type in ('new', 'changed') and + obj.id in activities): + # This object was already logged as a new package + continue + + try: + related_packages = obj.related_packages() + except (AttributeError, TypeError): + # Object did not have a suitable related_packages() method; + # skipping it + continue + + for package in related_packages: + if package is None: + continue + + # Don't create activities for private datasets. + if package.private: + continue + + if package.id in activities: + activity = activities[package.id] + else: + activity = activity_stream_item( + package, "changed", revision, user_id) + if activity is None: + continue + + activity_detail = activity_stream_detail( + obj, activity.id, activity_type) + if activity_detail is not None: + if not package.id in activities: + activities[package.id] = activity + if activity_details.has_key(activity.id): + activity_details[activity.id].append( + activity_detail) + else: + activity_details[activity.id] = [activity_detail] + + for key, activity in activities.items(): + # Emitting activity + session.add(activity) + + for key, activity_detail_list in activity_details.items(): + for activity_detail_obj in activity_detail_list: + # Emitting activity detail + session.add(activity_detail_obj) + + session.flush() diff --git a/venv/lib/python2.7/site-packages/ckan/lib/alphabet_paginate.py b/venv/lib/python2.7/site-packages/ckan/lib/alphabet_paginate.py new file mode 100644 index 00000000..b04b7aa4 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/alphabet_paginate.py @@ -0,0 +1,159 @@ +# encoding: utf-8 + +''' +Based on webhelpers.paginator, but: + * each page is for items beginning with a particular letter + * output is suitable for Bootstrap + + Example: + c.page = h.Page( + collection=query, + page=request.params.get('page', 'A'), + ) + Template: + ${c.page.pager()} + ${package_list(c.page.items)} + ${c.page.pager()} +''' +from itertools import dropwhile +import re + +from six import text_type +from sqlalchemy import __version__ as sqav +from sqlalchemy.orm.query import Query +from webhelpers.html.builder import HTML +from ckan.lib.helpers import url_for + + +class AlphaPage(object): + def __init__(self, collection, alpha_attribute, page, other_text, paging_threshold=50, + controller_name='tag'): + ''' + @param collection - sqlalchemy query of all the items to paginate + @param alpha_attribute - name of the attribute (on each item of the + collection) which has the string to paginate by + @param page - the page identifier - the start character or other_text + @param other_text - the (i18n-ized) string for items with + non-alphabetic first character. + @param paging_threshold - the minimum number of items required to + start paginating them. + @param controller_name - The name of the controller that will be linked to, + which defaults to tag. The controller name should be the + same as the route so for some this will be the full + controller name such as 'A.B.controllers.C:ClassName' + ''' + self.collection = collection + self.alpha_attribute = alpha_attribute + self.page = page + self.other_text = other_text + self.paging_threshold = paging_threshold + self.controller_name = controller_name + + self.letters = [char for char in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'] + [self.other_text] + + # Work out which alphabet letters are 'available' i.e. have some results + # because we grey-out those which aren't. + self.available = dict( (c,0,) for c in self.letters ) + for c in self.collection: + if isinstance(c, text_type): + x = c[0] + elif isinstance(c, dict): + x = c[self.alpha_attribute][0] + else: + x = getattr(c, self.alpha_attribute)[0] + x = x.upper() + if x not in self.letters: + x = self.other_text + self.available[x] = self.available.get(x, 0) + 1 + + def pager(self, q=None): + '''Returns pager html - for navigating between the pages. + e.g. Something like this: + + ''' + if self.item_count < self.paging_threshold: + return '' + pages = [] + page = q or self.page + for letter in self.letters: + href = url_for(controller=self.controller_name, action='index', page=letter) + link = HTML.a(href=href, c=letter) + if letter != page: + if self.available.get(letter, 0): + li_class = '' + else: + li_class = 'disabled' + else: + li_class = 'active' + attributes = {'class_': li_class} if li_class else {} + page_element = HTML.li(link, **attributes) + pages.append(page_element) + ul = HTML.tag('ul', *pages) + div = HTML.div(ul, class_='pagination pagination-alphabet') + return div + + + @property + def items(self): + '''Returns items on the current page.''' + if isinstance(self.collection, Query): + query = self.collection + if sqav.startswith("0.4"): + attribute = getattr(query.table.c, + self.alpha_attribute) + elif sqav.startswith("0.5"): + attribute = getattr(query._entity_zero().selectable.c, + self.alpha_attribute) + else: + entity = getattr(query.column_descriptions[0]['expr'], + self.alpha_attribute) + query = query.add_columns(entity) + column = dropwhile(lambda x: x['name'] != \ + self.alpha_attribute, + query.column_descriptions) + attribute = column.next()['expr'] + if self.item_count >= self.paging_threshold: + if self.page != self.other_text: + query = query.filter(attribute.ilike(u'%s%%' % self.page)) + else: + # regexp search + query = query.filter(attribute.op('~')(u'^[^a-zA-Z].*')) + query.order_by(attribute) + return query.all() + elif isinstance(self.collection,list): + if self.item_count >= self.paging_threshold: + if self.page != self.other_text: + if isinstance(self.collection[0], dict): + items = [x for x in self.collection if x[self.alpha_attribute][0:1].lower() == self.page.lower()] + elif isinstance(self.collection[0], text_type): + items = [x for x in self.collection if x[0:1].lower() == self.page.lower()] + else: + items = [x for x in self.collection if getattr(x,self.alpha_attribute)[0:1].lower() == self.page.lower()] + else: + # regexp search + if isinstance(self.collection[0], dict): + items = [x for x in self.collection if re.match('^[^a-zA-Z].*',x[self.alpha_attribute])] + else: + items = [x for x in self.collection if re.match('^[^a-zA-Z].*',x)] + items.sort() + else: + items = self.collection + return items + else: + raise NotImplementedError + + @property + def item_count(self): + if isinstance(self.collection, Query): + return self.collection.count() + elif isinstance(self.collection,list): + return len(self.collection) + else: + raise NotImplementedError diff --git a/venv/lib/python2.7/site-packages/ckan/lib/app_globals.py b/venv/lib/python2.7/site-packages/ckan/lib/app_globals.py new file mode 100644 index 00000000..0b7a5889 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/app_globals.py @@ -0,0 +1,225 @@ +# encoding: utf-8 + +''' The application's Globals object ''' + +import logging +import time +from threading import Lock +import re + +from paste.deploy.converters import asbool +from ckan.common import config + +import ckan +import ckan.model as model +import ckan.logic as logic +from logic.schema import update_configuration_schema + + +log = logging.getLogger(__name__) + + +# mappings translate between config settings and globals because our naming +# conventions are not well defined and/or implemented +mappings = { +# 'config_key': 'globals_key', +} + + +# This mapping is only used to define the configuration options (from the +# `config` object) that should be copied to the `app_globals` (`g`) object. +app_globals_from_config_details = { + 'ckan.site_title': {}, + 'ckan.site_logo': {}, + 'ckan.site_url': {}, + 'ckan.site_description': {}, + 'ckan.site_about': {}, + 'ckan.site_intro_text': {}, + 'ckan.site_custom_css': {}, + 'ckan.favicon': {}, # default gets set in config.environment.py + 'ckan.template_head_end': {}, + 'ckan.template_footer_end': {}, + # has been setup in load_environment(): + 'ckan.site_id': {}, + 'ckan.recaptcha.publickey': {'name': 'recaptcha_publickey'}, + 'ckan.template_title_deliminater': {'default': '-'}, + 'ckan.template_head_end': {}, + 'ckan.template_footer_end': {}, + 'ckan.dumps_url': {}, + 'ckan.dumps_format': {}, + 'ofs.impl': {'name': 'ofs_impl'}, + 'ckan.homepage_style': {'default': '1'}, + + # split string + 'search.facets': {'default': 'organization groups tags res_format license_id', + 'type': 'split', + 'name': 'facets'}, + 'package_hide_extras': {'type': 'split'}, + 'ckan.plugins': {'type': 'split'}, + + # bool + 'debug': {'default': 'false', 'type' : 'bool'}, + 'ckan.debug_supress_header' : {'default': 'false', 'type' : 'bool'}, + 'ckan.legacy_templates' : {'default': 'false', 'type' : 'bool'}, + 'ckan.tracking_enabled' : {'default': 'false', 'type' : 'bool'}, + + # int + 'ckan.datasets_per_page': {'default': '20', 'type': 'int'}, + 'ckan.activity_list_limit': {'default': '30', 'type': 'int'}, + 'ckan.user_list_limit': {'default': '20', 'type': 'int'}, + 'search.facets.default': {'default': '10', 'type': 'int', + 'name': 'facets_default_number'}, +} + + +# A place to store the origional config options of we override them +_CONFIG_CACHE = {} + +def set_main_css(css_file): + ''' Sets the main_css. The css_file must be of the form file.css ''' + assert css_file.endswith('.css') + new_css = css_file + # FIXME we should check the css file exists + app_globals.main_css = str(new_css) + + +def set_app_global(key, value): + ''' + Set a new key on the app_globals (g) object + + It will process the value according to the options on + app_globals_from_config_details (if any) + ''' + key, value = process_app_global(key, value) + setattr(app_globals, key, value) + + +def process_app_global(key, value): + ''' + Tweak a key, value pair meant to be set on the app_globals (g) object + + According to the options on app_globals_from_config_details (if any) + ''' + options = app_globals_from_config_details.get(key) + key = get_globals_key(key) + if options: + if 'name' in options: + key = options['name'] + value = value or options.get('default', '') + + data_type = options.get('type') + if data_type == 'bool': + value = asbool(value) + elif data_type == 'int': + value = int(value) + elif data_type == 'split': + value = value.split() + + return key, value + + +def get_globals_key(key): + # create our globals key + # these can be specified in mappings or else we remove + # the `ckan.` part this is to keep the existing namings + # set the value + if key in mappings: + return mappings[key] + elif key.startswith('ckan.'): + return key[5:] + else: + return key + + +def reset(): + ''' set updatable values from config ''' + def get_config_value(key, default=''): + if model.meta.engine.has_table('system_info'): + value = model.get_system_info(key) + else: + value = None + config_value = config.get(key) + # sort encodeings if needed + if isinstance(config_value, str): + try: + config_value = config_value.decode('utf-8') + except UnicodeDecodeError: + config_value = config_value.decode('latin-1') + # we want to store the config the first time we get here so we can + # reset them if needed + if key not in _CONFIG_CACHE: + _CONFIG_CACHE[key] = config_value + if value is not None: + log.debug('config `%s` set to `%s` from db' % (key, value)) + else: + value = _CONFIG_CACHE[key] + if value: + log.debug('config `%s` set to `%s` from config' % (key, value)) + else: + value = default + + set_app_global(key, value) + + # update the config + config[key] = value + + return value + + # update the config settings in auto update + schema = update_configuration_schema() + for key in schema.keys(): + get_config_value(key) + + # custom styling + main_css = get_config_value('ckan.main_css', '/base/css/main.css') + set_main_css(main_css) + + if app_globals.site_logo: + app_globals.header_class = 'header-image' + elif not app_globals.site_description: + app_globals.header_class = 'header-text-logo' + else: + app_globals.header_class = 'header-text-logo-tagline' + + +class _Globals(object): + + ''' Globals acts as a container for objects available throughout the + life of the application. ''' + + def __init__(self): + '''One instance of Globals is created during application + initialization and is available during requests via the + 'app_globals' variable + ''' + self._init() + self._config_update = None + self._mutex = Lock() + + def _check_uptodate(self): + ''' check the config is uptodate needed when several instances are + running ''' + value = model.get_system_info('ckan.config_update') + if self._config_update != value: + if self._mutex.acquire(False): + reset() + self._config_update = value + self._mutex.release() + + def _init(self): + + self.ckan_version = ckan.__version__ + self.ckan_base_version = re.sub('[^0-9\.]', '', self.ckan_version) + if self.ckan_base_version == self.ckan_version: + self.ckan_doc_version = self.ckan_version[:3] + else: + self.ckan_doc_version = 'latest' + + # process the config details to set globals + for key in app_globals_from_config_details.keys(): + new_key, value = process_app_global(key, config.get(key) or '') + setattr(self, new_key, value) + + +app_globals = _Globals() +del _Globals diff --git a/venv/lib/python2.7/site-packages/ckan/lib/auth_tkt.py b/venv/lib/python2.7/site-packages/ckan/lib/auth_tkt.py new file mode 100644 index 00000000..36faea56 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/auth_tkt.py @@ -0,0 +1,87 @@ +# encoding: utf-8 + +import logging +import math +import os + +from ckan.common import config +from repoze.who.plugins import auth_tkt as repoze_auth_tkt + +_bool = repoze_auth_tkt._bool + +log = logging.getLogger(__name__) + + +class CkanAuthTktCookiePlugin(repoze_auth_tkt.AuthTktCookiePlugin): + + def __init__(self, httponly, *args, **kwargs): + super(CkanAuthTktCookiePlugin, self).__init__(*args, **kwargs) + self.httponly = httponly + + def _get_cookies(self, *args, **kwargs): + ''' + Override method in superclass to ensure HttpOnly is set appropriately. + ''' + super_cookies = super(CkanAuthTktCookiePlugin, self). \ + _get_cookies(*args, **kwargs) + + cookies = [] + for k, v in super_cookies: + replace_with = '; HttpOnly' if self.httponly else '' + v = v.replace('; HttpOnly', '') + replace_with + cookies.append((k, v)) + + return cookies + + +def make_plugin(secret=None, + secretfile=None, + cookie_name='auth_tkt', + secure=False, + include_ip=False, + timeout=None, + reissue_time=None, + userid_checker=None): + from repoze.who.utils import resolveDotted + + # ckan specifics: + # Get secret from beaker setting if necessary + if secret is None or secret == 'somesecret': + secret = config['beaker.session.secret'] + # Session timeout and reissue time for auth cookie + if timeout is None and config.get('who.timeout'): + timeout = config.get('who.timeout') + if reissue_time is None and config.get('who.reissue_time'): + reissue_time = config.get('who.reissue_time') + if timeout is not None and reissue_time is None: + reissue_time = int(math.ceil(int(timeout) * 0.1)) + # Set httponly based on config value. Default is True + httponly = config.get('who.httponly', True) + # Set secure based on config value. Default is False + secure = config.get('who.secure', False) + + # back to repoze boilerplate + if (secret is None and secretfile is None): + raise ValueError("One of 'secret' or 'secretfile' must not be None.") + if (secret is not None and secretfile is not None): + raise ValueError("Specify only one of 'secret' or 'secretfile'.") + if secretfile: + secretfile = os.path.abspath(os.path.expanduser(secretfile)) + if not os.path.exists(secretfile): + raise ValueError("No such 'secretfile': %s" % secretfile) + secret = open(secretfile).read().strip() + if timeout: + timeout = int(timeout) + if reissue_time: + reissue_time = int(reissue_time) + if userid_checker is not None: + userid_checker = resolveDotted(userid_checker) + plugin = CkanAuthTktCookiePlugin(_bool(httponly), + secret, + cookie_name, + _bool(secure), + _bool(include_ip), + timeout, + reissue_time, + userid_checker) + return plugin diff --git a/venv/lib/python2.7/site-packages/ckan/lib/authenticator.py b/venv/lib/python2.7/site-packages/ckan/lib/authenticator.py new file mode 100644 index 00000000..05d469fb --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/authenticator.py @@ -0,0 +1,32 @@ +# encoding: utf-8 + +import logging + +from zope.interface import implements +from repoze.who.interfaces import IAuthenticator + +from ckan.model import User + +log = logging.getLogger(__name__) + + +class UsernamePasswordAuthenticator(object): + implements(IAuthenticator) + + def authenticate(self, environ, identity): + if not ('login' in identity and 'password' in identity): + return None + + login = identity['login'] + user = User.by_name(login) + + if user is None: + log.debug('Login failed - username %r not found', login) + elif not user.is_active(): + log.debug('Login as %r failed - user isn\'t active', login) + elif not user.validate_password(identity['password']): + log.debug('Login as %r failed - password not valid', login) + else: + return user.name + + return None diff --git a/venv/lib/python2.7/site-packages/ckan/lib/base.py b/venv/lib/python2.7/site-packages/ckan/lib/base.py new file mode 100644 index 00000000..62fb6076 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/base.py @@ -0,0 +1,259 @@ +# encoding: utf-8 + +"""The base Controller API + +Provides the BaseController class for subclassing. +""" +import logging +import time +import inspect +import sys + +from pylons import cache +from pylons.controllers import WSGIController +from pylons.controllers.util import abort as _abort +from pylons.decorators import jsonify +from pylons.templating import cached_template, pylons_globals +from webhelpers.html import literal + +from flask import ( + render_template as flask_render_template, + abort as flask_abort +) +import ckan.exceptions +import ckan +import ckan.lib.i18n as i18n +import ckan.lib.render as render_ +import ckan.lib.helpers as h +import ckan.lib.app_globals as app_globals +import ckan.plugins as p +import ckan.model as model + +from ckan.views import (identify_user, + set_cors_headers_for_response, + check_session_cookie, + ) + +# These imports are for legacy usages and will be removed soon these should +# be imported directly from ckan.common for internal ckan code and via the +# plugins.toolkit for extensions. +from ckan.common import (json, _, ungettext, c, request, response, config, + session, is_flask_request) + +log = logging.getLogger(__name__) + +APIKEY_HEADER_NAME_KEY = 'apikey_header_name' +APIKEY_HEADER_NAME_DEFAULT = 'X-CKAN-API-Key' + + +def abort(status_code=None, detail='', headers=None, comment=None): + '''Abort the current request immediately by returning an HTTP exception. + + This is a wrapper for :py:func:`pylons.controllers.util.abort` that adds + some CKAN custom behavior, including allowing + :py:class:`~ckan.plugins.interfaces.IAuthenticator` plugins to alter the + abort response, and showing flash messages in the web interface. + + ''' + if status_code == 403: + # Allow IAuthenticator plugins to alter the abort + for item in p.PluginImplementations(p.IAuthenticator): + result = item.abort(status_code, detail, headers, comment) + (status_code, detail, headers, comment) = result + + if detail and status_code != 503: + h.flash_error(detail) + # #1267 Convert detail to plain text, since WebOb 0.9.7.1 (which comes + # with Lucid) causes an exception when unicode is received. + detail = detail.encode('utf8') + if is_flask_request(): + flask_abort(status_code, detail) + + return _abort(status_code=status_code, + detail=detail, + headers=headers, + comment=comment) + + +def render_snippet(template_name, **kw): + ''' Helper function for rendering snippets. Rendered html has + comment tags added to show the template used. NOTE: unlike other + render functions this takes a list of keywords instead of a dict for + the extra template variables. ''' + + output = render(template_name, extra_vars=kw) + if config.get('debug'): + output = ('\n\n%s\n\n' + % (template_name, output, template_name)) + return literal(output) + + +def render_jinja2(template_name, extra_vars): + env = config['pylons.app_globals'].jinja_env + template = env.get_template(template_name) + return template.render(**extra_vars) + + +def render(template_name, extra_vars=None, *pargs, **kwargs): + '''Render a template and return the output. + + This is CKAN's main template rendering function. + + :params template_name: relative path to template inside registered tpl_dir + :type template_name: str + :params extra_vars: additional variables available in template + :type extra_vars: dict + :params pargs: DEPRECATED + :type pargs: tuple + :params kwargs: DEPRECATED + :type kwargs: dict + + ''' + if pargs or kwargs: + tb = inspect.getframeinfo(sys._getframe(1)) + log.warning( + 'Extra arguments to `base.render` are deprecated: ' + + '<{0.filename}:{0.lineno}>'.format(tb) + ) + + if extra_vars is None: + extra_vars = {} + + if not is_flask_request(): + renderer = _pylons_prepare_renderer(template_name, extra_vars, + *pargs, **kwargs) + return cached_template(template_name, renderer) + + return flask_render_template(template_name, **extra_vars) + + +def _pylons_prepare_renderer(template_name, extra_vars, cache_key=None, + cache_type=None, cache_expire=None, + cache_force=None, renderer=None): + def render_template(): + globs = extra_vars or {} + globs.update(pylons_globals()) + + # Using pylons.url() directly destroys the localisation stuff so + # we remove it so any bad templates crash and burn + del globs['url'] + + try: + template_path, template_type = render_.template_info(template_name) + except render_.TemplateNotFound: + raise + + log.debug('rendering %s [%s]' % (template_path, template_type)) + if config.get('debug'): + context_vars = globs.get('c') + if context_vars: + context_vars = dir(context_vars) + debug_info = {'template_name': template_name, + 'template_path': template_path, + 'template_type': template_type, + 'vars': globs, + 'c_vars': context_vars, + 'renderer': renderer} + if 'CKAN_DEBUG_INFO' not in request.environ: + request.environ['CKAN_DEBUG_INFO'] = [] + request.environ['CKAN_DEBUG_INFO'].append(debug_info) + + del globs['config'] + return render_jinja2(template_name, globs) + + def set_pylons_response_headers(allow_cache): + if 'Pragma' in response.headers: + del response.headers["Pragma"] + if allow_cache: + response.headers["Cache-Control"] = "public" + try: + cache_expire = int(config.get('ckan.cache_expires', 0)) + response.headers["Cache-Control"] += \ + ", max-age=%s, must-revalidate" % cache_expire + except ValueError: + pass + else: + # We do not want caching. + response.headers["Cache-Control"] = "private" + + # Caching Logic + + allow_cache = True + # Force cache or not if explicit. + if cache_force is not None: + allow_cache = cache_force + # Do not allow caching of pages for logged in users/flash messages etc. + elif session.last_accessed: + allow_cache = False + # Tests etc. + elif 'REMOTE_USER' in request.environ: + allow_cache = False + # Don't cache if based on a non-cachable template used in this. + elif request.environ.get('__no_cache__'): + allow_cache = False + # Don't cache if we have set the __no_cache__ param in the query string. + elif request.params.get('__no_cache__'): + allow_cache = False + # Don't cache if we have extra vars containing data. + elif extra_vars: + for k, v in extra_vars.iteritems(): + allow_cache = False + break + + # TODO: replicate this logic in Flask once we start looking at the + # rendering for the frontend controllers + set_pylons_response_headers(allow_cache) + + if not allow_cache: + # Prevent any further rendering from being cached. + request.environ['__no_cache__'] = True + + return render_template + + +class ValidationException(Exception): + pass + + +class BaseController(WSGIController): + '''Base class for CKAN controller classes to inherit from. + + ''' + repo = model.repo + log = logging.getLogger(__name__) + + def __before__(self, action, **params): + c.__timer = time.time() + app_globals.app_globals._check_uptodate() + + identify_user() + + i18n.handle_request(request, c) + + def __call__(self, environ, start_response): + """Invoke the Controller""" + # WSGIController.__call__ dispatches to the Controller method + # the request is routed to. This routing information is + # available in environ['pylons.routes_dict'] + + try: + res = WSGIController.__call__(self, environ, start_response) + finally: + model.Session.remove() + + check_session_cookie(response) + + return res + + def __after__(self, action, **params): + + set_cors_headers_for_response(response) + + r_time = time.time() - c.__timer + url = request.environ['CKAN_CURRENT_URL'].split('?')[0] + log.info(' %s render time %.3f seconds' % (url, r_time)) + + +# Include the '_' function in the public names +__all__ = [__name for __name in locals().keys() if not __name.startswith('_') + or __name == '_'] diff --git a/venv/lib/python2.7/site-packages/ckan/lib/captcha.py b/venv/lib/python2.7/site-packages/ckan/lib/captcha.py new file mode 100644 index 00000000..9a138dff --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/captcha.py @@ -0,0 +1,41 @@ +# encoding: utf-8 + +from ckan.common import config + +import urllib +import urllib2 +import json + +def check_recaptcha(request): + '''Check a user\'s recaptcha submission is valid, and raise CaptchaError + on failure.''' + recaptcha_private_key = config.get('ckan.recaptcha.privatekey', '') + if not recaptcha_private_key: + # Recaptcha not enabled + return + + client_ip_address = request.environ.get('REMOTE_ADDR', 'Unknown IP Address') + + # reCAPTCHA v2 + recaptcha_response_field = request.form.get('g-recaptcha-response', '') + recaptcha_server_name = 'https://www.google.com/recaptcha/api/siteverify' + + # recaptcha_response_field will be unicode if there are foreign chars in + # the user input. So we need to encode it as utf8 before urlencoding or + # we get an exception (#1431). + params = urllib.urlencode(dict(secret=recaptcha_private_key, + remoteip=client_ip_address, + response=recaptcha_response_field.encode('utf8'))) + f = urllib2.urlopen(recaptcha_server_name, params) + data = json.load(f) + f.close() + + try: + if not data['success']: + raise CaptchaError() + except IndexError: + # Something weird with recaptcha response + raise CaptchaError() + +class CaptchaError(ValueError): + pass diff --git a/venv/lib/python2.7/site-packages/ckan/lib/cli.py b/venv/lib/python2.7/site-packages/ckan/lib/cli.py new file mode 100644 index 00000000..7135a156 --- /dev/null +++ b/venv/lib/python2.7/site-packages/ckan/lib/cli.py @@ -0,0 +1,2649 @@ +# encoding: utf-8 + +from __future__ import print_function + +import collections +import csv +import multiprocessing as mp +import os +import datetime +import sys +from pprint import pprint +import re +import itertools +import json +import logging +from optparse import OptionConflictError +import traceback + +from six import text_type +from six.moves import input, xrange +from six.moves.urllib.error import HTTPError +from six.moves.urllib.parse import urljoin, urlparse +from six.moves.urllib.request import urlopen + +import sqlalchemy as sa +import routes +import paste.script +from paste.registry import Registry +from paste.script.util.logging_config import fileConfig +import click + +from ckan.config.middleware import make_app +import ckan.logic as logic +import ckan.model as model +import ckan.include.rjsmin as rjsmin +import ckan.include.rcssmin as rcssmin +import ckan.plugins as p +from ckan.common import config + +# This is a test Flask request context to be used internally. +# Do not use it! +_cli_test_request_context = None + + +# NB No CKAN imports are allowed until after the config file is loaded. +# i.e. do the imports in methods, after _load_config is called. +# Otherwise loggers get disabled. + + +def deprecation_warning(message=None): + ''' + Print a deprecation warning to STDERR. + + If ``message`` is given it is also printed to STDERR. + ''' + sys.stderr.write(u'WARNING: This function is deprecated.') + if message: + sys.stderr.write(u' ' + message.strip()) + sys.stderr.write(u'\n') + + +def error(msg): + ''' + Print an error message to STDOUT and exit with return code 1. + ''' + sys.stderr.write(msg) + if not msg.endswith('\n'): + sys.stderr.write('\n') + sys.exit(1) + + +def parse_db_config(config_key='sqlalchemy.url'): + ''' Takes a config key for a database connection url and parses it into + a dictionary. Expects a url like: + + 'postgres://tester:pass@localhost/ckantest3' + ''' + from ckan.common import config + url = config[config_key] + regex = [ + '^\s*(?P\w*)', + '://', + '(?P[^:]*)', + ':?', + '(?P[^@]*)', + '@', + '(?P[^/:]*)', + ':?', + '(?P[^/]*)', + '/', + '(?P[\w.-]*)' + ] + db_details_match = re.match(''.join(regex), url) + if not db_details_match: + raise Exception('Could not extract db details from url: %r' % url) + db_details = db_details_match.groupdict() + return db_details + + +def user_add(args): + '''Add new user if we use paster sysadmin add + or paster user add + ''' + if len(args) < 1: + error('Error: you need to specify the user name.') + username = args[0] + + # parse args into data_dict + data_dict = {'name': username} + for arg in args[1:]: + try: + field, value = arg.split('=', 1) + data_dict[field] = value + except ValueError: + raise ValueError( + 'Could not parse arg: %r (expected "